/* ============================================================
   Bigbox Corpo — Home  ·  Editorial Luxury
   Fraunces (display + italic accents) + Hanken Grotesk (UI/body)
   Paleta cálida muestreada del PDF.  Aire, hairlines, grano, profundidad.
   ============================================================ */

:root {
  --paper:      #FFFFFF;   /* blanco (fondo) */
  --paper-2:    #F6F5F3;   /* off-white sutil (secciones alt) */
  --petrol:     #103E4D;   /* petróleo (dark) */
  --petrol-deep:#0B2C37;
  --petrol-soft:#1A4A57;
  --teal:       #FC4C02;   /* naranja de marca (sobre claro) */
  --teal-deep:  #DC4202;
  --teal-bright:#FF6B33;   /* naranja legible sobre oscuro */
  --teal-tint:  #FFE7DC;
  --ink:        #1C2A30;   /* texto fuerte */
  --ink-soft:   #586A6F;   /* texto cuerpo */
  --ink-faint:  #93A0A2;   /* texto tenue */
  --line:       rgba(16,62,77,.14);
  --line-soft:  rgba(16,62,77,.08);
  --line-light: rgba(255,255,255,.16);
  --gold:       #C9A24B;

  --maxw: 1200px;
  --gutter: clamp(22px, 5vw, 72px);
  --radius: 18px;
  --radius-lg: 26px;

  --shadow-soft: 0 30px 70px -42px rgba(16,62,77,.40);
  --shadow-card: 0 24px 50px -30px rgba(16,62,77,.30);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --serif-italic: "Instrument Serif", Georgia, "Times New Roman", serif;
  --sans:  "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* grano global muy sutil */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  background-image: var(--grain); opacity: .035; mix-blend-mode: multiply;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--teal); color: #fff; }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(80px, 11vw, 168px); position: relative; }

/* ---------- typography ---------- */
h1, h2, h3, h4 { font-family: var(--sans); font-weight: 500; letter-spacing: -.02em; line-height: 1.1; color: var(--ink); }
.display { font-size: clamp(2.3rem, 4.8vw, 4.4rem); line-height: 1.05; letter-spacing: -.025em; font-weight: 500; }
h2.title { font-size: clamp(1.85rem, 3.9vw, 3.2rem); font-weight: 500; }
/* acentos destacados: misma tipografía (Poppins), solo cambia el color */
.accent { color: var(--teal); }
.accent-light { color: var(--teal-bright); }
/* énfasis en línea: Poppins, sin itálica, solo color del acento */
em, .em { font-style: normal; color: var(--teal); }
.hero em, .problem em, .cta em { color: var(--teal-bright); }
.btn em { color: inherit; }

.eyebrow {
  font-family: var(--sans); display: inline-flex; align-items: center; gap: 14px;
  font-size: .72rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 26px;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: currentColor; opacity: .6; }
.eyebrow.center { justify-content: center; }
.eyebrow.on-dark { color: #FF8A5B; }

.lead { font-family: var(--sans-body); font-size: clamp(1.05rem, 1.5vw, 1.22rem); line-height: 1.6; color: var(--ink-soft); max-width: 52ch; font-weight: 400; }
.lead.on-dark { color: rgba(255,255,255,.78); }

/* section index number (editorial) */
.idx { font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .24em; color: var(--ink-faint); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 11px; font-family: var(--sans);
  font-weight: 600; font-size: .98rem; line-height: 1; border: 0; border-radius: 10px;
  padding: 17px 28px; transition: transform .25s cubic-bezier(.2,.8,.2,1), background .25s, color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; transition: transform .25s cubic-bezier(.2,.8,.2,1); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 14px 30px -14px rgba(252,76,2,.6); }
.btn-primary:hover { background: var(--teal-deep); transform: translateY(-2px); }
.btn-dark { background: var(--petrol); color: var(--paper); }
.btn-dark:hover { background: var(--petrol-deep); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; padding: 18px; }

/* text link with animated underline */
.tlink { display: inline-flex; align-items: center; gap: 9px; font-family: var(--sans); font-weight: 600; font-size: .98rem; color: var(--ink); position: relative; }
.tlink::after { content: ""; position: absolute; left: 0; bottom: -4px; height: 1.5px; width: 100%; background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.tlink:hover::after { transform: scaleX(1); }
.tlink svg { width: 16px; height: 16px; transition: transform .25s; }
.tlink:hover svg { transform: translateX(4px); }
.tlink.on-dark { color: #fff; }

/* ============================================================
   NAV
   ============================================================ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: var(--paper); transition: background .35s, box-shadow .35s, border-color .35s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(255,255,255,.9); backdrop-filter: saturate(150%) blur(14px); border-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.brand { font-family: var(--sans); font-weight: 700; font-size: 1.22rem; letter-spacing: -.01em; color: var(--ink); }
.brand .dot { color: var(--teal); }
.nav-links { display: flex; gap: 36px; margin-left: auto; margin-right: clamp(20px, 2.6vw, 40px); }
.nav-links a { font-family: var(--sans); font-size: .92rem; font-weight: 500; color: var(--ink-soft); transition: color .2s; position: relative; }
.nav-links a:hover { color: var(--teal); }
/* dropdown de nav (Soluciones) */
.nav-dd { position: relative; }
.nav-dd__btn { display: inline-flex; align-items: center; gap: 5px; background: none; border: 0; cursor: pointer; font-family: var(--sans); font-size: .92rem; font-weight: 500; color: var(--ink-soft); padding: 0; transition: color .2s; }
.nav-dd__btn:hover, .nav-dd.open .nav-dd__btn { color: var(--teal); }
.nav-dd__chev { width: 13px; height: 13px; transition: transform .2s; }
.nav-dd.open .nav-dd__chev { transform: rotate(180deg); }
.nav-dd__menu { position: absolute; top: calc(100% + 16px); left: 0; min-width: 232px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-card); padding: 6px; display: none; flex-direction: column; gap: 2px; z-index: 60; }
.nav-dd.open .nav-dd__menu { display: flex; }
.nav-dd__menu a { display: flex; align-items: center; gap: 11px; padding: 10px 14px; border-radius: 8px; font-family: var(--sans); font-size: .92rem; font-weight: 500; color: var(--ink); white-space: nowrap; transition: background .15s, color .15s; }
.nav-dd__menu a:hover { background: var(--paper-2); color: var(--teal); }
.nav-dd__menu .dd-ic { width: 18px; height: 18px; color: var(--teal); flex: none; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-sep { width: 1px; height: 22px; background: var(--line); }
.nav-country { position: relative; }
.nav-country__btn { display: inline-flex; align-items: center; gap: 7px; background: none; border: 0; cursor: pointer; font-family: var(--sans); font-size: .92rem; font-weight: 600; color: var(--ink); padding: 6px 2px; transition: color .2s; }
.nav-flag { width: 22px; height: 15px; border-radius: 3px; object-fit: cover; display: block; box-shadow: 0 0 0 1px rgba(0,0,0,.07); flex: none; }
.nav-country__chev { width: 14px; height: 14px; color: var(--ink-soft); transition: color .2s, transform .2s; }
.nav-country__btn:hover .nav-country__chev { color: var(--teal); }
.nav-country.open .nav-country__chev { transform: rotate(180deg); color: var(--teal); }
.nav-country__menu { position: absolute; top: calc(100% + 10px); right: 0; min-width: 186px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-card); padding: 6px; display: none; flex-direction: column; gap: 2px; z-index: 60; }
.nav-country.open .nav-country__menu { display: flex; }
.nav-country__menu a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 8px; font-family: var(--sans); font-size: .92rem; font-weight: 500; color: var(--ink); white-space: nowrap; transition: background .15s; }
.nav-country__menu a:hover { background: var(--paper-2); }
.nav .btn { padding: 12px 22px; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: currentColor; color: var(--ink); margin: 6px 0; transition: .25s; }

/* ============================================================
   HERO
   ============================================================ */
/* hero formato banner: nav blanco arriba, foto-banner rectangular pegada al nav, fondo claro abajo */
.hero { position: relative; background: var(--paper); padding: 80px 0 0; }
.hero-banner { position: relative; overflow: hidden; border-radius: 0; min-height: clamp(320px, 34vw, 400px); display: flex; align-items: center; }
.hero-photo { position: absolute; inset: 0; z-index: 0; }
.hero-photo > img, .hero-photo > video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-photo .hero-vid { background: #0A0C0E; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,9,11,.85) 0%, rgba(8,9,11,.64) 32%, rgba(8,9,11,.32) 58%, rgba(8,9,11,.06) 100%); }
.hero-photo .grain-over { position: absolute; inset: 0; background-image: var(--grain); opacity: .06; mix-blend-mode: overlay; }
/* video solo como enhancement: sin movimiento o en mobile cae al poster */
@media (prefers-reduced-motion: reduce) { .hero-vid { display: none; } }
.hero-inner { position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; align-items: flex-start; text-align: left; gap: 16px; max-width: 640px; margin-inline: 0; padding: clamp(28px, 3.6vw, 50px) clamp(28px, 4vw, 56px); }
.hero-mid { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.hero .badge { display: inline-flex; align-items: center; gap: 9px; font-family: var(--sans); font-size: .78rem; font-weight: 500; color: #fff; background: rgba(10,12,14,.22); border: 1px solid rgba(255,255,255,.24); padding: 7px 15px; border-radius: 999px; backdrop-filter: blur(7px) saturate(140%); -webkit-backdrop-filter: blur(7px) saturate(140%); }
.hero .badge .spark { color: var(--gold); }
.hero h1 { color: #fff; font-size: clamp(2.05rem, 3.9vw, 3.6rem); text-shadow: 0 3px 36px rgba(0,0,0,.52); }
.hero h1 .accent { color: var(--teal-bright); opacity: 1; }
.hero .lead { color: rgba(255,255,255,.86); font-size: clamp(1rem, 1.1vw, 1.08rem); line-height: 1.5; max-width: 52ch; margin-inline: 0; text-shadow: 0 2px 18px rgba(0,0,0,.58); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: flex-start; }
.hero-reassure { display: flex; align-items: center; margin: 0; font-family: var(--sans); }
.hero-rating { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: #fff; text-shadow: 0 1px 10px rgba(0,0,0,.5); }
.hero-rating .stars { display: inline-flex; gap: 2px; }
.hero-rating .stars svg { width: 15px; height: 15px; color: var(--gold); flex: none; }
.hero-proof { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 12px clamp(20px, 2.6vw, 34px); margin-top: 2px; }
.hero-proof li { display: inline-flex; align-items: center; gap: 9px; font-family: var(--sans); font-size: clamp(.74rem, .82vw, .82rem); font-weight: 300; line-height: 1.25; color: rgba(255,255,255,.88); text-shadow: 0 1px 10px rgba(0,0,0,.45); }
.hero-proof li svg { width: 16px; height: 16px; color: var(--teal-bright); flex: none; }

/* ============================================================
   LOGOS
   ============================================================ */
.logos { height: 84px; display: flex; align-items: center; border-bottom: 1px solid var(--line); overflow: hidden; }
.logos-row { display: flex; align-items: center; gap: clamp(22px, 3vw, 46px); }
.logos-label { flex: none; font-size: .72rem; letter-spacing: .22em; line-height: 1.35; text-transform: uppercase; color: var(--ink-faint); white-space: nowrap; }
.lbl-br { display: none; }
/* marquee infinito de marcas (una sola línea, loop sin cortes) */
.marquee { position: relative; flex: 1; min-width: 0; overflow: hidden; -webkit-mask-image: linear-gradient(to right, #000 0%, #000 86%, transparent); mask-image: linear-gradient(to right, #000 0%, #000 86%, transparent); }
.marquee-track { display: flex; width: max-content; animation: marquee 26s linear infinite; animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group { display: flex; align-items: center; flex-shrink: 0; gap: clamp(44px, 6vw, 88px); padding-right: clamp(44px, 6vw, 88px); }
.marquee-group span { font-family: var(--sans-body); font-style: normal; font-size: .98rem; letter-spacing: .05em; color: #9AA0A0; font-weight: 300; white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } .marquee { overflow-x: auto; } }

/* ---------- section header helper ---------- */
.shead { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: clamp(48px, 6vw, 80px); flex-wrap: wrap; }
.shead .max { max-width: 640px; }
.shead .title { margin-top: 4px; }

/* ============================================================
   CATÁLOGO
   ============================================================ */
/* slider automático infinito de experiencias */
.exp-slider { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent); mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent); }
.exp-track { display: flex; width: max-content; animation: ucscroll 45s linear infinite; }
/* el catálogo no se detiene en hover */
.exp-group { display: flex; flex-shrink: 0; gap: 18px; padding-right: 18px; }
@media (prefers-reduced-motion: reduce) { .exp-track { animation: none; } .exp-slider { overflow-x: auto; } }
@media (max-width: 560px) { .card-exp { flex-basis: 84vw; } }
#experiencias { padding-block: clamp(38px, 4.8vw, 70px); }
#experiencias .shead { display: block; position: relative; margin-bottom: clamp(20px, 2.6vw, 36px); }
#experiencias .shead .max { max-width: none; }
#experiencias .shead .idx { position: absolute; top: 8px; right: 0; }
.card-exp { flex: 0 0 clamp(252px, 22vw, 306px); position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-card); isolation: isolate; }
.card-exp img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.card-exp:hover img { transform: scale(1.05); }
.card-exp::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(9,24,30,.95) 6%, rgba(9,24,30,.64) 40%, rgba(9,24,30,.18) 72%, rgba(9,24,30,0) 100%), linear-gradient(rgba(9,24,30,.2), rgba(9,24,30,.2)); }
/* badge distintivo por card (jerarquía: .is-top destacada en teal) */
.card-exp .badge-card { position: absolute; top: 14px; left: 14px; z-index: 3; display: inline-flex; align-items: center; gap: 6px; font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .01em; color: #fff; padding: 6px 12px 6px 10px; border-radius: 999px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(8px) saturate(140%); -webkit-backdrop-filter: blur(8px) saturate(140%); }
.card-exp .badge-card svg { width: 13px; height: 13px; }
.card-exp .badge-card.is-top { background: var(--teal); border-color: transparent; box-shadow: 0 6px 18px -6px rgba(252,76,2,.7); }
.card-exp .body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 22px; color: #fff; }
.card-exp .tag { font-family: var(--sans); font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.72); margin-bottom: 10px; }
.card-exp h3 { font-family: var(--sans); font-size: 1.18rem; line-height: 1.22; color: #fff; font-weight: 600; letter-spacing: -.01em; }
.card-exp .foot { font-family: var(--sans-body); font-size: .74rem; color: rgba(255,255,255,.66); margin-top: 14px; padding-top: 13px; border-top: 1px solid rgba(255,255,255,.16); }
.cat-more { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; margin-top: 48px; padding-top: 36px; border-top: 1px solid var(--line); }
.cat-more b { font-family: var(--sans); font-size: 1.4rem; font-weight: 600; letter-spacing: -.01em; display: block; }
.cat-more p { color: var(--ink-soft); font-size: .98rem; margin-top: 4px; }

/* ============================================================
   SOLUCIONES (bento grid)
   ============================================================ */
.soluciones .shead { display: block; position: relative; text-align: center; margin-bottom: clamp(28px, 3.4vw, 48px); }
.soluciones .shead .max { max-width: none; margin: 0 auto; }
.soluciones .shead .lead { margin-inline: auto; }
.soluciones .shead .idx { position: absolute; top: 8px; right: 0; }
.sol-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(200px, 1fr); gap: 16px; }
.sol-tile { position: relative; overflow: hidden; border-radius: var(--radius); isolation: isolate; display: flex; flex-direction: column; box-shadow: var(--shadow-card); transition: transform .25s, box-shadow .25s; }
.sol-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.sol-tile > img, .sol-tile > video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.sol-tile:hover > img, .sol-tile:hover > video { transform: scale(1.05); }
.sol-tile::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(9,24,30,.95) 6%, rgba(9,24,30,.5) 52%, rgba(9,24,30,.06) 100%); }
.sol-tile__body { position: relative; z-index: 2; margin-top: auto; padding: clamp(18px, 1.8vw, 24px); color: #fff; }
.sol-ic { width: 42px; height: 42px; border-radius: 11px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,.16); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); color: #fff; margin-bottom: 12px; flex: none; }
.sol-ic svg { width: 22px; height: 22px; }
.sol-tile h3 { font-family: var(--sans); font-size: 1.16rem; font-weight: 600; letter-spacing: -.01em; color: #fff; margin-bottom: 7px; }
.sol-tile p { font-family: var(--sans-body); font-size: .9rem; line-height: 1.5; color: rgba(255,255,255,.86); }
.sol-tile--wide { grid-column: span 2; }
.sol-tile--dim::after { background: linear-gradient(to top, rgba(9,24,30,.96) 6%, rgba(9,24,30,.74) 52%, rgba(9,24,30,.55) 100%); }
.sol-tile--feat { grid-column: span 2; grid-row: span 2; }
.sol-tile--feat .sol-tile__body { padding: clamp(26px, 2.8vw, 40px); }
.sol-tile--feat .sol-ic { width: 48px; height: 48px; }
.sol-tile--feat h3 { font-size: clamp(1.5rem, 2.3vw, 2rem); margin-bottom: 11px; }
.sol-tile--feat p { font-size: 1.02rem; line-height: 1.55; max-width: 44ch; }
.sol-tile--feat b { color: var(--teal-bright); font-weight: 600; }
@media (max-width: 900px) {
  .sol-grid { grid-template-columns: repeat(2, 1fr); }
  .sol-tile--feat { grid-row: span 1; min-height: 320px; }
}
@media (max-width: 540px) {
  .sol-grid { grid-template-columns: 1fr; }
  .sol-tile--feat, .sol-tile--wide { grid-column: span 1; }
  .sol-tile { min-height: 230px; }
  .sol-tile--feat { min-height: 300px; }
}

/* ============================================================
   FORMATOS (digital / físico)
   ============================================================ */
.shead-c { text-align: center; max-width: 760px; margin: 0 auto clamp(34px, 4.4vw, 54px); }
.shead-c .lead { margin: 16px auto 0; }
.formatos .shead-c { max-width: none; }
.fmt-groups { display: flex; flex-direction: column; gap: clamp(26px, 3.4vw, 42px); max-width: 880px; margin-inline: auto; }
.fmt-group { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(20px, 2.6vw, 34px); box-shadow: var(--shadow-card); }
.fmt-group__ttl { display: flex; align-items: center; gap: 11px; font-family: var(--sans); font-size: 1.15rem; font-weight: 600; color: var(--ink); margin-bottom: 18px; }
.fmt-group__ic { width: 34px; height: 34px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; background: var(--teal-tint); color: var(--teal); flex: none; }
.fmt-group__ic svg { width: 18px; height: 18px; }
.bento { display: flex; gap: clamp(12px, 1.4vw, 18px); }
.bento--stack { flex-direction: column; }
.bento--stack .cell { flex-grow: 0; }
.bento .cell { flex-grow: var(--ar); flex-basis: 0; min-width: 0; display: flex; flex-direction: column; }
.bento .cell img { width: 100%; height: auto; display: block; border-radius: var(--radius); }
.bento figcaption { order: -1; padding: 0 2px 11px; text-align: left; font-family: var(--sans); font-size: .98rem; font-weight: 600; letter-spacing: -.01em; color: var(--ink); }
@media (max-width: 640px) { .bento { flex-direction: column; } .bento .cell { flex-grow: 0; } }

/* ============================================================
   BIGBOX EN NÚMEROS
   ============================================================ */
.nums { background: var(--paper-2); }
.section.nums { padding-block: clamp(38px, 5vw, 68px); }
.nums-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.nums-aside .title { margin-bottom: clamp(18px, 2.4vw, 28px); }
.nums-visual { position: relative; width: 100%; max-width: 250px; aspect-ratio: 1; margin: 0 auto; }
.nums-ring { position: absolute; border: 1px solid var(--line); border-radius: 50%; }
.nums-ring.r1 { inset: 6%; }
.nums-ring.r2 { inset: 22%; }
.nums-photo { position: absolute; aspect-ratio: 1; border-radius: 50%; overflow: hidden; box-shadow: var(--shadow-card); border: 3px solid var(--paper-2); }
.nums-photo img { width: 100%; height: 100%; object-fit: cover; }
.nums-photo.pa { width: 28%; top: -2%; left: 38%; }
.nums-photo.pb { width: 23%; top: 16%; right: 0; }
.nums-photo.pc { width: 31%; bottom: 2%; left: 32%; }
.nums-photo.pd { width: 21%; bottom: 18%; left: 0; }
.nums-photo.pe { width: 17%; top: 30%; left: 12%; }
.nums-cards { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.num-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(16px, 1.9vw, 24px); }
.num-card:nth-child(1), .num-card:nth-child(2) { grid-column: span 3; }
.num-card:nth-child(3), .num-card:nth-child(4), .num-card:nth-child(5) { grid-column: span 2; }
.num-card b { font-family: var(--sans); display: block; font-size: clamp(1.8rem, 2.8vw, 2.4rem); font-weight: 600; letter-spacing: -.02em; color: var(--teal); line-height: 1; }
.num-card .lab { display: block; font-family: var(--sans); font-size: .95rem; font-weight: 500; color: var(--ink); margin-top: 8px; }
.num-card .desc { display: block; font-family: var(--sans-body); font-size: .84rem; color: var(--ink-soft); margin-top: 4px; }
@media (max-width: 860px) { .nums-grid { grid-template-columns: 1fr; } .nums-visual { max-width: 230px; } }
@media (max-width: 520px) { .nums-cards { grid-template-columns: 1fr 1fr; } .num-card:nth-child(1), .num-card:nth-child(2), .num-card:nth-child(3), .num-card:nth-child(4), .num-card:nth-child(5) { grid-column: span 1; } }

/* ============================================================
   PROBLEMA (dark)
   ============================================================ */
.problem { background: var(--petrol); color: #fff; overflow: hidden; }
.problem::before { content: ""; position: absolute; inset: 0; background-image: var(--grain); opacity: .05; mix-blend-mode: overlay; pointer-events: none; }
.problem h2.title { color: #fff; max-width: 20ch; }
.problem h2.title .accent { color: var(--teal-bright); }
.problem h2.title .ln { display: block; margin-top: .42em; }
/* ============================================================
   CASOS DE USO (tabs por objetivo + título rotativo)
   ============================================================ */
.section.usecases { padding-block: clamp(32px, 4.2vw, 60px); }
.usecases .shead { display: block; position: relative; text-align: center; margin-bottom: clamp(12px, 1.6vw, 22px); }
.usecases .shead .max { max-width: 880px; margin: 0 auto; }
.usecases .shead .lead { margin-inline: auto; }
.usecases .shead .idx { position: absolute; top: 4px; right: 0; }
.usecases .uc-rotador { color: var(--teal); display: inline-block; transition: opacity .28s ease, transform .28s ease; }
.usecases .uc-rotador.swap { opacity: 0; transform: translateY(10px); }

.uc-tabs { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(2px, 1vw, 16px); max-width: 1000px; margin: 0 auto clamp(10px, 1.4vw, 16px); }
.uc-tab { position: relative; display: inline-flex; align-items: center; gap: 9px; font-family: var(--sans); font-size: clamp(.84rem, 1vw, .97rem); font-weight: 500; color: var(--ink-soft); background: transparent; border: 1.5px solid transparent; border-radius: 12px; padding: 12px 16px; cursor: pointer; transition: color .25s, background .25s, border-color .25s, box-shadow .25s; white-space: nowrap; }
.uc-tab svg { width: 18px; height: 18px; color: var(--teal); flex: none; }
.uc-tab:hover:not(.is-active) { color: var(--ink); }
.uc-tab::after { content: ""; position: absolute; left: 16px; right: 16px; bottom: 7px; height: 2px; background: var(--teal); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.uc-tab:hover:not(.is-active)::after { transform: scaleX(1); }
.uc-tab.is-active { color: var(--ink); background: var(--paper); border-color: var(--teal); box-shadow: 0 12px 26px -16px rgba(252,76,2,.5); }
.uc-sep { height: 1px; background: var(--line); max-width: 1000px; margin: 0 auto clamp(20px, 2.4vw, 30px); }

.uc-panel { display: none; }
.uc-panel.is-active { display: block; animation: ucfade .42s cubic-bezier(.2,.8,.2,1); }
@keyframes ucfade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.uc-intro { font-family: var(--sans-body); font-style: italic; text-align: center; max-width: 58ch; margin: 0 auto clamp(16px, 2vw, 24px); color: var(--ink-soft); font-size: clamp(.9rem, 1.05vw, .98rem); line-height: 1.5; }

/* slider automático (loop sin cortes, pausa al hover) */
.uc-slider { position: relative; overflow: hidden; padding: 14px 0 34px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 2.5%, #000 97.5%, transparent); mask-image: linear-gradient(90deg, transparent, #000 2.5%, #000 97.5%, transparent); }
.uc-track { display: flex; width: max-content; animation: ucscroll 21s linear infinite; }
/* el slider no se detiene en hover */
.uc-group { display: flex; flex-shrink: 0; gap: 18px; padding-right: 18px; }
@keyframes ucscroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.uc-card { position: relative; flex: 0 0 clamp(280px, 26vw, 340px); height: clamp(320px, 26vw, 375px); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }
.uc-card__media { position: absolute; inset: 0; }
.uc-card__media img { width: 100%; height: 100%; object-fit: cover; }
.uc-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,9,11,.18) 0%, rgba(8,9,11,0) 30%, rgba(8,9,11,.55) 62%, rgba(8,9,11,.92) 100%); }
.uc-card__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; display: flex; flex-direction: column; gap: 9px; padding: clamp(18px, 1.9vw, 26px); }
.uc-card__body h3 { font-family: var(--sans); font-size: 1.18rem; line-height: 1.2; color: #fff; font-weight: 600; letter-spacing: -.015em; }
.uc-card__body p { font-family: var(--sans-body); font-size: .9rem; line-height: 1.5; color: rgba(255,255,255,.86); }
.uc-card__use { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.uc-card__use .lbl { font-size: .72rem; font-weight: 400; letter-spacing: .01em; color: var(--ink-faint); }
.uc-card__use b { font-size: .85rem; font-weight: 600; color: var(--teal-deep); background: var(--teal-tint); padding: 7px 14px; border-radius: 999px; line-height: 1.1; }

@media (prefers-reduced-motion: reduce) { .uc-track { animation: none; } .uc-slider { overflow-x: auto; } }
@media (max-width: 560px) { .uc-tab { padding: 10px 22px; font-size: .9rem; } .uc-card { flex-basis: 80vw; } }

/* quote a todo el ancho con foto de fondo oscura */
.problem--quote { text-align: center; background-image: linear-gradient(180deg, rgba(6,7,8,.9) 0%, rgba(6,7,8,.72) 48%, rgba(6,7,8,.94) 100%), url("img/problem-bg.jpg"); background-size: cover; background-position: center; }
.problem--quote .container { max-width: 1240px; position: relative; z-index: 1; }
.bigquote { margin: 0; font-family: var(--sans); font-weight: 500; font-size: clamp(1.5rem, 3.4vw, 3.1rem); line-height: 1.24; letter-spacing: -.022em; color: #fff; }
.bigquote .accent { color: var(--teal-bright); }
/* medidor del dato estrella (renovación) */
.vs-feature { margin-top: clamp(40px, 5vw, 64px); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: clamp(24px, 3vw, 38px) clamp(26px, 3vw, 42px); }
.vs-feature__label { display: block; font-family: var(--sans); font-size: .74rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 24px; }
.vs-meter { display: flex; flex-direction: column; gap: 18px; }
.vs-meter__row { display: grid; grid-template-columns: 110px 1fr 84px; align-items: center; gap: 18px; }
.vs-meter__name { font-family: var(--sans); font-size: .95rem; color: rgba(255,255,255,.7); }
.vs-meter__track { height: 12px; border-radius: 999px; background: rgba(255,255,255,.08); overflow: hidden; }
.vs-meter__fill { display: block; height: 100%; width: 0; border-radius: 999px; transition: width 1.3s cubic-bezier(.2,.8,.2,1); }
.vs-meter__fill.bad { background: rgba(255,255,255,.3); }
.vs-meter__fill.good { background: linear-gradient(90deg, var(--teal), #46BECD); transition-delay: .15s; }
.reveal.in .vs-meter__fill { width: var(--w); }
.vs-meter__val { font-family: var(--serif); font-size: 1.6rem; color: rgba(255,255,255,.65); text-align: right; }
.vs-meter__val.good { color: #fff; }

/* versus visual */
.vs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 18px; }
.vs-card { border-radius: var(--radius); padding: clamp(28px, 3vw, 42px); }
.vs-bad { background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.1); }
.vs-good { background: linear-gradient(165deg, rgba(255,107,51,.2), rgba(252,76,2,.05)); border: 1px solid rgba(255,140,90,.55); box-shadow: 0 36px 70px -34px rgba(252,76,2,.55); }
.vs-tag { display: inline-block; font-family: var(--sans); font-size: .74rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 26px; }
.vs-tag--brand { color: #fff; background: var(--teal); padding: 6px 14px; border-radius: 999px; letter-spacing: .08em; }
.vs-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.vs-list li { display: flex; align-items: center; gap: 13px; font-size: 1.06rem; color: rgba(255,255,255,.72); }
.vs-good .vs-list li { color: #fff; }
.vs-list li b { font-weight: 600; }
.vs-good .vs-list li b { color: #fff; }
.vs-ic { flex: none; width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; }
.vs-ic svg { width: 16px; height: 16px; }
.vs-bad .vs-ic { background: rgba(255,255,255,.07); color: rgba(255,255,255,.42); }
.vs-good .vs-ic { background: rgba(255,140,90,.18); color: #46BECD; }
@media (max-width: 760px) { .vs { grid-template-columns: 1fr; } .vs-meter__row { grid-template-columns: 78px 1fr 62px; gap: 12px; } .vs-meter__val { font-size: 1.3rem; } }

/* ============================================================
   RAZONES
   ============================================================ */
.reasons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.reason { background: var(--paper); padding: clamp(32px, 4vw, 48px); transition: background .3s; }
.reason:hover { background: #fff; }
.reason .ic { width: 46px; height: 46px; color: var(--teal); margin-bottom: 24px; }
.reason .ic svg { width: 100%; height: 100%; stroke-width: 1.4; }
.reason h3 { font-size: 1.5rem; margin-bottom: 14px; }
.reason p { color: var(--ink-soft); font-size: 1rem; }

/* ============================================================
   PASOS
   ============================================================ */
.steps-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 7vw, 96px); align-items: start; }
.steps-aside { position: sticky; top: 120px; }
.steps-aside .btn { margin-top: 30px; }
#como-funciona { padding-block: clamp(54px, 7.5vw, 120px); }
.steps-list { display: flex; flex-direction: column; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 28px; padding: 22px 0; border-top: 1px solid var(--line); }
.step:first-child { border-top: 0; padding-top: 0; }
.step .num { font-family: var(--serif); font-size: 2.4rem; font-weight: 300; color: var(--teal); line-height: 1; font-style: italic; }
.step h3 { font-size: 1.38rem; margin-bottom: 6px; }
.step p { color: var(--ink-soft); font-size: 1rem; }

/* ============================================================
   PRUEBA SOCIAL
   ============================================================ */
.social { background: var(--paper-2); }
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 4vw, 56px); margin-bottom: clamp(56px, 7vw, 88px); }
.quote { padding-top: 30px; border-top: 2px solid var(--ink); }
.quote p { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 2.1vw, 1.7rem); line-height: 1.35; color: var(--ink); font-weight: 380; margin-bottom: 26px; }
.quote .who { display: flex; align-items: center; gap: 13px; }
.quote .who .av { width: 40px; height: 40px; border-radius: 50%; background: var(--petrol); color: #fff; display: grid; place-items: center; font-family: var(--sans); font-weight: 600; font-size: .82rem; }
.quote .who b { font-family: var(--sans); display: block; font-size: .92rem; font-weight: 600; }
.quote .who span { font-size: .82rem; color: var(--ink-soft); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.stat { padding: clamp(32px, 4vw, 52px) 24px; text-align: center; border-left: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; justify-content: flex-start; }
.stat:first-child { border-left: 0; }
.stat-ic { width: 48px; height: 48px; border-radius: 13px; background: var(--teal-tint); color: var(--teal); display: grid; place-items: center; margin-bottom: 22px; }
.stat-ic svg { width: 23px; height: 23px; stroke-width: 1.6; }
.stat b { font-family: var(--serif); font-weight: 300; font-size: clamp(2.8rem, 5.4vw, 4.3rem); color: var(--petrol); line-height: 1; display: block; letter-spacing: -.02em; }
.stat .lab { font-family: var(--sans); font-weight: 600; font-size: 1.02rem; color: var(--ink); display: block; margin-top: 16px; letter-spacing: -.01em; }
.stat .desc { font-family: var(--sans); font-size: .84rem; color: var(--ink-soft); display: block; margin-top: 5px; }

/* ============================================================
   CIERRE
   ============================================================ */
.closing { text-align: center; overflow: hidden; background-image: linear-gradient(180deg, rgba(6,7,8,.9) 0%, rgba(6,7,8,.72) 48%, rgba(6,7,8,.94) 100%), url("img/problem-bg.jpg"); background-size: cover; background-position: center; }
.closing::before { content: ""; position: absolute; inset: 0; background-image: var(--grain); opacity: .05; mix-blend-mode: overlay; pointer-events: none; }
.closing .container { position: relative; z-index: 1; }
.closing .display { font-size: clamp(1.5rem, 3.4vw, 3.1rem); line-height: 1.24; max-width: 26ch; margin-inline: auto; color: #fff; }
.closing .display .accent { color: var(--teal-bright); }
.closing p { max-width: 58ch; margin: 32px auto 0; color: rgba(255,255,255,.8); font-size: 1.1rem; }
.closing p em { color: var(--teal-bright); }
.closing .kicker { font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: #fff; margin: 22px auto 38px; }
.closing .btn { margin-top: clamp(30px, 4vw, 44px); margin-inline: auto; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 880px; margin-top: clamp(40px, 5vw, 64px); }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: 0; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 26px 4px; font-family: var(--sans); font-size: clamp(1.05rem, 1.5vw, 1.3rem); font-weight: 600; letter-spacing: -.01em; color: var(--ink); transition: color .2s; }
.faq-q:hover { color: var(--teal); }
.faq-q .chev { flex: none; width: 22px; height: 22px; color: var(--teal); transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.faq-item.open .faq-q .chev { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s cubic-bezier(.2,.8,.2,1); }
.faq-a p { padding: 0 4px 30px; color: var(--ink-soft); max-width: 72ch; font-size: 1.02rem; }

/* ============================================================
   CTA + FORM (dark)
   ============================================================ */
.cta { position: relative; color: #fff; overflow: hidden; background: linear-gradient(180deg, rgba(6,7,8,.9) 0%, rgba(6,7,8,.72) 48%, rgba(6,7,8,.94) 100%), url("img/problem-bg.jpg") center/cover; }
.section.cta { padding-top: clamp(42px, 5vw, 72px); }
.cta::before { content: ""; position: absolute; inset: 0; background-image: var(--grain); opacity: .06; mix-blend-mode: overlay; pointer-events: none; }
.cta::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(58% 55% at 90% 6%, rgba(255,107,51,.22), transparent 68%), radial-gradient(46% 52% at 2% 96%, rgba(255,107,51,.12), transparent 70%); }
.cta .container { position: relative; z-index: 1; }
.cta-title { color: #fff; text-align: center; max-width: none; font-size: clamp(1.1rem, 1.9vw, 1.65rem); margin: 0 auto clamp(16px, 2vw, 26px); }
.cta-title .accent { color: var(--teal-bright); }
.cta-lead { color: rgba(255,255,255,.72); font-style: italic; font-size: clamp(.9rem, 1vw, .98rem); text-align: center; max-width: none; margin: 0 auto clamp(32px, 4vw, 52px); }
.cta-stats { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(24px, 3.4vw, 46px); margin: 0 auto clamp(40px, 5vw, 64px); }
.cta-stat { display: flex; flex-direction: column; gap: 5px; }
.cta-stat b { font-family: var(--serif); font-size: clamp(2rem, 2.8vw, 2.5rem); font-weight: 400; line-height: 1; color: var(--teal-bright); }
.cta-stat span { font-family: var(--sans-body); font-size: .92rem; color: rgba(255,255,255,.75); }
.cta-stat--text b { color: #fff; font-size: clamp(1.5rem, 2vw, 1.9rem); }

.form-card { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; width: 100%; scroll-margin-top: 100px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: clamp(20px, 2.8vw, 34px) clamp(26px, 3.6vw, 46px) clamp(26px, 3.6vw, 46px); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); box-shadow: 0 30px 70px -40px rgba(0,0,0,.5); }
.form-card .ttl { font-family: var(--sans); font-size: 1.35rem; font-weight: 600; letter-spacing: -.01em; color: #fff; margin-bottom: 8px; }
.form-card .sub { font-size: .9rem; color: rgba(255,255,255,.6); margin-bottom: 30px; }
.field { margin-bottom: 16px; position: relative; }
.field label { display: block; font-family: var(--sans); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 12px; }
.field input, .field select {
  width: 100%; padding: 12px 14px; border: 1px solid rgba(255,255,255,.22); border-radius: 10px;
  background: rgba(255,255,255,.12); color: #fff; font-family: var(--sans); font-size: 1.02rem;
  transition: border-color .25s, background .25s;
}
.field input::placeholder { color: rgba(255,255,255,.65); }
.field input:focus, .field select:focus { outline: 0; border-color: #FF8A5B; background: rgba(255,255,255,.16); }
.field select { appearance: none; cursor: pointer; padding-right: 38px; background: rgba(255,255,255,.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23FF8A5B' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E") no-repeat right 14px center; }
.field select option { background: var(--petrol-deep); color: #fff; }
.field textarea { width: 100%; padding: 12px 14px; border: 1px solid rgba(255,255,255,.22); border-radius: 10px; background: rgba(255,255,255,.12); color: #fff; font-family: var(--sans-body); font-size: 1rem; line-height: 1.5; resize: vertical; min-height: 88px; transition: border-color .25s, background .25s; }
.field textarea::placeholder { color: rgba(255,255,255,.65); }
.field textarea:focus { outline: 0; border-color: #FF8A5B; background: rgba(255,255,255,.16); }
.field.error textarea, .field.error input, .field.error select { border-color: #E8A6A0; }
.field .err-msg { display: none; color: #E8A6A0; font-size: .76rem; margin-top: 8px; }
.field.error .err-msg { display: block; }
.field-lbl { display: block; font-family: var(--sans); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 12px; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { font-family: var(--sans); font-size: .85rem; font-weight: 500; white-space: nowrap; color: rgba(255,255,255,.85); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.22); border-radius: 10px; padding: 9px 13px; cursor: pointer; transition: background .2s, border-color .2s, color .2s; }
.pill:hover { border-color: rgba(255,255,255,.45); color: #fff; }
.pill.is-active { background: var(--teal); border-color: var(--teal); color: #fff; box-shadow: 0 8px 20px -10px rgba(252,76,2,.6); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.form-card .btn { margin-top: 8px; }
.form-note { display: flex; align-items: center; gap: 9px; justify-content: center; font-size: .8rem; color: rgba(255,255,255,.5); margin-top: 20px; }
.form-note svg { width: 14px; height: 14px; }
.form-msg { display: none; padding: 15px 18px; border-radius: 12px; font-size: .92rem; margin-bottom: 22px; }
.form-msg.ok { display: block; background: rgba(127,203,211,.16); color: #BFEAEE; border: 1px solid rgba(127,203,211,.3); }
.form-msg.fail { display: block; background: rgba(232,166,160,.14); color: #F0C4C0; border: 1px solid rgba(232,166,160,.3); }
.btn[aria-busy="true"] { opacity: .65; pointer-events: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--petrol-deep); color: #fff; padding-block: 40px; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
.footer .brand { color: #fff; }
.footer .copy { color: rgba(255,255,255,.55); font-size: .84rem; flex: 1; text-align: center; min-width: 240px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: .84rem; color: rgba(255,255,255,.6); }
.footer-links a:hover { color: #fff; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps-wrap { grid-template-columns: 1fr; }
  .steps-aside { position: static; }
  .cta-grid { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .hero-banner { min-height: clamp(420px, 70vh, 540px); }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 80px; left: 0; right: 0; background: var(--paper); padding: 22px var(--gutter) 28px; gap: 20px; border-bottom: 1px solid var(--line); }
  .nav-links.open a { color: var(--ink); }
  .nav-toggle { display: block; }
  .nav-cta .btn { display: none; }
  .nav-sep { display: none; }
  .nav-dd { width: 100%; }
  .nav-dd__menu { position: static; box-shadow: none; border: 0; min-width: 0; padding: 2px 0 6px 16px; }
  .logos-row { gap: 16px; }
  .lbl-br { display: inline; }
  .reasons-grid { grid-template-columns: 1fr; }
  .hero-scrim { background: linear-gradient(180deg, rgba(8,9,11,.5) 0%, rgba(8,9,11,.4) 42%, rgba(8,9,11,.6) 100%); }
  .hero-vid { display: none; }
  .hero-inner { gap: 22px; padding: 44px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 520px) {
  .cards { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-left: 0; border-top: 1px solid var(--line); }
  .stat:first-child { border-top: 0; }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (prefers-reduced-motion: reduce) { *, ::before, ::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; } .reveal { opacity: 1; transform: none; } }
