/* Tokens */
:root {
    --navy-900: #0A1223;
    --navy-800: #12213D;
    --navy-700: #1B3059;
    --navy-600: #24406F;
    --blue: #1D5FBF;
    --blue-bright: #2B78E4;
    --blue-soft: #E8F0FC;
    --blue-line: #C6D9F4;
    --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: 17px;
    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(--blue); 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(--blue-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(--blue-bright);
}
.eyebrow-dark { color: var(--blue); }

/* 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(--blue);
    border-color: var(--blue);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(29, 95, 191, .28);
}
.btn-primary:hover { background: var(--blue-bright); border-color: var(--blue-bright); 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;
}
.nav ul a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width .2s ease;
}
.nav ul a:hover { text-decoration: none; color: var(--blue); }
.nav ul a:hover::after { width: 100%; }
.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(43, 120, 228, .5), 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, #7FB4FF 0%, #4E93F0 45%, #C9D8EC 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(--blue);
    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(--blue) 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 */
.services { padding-top: 3.4rem; }
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.05rem;
}
.service-card {
    position: relative;
    padding: 1.65rem 1.5rem 1.6rem;
    background: var(--steel-50);
    border: 1px solid var(--steel-200);
    border-radius: var(--radius-lg);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background-color .2s ease;
}
.service-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 1.65rem;
    width: 3px;
    height: 0;
    background: var(--blue);
    transition: height .25s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    background: var(--white);
    border-color: var(--blue-line);
    box-shadow: var(--shadow-md);
}
.service-card:hover::after { height: 34px; }
.service-card-wide { grid-column: span 2; }
.service-card-accent {
    background: linear-gradient(145deg, var(--navy-800), var(--navy-700));
    color: var(--white);
    border-color: var(--navy-700);
    grid-column: 1 / -1;
}
.service-card-accent h3 { color: var(--white); }
.service-card-accent p { color: rgba(255, 255, 255, .8); }
.service-card-accent .service-index { color: rgba(255, 255, 255, .3); }
.service-card-accent:hover { background: linear-gradient(145deg, var(--navy-700), var(--navy-600)); border-color: var(--blue); }

.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;
}

.service-index {
    display: block;
    margin-bottom: .55rem;
    font-size: .8rem;
    font-weight: 750;
    letter-spacing: .1em;
    color: var(--steel-300);
}
.service-card p { font-size: .94rem; line-height: 1.55; margin: 0; }

/* 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(--blue-bright);
}
.process-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 1.35rem;
    width: 34px;
    height: 3px;
    background: var(--blue);
}

/* Ü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(--blue);
    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(--blue); }
.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(--blue);
    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(--blue) 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);
}
.band-quote footer {
    font-size: .78rem;
    font-weight: 650;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
}

/* 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(3, 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(--blue);
    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(--blue-soft);
    color: var(--blue);
    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(--blue-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(--blue);
    border-bottom: 2px solid var(--blue);
    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(--blue); }
.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(--blue-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(--blue) 50%), linear-gradient(135deg, var(--blue) 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 {
    outline: none;
    background-color: var(--white);
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(29, 95, 191, .14);
}
.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; }

.check { display: flex; align-items: flex-start; gap: .5rem; margin: 0; 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(--blue); 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: #7C8798; }

.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[disabled] { 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(--blue-bright);
}
.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 { color: rgba(255, 255, 255, .68); font-size: .93rem; }
.footer-col a:hover { color: var(--white); text-decoration: none; }

.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-note {
    margin-top: 2.2rem;
    padding: 1rem 1.15rem;
    background: var(--blue-soft);
    border-left: 3px solid var(--blue);
    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(--blue-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; }

@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 */
@media (max-width: 1080px) {
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card-wide { grid-column: span 2; }
    .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: 900px) {
    :root { --header-h: 68px; }

    body { font-size: 16px; }

    .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: 620px) {
    .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; }

    .service-grid { grid-template-columns: 1fr; }
    .service-card-wide { grid-column: span 1; }

    .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; }
}
