@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;1,400;1,700&family=Barlow:wght@300;400;500;600&display=swap');

:root {
  --navy: #0B1929;
  --navy-mid: #112240;
  --navy-light: #1A3050;
  --teal: #1DB87E;
  --teal-dark: #0E9463;
  --teal-bright: #00E08A;
  --amber: #F5A623;
  --white: #FFFFFF;
  --off-white: #E8EDF2;
  --muted: #7A93AB;
  --border: rgba(255,255,255,0.08);
  --border-teal: rgba(29,184,126,0.3);
  --radius: 4px;
  --radius-md: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-teal: 0 0 40px rgba(29,184,126,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 3rem;
  background: rgba(11,25,41,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-brand-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-brand-sub {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--teal); }

.nav-cta {
  background: var(--teal) !important;
  color: var(--navy) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--teal-bright) !important; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 3rem 5rem;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(29,184,126,0.04) 100%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--teal);
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--teal);
  font-weight: 700;
}

.hero-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.hero-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--navy);
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary:hover {
  background: var(--teal-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(29,184,126,0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--off-white);
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* STAT CARDS */
.stat-card-dark {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-top: 3px solid var(--teal);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.stat-card-amber {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-top: 3px solid var(--amber);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.big-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--teal);
}

.big-stat-num.amber { color: var(--amber); }

.big-stat-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.4;
  margin-top: 8px;
  font-style: italic;
}

.big-stat-source {
  font-size: 10px;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.05em;
}

/* STAT STRIP */
.stat-strip {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 3rem;
}

.stat-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
}

.strip-stat {
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid var(--border);
}

.strip-stat:last-child { border-right: none; }

.strip-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}

.strip-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.4;
}

.strip-source {
  font-size: 10px;
  color: rgba(122,147,171,0.5);
  font-style: italic;
  margin-top: 4px;
}

/* SECTIONS */
section { padding: 6rem 3rem; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--teal);
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
}

/* PROBLEM SECTION */
.problem { background: var(--navy-mid); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.problem-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1rem;
}

.problem-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.problem-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

/* QUOTE BLOCK */
.quote-block {
  border-left: 3px solid var(--teal);
  padding: 1.25rem 1.5rem;
  background: rgba(29,184,126,0.05);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2rem 0;
}

.quote-block p {
  font-size: 16px;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.6;
  font-weight: 300;
}

.quote-block cite {
  font-size: 11px;
  color: var(--muted);
  font-style: normal;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 8px;
}

/* HOW IT WORKS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.step-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
}

.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: rgba(29,184,126,0.15);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.step-body {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.price-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  position: relative;
}

.price-card.featured {
  border-color: var(--teal);
  background: rgba(29,184,126,0.05);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--navy);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: 100px;
}

.price-tier {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.price-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.price-period {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
}

.price-desc {
  font-size: 12px;
  color: var(--muted);
  margin: 1rem 0;
  line-height: 1.5;
}

/* INFOGRAPHIC SECTION */
.infographic-section {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* FORM SECTION */
.form-section { background: var(--navy); }

.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
}

.form-card {
  background: var(--navy-mid);
  border: 1px solid var(--border-teal);
  border-radius: var(--radius-md);
  padding: 2.5rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.form-group input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus { border-color: var(--teal); }

.optional {
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
}

.form-error {
  font-size: 11px;
  color: #FF6B6B;
  margin-top: 4px;
  display: none;
}

.form-submit { width: 100%; margin-top: 0.5rem; }

.form-note {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
}

.form-card .form-success { display: none; text-align: center; padding: 1rem; }
.form-success h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.form-success p { font-size: 14px; color: var(--muted); font-weight: 300; }

/* CHECK LIST */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.check-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.check-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(29,184,126,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-dot svg { width: 10px; height: 10px; stroke: var(--teal); }

.check-item p {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.5;
}

/* PARTNER PAGE */
.qualify-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

.qualify-item {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.qualify-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}

.qualify-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.qualify-item p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
}

.qualify-item .signal {
  font-size: 12px;
  font-weight: 600;
  color: var(--amber);
  margin-top: 4px;
}

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

.econ-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
}

.econ-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}

.econ-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.econ-sub {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
}

/* PARTNER TYPE CARDS */
.partner-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.partner-type-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-top: 3px solid var(--teal);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.partner-type-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.partner-type-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

/* CONFIRM PAGE */
.confirm-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--navy);
}

.confirm-card {
  background: var(--navy-mid);
  border: 1px solid var(--border-teal);
  border-radius: var(--radius-md);
  padding: 3.5rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.confirm-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(29,184,126,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.confirm-icon svg { width: 28px; height: 28px; stroke: var(--teal); }

.confirm-card h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.confirm-card p {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.confirm-brand {
  font-size: 11px;
  color: rgba(122,147,171,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* FOOTER */
footer {
  padding: 2rem 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy-mid);
}

.footer-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}

.footer-brand span { color: var(--teal); }
.footer-note { font-size: 11px; color: var(--muted); font-weight: 300; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.7s ease forwards; }
.fade-up-1 { animation-delay: 0.05s; opacity: 0; }
.fade-up-2 { animation-delay: 0.15s; opacity: 0; }
.fade-up-3 { animation-delay: 0.25s; opacity: 0; }
.fade-up-4 { animation-delay: 0.35s; opacity: 0; }

/* OS STATEMENT BAND */
.os-band {
  background: var(--teal);
  padding: 1.25rem 3rem;
  text-align: center;
}

.os-band p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
}

/* INDICE FLOW */
.indice-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 2.5rem 0;
  position: relative;
}

.indice-step {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}

.indice-step::after {
  content: '→';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-60%);
  font-size: 20px;
  color: var(--teal);
  font-weight: 700;
}

.indice-step:last-child::after { display: none; }

.indice-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin: 0 auto 0.75rem;
}

.indice-step:last-child .indice-num {
  background: var(--amber);
}

.indice-step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}

.indice-step-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

/* TIER TABLE */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin: 2rem 0;
}

.tier-item {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
}

.tier-item.active {
  border-color: var(--teal);
  background: rgba(29,184,126,0.08);
}

.tier-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.tier-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.tier-desc {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.4;
}

/* PRODUCT CARDS */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.product-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.product-card.featured {
  border-color: var(--teal);
  background: rgba(29,184,126,0.05);
}

.product-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--teal);
  margin-bottom: 4px;
}

.product-subtitle {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.product-desc {
  font-size: 14px;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.product-scope {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.product-verifica {
  font-size: 11px;
  color: var(--amber);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  line-height: 1.4;
}

/* VERIFICA CALLOUT */
.verifica-band {
  background: rgba(245,166,35,0.05);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
}

.verifica-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--amber);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.verifica-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.verifica-text strong {
  color: var(--off-white);
  font-weight: 500;
}

/* DOMAIN GRID */
.domain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.domain-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.domain-card.core {
  border-color: rgba(29,184,126,0.3);
}

.domain-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: rgba(29,184,126,0.3);
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}

.domain-card.core .domain-num { color: var(--teal); }

.domain-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}

.domain-ai {
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.4;
}

.core-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(29,184,126,0.15);
  color: var(--teal);
  padding: 2px 8px;
  border-radius: 100px;
  margin-bottom: 4px;
}

/* GAP SECTION */
.gap-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  margin: 2rem 0;
}

.gap-box {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  text-align: center;
}

.gap-box.action {
  background: rgba(29,184,126,0.08);
  border-color: var(--teal);
}

.gap-box-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.gap-box-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
}

.gap-box.action .gap-box-title { color: var(--teal); }

.gap-box-items {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 8px;
}

.gap-arrow {
  font-size: 28px;
  color: var(--teal);
  font-weight: 700;
  text-align: center;
  padding: 0 0.5rem;
}

/* NAV ACTIVE STATE */
.nav-links a.active {
  color: var(--teal);
}

/* RESPONSIVE */
@media (max-width: 960px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .stat-strip-inner { grid-template-columns: repeat(2, 1fr); }
  section { padding: 4rem 1.5rem; }
  .problem-grid { grid-template-columns: 1fr; gap: 2rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .form-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .partner-types { grid-template-columns: 1fr; }
  .econ-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
}

/* V3 RESPONSIVE ADDITIONS */
@media (max-width: 960px) {
  .indice-flow { grid-template-columns: 1fr; }
  .indice-step::after { display: none; }
  .tier-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: 1fr; }
  .domain-grid { grid-template-columns: 1fr; }
  .gap-flow { grid-template-columns: 1fr; }
  .verifica-band { grid-template-columns: 1fr; }
}
