/* ============================================================
   GEORADAR — Stripe-inspired design system
   ============================================================ */

html { font-size: 100%; }
@media screen and (max-width: 1440px) { html { font-size: calc(0.25rem + 0.972vw); } }
@media screen and (max-width: 1280px) { html { font-size: calc(0.125rem + 0.977vw); } }
@media screen and (max-width: 991px)  { html { font-size: calc(0.5rem + 0.505vw); } }
@media screen and (max-width: 767px)  { html { font-size: calc(14px + 0.26vw); } }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100%; }

/* ════════════════════════════════════════════
   DESIGN TOKENS — LIGHT (default)
════════════════════════════════════════════ */
:root {
  --bg:          #ffffff;
  --surface:     #f9fafb;
  --surface2:    #f3f4f6;
  --border:      rgba(10, 37, 64, 0.08);
  --border2:     rgba(99, 91, 255, 0.15);
  --accent:      #635bff;
  --accent-hover:#5850e4;
  --accent-dark: #0a2540;
  --text:        #0a2540;
  --muted:       #424770;
  --muted2:      #8892a4;
  --cyan:        #00d4ff;
  --violet:      #7b4fff;
  --pink:        #ff4fd8;
  --green:       #00ff94;
  --white:       #0a2540;
  --font-head:   'Outfit', sans-serif;
  --font-body:   'Outfit', sans-serif;
  --font-mono:   'JetBrains Mono', monospace;
  --radius:      0.75rem;
  --radius-lg:   1rem;
  --radius-full: 6.25rem;
  --shadow-sm:   0 1px 3px rgba(50, 50, 93, 0.06), 0 1px 0 rgba(0, 0, 0, 0.03);
  --shadow-md:   0 6px 12px -2px rgba(50, 50, 93, 0.08), 0 3px 7px -3px rgba(0, 0, 0, 0.04);
  --shadow-lg:   0 30px 60px -12px rgba(50, 50, 93, 0.12), 0 18px 36px -18px rgba(0, 0, 0, 0.08);
  --glow-accent: 0 0 2.5rem rgba(99, 91, 255, 0.15);
  --transition:  0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  --transition-slow: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ════════════════════════════════════════════
   BASE
════════════════════════════════════════════ */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

*[tabindex]:focus-visible,
input:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ════════════════════════════════════════════
   TYPOGRAPHY
════════════════════════════════════════════ */
.heading-style-h1,
.heading-style-h2,
.heading-style-h3,
.heading-style-h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.02em;
}

.heading-style-h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
.heading-style-h2 { font-size: clamp(2rem, 4vw, 3rem); }
.heading-style-h3 { font-size: 1.25rem; font-weight: 600; }
.heading-style-h4 { font-size: 0.9375rem; font-weight: 600; }

.text-style-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-style-muted   { color: var(--muted2); }
.text-style-mono    { font-family: var(--font-mono); }
.text-style-allcaps { text-transform: uppercase; letter-spacing: 0.1em; }

/* ════════════════════════════════════════════
   LAYOUT
════════════════════════════════════════════ */
.page-wrapper { display: flex; flex-direction: column; min-height: 100dvh; }
.main-wrapper { flex: 1; }

.container-large {
  max-width: 69.4375rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}

section { position: relative; }
.section_chero, .section_cta { overflow: hidden; }

.padding-section-large  { padding: 7.5rem 0; }
.padding-section-medium { padding: 5rem 0; }

/* ════════════════════════════════════════════
   SECTION ALTERNATION
════════════════════════════════════════════ */
.section_chero    { background: var(--bg); }
.ticker_wrap      { background: var(--surface); }
.section_problem  { background: var(--bg); }
.section_solution-v2  { background: var(--surface); }
.section_report   { background: var(--bg); }
.section_hiw      { background: var(--surface); }
.section_agencies { background: var(--bg); }
.section_pricing  { background: var(--surface); }
.section_faq      { background: var(--bg); }
.section_cta      { background: var(--surface); }
.footer_wrap      { background: var(--bg); }

/* ════════════════════════════════════════════
   SECTION HEADER
════════════════════════════════════════════ */
.section_header {
  text-align: center;
  margin-bottom: 4rem;
}
.section_header .section_eyebrow { justify-content: center; }
.section_header .section_eyebrow::before { display: none; }

.section_eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 600;
}
.section_eyebrow::before {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.section_eyebrow.is-centered {
  justify-content: center;
  margin-bottom: 1.25rem;
}
.section_eyebrow.is-centered::before { display: none; }

.section_description {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 1.25rem auto 0;
  line-height: 1.6;
}

/* ════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════ */
.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: background var(--transition), color var(--transition),
              box-shadow var(--transition), transform var(--transition),
              border-color var(--transition);
  position: relative;
  white-space: nowrap;
  line-height: 1.2;
}

.button.is-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}
.button.is-primary:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.button.is-primary:active { transform: scale(0.98); }

.button.is-secondary {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.button.is-secondary:hover {
  border-color: rgba(99, 91, 255, 0.3);
  color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.button.is-secondary:active { transform: scale(0.98); }

.button.is-large {
  padding: 1rem 1.75rem;
  font-size: 1rem;
  border-radius: 0.625rem;
}

.button.is-full {
  width: 100%;
  justify-content: center;
}

/* ════════════════════════════════════════════
   VISUAL ORBS — Stripe-signature gradient wave
════════════════════════════════════════════ */
.visual_orb {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* Stripe-like colorful wave — top-right, behind radar */
.visual_orb.is-1 {
  width: 60rem; height: 60rem;
  top: -25%;
  right: -20%;
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  background:
    radial-gradient(ellipse at 25% 25%, rgba(251, 118, 250, 0.75) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 15%, rgba(255, 145, 60,  0.7)  0%, transparent 50%),
    radial-gradient(ellipse at 80% 65%, rgba(17,  239, 227, 0.65) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 70%, rgba(107, 89,  254, 0.6)  0%, transparent 55%),
    radial-gradient(ellipse at 55% 45%, rgba(255, 210, 80,  0.55) 0%, transparent 50%),
    radial-gradient(ellipse at 45% 80%, rgba(83,  58,  253, 0.5)  0%, transparent 50%);
  filter: blur(2.5rem);
  opacity: 0.9;
  will-change: transform;
  animation: stripe-wave 9s ease-in-out infinite alternate;
}

/* Accent secondary orb — lower left, very subtle */
.visual_orb.is-2 {
  width: 22rem; height: 22rem;
  bottom: -5%;
  left: -8%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 50%, rgba(99, 91, 255, 0.12) 0%, transparent 70%);
  filter: blur(4rem);
  opacity: 0.7;
}

.visual_orb.is-cta {
  width: 48rem; height: 28rem;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 40% 40%, rgba(251, 118, 250, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 60% 60%, rgba(107, 89,  254, 0.35) 0%, transparent 60%);
  filter: blur(5rem);
  opacity: 0.8;
}

@keyframes stripe-wave {
  0%   { transform: rotate(-4deg) scale(1);    }
  50%  { transform: rotate(2deg)  scale(1.04); }
  100% { transform: rotate(5deg)  scale(1.02); }
}

/* Dark mode: replace colorful wave with neon palette */

/* ════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0);
  transition: background var(--transition), backdrop-filter var(--transition),
              border-color var(--transition), box-shadow var(--transition);
  border-bottom: 1px solid transparent;
}
.navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.navbar_brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
}
.navbar_brand-icon {
  width: 2rem; height: 2rem;
}

.navbar_nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar_nav-link {
  font-size: 0.9375rem;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s;
}
.navbar_nav-link:hover,
.navbar_nav-link.is-active { color: var(--accent); }

.navbar_actions { display: flex; align-items: center; gap: 0.75rem; }

.navbar_lang-btn {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.navbar_lang-btn:hover { color: var(--fg); border-color: var(--fg-muted); }

/* ════════════════════════════════════════════
   HERO — LEFT-ALIGNED SPLIT
════════════════════════════════════════════ */
.section_hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 7.5rem 0 5rem;
  position: relative;
}

.hero_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero_content { text-align: left; }

.hero_eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(99, 91, 255, 0.08);
  border: 1px solid rgba(99, 91, 255, 0.2);
  border-radius: var(--radius-full);
  padding: 0.375rem 0.875rem 0.375rem 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero_eyebrow-dot {
  width: 0.375rem; height: 0.375rem;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.7); }
}

.hero_content .heading-style-h1 { margin-bottom: 1.5rem; }

.hero_description {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 30rem;
  margin-bottom: 2.5rem;
}
.hero_description strong { color: var(--text); font-weight: 600; }

.hero_actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero_stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.hero_stat-value {
  font-family: var(--font-head);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
}
.hero_stat-label {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.hero_visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* ════════════════════════════════════════════
   RADAR
════════════════════════════════════════════ */
.radar_wrap {
  position: relative;
  width: 27.5rem; height: 27.5rem;
}
.radar_svg { width: 100%; height: 100%; }

.radar_ring {
  fill: none;
  stroke: rgba(99, 91, 255, 0.12);
  stroke-width: 1;
}

.radar_sweep {
  transform-origin: center;
  animation: radar-sweep 3s linear infinite;
}
@keyframes radar-sweep {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.radar_score-card {
  position: absolute;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  pointer-events: none;
  box-shadow: var(--shadow-lg);
}

.radar_score-card.is-main {
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  min-width: 12.5rem;
  text-align: center;
}
.radar_score-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.radar_score-label {
  font-size: 0.6875rem;
  color: var(--muted);
  margin-top: 0.375rem;
  font-family: var(--font-mono);
  letter-spacing: 0.15em;
  font-weight: 600;
}

.radar_badge {
  position: absolute;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
  box-shadow: var(--shadow-md);
  animation: badge-float 4s ease-in-out infinite;
}

.radar_badge:nth-child(3) { animation-delay: -1s; }
.radar_badge:nth-child(4) { animation-delay: -2s; }

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-0.5rem); }
}

.radar_badge.is-top-left  { top: 2.5rem; left: -1.25rem; }
.radar_badge.is-top-right { top: 3.75rem; right: -1.25rem; }
.radar_badge.is-mid-left  { top: 72%; left: -0.625rem; transform: translateY(-50%); }

.radar_badge-dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.radar_badge-dot.is-cyan   { background: var(--cyan);   box-shadow: 0 0 0.5rem var(--cyan); }
.radar_badge-dot.is-violet { background: var(--violet); box-shadow: 0 0 0.5rem var(--violet); }
.radar_badge-dot.is-green  { background: var(--green);  box-shadow: 0 0 0.5rem var(--green); }
.radar_badge-dot.is-pink   { background: var(--pink);   box-shadow: 0 0 0.5rem var(--pink); }

.radar_badge-score {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 0.25rem;
}
.radar_badge-score.is-cyan   { color: var(--cyan); }
.radar_badge-score.is-violet { color: var(--violet); }
.radar_badge-score.is-green  { color: var(--green); }

/* ════════════════════════════════════════════
   TICKER
════════════════════════════════════════════ */
.ticker_wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  overflow: hidden;
}
.ticker_track {
  display: flex;
  gap: 3.75rem;
  animation: ticker-scroll 25s linear infinite;
  width: max-content;
}
.ticker_track:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker_item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  white-space: nowrap;
  font-size: 0.8125rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-weight: 500;
}
.ticker_dot {
  width: 0.3125rem; height: 0.3125rem;
  background: var(--accent);
  border-radius: 50%;
}

/* ════════════════════════════════════════════
   PROBLEM — scroll-pinned stacking cards
════════════════════════════════════════════ */
.section_problem { overflow: hidden; }

.problem_pin-wrap {
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 5rem;
  overflow: hidden;
}

.problem_pin-wrap > .container-large {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.problem_header {
  text-align: center;
  margin-bottom: 0.75rem;
}
.problem_header .section_eyebrow {
  justify-content: center;
}
.problem_header .section_eyebrow::before { display: none; }

.problem_cards-stage {
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* Cards: top anchor set by JS, start below stage */
.problem_card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 48rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  will-change: transform;
  box-shadow: 0 8px 32px -8px rgba(10, 37, 64, 0.1), 0 2px 8px -2px rgba(10, 37, 64, 0.06);
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  align-items: baseline;
}

.problem_card[data-card="0"] { z-index: 1; }
.problem_card[data-card="1"] { z-index: 2; }
.problem_card[data-card="2"] { z-index: 3; }

.problem_card-num {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  padding-top: 0.2rem;
}

.problem_card-body .heading-style-h3 {
  margin-bottom: 0.625rem;
  font-size: 1.25rem;
  font-weight: 600;
}
.problem_card-body p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Mobile: disable pin, show normal flow */
@media (max-width: 767px) {
  .problem_pin-wrap {
    height: auto;
    padding-top: 4rem;
    overflow: visible;
  }
  .problem_pin-wrap > .container-large { height: auto; }
  .problem_cards-stage {
    position: static;
    overflow: visible;
    padding: 1.5rem 0 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .problem_card {
    position: static;
    max-width: 100%;
    margin: 0;
  }
}

/* ════════════════════════════════════════════
   SOLUTION
════════════════════════════════════════════ */
.solution_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 4rem;
  align-items: stretch;
}

@media (min-width: 1281px) {
  .solution_grid { grid-template-columns: repeat(5, 1fr); gap: 1rem; }
}

.solution_card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition),
              border-color var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-sm);
}
.solution_card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(99, 91, 255, 0.2);
}

.solution_card-num {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 1rem;
}
.solution_card .heading-style-h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.solution_card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

.solution_card-score {
  margin-top: auto;
  padding-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.solution_card-score-bar {
  flex: 1;
  height: 0.1875rem;
  background: rgba(99, 91, 255, 0.12);
  border-radius: 0.125rem;
  overflow: hidden;
}
.solution_card-score-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 0.125rem;
  width: 0;
  transition: width 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s;
}

/* ════════════════════════════════════════════
   REPORT
════════════════════════════════════════════ */
.report_wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.report_content .section_eyebrow { margin-bottom: 1rem; }
.report_content .heading-style-h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1.25rem;
}

/* Hand-drawn circle around report heading */
.report_heading-wrap {
  position: relative;
  display: block;
  margin-bottom: 1.25rem;
}
.report_heading-wrap .heading-style-h2 {
  margin-bottom: 0;
}
.report_circle-svg {
  position: absolute;
  top: -20px;
  left: -65px;
  width: calc(100% + 130px);
  height: calc(100% + 40px);
  pointer-events: none;
  overflow: visible;
}
#reportCirclePath {
  /* dasharray/dashoffset/transition set via JS to avoid inline-style specificity bug */
}
.report_content > p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 2rem;
  font-size: 1.0625rem;
}

.report_features {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.report_features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text);
}
.report_features li::before {
  content: '';
  width: 1.25rem; height: 1.25rem;
  background: rgba(99, 91, 255, 0.1);
  border: 1px solid rgba(99, 91, 255, 0.25);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23635bff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}

.report_mock {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.report_mock-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.report_mock-dots { display: flex; gap: 0.375rem; }
.report_mock-dot  { width: 0.625rem; height: 0.625rem; border-radius: 50%; }
.report_mock-dot:nth-child(1) { background: #ff5f57; }
.report_mock-dot:nth-child(2) { background: #ffbd2e; }
.report_mock-dot:nth-child(3) { background: #28c840; }
.report_mock-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  margin-left: 0.5rem;
  font-weight: 500;
}
.report_mock-body { padding: 1.75rem 1.5rem; }

.report_mock-score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}
.report_mock-score-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
}

.report_mock-score-label {
  font-size: 0.75rem;
  color: var(--muted);
  font-family: var(--font-mono);
  margin-top: 0.375rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.report_mock-gauge { width: 5rem; height: 5rem; }

.report_mock-metrics { display: flex; flex-direction: column; gap: 0.75rem; }
.report_mock-metric {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
}
.report_mock-metric-name {
  width: 7.5rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.report_mock-metric-bar {
  flex: 1;
  height: 0.375rem;
  background: rgba(99, 91, 255, 0.08);
  border-radius: 0.1875rem;
  overflow: hidden;
}

.report_mock-metric-fill {
  height: 100%;
  border-radius: 0.1875rem;
  background: var(--accent);
}
.report_mock-metric-val {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  width: 1.875rem;
  text-align: right;
}

/* ════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════ */
.hiw_heading-wrap {
  position: relative;
  display: inline-block;
}
.hiw_underline-svg {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 16px;
  pointer-events: none;
  overflow: visible;
}

.hiw_steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  position: relative;
}

.hiw_step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  text-align: left;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition),
              border-color var(--transition);
  box-shadow: var(--shadow-sm);
}
.hiw_step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(99, 91, 255, 0.2);
}

.hiw_step-num {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

.hiw_step .heading-style-h3 {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
}
.hiw_step p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.hiw_step-time {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(99, 91, 255, 0.08);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

/* ════════════════════════════════════════════
   AGENCIES
════════════════════════════════════════════ */
.agencies_wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.agencies_content .heading-style-h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 1rem 0 1.25rem;
}
.agencies_content > p {
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.agencies_value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.agencies_value-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.625rem 0;
  font-size: 0.9375rem;
}
.agencies_value-row:not(:last-child) { border-bottom: 1px solid var(--border); }
.agencies_value-label { color: var(--muted); }
.agencies_value-num {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text);
}
.agencies_value-num.is-green { color: #00a86b; }
.agencies_value-num.is-cyan  { color: var(--accent); }
.agencies_value-num.is-muted { color: var(--muted); }

.agencies_features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.agencies_feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow var(--transition), transform var(--transition),
              border-color var(--transition);
  box-shadow: var(--shadow-sm);
}
.agencies_feature:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
  border-color: rgba(99, 91, 255, 0.2);
}

.agencies_feature-icon {
  width: 2.5rem; height: 2.5rem;
  background: rgba(99, 91, 255, 0.08);
  border: 1px solid rgba(99, 91, 255, 0.2);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.agencies_feature-icon svg { width: 1.125rem; height: 1.125rem; }

.agencies_feature .heading-style-h4 {
  margin-bottom: 0.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
}
.agencies_feature p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ════════════════════════════════════════════
   PRICING
════════════════════════════════════════════ */
.section_pricing { position: relative; }
.section_pricing .container-large { position: relative; z-index: 1; }

@keyframes dotgrid-drift {
  0%   { background-position: 0 0; }
  100% { background-position: 2.25rem 2.25rem; }
}

.pricing_roi-banner {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2.25rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}

.pricing_roi-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
  font-weight: 700;
}
.pricing_roi-tiers {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex: 1;
  flex-wrap: wrap;
}
.pricing_roi-tier {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
}
.pricing_roi-count {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
}
.pricing_roi-arrow {
  color: var(--muted2);
  font-size: 0.875rem;
}
.pricing_roi-profit {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--accent);
}
.pricing_roi-profit.is-accent {
  color: #00a86b;
}

.pricing_roi-divider {
  width: 1px;
  height: 1.75rem;
  background: var(--border);
  flex-shrink: 0;
}

.pricing_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.pricing_card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition),
              border-color var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.pricing_card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(99, 91, 255, 0.2);
}

.pricing_card .button.is-full { margin-top: auto; }

.pricing_card.is-featured {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}
.pricing_card.is-featured:hover {
  box-shadow: var(--shadow-lg), 0 0 2.5rem rgba(99, 91, 255, 0.25);
}
.pricing_card.is-featured .pricing_card-tier    { color: rgba(255, 255, 255, 0.75); }
.pricing_card.is-featured .pricing_card-name    { color: #ffffff; }
.pricing_card.is-featured .pricing_card-desc    { color: rgba(255, 255, 255, 0.85); }
.pricing_card.is-featured .pricing_card-currency{ color: rgba(255, 255, 255, 0.75); }
.pricing_card.is-featured .pricing_card-num     { color: #ffffff; }
.pricing_card.is-featured .pricing_card-period  { color: rgba(255, 255, 255, 0.75); }
.pricing_card.is-featured .pricing_card-divider { background: rgba(255, 255, 255, 0.2); }
.pricing_card.is-featured .pricing_card-features li { color: rgba(255, 255, 255, 0.95); }
.pricing_card.is-featured .pricing_card-features li .text-style-muted { color: rgba(255, 255, 255, 0.55); }
.pricing_card.is-featured .pricing_feat-icon.is-on {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='7' viewBox='0 0 9 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.5L3 5.5L8 1' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.pricing_card.is-featured .pricing_feat-icon.is-off {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.pricing_card.is-featured .button.is-primary {
  background: #ffffff;
  color: var(--accent);
}
.pricing_card.is-featured .button.is-primary:hover {
  background: #f5f4ff;
  color: var(--accent-hover);
}

.pricing_card-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-dark);
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.pricing_card.is-featured .pricing_card-badge {
  background: #ffffff;
  color: var(--accent);
}

.pricing_card-tier {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.pricing_card-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  color: var(--text);
}
.pricing_card-desc {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  line-height: 1.55;
}

.pricing_card-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.75rem;
}
.pricing_card-currency {
  font-size: 1.25rem;
  color: var(--muted);
  font-family: var(--font-head);
  font-weight: 600;
}
.pricing_card-num {
  font-family: var(--font-head);
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
}
.pricing_card-period {
  font-size: 0.9375rem;
  color: var(--muted);
}

.pricing_card-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.5rem;
}

.pricing_card-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.pricing_card-features li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--muted);
}
.pricing_card-features li.is-active { color: var(--text); }

.pricing_feat-icon {
  width: 1.125rem; height: 1.125rem;
  flex-shrink: 0;
  border-radius: 50%;
}
.pricing_feat-icon.is-on {
  background: rgba(99, 91, 255, 0.1);
  border: 1px solid rgba(99, 91, 255, 0.3);
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='7' viewBox='0 0 9 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.5L3 5.5L8 1' stroke='%23635bff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}
.pricing_feat-icon.is-off {
  background: rgba(10, 37, 64, 0.04);
  border: 1px solid rgba(10, 37, 64, 0.08);
}

/* ════════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
.faq_list {
  max-width: 45rem;
  margin: 4rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq_item {
  background: transparent;
  border: none;
}

.faq_question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  width: 100%;
  text-align: left;
  font-weight: 500;
  font-size: 1.0625rem;
  color: var(--text);
  gap: 1rem;
  background: var(--surface);
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(10,37,64,0.06);
  transition: background var(--transition), box-shadow var(--transition);
  font-family: var(--font-head);
}
.faq_question:hover {
  background: #f3f4f6;
  box-shadow: 0 4px 16px rgba(10,37,64,0.1);
}
.faq_item.is-open .faq_question {
  background: #f3f4f6;
  box-shadow: 0 4px 16px rgba(10,37,64,0.1);
}

.faq_question-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.faq_help-icon {
  color: #4b5563;
  flex-shrink: 0;
  display: flex;
}

.faq_arrow {
  width: 1.75rem;
  height: 1.75rem;
  background: #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #1f2937;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background var(--transition);
}
.faq_item.is-open .faq_arrow {
  transform: rotate(180deg);
}

.faq_answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 0;
}
.faq_item.is-open .faq_answer {
  max-height: 25rem;
}

.faq_answer-card {
  margin: 0.5rem 0 0.25rem 3.5rem;
  background: #ffffff;
  border-radius: 1rem;
  padding: 1rem 1rem 1rem 1.25rem;
  box-shadow: 0 4px 16px rgba(10,37,64,0.08);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.faq_answer-text {
  flex: 1;
  font-size: 0.9875rem;
  color: var(--muted);
  line-height: 1.65;
}

.faq_msg-icon {
  width: 2rem;
  height: 2rem;
  background: rgba(209,213,219,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #374151;
}

/* ════════════════════════════════════════════
   CTA
════════════════════════════════════════════ */
.section_cta { text-align: center; }

.cta_wrap {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 auto;
}
.cta_wrap .heading-style-h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.cta_wrap > p {
  font-size: 1.0625rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.cta_form {
  display: flex;
  gap: 0.75rem;
  max-width: 40rem;
  margin: 0 auto;
}
.cta_form .button {
  flex-shrink: 0;
  white-space: nowrap;
  min-width: 10rem;
}

.form_input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0.625rem;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  outline: none;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form_input::placeholder { color: var(--muted2); }
.form_input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.15);
}

.cta_note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--muted2);
}
.cta_note a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cta_note a:hover { color: var(--accent); }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer_wrap {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.footer_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.footer_brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text);
}
.footer_nav {
  display: flex;
  gap: 1.75rem;
}
.footer_nav a {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s;
}
.footer_nav a:hover { color: var(--accent); }
.footer_copy {
  font-size: 0.8125rem;
  color: var(--muted2);
}

/* ════════════════════════════════════════════
   REVEAL ANIMATIONS
════════════════════════════════════════════ */
.anim-reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.anim-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.is-delay-1 { transition-delay: 0.08s; }
.is-delay-2 { transition-delay: 0.16s; }
.is-delay-3 { transition-delay: 0.24s; }
.is-delay-4 { transition-delay: 0.32s; }

/* ════════════════════════════════════════════
   PRICING — VERTICAL CUT REVEAL + BLUR IN
════════════════════════════════════════════ */
.pricing-word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.2;
}
.pricing-word {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.pricing-word.is-revealed { transform: translateY(0); }

.pricing-blur-in {
  opacity: 0;
  transform: translateY(-18px);
  filter: blur(10px);
  transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
}
.pricing-blur-in.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1280px) {
  .solution_grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .solution_card { padding: 1.5rem 1.25rem; }
}

@media (max-width: 1024px) {
  .container-large { padding: 0 1.75rem; }
  .navbar { padding: 1rem 1.75rem; }

  .section_hero { padding: 6.25rem 0 4rem; }
  .hero_wrap { grid-template-columns: 1fr; gap: 3rem; }
  .hero_content { text-align: center; }
  .hero_description { margin: 0 auto 2.5rem; }
  .hero_actions { justify-content: center; }
  .hero_stats { justify-content: center; }
  .hero_visual { order: -1; }
  .radar_wrap { width: 21.25rem; height: 21.25rem; }

  .solution_grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }

  .report_wrap { grid-template-columns: 1fr; gap: 3rem; }
  .report_content { text-align: center; }
  .report_features { align-items: center; }

  .hiw_steps { grid-template-columns: 1fr; gap: 1rem; max-width: 36rem; margin-left: auto; margin-right: auto; }

  .agencies_wrap { grid-template-columns: 1fr; gap: 3rem; }
  .agencies_content { text-align: center; }
  .agencies_content .section_eyebrow { justify-content: center; }

  .pricing_grid {
    grid-template-columns: minmax(0, 26.25rem);
    justify-content: center;
    gap: 1.25rem;
  }
  .pricing_card.is-featured { order: -1; }
}

@media (max-width: 768px) {
  .container-large { padding: 0 1.25rem; }
  .padding-section-large { padding: 5rem 0; }

  .navbar_nav-list { display: none; }
  .navbar { padding: 0.875rem 1.25rem; }

  .hero_wrap { gap: 2.25rem; }
  .heading-style-h1 { font-size: 2.25rem; }
  .heading-style-h2 { font-size: 1.75rem; }
  .hero_description { font-size: 1rem; }
  .radar_wrap { width: 18.75rem; height: 18.75rem; }
  .hero_stats { gap: 1.5rem; }
  .hero_stat-value { font-size: 1.5rem; }
  .radar_badge.is-mid-left { display: none; }

  .problem_card { grid-template-columns: 1fr; gap: 0.5rem; padding: 1.75rem 0; }
  .problem_card-num { padding-top: 0; }

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

  .pricing_roi-banner { padding: 1.25rem 1.5rem; gap: 1.25rem; }
  .pricing_roi-tiers { gap: 1rem; }
  .pricing_roi-divider { display: none; }
  .pricing_roi-tier { flex-direction: column; align-items: flex-start; gap: 0.125rem; }
  .pricing_roi-arrow { display: none; }

  .pricing_grid { grid-template-columns: 1fr; max-width: 25rem; margin-left: auto; margin-right: auto; }

  .cta_form { flex-direction: column; align-items: stretch; }
  .cta_form .button { min-width: unset; width: 100%; }

  .footer_inner { flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
  .footer_nav { flex-wrap: wrap; justify-content: center; gap: 1rem; }
}

@media (max-width: 640px) {
  .section_hero { padding: 5.625rem 0 3.5rem; }
  .heading-style-h1 { font-size: 1.875rem; }
  .heading-style-h2 { font-size: 1.5rem; }
  .hero_eyebrow { font-size: 0.75rem; }
  .radar_wrap { width: 16.25rem; height: 16.25rem; }
  .hero_stats { flex-direction: row; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; margin-top: 2rem; }
  .hero_stat-value { font-size: 1.375rem; }

  .radar_badge { padding: 0.4375rem 0.625rem; font-size: 0.75rem; }
  .radar_score-card.is-main { padding: 0.75rem 1rem; min-width: 10rem; }
  .radar_score-num { font-size: 2.25rem; }

  .solution_card { padding: 1.25rem 1rem; }

  .report_mock-score-num { font-size: 2.5rem; }
  .report_mock-gauge { width: 3.75rem; height: 3.75rem; }

  .pricing_grid { max-width: 21.25rem; }
}

@media (max-width: 480px) {
  .container-large { padding: 0 1rem; }
  .padding-section-large { padding: 4rem 0; }

  .heading-style-h1 { font-size: 1.75rem; letter-spacing: -0.01em; }
  .heading-style-h2 { font-size: 1.375rem; }
  .hero_description { font-size: 0.9375rem; }
  .radar_wrap { width: 15rem; height: 15rem; }
  .radar_badge.is-top-left,
  .radar_badge.is-top-right { font-size: 0.6875rem; padding: 0.375rem 0.5rem; }
  .section_description { font-size: 0.9375rem; }

  .solution_grid { grid-template-columns: 1fr; max-width: 22.5rem; margin-left: auto; margin-right: auto; }

  .pricing_grid { max-width: 100%; }
  .pricing_card { padding: 1.75rem 1.5rem; }
  .pricing_card-num { font-size: 2.625rem; }

  .agencies_feature { gap: 0.75rem; padding: 1rem; }
  .agencies_feature-icon { width: 2.25rem; height: 2.25rem; }

  .faq_question { font-size: 0.9375rem; padding: 0.875rem 1rem; }
  .faq_answer-card { margin-left: 0; font-size: 0.9375rem; }

  .cta_wrap .heading-style-h2 { font-size: 1.75rem; }
  .cta_wrap > p { font-size: 0.9375rem; }

  .navbar_brand { font-size: 1.0625rem; }
  .button.is-large { padding: 0.875rem 1.25rem; font-size: 0.9375rem; }
}

@media (max-width: 360px) {
  .heading-style-h1 { font-size: 1.625rem; }
  .radar_wrap { width: 12.5rem; height: 12.5rem; }
  .radar_score-num { font-size: 1.875rem; }
  .hero_actions { flex-direction: column; width: 100%; }
  .hero_actions .button { width: 100%; justify-content: center; }
  .pricing_card-num { font-size: 2.25rem; }
  .navbar_actions .button { padding: 0.625rem 1rem; font-size: 0.8125rem; }
}

/* ════════════════════════════════════════════
   BURGER & MOBILE MENU
════════════════════════════════════════════ */
.navbar_burger {
  display: none;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  transition: all var(--transition);
  color: var(--muted);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.navbar_burger:hover { border-color: var(--accent); color: var(--accent); }

.navbar_burger-bar {
  width: 1.125rem;
  height: 0.125rem;
  background: currentColor;
  border-radius: 0.0625rem;
  transition: transform 0.35s ease, opacity 0.25s ease;
}
.navbar.is-menu-open .navbar_burger-bar:nth-child(1) { transform: translateY(0.4375rem) rotate(45deg); }
.navbar.is-menu-open .navbar_burger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar.is-menu-open .navbar_burger-bar:nth-child(3) { transform: translateY(-0.4375rem) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: 5.5rem 1.5rem 2.5rem;
  gap: 2rem;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-0.75rem);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
  overflow-y: auto;
}
.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu_nav { display: flex; flex-direction: column; }
.mobile-menu_nav-link {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
  display: block;
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu_nav-link:hover { color: var(--accent); padding-left: 0.5rem; }
.mobile-menu_cta { margin-top: auto; }

@media (max-width: 768px) {
  .navbar_cta    { display: none; }
  .navbar_burger { display: flex; }
}

/* ════════════════════════════════════════════
   SOLUTION V2 — IMAGE ACCORDION
════════════════════════════════════════════ */
.sv2_wrap {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.sv2_content {
  flex: 0 0 38%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.sv2_desc {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.0625rem;
  max-width: 28rem;
}

/* Accordion container */
.sv2_accordion {
  flex: 1;
  display: flex;
  gap: 0.625rem;
  height: 28rem;
  overflow: hidden;
}

/* Individual panel */
.sv2_panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  width: 3.5rem;
  transition: width 700ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sv2_panel.is-active {
  width: 24rem;
  flex-shrink: 1;
}

.sv2_panel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sv2_panel:hover .sv2_panel-img {
  transform: scale(1.04);
}

.sv2_panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 37, 64, 0.75) 0%,
    rgba(10, 37, 64, 0.25) 50%,
    rgba(10, 37, 64, 0.15) 100%
  );
}

/* Collapsed label — rotated, hidden when active */
.sv2_panel-label {
  position: absolute;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-head);
  white-space: nowrap;
  letter-spacing: -0.01em;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  transform-origin: center center;
  transition: opacity 250ms ease;
  pointer-events: none;
}

.sv2_panel.is-active .sv2_panel-label {
  opacity: 0;
}

/* Expanded body — fades in when active */
.sv2_panel-body {
  position: absolute;
  bottom: 1.75rem;
  left: 1.5rem;
  right: 1.5rem;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 300ms ease 250ms, transform 300ms ease 250ms;
  pointer-events: none;
}

.sv2_panel.is-active .sv2_panel-body {
  opacity: 1;
  transform: translateY(0);
}

.sv2_panel-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.375rem;
}

.sv2_panel-title {
  font-family: var(--font-head);
  font-size: 1.1875rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.625rem;
  letter-spacing: -0.02em;
}

.sv2_panel-desc {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

/* Mobile */
@media (max-width: 991px) {
  .sv2_wrap {
    flex-direction: column;
    gap: 3rem;
  }
  .sv2_content {
    flex: none;
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .sv2_content .section_eyebrow {
    justify-content: center;
  }
  .sv2_content .section_eyebrow::before { display: none; }
  .sv2_desc { max-width: 100%; }
  .sv2_accordion {
    width: 100%;
    height: 22rem;
  }
  .sv2_panel.is-active { width: 18rem; }
}

@media (max-width: 479px) {
  .sv2_accordion { height: 18rem; gap: 0.375rem; }
  .sv2_panel { width: 2.75rem; }
  .sv2_panel.is-active { width: 13rem; }
  .sv2_panel-label { font-size: 0.8125rem; }
}

/* ════════════════════════════════════════════
   SCROLLBAR
════════════════════════════════════════════ */
::-webkit-scrollbar { width: 0.375rem; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--muted2); border-radius: 0.1875rem; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
