/* ============================================================
   CYNERSIS V3 — Design System
   Paleta: Navy profundo + Teal acción + Blanco limpio
   Tipografía: Inter — display 800-900, body 400-500
   Firma: proof-bar sticky con los 5 números clave,
          visible en todo el scroll = halo permanente (Kahneman)
   ============================================================ */

/* --- TOKENS --- */
:root {
  --navy:         #0A1E38;
  --navy-80:      #1B3358;
  --navy-40:      rgba(10,30,56,.4);
  --teal:         #00A896;
  --teal-hover:   #007D6E;
  --teal-10:      #E5F6F4;
  --teal-20:      #C0EBE7;
  --white:        #FFFFFF;
  --bg:           #F6F9FC;
  --bg-alt:       #ECF1F8;
  --text:         #192B3D;
  --text-60:      #4D6070;
  --text-40:      #7A8FA3;
  --border:       #D6E2EE;
  --border-dark:  rgba(10,30,56,.12);
  --red:          #DC3545;

  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   22px;
  --r-pill: 999px;

  --sh-sm:  0 1px 4px rgba(10,30,56,.06), 0 1px 2px rgba(10,30,56,.04);
  --sh-md:  0 4px 20px rgba(10,30,56,.09);
  --sh-lg:  0 12px 48px rgba(10,30,56,.13);
  --sh-xl:  0 24px 64px rgba(10,30,56,.16);

  --font:   'Inter', system-ui, -apple-system, sans-serif;
  --max:    1160px;
  --nav-h:  68px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); font-size: 16px; line-height: 1.6; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

/* --- LAYOUT --- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--alt { background: var(--bg); }
.section--dark { background: var(--navy); }

/* --- TYPE SCALE --- */
.eyebrow {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
}
.eyebrow--light { color: rgba(255,255,255,.5); }

.section-hd { text-align: center; max-width: 660px; margin: 0 auto 60px; }
.section-title {
  font-size: clamp(26px, 3.5vw, 42px); font-weight: 800;
  line-height: 1.16; letter-spacing: -.6px;
  color: var(--navy); margin-bottom: 16px;
}
.section-title--light { color: var(--white); }
.section-sub { font-size: 17px; color: var(--text-60); line-height: 1.7; }
.section-sub--light { color: rgba(255,255,255,.62); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-size: 15px; font-weight: 600; line-height: 1;
  border-radius: var(--r-pill); padding: 13px 28px;
  transition: all .18s ease; white-space: nowrap; cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--teal); color: var(--white);
  box-shadow: 0 2px 16px rgba(0,168,150,.3);
}
.btn--primary:hover {
  background: var(--teal-hover);
  box-shadow: 0 4px 24px rgba(0,168,150,.42);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent; color: var(--navy);
  border-color: var(--border);
}
.btn--outline:hover { border-color: var(--navy); background: var(--bg); }
.btn--outline-light {
  background: transparent; color: rgba(255,255,255,.88);
  border-color: rgba(255,255,255,.24);
}
.btn--outline-light:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.08); }
.btn--nav { padding: 9px 20px; font-size: 14px; background: var(--teal); color: var(--white); }
.btn--nav:hover { background: var(--teal-hover); }
.btn--lg { padding: 17px 36px; font-size: 16px; }
.btn--full { width: 100%; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 1000;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s;
}
.nav.scrolled { box-shadow: var(--sh-md); }
.nav__inner { display: flex; align-items: center; height: 100%; gap: 36px; }

.nav__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: var(--navy); color: var(--white);
  font-size: 17px; font-weight: 900; letter-spacing: -.5px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-text { font-size: 18px; font-weight: 800; color: var(--navy); letter-spacing: -.3px; }

.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a {
  font-size: 14px; font-weight: 500; color: var(--text-60);
  transition: color .15s; position: relative; padding-bottom: 2px;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--teal); border-radius: 2px;
  transform: scaleX(0); transition: transform .2s;
}
.nav__links a:hover, .nav__links a.active { color: var(--navy); }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }

.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; margin-left: auto;
}
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .22s; }

/* MOBILE MENU */
.mob {
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 999;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 12px 24px 28px;
  display: flex; flex-direction: column; gap: 0;
  transform: translateY(-110%); opacity: 0; pointer-events: none;
  transition: transform .28s ease, opacity .28s ease;
  box-shadow: var(--sh-lg);
}
.mob.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mob a:not(.btn) {
  font-size: 16px; font-weight: 500; color: var(--text);
  padding: 14px 0; border-bottom: 1px solid var(--bg-alt);
  display: block;
}
.mob .btn { margin-top: 18px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy);
  padding: calc(var(--nav-h) + 96px) 0 112px;
}
/* bottom wave */
.hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 56px; background: var(--white);
  clip-path: ellipse(58% 100% at 50% 100%);
}
.hero__orb1 {
  position: absolute; pointer-events: none;
  top: -60px; right: -80px; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,168,150,.18) 0%, transparent 65%);
}
.hero__orb2 {
  position: absolute; pointer-events: none;
  bottom: 80px; left: -60px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(0,168,150,.08) 0%, transparent 70%);
}
.hero__inner { position: relative; z-index: 1; max-width: 860px; }

.hero__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.7); font-size: 12px; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 7px 16px; border-radius: var(--r-pill); margin-bottom: 28px;
}
.hero__kicker-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,168,150,.28); flex-shrink: 0;
}

.hero__title {
  font-size: clamp(32px, 5.8vw, 64px);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -2px; color: var(--white);
  margin-bottom: 24px;
}
.hero__title em { font-style: normal; color: var(--teal); }

.hero__sub {
  font-size: 18px; line-height: 1.75;
  color: rgba(255,255,255,.65);
  max-width: 640px; margin-bottom: 44px;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   PROOF BAR — sticky bajo el nav, halo permanente (Kahneman)
   ============================================================ */
.proof {
  background: var(--white); border-bottom: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  position: sticky; top: var(--nav-h); z-index: 990;
}
.proof__inner {
  display: flex; align-items: stretch; justify-content: center;
  flex-wrap: wrap; overflow-x: auto; scrollbar-width: none;
}
.proof__inner::-webkit-scrollbar { display: none; }
.proof__item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 14px 32px; gap: 2px; flex-shrink: 0;
}
.proof__num { font-size: 22px; font-weight: 900; color: var(--navy); letter-spacing: -.5px; line-height: 1.1; }
.proof__lbl { font-size: 12px; font-weight: 500; color: var(--text-40); white-space: nowrap; }
.proof__sep { width: 1px; background: var(--border); margin: 10px 0; flex-shrink: 0; }

/* ============================================================
   VERTICALES
   ============================================================ */
.vert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
/* Card de Zoom ocupa 2 columnas — la más fuerte visualmente */
.vert-card--hero { grid-column: span 2; }

.vert-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 32px 30px;
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow .22s, transform .22s, border-color .22s;
}
.vert-card:hover {
  box-shadow: var(--sh-lg); transform: translateY(-4px);
  border-color: rgba(0,168,150,.35);
}
.vert-card--dark {
  background: var(--navy); border-color: var(--navy-80);
}
.vert-card--dark:hover { border-color: var(--teal); }

/* icon */
.vc-icon {
  width: 48px; height: 48px; border-radius: var(--r-md);
  background: var(--teal-10); color: var(--teal);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.vert-card--dark .vc-icon { background: rgba(0,168,150,.14); }

/* tag */
.vc-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--teal); background: var(--teal-10);
  padding: 4px 12px; border-radius: var(--r-pill); width: fit-content;
}
.vert-card--dark .vc-tag { background: rgba(0,168,150,.14); }

/* title */
.vc-title { font-size: 20px; font-weight: 800; line-height: 1.26; letter-spacing: -.2px; color: var(--navy); }
.vert-card--dark .vc-title { color: var(--white); }

/* keyword SEO oculto visualmente pero en el DOM */
.vc-kw { font-size: 0; height: 0; overflow: hidden; display: block; }

/* pain / proof */
.vc-pain {
  font-size: 14px; font-style: italic; line-height: 1.6;
  color: var(--text-40); border-left: 3px solid var(--teal-20);
  padding-left: 12px; margin: 0;
}
.vert-card--dark .vc-pain { color: rgba(255,255,255,.5); border-color: rgba(0,168,150,.3); }

.vc-solution { font-size: 15px; color: var(--text-60); line-height: 1.68; }
.vert-card--dark .vc-solution { color: rgba(255,255,255,.68); }

/* checklist */
.vc-list { display: flex; flex-direction: column; gap: 7px; flex: 1; }
.vc-list li {
  font-size: 14px; font-weight: 500; color: var(--text);
  display: flex; align-items: flex-start; gap: 9px; line-height: 1.5;
}
.vc-list li::before { content: "✓"; color: var(--teal); font-weight: 800; flex-shrink: 0; }
.vert-card--dark .vc-list li { color: rgba(255,255,255,.82); }

/* cta link */
.vc-cta {
  font-size: 14px; font-weight: 700; color: var(--teal);
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 6px; transition: gap .15s, color .15s;
}
.vc-cta:hover { gap: 9px; color: var(--teal-hover); }

/* row 2 — 3 cards iguales */
.vert-row2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }

/* ============================================================
   MARCAS PARTNERS
   ============================================================ */
.brands-grid {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.brand-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-pill); padding: 9px 22px;
  font-size: 13px; font-weight: 700; color: var(--text-60);
  letter-spacing: .02em; transition: all .15s;
}
.brand-pill:hover { border-color: var(--teal); color: var(--navy); background: var(--teal-10); }
.brand-pill--featured { border-color: var(--teal-20); color: var(--navy); }

/* ============================================================
   POR QUÉ CYNERSIS
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-md); padding: 28px 24px;
  transition: box-shadow .2s, border-color .2s;
}
.why-card:hover { box-shadow: var(--sh-md); border-color: rgba(0,168,150,.3); }
.why-num { font-size: 12px; font-weight: 800; color: var(--teal); letter-spacing: .07em; margin-bottom: 14px; }
.why-title { font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 10px; }
.why-body { font-size: 14px; color: var(--text-60); line-height: 1.72; }

/* ============================================================
   NOSOTROS
   ============================================================ */
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about__copy .eyebrow { color: var(--teal); }
.about__title { font-size: clamp(24px, 3vw, 38px); font-weight: 800; color: var(--navy); line-height: 1.18; letter-spacing: -.5px; margin-bottom: 20px; }
.about__body { font-size: 16px; color: var(--text-60); line-height: 1.75; margin-bottom: 28px; }
.about__values { display: flex; flex-direction: column; gap: 14px; }
.about__val { display: flex; align-items: flex-start; gap: 14px; }
.about__val-icon { width: 38px; height: 38px; border-radius: var(--r-sm); background: var(--teal-10); color: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.about__val-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.about__val-text { font-size: 13px; color: var(--text-60); line-height: 1.6; }
.about__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about__stat { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r-md); padding: 24px; text-align: center; }
.about__stat-num { font-size: 36px; font-weight: 900; color: var(--navy); letter-spacing: -1px; line-height: 1; margin-bottom: 6px; }
.about__stat-lbl { font-size: 13px; color: var(--text-60); line-height: 1.5; }

/* ============================================================
   LATAM
   ============================================================ */
.latam__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.latam__copy .eyebrow { color: var(--teal); }
.latam__title { font-size: clamp(22px, 2.8vw, 34px); font-weight: 800; color: var(--white); line-height: 1.2; letter-spacing: -.4px; margin-bottom: 16px; }
.latam__body { font-size: 16px; color: rgba(255,255,255,.62); line-height: 1.75; margin-bottom: 28px; }
.latam-cards { display: flex; flex-direction: column; gap: 14px; }
.latam-card {
  background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md); padding: 20px 22px;
  display: flex; align-items: center; gap: 16px;
  transition: background .2s, border-color .2s;
}
.latam-card:hover { background: rgba(255,255,255,.09); border-color: rgba(0,168,150,.35); }
.latam-card__flag { font-size: 26px; line-height: 1; }
.latam-card__name { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.latam-card__detail { font-size: 13px; color: rgba(255,255,255,.45); }

/* ============================================================
   INDUSTRIAS
   ============================================================ */
.ind-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.ind-tag {
  padding: 10px 22px; background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-pill); font-size: 14px; font-weight: 500;
  color: var(--text-60); transition: all .15s; cursor: default;
}
.ind-tag:hover { background: var(--teal-10); border-color: var(--teal); color: var(--navy); }

/* ============================================================
   FAQ — AEO optimizado
   ============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; padding: 22px 0;
  font-size: 16px; font-weight: 600; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  cursor: pointer; transition: color .15s;
  background: none; border: none;
}
.faq-q:hover { color: var(--teal); }
.faq-q svg { flex-shrink: 0; transition: transform .25s; color: var(--teal); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  font-size: 15px; color: var(--text-60); line-height: 1.75;
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding-bottom .35s;
}
.faq-item.open .faq-a { max-height: 600px; padding-bottom: 22px; }

/* ============================================================
   CONTACTO
   ============================================================ */
.ctc__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.ctc__copy .eyebrow { color: var(--teal); }
.ctc__title { font-size: clamp(22px, 3vw, 36px); font-weight: 800; color: var(--navy); line-height: 1.2; letter-spacing: -.4px; margin-bottom: 16px; }
.ctc__sub { font-size: 16px; color: var(--text-60); line-height: 1.72; margin-bottom: 28px; }

.trust-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.trust-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; font-weight: 500; color: var(--text); line-height: 1.5; }
.trust-list svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }

.direct-links { display: flex; flex-direction: column; gap: 10px; padding-top: 20px; border-top: 1px solid var(--border); }
.direct-link { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--text-60); transition: color .15s; }
.direct-link:hover { color: var(--navy); }
.direct-link svg { color: var(--teal); flex-shrink: 0; }

/* FORM */
.form-wrap {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 36px;
  box-shadow: var(--sh-xl);
}
.form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--text); letter-spacing: .02em; }
.form-req { color: var(--teal); }
.form-input {
  font-size: 15px; color: var(--text); background: var(--bg);
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  padding: 12px 14px; width: 100%; outline: none;
  transition: border-color .15s, box-shadow .15s, background .15s;
  appearance: none;
}
.form-input::placeholder { color: var(--text-40); }
.form-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,168,150,.13); background: var(--white); }
.form-input.err { border-color: var(--red); box-shadow: 0 0 0 3px rgba(220,53,69,.1); }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237A8FA3' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 40px; cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 88px; }
.form-note { font-size: 12px; color: var(--text-40); text-align: center; }
.form-success { text-align: center; padding: 40px 16px; }
.form-success__ico {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--teal-10); color: var(--teal);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.form-success h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.form-success p { font-size: 15px; color: var(--text-60); line-height: 1.65; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #06101E; }
.footer__top { padding: 56px 0 48px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer .logo-mark { background: rgba(255,255,255,.1); }
.footer .logo-text { color: var(--white); }
.footer__desc { font-size: 13px; color: rgba(255,255,255,.38); line-height: 1.7; margin-top: 12px; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); transition: all .18s;
}
.footer__social a:hover { background: rgba(0,168,150,.22); color: var(--teal); border-color: rgba(0,168,150,.35); }
.footer__col-title { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 16px; display: block; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14px; color: rgba(255,255,255,.5); transition: color .15s; }
.footer__col a:hover { color: var(--white); }
.footer__bottom { padding: 20px 0; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer__copy { font-size: 13px; color: rgba(255,255,255,.22); }
.footer__iso { font-size: 12px; color: rgba(255,255,255,.18); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .vert-grid { grid-template-columns: 1fr 1fr; }
  .vert-card--hero { grid-column: span 2; }
  .vert-row2 { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .latam__inner { grid-template-columns: 1fr; gap: 40px; }
  .ctc__inner { grid-template-columns: 1fr; gap: 44px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav__links, .btn--nav { display: none; }
  .nav__burger { display: flex; }
  .section { padding: 64px 0; }
  .hero { padding: calc(var(--nav-h) + 56px) 0 80px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .proof { position: static; }
  .vert-grid, .vert-row2 { grid-template-columns: 1fr; }
  .vert-card--hero { grid-column: span 1; }
  .why-grid { grid-template-columns: 1fr; gap: 12px; }
  .about__stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .proof__item { padding: 12px 18px; }
  .form-wrap { padding: 22px 18px; }
  .about__stats { grid-template-columns: 1fr; }
  .section-hd { margin-bottom: 40px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .btn, .vert-card, .faq-a, .faq-q svg { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
