/* =============================================================
   VagusCalm Website — Stylesheet

   AUFBAU DIESER DATEI (für Lukas zum Lernen):

   1. Lokale Schriftart      → Lädt die Schriftart "Quicksand" vom eigenen Server
   2. CSS Variables          → Zentrale Farben/Werte, die überall wiederverwendet werden
   3. Reset & Basis          → Grundeinstellungen für alle Elemente
   4. Typografie             → Schriftgrößen, Überschriften, Absätze
   5. Layout                 → Container, Sections, Abstände
   6. Header & Navigation    → Kopfzeile der Seite
   7. Hero Section           → Der große Bereich ganz oben auf der Startseite
   8. Feature Cards          → Die Kärtchen mit den App-Features
   9. FAQ Section            → Häufig gestellte Fragen
   10. Footer                → Fußzeile mit Links
   11. Buttons & Links       → Store-Buttons, allgemeine Links
   12. Utility Classes       → Hilfsklassen für Abstände etc.
   13. Responsive Design     → Anpassungen für verschiedene Bildschirmgrößen
   ============================================================= */


/* ----- 1. Lokale Schriftart (Self-Hosted) -----
   Quicksand ist eine runde, freundliche Schriftart — passt perfekt
   zum sanften, beruhigenden Stil der App.

   WICHTIG: Wir hosten die Fonts selbst statt sie von Google zu laden.
   Warum? Weil Google Fonts die IP-Adresse der Besucher an Google
   übermittelt — das ist seit 2022 ein DSGVO-Problem in der EU.

   @font-face sagt dem Browser: "Hier ist eine Schriftart, lade sie
   von UNSEREM Server." Die Zahlen (400, 500, 600, 700) sind "Gewichte":
   400 = normal, 500 = medium, 600 = semi-bold, 700 = bold

   font-display: swap → Text wird sofort mit Fallback-Font angezeigt,
   dann ersetzt sobald Quicksand geladen ist (gut für Ladezeit).
*/
@font-face {
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/Quicksand-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/Quicksand-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/Quicksand-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/Quicksand-Bold.ttf') format('truetype');
}


/* ----- 2. CSS Variables -----
   Variablen sind wie Spitznamen für Werte.
   Statt überall "#0f1628" zu schreiben, schreiben wir "var(--bg-primary)".
   Willst du die Farbe ändern? Nur HIER ändern, wirkt überall.
*/
:root {
    /* Farben */
    --bg-primary: #0f1628;          /* Dunkles Nachtblau — Haupthintergrund */
    --bg-secondary: #162040;        /* Etwas helleres Blau — für Karten/Sections */
    --bg-card: rgba(255, 255, 255, 0.05); /* Leicht durchsichtiges Weiß — Glaseffekt */
    --text-primary: #fff7e1;        /* Warmes Cremeweiß — Haupttextfarbe */
    --text-secondary: rgba(255, 247, 225, 0.7); /* Cremeweiß mit Transparenz — Nebentexte */
    --accent-pink: #f0b0c0;         /* Sanftes Rosa — aus dem App-Gradient */
    --accent-lavender: #c4a8d4;     /* Sanftes Lila — aus dem App-Gradient */
    --accent-peach: #f5d5a0;        /* Sanftes Pfirsich/Gelb — aus dem App-Gradient */
    --gradient-soft: linear-gradient(135deg, #f0b0c0 0%, #f5d5a0 50%, #c4a8d4 100%);

    /* Abstände */
    --section-padding: 80px 0;
    --container-width: 1000px;
    --border-radius: 16px;

    /* Übergänge */
    --transition: all 0.3s ease;
}


/* ----- 3. Reset & Basis -----
   Jeder Browser hat eigene Standard-Abstände. Das "Reset" setzt
   alles auf 0, damit wir von einer sauberen Basis starten.
*/
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Macht Breitenberechnung intuitiver */
}

html {
    scroll-behavior: smooth; /* Sanftes Scrollen bei Anker-Links */
}

body {
    font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased; /* Glattere Schrift auf Mac */
}

/* Basis-Linkfarbe: Ohne diese Regel fallen Links ohne eigene
   Komponenten-Regel (z. B. in den Feature-Cards der Startseite)
   auf das Browser-Standard-Blau zurueck. */
a { color: var(--accent-peach); }


/* ----- 4. Typografie ----- */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 400;
}

strong {
    color: var(--text-primary);
    font-weight: 600;
}


/* ----- 5. Layout ----- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: var(--section-padding);
}

/* Trennlinie zwischen Sections — subtiler Gradient */
section + section {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}


/* ----- 6. Header & Navigation ----- */
.site-header {
    padding: 20px 0;
    position: sticky;        /* Bleibt oben kleben beim Scrollen */
    top: 0;
    z-index: 100;
    background: rgba(15, 22, 40, 0.9);
    backdrop-filter: blur(20px);  /* Glaseffekt — Hintergrund wird unscharf */
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.site-header .logo img {
    height: 36px;
    width: auto;  /* Breite automatisch berechnen → Seitenverhältnis bleibt erhalten */
}

.header-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.header-nav a:hover {
    color: var(--text-primary);
}


/* ----- 7. Hero Section -----
   Der große, auffällige Bereich ganz oben.
   Hier sieht der Nutzer als Erstes die App + den Haupttext.
*/
.hero {
    padding: 60px 0 80px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

/* Desktop: Text links, App-Grafik rechts daneben */
.hero .container {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: center;
    gap: 48px;
}

/* Subtiler Glow-Effekt im Hintergrund — wie ein weiches Licht */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(240, 176, 192, 0.12) 0%, transparent 70%);
    pointer-events: none;  /* Damit man durch den Effekt hindurchklicken kann */
}

.hero-content {
    position: relative;    /* Damit der Text ÜBER dem Glow liegt */
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    max-width: 700px;
    margin: 0 0 1rem;
}

/* Gradient-Text — Farben aus dem App-Logo, überall einsetzbar */
.gradient-text {
    background: var(--gradient-soft);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subtitle {
    font-size: 1.15rem;
    max-width: 550px;
    margin: 0 0 2.5rem;
    color: var(--text-secondary);
}

/* Store-Buttons im zweispaltigen Hero linksbuendig */
.hero .btn-group { justify-content: flex-start; }

.hero-phone {
    margin-top: 0;
    text-align: center;
}

.hero-phone img {
    max-width: 340px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(240, 176, 192, 0.2));
}


/* ----- 8. Feature Cards -----
   Glasmorphism-Karten — leicht durchsichtig mit unscharfem Hintergrund.
   Ein moderner Design-Trend, der perfekt zum ruhigen App-Stil passt.
*/
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    padding: 32px 28px;
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.feature-card .icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

.feature-card h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
}

.feature-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}


/* ----- 9. FAQ Section ----- */
.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius);
    padding: 28px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.faq-item h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.faq-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}


/* ----- 10. Footer ----- */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 48px 0;
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 28px;
    width: auto;
}

.footer-logo span {
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 12px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-pink);
}

.footer-links .divider {
    color: rgba(255, 255, 255, 0.15);
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255, 247, 225, 0.4);
}


/* ----- 11. Buttons & Links ----- */

/* Store-Buttons */
.btn-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-store {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

.btn-store:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-store svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}


/* ----- 12. Utility Classes ----- */
.text-center {
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

/* "Glow"-Akzent hinter bestimmten Elementen */
.glow-accent {
    position: relative;
}

.glow-accent::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 80px;
    background: radial-gradient(ellipse, rgba(196, 168, 212, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* Für Unterseiten (Impressum, Privacy) */
.page-content {
    padding: 60px 0;
    min-height: 60vh;
}

.page-content h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.page-content h2 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.page-content p,
.page-content li {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.page-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.page-content li {
    margin-bottom: 0.5rem;
}

.page-content a {
    color: var(--accent-pink);
    text-decoration: none;
    transition: var(--transition);
}

.page-content a:hover {
    color: var(--accent-peach);
}

.back-link {
    display: inline-block;
    margin-top: 3rem;
    color: var(--accent-pink);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--accent-peach);
}


/* ----- 13. Responsive Design -----
   "Mobile First" bedeutet: Das Basis-CSS gilt für Handys.
   Mit @media-Queries passen wir es für größere Screens an.
   Hier machen wir es umgekehrt (Desktop-First) weil der bestehende
   Content so aufgebaut ist — aber beides funktioniert.

   Breakpoints:
   - max 768px  = Tablets und große Handys
   - max 480px  = Kleine Handys
*/
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero {
        padding: 40px 0 60px;
        text-align: center;
    }

    .hero .container {
        display: block;   /* einspaltig: Grafik rutscht unter den Text */
    }

    .hero h1 { margin: 0 auto 1rem; }
    .hero .subtitle { margin: 0 auto 2rem; }
    .hero .btn-group { justify-content: center; }

    .hero-phone {
        margin-top: 2.5rem;
    }

    .hero-phone img {
        max-width: 260px;
    }

    section {
        padding: 60px 0;
    }

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

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-store {
        width: 100%;
        justify-content: center;
    }
}


/* =============================================================
   ERWEITERUNG (v2) — Komponenten für die Multi-Page-Struktur
   Neu für: Dropdown-Navigation, Breadcrumbs, Artikel-Seiten,
   Hub-Übersichten, Vergleichstabellen, CTA-Banner, Press-Kit
   ============================================================= */

/* ----- Navigation mit Dropdowns -----
   Reines CSS, kein JavaScript: Das Dropdown öffnet sich bei
   :hover und :focus-within (Tastatur-Nutzer!). */
.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav > a, .nav-item > a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}
.header-nav > a:hover, .nav-item > a:hover { color: var(--text-primary); }
.nav-item { position: relative; }
.nav-item > a::after { content: " ▾"; font-size: 0.7em; opacity: 0.7; }
.nav-dropdown {
    position: absolute; top: calc(100% + 10px); left: -16px;
    min-width: 240px;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 247, 225, 0.1);
    border-radius: 12px;
    padding: 8px;
    display: none;
    z-index: 50;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown { display: block; }
/* Hover-Bruecke: fuellt die 10px-Luecke zwischen Trigger und Dropdown,
   damit das Menue beim Runterfahren mit der Maus nicht zuklappt. */
.nav-dropdown::before {
    content: "";
    position: absolute;
    top: -12px; left: 0; right: 0;
    height: 12px;
}
.nav-dropdown a {
    display: block;
    padding: 9px 14px;
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
}
.nav-dropdown a:hover { background: var(--bg-card); color: var(--text-primary); }
.nav-cta {
    background: var(--gradient-soft);
    color: #0f1628 !important;
    font-weight: 700 !important;
    padding: 9px 18px;
    border-radius: 999px;
}

/* Mobile-Navigation: Hamburger über verstecktes Checkbox-Pattern */
.nav-toggle { display: none; }
.nav-toggle-label { display: none; cursor: pointer; font-size: 1.6rem; color: var(--text-primary); }

/* ----- Breadcrumbs ----- */
.breadcrumbs {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}
.breadcrumbs a { color: var(--text-secondary); text-decoration: none; }
.breadcrumbs a:hover { color: var(--accent-peach); }
.breadcrumbs .sep { margin: 0 8px; opacity: 0.5; }

/* ----- Artikel-Layout (Lesetext) ----- */
.article { max-width: 720px; margin: 0 auto; padding: 56px 0 0; }
.article .eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--gradient-soft);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
}
.article h1 { font-size: clamp(1.9rem, 4.5vw, 2.7rem); line-height: 1.2; margin-bottom: 16px; }
.article .lead { font-size: 1.15rem; color: var(--text-secondary); margin-bottom: 36px; }
.article h2 { font-size: 1.5rem; margin: 44px 0 14px; }
.article h3 { font-size: 1.15rem; margin: 28px 0 10px; }
.article p { color: var(--text-secondary); margin-bottom: 16px; }
.article ul, .article ol { color: var(--text-secondary); margin: 0 0 16px 22px; }
.article li { margin-bottom: 8px; }
.article strong { color: var(--text-primary); }
.article a { color: var(--accent-peach); }
.article img { max-width: 100%; border-radius: var(--border-radius); display: block; margin: 8px auto 16px; }
.article blockquote {
    border-left: 3px solid var(--accent-lavender);
    padding: 4px 0 4px 18px;
    margin: 24px 0;
    color: var(--text-primary);
    font-style: italic;
}

/* Hinweis-Box (z.B. medizinischer Disclaimer auf sensiblen Seiten) */
.note-box {
    background: rgba(196, 168, 212, 0.12);
    border: 1px solid rgba(196, 168, 212, 0.35);
    border-radius: 12px;
    padding: 16px 20px;
    margin: 24px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}
.note-box strong { color: var(--text-primary); }

/* ----- CTA-Banner (in Artikeln + Seitenende) ----- */
.cta-banner {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 247, 225, 0.1);
    border-radius: var(--border-radius);
    padding: 28px;
    margin: 36px 0;
    text-align: center;
}
.cta-banner h2, .cta-banner h3 { margin: 0 0 8px !important; font-size: 1.3rem; }
.cta-banner p { margin-bottom: 18px; }
.cta-banner .btn-group { justify-content: center; }

/* ----- Hub-Seiten: Karten-Grid mit Links ----- */
.hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 36px 0;
}
.hub-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid rgba(255, 247, 225, 0.08);
    border-radius: var(--border-radius);
    padding: 24px;
    text-decoration: none;
    transition: var(--transition);
}
.hub-card:hover { transform: translateY(-3px); border-color: rgba(245, 213, 160, 0.4); }
.hub-card h3 { color: var(--text-primary); font-size: 1.1rem; margin-bottom: 8px; }
.hub-card p { color: var(--text-secondary); font-size: 0.92rem; margin: 0; }
.hub-card .card-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.88rem;
    font-weight: 700;
    background: var(--gradient-soft);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ----- Vergleichstabelle ----- */
.compare-table { width: 100%; border-collapse: collapse; margin: 24px 0 32px; font-size: 0.95rem; }
.compare-table th, .compare-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 247, 225, 0.1);
    color: var(--text-secondary);
    vertical-align: top;
}
.compare-table th { color: var(--text-primary); font-weight: 700; }
.compare-table td:first-child { color: var(--text-primary); font-weight: 600; }
@media (max-width: 600px) {
    .compare-table { display: block; overflow-x: auto; }
}

/* ----- "Related"-Bereich am Artikelende ----- */
.related { max-width: 720px; margin: 24px auto 0; }
.related h2 { font-size: 1.3rem; margin-bottom: 16px; }
.related .hub-grid { margin-top: 16px; }

/* ----- Blog-Meta (Datum etc.) ----- */
.post-meta { font-size: 0.85rem; color: var(--text-secondary); opacity: 0.8; margin-bottom: 28px; }

/* ----- Footer-Erweiterung: Link-Spalten (interne Verlinkung!) ----- */
.footer-columns {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 36px;
    text-align: left;
    margin-bottom: 36px;
}
.footer-columns h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: 14px;
}
.footer-columns ul { list-style: none; margin: 0; padding: 0; }
.footer-columns li { margin-bottom: 9px; }
.footer-columns a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
}
.footer-columns a:hover { color: var(--accent-peach); }
.footer-brand p { color: var(--text-secondary); font-size: 0.88rem; margin-top: 12px; }
@media (max-width: 800px) {
    .footer-columns { grid-template-columns: 1fr 1fr; }
}

/* ----- Press-Kit ----- */
.press-assets { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin: 24px 0; }
.press-assets figure { background: var(--bg-card); border-radius: 12px; padding: 14px; margin: 0; }
.press-assets img { width: 100%; border-radius: 8px; }
.press-assets figcaption { font-size: 0.82rem; color: var(--text-secondary); margin-top: 8px; }
.facts-table td:first-child { white-space: nowrap; }

/* ----- Responsive Navigation (Mobile) ----- */
@media (max-width: 860px) {
    .nav-toggle-label { display: block; }
    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: var(--bg-secondary);
        border-bottom: 1px solid rgba(255, 247, 225, 0.1);
        padding: 12px 24px 20px;
        z-index: 60;
    }
    .nav-toggle:checked ~ .header-nav { display: flex; }
    .site-header .container { position: relative; }
    .header-nav > a, .nav-item { width: 100%; padding: 10px 0; }
    .nav-dropdown::before { display: none; }
    .nav-dropdown {
        position: static;
        display: block;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 4px 0 4px 14px;
        min-width: 0;
    }
    .nav-item > a::after { content: ""; }
    .nav-cta { text-align: center; margin-top: 8px; }
}
