:root {
    --c-bg: #121745;
    --c-bg-deep: #0a0d2e;
    --c-surface: #171d56;
    --c-surface-2: #1b2266;
    --c-accent: #399934;
    --c-accent-soft: #4fbf48;
    --c-accent-glow: rgba(57, 153, 52, 0.35);
    --c-text: #f4f6ff;
    --c-text-mute: #b9c0e2;
    --c-line: rgba(255, 255, 255, 0.08);

    --maxw: 1140px;
    --radius: 18px;
    --radius-lg: 28px;
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --shadow: 0 24px 50px -22px rgba(0, 0, 0, 0.6);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--c-text);
    background:
        radial-gradient(ellipse at 50% -10%, #1a2160 0%, var(--c-bg) 42%, var(--c-bg-deep) 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: clamp(1.1rem, 4vw, 2rem);
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--c-accent);
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 0 0 10px 0;
    z-index: 200;
}
.skip-link:focus { left: 0; }

/* ===== Header ===== */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header.scrolled {
    background: rgba(10, 13, 46, 0.78);
    backdrop-filter: blur(14px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--c-line);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    height: 72px;
}
.header-actions { display: flex; align-items: center; gap: 1rem; }
.brand { display: inline-flex; align-items: center; }
.brand-logo {
    height: 40px;
    width: auto;
    background: #fff;
    padding: 6px 10px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s var(--ease-bounce);
}
.brand:hover .brand-logo { transform: scale(1.05) rotate(-2deg); }

.nav {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.nav a {
    text-decoration: none;
    color: var(--c-text-mute);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    transition: color 0.2s ease, background-color 0.2s ease;
}
.nav a:hover { color: var(--c-text); background: rgba(255, 255, 255, 0.06); }
.nav .nav-cta {
    background: var(--c-accent);
    color: #fff;
    box-shadow: 0 8px 20px -6px var(--c-accent-glow);
}
.nav .nav-cta:hover { background: var(--c-accent-soft); }

/* ===== Language switch ===== */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--c-line);
    border-radius: 999px;
    flex: none;
}
.lang-btn {
    appearance: none;
    border: none;
    background: transparent;
    color: var(--c-text-mute);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease;
}
.lang-btn:hover { color: var(--c-text); }
.lang-btn[aria-pressed="true"] {
    background: var(--c-accent);
    color: #fff;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--c-line);
    border-radius: 12px;
    cursor: pointer;
}
.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.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); }

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
    overflow: hidden;
}
.hero-bg::before,
.hero-bg::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}
.hero-bg::before {
    width: 60vw; height: 60vw;
    top: -20vh; right: -15vw;
    background: radial-gradient(circle, rgba(79, 100, 220, 0.22), transparent 65%);
    animation: drift 20s ease-in-out infinite alternate;
}
.hero-bg::after {
    width: 50vw; height: 50vw;
    bottom: -25vh; left: -12vw;
    background: radial-gradient(circle, var(--c-accent-glow), transparent 65%);
    animation: drift 24s ease-in-out infinite alternate-reverse;
}
@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5%, -4%) scale(1.1); }
}

#confetti {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
}
.hero-inner { position: relative; z-index: 2; max-width: 880px; }
.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--c-accent-soft);
    margin-bottom: 1rem;
}
.hero-title {
    font-size: clamp(2.1rem, 6vw, 4rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.3rem;
}
.hero-title .grad {
    background: linear-gradient(100deg, var(--c-accent-soft), #7fe07a 60%, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-lead {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: var(--c-text-mute);
    max-width: 60ch;
    margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 3rem; }

.hero-trust {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.9rem;
    list-style: none;
    max-width: 760px;
}
.trust-badge {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--c-line);
    border-radius: 14px;
    backdrop-filter: blur(6px);
    transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}
.trust-badge:hover {
    transform: translateY(-3px);
    border-color: rgba(57, 153, 52, 0.45);
    background: rgba(57, 153, 52, 0.08);
}
.trust-num {
    display: inline-flex;
    align-items: baseline;
    font-size: clamp(1.7rem, 4vw, 2.3rem);
    font-weight: 800;
    line-height: 1;
    color: var(--c-accent-soft);
}
.trust-plus { font-size: 0.7em; margin-left: 1px; }
.trust-top {
    font-size: clamp(1rem, 2.2vw, 1.18rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--c-text);
    letter-spacing: -0.01em;
}
.trust-label { font-size: 0.82rem; color: var(--c-text-mute); }

/* ===== Buttons ===== */
.btn {
    --pad-y: 0.85rem;
    --pad-x: 1.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: var(--pad-y) var(--pad-x);
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: transform 0.2s ease, background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary {
    background: var(--c-accent);
    color: #fff;
    box-shadow: 0 12px 28px -10px var(--c-accent-glow);
}
.btn-primary:hover {
    background: var(--c-accent-soft);
    transform: translateY(-2px);
    box-shadow: 0 16px 36px -10px var(--c-accent-glow);
}
.btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--c-line);
    color: var(--c-text);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); }
.btn-lg { --pad-y: 1.05rem; --pad-x: 2.2rem; font-size: 1.08rem; }
.btn-block { width: 100%; }

/* ===== Sections ===== */
.section { padding: clamp(3.5rem, 9vw, 6.5rem) 0; position: relative; }
.section-alt { background: rgba(255, 255, 255, 0.02); border-block: 1px solid var(--c-line); }
.section-head { max-width: 720px; margin: 0 auto clamp(2rem, 5vw, 3.2rem); text-align: center; }
.kicker {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--c-accent-soft);
    margin-bottom: 0.7rem;
}
.section h2 {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.section-intro { color: var(--c-text-mute); margin-top: 1rem; font-size: 1.05rem; }

/* ===== Feature grid ===== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem;
    counter-reset: feature;
}
.feature {
    position: relative;
    background: linear-gradient(160deg, var(--c-surface), var(--c-bg));
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: 1.8rem 1.6rem 1.6rem;
    counter-increment: feature;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.feature::before {
    content: counter(feature, decimal-leading-zero);
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--c-accent-soft);
    opacity: 0.75;
    margin-bottom: 0.9rem;
}
.feature:hover {
    transform: translateY(-6px);
    border-color: rgba(57, 153, 52, 0.5);
    box-shadow: var(--shadow);
}
.feature h3 { font-size: 1.12rem; margin-bottom: 0.45rem; }
.feature p { color: var(--c-text-mute); font-size: 0.95rem; }

/* ===== Split layout ===== */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.8rem, 5vw, 3.5rem);
    align-items: center;
}
.split-text .kicker { text-align: left; }
.split-text h2 { margin-bottom: 1rem; }
.split-text h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.split-text p { color: var(--c-text-mute); margin-bottom: 1rem; }
.lead-acronym {
    color: var(--c-text) !important;
    font-size: 1.05rem;
    padding: 0.9rem 1.1rem;
    background: rgba(57, 153, 52, 0.1);
    border-left: 3px solid var(--c-accent);
    border-radius: 0 12px 12px 0;
}
.lead-acronym strong { color: var(--c-accent-soft); }

.logo-card {
    background: linear-gradient(160deg, #ffffff, #f4f6ff);
    border-radius: var(--radius-lg);
    padding: clamp(1.6rem, 5vw, 2.8rem);
    box-shadow: var(--shadow), 0 0 40px var(--c-accent-glow);
    perspective: 800px;
    cursor: pointer;
    animation: float 5s ease-in-out infinite;
    will-change: transform;
}
.logo-card-img { transition: transform 0.18s ease-out; will-change: transform; }
.logo-card.boing { animation: boing 0.6s var(--ease-bounce); }
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-0.4deg); }
    50% { transform: translateY(-12px) rotate(0.4deg); }
}
@keyframes boing {
    0% { transform: scale(1); }
    25% { transform: scale(1.12, 0.88); }
    55% { transform: scale(0.94, 1.08); }
    100% { transform: scale(1); }
}
.logo-caption {
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
    color: var(--c-text-mute);
    font-size: 0.9rem;
}

/* ===== Experience ===== */
.exp-layout {
    max-width: 760px;
    margin-inline: auto;
}
.exp-block {
    background: linear-gradient(160deg, var(--c-surface), var(--c-bg));
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: clamp(1.6rem, 4vw, 2.4rem);
}
.exp-block h3 {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    text-align: center;
}
.check-list, .mini-list { list-style: none; }
.check-list li, .mini-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.6rem;
    color: var(--c-text-mute);
    break-inside: avoid;
}
.check-list li::before, .mini-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--c-accent-soft);
    transform: rotate(45deg);
}
.mini-list li strong { color: var(--c-text); }
.check-list.two-col { column-count: 1; }
@media (min-width: 640px) {
    .check-list.two-col { column-count: 2; column-gap: 2rem; }
}
.norm-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--c-text-mute);
    font-size: 1rem;
}
.norm-note strong { color: var(--c-accent-soft); }

/* ===== Services ===== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.3rem;
    counter-reset: service;
}
@media (max-width: 760px) {
    .service-grid { grid-template-columns: 1fr; }
}
.service-card {
    background: linear-gradient(165deg, var(--c-surface-2), var(--c-bg));
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: 1.8rem;
    counter-increment: service;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-accent), var(--c-accent-soft));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(57, 153, 52, 0.5); box-shadow: var(--shadow); }
.service-card:hover::after { transform: scaleX(1); }
.service-top {
    display: flex;
    align-items: baseline;
    gap: 0.7rem;
    margin-bottom: 0.9rem;
}
.service-top::before {
    content: counter(service, decimal-leading-zero);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--c-accent-soft);
    opacity: 0.75;
    flex: none;
}
.service-card h3 { font-size: 1.2rem; }
.service-card > p { color: var(--c-text-mute); margin-bottom: 1rem; font-size: 0.95rem; }

/* ===== Audience ===== */
.audience-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.audience {
    position: relative;
    padding: 1.1rem 1.3rem 1.1rem 1.6rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--c-line);
    border-left: 3px solid var(--c-accent-soft);
    border-radius: 14px;
    font-weight: 500;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
.audience:hover {
    transform: translateX(4px);
    background: rgba(57, 153, 52, 0.1);
    border-color: rgba(57, 153, 52, 0.45);
    border-left-color: var(--c-accent-soft);
}

/* ===== Norms ===== */
.norm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}
.norm-card {
    background: linear-gradient(160deg, var(--c-surface), var(--c-bg));
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: 1.4rem 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.norm-card:hover { transform: translateY(-4px); border-color: rgba(57, 153, 52, 0.5); }
.norm-code {
    display: inline-block;
    font-weight: 800;
    color: var(--c-accent-soft);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}
.norm-card p { color: var(--c-text-mute); font-size: 0.92rem; }

/* ===== CTA band ===== */
.cta-band {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background:
        radial-gradient(ellipse at center, rgba(57, 153, 52, 0.22), transparent 70%),
        linear-gradient(160deg, var(--c-surface-2), var(--c-bg-deep));
    border-block: 1px solid var(--c-line);
}
.cta-inner { text-align: center; max-width: 680px; margin-inline: auto; }
.cta-inner h2 { font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 800; margin-bottom: 1rem; }
.cta-inner p { color: var(--c-text-mute); font-size: 1.1rem; margin-bottom: 2rem; }

/* ===== Contact ===== */
.contact-split { align-items: start; }
.contact-name { color: var(--c-text) !important; font-size: 1.3rem; font-weight: 700; margin-bottom: 0.2rem !important; }
.contact-role { font-size: 0.95rem; }
.contact-info { list-style: none; margin: 1.2rem 0; }
.contact-info li {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    padding: 0.6rem 0;
    border-bottom: 1px dashed var(--c-line);
}
.contact-info li:last-child { border-bottom: none; }
.ci-label {
    width: 4.5rem;
    flex: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    color: var(--c-accent-soft);
}
.contact-info a { color: var(--c-text); text-decoration: none; font-weight: 600; }
.contact-info a:hover { color: var(--c-accent-soft); }
.contact-location {
    font-size: 0.88rem;
    color: var(--c-text-mute);
    margin-bottom: 1.2rem;
}
.contact-hint { font-size: 0.92rem; }

.contact-form {
    background: linear-gradient(165deg, var(--c-surface), var(--c-bg));
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    padding: clamp(1.4rem, 4vw, 2.2rem);
    box-shadow: var(--shadow);
}
.field { margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
/* Honeypot: für Menschen unsichtbar (aber nicht display:none, das
   erkennen manche Bots), für Screenreader ausgeblendet. */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.btn[disabled] { opacity: 0.6; cursor: not-allowed; pointer-events: none; }
.field label, .checkbox > span {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--c-text);
}
.field label [aria-hidden], .checkbox [aria-hidden] { color: var(--c-accent-soft); }
.field input, .field select, .field textarea {
    width: 100%;
    padding: 0.8rem 0.95rem;
    background: rgba(10, 13, 46, 0.6);
    border: 1.5px solid var(--c-line);
    border-radius: 12px;
    color: var(--c-text);
    font-size: 0.98rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px rgba(57, 153, 52, 0.2);
    background: rgba(10, 13, 46, 0.85);
}
.field select option { background: var(--c-bg-deep); }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #ff6b6b; }
.error { display: block; color: #ff8585; font-size: 0.8rem; margin-top: 0.35rem; min-height: 0; }
.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin: 0.4rem 0 0.2rem;
    cursor: pointer;
}
.checkbox input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--c-accent); flex: none; }
.checkbox > span { margin-bottom: 0; font-weight: 400; color: var(--c-text-mute); font-size: 0.85rem; }
.form-status {
    margin-top: 1rem;
    font-size: 0.92rem;
    text-align: center;
    min-height: 1.2em;
}
.form-status.ok { color: var(--c-accent-soft); }
.form-status.err { color: #ff8585; }

/* ===== Legal / Impressum ===== */
.legal-page {
    padding-top: 120px;
    padding-bottom: 4rem;
    min-height: 70vh;
}
.legal { max-width: 820px; }
.legal-back {
    display: inline-block;
    color: var(--c-text-mute);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 1.4rem;
    transition: color 0.2s ease;
}
.legal-back:hover { color: var(--c-accent-soft); }
.legal h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0.4rem 0 2rem;
}
.legal-block { margin-bottom: 1.8rem; }
.legal-block h2 {
    font-size: 1.1rem;
    color: var(--c-accent-soft);
    margin-bottom: 0.5rem;
}
.legal-block p { color: var(--c-text-mute); }
.legal-block a { color: var(--c-text); text-decoration: underline; text-underline-offset: 3px; }
.legal-block a:hover { color: var(--c-accent-soft); }
.legal-placeholder {
    color: #ffd27a;
    background: rgba(255, 210, 122, 0.1);
    padding: 0.05rem 0.4rem;
    border-radius: 6px;
    font-size: 0.92em;
}
.legal-hint {
    margin-top: 2rem;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--c-line);
    border-radius: 12px;
    color: var(--c-text-mute);
    font-size: 0.88rem;
}

/* ===== Footer ===== */
.site-footer {
    border-top: 1px solid var(--c-line);
    background: var(--c-bg-deep);
    padding: 2.5rem 0;
}
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.9rem; }
.footer-logo { height: 38px; background: #fff; padding: 5px 8px; border-radius: 10px; }
.footer-brand p { color: var(--c-text-mute); font-size: 0.85rem; max-width: 22ch; }
.footer-nav { display: flex; gap: 1.2rem; }
.footer-nav a { color: var(--c-text-mute); text-decoration: none; font-size: 0.9rem; }
.footer-nav a:hover { color: var(--c-accent-soft); }
.footer-inner small { color: var(--c-text-mute); opacity: 0.7; }

/* ===== Back to top ===== */
.back-to-top {
    position: fixed;
    right: 1.3rem;
    bottom: 1.3rem;
    width: 48px; height: 48px;
    display: grid;
    place-items: center;
    background: var(--c-accent);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.3rem;
    box-shadow: 0 12px 26px -8px var(--c-accent-glow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity 0.3s ease, transform 0.3s var(--ease-bounce);
    z-index: 90;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--c-accent-soft); }

/* ===== Toast ===== */
.toast {
    position: fixed;
    bottom: 2.2rem;
    left: 50%;
    transform: translate(-50%, 20px);
    background: var(--c-accent);
    color: #fff;
    padding: 0.7rem 1.2rem;
    border-radius: 999px;
    font-size: 0.9rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.3s var(--ease-bounce);
    z-index: 120;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ===== Reveal animation ===== */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
    .split { grid-template-columns: 1fr; }
    .split-media { order: -1; }
}

@media (max-width: 760px) {
    .nav {
        position: fixed;
        inset: 72px 0 auto 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0.2rem;
        padding: 1rem clamp(1.1rem, 4vw, 2rem) 1.4rem;
        background: rgba(10, 13, 46, 0.96);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--c-line);
        transform: translateY(-120%);
        transition: transform 0.35s ease;
    }
    .nav.open { transform: translateY(0); }
    .nav a { padding: 0.8rem 1rem; }
    .nav .nav-cta { text-align: center; margin-top: 0.4rem; }
    .nav-toggle { display: flex; }
}

@media (max-width: 540px) {
    .field-row { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .logo-card, .hero-bg::before, .hero-bg::after { animation: none !important; }
    .btn, .feature, .service-card, .audience, .norm-card { transition: none !important; }
}
