/* ============================================
   Wohniq — Shared Stylesheet
   All language versions reference this file.
   ============================================ */

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

:root {
  --white:       #fbfef9;
  --bg:          #f3f6f1;
  --ink:         #1c1917;
  --ink-mid:     #4a5568;
  --ink-light:   #718096;
  --border:      #dde0d8;
  --border-dark: #c8ccc2;
  --pink:        #c8295e;
  --pink-dark:   #a02050;
  --pink-pale:   #fbeef4;
  --pink-pale2:  #f0cedd;
  --dark:        #1c1917;
  --dark-raised: #27221f;
  --dark-border: rgba(255,255,255,0.08);
  --dark-muted:  rgba(255,255,255,0.5);
  --dark-subtle: rgba(255,255,255,0.08);
  --radius:      10px;
}

html { height: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

/* Mobile language switcher — hidden by default */
.nav-lang-mobile { display: none; }
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  background: var(--dark);
  border-bottom: 1px solid var(--dark-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.nav-logo-text { font-size: 1.2rem; font-weight: 700; color: var(--white); letter-spacing: -0.02em; }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-lang { display: flex; gap: 0.6rem; font-size: 0.8rem; }
.nav-lang a { color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.2s; }
.nav-lang a:hover { color: rgba(255,255,255,0.75); }
.nav-lang a.active { color: var(--white); font-weight: 600; }
.nav-cta {
  background: var(--pink);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--pink-dark); }

/* ── HERO ── */
.hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 5rem 3rem 4rem;
}
.hero-inner { max-width: 820px; margin: 0 auto; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--pink-pale);
  border: 1px solid var(--pink-pale2);
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}
.hero-tag::before { content: '●'; font-size: 0.45rem; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.35} }

h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
h1 .accent { color: var(--pink); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-mid);
  max-width: 560px;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

.waitlist-teaser {
  font-size: 0.95rem;
  color: var(--ink-mid);
  max-width: 560px;
  margin-bottom: 1.25rem;
  line-height: 1.7;
  padding: 0.85rem 1rem;
  background: var(--pink-pale);
  border: 1px solid var(--pink-pale2);
  border-radius: 8px;
  border-left: 3px solid var(--pink);
}

/* ── SIGNUP BOX ── */
.signup-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  max-width: 560px;
  margin-bottom: 2rem;
}
.signup-box-label {
  font-size: 0.75rem;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.85rem;
  display: block;
  font-weight: 600;
}
.signup-row { display: flex; gap: 0.5rem; }
.signup-input {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  color: var(--ink);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.signup-input::placeholder { color: var(--ink-light); }
.signup-input:focus { border-color: var(--pink); }
.signup-btn {
  background: #c8295e;
  background: var(--pink);
  color: white;
  border: none;
  padding: 0.7rem 1.1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.signup-btn:hover { background: var(--pink-dark); }
.signup-btn:disabled { opacity: 0.65; cursor: not-allowed; }
.signup-note { font-size: 0.75rem; color: var(--ink-light); margin-top: 0.75rem; }
.signup-note strong { color: var(--ink-mid); }
.price-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--pink-pale);
  border: 1px solid var(--pink-pale2);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  font-size: 0.72rem;
  color: var(--pink);
  font-weight: 500;
  margin-top: 0.5rem;
}
.signup-social-proof { display: flex; align-items: center; gap: 0.75rem; margin-top: 1rem; }
.avatars { display: flex; align-items: center; }
.avatar {
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  color: white;
  font-weight: 700;
  margin-left: -8px;
  flex-shrink: 0;
  overflow: hidden;
}
.avatars .avatar:first-child { margin-left: 0; }
.signup-social-proof span { font-size: 0.78rem; color: var(--ink-light); }
.signup-social-proof span strong { color: var(--ink-mid); }
/* legacy aliases */
.signup-avatars { display: flex; }
.signup-avatars span {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.52rem; color: white; font-weight: 700;
  margin-left: -5px;
}
.signup-avatars span:first-child  { margin-left: 0; background: #c8295e; }
.signup-avatars span:nth-child(2) { background: #555e6e; }
.signup-avatars span:nth-child(3) { background: #8a6a6a; }
.signup-count { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.85rem; }
.signup-count-text { font-size: 0.78rem; color: var(--ink-light); }
.signup-count-text strong { color: var(--ink-mid); }
.signup-success {
  display: none;
  align-items: center;
  gap: 0.65rem;
  background: #f0faf4;
  border: 1px solid #b8ddc8;
  border-radius: 8px;
  padding: 0.85rem 1rem;
  margin-top: 0.75rem;
}
.signup-success.show { display: flex; }
.signup-success p { font-size: 0.85rem; color: #2d6a4a; font-weight: 500; }

.signup-microcopy {
  font-size: 0.75rem;
  color: var(--ink-light);
  margin-top: 0.5rem;
  text-align: center;
  letter-spacing: 0.01em;
}

/* ── SIGNUP INFO ROW ── */
.signup-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}
.signup-info-pill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 0.9rem;
}
.pill-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pink-pale);
  border: 1px solid var(--pink-pale2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pill-icon-wrap svg { width: 18px; height: 18px; min-width: 18px; min-height: 18px; max-width: 18px; max-height: 18px; }
.pill-icon-shield {
  background: #eef0f8;
  border-color: #d0d4e8;
}
.pill-price-text { font-size: 0.9rem; font-weight: 700; color: var(--pink); line-height: 1.3; }
.pill-price-sub { font-size: 0.75rem; color: var(--ink-light); margin-top: 0.15rem; }
.pill-refund-title { font-size: 0.82rem; font-weight: 700; color: var(--ink); line-height: 1.3; }
.pill-refund-sub { font-size: 0.75rem; color: var(--ink-light); line-height: 1.4; margin-top: 0.15rem; }

/* ── SIGNUP FEATURES ── */
.signup-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.signup-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.feat-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  overflow: hidden;
}
.feat-icon svg { width: 15px; height: 15px; min-width: 15px; min-height: 15px; max-width: 15px; max-height: 15px; }
.feat-text { font-size: 0.75rem; color: var(--ink-mid); line-height: 1.4; }

/* ── TRUST BADGES ── */
.trust-strip { margin-top: 2rem; }
.trust-label {
  font-size: 0.7rem;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.badge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  color: var(--ink-mid);
  font-weight: 500;
}

/* ── STATS STRIP ── */
.stats-section,
.stats-strip {
  background: var(--dark);
  padding: 2.75rem 3rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
  color: var(--white);
}
.stat-num.pink { color: #f08098; }
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  max-width: 120px;
  display: block;
  margin: 0 auto;
  line-height: 1.4;
}

/* ── SECTIONS ── */
.section { padding: 4.5rem 3rem; max-width: 820px; margin: 0 auto; }
.section-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.5rem;
}
h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.section-intro {
  font-size: 0.95rem;
  color: var(--ink-mid);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.divider {
  border: none;
  border-top: 1px solid var(--border);
  max-width: 820px;
  margin: 0 auto;
}

/* ── BARRIERS ── */
.barriers-section {
  background: var(--dark);
  padding: 4.5rem 3rem;
}
.barriers-inner { max-width: 820px; margin: 0 auto; }
.barriers-inner .section-kicker { color: #f08098; }
.barriers-inner h2 { color: var(--white); }
.barriers-inner .section-intro {
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  font-size: 0.95rem;
}
.barriers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.barrier-card {
  background: var(--dark-subtle);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.barrier-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f08098;
  margin-bottom: 0.75rem;
  display: block;
}
.barrier-icon { font-size: 1.3rem; margin-bottom: 0.75rem; display: block; }
.barrier-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.barrier-card p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.barrier-quote {
  font-style: italic;
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--dark-border);
  line-height: 1.5;
}
.barrier-resolution {
  background: rgba(200,41,94,0.1);
  border: 1px solid rgba(200,41,94,0.22);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.barrier-resolution p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.65; }
.barrier-resolution strong { color: #f08098; font-weight: 600; }

/* ── STEPS ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.step-num {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}
.step h3 { font-size: 0.95rem; font-weight: 700; color: var(--ink); margin-bottom: 0.4rem; }
.step p { font-size: 0.82rem; color: var(--ink-mid); line-height: 1.6; }

/* ── WHY ── */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.why-icon {
  width: 38px; height: 38px;
  background: var(--pink-pale);
  border: 1px solid var(--pink-pale2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  margin-bottom: 0.85rem;
}
.why-card h3 { font-size: 0.92rem; font-weight: 700; color: var(--ink); margin-bottom: 0.35rem; }
.why-card p { font-size: 0.82rem; color: var(--ink-mid); line-height: 1.6; }

/* ── PRICING ── */
.pricing-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; }
.pricing-card {
  background: var(--white);
  border: 2px solid var(--pink);
  border-radius: var(--radius);
  overflow: hidden;
}
.pricing-header {
  padding: 1.5rem 1.5rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.pricing-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.65rem;
  display: block;
}
.pricing-amount-row { display: flex; align-items: flex-end; gap: 0.75rem; }
.pricing-amount {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.pricing-amount sup { font-size: 0.9rem; font-weight: 600; vertical-align: super; }
.pricing-monthly { display: flex; flex-direction: column; padding-bottom: 0.15rem; }
.pricing-monthly-eq { font-size: 0.65rem; color: var(--ink-light); text-transform: uppercase; letter-spacing: 0.04em; }
.pricing-monthly-val { font-size: 0.88rem; font-weight: 700; color: var(--pink); }
.pricing-period { font-size: 0.75rem; color: var(--ink-light); margin-top: 0.3rem; display: block; }
.pricing-body { padding: 1.25rem 1.5rem 1.5rem; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.25rem; }
.pricing-features li {
  font-size: 0.85rem;
  color: var(--ink-mid);
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}
.pricing-features li::before {
  content: '✓';
  color: var(--pink);
  font-weight: 700;
  font-size: 0.78rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.pricing-guarantee {
  background: var(--pink-pale);
  border: 1px solid var(--pink-pale2);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-size: 0.78rem;
  color: var(--ink-mid);
  line-height: 1.55;
}
.pricing-guarantee strong { color: var(--pink-dark); font-weight: 600; }
.pricing-context-label {
  font-size: 0.7rem;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 0.65rem;
}
.context-items { display: flex; flex-direction: column; gap: 0.4rem; }
.context-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.55rem 0.85rem;
}
.context-item-left { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--ink-mid); }
.context-item-price { font-size: 0.82rem; font-weight: 700; color: var(--ink-mid); }
.context-item.highlight { background: var(--pink-pale); border-color: var(--pink-pale2); }
.context-item.highlight .context-item-left { color: var(--pink-dark); }
.context-item.highlight .context-item-price { color: var(--pink-dark); }

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  padding: 1.1rem 1.25rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  gap: 1rem;
}
.faq-question::after {
  content: '+';
  font-size: 1.1rem;
  color: var(--pink);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  font-size: 0.85rem;
  color: var(--ink-mid);
  line-height: 1.7;
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 250px; padding: 0 1.25rem 1.1rem; }

/* ── CTA ── */
.cta-section {
  background: var(--pink);
  padding: 4.5rem 3rem;
  text-align: center;
}
.cta-section h2 { color: white; max-width: 520px; margin: 0 auto 1.75rem; }
.cta-section p { color: rgba(255,255,255,0.8); max-width: 380px; margin: 0 auto 1.75rem; font-size: 0.95rem; }
.cta-signup-row { display: flex; gap: 0.5rem; max-width: 380px; margin: 0 auto; }
.cta-input {
  flex: 1;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 6px;
  padding: 0.75rem 0.9rem;
  font-size: 0.9rem;
  color: white;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.cta-input::placeholder { color: rgba(255,255,255,0.6); }
.cta-input:focus { border-color: rgba(255,255,255,0.7); }
.cta-btn {
  background: white;
  color: var(--pink-dark);
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.cta-btn:hover { background: var(--bg); }
.cta-btn:disabled { opacity: 0.65; cursor: not-allowed; }
.cta-note { font-size: 0.72rem; color: rgba(255,255,255,0.6); margin-top: 0.65rem; }
.cta-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 0.85rem 1.25rem;
  max-width: 380px;
  margin: 0.65rem auto 0;
}
.cta-success.show { display: flex; }
.cta-success p { font-size: 0.85rem; color: white; }

/* ── FOOTER ── */
footer { background: var(--dark); padding: 2.5rem 3rem; margin-top: auto; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--dark-border);
  margin-bottom: 1.5rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.6rem; }
.footer-logo-text { font-size: 1.05rem; font-weight: 700; color: var(--white); letter-spacing: -0.02em; }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.75); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  flex-wrap: wrap;
  gap: 0.6rem;
}
.footer-badges { display: flex; gap: 0.5rem; }
.footer-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 0.2rem 0.55rem;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   RESPONSIVE — TABLET (max 768px)
   ============================================ */
@media (max-width: 768px) {

  /* NAV */
  nav { padding: 0.9rem 1.5rem; }
  .nav-logo-text { font-size: 1.1rem; }
  .nav-lang { gap: 0.5rem; font-size: 0.75rem; }
  .nav-cta { padding: 0.45rem 1rem; font-size: 0.82rem; }

  /* HERO */
  .hero { padding: 3rem 1.5rem 2.5rem; }
  h1 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .hero-sub { font-size: 0.95rem; max-width: 100%; }
  .waitlist-teaser { max-width: 100%; }
  .signup-box { max-width: 100%; }
  .signup-info-row { grid-template-columns: 1fr 1fr; }
  .trust-strip { margin-top: 1.5rem; }

  /* STATS */
  .stats-section, .stats-strip { gap: 2rem; padding: 2.5rem 1.5rem; }
  .stat-num { font-size: 1.6rem; }

  /* SECTIONS */
  .section { padding: 3rem 1.5rem; }
  h2 { font-size: clamp(1.3rem, 3.5vw, 1.7rem); }
  .section-intro { max-width: 100%; }

  /* BARRIERS */
  .barriers-section { padding: 3rem 1.5rem; }
  .barriers-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .barriers-inner .section-intro { max-width: 100%; }

  /* STEPS */
  .steps { grid-template-columns: 1fr; }

  /* WHY */
  .why-grid { grid-template-columns: 1fr 1fr; }

  /* PRICING */
  .pricing-wrap { grid-template-columns: 1fr; }
  .pricing-card { max-width: 100%; }

  /* FAQ */
  .faq-question { font-size: 0.88rem; }

  /* CTA */
  .cta-section { padding: 3rem 1.5rem; }
  .cta-signup-row { max-width: 100%; }

  /* FOOTER */
  footer { padding: 2rem 1.5rem; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* ============================================
   RESPONSIVE — MOBILE (max 480px)
   ============================================ */
@media (max-width: 480px) {

  /* NAV */
  nav { padding: 0.85rem 1.25rem; }
  .nav-right { gap: 0.75rem; }
  .nav-lang { display: none; }
  .nav-cta { padding: 0.5rem 1rem; font-size: 0.82rem; }

  /* Mobile language switcher */
  .nav-lang-mobile {
    display: flex;
    position: relative;
    align-items: center;
  }
  .nav-lang-mobile-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    font-family: inherit;
    padding: 0.4rem 0.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }
  .nav-lang-mobile-btn:hover { border-color: rgba(255,255,255,0.4); color: white; }
  .nav-lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    overflow: hidden;
    z-index: 200;
    min-width: 120px;
  }
  .nav-lang-dropdown.open { display: block; }
  .nav-lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
  }
  .nav-lang-dropdown a:last-child { border-bottom: none; }
  .nav-lang-dropdown a:hover { background: var(--bg); }
  .nav-lang-dropdown a.active { color: var(--pink); font-weight: 600; }

  /* HERO */
  .hero { padding: 2.5rem 1.25rem 2rem; }
  h1 { font-size: clamp(1.5rem, 6vw, 2rem); margin-bottom: 1rem; }
  .hero-sub { font-size: 0.9rem; margin-bottom: 1.5rem; }
  .waitlist-teaser { font-size: 0.88rem; padding: 0.75rem 0.9rem; }

  /* SIGNUP BOX */
  .signup-box { padding: 1rem; }
  .signup-row { flex-direction: column; gap: 0.5rem; }
  .signup-input { width: 100%; padding: 0.85rem 1rem; font-size: 1rem; }
  .signup-btn { width: 100%; padding: 0.85rem; font-size: 1rem; text-align: center; }
  .signup-microcopy { font-size: 0.72rem; }
  .signup-info-row { grid-template-columns: 1fr; gap: 0.6rem; }
  .signup-features { grid-template-columns: 1fr; gap: 0.4rem; }
  .signup-feature { flex-direction: row; align-items: center; padding: 0.4rem 0; }
  .signup-count { justify-content: flex-start; }

  /* TRUST BADGES */
  .badges { gap: 0.4rem; }
  .badge { font-size: 0.68rem; padding: 0.3rem 0.6rem; }

  /* STATS */
  .stats-section, .stats-strip {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 2rem 1.25rem;
  }
  .stat { text-align: center; width: 100%; }
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: 0.72rem; max-width: 100%; }

  /* SECTIONS */
  .section { padding: 2.5rem 1.25rem; }
  h2 { font-size: 1.3rem; }

  /* BARRIERS */
  .barriers-section { padding: 2.5rem 1.25rem; }
  .barrier-card { padding: 1.25rem; }
  .barrier-card h3 { font-size: 0.9rem; }
  .barrier-card p { font-size: 0.8rem; }
  .barrier-quote { font-size: 0.75rem; }
  .barrier-resolution { padding: 1rem 1.25rem; }
  .barrier-resolution p { font-size: 0.82rem; }

  /* STEPS */
  .step { padding: 1.25rem; }
  .step h3 { font-size: 0.9rem; }
  .step p { font-size: 0.8rem; }

  /* WHY */
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 1.25rem; }

  /* PRICING */
  .pricing-header { padding: 1.25rem 1.25rem 1rem; }
  .pricing-body { padding: 1rem 1.25rem 1.25rem; }
  .pricing-amount { font-size: 1.9rem; }
  .context-item { padding: 0.5rem 0.75rem; }
  .context-item-left { font-size: 0.78rem; }
  .context-item-price { font-size: 0.78rem; }

  /* FAQ */
  .faq-question { padding: 1rem; font-size: 0.85rem; }
  .faq-answer { font-size: 0.82rem; }
  .faq-item.open .faq-answer { padding: 0 1rem 1rem; }

  /* CTA */
  .cta-section { padding: 2.5rem 1.25rem; }
  .cta-section h2 { font-size: 1.3rem; }
  .cta-signup-row { flex-direction: column; gap: 0.5rem; max-width: 100%; }
  .cta-input { width: 100%; padding: 0.85rem 1rem; font-size: 1rem; }
  .cta-btn { width: 100%; padding: 0.85rem; font-size: 1rem; }
  .cta-note { font-size: 0.7rem; }
  .cta-success { max-width: 100%; }

  /* FOOTER */
  footer { padding: 1.75rem 1.25rem; }
  .footer-links { gap: 0.75rem; }
  .footer-links a { font-size: 0.78rem; }
  .footer-bottom { font-size: 0.7rem; }
  .footer-badges { flex-wrap: wrap; gap: 0.4rem; }
}

/* Fix section kicker bleeding into h2 on mobile */
@media (max-width: 480px) {
  .section-kicker {
    display: block;
    margin-bottom: 0.4rem;
  }
  .section-kicker + h2 {
    margin-top: 0;
  }
  .barriers-inner .section-kicker {
    display: block;
    margin-bottom: 0.4rem;
  }
}

/* Fix kicker + h2 + intro rendering on mobile */
@media (max-width: 480px) {
  .section-kicker {
    display: block;
    margin-bottom: 0.5rem;
  }
  h2 {
    display: block;
    margin-bottom: 0.65rem;
  }
  .section-intro {
    display: block;
    color: var(--ink-mid) !important;
  }
  .barriers-inner h2 {
    color: var(--white) !important;
  }
  .barriers-inner .section-intro {
    color: rgba(255,255,255,0.85) !important;
  }
}

/* ── HONEYPOT ── */
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ── STAT SOURCE LINK ── */
.stat-source {
  color: rgba(255,255,255,0.3);
  font-size: 0.6em;
  text-decoration: none;
  vertical-align: super;
  margin-left: 2px;
}
.stat-source:hover { color: rgba(255,255,255,0.6); }

/* ── CHECK CTA BUTTON ── */
.check-cta-btn {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 1.25rem;
  transition: background 0.15s;
}
.check-cta-btn:hover { background: var(--pink); }

.hero-check-btn {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  border-radius: 10px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: background 0.15s;
  box-shadow: 0 4px 16px rgba(200,41,94,0.25);
}
.hero-check-btn:hover { background: var(--pink-dark); }

.hero-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 560px;
  margin-bottom: 1.5rem;
}
.hero-divider::before,
.hero-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.hero-divider span {
  font-size: 0.78rem;
  color: var(--ink-light);
  white-space: nowrap;
}