/* ============================================================
   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 1fr;
  gap: 1rem;
}

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

/* ============================================================
   AKTIVE SOLDATEN — SPEZIFISCHE OVERRIDES
   ============================================================ */

/* Pain Grid (wie fear-grid) */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.pain-emoji { font-size: 1.8rem; display: block; margin-bottom: 0.75rem; }

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

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

/* Inline Quote Divider */
.section-quote {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.inline-quote {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--muted-fg);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 0;
  border: none;
}

.inline-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin-top: 0.75rem;
}

/* Feature Layout (same as solution-feature) */
.feature-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}
.feature-layout:last-child { margin-bottom: 0; }

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

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

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

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

/* Trust Stats Row */
.section-trust {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: center;
}

.trust-divider { display: none; }

.trust-stat { display: flex; flex-direction: column; gap: 0.25rem; }
.trust-num { font-size: 1.8rem; font-weight: 700; letter-spacing: -0.02em; }
.trust-label { font-size: 0.78rem; color: var(--muted-fg); }

/* Mid CTA */
.section-mid-cta {
  background: var(--bg);
  text-align: center;
}

.mid-cta-title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.mid-cta-sub {
  font-size: 0.92rem;
  color: var(--muted-fg);
  margin-bottom: 1.75rem;
}

/* Desktop overrides */
@media (min-width: 768px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }

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

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

  .feature-img { height: 380px; }

  .trust-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: center;
  }

  .trust-divider {
    display: block;
    width: 1px;
    height: 40px;
    background: var(--border);
    margin: 0 auto;
  }

  .mid-cta-title { font-size: 2rem; }
}

/* ============================================================
   AKTIV V2 — ADDITIONS
   ============================================================ */

/* Pain cards mit Lösung-Signal */
.pain-solved {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(229,184,0,0.3);
  border-radius: 99px;
  padding: 2px 10px;
}

/* Unabhängigkeits-Signal */
.section-independence {
  padding: 0;
  background: rgba(229,184,0,0.04);
  border-top: 1px solid rgba(229,184,0,0.12);
  border-bottom: 1px solid rgba(229,184,0,0.12);
}

.independence-card {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.25rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.independence-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.independence-text {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.5;
}

.independence-text strong {
  color: var(--fg);
}

/* Feature Mockup (Text-basiert für Finanzen) */
.feature-visual--text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-mockup {
  background: var(--surface-2);
  border: 1px solid rgba(229,184,0,0.2);
  border-radius: 16px;
  padding: 1.25rem;
  width: 100%;
  max-width: 320px;
}

.mockup-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.mockup-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 0.75rem;
  border-radius: 8px;
  margin-bottom: 0.375rem;
  background: rgba(255,255,255,0.04);
}

.mockup-row--highlight {
  background: rgba(229,184,0,0.08);
  border: 1px solid rgba(229,184,0,0.2);
}

.mockup-item {
  font-size: 0.8125rem;
  color: var(--fg);
}

.mockup-arrow {
  color: var(--gold);
  font-size: 1rem;
}

.mockup-cta {
  margin-top: 1rem;
  background: var(--gold);
  color: #0a0a0a;
  text-align: center;
  padding: 0.625rem;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
}

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

/* Trust stats responsive */
@media (max-width: 600px) {
  .trust-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .trust-divider { display: none; }
  .trust-stat { flex: 0 0 calc(50% - 0.75rem); text-align: center; }
}
