@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@500;600;700;800&family=Karla:wght@400;500;600;700;800&display=swap");

:root {
  --bg-950:   #07090f;
  --bg-900:   #0b0f1a;
  --bg-800:   #111826;
  --bg-700:   #19243a;
  --bg-600:   #223050;

  --amber:     #ff6b35;
  --amber-dim: #cc5228;
  --amber-glow: rgba(255, 107, 53, .22);

  --green:     #00d97e;
  --green-dim: #00a85e;
  --green-glow: rgba(0, 217, 126, .2);

  --blue:      #4a9eff;
  --blue-dim:  #2478d4;

  --white:   #ffffff;
  --text-1:  #e8edf5;
  --text-2:  #8a96aa;
  --text-3:  #5a6577;

  --border:       rgba(255, 255, 255, .07);
  --border-mid:   rgba(255, 255, 255, .12);
  --border-hi:    rgba(255, 255, 255, .22);

  --card-bg:      rgba(255, 255, 255, .04);
  --card-bg-hi:   rgba(255, 255, 255, .07);

  --shadow-sm:  0 4px 16px rgba(0,0,0,.4);
  --shadow-md:  0 12px 36px rgba(0,0,0,.5);
  --shadow-lg:  0 24px 64px rgba(0,0,0,.6);
  --shadow-amber: 0 20px 52px rgba(255, 107, 53, .28);
  --shadow-green: 0 16px 40px rgba(0, 217, 126, .24);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --space-page: clamp(18px, 5vw, 76px);

  --font-display: "Barlow Semi Condensed", "Segoe UI", sans-serif;
  --font-body:    "Karla", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text-1);
  background: var(--bg-950);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

/* Subtle grid texture on the body */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { overflow-wrap: anywhere; }

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes reveal-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  animation: reveal-up .6s cubic-bezier(.22,1,.36,1) both;
}

.reveal-d1 { animation-delay: .1s; }
.reveal-d2 { animation-delay: .2s; }
.reveal-d3 { animation-delay: .3s; }
.reveal-d4 { animation-delay: .45s; }

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 12px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1520px, calc(100% - 40px));
  margin: 12px auto 0;
  padding: 11px 14px 11px 20px;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-xl);
  background: rgba(11, 15, 26, .88);
  box-shadow: 0 8px 40px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(24px) saturate(160%);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 220px;
}

.brand-logo {
  display: block;
  width: clamp(200px, 17vw, 290px);
  height: auto;
  max-height: 58px;
  background: transparent;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: wrap;
}

.main-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 9px 15px;
  border-radius: var(--radius-md);
  color: var(--text-2);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  transition: color .16s, background .16s;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--text-1);
  background: var(--card-bg-hi);
}

.main-nav .nav-cta {
  color: var(--bg-950);
  background: var(--green);
  font-weight: 800;
  box-shadow: 0 8px 24px var(--green-glow);
}

.main-nav .nav-cta:hover {
  color: var(--bg-950);
  background: var(--green-dim);
  transform: translateY(-1px);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  width: min(1540px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 88px) clamp(20px, 4vw, 52px) clamp(40px, 5vw, 64px);
}

.hero-consumer {
  position: relative;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  overflow: hidden;
}

.hero-fleet {
  width: 100%;
  max-width: none;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  background:
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(255,107,53,.14), transparent),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(74,158,255,.1), transparent),
    var(--bg-900);
}

.hero-copy-block {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--amber);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(52px, 5.5vw, 92px);
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: .92;
  color: var(--white);
}

h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.05;
  color: var(--white);
}

h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.15;
  color: var(--text-1);
}

.hero-copy {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--text-2);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 20px;
  border: 0;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .01em;
  transition: transform .18s cubic-bezier(.22,1,.36,1), box-shadow .18s, background .18s, opacity .18s;
}

.btn::after {
  content: "→";
  font-weight: 900;
  transition: transform .18s;
}

.btn:hover::after { transform: translateX(3px); }
.btn:hover { transform: translateY(-2px); }

.btn.primary {
  color: var(--bg-950);
  background: var(--green);
  box-shadow: 0 14px 30px var(--green-glow);
}

.btn.primary:hover {
  background: var(--green-dim);
  box-shadow: 0 18px 38px var(--green-glow);
}

.btn.secondary {
  color: var(--text-1);
  background: var(--card-bg);
  border: 1px solid var(--border-mid);
}

.btn.secondary:hover {
  background: var(--card-bg-hi);
  border-color: var(--border-hi);
}

/* ─── HERO PROOF BADGES ──────────────────────────────────── */
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.hero-proof span {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-2);
  background: var(--card-bg);
  font-size: 13px;
  transition: border-color .2s;
}

.hero-proof span:hover { border-color: var(--border-mid); }

.hero-proof strong {
  display: block;
  color: var(--text-1);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .01em;
}

.hero-proof.dark span { /* fleet page — same as default in dark theme */ }

/* ─── CONTROL CENTER WIDGET ──────────────────────────────── */
.control-center,
.fleet-command {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-xl);
  background: var(--bg-800);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.06);
}

.control-center {
  transform: translateX(10px);
}

/* Top accent line */
.control-center::before,
.fleet-command::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent 60%);
  z-index: 2;
}

.panel-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.02);
}

.panel-top strong {
  flex: 1;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: .02em;
}

.panel-top small {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
}

/* GPS PING ANIMATION */
@keyframes gps-ping {
  0%   { box-shadow: 0 0 0 0 var(--green-glow); }
  50%  { box-shadow: 0 0 0 12px rgba(0,217,126,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,217,126,0); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  animation: gps-ping 2s ease-out infinite;
}

/* MAP AREA */
.route-map {
  position: relative;
  min-height: 275px;
  margin: 14px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background:
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(135deg, #0f1e38, #0a1628);
  background-size: 44px 44px, 44px 44px, auto;
}

.map-road, .fleet-route {
  position: absolute;
  height: 6px;
  border-radius: 999px;
  background: rgba(74,158,255,.3);
}

.road-a { left: 8%; top: 28%; width: 78%; transform: rotate(19deg); }
.road-b { left: 4%; top: 61%; width: 76%; transform: rotate(-17deg); }
.road-c {
  left: 45%; top: 12%;
  width: 6px; height: 76%;
  transform: rotate(22deg);
  background: rgba(255,107,53,.4);
}

@keyframes pin-float {
  0%, 100% { transform: rotate(-45deg) translateY(0); }
  50%       { transform: rotate(-45deg) translateY(-4px); }
}

.tracker-pin {
  position: absolute;
  left: 56%; top: 42%;
  width: 30px; height: 30px;
  border: 7px solid var(--amber);
  border-radius: 50% 50% 50% 4px;
  background: var(--bg-800);
  transform: rotate(-45deg);
  box-shadow: 0 0 0 8px var(--amber-glow), var(--shadow-amber);
  animation: pin-float 3s ease-in-out infinite;
}

.map-card {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  background: rgba(11,15,26,.88);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
}

.map-card small { color: var(--text-3); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.map-card strong { color: var(--text-1); font-size: 14px; }
.map-card span { color: var(--green); font-size: 12px; font-weight: 700; }

.control-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
}

.control-grid article {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  background: var(--bg-900);
  transition: background .2s;
}

.control-grid article:hover { background: var(--bg-800); }

.control-grid small {
  color: var(--text-3);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.control-grid strong {
  font-family: var(--font-display);
  color: var(--text-1);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1;
}

.dark-cells { background: var(--border); }
.dark-cells article { background: var(--bg-900); }
.dark-cells small { color: var(--text-3); }
.dark-cells strong { color: var(--text-1); }

/* Fleet dashboard */
.fleet-dashboard {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 12px;
  padding: 14px;
}

.fleet-map {
  position: relative;
  min-height: 225px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background:
    linear-gradient(90deg, rgba(74,158,255,.06) 1px, transparent 1px),
    linear-gradient(rgba(74,158,255,.06) 1px, transparent 1px),
    linear-gradient(135deg, #0d1c38, #07090f);
  background-size: 36px 36px, 36px 36px, auto;
}

.fleet-route { background: rgba(255,255,255,.25); }

.route-x { left: 6%; top: 34%; width: 88%; transform: rotate(15deg); }
.route-y { left: 16%; top: 68%; width: 74%; transform: rotate(-21deg); background: rgba(255,107,53,.5); }

@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--green-glow); }
  50%       { box-shadow: 0 0 0 8px rgba(0,217,126,0); }
}

.fleet-dot {
  position: absolute;
  width: 16px; height: 16px;
  border: 3px solid var(--bg-800);
  border-radius: 50%;
  background: var(--green);
  animation: dot-pulse 2.4s ease-out infinite;
}

.dot-one  { left: 24%; top: 31%; }
.dot-two  { left: 61%; top: 55%; background: var(--amber); animation-delay: .8s; }
.dot-three{ left: 73%; top: 22%; animation-delay: 1.6s; }

.fleet-list { display: grid; gap: 8px; align-content: center; }

.fleet-list article {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--card-bg);
  transition: border-color .2s, background .2s;
}

.fleet-list article:hover { border-color: var(--border-mid); background: var(--card-bg-hi); }

.fleet-list strong { font-size: 14px; font-weight: 700; color: var(--text-1); }
.fleet-list span   { color: var(--text-3); font-size: 12px; }

/* ─── SECTIONS ───────────────────────────────────────────── */
.section {
  padding: clamp(32px, 4.5vw, 56px) var(--space-page);
}

.section-intro { max-width: 860px; }

.section-intro.centered {
  width: min(1120px, 100%);
  max-width: 1120px;
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(280px, 1fr);
  column-gap: clamp(22px, 4vw, 54px);
  row-gap: 8px;
  align-items: end;
  margin-inline: auto;
  text-align: left;
}

.section-intro.centered .section-number,
.section-intro.centered .eyebrow { grid-column: 1; }
.section-intro.centered h2 { grid-column: 1; }
.section-intro.centered p  { grid-column: 2; grid-row: 2 / span 2; margin: 0; }

.section-intro p,
.compare-section p,
.roi-section p,
.quiz-section p,
.final-cta p { color: var(--text-2); font-size: 16px; line-height: 1.65; }

.section-number {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--amber);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-number::after {
  content: "";
  width: 56px; height: 1px;
  background: linear-gradient(90deg, var(--amber), transparent);
}

/* ─── PRODUCTS TRIO ─────────────────────────────────────── */
.products-trio {
  text-align: center;
  background: var(--bg-900);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trio-header {
  max-width: 640px;
  margin: 0 auto clamp(28px, 4vw, 44px);
}

.trio-sub {
  color: var(--text-2);
  font-size: 16px;
  margin: 10px 0 0;
}

.trio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1000px, 100%);
  margin: 0 auto;
}

.trio-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--card-bg);
  text-align: left;
  transition: border-color .25s, transform .25s, background .25s;
}

.trio-card:hover {
  border-color: var(--border-mid);
  background: var(--card-bg-hi);
  transform: translateY(-4px);
}

.featured-trio {
  border-color: rgba(0, 217, 126, .35);
  background: rgba(0, 217, 126, .04);
  box-shadow: 0 0 0 1px rgba(0,217,126,.12), var(--shadow-green);
}

.featured-trio:hover {
  border-color: rgba(0, 217, 126, .6);
}

.trio-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--green);
  color: var(--bg-950);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  white-space: nowrap;
}

.trio-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--amber);
  color: var(--bg-950);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  flex-shrink: 0;
}

.trio-rastreador .trio-icon { background: var(--green); }
.trio-protecao .trio-icon  { background: var(--blue); }

.trio-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.trio-card p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.trio-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
}

.trio-price strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .01em;
}

.trio-price span {
  color: var(--text-3);
  font-size: 13px;
}

.trio-btn { width: 100%; }

@media (max-width: 760px) {
  .trio-grid { grid-template-columns: 1fr; }
}

/* ─── TRUST STRIP ────────────────────────────────────────── */
.trust-strip {
  width: min(1120px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  background: var(--border);
}

.trust-strip span {
  padding: 18px;
  background: var(--bg-800);
  color: var(--text-2);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  transition: background .2s, color .2s;
}

.trust-strip span:hover { background: var(--bg-700); color: var(--text-1); }

/* ─── SECTION GRID (benefits) ───────────────────────────── */
.section-grid, .roi-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.benefit-stack { display: grid; gap: 12px; }

.benefit-stack article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  transition: border-color .25s, background .25s, transform .25s;
}

.benefit-stack article:hover {
  border-color: var(--border-mid);
  background: var(--card-bg-hi);
  transform: translateY(-2px);
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: var(--radius-md);
  color: var(--bg-950);
  background: var(--amber);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  flex-shrink: 0;
}

/* ─── BENTO GRID ─────────────────────────────────────────── */
.bento-section, .fleet-bento, .fleet-intel, .corporate-faq {
  background: var(--bg-900);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.bento-grid {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 20px auto 0;
}

.bento-card,
.price-card,
.compare-grid article,
.faq-grid details,
.intel-grid article,
.sector-grid article,
.process-line article {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  transition: border-color .25s, background .25s, transform .25s;
}

.bento-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.bento-card:hover {
  border-color: var(--border-mid);
  background: var(--card-bg-hi);
  transform: translateY(-2px);
}

/* Decorative corner accent */
.bento-card::after {
  content: "";
  position: absolute;
  right: -32px; bottom: -32px;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: rgba(255,107,53,.06);
  pointer-events: none;
}

.bento-wide { grid-column: span 2; min-height: 160px; }

.bento-dark {
  color: var(--text-1);
  background:
    radial-gradient(circle at 85% 15%, rgba(255,107,53,.18), transparent 40%),
    var(--bg-700);
  border-color: rgba(255,107,53,.2);
}

.bento-dark p { color: var(--text-2); }
.bento-dark:hover { border-color: rgba(255,107,53,.35); }

.mini-map {
  position: absolute;
  right: 18px; bottom: 18px;
  width: 160px; height: 90px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background:
    linear-gradient(90deg, rgba(74,158,255,.08) 1px, transparent 1px),
    linear-gradient(rgba(74,158,255,.08) 1px, transparent 1px),
    var(--bg-900);
  background-size: 20px 20px, 20px 20px, auto;
  overflow: hidden;
}

.mini-map span {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--amber);
}

.mini-map span:nth-child(1) { left: 24px; top: 26px; }
.mini-map span:nth-child(2) { left: 88px; top: 54px; background: var(--blue); }
.mini-map span:nth-child(3) { right: 22px; top: 20px; background: var(--green); }

/* ─── AUDIENCE / SECTOR ──────────────────────────────────── */
.audience-grid, .sector-grid, .intel-grid, .compare-grid, .faq-grid, .pricing-grid {
  width: min(1120px, 100%);
  display: grid;
  gap: 12px;
  margin: 20px auto 0;
}

.audience-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.audience-grid article {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  color: var(--text-1);
  background: var(--bg-800);
  transition: border-color .25s, transform .25s;
  overflow: hidden;
  position: relative;
}

.audience-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,107,53,.08), rgba(74,158,255,.06));
  opacity: 0;
  transition: opacity .3s;
}

.audience-grid article:hover { border-color: var(--border-hi); transform: translateY(-3px); }
.audience-grid article:hover::before { opacity: 1; }

.audience-grid strong {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--white);
}

.audience-grid p { color: var(--text-2); margin: 6px 0 0; }

/* ─── QUIZ SECTION ───────────────────────────────────────── */
.quiz-section {
  width: min(1120px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: clamp(20px, 3vw, 36px) auto;
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,107,53,.25);
  background:
    radial-gradient(circle at 10% 50%, rgba(255,107,53,.14), transparent 40%),
    var(--bg-800);
  box-shadow: 0 0 0 1px rgba(255,107,53,.1);
}

.quiz-section p { color: var(--text-2); }

/* ─── PLANS ──────────────────────────────────────────────── */
.plans-section {
  background: var(--bg-900);
  border-top: 1px solid var(--border);
}

.pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.price-card {
  position: relative;
  padding: 22px;
  background: var(--card-bg);
}

.price-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-2px);
  background: var(--card-bg-hi);
}

.price-card.featured {
  border-color: rgba(0,217,126,.3);
  box-shadow: 0 0 0 1px rgba(0,217,126,.1), 0 20px 52px var(--green-glow);
}

.price-card.featured:hover { border-color: rgba(0,217,126,.5); }

.badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--bg-950);
  background: var(--amber);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}

.badge.quiet {
  color: var(--text-1);
  background: var(--bg-600);
  border: 1px solid var(--border-mid);
}

.old-price { margin: 18px 0 0; color: var(--text-3); text-decoration: line-through; font-size: 15px; }

.price {
  margin: 0 0 20px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(44px, 5.4vw, 62px);
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: .95;
}

.price span {
  color: var(--text-3);
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: 0;
}

.price-card ul { display: grid; gap: 9px; padding: 0; margin: 0 0 20px; list-style: none; }

.price-card li {
  position: relative;
  padding-left: 22px;
  color: var(--text-2);
  font-size: 15px;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0; top: .6em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px var(--green-glow);
}

/* ─── COMPARE ────────────────────────────────────────────── */
.compare-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(340px, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.compare-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0; }

.compare-grid article { padding: 20px; }

.compare-grid article:hover { border-color: var(--border-mid); transform: translateY(-2px); }

.compare-grid strong {
  display: block;
  margin: 14px 0 8px;
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: .01em;
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.faq-grid details { padding: 0; overflow: hidden; }

.faq-grid details:hover { border-color: var(--border-mid); }

.faq-grid summary {
  min-height: 50px;
  padding: 15px 20px;
  cursor: pointer;
  color: var(--text-1);
  font-weight: 700;
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-grid summary::after { content: "+"; color: var(--amber); font-size: 20px; font-weight: 700; }
.faq-grid details[open] summary::after { content: "−"; }

.faq-grid p { margin: 0; padding: 0 20px 18px; color: var(--text-2); font-size: 15px; line-height: 1.65; }

/* ─── FINAL CTA ──────────────────────────────────────────── */
.final-cta {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto clamp(24px, 4vw, 48px);
  padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 56px);
  border-radius: var(--radius-xl);
  text-align: center;
  border: 1px solid var(--border-mid);
  background: var(--bg-800);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: -60%; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 280px;
  background: radial-gradient(ellipse, rgba(0,217,126,.1), transparent 70%);
  pointer-events: none;
}

.fleet-final {
  border-color: rgba(255,107,53,.2);
  background:
    radial-gradient(circle at 50% -30%, rgba(255,107,53,.14), transparent 50%),
    var(--bg-800);
}

.fleet-final p { color: var(--text-2); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer-logo {
  height: 44px;
  width: auto;
  background: transparent;
}

.cta-logo {
  height: 52px;
  width: auto;
  margin-bottom: 8px;
  display: block;
  margin-inline: auto;
  background: transparent;
}

.quiz-logo {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
  display: block;
  background: transparent;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 28px var(--space-page);
  color: var(--text-3);
  background: var(--bg-950);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.site-footer strong { color: var(--text-1); }

.site-footer a {
  color: var(--amber);
  font-weight: 700;
  transition: color .16s;
}

.site-footer a:hover { color: var(--white); }

/* ─── FLEET SPECIFIC ─────────────────────────────────────── */
.fleet-intel .section-intro,
.sectors-section .section-intro { margin-inline: auto; }

.intel-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.intel-grid article,
.sector-grid article,
.process-line article { padding: 20px; }

.intel-grid article:hover,
.sector-grid article:hover,
.process-line article:hover {
  border-color: var(--border-mid);
  transform: translateY(-2px);
}

.intel-grid span, .process-line span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  margin-bottom: 14px;
  border-radius: var(--radius-md);
  color: var(--bg-950);
  background: var(--amber);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
}

.sector-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.sector-grid article { min-height: 156px; }

.roi-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 50% 60% at 95% 20%, rgba(255,107,53,.12), transparent),
    var(--bg-900);
}

.roi-section p { color: var(--text-2); }

.roi-list { display: grid; gap: 10px; }

.roi-list span {
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--card-bg);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-1);
  transition: border-color .2s, background .2s;
}

.roi-list span:hover { border-color: var(--border-mid); background: var(--card-bg-hi); }

.process-line {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 24px auto 0;
}

/* ─── FLOATING QUIZ BUTTON ───────────────────────────────── */
.floating-quiz {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 35;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  color: var(--bg-950);
  background: var(--green);
  box-shadow: 0 8px 28px var(--green-glow);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  transition: transform .2s, box-shadow .2s;
}

.floating-quiz:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px var(--green-glow);
}

/* ─── QUIZ MODAL ─────────────────────────────────────────── */
.quiz-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.quiz-modal.is-open { display: flex; }

.quiz-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 12, .8);
  backdrop-filter: blur(10px);
}

.quiz-box {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: 90vh;
  overflow: auto;
  padding: 28px;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-xl);
  background: var(--bg-800);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.04);
}

@keyframes modal-in {
  from { opacity: 0; transform: scale(.96) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.quiz-modal.is-open .quiz-box {
  animation: modal-in .3s cubic-bezier(.22,1,.36,1) both;
}

.quiz-close {
  position: absolute;
  top: 14px; right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid var(--border-mid);
  border-radius: 50%;
  background: var(--card-bg);
  cursor: pointer;
  color: var(--text-2);
  font-size: 22px;
  line-height: 1;
  transition: background .16s, color .16s;
}

.quiz-close:hover { background: var(--card-bg-hi); color: var(--text-1); }

.quiz-options { display: grid; gap: 10px; margin-top: 22px; }

.quiz-option {
  width: 100%;
  min-height: 52px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-1);
  background: var(--card-bg);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  transition: border-color .18s, background .18s, transform .18s;
}

.quiz-option:hover {
  border-color: var(--amber);
  background: rgba(255,107,53,.06);
  transform: translateX(4px);
}

.quiz-progress {
  margin-top: 18px;
  color: var(--text-3);
  font-size: 13px;
}

.result-card {
  display: grid;
  gap: 14px;
  margin-top: 20px;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-mid);
  background: var(--bg-900);
}

.result-card strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1;
}

/* ─── PRODUCTS HERO (index) ──────────────────────────────── */
.products-hero {
  padding-top: clamp(32px, 5vw, 64px);
}

.products-hero-intro {
  max-width: 780px;
  margin: 0 auto clamp(28px, 4vw, 48px);
  text-align: center;
}

.products-hero-intro h1 {
  font-size: clamp(36px, 4.5vw, 68px);
  margin: 12px 0 0;
}

.products-hero-sub {
  margin: 16px 0 0;
  color: var(--text-2);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.65;
}

.products-main-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.products-hero-quiz {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: clamp(24px, 3vw, 36px);
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-2);
  font-size: 15px;
  flex-wrap: wrap;
}

/* Product Cards (pcard) */
.pcard {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--card-bg);
  overflow: hidden;
  transition: border-color .25s, transform .25s, background .25s;
}

.pcard:hover {
  border-color: var(--border-mid);
  transform: translateY(-5px);
  background: var(--card-bg-hi);
}

.featured-pcard {
  border-color: rgba(0, 217, 126, .35);
  background: rgba(0, 217, 126, .04);
  box-shadow: 0 0 0 1px rgba(0,217,126,.12), var(--shadow-green);
}

.featured-pcard:hover {
  border-color: rgba(0, 217, 126, .6);
}

.pcard-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 18px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: var(--green);
  color: var(--bg-950);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  white-space: nowrap;
  z-index: 2;
}

.pcard-top {
  padding: 28px 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.featured-pcard .pcard-top { padding-top: 38px; }

.pcard-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--amber);
  color: var(--bg-950);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  flex-shrink: 0;
}

.pcard-gps .pcard-icon  { background: var(--green); }
.pcard-protecao .pcard-icon { background: var(--blue); }

.pcard-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .01em;
  line-height: 1.1;
}

.pcard-desc {
  margin: 0;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
}

.pcard-pricing {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pcard-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.pcard-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
  min-width: 52px;
}

.pcard-price-row strong {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .01em;
  line-height: 1;
}

.pcard-price-row strong small {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0;
}

.pcard-price-row small {
  color: var(--text-3);
  font-size: 12px;
}

.pcard-pix .pcard-label { color: var(--green); }
.pcard-pix strong { color: var(--green); }

.pcard-promo .pcard-label { color: var(--amber); }
.pcard-promo strong { color: var(--green); }

.pcard-cotar strong {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--blue);
  font-weight: 700;
}

.pcard-cotar small { color: var(--text-3); font-size: 12px; }

.pcard-old {
  color: var(--text-3);
  text-decoration: line-through;
  font-size: 13px;
}

.pcard-period {
  color: var(--text-3);
  font-size: 12px;
}

.pcard-features {
  padding: 14px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pcard-features span {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  color: var(--text-2);
  font-size: 12px;
  font-weight: 700;
}

.pcard-btn {
  margin: 0 24px;
  width: calc(100% - 48px) !important;
}

.pcard-btn:last-child { margin-bottom: 24px; }
.pcard-btn:not(:last-child) { margin-bottom: 0; }
.pcard-btn + .pcard-btn { margin-top: 8px; }

@media (max-width: 900px) {
  .products-main-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* ─── LANDING PAGE HERO ───────────────────────────────────── */
.hero-lp {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(48px, 6vw, 88px) var(--space-page) clamp(40px, 5vw, 64px);
  background:
    radial-gradient(ellipse 50% 50% at 100% 0%, rgba(255,107,53,.1), transparent),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(74,158,255,.07), transparent),
    var(--bg-900);
  border-bottom: 1px solid var(--border);
}

.hero-gps {
  background:
    radial-gradient(ellipse 50% 50% at 100% 0%, rgba(0,217,126,.1), transparent),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(0,217,126,.06), transparent),
    var(--bg-900);
}

.hero-protecao {
  background:
    radial-gradient(ellipse 50% 50% at 100% 0%, rgba(74,158,255,.12), transparent),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(74,158,255,.06), transparent),
    var(--bg-900);
}

/* Price block on LP hero */
.lp-price-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  padding: 20px;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.03);
  flex-wrap: wrap;
}

.lp-price-option {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.lp-price-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
}

.lp-price-value {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: .01em;
}

.lp-price-value small {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-3);
  font-weight: 600;
  letter-spacing: 0;
  margin-left: 2px;
}

.lp-pix .lp-price-label { color: var(--green); }
.lp-pix .lp-price-value { color: var(--green); }

.lp-price-option > small {
  color: var(--text-3);
  font-size: 12px;
}

.lp-price-divider {
  color: var(--text-3);
  font-size: 13px;
  font-weight: 700;
  padding: 0 4px;
}

/* Plans toggle on GPS LP */
.lp-plans-toggle {
  display: flex;
  gap: 12px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.plan-option {
  flex: 1;
  min-width: 180px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color .2s;
}

.plan-option:hover { border-color: var(--border-mid); }

.plan-locacao { border-color: rgba(0,217,126,.25); background: rgba(0,217,126,.03); }

.plan-badge-row { margin-bottom: 4px; }

.plan-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
}

.plan-price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.plan-price-line strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.plan-price-line strong small {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  margin-left: 2px;
}

.plan-note {
  margin: 0;
  color: var(--text-3);
  font-size: 12px;
  line-height: 1.5;
}

.plan-divider {
  display: flex;
  align-items: center;
  color: var(--text-3);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 0;
}

/* LP product card (TAG/Protecao right column) */
.lp-product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-xl);
  background: var(--bg-800);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.06);
}

.lp-product-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent 60%);
  z-index: 2;
}

.lp-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-product-icon-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: var(--radius-lg);
  background: var(--amber);
  color: var(--bg-950);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .04em;
  flex-shrink: 0;
}

.protecao-icon-lg { background: var(--blue); }

.lp-card-body h3 { margin: 0; font-size: 20px; }
.lp-card-body p { margin: 0; color: var(--text-2); font-size: 14px; line-height: 1.6; }

.lp-tag-specs {
  display: grid;
  gap: 8px;
}

.lp-tag-specs span {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--card-bg);
  color: var(--text-2);
  font-size: 13px;
}

.lp-tag-specs strong {
  color: var(--text-1);
  font-weight: 700;
  margin-right: 6px;
}

.lp-card-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,.02);
}

.lp-footer-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-footer-price strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .01em;
}

.lp-footer-price small {
  color: var(--text-3);
  font-size: 12px;
}

/* Protecao LP */
.protecao-cta-block {
  margin: 20px 0;
  padding: 18px;
  border: 1px solid rgba(74,158,255,.2);
  border-radius: var(--radius-lg);
  background: rgba(74,158,255,.04);
}

.protecao-badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.protecao-cta-text {
  margin: 0;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1050px) {
  .hero-lp {
    grid-template-columns: 1fr;
    padding-inline: clamp(18px, 5vw, 48px);
  }
}

/* ─── REDUCED MOTION ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1050px) {
  .hero,
  .section-grid,
  .compare-section,
  .roi-section { grid-template-columns: 1fr; }

  .hero {
    min-height: auto;
    width: min(100% - 24px, 980px);
    grid-template-columns: 1fr;
  }

  .hero-copy-block { max-width: none; }
  .control-center { transform: none; }

  .fleet-dashboard { grid-template-columns: 1fr; }

  .trust-strip,
  .intel-grid,
  .sector-grid,
  .process-line { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .bento-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .section-intro.centered { grid-template-columns: 1fr; }

  .section-intro.centered .section-number,
  .section-intro.centered .eyebrow,
  .section-intro.centered h2,
  .section-intro.centered p { grid-column: 1; grid-row: auto; }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    width: calc(100% - 24px);
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-logo { width: min(240px, 76vw); max-height: 54px; }
  .main-nav { justify-content: flex-start; }
  .main-nav a { font-size: 13px; }

  h1 { font-size: 44px; }

  .hero-proof,
  .control-grid,
  .pricing-grid,
  .audience-grid,
  .compare-grid,
  .faq-grid,
  .trust-strip,
  .intel-grid,
  .sector-grid,
  .process-line { grid-template-columns: 1fr; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; }

  .quiz-section { display: grid; }

  .mini-map { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 18px; }

  .floating-quiz { left: 14px; right: 14px; bottom: 14px; border-radius: var(--radius-lg); }

  .site-footer { padding-bottom: 88px; }
}
