/* Tokens */
:root {
    --navy-900: #061A31;
    --navy-800: #0B2139;
    --navy-700: #163150;
    --navy-600: #21426A;
    /* Markenakzent Gold (aus dem AKMOVA-Logo). --gold hält auf Weiß nur 3.2:1 –
       für kleinen Text auf hellem Grund immer --gold-dark verwenden (5.5:1). */
    --gold: #B6873F;
    --gold-dark: #8A6212;
    --gold-bright: #C69655;
    --gold-on-dark: #D8B673;
    --gold-soft: #F6ECD6;
    --gold-line: #E6D4AC;
    --steel-50: #F6F8FB;
    --steel-100: #EEF2F7;
    --steel-200: #DFE6EF;
    --steel-300: #C4D0E0;
    --ink: #131C2B;
    --body: #4E5B6E;
    --white: #FFFFFF;

    --shell: 1200px;
    --header-h: 84px;
    --radius: 6px;
    --radius-lg: 10px;

    --shadow-sm: 0 1px 2px rgba(18, 33, 61, .08), 0 2px 8px rgba(18, 33, 61, .05);
    --shadow-md: 0 4px 10px rgba(18, 33, 61, .07), 0 14px 32px rgba(18, 33, 61, .09);
    --shadow-lg: 0 10px 24px rgba(18, 33, 61, .10), 0 30px 60px rgba(18, 33, 61, .14);

    --font: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 14px); -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--font);
    font-size: 1.0625rem;
    line-height: 1.62;
    color: var(--body);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    margin: 0 0 .6em;
    color: var(--ink);
    line-height: 1.14;
    letter-spacing: -.02em;
    font-weight: 750;
}

h1 { font-size: clamp(2.15rem, 5.2vw, 3.65rem); }
h2 { font-size: clamp(1.62rem, 3.2vw, 2.42rem); }
h3 { font-size: 1.16rem; letter-spacing: -.01em; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--gold-dark); text-decoration: none; }
a:hover { color: var(--navy-700); text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
    outline: 3px solid var(--gold-bright);
    outline-offset: 2px;
    border-radius: 2px;
}

.shell {
    width: 100%;
    max-width: var(--shell);
    margin: 0 auto;
    padding: 0 24px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 999;
    background: var(--navy-800);
    color: var(--white);
    padding: 12px 20px;
}
.skip-link:focus { left: 12px; top: 12px; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    margin: 0 0 .9rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .82);
}
.eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--gold);
}
.eyebrow-dark { color: var(--gold-dark); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .92rem 1.6rem;
    border: 2px solid transparent;
    border-radius: var(--radius);
    font: inherit;
    font-size: .98rem;
    font-weight: 650;
    letter-spacing: -.01em;
    line-height: 1.2;
    cursor: pointer;
    text-decoration: none;
    transition: transform .16s ease, background-color .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(122, 90, 40, .30);
}
.btn-primary:hover { background: #6F4E0E; border-color: #6F4E0E; color: var(--white); }

.btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, .38);
    color: var(--white);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .1); border-color: var(--white); color: var(--white); }

.btn-sm { padding: .68rem 1.15rem; font-size: .9rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid var(--steel-200);
    transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: var(--header-h);
}

.brand { display: flex; align-items: center; }
.brand img { width: auto; height: 52px; }
.brand:hover { text-decoration: none; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav ul { display: flex; align-items: center; gap: 1.9rem; }
.nav a {
    position: relative;
    color: var(--navy-800);
    font-size: .96rem;
    font-weight: 600;
    letter-spacing: -.01em;
}
/* Mindestzielgröße 24px — die Zeilenhöhe allein ergibt nur 21px. */
.nav ul a { display: inline-flex; align-items: center; min-height: 24px; }
.nav ul a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .2s ease;
}
.nav ul a:hover { text-decoration: none; color: var(--gold-dark); }
.nav ul a:hover::after { width: 100%; }
.nav a.nav-cta { color: var(--white); }
.nav-cta:hover { color: var(--white); }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 42px;
    padding: 0 10px;
    background: var(--white);
    border: 1px solid var(--steel-200);
    border-radius: var(--radius);
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--navy-800);
    transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Sections */
.section { position: relative; padding: 4.6rem 0; }

.section-head { max-width: 720px; margin-bottom: 2.6rem; }
.section-head-light h2, .section-head-light .section-lead { color: var(--white); }
.section-head-light .section-lead { color: rgba(255, 255, 255, .78); }
.section-lead { font-size: 1.08rem; color: var(--body); }

/* Hero */
.hero {
    position: relative;
    padding: 5.2rem 0 5.6rem;
    color: var(--white);
    isolation: isolate;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background:
        radial-gradient(900px 480px at 82% 8%, rgba(198, 150, 85, .38), transparent 62%),
        linear-gradient(158deg, var(--navy-900) 0%, var(--navy-800) 42%, var(--navy-700) 100%);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4.5rem), 0 100%);
}
.hero-grid-lines {
    position: absolute;
    inset: -20% -10%;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 76px 76px;
    -webkit-mask-image: radial-gradient(75% 65% at 65% 30%, #000 20%, transparent 78%);
    mask-image: radial-gradient(75% 65% at 65% 30%, #000 20%, transparent 78%);
    will-change: transform;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 3.4rem;
    align-items: center;
}

.hero h1 { color: var(--white); margin-bottom: 1.1rem; }
.hero h1 .hl {
    color: transparent;
    background: linear-gradient(96deg, #D8B673 0%, #C69655 45%, #F6ECD6 100%);
    -webkit-background-clip: text;
    background-clip: text;
}
.hero .lead {
    max-width: 34rem;
    font-size: 1.13rem;
    color: rgba(255, 255, 255, .84);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin: 1.9rem 0 1.6rem;
}

.hero-claim {
    margin: 0;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(255, 255, 255, .16);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
}
.hero-claim strong { color: rgba(255, 255, 255, .92); font-weight: 700; }

.hero-media { position: relative; margin-bottom: -3.5rem; }
.media-slot-hero { aspect-ratio: 4 / 5; }

.hero-badge {
    position: absolute;
    left: -22px;
    bottom: 46px;
    display: flex;
    flex-direction: column;
    padding: 1rem 1.35rem;
    background: var(--white);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.hero-badge-value { font-size: 1.55rem; font-weight: 780; color: var(--navy-800); line-height: 1; }
.hero-badge-label { margin-top: .3rem; max-width: 11rem; font-size: .82rem; font-weight: 550; color: var(--body); line-height: 1.35; }

/* Bildplatzhalter — werden durch generierte Bilder ersetzt (data-ai-image = Prompt) */
.media-slot {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    width: 100%;
    height: 100%;
    object-fit: cover;
    background:
        linear-gradient(150deg, var(--navy-900) 0%, var(--navy-700) 48%, var(--gold) 100%);
    box-shadow: var(--shadow-lg);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 42px), calc(100% - 42px) 100%, 0 100%);
}
.media-slot::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(115deg, rgba(255, 255, 255, .055) 0 2px, transparent 2px 22px);
}
.media-slot::after {
    content: "";
    position: absolute;
    right: -8%;
    top: 46%;
    width: 78%;
    height: 46px;
    background:
        linear-gradient(to right, transparent, rgba(255, 255, 255, .55)) 0 0 / 100% 8px no-repeat,
        linear-gradient(to right, transparent, rgba(255, 255, 255, .38)) 0 18px / 84% 8px no-repeat,
        linear-gradient(to right, transparent, rgba(255, 255, 255, .22)) 0 36px / 68% 8px no-repeat;
    transform: skewX(-18deg);
}

/* Trustbar */
.trustbar { position: relative; z-index: 2; padding-bottom: 1rem; background: transparent; }
.trustbar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: -3.2rem;
    background: var(--steel-200);
    border: 1px solid var(--steel-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.trust-card { padding: 1.5rem 1.5rem 1.6rem; background: var(--white); }
.trust-card h2 {
    margin-bottom: .45rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -.01em;
    color: var(--navy-800);
}
.trust-card p { font-size: .92rem; line-height: 1.5; }

/* Leistungen — Prozesskette */
.services { padding-top: 3.4rem; }
.chain {
    position: relative;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: .4rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.chain::before {
    content: "";
    position: absolute;
    top: 31px;
    left: 7.1%;
    right: 7.1%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-line), var(--gold) 45%, var(--steel-300));
}
.chain-node {
    position: relative;
    padding: 0 .25rem;
    text-align: center;
}
.chain-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: .9rem;
    color: var(--gold);
    background: var(--white);
    border: 2px solid var(--gold-line);
    border-radius: 50%;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}
.chain-icon svg { width: 26px; height: 26px; }
.chain-node:hover .chain-icon {
    transform: translateY(-4px);
    color: var(--white);
    background: var(--navy-800);
    border-color: var(--navy-800);
    box-shadow: var(--shadow-md);
}
.chain-node h3 { margin-bottom: .3rem; font-size: .97rem; }
.chain-node p { margin: 0; font-size: .82rem; line-height: 1.45; }
.chain-node-return .chain-icon { border-style: dashed; border-color: var(--steel-300); color: var(--navy-700); }

.chain-notes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.05rem;
    margin-top: 3.4rem;
}
.chain-note {
    padding: 1.4rem 1.45rem 1.5rem;
    background: var(--steel-50);
    border: 1px solid var(--steel-200);
    border-left: 3px solid var(--navy-700);
    border-radius: var(--radius-lg);
}
.chain-note h3 { margin-bottom: .4rem; font-size: 1.02rem; }
.chain-note p { margin: 0; font-size: .92rem; line-height: 1.55; }
.chain-note-accent {
    background: linear-gradient(145deg, var(--navy-800), var(--navy-700));
    border-color: var(--navy-700);
    border-left-color: var(--navy-600);
}
.chain-note-accent h3 { color: var(--white); }
.chain-note-accent p { color: rgba(255, 255, 255, .8); }

/* Schnittstellen */
.integrations { position: relative; background: var(--steel-50); border-top: 1px solid var(--steel-200); }
/* Führt die helle Fläche unter der Diagonale von .process weiter, die dort
   sonst den weißen Body freilegt (3.2rem Abstand + 3.6rem Anschnitt). */
.integrations::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 100%;
    left: 0;
    right: 0;
    height: 9rem;
    background: var(--steel-50);
}
.exchange {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 1.4rem;
    align-items: center;
    margin-bottom: 1.6rem;
    padding: 1.6rem;
    background: var(--white);
    border: 1px solid var(--steel-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.exchange-side {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    padding: 1.1rem 1.2rem;
    text-align: center;
    background: var(--steel-50);
    border: 1px solid var(--steel-200);
    border-radius: var(--radius);
}
.exchange-label { font-weight: 750; letter-spacing: -.01em; color: var(--navy-800); }
.exchange-sub { font-size: .82rem; line-height: 1.4; }
.exchange-side-accent { background: linear-gradient(145deg, var(--navy-800), var(--navy-700)); border-color: var(--navy-700); }
.exchange-side-accent .exchange-label { color: var(--white); }
.exchange-side-accent .exchange-sub { color: rgba(255, 255, 255, .72); }
.exchange-rows { display: grid; gap: .85rem; }
.exchange-row { display: flex; flex-direction: column; align-items: center; gap: .3rem; color: var(--navy-700); }
.exchange-text { font-size: .86rem; font-weight: 650; letter-spacing: -.01em; color: var(--navy-700); }
.exchange-arrow { width: 100%; max-width: 240px; height: 12px; }
.exchange-row-back { color: var(--body); }
.exchange-row-back .exchange-text { font-weight: 550; color: var(--body); }

.logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--steel-200);
    border: 1px solid var(--steel-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.logo-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1.2rem;
    background: var(--white);
    transition: background-color .2s ease;
}
.logo-tile:hover { background: var(--gold-soft); }
.logo-tile img { width: 100%; max-width: 172px; height: auto; }
.integrations-note {
    max-width: 660px;
    margin: 1.6rem auto 0;
    font-size: .92rem;
    text-align: center;
}

.ai-label {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(10, 18, 35, 0.6);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 4px;
    pointer-events: none;
    z-index: 10;
    backdrop-filter: blur(4px);
    letter-spacing: 0.05em;
    line-height: 1.2;
}

/* Ablauf */
.process {
    margin-top: 3.2rem;
    padding: 6.2rem 0 5.4rem;
    color: var(--white);
    background: linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 100%);
    clip-path: polygon(0 3.6rem, 100% 0, 100% 100%, 0 calc(100% - 3.6rem));
}
.process-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    counter-reset: step;
    list-style: none;
    margin: 0;
    padding: 0;
}
.process-step {
    position: relative;
    padding: 1.5rem 1.35rem 1.55rem;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-lg);
}
.process-step:nth-child(even) { transform: translateY(1.6rem); }
.process-step h3 { color: var(--white); margin-bottom: .4rem; }
.process-step p { font-size: .92rem; line-height: 1.55; color: rgba(255, 255, 255, .74); margin: 0; }
.process-num {
    display: block;
    margin-bottom: .8rem;
    font-size: 1.5rem;
    font-weight: 780;
    letter-spacing: -.02em;
    color: var(--gold-bright);
}
.process-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 1.35rem;
    width: 34px;
    height: 3px;
    background: var(--gold);
}

/* Über uns */
.about { padding-top: 5.6rem; }
.about-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 3.4rem;
    align-items: center;
}
.about-media { position: relative; margin-top: -8rem; }
.media-slot-about { aspect-ratio: 3 / 4; }
.about-stamp {
    position: absolute;
    right: -18px;
    bottom: -22px;
    display: flex;
    flex-direction: column;
    padding: .95rem 1.3rem;
    background: var(--white);
    border-top: 4px solid var(--gold);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.about-stamp span { font-size: .74rem; font-weight: 650; letter-spacing: .13em; text-transform: uppercase; color: var(--gold-dark); }
.about-stamp strong { font-size: 1.22rem; font-weight: 780; color: var(--navy-800); letter-spacing: -.02em; }

.about-copy h2 { margin-bottom: 1rem; }
.about-points { margin: 1.5rem 0 1.9rem; display: grid; gap: .85rem; }
.about-points li {
    position: relative;
    padding-left: 1.7rem;
    font-size: .96rem;
    line-height: 1.55;
}
.about-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .52em;
    width: 10px;
    height: 10px;
    background: var(--gold);
    transform: skewX(-18deg);
}
.about-points strong { color: var(--ink); }

/* Parallax-Band */
.band {
    position: relative;
    margin-top: 4.4rem;
    padding: 5.4rem 0;
    overflow: hidden;
    isolation: isolate;
}
.band-media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.band-slot {
    position: absolute;
    inset: -18% 0;
    background:
        linear-gradient(180deg, rgba(10, 18, 35, .78), rgba(18, 33, 61, .82)),
        linear-gradient(120deg, var(--navy-800) 0%, var(--navy-600) 58%, var(--navy-700) 100%);
}
.band-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(10, 18, 35, 0.45);
}
.band-inner { position: relative; text-align: center; }
.band-quote { margin: 0; }
.band-quote p {
    max-width: 46rem;
    margin: 0 auto .9rem;
    font-size: clamp(1.35rem, 3vw, 2.05rem);
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: -.02em;
    color: var(--white);
    text-shadow: 0 2px 16px rgba(10, 18, 35, .65), 0 1px 3px rgba(10, 18, 35, .55);
}
.band-quote footer {
    font-size: .78rem;
    font-weight: 650;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    text-shadow: 0 1px 8px rgba(10, 18, 35, .6);
}

/* Slogan-Strip */
.slogan {
    position: relative;
    padding: 3.6rem 0;
    text-align: center;
    background:
        radial-gradient(120% 140% at 50% 0%, rgba(33, 66, 106, .45) 0%, rgba(33, 66, 106, 0) 60%),
        linear-gradient(120deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 130%);
    color: var(--white);
    overflow: hidden;
    isolation: isolate;
}
.slogan-inner { position: relative; }
.slogan-kicker {
    margin: 0 0 .55rem;
    font-size: .78rem;
    font-weight: 650;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-on-dark);
}
.slogan-line {
    margin: 0 auto;
    font-size: clamp(2rem, 5.4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.03em;
    color: var(--white);
}
.slogan-sub {
    max-width: 44rem;
    margin: 1rem auto 0;
    font-size: clamp(1rem, 1.7vw, 1.18rem);
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, .82);
}

/* Vorteile */
.benefits { background: var(--steel-50); border-top: 1px solid var(--steel-200); border-bottom: 1px solid var(--steel-200); }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.05rem; }
.benefit {
    padding: 1.55rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--steel-200);
    border-radius: var(--radius-lg);
    border-top: 3px solid var(--gold);
    transition: transform .2s ease, box-shadow .2s ease;
}
.benefit:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.benefit-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gold-soft);
    color: var(--gold-dark);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}
.benefit-mark svg { width: 24px; height: 24px; }
.benefit h3 { margin-bottom: .45rem; }
.benefit p { font-size: .94rem; line-height: 1.55; margin: 0; }


/* FAQ */
.faq-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 3rem; align-items: start; }
.faq-head { position: sticky; top: calc(var(--header-h) + 26px); }
.faq-list { display: grid; gap: .6rem; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--steel-200);
    border-radius: var(--radius-lg);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] { border-color: var(--gold-line); box-shadow: var(--shadow-sm); }
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.05rem 1.25rem;
    font-size: 1rem;
    font-weight: 650;
    letter-spacing: -.01em;
    color: var(--navy-800);
    cursor: pointer;
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "";
    flex: 0 0 auto;
    width: 11px;
    height: 11px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg) translateY(-2px);
    transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg) translateY(-2px); }
.faq-item summary:hover { color: var(--gold-dark); }
.faq-answer { padding: 0 1.25rem 1.2rem; }
.faq-answer p { font-size: .95rem; line-height: 1.6; margin: 0; }

/* Kontakt */
.contact { padding-top: 4.4rem; padding-bottom: 5rem; }
.contact-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 0; align-items: stretch; }

.contact-aside {
    padding: 2.7rem 2.4rem 2.7rem 2.3rem;
    color: var(--white);
    background: linear-gradient(158deg, var(--navy-800) 0%, var(--navy-900) 100%);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.contact-aside h2 { color: var(--white); }
.contact-aside > p { color: rgba(255, 255, 255, .78); font-size: .97rem; }
.contact-facts { display: grid; gap: .8rem; margin: 1.6rem 0; }
.contact-facts li {
    padding-left: 1.6rem;
    position: relative;
    font-size: .92rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, .72);
}
.contact-facts li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .5em;
    width: 9px;
    height: 9px;
    background: var(--gold-bright);
    transform: skewX(-18deg);
}
.contact-facts span { display: block; font-weight: 700; color: var(--white); }
.contact-mail {
    padding-top: 1.3rem;
    border-top: 1px solid rgba(255, 255, 255, .16);
    font-size: .92rem;
    color: rgba(255, 255, 255, .66);
}
.contact-mail a { color: var(--white); font-weight: 650; }

.contact-form-wrap {
    padding: 1.8rem 1.7rem 2rem;
    background: var(--white);
    border: 1px solid var(--steel-200);
    border-left: none;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    box-shadow: var(--shadow-md);
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: .85rem; }
.field label {
    display: block;
    margin-bottom: .25rem;
    font-size: .84rem;
    font-weight: 650;
    color: var(--navy-800);
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
    width: 100%;
    padding: .65rem .8rem;
    font: inherit;
    font-size: .94rem;
    color: var(--ink);
    background-color: var(--steel-50);
    border: 1px solid var(--steel-200);
    border-radius: var(--radius);
    transition: border-color .16s ease, background-color .16s ease, box-shadow .16s ease;
}
.field textarea { resize: vertical; min-height: 118px; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 2.4rem; }
.field input:focus,
.field select:focus,
.field textarea:focus {
    background-color: var(--white);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(182, 135, 63, .18);
}
/* Der weiche Ring allein trägt den Fokus nicht — er hat gegen die Feldkante zu
   wenig Kontrast. Der Ring bleibt als Verstärkung, sichtbar macht ihn die
   Outline aus der globalen :focus-visible-Regel. */
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
    outline: 3px solid var(--gold-bright);
    outline-offset: 2px;
}
.field input.has-error, .field textarea.has-error { border-color: #C0392B; background-color: #FDF3F2; }

.field-error { display: none; margin: .35rem 0 0; font-size: .84rem; font-weight: 600; color: #C0392B; }
.field-error.is-visible { display: block; }

.checkgroup { margin: 0 0 1rem; padding: 0; border: 0; }
.checkgroup legend { padding: 0; margin-bottom: .5rem; font-size: .88rem; font-weight: 650; color: var(--navy-800); }
.check-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .45rem; }

/* Klickziel ist das Label, nicht die Box — min-height hält es über 24px,
   auch wenn sich Schriftgröße oder Spaltenzahl ändern. */
.check { display: flex; align-items: flex-start; gap: .5rem; margin: 0; min-height: 24px; font-size: .88rem; font-weight: 500; color: var(--body); cursor: pointer; }
.check input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 1px; accent-color: var(--gold); cursor: pointer; }
.check span { line-height: 1.35; }

.field-consent { margin-top: 1.2rem; }
.field-consent .check { font-size: .87rem; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.turnstile-slot:not(:empty) { margin: 0 0 1.1rem; }

.form-note { margin: .7rem 0 0; font-size: .8rem; color: #67717F; }

.form-status { display: none; margin: 1rem 0 0; padding: .9rem 1rem; border-radius: var(--radius); font-size: .94rem; font-weight: 550; }
.form-status.is-visible { display: block; }
.form-status.is-success { background: #EAF6EE; border: 1px solid #B6DFC5; color: #1E6B3A; }
.form-status.is-error { background: #FDF3F2; border: 1px solid #F0C6C1; color: #A93226; }

#submitButton[aria-disabled="true"] { opacity: .62; cursor: progress; transform: none; }

/* Footer */
.site-footer {
    padding: 3.4rem 0 1.6rem;
    color: rgba(255, 255, 255, .68);
    background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 2.4rem;
    padding-bottom: 2.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.footer-brand img { width: auto; height: 54px; filter: brightness(0) invert(1); opacity: .95; }
.footer-claim {
    margin: .9rem 0 .7rem;
    font-size: .74rem;
    font-weight: 650;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-on-dark);
}
.footer-text { font-size: .92rem; line-height: 1.55; max-width: 24rem; }
.footer-col h2 {
    margin-bottom: .9rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--white);
}
.footer-col ul { display: grid; gap: .55rem; }
.footer-col a { display: inline-flex; align-items: center; min-height: 24px; color: rgba(255, 255, 255, .68); font-size: .93rem; }
.footer-col a:hover { color: var(--white); text-decoration: none; }

.footer-consent {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0;
    border: 0;
    background: none;
    font: inherit;
    font-size: .93rem;
    color: rgba(255, 255, 255, .68);
    text-align: left;
    cursor: pointer;
}
.footer-consent:hover { color: var(--white); }

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: .6rem;
    padding-top: 1.4rem;
    font-size: .85rem;
}
.footer-bottom p { margin: 0; }
.footer-credit a { color: rgba(255, 255, 255, .86); font-weight: 600; }

/* Rechtstexte */
.legal { padding: 3.6rem 0 4.4rem; }
.legal-head {
    padding: 3rem 0 4.6rem;
    color: var(--white);
    background: linear-gradient(158deg, var(--navy-900), var(--navy-700));
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3rem), 0 100%);
}
.legal-head h1 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 0; }
.legal-body {
    max-width: 780px;
    margin: -3.2rem auto 0;
    padding: 2.4rem 2.4rem 2.6rem;
    position: relative;
    background: var(--white);
    border: 1px solid var(--steel-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.legal-body h2 {
    margin-top: 2rem;
    font-size: 1.16rem;
    color: var(--navy-800);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { font-size: .97rem; }
.legal-body address { font-style: normal; line-height: 1.7; }
.legal-body code {
    padding: .1em .35em;
    background: var(--steel-100);
    border-radius: 3px;
    font-size: .88em;
    color: var(--navy-800);
    overflow-wrap: anywhere;
}
.legal-table-wrap { overflow-x: auto; margin-top: .4rem; }
.legal-table {
    width: 100%;
    min-width: 34rem;
    border-collapse: collapse;
    font-size: .9rem;
}
.legal-table th, .legal-table td {
    padding: .6rem .7rem;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--steel-200);
}
.legal-table th {
    font-weight: 650;
    color: var(--navy-800);
    background: var(--steel-50);
    border-bottom-color: var(--steel-300);
}
.legal-note {
    margin-top: 2.2rem;
    padding: 1rem 1.15rem;
    background: var(--gold-soft);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: .9rem;
    color: var(--navy-700);
}
.placeholder {
    display: inline-block;
    padding: .1em .45em;
    background: #FFF3D6;
    border: 1px dashed #D9A441;
    border-radius: 3px;
    font-size: .92em;
    font-weight: 600;
    color: #8A6212;
}

/* 404 */
.notfound {
    display: flex;
    align-items: center;
    min-height: 62vh;
    padding: 4rem 0;
    color: var(--white);
    background: linear-gradient(158deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
}
.notfound-code {
    font-size: clamp(3.4rem, 11vw, 6.4rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.04em;
    color: var(--gold-bright);
}
.notfound h1 { color: var(--white); margin: .7rem 0 .8rem; }
.notfound p { max-width: 34rem; color: rgba(255, 255, 255, .78); }
.notfound .btn { margin-top: 1.6rem; }

/* Einwilligungs-Dialog */
.consent {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    background: rgba(10, 18, 35, .55);
}
.consent[hidden] { display: none; }
body.has-consent { overflow: hidden; }

.consent-box {
    width: 100%;
    max-width: 42rem;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    padding: 1.7rem 1.7rem 1.4rem;
    background: var(--white);
    border: 1px solid var(--steel-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.consent-title { font-size: 1.16rem; margin-bottom: .55rem; }
.consent-text { font-size: .93rem; line-height: 1.55; margin-bottom: .7rem; }
.consent-text-sm { font-size: .84rem; color: var(--body); }

.consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .7rem;
    margin-top: 1.1rem;
}
/* Ablehnen und Akzeptieren sind bewusst gleich gewichtet — eine optisch
   bevorzugte Zustimmung wäre keine freiwillige Einwilligung. */
.consent-btn {
    min-height: 46px;
    padding: .72rem 1.1rem;
    border: 1px solid var(--navy-800);
    border-radius: var(--radius);
    background: var(--navy-800);
    color: var(--white);
    font: inherit;
    font-size: .94rem;
    font-weight: 650;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease;
}
.consent-btn:hover { background: var(--navy-700); border-color: var(--navy-700); }

.consent-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    margin-top: 1rem;
    padding-top: .9rem;
    border-top: 1px solid var(--steel-200);
    font-size: .86rem;
    color: var(--body);
}
.consent-foot a { min-height: 24px; display: inline-flex; align-items: center; }
.consent-link {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0;
    border: 0;
    background: none;
    font: inherit;
    font-size: .86rem;
    color: var(--gold-dark);
    text-decoration: underline;
    cursor: pointer;
}
.consent-link:hover { color: var(--navy-700); }

.consent-cats { display: grid; gap: .8rem; margin: 1rem 0 0; }
.consent-cat {
    padding: .85rem 1rem;
    border: 1px solid var(--steel-200);
    border-radius: var(--radius);
    background: var(--steel-50);
}
.consent-cat-head { display: flex; align-items: center; justify-content: space-between; gap: .8rem; }
.consent-cat-name { font-size: .95rem; font-weight: 650; color: var(--ink); }
.consent-cat-fixed { font-size: .78rem; font-weight: 600; color: var(--body); }
.consent-cat-text { margin: .45rem 0 0; font-size: .84rem; line-height: 1.5; color: var(--body); }

.consent-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    min-height: 28px;
    cursor: pointer;
}
.consent-switch input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}
.consent-switch-track {
    position: relative;
    flex: none;
    width: 44px;
    height: 26px;
    border-radius: 13px;
    background: var(--steel-300);
    transition: background .15s ease;
}
.consent-switch-track::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform .15s ease;
}
.consent-switch input:checked ~ .consent-switch-track { background: var(--gold); }
.consent-switch input:checked ~ .consent-switch-track::after { transform: translateX(18px); }
.consent-switch input:focus-visible ~ .consent-switch-track {
    outline: 3px solid var(--gold-bright);
    outline-offset: 2px;
}

@media (max-width: 38.75em) {
    .consent { padding: 0; align-items: flex-end; }
    .consent-box { max-width: none; border-radius: var(--radius-lg) var(--radius-lg) 0 0; padding: 1.4rem 1.2rem 1.2rem; }
    .consent-actions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
    .hero-grid-lines, .band-slot { transform: none !important; }
}

/* Responsive — Breakpoints in em, nicht px: bei 16px Grundschrift entsprechen
   67.5/56.25/38.75em exakt 1080/900/620px, aber sie greifen zusätzlich, wenn der
   Nutzer die Schriftgröße hochsetzt. Sonst behalten die Karten-Grids ihre feste
   Spaltenzahl und der Text läuft seitlich aus dem Viewport (WCAG 1.4.4). */
@media (max-width: 67.5em) {
    .nav { gap: 1.4rem; }
    .nav ul { gap: 1.35rem; }

    .chain { grid-template-columns: repeat(4, 1fr); row-gap: 2.2rem; }
    .chain::before { display: none; }
    .chain-notes { grid-template-columns: 1fr; }

    /* Gestapelt bekommt jede Richtung ihre eigene Bahn an einer Kartenkante:
       links läuft der Hinweg nach unten, rechts der Rückweg nach oben. Beide
       Bahnen verbinden dieselben zwei Boxen — es ist kein Ablauf nacheinander.
       Die Labels liegen zwischen den Bahnen und behalten die volle Breite. */
    .exchange { grid-template-columns: 1fr; gap: 0; }
    .exchange-arrow { display: none; }
    .exchange-rows {
        position: relative;
        grid-template-columns: 1fr;
        gap: .3rem;
        padding: 1.15rem 0;
    }
    /* Die beiden Bahnen laufen zwischen den Boxen, mit etwas Abstand zu beiden,
       damit sie nicht an den Kanten kleben. */
    .exchange-rows::before,
    .exchange-rows::after {
        content: '';
        position: absolute;
        top: 12px;
        bottom: 12px;
        width: 4px;
        border-radius: 2px;
    }
    .exchange-rows::before { left: 6px; background: var(--navy-700); }
    .exchange-rows::after { right: 6px; background: #9EA5AF; }

    /* position: static — die Pfeilspitzen sollen an .exchange-rows hängen,
       damit sie am Bahnende sitzen und nicht an ihrer eigenen Zeile. */
    .exchange-row {
        position: static;
        display: block;
        /* beidseitig Luft, damit ein umbrechender Chip nie in die
           gegenüberliegende Bahn läuft */
        padding: .35rem 1.45rem;
        text-align: left;
    }
    .exchange-row::before { content: none; }
    /* Gefüllte Spitze statt Haken: neben den gepolsterten Label-Chips wirkt ein
       dünner Winkel zu zerbrechlich. Spitze des Hinwegs unten links. */
    .exchange-row::after {
        content: '';
        position: absolute;
        left: 8px;
        bottom: .6rem;
        width: 0;
        height: 0;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-top: 10px solid var(--navy-700);
        transform: translateX(-50%);
    }
    /* Das Label sitzt als Chip auf seiner Bahn — so gehört jede Beschriftung
       sichtbar zu genau einer Richtung. */
    .exchange-row .exchange-text {
        display: inline-block;
        padding: .3rem .75rem;
        font-size: .88rem;
        line-height: 1.4;
        background: var(--gold-soft);
        border-radius: var(--radius);
    }

    .exchange-row-back { text-align: right; }
    .exchange-row-back .exchange-text { background: var(--steel-100); }
    /* Spitze des Rückwegs: oben rechts, an der Box des Kunden. */
    .exchange-row-back::after {
        left: auto;
        right: 8px;
        top: .6rem;
        bottom: auto;
        border-top: 0;
        border-bottom: 10px solid #9EA5AF;
        transform: translateX(50%);
    }
    .logo-grid { grid-template-columns: repeat(3, 1fr); }

    .process-list { grid-template-columns: repeat(2, 1fr); }
    .process-step:nth-child(even) { transform: none; }
    .process-step:nth-child(2), .process-step:nth-child(4) { transform: translateY(1.2rem); }
    .benefit-grid { grid-template-columns: repeat(2, 1fr); }
    .trustbar-inner { grid-template-columns: repeat(2, 1fr); }
    .check-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 56.25em) {
    :root { --header-h: 68px; }

    body { font-size: 1rem; }

    .brand img { height: 42px; }

    .nav-toggle { display: flex; }
    .nav {
        position: fixed;
        inset: var(--header-h) 0 auto 0;
        display: block;
        max-height: 0;
        padding: 0 24px;
        overflow: hidden;
        background: var(--white);
        border-bottom: 1px solid transparent;
        transition: max-height .28s ease, padding .28s ease, border-color .28s ease;
    }
    .nav.is-open {
        max-height: calc(100vh - var(--header-h));
        padding: 1rem 24px 1.6rem;
        border-bottom-color: var(--steel-200);
        overflow-y: auto;
        box-shadow: var(--shadow-md);
    }
    .nav ul { display: block; }
    .nav ul li { border-bottom: 1px solid var(--steel-100); }
    .nav ul a { display: block; padding: .95rem 0; font-size: 1.02rem; }
    .nav ul a::after { display: none; }
    .nav-cta { display: flex; margin-top: 1.1rem; width: 100%; }

    .hero { padding: 3.2rem 0 4rem; }
    .hero-inner { grid-template-columns: 1fr; gap: 2.2rem; }
    .hero-media { margin-bottom: -4.5rem; max-width: 460px; }
    .media-slot-hero { aspect-ratio: 16 / 11; }
    .hero-badge { left: auto; right: 14px; bottom: -18px; }

    .trustbar-inner { margin-top: -2.4rem; }

    .about-grid { grid-template-columns: 1fr; gap: 2.4rem; }
    .about-media { margin-top: -5.4rem; max-width: 440px; }
    .media-slot-about { aspect-ratio: 4 / 3; }
    .about-stamp { right: 12px; }

    .faq-grid { grid-template-columns: 1fr; gap: 1.8rem; }
    .faq-head { position: static; }

    .contact-grid { grid-template-columns: 1fr; gap: 0; }
    .contact-aside { border-radius: var(--radius-lg) var(--radius-lg) 0 0; padding: 2.2rem 1.7rem; border-bottom: 1px solid var(--steel-200); }
    .contact-form-wrap { border-left: none; border-radius: 0 0 var(--radius-lg) var(--radius-lg); padding: 2rem 1.7rem 2.2rem; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand { grid-column: span 2; }
}

@media (max-width: 38.75em) {
    .shell { padding: 0 18px; }
    .section { padding: 3.2rem 0; }

    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
    .hero-badge { position: static; margin-top: 1rem; box-shadow: var(--shadow-md); }
    .hero-media { margin-bottom: -3rem; }
    .media-slot { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%); }

    .trustbar-inner { grid-template-columns: 1fr; margin-top: -1.6rem; }

    .chain { grid-template-columns: 1fr; row-gap: 0; }
    .chain-node {
        display: grid;
        grid-template-columns: 54px 1fr;
        align-items: start;
        column-gap: 1.1rem;
        padding: 0 0 1.5rem;
        text-align: left;
    }
    .chain-node::before {
        content: "";
        position: absolute;
        top: 58px;
        bottom: 0;
        left: 26px;
        width: 2px;
        background: var(--gold-line);
    }
    .chain-node:last-child::before { display: none; }
    .chain-icon { grid-row: span 2; width: 54px; height: 54px; margin-bottom: 0; }
    .chain-node h3 { align-self: center; margin-bottom: .2rem; }

    .logo-grid { grid-template-columns: repeat(2, 1fr); }

    .process { padding: 4.6rem 0 4.2rem; clip-path: polygon(0 2.2rem, 100% 0, 100% 100%, 0 calc(100% - 2.2rem)); }
    .process-list { grid-template-columns: 1fr; }
    .process-step, .process-step:nth-child(even), .process-step:nth-child(2), .process-step:nth-child(4) { transform: none; }

    .about-media { margin-top: -3.4rem; }
    .about-stamp { position: static; margin-top: 1rem; display: inline-flex; }

    .benefit-grid { grid-template-columns: 1fr; }

    .band { padding: 4rem 0; }

    .field-row { grid-template-columns: 1fr; gap: 0; }
    .field { margin-bottom: 1rem; }
    .field input, .field select, .field textarea { padding: .65rem .85rem; font-size: 1rem; }
    .check-grid { grid-template-columns: repeat(2, 1fr); gap: .4rem; }
    .contact-form-wrap { padding: 1.5rem 1.2rem 1.5rem; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
    .footer-bottom { justify-content: flex-start; }

    .legal-body { padding: 1.8rem 1.4rem 2rem; }
}
