/* ============================================================
   PACE Language Hub — shared stylesheet
   Brand: forest green + lime + slate, on warm cream.
   Voice: warm, human, community. Built for trust + speed.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,600;12..96,700;12..96,800&family=Hanken+Grotesk:wght@400;500;600;700&family=Newsreader:ital,opsz,wght@1,6..72,400;1,6..72,500&display=swap');

:root {
  /* Brand */
  --forest:    #143C28;
  --forest-2:  #0E2C1D;
  --forest-3:  #1E5538;
  --lime:      #79C043;
  --lime-2:    #69ad36;
  --lime-soft: #E8F4DC;
  --slate:     #495a63;

  /* Warm neutrals */
  --cream:     #FBF7F0;
  --cream-2:   #F4ECDF;
  --paper:     #FFFFFF;
  --ink:       #18241D;
  --muted:     #5d6b62;
  --line:      #e7ddcd;

  /* Warm human accent (used sparingly) */
  --honey:     #E8A23C;
  --honey-soft:#FBEACB;

  --maxw: 1200px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 8px rgba(20,60,40,.06);
  --shadow:    0 18px 50px -20px rgba(20,60,40,.28);
  --shadow-lg: 0 40px 90px -30px rgba(14,44,29,.45);

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;
  --font-quote: 'Newsreader', Georgia, serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--forest);
  text-wrap: balance;
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--forest-3);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: var(--lime);
}
.eyebrow.on-dark { color: var(--lime); }
.eyebrow.on-dark::before { background: var(--lime); }
.eyebrow.center { justify-content: center; }

.lede { font-size: 1.18rem; color: var(--muted); line-height: 1.62; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 1.02rem;
  padding: 16px 28px; border-radius: 999px;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary {
  background: var(--lime); color: var(--forest-2);
  box-shadow: 0 12px 26px -10px rgba(121,192,67,.7);
}
.btn-primary:hover { background: var(--lime-2); transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(121,192,67,.85); }
.btn-forest { background: var(--forest); color: #fff; }
.btn-forest:hover { background: var(--forest-2); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost {
  background: transparent; color: var(--forest);
  box-shadow: inset 0 0 0 2px rgba(20,60,40,.18);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--forest); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--forest); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-lg { padding: 19px 34px; font-size: 1.08rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,247,240,.82);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -16px rgba(20,60,40,.4);
}
.nav {
  display: flex; align-items: center; gap: 24px;
  height: 80px; transition: height .25s;
}
.site-header.scrolled .nav { height: 68px; }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 38px; width: auto; transition: height .25s; }
.site-header.scrolled .brand img { height: 33px; }
.nav-links { display: flex; align-items: center; gap: 30px; margin-left: 14px; }
.nav-links a {
  font-weight: 600; font-size: .98rem; color: var(--slate);
  position: relative; padding: 4px 0; white-space: nowrap;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--lime); border-radius: 2px; transition: width .22s ease;
}
.nav-links a:hover { color: var(--forest); }
.nav-links a:hover::after { width: 100%; }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

.lang-switch { display: flex; align-items: center; gap: 2px;
  background: var(--cream-2); border-radius: 999px; padding: 4px; }
.lang-switch a {
  font-weight: 700; font-size: .82rem; letter-spacing: .02em;
  padding: 6px 12px; border-radius: 999px; color: var(--slate);
}
.lang-switch a.active { background: var(--forest); color: #fff; }

.nav-phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; color: var(--forest); font-size: 1rem; white-space: nowrap;
}
.nav-phone span { line-height: 1.15; }
.nav-phone .ph-ic {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--lime-soft); color: var(--forest-3);
  display: grid; place-items: center; flex-shrink: 0;
}
.nav-phone .ph-ic svg { width: 16px; height: 16px; }
.nav-phone small { display: block; font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

.menu-toggle { display: none; width: 44px; height: 44px; border-radius: 12px;
  background: var(--cream-2); color: var(--forest); place-items: center; }
.menu-toggle svg { width: 24px; height: 24px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 64px 0 92px; overflow: hidden; }
.hero-bg-blob {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero-bg-blob::before {
  content: ""; position: absolute; top: -28%; right: -12%;
  width: 760px; height: 760px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(121,192,67,.20), rgba(121,192,67,0) 62%);
}
.hero-bg-blob::after {
  content: ""; position: absolute; bottom: -36%; left: -16%;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(20,60,40,.10), rgba(20,60,40,0) 60%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--paper); border: 1px solid var(--line);
  padding: 8px 16px 8px 8px; border-radius: 999px;
  font-size: .9rem; font-weight: 600; color: var(--slate);
  box-shadow: var(--shadow-sm);
}
.hero-pill { white-space: nowrap; }
.hero-pill b { color: var(--forest); }
.hero-pill .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--lime);
  box-shadow: 0 0 0 0 rgba(121,192,67,.6); animation: pulse 2s infinite; }
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 26px; height: 26px; border-radius: 50%; margin-left: -8px;
  border: 2px solid #fff; background: var(--lime-soft);
  display: grid; place-items: center; font-size: 11px; color: var(--forest-3); font-weight: 700;
}
.avatar-stack span:first-child { margin-left: 0; }

.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; margin: 22px 0 0; }
.hero h1 .hl { position: relative; color: var(--forest-3); white-space: nowrap; }
.hero h1 .hl::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: .08em; height: .34em; z-index: -1;
  background: var(--lime); opacity: .42; border-radius: 4px; transform: rotate(-1deg);
}
.hero p.sub { margin-top: 22px; font-size: 1.22rem; color: var(--muted); max-width: 33ch; line-height: 1.55; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 18px 26px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; font-size: .95rem; font-weight: 600; color: var(--slate); }
.hero-trust svg { width: 18px; height: 18px; color: var(--lime-2); flex-shrink: 0; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-photo {
  width: 100%; aspect-ratio: 4/4.4; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
  border: 6px solid #fff; background: var(--cream-2);
}
.hero-photo image-slot { width: 100%; height: 100%; }
/* Floating "live connect" card */
.connect-card {
  position: absolute; left: -34px; bottom: 42px; z-index: 3;
  background: #fff; border-radius: 18px; padding: 14px 18px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 13px;
  border: 1px solid var(--line); animation: floaty 5s ease-in-out infinite;
}
.connect-card .cc-ic {
  width: 42px; height: 42px; border-radius: 12px; background: var(--forest);
  display: grid; place-items: center; flex-shrink: 0;
}
.connect-card .cc-ic svg { width: 22px; height: 22px; color: var(--lime); }
.connect-card b { font-family: var(--font-display); font-size: 1.05rem; color: var(--forest); display: block; }
.connect-card small { font-size: .82rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.connect-card small .live { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); animation: pulse 1.6s infinite; }
.lang-chip {
  position: absolute; top: 30px; right: -22px; z-index: 3;
  background: var(--lime); color: var(--forest-2);
  font-weight: 700; font-size: .92rem; padding: 11px 17px; border-radius: 14px;
  box-shadow: var(--shadow); animation: floaty 6s ease-in-out infinite reverse;
  display: flex; align-items: center; gap: 8px;
}
.lang-chip svg { width: 17px; height: 17px; }

/* ---------- Logos / marquee strip ---------- */
.strip { background: var(--forest); color: #fff; padding: 18px 0; }
.strip .wrap { display: flex; align-items: center; gap: 18px 40px; flex-wrap: wrap; justify-content: center; }
.strip p { font-weight: 600; color: rgba(255,255,255,.62); font-size: .9rem; letter-spacing: .04em; }
.strip-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.strip-tag { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 600; font-size: .96rem; }
.strip-tag svg { width: 18px; height: 18px; color: var(--lime); }

/* ---------- Section base ---------- */
section.block { padding: 92px 0; }
.section-head { max-width: 720px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); font-weight: 700; margin-top: 14px; }
.section-head p { margin-top: 16px; font-size: 1.12rem; color: var(--muted); }

/* ---------- Pain / empathy ---------- */
.pain { background: var(--cream-2); }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.pain-card {
  background: var(--paper); border-radius: var(--radius); padding: 30px 28px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pain-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pain-card .pic { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 18px; }
.pain-card .pic svg { width: 27px; height: 27px; }
.pic.c1 { background: #fdeaea; color: #c0392b; }
.pic.c2 { background: var(--honey-soft); color: #b9772a; }
.pic.c3 { background: var(--lime-soft); color: var(--forest-3); }
.pain-card h3 { font-size: 1.28rem; margin-bottom: 8px; }
.pain-card p { color: var(--muted); font-size: 1rem; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 56px; position: relative; }
.step { text-align: left; position: relative; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--forest); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem;
  display: grid; place-items: center; margin-bottom: 20px; position: relative; z-index: 2;
}
.step:nth-child(2) .step-num { background: var(--forest-3); }
.step:nth-child(3) .step-num { background: var(--lime); color: var(--forest-2); }
.step h3 { font-size: 1.35rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 1.02rem; }
.step-line { position: absolute; top: 28px; left: 56px; right: -26px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px); z-index: 1; }
.step:last-child .step-line { display: none; }

/* ---------- Video ---------- */
.video { background: var(--cream-2); }
.video-frame {
  position: relative; max-width: 940px; margin: 50px auto 0; aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 6px solid #fff; background: var(--forest-2);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Why choose (features) ---------- */
.why { background: var(--forest); color: #fff; position: relative; overflow: hidden; }
.why::before {
  content: ""; position: absolute; top: -20%; right: -10%; width: 540px; height: 540px; border-radius: 50%;
  background: radial-gradient(circle, rgba(121,192,67,.18), transparent 62%); pointer-events: none;
}
.why h2, .why .section-head h2 { color: #fff; }
.why .section-head p { color: rgba(255,255,255,.74); }
.why-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.feat-list { display: grid; gap: 14px; margin-top: 8px; }
.feat {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px; padding: 18px 20px; transition: background .2s, transform .2s;
}
.feat:hover { background: rgba(255,255,255,.09); transform: translateX(4px); }
.feat .fic { width: 44px; height: 44px; border-radius: 12px; background: var(--lime); color: var(--forest-2);
  display: grid; place-items: center; flex-shrink: 0; }
.feat .fic svg { width: 22px; height: 22px; }
.feat h3 { color: #fff; font-size: 1.12rem; margin-bottom: 3px; }
.feat p { color: rgba(255,255,255,.68); font-size: .96rem; line-height: 1.5; }

.why-aside { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 38px 34px; backdrop-filter: blur(6px); }
.why-aside .quote-mark { font-family: var(--font-quote); font-size: 4rem; line-height: .6; color: var(--lime); }
.why-aside blockquote { font-family: var(--font-quote); font-style: italic; font-size: 1.5rem;
  line-height: 1.42; color: #fff; margin: 14px 0 24px; }
.why-aside .who { display: flex; align-items: center; gap: 14px; }
.why-aside .who image-slot, .why-aside .who .ava {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0; overflow: hidden; }
.why-aside .who .ava { background: var(--lime-soft); display: grid; place-items: center; color: var(--forest-3); font-weight: 700; font-family: var(--font-display); }
.why-aside .who b { color: #fff; display: block; font-size: 1.02rem; }
.why-aside .who span { color: rgba(255,255,255,.62); font-size: .9rem; }

/* ---------- Stats ---------- */
.stats { background: var(--lime-soft); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 5vw, 3.6rem);
  color: var(--forest); line-height: 1; letter-spacing: -0.03em; }
.stat .num .plus { color: var(--lime-2); }
.stat .lbl { margin-top: 10px; font-weight: 600; color: var(--slate); font-size: 1rem; }
.stat + .stat { border-left: 1px solid rgba(20,60,40,.12); }

/* ---------- Trust badges ---------- */
.badges-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 50px; }
.badge { text-align: center; padding: 30px 22px; border-radius: var(--radius);
  background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s; }
.badge:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.badge .bic { width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--lime-soft); color: var(--forest-3); display: grid; place-items: center; }
.badge .bic svg { width: 28px; height: 28px; }
.badge h3 { font-size: 1.12rem; }
.badge p { color: var(--muted); font-size: .92rem; margin-top: 6px; }

/* ---------- Final CTA ---------- */
.final { padding: 0 0 92px; }
.final-card {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-2) 100%);
  border-radius: var(--radius-lg); padding: 64px 56px; position: relative; overflow: hidden;
  color: #fff; box-shadow: var(--shadow-lg);
}
.final-card::before { content: ""; position: absolute; top: -40%; right: -6%; width: 460px; height: 460px;
  border-radius: 50%; background: radial-gradient(circle, rgba(121,192,67,.22), transparent 60%); }
.final-card .fc-inner { position: relative; z-index: 2; max-width: 640px; }
.final-card h2 { color: #fff; font-size: clamp(2.1rem, 4vw, 3rem); font-weight: 800; }
.final-card p { color: rgba(255,255,255,.8); font-size: 1.15rem; margin-top: 16px; }
.final-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; align-items: center; }
.final-phone { display: inline-flex; align-items: center; gap: 12px; color: #fff; font-weight: 700; font-size: 1.3rem; white-space: nowrap; }
.final-phone .ph-ic { width: 46px; height: 46px; border-radius: 50%; background: var(--lime); color: var(--forest-2); display: grid; place-items: center; }
.final-phone .ph-ic svg { width: 22px; height: 22px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-2); color: rgba(255,255,255,.7); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer img.flogo { height: 40px; margin-bottom: 18px; }
.site-footer p.fdesc { font-size: .98rem; line-height: 1.6; max-width: 32ch; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-weight: 700; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; padding: 6px 0; color: rgba(255,255,255,.7); font-size: .98rem; transition: color .18s; }
.footer-col a:hover { color: var(--lime); }
.footer-contact a, .footer-contact span { display: flex; align-items: center; gap: 10px; }
.footer-contact span { padding: 6px 0; color: rgba(255,255,255,.7); font-size: .98rem; }
.footer-contact .socials { display: flex; gap: 10px; margin-top: 18px; padding: 0; }
.footer-contact .socials a { width: 40px; height: 40px; padding: 0; border-radius: 50%;
  display: grid; place-items: center; background: rgba(255,255,255,.08); color: rgba(255,255,255,.82);
  transition: background .18s, color .18s, transform .18s; }
.footer-contact .socials a:hover { background: var(--lime); color: var(--forest-2); transform: translateY(-2px); }
.footer-contact .socials svg { width: 18px; height: 18px; }
.footer-contact svg { width: 17px; height: 17px; color: var(--lime); flex-shrink: 0; }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .9rem; }
.footer-bottom .fb-meta { display: flex; flex-direction: column; gap: 4px; }
.footer-bottom .credit { color: rgba(255,255,255,.5); }
.footer-bottom .credit .heart { color: var(--lime); }
.footer-bottom .credit a { color: rgba(255,255,255,.8); font-weight: 600; transition: color .18s; }
.footer-bottom .credit a:hover { color: var(--lime); }
.footer-bottom .lang-switch { background: rgba(255,255,255,.08); }
.footer-bottom .lang-switch a { color: rgba(255,255,255,.7); }
.footer-bottom .lang-switch a.active { background: var(--lime); color: var(--forest-2); }

/* ---------- Mobile sticky call bar ---------- */
.mobile-call { display: none; }

/* ---------- Reveal animation (hidden state only when JS can animate it) ---------- */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(121,192,67,.55);} 70% { box-shadow: 0 0 0 9px rgba(121,192,67,0);} 100% { box-shadow: 0 0 0 0 rgba(121,192,67,0);} }
@keyframes floaty { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-9px);} }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; margin: 0 auto; width: 100%; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  .nav-links, .nav-phone small { display: none; }
  .menu-toggle { display: grid; }
  .nav-links.open { display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 4px; background: var(--paper);
    padding: 16px 28px 24px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); margin-left: 0; }
  .nav-links.open a { padding: 10px 0; width: 100%; font-size: 1.1rem; }
  .pain-grid, .steps, .stats-grid, .badges-grid { grid-template-columns: 1fr 1fr; }
  .step-line { display: none; }
  .stat + .stat { border-left: none; }
  section.block { padding: 70px 0; }
  .final-card { padding: 44px 30px; }
}
@media (max-width: 560px) {
  body { font-size: 17px; }
  .wrap { padding: 0 18px; }
  .pain-grid, .steps, .stats-grid, .badges-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 30px 18px; }
  .hero { padding: 36px 0 70px; }
  .hero-cta .btn { flex: 1 1 100%; }
  .lang-chip { right: 6px; }
  .connect-card { left: 8px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .mobile-call { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
    gap: 10px; padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(251,247,240,.94); backdrop-filter: blur(10px); border-top: 1px solid var(--line); }
  .mobile-call .btn { flex: 1; padding: 14px; }
  body { padding-bottom: 74px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}
