/* =====================================================================
   ardda Startseite NEU (Vorschau unter /neu)
   Professioneller B2B-Auftritt: realistische Fotos statt Icons,
   ruhige Typografie, klare Abschnitte. Alle Klassen mit "hn-" Präfix,
   damit nichts mit den globalen Styles kollidiert.
   ===================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

.hn {
    --hn-bg: #fbfaf7;
    --hn-bg-soft: #f4f1ec;
    --hn-dark: #0b0e1e;
    --hn-dark-2: #11152b;
    --hn-ink: #15121f;
    --hn-soft: #5d586f;
    --hn-faint: #8d879c;
    --hn-line: #e9e4ee;
    --hn-red: #ef4444;
    --hn-orange: #f59e0b;
    --hn-grad: linear-gradient(100deg, #ef4444, #f59e0b);
    --hn-radius: 22px;
    --hn-shadow: 0 20px 50px -24px rgba(21, 18, 31, .28);
    --hn-shadow-lg: 0 34px 80px -30px rgba(21, 18, 31, .38);
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    color: var(--hn-ink);
    background: var(--hn-bg);
    -webkit-font-smoothing: antialiased;
}
.hn *, .hn *::before, .hn *::after { box-sizing: border-box; }
.hn img { display: block; max-width: 100%; }
.hn a { color: inherit; text-decoration: none; }

.hn-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hn-section { padding: 96px 0; }
.hn-section--soft { background: var(--hn-bg-soft); }
.hn-section--dark { background: var(--hn-dark); color: #eef0ff; }

/* ---- Typo ---- */
.hn-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: #c2410c; margin-bottom: 16px;
}
.hn-eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 2px; background: var(--hn-grad); }
.hn-section--dark .hn-eyebrow { color: #fca5a5; }
.hn-h1 {
    font-size: clamp(40px, 5.6vw, 74px); line-height: 1.02; font-weight: 800; letter-spacing: -.035em;
    margin: 0 0 22px;
}
.hn-h2 {
    font-size: clamp(30px, 3.6vw, 46px); line-height: 1.08; font-weight: 800; letter-spacing: -.03em;
    margin: 0 0 16px;
}
.hn-lead { font-size: clamp(16px, 1.45vw, 19px); line-height: 1.6; color: var(--hn-soft); max-width: 620px; margin: 0; }
.hn-section--dark .hn-lead { color: #b6bcdc; }
.hn-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.hn-head .hn-eyebrow { justify-content: center; }
.hn-head .hn-lead { margin: 0 auto; }
.hn-grad-text { background: var(--hn-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---- Buttons ---- */
.hn-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px 28px; border-radius: 14px; font-weight: 700; font-size: 16px; line-height: 1;
    border: 1px solid transparent; cursor: pointer; white-space: nowrap;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.hn-btn:hover { transform: translateY(-2px); }
.hn-btn--primary { background: var(--hn-grad); color: #fff; box-shadow: 0 14px 34px -14px rgba(239, 68, 68, .65); }
.hn-btn--primary:hover { box-shadow: 0 20px 44px -14px rgba(239, 68, 68, .75); }
.hn-btn--ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.22); backdrop-filter: blur(8px); }
.hn-btn--ghost:hover { background: rgba(255,255,255,.16); }
.hn-btn--light { background: #fff; color: var(--hn-ink); border-color: var(--hn-line); box-shadow: var(--hn-shadow); }
.hn-btn--light:hover { border-color: #d9d2e0; }
.hn-btn--lg { padding: 19px 36px; font-size: 17px; }
.hn-link { font-weight: 700; color: #c2410c; display: inline-flex; align-items: center; gap: 6px; }
.hn-link:hover { text-decoration: underline; }

/* ---- Reveal (dezent, einmalig) ---- */
.hn-rv { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.hn-rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .hn-rv { opacity: 1; transform: none; transition: none; } }

/* =========================== HERO =========================== */
.hn-hero {
    position: relative; min-height: min(92vh, 900px); display: flex; align-items: center;
    background: var(--hn-dark); color: #fff; overflow: hidden;
}
.hn-hero-media { position: absolute; inset: 0; }
.hn-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 72% center; }
.hn-hero-media::after {
    content: ""; position: absolute; inset: 0;
    background:
        linear-gradient(90deg, rgba(11,14,30,.96) 0%, rgba(11,14,30,.88) 34%, rgba(11,14,30,.45) 62%, rgba(11,14,30,.15) 100%),
        linear-gradient(180deg, rgba(11,14,30,.35) 0%, rgba(11,14,30,0) 30%, rgba(11,14,30,.55) 100%);
}
.hn-hero .hn-wrap { position: relative; z-index: 1; padding-top: 110px; padding-bottom: 90px; width: 100%; }
.hn-hero-text { max-width: 640px; }
.hn-hero .hn-eyebrow { color: #fecaca; }
.hn-hero .hn-lead { color: #cfd4ee; }
.hn-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hn-hero-sub { margin-top: 18px; font-size: 15px; color: #aeb5d6; }
.hn-hero-sub a { color: #fff; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.35); }
.hn-trust { display: flex; gap: 10px 22px; flex-wrap: wrap; margin-top: 30px; font-size: 14px; color: #c9cfe9; font-weight: 600; }
.hn-trust span::before { content: "✓"; color: #34d399; font-weight: 800; margin-right: 8px; }

.hn-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
    margin-top: 56px; max-width: 760px;
    background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); border-radius: 18px; overflow: hidden;
    backdrop-filter: blur(10px);
}
.hn-stat { background: rgba(11,14,30,.55); padding: 20px 22px; }
.hn-stat b { display: block; font-size: 30px; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.hn-stat span { display: block; margin-top: 6px; font-size: 13px; color: #aeb5d6; font-weight: 600; }

/* =========================== BRANCHEN =========================== */
.hn-ind { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.hn-ind-card {
    position: relative; aspect-ratio: 3 / 4; border-radius: var(--hn-radius); overflow: hidden;
    background: #ddd; box-shadow: var(--hn-shadow); isolation: isolate;
}
.hn-ind-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.hn-ind-card:hover img { transform: scale(1.05); }
.hn-ind-card::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(11,14,30,0) 40%, rgba(11,14,30,.82) 100%);
}
.hn-ind-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; color: #fff; z-index: 1; }
.hn-ind-body h3 { margin: 0 0 6px; font-size: 19px; font-weight: 800; letter-spacing: -.01em; line-height: 1.15; }
.hn-ind-body p { margin: 0; font-size: 13.5px; color: #d5d9f0; line-height: 1.45; }
.hn-ind-more { margin-top: 26px; text-align: center; color: var(--hn-soft); font-size: 15px; }

/* =========================== MODULE =========================== */
.hn-mods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.hn-mod {
    background: #fff; border: 1px solid var(--hn-line); border-radius: var(--hn-radius); overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.hn-mod:hover { transform: translateY(-5px); box-shadow: var(--hn-shadow-lg); border-color: #e0d9e6; }
.hn-mod-img { aspect-ratio: 3 / 2; overflow: hidden; background: #eee; }
.hn-mod-img img { width: 100%; height: 100%; object-fit: cover; }
.hn-mod-body { padding: 22px 24px 26px; }
.hn-mod-body h3 { margin: 0 0 8px; font-size: 19px; font-weight: 800; letter-spacing: -.01em; }
.hn-mod-body p { margin: 0; color: var(--hn-soft); font-size: 15px; line-height: 1.55; }
.hn-mod-tag { display: inline-block; font-size: 11.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #c2410c; margin-bottom: 10px; }

/* =========================== ABLAUF =========================== */
.hn-flow { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.hn-flow-img { border-radius: var(--hn-radius); overflow: hidden; box-shadow: var(--hn-shadow-lg); aspect-ratio: 4 / 3; }
.hn-flow-img img { width: 100%; height: 100%; object-fit: cover; }
.hn-steps { list-style: none; margin: 34px 0 0; padding: 0; display: grid; gap: 18px; }
.hn-step { display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start; }
.hn-step-n {
    width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
    background: var(--hn-grad); color: #fff; font-weight: 800; font-size: 18px; box-shadow: 0 12px 26px -12px rgba(239,68,68,.6);
}
.hn-step h3 { margin: 4px 0 6px; font-size: 19px; font-weight: 800; letter-spacing: -.01em; }
.hn-step p { margin: 0; color: var(--hn-soft); line-height: 1.55; font-size: 15.5px; }
.hn-note {
    margin-top: 28px; padding: 16px 20px; border-radius: 14px; background: #ecfdf5; border: 1px solid #a7f3d0;
    color: #065f46; font-weight: 700; font-size: 15px;
}

/* =========================== VIDEO =========================== */
.hn-video-frame {
    max-width: 1040px; margin: 0 auto; border-radius: 22px; overflow: hidden; background: #070912;
    box-shadow: 0 40px 100px -30px rgba(0,0,0,.7); border: 1px solid rgba(255,255,255,.08);
}
.hn-video-frame video { display: block; width: 100%; aspect-ratio: 16 / 9; }

/* =========================== KUNDEN / MARKTPLATZ =========================== */
.hn-cust { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hn-cust-img { border-radius: var(--hn-radius); overflow: hidden; box-shadow: var(--hn-shadow-lg); aspect-ratio: 4 / 3; }
.hn-cust-img img { width: 100%; height: 100%; object-fit: cover; }
.hn-search {
    display: grid; grid-template-columns: 1.3fr 1fr auto; gap: 10px; margin-top: 30px; padding: 10px;
    background: #fff; border: 1px solid var(--hn-line); border-radius: 18px; box-shadow: var(--hn-shadow);
}
.hn-search input {
    border: 0; outline: 0; background: var(--hn-bg-soft); border-radius: 12px; padding: 16px 16px; font: inherit; font-size: 15px; color: var(--hn-ink);
}
.hn-search input:focus { box-shadow: 0 0 0 2px rgba(239,68,68,.35); }
.hn-search .hn-btn { padding: 16px 22px; }
.hn-bullets { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; color: var(--hn-ink); font-weight: 600; }
.hn-bullets li::before { content: "✓"; display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: #dcfce7; color: #15803d; font-size: 13px; margin-right: 12px; }

.hn-strip { margin-top: 64px; }
.hn-strip-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.hn-strip-head h3 { margin: 0; font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.hn-strip-row {
    display: grid; grid-auto-flow: column; grid-auto-columns: 168px; gap: 14px;
    overflow-x: auto; padding: 4px 4px 18px; scroll-snap-type: x mandatory; scrollbar-width: thin;
}
.hn-br { scroll-snap-align: start; border-radius: 18px; overflow: hidden; position: relative; aspect-ratio: 1; background: #ddd; box-shadow: var(--hn-shadow); }
.hn-br img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.hn-br:hover img { transform: scale(1.06); }
.hn-br span {
    position: absolute; left: 10px; right: 10px; bottom: 10px; padding: 8px 10px; border-radius: 10px;
    background: rgba(11,14,30,.78); color: #fff; font-size: 13px; font-weight: 700; text-align: center; backdrop-filter: blur(6px);
}

/* =========================== UNTERNEHMEN =========================== */
.hn-co-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.hn-co-head .hn-h2 { margin: 0; }
.hn-empty { text-align: center; padding: 60px 20px; background: #fff; border: 1px dashed var(--hn-line); border-radius: var(--hn-radius); color: var(--hn-soft); }

/* =========================== PREISE =========================== */
.hn-plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.hn-plan {
    position: relative; background: #fff; border: 1px solid var(--hn-line); border-radius: var(--hn-radius); padding: 28px 26px 26px;
    display: flex; flex-direction: column; gap: 10px; transition: transform .22s ease, box-shadow .22s ease;
}
.hn-plan:hover { transform: translateY(-5px); box-shadow: var(--hn-shadow-lg); }
.hn-plan--hot { border: 2px solid transparent; background: linear-gradient(#fff, #fff) padding-box, var(--hn-grad) border-box; }
.hn-plan-badge { position: absolute; top: -13px; left: 26px; padding: 5px 12px; border-radius: 100px; background: var(--hn-grad); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.hn-plan h3 { margin: 0; font-size: 18px; font-weight: 800; }
.hn-plan-price { font-size: 38px; font-weight: 800; letter-spacing: -.03em; line-height: 1; margin: 6px 0 2px; }
.hn-plan-price small { font-size: 14px; font-weight: 600; color: var(--hn-faint); letter-spacing: 0; }
.hn-plan p { margin: 0; color: var(--hn-soft); font-size: 14.5px; line-height: 1.5; flex: 1; }
.hn-plan .hn-btn { margin-top: 12px; width: 100%; }
.hn-plans-note { text-align: center; margin-top: 22px; color: var(--hn-faint); font-size: 14px; }

/* =========================== CTA =========================== */
.hn-cta {
    position: relative; overflow: hidden; border-radius: 28px; padding: 72px 40px; text-align: center; color: #fff;
    background: var(--hn-dark);
}
.hn-cta::before, .hn-cta::after {
    content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; filter: blur(110px); opacity: .45; pointer-events: none;
}
.hn-cta::before { background: #ef4444; left: -160px; top: -200px; }
.hn-cta::after { background: #6366f1; right: -160px; bottom: -220px; }
.hn-cta > * { position: relative; z-index: 1; }
.hn-cta .hn-h2 { margin-bottom: 12px; }
.hn-cta p { color: #b6bcdc; font-size: 17px; margin: 0 0 30px; }
.hn-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================== RESPONSIVE =========================== */
@media (max-width: 1080px) {
    .hn-ind { grid-template-columns: repeat(3, 1fr); }
    .hn-plans { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .hn-section { padding: 72px 0; }
    .hn-mods { grid-template-columns: repeat(2, 1fr); }
    .hn-flow, .hn-cust { grid-template-columns: 1fr; gap: 36px; }
    .hn-flow-img { order: -1; }
    .hn-stats { grid-template-columns: repeat(2, 1fr); }
    .hn-hero-media img { object-position: 60% center; }
}
@media (max-width: 640px) {
    .hn-wrap { padding: 0 16px; }
    .hn-hero .hn-wrap { padding-top: 90px; padding-bottom: 64px; }
    .hn-hero-media::after { background: linear-gradient(180deg, rgba(11,14,30,.55) 0%, rgba(11,14,30,.92) 55%, rgba(11,14,30,.98) 100%); }
    .hn-ind { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .hn-mods { grid-template-columns: 1fr; }
    .hn-plans { grid-template-columns: 1fr; }
    .hn-search { grid-template-columns: 1fr; }
    .hn-cta { padding: 52px 22px; border-radius: 20px; }
    .hn-co-head, .hn-strip-head { flex-direction: column; align-items: start; }
    .hn-strip-row { grid-auto-columns: 140px; }
}

/* =========================== HERO: Kino-Video + lebendige Schrift =========================== */
.hn-hero-media video { position: absolute; inset: -6% 0; width: 100%; height: 112%; object-fit: cover; object-position: 60% center; will-change: transform; }
.hn-hero-media img.hn-hero-fallback { display: none; }
.hn-hero--video .hn-hero-media::after {
    background:
        linear-gradient(90deg, rgba(11,14,30,.94) 0%, rgba(11,14,30,.82) 38%, rgba(11,14,30,.35) 70%, rgba(11,14,30,.15) 100%),
        linear-gradient(180deg, rgba(11,14,30,.5) 0%, rgba(11,14,30,0) 35%, rgba(11,14,30,.7) 100%);
}
.hn-kicker {
    display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px 8px 10px; border-radius: 100px;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); color: #e7ecff; font-size: 13px; font-weight: 700; margin-bottom: 20px; backdrop-filter: blur(8px);
}
.hn-kicker i { width: 8px; height: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 4px rgba(52,211,153,.25); animation: hnPulse 1.8s ease-in-out infinite; }
@keyframes hnPulse { 50% { box-shadow: 0 0 0 8px rgba(52,211,153,0); } }
.hn-rot { display: block; position: relative; height: 1.12em; overflow: visible clip; }
.hn-rot span {
    position: absolute; left: 0; top: 0; white-space: nowrap; opacity: 0; transform: translateY(60%);
    background: var(--hn-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
    transition: opacity .55s ease, transform .55s cubic-bezier(.2,.8,.2,1);
}
.hn-rot span.is-in { opacity: 1; transform: none; }
.hn-rot span.is-out { opacity: 0; transform: translateY(-60%); }
.hn-h1 .hn-rot span { padding-right: .06em; font-size: .92em; line-height: 1.12; }
.hn-hero--video .hn-hero-text { max-width: 720px; }
@media (prefers-reduced-motion: reduce) {
    .hn-rot span { transition: none; }
    .hn-kicker i { animation: none; }
}

/* Lauf-Leiste unter dem Hero: was ardda ist */
.hn-ticker { background: var(--hn-dark-2); color: #c9cfe9; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); overflow: hidden; }
.hn-ticker-track { display: flex; gap: 0; width: max-content; animation: hnTicker 38s linear infinite; }
.hn-ticker:hover .hn-ticker-track { animation-play-state: paused; }
.hn-ticker-track span { display: inline-flex; align-items: center; gap: 14px; padding: 14px 28px; font-size: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; white-space: nowrap; }
.hn-ticker-track span::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #ef4444; }
@keyframes hnTicker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .hn-ticker-track { animation: none; } }

/* =========================== MINI-PREISRECHNER =========================== */
.hn-mini { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.hn-mini-box { background: var(--hn-dark); color: #fff; border-radius: 24px; padding: 30px; box-shadow: var(--hn-shadow-lg); display: grid; gap: 14px; }
.hn-mini-box label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #aeb5d6; margin-bottom: 8px; }
.hn-mini-box select, .hn-mini-box input {
    width: 100%; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.08); color: #fff; border-radius: 12px; padding: 15px 14px; font: inherit; font-size: 15.5px; outline: 0;
}
.hn-mini-box select option { color: #15121f; }
.hn-mini-box select:focus, .hn-mini-box input:focus { box-shadow: 0 0 0 2px rgba(239,68,68,.5); }
.hn-mini-row { display: grid; grid-template-columns: 1.4fr .6fr; gap: 12px; }
.hn-mini-out { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 18px 20px; border-radius: 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); }
.hn-mini-out small { color: #aeb5d6; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.hn-mini-out b { font-size: clamp(22px, 2.4vw, 30px); font-weight: 800; letter-spacing: -.02em; background: var(--hn-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hn-mini-box .hn-btn { width: 100%; }
.hn-mini-note { color: #8089ad; font-size: 12.5px; margin: 0; }

/* =========================== RATGEBER =========================== */
.hn-rat { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.hn-rat-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--hn-line); border-radius: var(--hn-radius); overflow: hidden; transition: transform .22s ease, box-shadow .22s ease; }
.hn-rat-card:hover { transform: translateY(-5px); box-shadow: var(--hn-shadow-lg); }
.hn-rat-img { aspect-ratio: 16 / 10; overflow: hidden; background: #eee; }
.hn-rat-img img { width: 100%; height: 100%; object-fit: cover; }
.hn-rat-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.hn-rat-body time { font-size: 12.5px; color: var(--hn-faint); font-weight: 600; }
.hn-rat-body h3 { margin: 0; font-size: 19px; font-weight: 800; letter-spacing: -.01em; line-height: 1.25; }
.hn-rat-body p { margin: 0; color: var(--hn-soft); font-size: 14.5px; line-height: 1.55; flex: 1; }
.hn-rat-body .hn-link { margin-top: 6px; }

@media (max-width: 900px) { .hn-mini { grid-template-columns: 1fr; gap: 28px; } .hn-rat { grid-template-columns: 1fr; } .hn-hero-media video { object-position: 55% center; } }
@media (max-width: 640px) { .hn-mini-row { grid-template-columns: 1fr; } }
