/* =====================================================================
   POWERFLEET · Landing Page · Design System
   Premium B2B enterprise · Linear / Vercel / Stripe register
   Brand accent locked to Powerfleet green #00664B
   ===================================================================== */

/* ---- Fonts (Geist + Geist Mono). Final export embeds these. ---- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700;800&family=Geist+Mono:wght@400;500;600&display=swap');

:root {
  /* surfaces */
  --bg:           #FFFFFF;
  --bg-elev:      #F7F8F7;
  --bg-card:      #F1F3F1;
  --bg-ink:       #0B1410;   /* near-black green-tinted, for optional dark moments */

  /* text */
  --text:         #15201C;   /* refined from #212121, green-black */
  --text-mute:    #586460;
  --text-dim:     #8B958F;

  /* brand */
  --accent:       #00664B;
  --accent-hover: #00543E;
  --accent-bright:#00946D;
  --accent-soft:  rgba(0,102,75,0.07);
  --accent-line:  rgba(0,102,75,0.22);

  /* status */
  --success:      #15803D;
  --warn:         #B45309;

  /* lines */
  --border:       #E6E8E6;
  --border-strong:#D6DAD7;

  /* radius */
  --r-sm: 7px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-pill: 100px;

  /* shadow — always subtle, never cartoon */
  --sh-xs: 0 1px 2px rgba(16,32,26,0.04);
  --sh-sm: 0 2px 6px rgba(16,32,26,0.05), 0 1px 2px rgba(16,32,26,0.04);
  --sh-card: 0 18px 44px -16px rgba(0,102,75,0.18), 0 6px 16px -8px rgba(16,32,26,0.08);
  --sh-lift: 0 24px 60px -20px rgba(0,102,75,0.28), 0 8px 22px -10px rgba(16,32,26,0.10);
  --sh-soft: 0 30px 80px -30px rgba(16,32,26,0.18);

  /* type */
  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono:    'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* motion */
  --ease:    cubic-bezier(.2,.8,.2,1);
  --ease-out:cubic-bezier(.16,1,.3,1);
  --motion:  1;  /* scaled by Tweaks: 0 = off, 1 = default, 1.6 = expressive */

  /* layout */
  --maxw: 1200px;
  --gutter: 40px;
  --density: 1;  /* scales section padding via Tweaks */
}

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

/* icon defaults — stroke style (Lucide register) */
.ic { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ic-fill { fill: currentColor; stroke: none; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: 'cv11', 'ss01';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: color .2s var(--ease); }
img, svg { display: block; max-width: 100%; }
::selection { background: rgba(0,102,75,0.16); color: var(--accent-hover); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ---------- LAYOUT PRIMITIVES ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding-top: calc(112px * var(--density)); padding-bottom: calc(112px * var(--density)); }
.section-tight { padding-top: calc(80px * var(--density)); padding-bottom: calc(80px * var(--density)); }
.band { background: var(--bg-elev); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.eyebrow-row { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0; }
.eyebrow-row.left { align-items: flex-start; text-align: left; }

/* ---------- TYPOGRAPHY ---------- */
.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.kicker::before { display: none; }
.eyebrow-row:not(.left) .kicker::before { display: none; }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text); font-weight: 800; }
h1 {
  font-size: clamp(38px, 4.7vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 26px;
  text-wrap: balance;
}
h2 {
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  text-wrap: balance;
}
h3 { font-size: 21px; line-height: 1.25; letter-spacing: -0.01em; }
h4 { font-size: 17px; font-weight: 700; line-height: 1.3; letter-spacing: -0.006em; }
.accent { color: var(--accent); }
.hl {
  background-image: linear-gradient(transparent 62%, rgba(0,102,75,0.18) 62%);
  background-repeat: no-repeat;
}
.lead {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--text-mute);
  max-width: 680px;
  text-wrap: pretty;
}
.lead b, p b { color: var(--text); font-weight: 600; }
p { color: var(--text-mute); text-wrap: pretty; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .25s var(--ease), background .2s var(--ease), box-shadow .25s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-arrow .arw { transition: transform .25s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset, var(--sh-sm);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(calc(-2px * var(--motion))); box-shadow: var(--sh-card); }
.btn-ghost { background: var(--bg); color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.btn-white { background:#fff; color: var(--accent); }
.btn-white:hover { transform: translateY(calc(-2px * var(--motion))); box-shadow: 0 16px 40px -16px rgba(0,0,0,0.5); }
.btn-lg { padding: 17px 30px; font-size: 16px; }
.btn-xl { padding: 20px 38px; font-size: 17px; }

/* ---------- PILL / BADGE ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px 7px 13px;
  background: var(--bg); border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  font-size: 13px; color: var(--text-mute); font-weight: 500;
  box-shadow: var(--sh-xs); max-width: 100%;
}
.badge > span:last-child { white-space: nowrap; }
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(21,128,61,0.14); position: relative; }
.badge .dot::after { content:''; position:absolute; inset:-3px; border-radius:50%; background: var(--success); opacity:.0; animation: ping calc(2.4s / var(--motion, 1)) var(--ease) infinite; }
@keyframes ping { 0%{ transform:scale(1); opacity:.5;} 70%,100%{ transform:scale(2.4); opacity:0;} }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease), padding .3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--border); background: rgba(255,255,255,0.86); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; transition: height .3s var(--ease); }
.site-header.scrolled .wrap { height: 62px; }
.brand { flex: 0 0 auto; }
.brand img { height: 26px; width: auto; max-width: none; flex-shrink: 0; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a:not(.btn) { color: var(--text-mute); font-size: 14px; font-weight: 500; transition: color .2s var(--ease); }
.site-nav a:not(.btn):hover { color: var(--text); }
.site-header .btn { padding: 10px 18px; font-size: 14px; }
.nav-toggle { display: none; }

/* ---------- HERO ---------- */
.hero { position: relative; padding-top: 72px; padding-bottom: calc(96px * var(--density)); overflow: hidden; }
.hero-aura { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.hero-aura::before {
  content: ''; position: absolute; top: -260px; right: -180px; width: 820px; height: 820px;
  background: radial-gradient(circle at center, rgba(0,148,109,0.13), rgba(0,102,75,0.05) 38%, transparent 66%);
  filter: blur(8px);
}
.hero-aura::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 70% 0%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 70% 0%, #000 0%, transparent 70%);
  opacity: .5;
}
.hero .wrap { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 56px; align-items: center; }
.hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.chips { display: flex; gap: 9px; margin-top: 26px; flex-wrap: wrap; }
.chip-break { flex-basis: 100%; height: 0; margin: 0; padding: 0; border: 0; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 15px; border-radius: var(--r-pill);
  background: var(--bg-elev); border: 1px solid var(--border);
  font-size: 14px; font-weight: 500; color: var(--text);
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}
.chip svg { width: 16px; height: 16px; color: var(--accent); }
.chip:hover { border-color: var(--accent-line); background: var(--accent-soft); transform: translateY(-1px); }

/* hero metric strip */
.metric-strip {
  margin-top: 40px; padding: 24px 26px;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
}
.metric-strip .ms-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-dim); font-weight: 500; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.metric-strip .ms-label svg { width: 14px; height: 14px; color: var(--accent); }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.metric .mv { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: var(--accent); letter-spacing: -0.03em; line-height: 1; }
.metric .mk { font-size: 14px; color: var(--text-mute); margin-top: 7px; line-height: 1.4; }
.metric { position: relative; padding-left: 16px; }
.metric::before { content:''; position:absolute; left:0; top:3px; bottom:3px; width:2px; background: var(--accent-line); border-radius: 2px; }

/* ---------- HERO PRODUCT MOCK (OnRoad placeholder) ---------- */
.hero-mock { position: relative; will-change: transform; }
.mock-window {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--sh-soft); overflow: hidden;
}
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; border-bottom: 1px solid var(--border); background: var(--bg-elev); }
.mock-bar .tl { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); }
.mock-bar .addr { margin-left: 10px; font-family: var(--font-mono); font-size: 11px; color: var(--text-dim); letter-spacing: .02em; }
.mock-body { display: grid; grid-template-columns: 1.3fr 1fr; gap: 1px; background: var(--border); }
.mock-map { background: var(--bg-elev); position: relative; min-height: 230px; overflow: hidden; }
.mock-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.mock-side { background: var(--bg); display: flex; flex-direction: column; }
.mock-vid { position: relative; aspect-ratio: 16/10; background: linear-gradient(135deg, #0e2b22, #08443233); border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.mock-vid .play { width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.92); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(0,0,0,0.25); z-index:2;}
.mock-vid .play svg { width: 20px; height: 20px; color: var(--accent); margin-left: 3px; }
.mock-vid .vtag { position: absolute; top: 10px; left: 10px; z-index:2; font-family: var(--font-mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color:#fff; background: rgba(0,0,0,0.4); padding: 3px 7px; border-radius: 4px; display:flex; align-items:center; gap:5px;}
.mock-vid .vtag .rec { width:6px; height:6px; border-radius:50%; background:#ff5b5b; animation: ping 2s infinite; }
.mock-rows { padding: 12px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.mock-row { display: flex; align-items: center; gap: 10px; }
.mock-row .ic { width: 28px; height: 28px; border-radius: 7px; background: var(--accent-soft); display:flex; align-items:center; justify-content:center; flex:0 0 auto;}
.mock-row .ic svg { width: 15px; height: 15px; color: var(--accent); }
.mock-row .ml { flex:1; }
.mock-row .ml .t { height: 7px; border-radius: 4px; background: var(--bg-card); width: 70%; }
.mock-row .ml .s { height: 6px; border-radius: 4px; background: var(--bg-elev); width: 45%; margin-top: 5px; }
.mock-row .val { font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--accent); }
.mock-float {
  position: absolute; right: -18px; bottom: -18px;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-md);
  box-shadow: var(--sh-card); padding: 14px 16px; display: flex; align-items: center; gap: 12px;
}
.mock-float .badge-ic { width: 38px; height: 38px; border-radius: 9px; background: var(--accent); display:flex; align-items:center; justify-content:center; }
.mock-float .badge-ic svg { width: 19px; height: 19px; color: #fff; }
.mock-float .mf-v { font-family: var(--font-mono); font-size: 18px; font-weight: 600; color: var(--text); letter-spacing: -.02em; line-height: 1; }
.mock-float .mf-k { font-size: 11px; color: var(--text-mute); margin-top: 3px; }

/* ---------- SECTION HEAD ---------- */
.shead { max-width: 760px; }
.shead.center { margin: 0 auto; text-align: center; }
.shead p { margin-top: 14px; font-size: 17px; color: var(--text-mute); }

/* ---------- VERTICALS ---------- */
.vert-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 52px; }
.vert-card {
  background: #EEF4F0; border: 1px solid rgba(0,102,75,0.12); border-radius: var(--r-md);
  padding: 0; overflow: hidden; transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}
.vert-card:hover { transform: translateY(calc(-5px * var(--motion))); border-color: var(--accent-line); box-shadow: var(--sh-card); }
.vert-photo { display: block; width: 100%; height: 172px; background: var(--bg-card); }
.vert-body { padding: 16px 16px 20px; }
.vert-head { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.vert-ic { width: 36px; height: 36px; border-radius: 9px; background: var(--accent-soft); display:flex; align-items:center; justify-content:center; flex:0 0 auto; }
.vert-ic svg { width: 20px; height: 20px; color: var(--accent); }
.vert-card h3 { font-size: 16px; font-weight: 700; margin: 0; }
.vlist { display: flex; flex-direction: column; gap: 9px; }
.vlist li { list-style: none; display: flex; align-items: center; gap: 9px; font-size: 15px; color: var(--text-mute); line-height: 1.4; }
.vlist li svg { display: block; width: 15px; height: 15px; flex: 0 0 auto; color: var(--accent); }

/* ---------- INLINE CTA BANNER ---------- */
.cta-inline {
  margin-top: 54px; padding: 32px 38px;
  background: var(--accent-soft); border: 1px solid var(--accent-line); border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.cta-inline .ci-k { font-family: var(--font-mono); color: var(--accent); font-size: 12px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; }
.cta-inline .ci-t { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--text); line-height: 1.25; letter-spacing: -0.015em; max-width: none; }

/* ---------- LOGO BAR ---------- */
.logobar { padding: 60px var(--gutter); }
.logobar .lb-label { text-align: center; font-family: var(--font-mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 34px; }
.marquee { position: relative; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: marquee calc(48s / var(--motion, 1)) linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.client-logo { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.01em; color: var(--text-dim); opacity: .62; white-space: nowrap; transition: opacity .25s var(--ease), color .25s var(--ease); }
.client-logo:hover { opacity: 1; color: var(--text); }
.logobar .lb-foot { text-align: center; margin-top: 34px; font-size: 14px; color: var(--text-dim); }

/* ---------- BIG STAT BAND ---------- */
.statband { padding: calc(84px * var(--density)) 0; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 46px; }
.bigstat { text-align: center; padding: 0 14px; position: relative; }
.bigstat:not(:last-child)::after { content:''; position:absolute; right:-14px; top:14%; bottom:14%; width:1px; background: var(--border); }
.bigstat .n { font-family: var(--font-display); font-size: clamp(44px, 5vw, 60px); font-weight: 800; color: var(--accent); letter-spacing: -0.04em; line-height: 1; }
.bigstat .l { color: var(--text-mute); font-size: 14px; margin-top: 12px; }

/* ---------- PILLARS ---------- */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 52px; }
.pillar {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 34px 32px; box-shadow: 0 4px 18px -8px rgba(16,32,26,0.13), 0 1px 3px rgba(16,32,26,0.05);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.pillar:hover { transform: translateY(calc(-5px * var(--motion))); box-shadow: var(--sh-card), 0 18px 50px -18px rgba(0,102,75,0.45); border-color: var(--accent); background: var(--accent-hover); }
.pillar h3, .pillar > p, .pillar .feat li, .pillar .feat li b { transition: color .3s var(--ease); }
.pillar:hover h3, .pillar:hover > p, .pillar:hover .feat li, .pillar:hover .feat li b { color: #fff; }
.pillar:hover h3::before { background: #fff; }
.pillar:hover .feat li svg { color: #fff; }
.pillar-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 20px; margin-bottom: 22px; border-bottom: 1px solid var(--border); }
.pillar-ix { font-family: var(--font-mono); font-size: 13px; font-weight: 500; letter-spacing: .16em; color: var(--accent); }
.pillar-ic { display: inline-flex; color: var(--accent); }
.pillar-ic svg { width: 30px; height: 30px; }
.pillar h3 { font-size: 23px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
.pillar h3::before { content: ''; display: block; width: 34px; height: 3px; border-radius: 2px; background: var(--accent); margin-bottom: 18px; }
.pillar > p { font-size: 16px; line-height: 1.62; color: var(--text-mute); margin-bottom: 20px; }
.pillar .feat { display: flex; flex-direction: column; gap: 11px; }
.pillar .feat li { list-style: none; position: relative; padding-left: 25px; font-size: 15px; color: var(--text-mute); line-height: 1.55; }
.pillar .feat li svg { position: absolute; left: 0; top: 3px; width: 15px; height: 15px; color: var(--accent); }
.pillar .feat li b { color: var(--text); font-weight: 600; }
.def {
  font-size: clamp(20px, 2.1vw, 25px); line-height: 1.42; color: var(--text);
  max-width: 900px; margin-top: 22px; font-weight: 500; letter-spacing: -0.012em;
}
.def b { color: var(--accent); font-weight: 600; }
#solucao { background: var(--bg-card); border-bottom: 1px solid var(--border); }

/* ---- product showcase · real OnRoad / Unity screenshots ---- */
.bframe { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; box-shadow: var(--sh-card); margin: 0; }
.bframe-bar { display: flex; align-items: center; gap: 7px; padding: 9px 14px; background: var(--bg-elev); border-bottom: 1px solid var(--border); margin: 0; }
.bf-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border-strong); flex: 0 0 auto; }
.bf-addr { margin-left: 8px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .02em; color: var(--text-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bframe img { display: block; width: 100%; height: auto; }
.onroad-showcase { position: relative; max-width: 1000px; margin: 30px auto 0; }
.showcase-img { display: block; width: 100%; height: auto; border-radius: 14px; box-shadow: var(--sh-card); }
.ors-phones { position: absolute; right: -8px; bottom: -40px; width: 188px; height: auto; z-index: 3; filter: drop-shadow(0 28px 46px rgba(0,0,0,0.3)); }
.onroad-risk { max-width: 1000px; margin: 44px auto 0; }

/* pinned full-screen zoom (grows to cover screen, holds, shrinks) */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .onroad-showcase { max-width: none; width: 100vw; margin-left: calc(50% - 50vw); height: 150vh; view-timeline-name: --sc; view-timeline-axis: block; }
    .showcase-sticky { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
    .showcase-img { width: 40vw; will-change: transform; transform-origin: center center; animation: scZoom linear both; animation-timeline: --sc; }
        .showcase-dim { display: block; position: absolute; inset: 0; z-index: 4; background: #04100b; opacity: 0; pointer-events: none; }
    .showcase-caption { display: block; position: absolute; z-index: 5; left: 50%; top: 50%; transform: translate(-50%, -50%); width: min(88vw, 900px); text-align: center; font-family: var(--font-display); font-weight: 800; font-size: clamp(22px, 3.3vw, 44px); line-height: 1.2; letter-spacing: -0.02em; color: #fff; text-shadow: 0 6px 34px rgba(0,0,0,0.6), 0 1px 6px rgba(0,0,0,0.55); opacity: 0; pointer-events: none; }
    .showcase-caption .sc-caret { display: inline-block; width: 3px; height: 0.95em; margin-left: 5px; vertical-align: -0.1em; background: var(--neon); box-shadow: 0 0 10px var(--neon); animation: scBlink 1s steps(1) infinite; }
    @keyframes scBlink { 50% { opacity: 0; } }
    @keyframes scZoom {
      0%   { transform: scale(0.95); border-radius: 16px; }
      38%  { transform: scale(2.5); border-radius: 0; }
      54%  { transform: scale(2.5); border-radius: 0; }
      100% { transform: scale(0.95); border-radius: 16px; }
    }
  }
}

/* ---- vertical card: title over photo + segment tags ---- */
.vert-photo-wrap { position: relative; }
.vert-photo-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,18,13,0.84) 0%, rgba(8,18,13,0.28) 42%, transparent 64%); pointer-events: none; }
.vert-title { position: absolute; left: 16px; right: 16px; bottom: 13px; z-index: 2; margin: 0; color: #fff; font-size: 20px; font-weight: 800; letter-spacing: -0.015em; line-height: 1.1; text-shadow: 0 2px 14px rgba(0,0,0,0.5); pointer-events: none; }

/* ---- client logo grid (monochrome) ---- */
.logo-grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 30px; max-width: 1060px; margin: 0 auto; }
.logo-cell { flex: 0 0 auto; width: 150px; height: 50px; display: flex; align-items: center; justify-content: center; }
.logo-cell img { max-height: 26px; max-width: 132px; width: auto; height: auto; object-fit: contain; opacity: .9; transition: opacity .25s var(--ease); }
.logo-cell img:hover { opacity: 1; }
.logo-cell.logo-lg img { max-height: 46px; max-width: 98px; }
.logo-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.logo-marquee .marquee-track { display: flex; align-items: center; gap: 58px; width: max-content; animation: marquee calc(58s / var(--motion, 1)) linear infinite; }
.logo-marquee:hover .marquee-track { animation-play-state: paused; }
.logo-marquee .logo-cell { width: auto; height: 48px; flex: 0 0 auto; }
@media (prefers-reduced-motion: reduce) { .logo-marquee .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; } }
.cases-logos { margin-top: 64px; }
.cases-logos .lb-label { text-align: center; font-family: var(--font-mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: #8BA89C; margin-bottom: 26px; }
.cases-logos .lb-label b { color: #EAF3EE; }
.dark-sec .logo-marquee .logo-cell img { filter: brightness(1.85); opacity: .72; }
.dark-sec .logo-marquee .logo-cell img:hover { opacity: 1; }
@media (max-width: 560px) { .logo-cell { width: 40%; } }

/* ---- desktop monitor mockup (risk dashboard) ---- */
.monitor { max-width: 900px; margin: 8px auto 0; }
.monitor-screen { background: #0b1a14; border: 12px solid #16191a; border-radius: 16px; overflow: hidden; box-shadow: 0 30px 70px -28px rgba(0,0,0,0.45), var(--sh-card); }
.monitor-screen img { display: block; width: 100%; height: auto; }
.monitor-stand { width: 110px; height: 50px; margin: 0 auto; background: linear-gradient(#cfd4d0, #aeb4af); clip-path: polygon(30% 0, 70% 0, 100% 100%, 0 100%); }
.monitor-base { width: 210px; height: 11px; border-radius: 0 0 7px 7px; margin: 0 auto; background: #b7bdb8; }

/* ---- diagnostico: high-contrast dark band ---- */
#preco.diag { background: linear-gradient(90deg, rgba(7,17,12,0.95) 0%, rgba(7,17,12,0.88) 34%, rgba(7,17,12,0.46) 66%, rgba(7,17,12,0.08) 100%), url('assets/diag-bg.webp') center 28%/cover no-repeat, var(--ink-0); color: #fff; border-top: 1px solid rgba(255,255,255,0.07); border-bottom: 1px solid rgba(255,255,255,0.07); text-align: left; min-height: 100vh; display: flex; align-items: center; }
#preco .diag, #preco .shead.center { text-align: left; }
#preco .shead { margin: 0; max-width: 600px; }
#preco .lead { margin-left: 0; margin-right: 0; max-width: 560px; }
#preco.diag::before { background: radial-gradient(ellipse 64% 80% at 50% 28%, rgba(47,230,168,0.16), transparent 68%); }
#preco .kicker { color: var(--neon); }
#preco h2 { color: #fff; }
#preco h2 .accent { color: var(--neon); }
#preco .lead { color: #A9C2B7; }
#preco .lead b { color: #fff; }
@media (max-width: 820px) {
  .onroad-showcase { margin-bottom: 0; }
  .ors-phones { position: static; display: block; width: 76%; margin: 18px auto 0; right: auto; bottom: auto; }
}

/* ---------- BENEFITS (9) ---------- */
.benefit-stack { max-width: 860px; margin: 52px auto 0; }
.benefit {
  position: sticky; top: calc(96px + var(--i,0) * 13px); margin-bottom: 34px;
  display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 26px; row-gap: 12px; align-items: start; align-content: center;
  min-height: 300px;
  background: #181E1B; border: 1px solid rgba(255,255,255,0.08); border-left: 3px solid var(--accent);
  border-radius: var(--r-md); padding: 58px 40px; box-shadow: 0 22px 50px -24px rgba(0,0,0,0.55);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.benefit:last-child { margin-bottom: 0; }
.benefit:hover { transform: translateY(-3px); border-color: rgba(47,230,168,0.5); border-left-color: var(--neon); box-shadow: 0 26px 60px -24px rgba(0,0,0,0.6), 0 0 52px -16px rgba(47,230,168,0.4); }
.benefit-ic { grid-column: 1; grid-row: 1 / 3; align-self: center; width: 66px; height: 66px; border-radius: 16px; background: rgba(47,230,168,0.12); border: 1px solid rgba(47,230,168,0.22); display:flex; align-items:center; justify-content:center; margin: 0; transition: background .3s var(--ease), transform .3s var(--ease); }
.benefit-ic svg { width: 32px; height: 32px; color: var(--neon); }
.benefit:hover .benefit-ic { background: rgba(47,230,168,0.2); transform: scale(1.06); }
.benefit h4 { grid-column: 2; margin: 0; font-size: 19px; color: #fff; letter-spacing: -0.01em; }
.benefit p { grid-column: 2; font-size: 14.5px; line-height: 1.58; margin: 0; color: #A9C2B7; }
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .benefit { animation: benefitBury linear both; animation-timeline: view(); animation-range: exit 10% exit 85%; }
    @keyframes benefitBury { to { filter: brightness(0.78); } }
  }
}

/* ---------- CASES ---------- */
.cases { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin-top: 50px; }
.case.span2 { grid-column: span 2; }
.case.span3 { grid-column: span 3; }
.case {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 30px 28px; position: relative; overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.case::after { content:''; position:absolute; left:0; top:0; height:3px; width:0; background: var(--accent); transition: width .4s var(--ease); }
.case:hover { transform: translateY(calc(-5px * var(--motion))); box-shadow: var(--sh-card); border-color: var(--accent-line); }
.case:hover::after { width: 100%; }
.case .cn { font-family: var(--font-display); font-size: clamp(40px, 4vw, 54px); font-weight: 800; color: var(--accent); letter-spacing: -0.04em; line-height: 1; margin-bottom: 20px; }
.case .cn.pos { color: var(--success); }
.case .cc { font-family: var(--font-mono); font-size: 11px; color: var(--accent); margin-bottom: 11px; font-weight: 500; letter-spacing: .08em; }
.case .cd { color: var(--text); font-size: 15.5px; line-height: 1.55; }
.case .cv { display: block; margin-top: 20px; padding-top: 15px; border-top: 1px solid var(--border); font-size: 11px; color: var(--text-dim); letter-spacing: .04em; }

/* ---------- PREMIUM GREEN BANNER ---------- */
.premium-wrap { padding: calc(96px * var(--density)) var(--gutter); }
.premium {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(135deg, #007656 0%, var(--accent) 42%, var(--accent-hover) 100%);
  border-radius: var(--r-lg); padding: 56px 56px;
  box-shadow: var(--sh-card);
}
.premium .glow-a { position: absolute; top: -120px; right: -100px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 68%); pointer-events: none; }
.premium .glow-b { position: absolute; bottom: -150px; left: -80px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(255,255,255,0.10), transparent 68%); pointer-events: none; }
.premium .mesh { position:absolute; inset:0; opacity:.5; background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px); background-size: 40px 40px; mask-image: radial-gradient(ellipse 70% 90% at 85% 50%, #000, transparent 70%); -webkit-mask-image: radial-gradient(ellipse 70% 90% at 85% 50%, #000, transparent 70%); }
.premium-inner { position: relative; z-index: 2; display: grid; grid-template-columns: auto 1fr auto; gap: 36px; align-items: center; }
.premium-text { min-width: 0; }
.premium-cta { white-space: nowrap; flex: 0 0 auto; }
.premium-badge { width: 84px; height: 84px; border-radius: 50%; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.32); display:flex; align-items:center; justify-content:center; flex:0 0 auto; backdrop-filter: blur(4px); }
.premium-badge svg { width: 40px; height: 40px; color: #fff; }
.premium .pk { font-family: var(--font-mono); color: rgba(255,255,255,0.86); font-size: 12px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 12px; }
.premium h3 { color: #fff; font-size: clamp(24px, 2.6vw, 31px); line-height: 1.16; margin-bottom: 14px; letter-spacing: -0.02em; max-width: none; text-wrap: balance; }
.premium p { color: rgba(255,255,255,0.92); font-size: 16px; line-height: 1.55; margin-bottom: 0; max-width: none; }

/* ---------- CALCULATOR ---------- */
.calc-section { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%); padding-top: calc(24px * var(--density)); }
.calc-card {
  background: var(--ink-0); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-lg);
  max-width: 1000px; margin: 48px auto 0; overflow: hidden; color: #EAF3EE;
  box-shadow: 0 50px 110px -45px rgba(0,0,0,0.65), 0 0 0 1px rgba(47,230,168,0.05);
}
.calc-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; }
.calc-inputs { padding: 40px; }
.calc-inputs h3 { color: #fff; font-size: 22px; margin-bottom: 8px; letter-spacing: -0.01em; }
.calc-sub { color: #93ABA0; font-size: 15px; line-height: 1.5; margin-bottom: 26px; }
.calc-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.calc-field { display: flex; flex-direction: column; gap: 8px; }
.calc-field label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; color: #82998D; font-weight: 500; }
.calc-card input { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.13); color: #fff; padding: 13px 15px; border-radius: var(--r-sm); font-size: 16px; font-family: var(--font-body); width: 100%; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.calc-card input:focus { outline: none; border-color: var(--neon); box-shadow: 0 0 0 3px rgba(47,230,168,0.16); }
.calc-output { position: relative; overflow: hidden; padding: 40px; background: linear-gradient(160deg, #0d2c21, #06120e 72%); border-left: 1px solid rgba(255,255,255,0.07); display: flex; flex-direction: column; justify-content: center; }
.co-glow { position: absolute; top: -50px; right: -70px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(47,230,168,0.22), transparent 66%); pointer-events: none; animation: breathe 7s var(--ease) infinite; }
.calc-output > *:not(.co-glow) { position: relative; z-index: 2; }
.calc-output .rk { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--neon); font-weight: 500; margin-bottom: 12px; }
.calc-output .rn { font-family: var(--font-display); font-size: clamp(36px, 4.4vw, 52px); font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1.04; text-shadow: 0 0 46px rgba(47,230,168,0.5); transition: transform .25s var(--ease); }
.calc-output .rn.pulse { animation: rnPulse .45s var(--ease); }
@keyframes rnPulse { 0%{ transform: scale(1); } 42%{ transform: scale(1.045); } 100%{ transform: scale(1); } }
.calc-output .rsub { font-size: 15px; color: #9DB6AB; margin-top: 8px; }
.calc-output .rmonth { margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 14.5px; color: #9DB6AB; }
.calc-output .rmonth b { color: #fff; }
.calc-foot { padding: 28px 40px 34px; border-top: 1px solid rgba(255,255,255,0.07); text-align: center; }
.co-cta { background: var(--neon); color: #06140F; box-shadow: 0 0 34px -4px rgba(47,230,168,0.55); }
.co-cta:hover { transform: translateY(-2px); box-shadow: 0 0 46px -2px rgba(47,230,168,0.72); }
.calc-note { margin: 18px auto 0; font-size: 14px; color: #6f8a7e; text-align: center; line-height: 1.55; max-width: 680px; }
.calc-note a { color: var(--neon); }
.modal-form input, .modal-form select {
  background: var(--bg); border: 1px solid var(--border-strong); color: var(--text);
  padding: 13px 15px; border-radius: var(--r-sm); font-size: 16px; font-family: var(--font-body);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.modal-form input:focus, .modal-form select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
@media (max-width: 820px) {
  .calc-grid { grid-template-columns: 1fr; }
  .calc-output { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); }
}

/* ---------- ABOUT / MANAGED SERVICES ---------- */
.about-grid { display: grid; grid-template-columns: 1.08fr 1fr; gap: 56px; align-items: start; margin-top: 40px; }
.about-bullets { display: flex; flex-direction: column; gap: 13px; margin: 24px 0 32px; }
.about-bullets li { list-style: none; position: relative; padding-left: 30px; font-size: 16px; color: var(--text); line-height: 1.55; }
.about-bullets li svg { position: absolute; left: 0; top: 3px; width: 18px; height: 18px; color: var(--accent); }
.about-bullets li b { color: var(--text); font-weight: 700; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gstat { background: var(--accent); color: #fff; border-radius: var(--r-md); padding: 22px; position: relative; overflow: hidden; }
.gstat::before { content:''; position:absolute; top:-30px; right:-30px; width:90px; height:90px; background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%); }
.gstat.wide { grid-column: span 2; display: flex; align-items: center; justify-content: center; text-align: left; gap: 16px; }
.gstat .gn { font-family: var(--font-display); font-size: 30px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.gstat.wide .gn { font-size: 42px; }
.gstat .gl { font-size: 15px; opacity: .9; line-height: 1.4; margin-top: 6px; }
.gstat.wide .gl { margin-top: 0; }
.gstat.center { text-align: center; }

/* ---------- DIAGNOSTIC CTA ---------- */
.diag { text-align: center; position: relative; overflow: hidden; }
.diag::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 60% 60% at 50% 30%, var(--accent-soft), transparent 70%); pointer-events:none; }
.diag .wrap { position: relative; z-index: 2; }
.diag .shead { margin: 0 auto; }
.diag-note { margin-top: 16px; font-size: 14.5px; color: var(--text-dim); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 860px; margin: 46px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; padding: 22px 4px; font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--text); letter-spacing: -0.01em; list-style: none; transition: color .2s var(--ease); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-sign { width: 24px; height: 24px; flex:0 0 auto; position: relative; }
.faq-sign::before, .faq-sign::after { content:''; position:absolute; background: var(--accent); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.faq-sign::before { left: 50%; top: 4px; bottom: 4px; width: 2px; transform: translateX(-50%); }
.faq-sign::after { top: 50%; left: 4px; right: 4px; height: 2px; transform: translateY(-50%); }
.faq-item[open] .faq-sign::before { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-item[open] .faq-sign::after { transform: translateY(-50%) rotate(180deg); }
.faq-body { overflow: hidden; }
.faq-item p { padding: 0 4px 24px; margin: 0; color: var(--text-mute); font-size: 15px; line-height: 1.7; max-width: 760px; }

/* ---------- FINAL CTA (green) ---------- */
.final-cta { padding: 46px; border-radius: var(--r-lg); background: linear-gradient(135deg, var(--accent), var(--accent-hover)); display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; position: relative; overflow: hidden; }
.final-cta .glow { position:absolute; top:-100px; right:-60px; width:300px; height:300px; background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%); pointer-events:none; }
.final-cta .fk { font-family: var(--font-mono); color: rgba(255,255,255,0.82); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 8px; }
.final-cta .ft { font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 28px); font-weight: 700; color: #fff; line-height: 1.2; letter-spacing: -0.02em; }
.final-cta .fs { color: rgba(255,255,255,0.86); font-size: 15.5px; margin-top: 8px; }
.final-cta .fc { position: relative; z-index: 2; flex: 1; min-width: 280px; }
.final-cta .btn { position: relative; z-index: 2; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--bg-ink); color: #fff; padding: 64px 0 44px; border-top: 1px solid var(--border); }
.site-footer .wrap { text-align: center; }
.site-footer .foot-logo { height: 28px; width: auto; margin: 0 auto 22px; filter: brightness(0) invert(1); opacity: .92; }
.trust-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin: 28px 0; }
.trust-item { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; color: rgba(255,255,255,0.72); padding: 9px 16px; border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-pill); }
.trust-item svg { width: 15px; height: 15px; color: var(--accent-bright); }
.foot-copy { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.6; max-width: 760px; margin: 0 auto; }
.foot-copy a { color: var(--accent-bright); }
.foot-fine { color: rgba(255,255,255,0.32); font-size: 11px; margin-top: 10px; }

/* ---------- MODAL ---------- */
.modal-overlay { position: fixed; inset: 0; background: rgba(8,16,12,0.55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; opacity: 0; transition: opacity .25s var(--ease); }
.modal-overlay.active { display: flex; opacity: 1; }
.modal-box { background: #fff; border-radius: var(--r-lg); padding: 40px; max-width: 520px; width: 100%; max-height: 92vh; overflow-y: auto; box-shadow: var(--sh-soft); position: relative; transform: translateY(16px) scale(.98); transition: transform .3s var(--ease-out); }
.modal-overlay.active .modal-box { transform: translateY(0) scale(1); }
.modal-close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; background: none; border: none; cursor: pointer; border-radius: var(--r-sm); display:flex; align-items:center; justify-content:center; color: var(--text-mute); transition: background .2s var(--ease), color .2s var(--ease); }
.modal-close:hover { background: var(--bg-elev); color: var(--text); }
.modal-close svg { width: 20px; height: 20px; }
.modal-kicker { font-family: var(--font-mono); color: var(--accent); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 10px; }
.modal-box h3 { font-size: 23px; line-height: 1.2; margin-bottom: 8px; letter-spacing: -0.02em; }
.modal-sub { font-size: 15px; color: var(--text-mute); margin-bottom: 24px; }
.modal-form { display: flex; flex-direction: column; gap: 14px; }
.modal-form .field { display: flex; flex-direction: column; gap: 6px; }
.modal-form label { font-size: 12px; font-weight: 600; color: var(--text); }
.modal-form .field-err { font-size: 12px; color: #c0392b; min-height: 0; line-height: 1.3; display: none; }
.modal-form .field-err.show { display: block; margin-top: 2px; }
.modal-form input.invalid { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192,57,43,0.12); }
.modal-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal-submit { background: var(--accent); color: #fff; border: none; padding: 16px 24px; border-radius: var(--r-sm); font-family: var(--font-display); font-size: 15px; font-weight: 600; cursor: pointer; transition: background .2s var(--ease), transform .2s var(--ease); margin-top: 6px; display:flex; align-items:center; justify-content:center; gap:8px; }
.modal-submit:hover { background: var(--accent-hover); transform: translateY(-1px); }
.modal-privacy { font-size: 11px; color: var(--text-dim); text-align: center; margin-top: 8px; line-height: 1.45; }
.modal-success { display: none; text-align: center; padding: 20px 10px; }
.modal-success.active { display: block; }
.modal-success .ok { width: 64px; height: 64px; background: var(--accent-soft); border-radius: 50%; display:flex; align-items:center; justify-content:center; margin: 0 auto 18px; }
.modal-success .ok svg { width: 30px; height: 30px; color: var(--accent); }
.modal-success h3 { margin-bottom: 8px; }
.modal-success p { color: var(--text-mute); font-size: 15px; line-height: 1.55; }
.modal-success p + p { margin-top: 12px; }
.modal-success p a { color: var(--accent); font-weight: 600; }

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); transition-delay: var(--d, 0ms); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .vert-grid { grid-template-columns: repeat(3, 1fr); }
  .cases { grid-template-columns: repeat(2, 1fr); }
  .case.span3, .case.span2 { grid-column: auto; }
}
@media (max-width: 920px) {
  :root { --gutter: 24px; }
  .hero-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-mock { max-width: 520px; }
  .pillars { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .site-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .premium-inner { grid-template-columns: 1fr; gap: 24px; }
  .premium-badge { display: none; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 680px) {
  .vert-grid { grid-template-columns: 1fr 1fr; }
  .badge > span:last-child { white-space: normal; overflow: visible; }
  .benefit-grid, .stat-grid, .cases, .calc-fields, .about-stats { grid-template-columns: 1fr; }
  .bigstat:not(:last-child)::after { display: none; }
  .stat-grid { gap: 40px; }
  .cta-inline, .final-cta { flex-direction: column; align-items: flex-start; }
  .modal-form .row-2 { grid-template-columns: 1fr; }
  .gstat.wide { grid-column: auto; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .premium { padding: 40px 28px; }
  .calc-card { padding: 28px 22px; }
}
@media (max-width: 460px) {
  .vert-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
}

/* =====================================================================
   IMPACT LAYER · dark command-center hero, high-contrast bands,
   animated icons, live telemetry mock, richer motion
   ===================================================================== */
:root {
  --ink-0: #06100C;
  --ink-1: #0A1813;
  --ink-2: #0F231B;
  --ink-line: #1C3A30;
  --neon: #2FE6A8;          /* bright tech green for glow accents */
  --neon-dim: #19B583;
}

/* ---- richer reveal default (blur + scale) ---- */
.reveal { opacity: 0; transform: translateY(30px) scale(.985); filter: blur(6px); transition: opacity .75s var(--ease-out), transform .75s var(--ease-out), filter .75s var(--ease-out); transition-delay: var(--d, 0ms); }
.reveal.in { opacity: 1; transform: none; filter: none; }
@media (prefers-reduced-motion: reduce) { .reveal { filter: none !important; } }

/* ---- animated draw-in icons ---- */
.ic.draw > * { stroke-dasharray: 240; stroke-dashoffset: 240; }
.reveal.in .ic.draw > * { animation: drawIn 1.1s var(--ease-out) forwards; animation-delay: calc(var(--di, 0ms) + 220ms); }
@keyframes drawIn { to { stroke-dashoffset: 0; } }
.chip:nth-child(1) .draw { --di: 0ms; } .chip:nth-child(2) .draw { --di: 90ms; }
.chip:nth-child(3) .draw { --di: 180ms; } .chip:nth-child(4) .draw { --di: 270ms; }
.chip:nth-child(5) .draw { --di: 360ms; }
@media (prefers-reduced-motion: reduce) { .ic.draw > * { stroke-dashoffset: 0; } }

/* icon hover liveliness on cards */
.vert-card:hover .vert-ic svg, .benefit:hover .benefit-ic svg, .pillar:hover .pillar-ic svg { animation: iconPop .5s var(--ease); }
@keyframes iconPop { 0%{transform:scale(1)} 35%{transform:scale(1.18) rotate(-4deg)} 100%{transform:scale(1)} }
.vert-ic svg, .benefit-ic svg, .pillar-ic svg { transition: transform .3s var(--ease); }

/* =====================  DARK HERO  ===================== */
.hero-dark { background: var(--ink-0); color: #EAF3EE; padding-top: 96px; padding-bottom: calc(110px * var(--density)); }
.hero-dark .hero-aura { display: none; }
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }

/* ---- cinematic video hero ---- */
.hero-cine { min-height: 92vh; display: flex; align-items: center; padding-top: 118px; padding-bottom: calc(90px * var(--density)); }
.hero-cine .wrap { width: 100%; }
.hero-cine .hero-grid { grid-template-columns: 1fr; }
.hero-cine .hero-copy { max-width: 768px; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; filter: saturate(1.05) contrast(1.02); }
.hero-scrim { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(95deg, rgba(5,14,11,0.96) 0%, rgba(5,14,11,0.84) 32%, rgba(5,14,11,0.42) 62%, rgba(5,14,11,0.60) 100%),
  linear-gradient(0deg, var(--ink-0) 1%, rgba(5,14,11,0.12) 30%, transparent 52%),
  linear-gradient(180deg, rgba(5,14,11,0.6) 0%, transparent 24%); }
.hero-cine .hb-glow { z-index: 1; mix-blend-mode: screen; opacity: .55; animation-duration: 9s; }
@media (max-width: 920px) {
  .hero-cine { min-height: auto; padding-top: 104px; padding-bottom: calc(72px * var(--density)); }
  .hero-scrim { background:
    linear-gradient(0deg, var(--ink-0) 2%, rgba(5,14,11,0.35) 36%, rgba(5,14,11,0.55) 100%),
    linear-gradient(180deg, rgba(5,14,11,0.6) 0%, rgba(5,14,11,0.3) 100%); }
}

.hb-grid { position: absolute; inset: -2px; background-image: linear-gradient(var(--ink-line) 1px, transparent 1px), linear-gradient(90deg, var(--ink-line) 1px, transparent 1px); background-size: 54px 54px; opacity: .5; mask-image: radial-gradient(ellipse 90% 75% at 65% 25%, #000 0%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse 90% 75% at 65% 25%, #000 0%, transparent 75%); animation: gridDrift 24s linear infinite; }
@keyframes gridDrift { to { background-position: 54px 54px; } }
.hb-glow { position: absolute; top: -200px; right: -120px; width: 760px; height: 760px; border-radius: 50%; background: radial-gradient(circle at center, rgba(47,230,168,0.18), rgba(0,148,109,0.08) 36%, transparent 66%); filter: blur(10px); animation: breathe 8s var(--ease) infinite; }
.hb-glow2 { top: auto; bottom: -300px; right: auto; left: -200px; width: 620px; height: 620px; background: radial-gradient(circle at center, rgba(0,148,109,0.14), transparent 64%); animation-delay: -3s; }
@keyframes breathe { 0%,100%{ transform: scale(1); opacity:.85 } 50%{ transform: scale(1.12); opacity:1 } }
.hb-scan { position: absolute; left: 0; right: 0; height: 180px; top: 0; background: linear-gradient(180deg, transparent, rgba(47,230,168,0.05), transparent); animation: scanDown 7s linear infinite; }
@keyframes scanDown { 0%{ transform: translateY(-200px) } 100%{ transform: translateY(120vh) } }

.hero-dark h1 { color: #FFFFFF; }
.hero-dark .accent { color: var(--neon); }
.gleam { background: linear-gradient(100deg, var(--neon) 20%, #9CFFD9 38%, var(--neon) 56%); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: gleam 5s linear infinite; text-shadow: 0 0 38px rgba(47,230,168,0.25); }
@keyframes gleam { to { background-position: 200% 0; } }
.hero-dark .lead { color: #A9C2B7; }
.hero-dark .lead b { color: #EAF3EE; }

.badge-live { background: rgba(255,255,255,0.05); border-color: rgba(47,230,168,0.28); color: #BFD6CB; backdrop-filter: blur(6px); }
.badge-live .dot { background: var(--neon); box-shadow: 0 0 0 4px rgba(47,230,168,0.16), 0 0 12px var(--neon); }
.badge-live .dot::after { background: var(--neon); }

.hero-dark .chip { background: rgba(7,17,13,0.6); border-color: rgba(255,255,255,0.18); color: #F1F8F4; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.hero-dark .chip svg { color: var(--neon); }
.hero-dark .chip:hover { border-color: rgba(47,230,168,0.4); background: rgba(47,230,168,0.08); }

.btn-glow { box-shadow: 0 0 0 1px rgba(47,230,168,0.3), 0 8px 30px -6px rgba(47,230,168,0.5); }
.btn-glow:hover { box-shadow: 0 0 0 1px rgba(47,230,168,0.5), 0 14px 40px -6px rgba(47,230,168,0.65); }
.btn-ghost-dark { background: rgba(255,255,255,0.04); color: #EAF3EE; border: 1px solid rgba(255,255,255,0.16); }
.btn-ghost-dark:hover { border-color: var(--neon); color: var(--neon); background: rgba(47,230,168,0.07); }

.metric-glass { background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.09); backdrop-filter: blur(8px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.05); }
.metric-glass .ms-label { color: #8BA89C; }
.metric-glass .ms-label svg { color: var(--neon); }
.metric-glass .metric .mv { color: var(--neon); text-shadow: 0 0 22px rgba(47,230,168,0.35); }
.metric-glass .metric .mk { color: #9DB6AB; }
.metric-glass .metric::before { background: linear-gradient(var(--neon), transparent); }

/* =====================  COMMAND-CENTER MOCK (dark)  ===================== */
.hero-dark .mock-window { background: #0B1A14; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 40px 100px -30px rgba(0,0,0,0.8), 0 0 0 1px rgba(47,230,168,0.06), 0 0 60px -10px rgba(47,230,168,0.15); }
.hero-dark .mock-bar { background: #0E2018; border-bottom: 1px solid rgba(255,255,255,0.07); }
.hero-dark .mock-bar .tl { background: #2a4339; }
.hero-dark .mock-bar .addr { color: #6f8d80; }
.hero-dark .mock-bar .addr b { color: var(--neon); font-weight: 600; }
.mock-status { margin-left: auto; font-family: var(--font-mono); font-size: 10px; color: #8BA89C; display: flex; align-items: center; gap: 6px; }
.ms-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 8px var(--neon); animation: ping 2s infinite; }
.hero-dark .mock-body { background: rgba(255,255,255,0.06); }
.hero-dark .mock-map { background: #081511; }
.mm-grid { opacity: .6; }
.mm-tag { position: absolute; left: 10px; bottom: 10px; font-family: var(--font-mono); font-size: 9px; letter-spacing: .08em; color: #cfeede; background: rgba(8,21,17,0.8); border: 1px solid rgba(47,230,168,0.25); padding: 4px 8px; border-radius: 5px; }
#route { stroke-dasharray: 6 0; filter: drop-shadow(0 0 4px rgba(47,230,168,0.6)); }
.hero-dark .mock-side { background: #0B1A14; }
.hero-dark .mock-vid { background: linear-gradient(135deg, #0c2a20, #06120e); border-bottom: 1px solid rgba(255,255,255,0.07); }
.mock-scan { position: absolute; left: 0; right: 0; top: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(47,230,168,0.8), transparent); box-shadow: 0 0 10px var(--neon); animation: vscan 3.2s linear infinite; }
@keyframes vscan { 0%{ top: 0; opacity:0 } 12%{opacity:1} 88%{opacity:1} 100%{ top: 100%; opacity:0 } }
.hero-dark .mock-vid .play { background: rgba(47,230,168,0.95); box-shadow: 0 0 26px rgba(47,230,168,0.6); }
.hero-dark .mock-vid .play svg { color: #06140F; }
.ai-box { position: absolute; left: 10px; bottom: 10px; }
.ai-label { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .06em; color: var(--neon); border: 1px solid rgba(47,230,168,0.4); border-radius: 4px; padding: 3px 6px; background: rgba(6,18,14,0.6); }
.ai-label::before { content:''; display:inline-block; width:5px; height:5px; border-radius:50%; background:var(--neon); margin-right:5px; vertical-align: 1px; box-shadow: 0 0 6px var(--neon); }
.hero-dark .mock-row .ic { background: rgba(47,230,168,0.10); }
.hero-dark .mock-row .ic svg { color: var(--neon); }
.hero-dark .mock-row .val { color: #EAF3EE; }
.hero-dark .mock-row .val small { font-size: 9px; color: #7f9a8d; margin-left: 1px; }
.eq { display: flex; align-items: flex-end; gap: 3px; height: 16px; }
.eq i { width: 3px; background: var(--neon); border-radius: 2px; opacity: .85; animation: eq 1s ease-in-out infinite; }
.eq i:nth-child(1){animation-delay:0s;height:40%}.eq i:nth-child(2){animation-delay:.12s;height:75%}.eq i:nth-child(3){animation-delay:.24s;height:55%}.eq i:nth-child(4){animation-delay:.36s;height:90%}.eq i:nth-child(5){animation-delay:.48s;height:60%}.eq i:nth-child(6){animation-delay:.6s;height:45%}
@keyframes eq { 0%,100%{ transform: scaleY(.5) } 50%{ transform: scaleY(1) } }
.bar { height: 6px; border-radius: 4px; background: rgba(255,255,255,0.08); overflow: hidden; }
.bar span { display: block; height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--neon-dim), var(--neon)); box-shadow: 0 0 10px rgba(47,230,168,0.5); }
.hero-dark .mock-float { background: #0E2018; border: 1px solid rgba(47,230,168,0.25); box-shadow: 0 18px 50px -16px rgba(0,0,0,0.7), 0 0 40px -10px rgba(47,230,168,0.3); animation: floatY 5s var(--ease) infinite; }
@keyframes floatY { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-9px) } }
.hero-dark .mock-float .badge-ic { background: var(--neon); }
.hero-dark .mock-float .badge-ic svg { color: #06140F; }
.hero-dark .mock-float .mf-v { color: #fff; }
.hero-dark .mock-float .mf-k { color: #9DB6AB; }

/* =====================  DARK STAT BAND  ===================== */
.statband.dark { background: var(--ink-0); border-color: rgba(255,255,255,0.06); position: relative; overflow: hidden; }
.statband.dark::before { content:''; position:absolute; inset:0; background-image: linear-gradient(var(--ink-line) 1px, transparent 1px), linear-gradient(90deg, var(--ink-line) 1px, transparent 1px); background-size: 60px 60px; opacity:.35; mask-image: radial-gradient(ellipse 70% 100% at 50% 50%, #000, transparent 72%); -webkit-mask-image: radial-gradient(ellipse 70% 100% at 50% 50%, #000, transparent 72%); }
.statband.dark .wrap { position: relative; z-index: 2; }
.statband.dark .kicker { color: var(--neon); }
.statband.dark h2 { color: #fff; }
.statband.dark .bigstat .n { color: var(--neon); text-shadow: 0 0 40px rgba(47,230,168,0.35); }
.statband.dark .bigstat .l { color: #A9C2B7; }
.statband.dark .bigstat:not(:last-child)::after { background: rgba(255,255,255,0.10); }

/* =====================  DARK FINAL CTA  ===================== */
.final-cta.dark { background: var(--ink-0); border: 1px solid rgba(47,230,168,0.22); overflow: hidden; box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6), inset 0 0 60px -20px rgba(47,230,168,0.2); }
.final-cta.dark::before { content:''; position:absolute; inset:0; pointer-events:none; background-image: linear-gradient(var(--ink-line) 1px, transparent 1px), linear-gradient(90deg, var(--ink-line) 1px, transparent 1px); background-size: 48px 48px; opacity:.4; mask-image: radial-gradient(ellipse 80% 120% at 80% 50%, #000, transparent 70%); -webkit-mask-image: radial-gradient(ellipse 80% 120% at 80% 50%, #000, transparent 70%); }
.final-cta.dark .glow { background: radial-gradient(circle, rgba(47,230,168,0.22), transparent 70%); }
.final-cta.dark .fk { color: var(--neon); }
.final-cta.dark .ft { color: #fff; }
.final-cta.dark .fs { color: #A9C2B7; }
.final-cta.dark .btn-white { background: var(--neon); color: #06140F; box-shadow: 0 0 30px -4px rgba(47,230,168,0.6); }

/* section top accent line for contrast between bands */
.statband.dark, .final-cta.dark { position: relative; }
.edge-top { position: relative; }
.edge-top::after { content:''; position:absolute; top:0; left:50%; transform:translateX(-50%); width: 160px; height: 2px; background: linear-gradient(90deg, transparent, var(--neon), transparent); }

@media (max-width: 920px) {
  .hero-dark .mock-float { right: 8px; bottom: -14px; }
  .hb-scan { display: none; }
}

/* generic dark section (cases) */
.dark-sec { background: var(--ink-0); color: #EAF3EE; position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.dark-sec::before { content:''; position:absolute; inset:0; background-image: linear-gradient(var(--ink-line) 1px, transparent 1px), linear-gradient(90deg, var(--ink-line) 1px, transparent 1px); background-size: 60px 60px; opacity:.3; mask-image: radial-gradient(ellipse 80% 90% at 30% 0%, #000, transparent 72%); -webkit-mask-image: radial-gradient(ellipse 80% 90% at 30% 0%, #000, transparent 72%); pointer-events:none; }
.dark-sec .wrap { position: relative; z-index: 2; }
.dark-sec .kicker { color: var(--neon); }
.dark-sec h2, .dark-sec .accent { color: #fff; }
.dark-sec .accent { color: var(--neon); }
.dark-sec .case { background: rgba(255,255,255,0.035); border-color: rgba(255,255,255,0.09); }
.dark-sec .case:hover { border-color: rgba(47,230,168,0.4); box-shadow: 0 26px 60px -24px rgba(0,0,0,0.75), 0 0 46px -12px rgba(47,230,168,0.28); }
.dark-sec .case .cn { color: var(--neon); text-shadow: 0 0 34px rgba(47,230,168,0.32); }
.dark-sec .case .cn.pos { color: #7CF0C2; }
.dark-sec .case .cc { color: var(--neon); }
.dark-sec .case .cd { color: #C9DBD2; }
.dark-sec .case .cv { color: #82998d; border-top-color: rgba(255,255,255,0.08); }
.dark-sec .case::after { background: var(--neon); }

/* remove the small accent dash before centered section kickers */
.shead.center .kicker::before { display: none; }

/* ---- results band (below hero) ---- */
/* ---- results band: slim horizontal strip ---- */
.results-band { position: relative; overflow: hidden; padding: calc(28px * var(--density)) 0; background: linear-gradient(90deg, var(--bg-elev), #edf3ef 50%, var(--bg-elev)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.results-band::before { content: ''; position: absolute; top: -60%; bottom: -60%; left: -25%; width: 45%; background: radial-gradient(closest-side, rgba(0,148,109,0.16), transparent 70%); filter: blur(24px); animation: rbDrift 14s ease-in-out infinite alternate; pointer-events: none; }
@keyframes rbDrift { from { transform: translateX(-10%); } to { transform: translateX(320%); } }
.results-band > .wrap { position: relative; z-index: 2; }
@media (prefers-reduced-motion: reduce) { .results-band::before { animation: none; } }
.rb-eyebrow { display: flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 16px; text-align: center; }
.rb-grid { display: grid; grid-template-columns: repeat(4, 1fr); align-items: start; }
.rb-item { text-align: center; padding: 0 16px; }
.rb-num { font-family: var(--font-display); font-size: clamp(26px, 2.5vw, 32px); font-weight: 800; color: var(--accent); letter-spacing: -0.03em; line-height: 1; }
.rb-label { font-size: 15px; color: var(--text-mute); margin-top: 7px; text-wrap: balance; }
@media (max-width: 760px) { .rb-grid { grid-template-columns: 1fr 1fr; gap: 20px 0; } }
@media (max-width: 430px) { .rb-grid { grid-template-columns: 1fr; gap: 14px; } }

/* ---- hero status HUD tag (replaces live badge) ---- */
.hero-status { display: inline-flex; align-items: stretch; margin-bottom: 28px; border: 1px solid rgba(255,255,255,0.14); border-radius: 9px; overflow: hidden; background: rgba(6,16,12,0.55); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: 0 8px 24px -10px rgba(0,0,0,0.6); max-width: 100%; }
.hs-live { display: inline-flex; align-items: center; gap: 8px; background: var(--neon); color: #06140F; font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .1em; padding: 9px 13px; white-space: nowrap; }
.hs-bars { display: inline-flex; align-items: flex-end; gap: 2px; height: 11px; }
.hs-bars i { width: 2.5px; background: #06140F; border-radius: 1px; opacity: .9; animation: eq 1s ease-in-out infinite; }
.hs-bars i:nth-child(1){ height: 40%; animation-delay: 0s; }
.hs-bars i:nth-child(2){ height: 70%; animation-delay: .15s; }
.hs-bars i:nth-child(3){ height: 100%; animation-delay: .3s; }
.hs-bars i:nth-child(4){ height: 60%; animation-delay: .45s; }
.hs-text { display: flex; align-items: center; white-space: nowrap; padding: 9px 15px; font-size: 13px; color: #C9DDD3; }
.hs-text b { color: #fff; font-weight: 600; margin-right: 6px; }
@media (max-width: 620px) {
  .hero-status { flex-direction: column; align-items: stretch; }
  .hs-live { justify-content: center; }
  .hs-text { white-space: normal; justify-content: center; text-align: center; font-size: 12px; padding: 8px 14px; }
}

/* ---- WhatsApp float button ---- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 900;
  width: 62px; height: 62px; border-radius: 50%; border: 0; cursor: pointer;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -6px rgba(18, 140, 76, 0.55);
  transition: transform .2s ease, box-shadow .2s ease;
  animation: waBlink 2.4s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 36px -6px rgba(18, 140, 76, 0.7); animation-play-state: paused; }
.wa-float svg { width: 32px; height: 32px; fill: #fff; stroke: none; position: relative; z-index: 1; }
.wa-ping { position: absolute; inset: 0; border-radius: 50%; background: #25D366; animation: waPing 2.4s ease-out infinite; pointer-events: none; }
@keyframes waPing { 0% { transform: scale(1); opacity: .55; } 70%, 100% { transform: scale(1.7); opacity: 0; } }
@keyframes waBlink { 0%, 100% { background: #25D366; } 50% { background: #1FBF5B; } }
@media (max-width: 620px) { .wa-float { right: 14px; bottom: 14px; width: 56px; height: 56px; } .wa-float svg { width: 29px; height: 29px; } }
@media (prefers-reduced-motion: reduce) { .wa-float, .wa-ping { animation: none; } }

/* ---- WhatsApp continue button (modal success) ---- */
.wa-continue { margin-top: 18px; background: #25D366 !important; }
.wa-continue:hover { background: #1FBF5B !important; }
.wa-continue .ic { width: 18px; height: 18px; }

/* =====================================================================
   MOBILE OVERFLOW FIXES · textos e CTAs cortando em telas pequenas
   ===================================================================== */
/* guard movido: overflow real corrigido elemento a elemento */

@media (max-width: 920px) {
  /* o nowrap inline do destaque do H1 estoura a largura do body no mobile */
  .hero h1 .accent { white-space: normal !important; }
}

@media (max-width: 560px) {
  .site-header .wrap { gap: 10px; }
  .brand { flex: 1 1 auto; min-width: 0; max-width: 48vw; }
  .brand img { max-width: 100%; height: auto; }
  .nav-toggle { padding: 9px 13px; font-size: 13px; white-space: nowrap; flex-shrink: 0; }
  .hero-status { max-width: 100%; }
  .hs-text { white-space: normal; }
  .hero h1 { font-size: clamp(30px, 9vw, 38px); }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}

@media (max-width: 680px) {
  /* CTAs longos: deixa o texto quebrar em vez de cortar na tela */
  .btn { white-space: normal; max-width: 100%; text-align: center; }
  .nav-toggle { white-space: nowrap; }
  .premium-cta { white-space: normal; }
  .premium-inner > * { min-width: 0; }
  .premium { overflow: hidden; }
  .co-cta, .calc-foot .btn { width: 100%; }
  .cta-inline .btn { width: 100%; justify-content: center; }
  .final-cta .btn { width: 100%; justify-content: center; }
}

@media (max-width: 680px) {
  .btn-xl { padding: 18px 22px; }
  .btn-lg { padding-left: 22px; padding-right: 22px; }
}

@media (max-width: 380px) {
  /* telas muito estreitas (320-380px): reduz paddings pra nada cortar */
  .final-cta { padding: 32px 22px; }
  .final-cta .fc { min-width: 0; }
  .benefit { padding-left: 18px; padding-right: 18px; }
  .premium { padding: 32px 20px; }
  .calc-card { padding: 24px 16px; }
}

/* ---- Modal: blindagem contra corte lateral dos campos ---- */
.modal-box { overflow-x: hidden; }
.modal-form input, .modal-form select { min-width: 0; width: 100%; box-sizing: border-box; }
.modal-form .row-2 > .field { min-width: 0; }
@media (max-width: 768px) {
  .modal-form .row-2 { grid-template-columns: 1fr; }
  .modal-box { padding: 28px 22px; }
}
