/* ============================================================
   SOLDATSEIN — ELTERN-LANDINGPAGE
   Gleiche Design-Tokens, wärmerer Ton
   ============================================================ */

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

:root {
  --bg:          #0a0a0a;
  --surface:     #111111;
  --surface-2:   #181818;
  --border:      rgba(255,255,255,0.08);
  --fg:          #f0f0f0;
  --muted-fg:    #888;
  --gold:        #E5B800;
  --gold-dark:   #c79d00;
  --teal:        #2cb67d;
  --font:        'General Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:      12px;
  --radius-lg:   20px;
  --max-w:       720px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---- TYPOGRAPHY ---- */
.gold { color: var(--gold); }

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted-fg);
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.3rem;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:active { transform: scale(0.97); }

.btn-gold {
  background: var(--gold);
  color: #0a0a0a;
}
.btn-gold:hover { background: var(--gold-dark); }

.btn-outline {
  background: transparent;
  color: var(--fg);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.6); }

.btn-sm { font-size: 0.8rem; padding: 0.5rem 1rem; }

.store-btn { min-width: 148px; }

.store-icon { flex-shrink: 0; }
.store-text { display: flex; flex-direction: column; line-height: 1.2; }
.store-label { font-size: 0.65rem; font-weight: 500; opacity: 0.8; }
.store-name { font-size: 0.95rem; font-weight: 700; }

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.cta-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted-fg);
}

/* ---- HEADER ---- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 56px;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
}
.header-logo img { width: 24px; height: 24px; object-fit: contain; }

.header-cta { display: none; }

/* Show CTA when scrolled */
.header.scrolled .header-cta { display: inline-flex; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.82) 0%,
    rgba(10,10,10,0.70) 35%,
    rgba(10,10,10,0.75) 60%,
    rgba(10,10,10,0.98) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(229,184,0,0.12);
  border: 1px solid rgba(229,184,0,0.25);
  border-radius: 20px;
  padding: 0.3rem 0.85rem;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 0.95rem;
  color: rgba(240,240,240,0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- SECTION BASE ---- */
.section {
  padding: 4rem 0;
}

/* ---- EMPATHY BLOCK ---- */
.section-empathy {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.empathy-card {
  text-align: center;
  padding: 1.5rem 0;
}

.empathy-quote {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--fg);
  margin-bottom: 1rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.empathy-quote::before { content: '\201E'; }
.empathy-quote::after  { content: '\201C'; }

.empathy-attr {
  font-size: 0.8rem;
  color: var(--muted-fg);
}

/* ---- PROBLEM GRID ---- */
.section-problem {
  background: var(--bg);
}

.fear-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .fear-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.fear-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.fear-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.fear-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.fear-card p {
  font-size: 0.83rem;
  color: var(--muted-fg);
  line-height: 1.55;
}

/* ---- SOLUTION ---- */
.section-solution {
  background: var(--surface);
}

.solution-feature {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}
.solution-feature:last-child { margin-bottom: 0; }

.solution-visual {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.solution-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
}

.feature-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(229,184,0,0.1);
  border: 1px solid rgba(229,184,0,0.2);
  border-radius: 20px;
  padding: 0.2rem 0.7rem;
  margin-bottom: 0.75rem;
}

.solution-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.solution-text p {
  font-size: 0.92rem;
  color: var(--muted-fg);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-list li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.88rem;
  color: var(--fg);
  line-height: 1.4;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23E5B800'%3E%3Ccircle cx='10' cy='10' r='10' fill='rgba(229,184,0,0.15)'/%3E%3Cpath d='M6 10l3 3 5-5' stroke='%23E5B800' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ---- REVIEWS ---- */
.section-reviews {
  background: var(--bg);
}

.reviews-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.trustpilot-badge {
  background: var(--teal);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
}

.reviews-sub {
  font-size: 0.85rem;
  color: var(--muted-fg);
}

.reviews-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}
.reviews-scroll::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 80%;
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.review-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.6rem; }
.review-text  { font-size: 0.88rem; line-height: 1.55; color: var(--fg); margin-bottom: 0.75rem; font-style: italic; }
.review-author { font-size: 0.75rem; color: var(--muted-fg); }

/* ---- REASSURANCE ---- */
.section-reassurance {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.reassurance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.reassurance-item {
  text-align: center;
}

.reassurance-num {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.reassurance-label {
  font-size: 0.78rem;
  color: var(--muted-fg);
}

.parent-quote {
  background: var(--surface-2);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--fg);
}

.parent-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  color: var(--muted-fg);
  margin-top: 0.6rem;
}

/* ---- FAQ ---- */
.section-faq { background: var(--bg); }

.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--fg);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  padding: 1.1rem 2.5rem 1.1rem 0;
  cursor: pointer;
  position: relative;
  line-height: 1.4;
}

.faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--muted-fg);
  transition: transform 0.2s;
}

.faq-q[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-a {
  display: none;
  padding-bottom: 1.1rem;
}

.faq-a.open { display: block; }

.faq-a p {
  font-size: 0.88rem;
  color: var(--muted-fg);
  line-height: 1.65;
}

/* ---- FINAL CTA ---- */
.section-final-cta {
  background: var(--surface);
  text-align: center;
  border-top: 1px solid var(--border);
}

.final-cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.final-cta-sub {
  font-size: 0.95rem;
  color: var(--muted-fg);
  margin-bottom: 2rem;
}

.final-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted-fg);
  margin-top: 1rem;
}
.trust-stars { color: var(--gold); }

/* ---- FOOTER ---- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--muted-fg);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--fg); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---- DESKTOP ---- */
@media (min-width: 768px) {
  :root { --max-w: 820px; }

  .hero { min-height: 85svh; }
  .hero-title { font-size: 3.8rem; }
  .hero-img { object-position: center 55%; }

  .section-title { font-size: 2.5rem; }
  .final-cta-title { font-size: 3rem; }

  .review-card { flex: 0 0 45%; }
  .reviews-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
  }
  .reviews-scroll .review-card:nth-child(n+4) { display: none; }

  .solution-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
  }

  .solution-feature--reverse .solution-visual { order: 2; }
  .solution-feature--reverse .solution-text   { order: 1; }

  .solution-img { height: 380px; }

  .reassurance-grid { grid-template-columns: repeat(4, 1fr); }

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

  .reveal { transition: none; opacity: 1; transform: none; }
}

/* ============================================================
   V2 ADDITIONS
   ============================================================ */

/* Hero ohne Hintergrundbild */
.hero-text-only {
  min-height: auto;
  padding: 7rem 0 3.5rem;
  background: linear-gradient(160deg, #0f0f0f 0%, #1a1508 100%);
}

.hero-text-only .hero-bg { display: none; }

/* Share Block Hero */
.share-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.share-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  font-family: var(--font);
  font-weight: 700;
  background: #25D366;
  color: #fff;
  transition: transform 0.15s ease, background 0.15s ease;
  width: 100%;
  max-width: 360px;
  justify-content: center;
}

.share-wa-btn:hover { background: #1da851; transform: translateY(-1px); }
.share-wa-btn:active { transform: translateY(0); }

.btn-xl {
  font-size: 1.0625rem;
  padding: 1rem 2rem;
}

.share-note {
  font-size: 0.75rem;
  color: var(--muted-fg);
  text-align: center;
}

/* Trust bar hero */
.trust-bar-hero {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--muted-fg);
}

.tp-badge { color: #00B67A; font-weight: 700; }
.trust-sep { opacity: 0.4; }

/* Inline share mid-page */
.inline-share {
  margin-top: 3rem;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  text-align: center;
}

.inline-share-label {
  font-size: 0.8rem;
  color: var(--muted-fg);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.inline-share .share-wa-btn {
  margin: 0 auto 0.75rem;
}

.share-alternatives {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted-fg);
  flex-wrap: wrap;
}

.btn-text-link {
  background: none;
  border: none;
  color: var(--gold);
  font-family: var(--font);
  font-size: 0.8125rem;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.btn-text-link:hover { color: var(--gold-dark); }
.share-sep { opacity: 0.4; }

.copy-confirm {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--teal);
  font-weight: 600;
}

/* Trust / Presse Section */
.section-trust { background: var(--surface); }

.trust-numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.trust-num { text-align: center; }

.trust-num-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}

.trust-num-label {
  display: block;
  font-size: 0.8rem;
  color: var(--muted-fg);
  margin-top: 0.25rem;
}

.press-section { text-align: center; }

.press-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-fg);
  font-weight: 600;
  margin-bottom: 1rem;
}

.press-logos {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.press-logo {
  height: 28px;
  width: auto;
  max-width: 130px;
  opacity: 0.7;
  object-fit: contain;
  border-radius: 3px;
}

/* Elternbereich Hinweis */
.parent-feature-note {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(229,184,0,0.07);
  border: 1px solid rgba(229,184,0,0.2);
  border-radius: var(--radius);
  font-size: 0.83rem;
  color: var(--fg);
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.parent-feature-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: #0a0a0a;
  border-radius: 4px;
  padding: 2px 6px;
  flex-shrink: 0;
}

/* Advertorial Label */
.press-ad-label {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-fg);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px;
  padding: 1px 5px;
  vertical-align: middle;
  margin-left: 0.4rem;
  opacity: 0.6;
}

/* Review parent badge */
.review-card--parent { border-color: rgba(229, 184, 0, 0.2); }

.review-card-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

/* Final share block */
.final-share-block {
  text-align: center;
  margin-bottom: 2.5rem;
}

.final-share-block .share-wa-btn {
  font-size: 1.0625rem;
  padding: 1rem 2rem;
  margin: 0 auto 1rem;
}

.share-url-preview {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted-fg);
  font-family: monospace;
  letter-spacing: 0.02em;
}

.store-divider {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted-fg);
  margin-bottom: 1rem;
  position: relative;
}

.store-divider::before,
.store-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: var(--border);
}

.store-divider::before { left: 0; }
.store-divider::after { right: 0; }

/* Responsive */
@media (min-width: 600px) {
  .trust-numbers { grid-template-columns: repeat(4, 1fr); }
  .share-wa-btn { width: auto; }
}

/* FAQ open state */
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a.open { max-height: 300px; }
