@import url('https://api.fontshare.com/v2/css?f[]=general-sans@400,500,600,700&display=swap');

/* Soldatsein Eltern-Ratgeber - Landingpage
   Design: erwachsenes Soldatsein-Dark-System fuer Eltern.
   Fast schwarzer Grund, Gold-Akzent sparsam, viel Ruhe und Luft.
   Serifen-Fliesstext fuer die emotionalen Passagen. Tokens aus dem
   offiziellen Soldatsein Design-System (Dark Mode), an Eltern angepasst.
   Mobile first, grosse Touch-Ziele, hoher Kontrast fuer aeltere Augen. */

:root {
  /* Farb-Tokens (HSL-Komponenten, via hsl() genutzt) */
  --background: 0 0% 6%;        /* Soldatsein Hintergrund #0F0F0F */
  --foreground: 0 0% 95%;       /* Textweiss */
  --primary: 45 90% 48%;        /* Soldatsein Gold #E5B800 */
  --primary-foreground: 0 0% 6%;
  --primary-dark: 45 82% 44%;   /* Gold fuer Hover */
  --trust: 0 0% 95%;            /* Vertrauens-Textfarbe (hell, Ueberschriften/Marke) */
  --trust-soft: 0 0% 72%;
  --accent: 30 80% 52%;         /* Orange, sehr sparsam */
  --muted: 0 0% 12%;
  --muted-foreground: 0 0% 62%;
  --card: 0 0% 9%;              /* dunkle Karte #171717 */
  --border: 0 0% 16%;
  --panel: 0 0% 3.5%;           /* tiefere dunkle Flaechen (Header-Strip, Footer, Baender) */
  --radius: 0.625rem;

  /* Abgeleitete Werte */
  --bg: hsl(var(--background));
  --fg: hsl(var(--foreground));
  --trust-c: hsl(var(--trust));
  --gold: hsl(var(--primary));
  --gold-dark: hsl(var(--primary-dark));
  --card-c: hsl(var(--card));
  --border-c: hsl(var(--border));
  --muted-c: hsl(var(--muted));
  --muted-fg: hsl(var(--muted-foreground));
  --panel-c: hsl(var(--panel));

  --maxw: 64rem;
  --maxw-narrow: 44rem;

  --font-sans: "General Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;

  --shadow-sm: 0 1px 2px hsl(0 0% 0% / 0.4);
  --shadow-md: 0 6px 20px hsl(0 0% 0% / 0.45);
  --shadow-lg: 0 16px 44px hsl(0 0% 0% / 0.55);

  /* Easing (starke, eigene Kurven statt weicher CSS-Defaults) */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--fg);
  font-size: 1.0625rem;     /* 17px Basis, gut fuer aeltere Augen */
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--gold);
}

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  color: var(--fg);
  line-height: 1.2;
  font-weight: 650;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

.lead, .hero-sub, p { text-wrap: pretty; }

h1 { font-size: clamp(1.85rem, 6vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4.5vw, 2.15rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.4rem); }

p { margin: 0 0 1rem; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.container-narrow {
  max-width: var(--maxw-narrow);
}

/* Sektions-Rhythmus, viel Weissraum */
.section {
  padding-block: clamp(3rem, 8vw, 5.5rem);
}

.section--tight { padding-block: clamp(2.25rem, 6vw, 4rem); }

.section--cream-deep { background-color: hsl(0 0% 4%); }
.section--trust {
  background-color: var(--panel-c);
  color: var(--fg);
}
.section--trust h1,
.section--trust h2,
.section--trust h3 { color: var(--gold); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 1.15rem;
  color: hsl(0 0% 74%);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.5rem;          /* grosses Touch-Ziel */
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1.0625rem;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 140ms var(--ease-out), background-color 150ms ease, box-shadow 200ms var(--ease-out), border-color 150ms ease;
  text-align: center;
}

/* Press-Feedback: die Flaeche reagiert spuerbar auf den Druck */
.btn:active { transform: scale(0.98); }

.btn:focus-visible {
  outline: 3px solid hsl(var(--primary) / 0.6);
  outline-offset: 3px;
}

.btn--primary {
  background-color: var(--gold);
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background-color: transparent;
  color: var(--gold);
  border-color: hsl(var(--primary) / 0.55);
}
.btn--on-trust {
  background-color: var(--gold);
  color: hsl(var(--primary-foreground));
}

/* Hover-Effekte nur auf echten Zeigergeraeten, damit Touch-Taps nicht springen */
@media (hover: hover) and (pointer: fine) {
  .btn--primary:hover {
    background-color: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
  }
  .btn--ghost:hover {
    background-color: hsl(var(--primary) / 0.1);
    border-color: var(--gold);
  }
  .btn--on-trust:hover { background-color: var(--gold-dark); transform: translateY(-1px); }
}

.btn--block { width: 100%; }

.note-line {
  font-size: 0.95rem;
  color: var(--muted-fg);
  margin-top: 0.75rem;
}
.section--trust .note-line { color: hsl(0 0% 64%); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: hsl(0 0% 6% / 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border-c);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.brand-logo {
  height: 1.95rem;
  width: auto;
  display: block;
  flex: 0 0 auto;
}
.brand .brand-text { display: flex; flex-direction: column; gap: 1px; line-height: 1.08; }
.brand .brand-sub {
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  white-space: nowrap;
}

.nav {
  display: none;
}

.nav a {
  text-decoration: none;
  color: hsl(0 0% 66%);
  font-weight: 550;
  font-size: 0.98rem;
  padding: 0.4rem 0.2rem;
  transition: color 150ms ease;
}

.header-cta {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 3rem;
  height: 3rem;
  background: transparent;
  border: 1px solid var(--border-c);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 1.4rem;
  height: 2px;
  margin-inline: auto;
  background-color: var(--fg);
  transition: transform 0.2s 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); }

/* Mobile Menu Panel */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--border-c);
  background-color: var(--bg);
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0.5rem 1.25rem 1.25rem;
}
.mobile-nav li { border-bottom: 1px solid var(--border-c); }
.mobile-nav a {
  display: block;
  padding: 1rem 0.25rem;
  text-decoration: none;
  color: var(--fg);
  font-weight: 600;
  font-size: 1.05rem;
}
.mobile-nav .btn { margin-top: 1rem; }

/* ---------- Top Disclaimer Strip ---------- */
.top-strip {
  background-color: var(--panel-c);
  color: hsl(0 0% 66%);
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  padding: 0.45rem 1rem;
  border-bottom: 1px solid hsl(0 0% 10%);
}

/* ---------- Hero ---------- */
.hero {
  padding-block: clamp(2.5rem, 7vw, 4.5rem);
  background:
    radial-gradient(120% 80% at 82% -10%, hsl(45 90% 48% / 0.10), transparent 55%),
    var(--bg);
}
.hero .disclaimer-mini {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.hero h1 {
  max-width: 26ch;
  font-size: clamp(1.7rem, 5vw, 2.7rem);
  line-height: 1.22;
  letter-spacing: -0.015em;
}
.hero .hero-sub {
  font-size: 1.18rem;
  color: hsl(0 0% 74%);
  max-width: 54ch;
  margin-bottom: 1.75rem;
}
.hero-cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 26rem;
}

/* ---------- Emotional / Quote big ---------- */
.emotion {
  text-align: center;
}
.emotion .big-line {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 4vw, 2rem);
  line-height: 1.4;
  color: var(--fg);
  max-width: 24ch;
  margin-inline: auto;
}
.emotion .big-line em { color: var(--gold); font-style: italic; }

/* ---------- Audience list ---------- */
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}
.check-list li {
  position: relative;
  padding-left: 2.25rem;
  font-size: 1.08rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: hsl(var(--primary) / 0.16);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e5b800' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.95rem;
}

.closing-note {
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--fg);
  font-size: 1.1rem;
}

/* ---------- Problem quotes ---------- */
.problem-quotes {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 1.75rem;
}
.problem-quotes blockquote {
  margin: 0;
  background-color: var(--card-c);
  border: 1px solid var(--border-c);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-style: italic;
  color: hsl(0 0% 82%);
  box-shadow: var(--shadow-sm);
}

/* ---------- Reassurance highlight ---------- */
.highlight-card {
  background-color: var(--card-c);
  color: var(--fg);
  border: 1px solid hsl(var(--primary) / 0.28);
  border-radius: calc(var(--radius) + 0.25rem);
  padding: clamp(1.75rem, 5vw, 2.75rem);
  box-shadow: var(--shadow-lg);
}
.highlight-card h2 { color: var(--gold); }
.highlight-card .punch {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0.5rem 0 1rem;
}

/* ---------- Generic two-col cards / lists ---------- */
.bullet-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}
.bullet-card {
  background-color: var(--card-c);
  border: 1px solid var(--border-c);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow-sm);
}
.bullet-card h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.bullet-card p { margin: 0; color: hsl(0 0% 70%); }

/* ---------- Accordion (Inhalte / App / FAQ) ---------- */
.accordion {
  border-top: 1px solid var(--border-c);
  margin-top: 1.25rem;
}
.accordion__item {
  border-bottom: 1px solid var(--border-c);
}
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1.25rem 0.25rem;
  font-family: inherit;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--fg);
  cursor: pointer;
}
.accordion__trigger:focus-visible {
  outline: 3px solid hsl(var(--primary) / 0.45);
  outline-offset: 2px;
  border-radius: 4px;
}
.accordion__icon {
  flex: 0 0 auto;
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
}
.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  background-color: var(--gold);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.accordion__icon::before {
  top: 50%; left: 0; width: 100%; height: 2.5px; transform: translateY(-50%);
}
.accordion__icon::after {
  left: 50%; top: 0; width: 2.5px; height: 100%; transform: translateX(-50%);
}
.accordion__trigger[aria-expanded="true"] .accordion__icon::after {
  transform: translateX(-50%) scaleY(0);
  opacity: 0;
}
.accordion__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.24s var(--ease-out);
}
.accordion__panel-inner {
  padding: 0 0.25rem 1.4rem;
  color: hsl(0 0% 72%);
}
.accordion__panel-inner ul { padding-left: 1.2rem; }
.accordion__panel-inner li { margin-bottom: 0.5rem; }

/* ---------- Mama / Papa ---------- */
.voices {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.voice-card {
  background-color: var(--card-c);
  border: 1px solid var(--border-c);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.voice-card h3 { color: var(--gold); }
.voice-card h3 { font-size: 1.15rem; }
.voice-card p { margin-bottom: 0; color: hsl(0 0% 72%); }
.voices-both {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 550;
  color: var(--fg);
  max-width: 46rem;
  margin-inline: auto;
}

/* ---------- Social proof / Presse ---------- */
.proof {
  text-align: center;
}
.proof-placeholder {
  margin-top: 1.5rem;
  border: 2px dashed var(--border-c);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  background-color: var(--card-c);
  color: var(--muted-fg);
  font-style: italic;
}

/* Presse-Leiste: "Soldatsein, bekannt aus" */
.press {
  text-align: center;
}
.press .press-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted-fg);
  margin-bottom: 1.25rem;
}
.press-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.25rem;
}
.press-logos img {
  height: 1.7rem;
  width: auto;
  opacity: 0.78;
}

/* ---------- Pricing ---------- */
.price-intro { text-align: center; margin-bottom: 2rem; }
.price-grid {
  display: grid;
  gap: 1.25rem;
}
.price-card {
  position: relative;
  background-color: var(--card-c);
  border: 1px solid var(--border-c);
  border-radius: calc(var(--radius) + 0.15rem);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.price-card--featured {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-md);
}
.price-badge {
  position: absolute;
  top: -0.85rem;
  left: 1.5rem;
  background-color: var(--gold);
  color: hsl(var(--primary-foreground));
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}
.price-card .tier-name {
  font-size: 1.2rem;
  font-weight: 650;
  color: var(--fg);
  margin-bottom: 0.25rem;
}
.price-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin: 0.5rem 0 0.15rem;
}
.price-card .price span { font-size: 1rem; font-weight: 600; color: var(--muted-fg); }
.price-card .price-sub { font-size: 0.92rem; color: var(--muted-fg); margin-bottom: 1rem; }
.price-card .feat {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.6rem;
  flex: 1;
}
.price-card .feat li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.98rem;
}
.price-card .feat li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e5b800' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.price-compare {
  text-align: center;
  margin-top: 1.75rem;
  color: hsl(0 0% 70%);
}
.price-tax-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted-fg);
  margin-top: 0.75rem;
}
.bundle-hint {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.98rem;
}
.bundle-hint a { font-weight: 600; }

/* ---------- Guarantee ---------- */
.guarantee {
  text-align: center;
}
.guarantee .seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background-color: hsl(var(--primary) / 0.15);
  color: var(--gold);
  margin-bottom: 1rem;
}
.guarantee .seal svg { width: 2.4rem; height: 2.4rem; }
.guarantee p { max-width: 48rem; margin-inline: auto; }

/* ---------- Final CTA ---------- */
.final-cta {
  text-align: center;
}
.final-cta .kicker {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3.5vw, 1.7rem);
  color: var(--gold);
  margin: 0.5rem auto 1.75rem;
  max-width: 30ch;
}
.final-cta .btn { max-width: 26rem; margin-inline: auto; }

/* ---------- Disclaimer block ---------- */
.disclaimer-block {
  background-color: hsl(0 0% 4%);
}
.disclaimer-block h2 { font-size: 1.4rem; }
.disclaimer-block p {
  font-size: 0.98rem;
  color: hsl(0 0% 66%);
}

/* ---------- Footer ---------- */
.site-footer {
  background-color: var(--panel-c);
  color: hsl(0 0% 62%);
  padding-block: 2.75rem;
  font-size: 0.95rem;
  border-top: 1px solid hsl(0 0% 12%);
}
.footer-grid {
  display: grid;
  gap: 1.75rem;
}
.site-footer a {
  color: hsl(0 0% 78%);
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .site-footer a:hover { color: var(--gold); text-decoration: underline; }
  .nav a:hover { color: var(--fg); }
}
.footer-brand {
  font-weight: 700;
  color: var(--fg);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}
.footer-disclaimer {
  border-top: 1px solid hsl(0 0% 14%);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: hsl(0 0% 64%);
}

/* ---------- Simple content pages (thank-you, download, legal) ---------- */
.page-hero {
  padding-block: clamp(3rem, 8vw, 5rem);
}
.page-hero h1 { max-width: 22ch; }
.steps {
  counter-reset: step;
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.steps li {
  position: relative;
  padding-left: 3.25rem;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  font-size: 1.05rem;
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--gold);
  color: hsl(var(--primary-foreground));
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-box {
  background-color: var(--card-c);
  border: 1px solid hsl(var(--primary) / 0.28);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  margin: 1.5rem 0;
}
.placeholder-banner {
  background-color: hsl(45 40% 12%);
  border: 1px solid hsl(45 60% 30%);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: hsl(45 80% 70%);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.legal-body h2 { font-size: 1.3rem; margin-top: 2rem; }
.legal-body p { color: hsl(0 0% 72%); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: hsl(var(--primary-foreground));
  padding: 0.75rem 1rem;
  z-index: 100;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Responsive ---------- */
@media (min-width: 720px) {
  .hero-cta-row { flex-direction: row; }
  .bullet-grid { grid-template-columns: 1fr 1fr; }
  .voices { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr; align-items: start; }
}

@media (min-width: 860px) {
  .nav { display: flex; gap: 1.75rem; align-items: center; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
  .price-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 480px) {
  html { font-size: 1.09rem; }
  .btn { min-height: 3.6rem; }
}

/* ---------- Iteration 6: Vormerk-Hinweise + Auswahllogik (additiv) ---------- */
.price-pick {
  max-width: 46ch;
  margin: 1.25rem auto 0.5rem;
  text-align: center;
  font-size: 1.02rem;
  color: var(--fg);
}
.vormerk-note {
  max-width: 46ch;
  margin: 0.75rem auto 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted-fg);
}

/* ---------- Press-Feedback & Feinschliff (Craft-Pass) ---------- */
.accordion__trigger { transition: color 150ms ease; }
.accordion__trigger:active { color: var(--gold); }
.nav-toggle { transition: transform 140ms var(--ease-out); }
.nav-toggle:active { transform: scale(0.96); }
.mobile-nav a { transition: color 150ms ease; }
.mobile-nav a:active { color: var(--gold); }
.accordion__icon::after { transform-origin: center; }
.brand-logo { transition: transform 140ms var(--ease-out); }
.brand:active .brand-logo { transform: scale(0.96); }

/* ---------- Cookie-Hinweis ---------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: var(--panel-c, var(--card-c));
  border-top: 1px solid var(--border-c);
  padding: 1rem 1.2rem;
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner__inner {
  max-width: var(--maxw, 64rem);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1 1 24rem;
  font-size: 0.88rem;
  color: var(--muted-fg);
  margin: 0;
}
.cookie-banner__text a { color: var(--fg); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: .6rem; flex-shrink: 0; }
.cookie-banner__btn {
  padding: .55rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-c);
  background: transparent;
  color: var(--fg);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.cookie-banner__btn--primary {
  background: var(--gold);
  border-color: var(--gold);
  color: hsl(var(--primary-foreground));
}
