/* ═══════════════════════════════════════════════════
   RESET & BASE — White theme, Bigin palette
   Accent: #00C897 teal · Dark elements: #1A1F2E navy
═══════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth
}

:root {
  --accent: #00C897;
  --accent2: #00A87E;
  --accent-lt: rgba(0, 200, 151, .10);
  --accent-bg: rgba(0, 200, 151, .07);
  --navy: #1A1F2E;
  --navy2: #242938;
  --bg: #F4F5F8;
  --canvas: #FFFFFF;
  --border: #E8EAED;
  --border2: #D1D5DB;
  --text: #1A1F2E;
  --text2: #6B7280;
  --text3: #9CA3AF;
  --amber: #F59E0B;
  --amber-lt: rgba(245, 158, 11, .09);
  --red: #EF4444;
  --red-lt: rgba(239, 68, 68, .09);
  --blue: #3B82F6;
  --blue-lt: rgba(59, 130, 246, .09);
  --sh-xs: 0 1px 3px rgba(0, 0, 0, .07);
  --sh-sm: 0 2px 8px rgba(0, 0, 0, .08);
  --sh-md: 0 4px 20px rgba(0, 0, 0, .09);
  --sh-lg: 0 8px 40px rgba(0, 0, 0, .12);
  --sh-xl: 0 20px 60px rgba(0, 0, 0, .14);
  --r: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-2xl: 22px;
  --font: 'Plus Jakarta Sans', sans-serif;
  --font2: 'Inter', sans-serif;
}

body {
  font-family: var(--font2);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden
}

a {
  text-decoration: none;
  color: inherit
}

::-webkit-scrollbar {
  width: 4px
}

::-webkit-scrollbar-track {
  background: var(--bg)
}

::-webkit-scrollbar-thumb {
  background: var(--border2);
  border-radius: 4px
}

/* ═══════════════════════════════════════════════════
   ANNOUNCEMENT BAR
═══════════════════════════════════════════════════ */
.announce-bar {
  background: linear-gradient(90deg, var(--navy), #242938, #1e3a30);
  padding: 10px 20px;
  text-align: center;
  font-family: var(--font2);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
  letter-spacing: .01em;
  position: relative;
  z-index: 901;
}

.announce-bar a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700
}

.announce-bar a:hover {
  text-decoration: underline
}

/* ═══════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0 48px;
  height: 64px;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--sh-xs);
}

.nav-logo {
  font-family: var(--font);
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(0, 200, 151, .35);
}

.logo-text span {
  color: var(--accent)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px
}

.nav-link {
  font-family: var(--font2);
  font-size: 13.5px;
  color: var(--text2);
  font-weight: 500;
  transition: .15s;
  padding: 6px 12px;
  border-radius: var(--r);
}

.nav-link:hover {
  color: var(--text);
  background: var(--bg)
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 9px
}

.btn-ghost {
  padding: 7px 18px;
  border: 1.5px solid var(--border2);
  border-radius: var(--r);
  font-family: var(--font2);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  transition: .17s;
}

.btn-ghost:hover {
  background: var(--bg);
  border-color: var(--accent);
  color: var(--accent)
}

.btn-primary {
  padding: 8px 20px;
  background: var(--accent);
  border: none;
  border-radius: var(--r);
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: .18s;
  letter-spacing: .01em;
  box-shadow: 0 4px 14px rgba(0, 200, 151, .3);
}

.btn-primary:hover {
  background: var(--accent2);
  box-shadow: 0 6px 22px rgba(0, 200, 151, .4);
  transform: translateY(-1px)
}

.btn-lg {
  padding: 14px 32px;
  font-size: 15px;
  border-radius: 10px;
  font-weight: 800;
  letter-spacing: .01em
}

.btn-outline-lg {
  padding: 13px 30px;
  font-size: 15px;
  border-radius: 10px;
  border: 1.5px solid var(--border2);
  color: var(--text);
  background: var(--canvas);
  font-family: var(--font);
  font-weight: 700;
  cursor: pointer;
  transition: .18s;
}

.btn-outline-lg:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-bg)
}

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 48px 40px;
  position: relative;
  text-align: center;
  background: var(--canvas);
  overflow: hidden;
}

/* Subtle grid lines */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 30%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 30%, black 20%, transparent 75%);
  opacity: .5;
}

/* Teal glow blob */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 200, 151, .08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(0, 200, 151, .3);
  border-radius: 100px;
  background: var(--accent-bg);
  margin-bottom: 26px;
  font-family: var(--font2);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent2);
  animation: fadeUp .55s ease both;
  position: relative;
  z-index: 1;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 200, 151, .5)
  }

  50% {
    box-shadow: 0 0 0 7px rgba(0, 200, 151, 0)
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero-title {
  font-family: var(--font);
  font-size: 70px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.06;
  letter-spacing: -.03em;
  margin-bottom: 22px;
  animation: fadeUp .65s .1s ease both;
  position: relative;
  z-index: 1;
}

.hero-title .gr {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 40%, #00B4D8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-family: var(--font2);
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text2);
  max-width: 620px;
  line-height: 1.75;
  margin: 0 auto 40px;
  animation: fadeUp .65s .2s ease both;
  position: relative;
  z-index: 1;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .65s .3s ease both;
  position: relative;
  z-index: 1;
}

.hero-trust {
  margin-top: 16px;
  font-family: var(--font2);
  font-size: 12.5px;
  color: var(--text3);
  animation: fadeUp .65s .35s ease both;
  position: relative;
  z-index: 1;
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 64px;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: var(--canvas);
  box-shadow: var(--sh-md);
  animation: fadeUp .65s .45s ease both;
  position: relative;
  z-index: 1;
}

.hstat {
  padding: 22px 32px;
  border-right: 1px solid var(--border);
  text-align: center;
  flex: 1;
}

.hstat:last-child {
  border-right: none
}

.hstat-num {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), #00B4D8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 5px;
}

.hstat-lbl {
  font-family: var(--font2);
  font-size: 11.5px;
  color: var(--text3);
  font-weight: 500
}

/* ═══════════════════════════════════════════════════
   TICKER
═══════════════════════════════════════════════════ */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  padding: 12px 0;
  position: relative;
  z-index: 2;
}

.ticker-inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 36s linear infinite
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 28px;
  font-family: var(--font2);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text2);
  border-right: 1px solid var(--border);
}

.ticker-item .ti-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

@keyframes ticker {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ═══════════════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════════════ */
.section {
  padding: 96px 48px;
  position: relative;
  z-index: 2;
  background: var(--canvas)
}

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

.section-eyebrow {
  font-family: var(--font2);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--accent2);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #00B4D8);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 14px;
}

.section-title .gr {
  background: linear-gradient(135deg, var(--accent), #00B4D8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-family: var(--font2);
  font-size: 16px;
  color: var(--text2);
  max-width: 580px;
  line-height: 1.75
}

/* ═══════════════════════════════════════════════════
   WORKFLOW
═══════════════════════════════════════════════════ */
.workflow-section {
  padding: 88px 48px;
  background: var(--navy);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.workflow-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 200, 151, .07), transparent 70%);
  pointer-events: none;
}

.workflow-title {
  font-family: var(--font);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}

.workflow-sub {
  font-family: var(--font2);
  font-size: 15px;
  color: rgba(255, 255, 255, .5);
  text-align: center;
  margin-bottom: 56px;
}

.workflow-diagram {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0
}

.wf-node {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative
}

.wf-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: rgba(0, 200, 151, .1);
  border: 1.5px solid rgba(0, 200, 151, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 14px;
  position: relative;
  transition: .3s;
  cursor: default;
}

.wf-icon-wrap:hover {
  border-color: rgba(0, 200, 151, .6);
  background: rgba(0, 200, 151, .18);
  transform: translateY(-4px);
  box-shadow: 0 0 24px rgba(0, 200, 151, .2)
}

.wf-node-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--accent);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 200, 151, .45);
}

.wf-label {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px
}

.wf-sublabel {
  font-family: var(--font2);
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
  max-width: 100px;
  line-height: 1.55
}

.wf-arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 10px;
  margin-bottom: 28px;
  position: relative;
}

.wf-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 151, .4), transparent);
  transform: translateY(-50%);
}

.wf-arrow span {
  background: var(--navy);
  padding: 0 6px;
  position: relative;
  z-index: 1;
  color: rgba(0, 200, 151, .6);
  font-size: 18px;
}

/* ═══════════════════════════════════════════════════
   SOURCES
═══════════════════════════════════════════════════ */
.sources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 48px
}

.source-card {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 22px 18px;
  transition: .25s;
  cursor: default;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-xs);
}

.source-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #00B4D8);
  opacity: 0;
  transition: .25s;
}

.source-card:hover {
  border-color: rgba(0, 200, 151, .35);
  transform: translateY(-4px);
  box-shadow: var(--sh-md)
}

.source-card:hover::before {
  opacity: 1
}

.src-name {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.src-icon {
  font-size: 18px
}

.src-badge {
  font-family: var(--font2);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  border: 1px solid;
  margin-left: auto
}

.badge-live {
  color: var(--accent2);
  border-color: rgba(0, 200, 151, .3);
  background: var(--accent-bg)
}

.badge-soon {
  color: var(--amber);
  border-color: rgba(245, 158, 11, .3);
  background: var(--amber-lt)
}

.src-desc {
  font-family: var(--font2);
  font-size: 12.5px;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 12px
}

.src-count {
  font-family: var(--font2);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent2);
  display: flex;
  align-items: center;
  gap: 5px
}

/* ═══════════════════════════════════════════════════
   AI SECTION
═══════════════════════════════════════════════════ */
.ai-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.ai-visual {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}

.ai-vis-header {
  background: var(--navy);
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.av-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%
}

.av-title {
  font-family: var(--font2);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .45);
  margin-left: 4px
}

.ai-vis-body {
  padding: 16px;
  background: var(--canvas)
}

.lead-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 7px;
  border: 1px solid var(--border);
  background: var(--canvas);
  transition: .3s;
  animation: slideIn .4s ease both;
}

.lead-row:hover {
  border-color: rgba(0, 200, 151, .3);
  background: var(--accent-bg)
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-12px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

.lr-avatar {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(0, 200, 151, .2), rgba(0, 180, 216, .15));
  border: 1px solid rgba(0, 200, 151, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 800;
  color: var(--accent2);
  flex-shrink: 0;
}

.lr-info {
  flex: 1
}

.lr-name {
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px
}

.lr-meta {
  font-family: var(--font2);
  font-size: 11px;
  color: var(--text3)
}

.lr-score {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0
}

.score-bar {
  width: 48px;
  height: 4px;
  border-radius: 4px;
  background: var(--border);
  overflow: hidden
}

.score-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1.2s ease
}

.score-num {
  font-family: var(--font2);
  font-size: 11.5px;
  font-weight: 700
}

.score-high {
  color: var(--accent2)
}

.score-fill-high {
  background: linear-gradient(90deg, var(--accent), #00B4D8)
}

.score-mid {
  color: var(--amber)
}

.score-fill-mid {
  background: linear-gradient(90deg, var(--amber), #FBBF24)
}

.score-low {
  color: var(--red)
}

.score-fill-low {
  background: var(--red)
}

.lr-status {
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 700;
  font-family: var(--font2);
  flex-shrink: 0
}

.status-hot {
  background: rgba(0, 200, 151, .1);
  color: var(--accent2);
  border: 1px solid rgba(0, 200, 151, .25)
}

.status-warm {
  background: var(--amber-lt);
  color: var(--amber);
  border: 1px solid rgba(245, 158, 11, .25)
}

.status-cold {
  background: var(--red-lt);
  color: var(--red);
  border: 1px solid rgba(239, 68, 68, .25)
}

.ai-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px
}

.ai-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: .2s;
  box-shadow: var(--sh-xs);
}

.ai-feat:hover {
  border-color: rgba(0, 200, 151, .3);
  transform: translateX(4px);
  box-shadow: var(--sh-sm)
}

.af-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-bg);
  border: 1px solid rgba(0, 200, 151, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.af-name {
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px
}

.af-desc {
  font-family: var(--font2);
  font-size: 12.5px;
  color: var(--text2);
  line-height: 1.6
}

/* ═══════════════════════════════════════════════════
   MARKETPLACE
═══════════════════════════════════════════════════ */
.marketplace-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 14px
}

.mkt-filters {
  display: flex;
  gap: 7px;
  flex-wrap: wrap
}

.mkt-filter {
  padding: 6px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: var(--font2);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text2);
  background: var(--canvas);
  cursor: pointer;
  transition: .15s;
}

.mkt-filter:hover {
  border-color: var(--accent);
  color: var(--accent)
}

.mkt-filter.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-bg)
}

.mkt-search {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  background: var(--canvas);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  min-width: 240px;
  transition: .14s;
}

.mkt-search:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 200, 151, .08)
}

.mkt-search input {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font2);
  font-size: 13px;
  color: var(--text);
  width: 100%
}

.mkt-search input::placeholder {
  color: var(--text3)
}

.leads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px
}

.lead-card {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: .22s;
  box-shadow: var(--sh-xs);
}

.lead-card:hover {
  border-color: rgba(0, 200, 151, .35);
  box-shadow: var(--sh-md);
  transform: translateY(-3px)
}

.lc-head {
  padding: 15px 17px 13px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 11px;
}

.lc-avatar {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(0, 200, 151, .2), rgba(0, 180, 216, .15));
  border: 1.5px solid rgba(0, 200, 151, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 800;
  color: var(--accent2);
  flex-shrink: 0;
}

.lc-info {
  flex: 1
}

.lc-name {
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy)
}

.lc-pos {
  font-family: var(--font2);
  font-size: 12px;
  color: var(--text2)
}

.lc-score-pill {
  font-family: var(--font2);
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  flex-shrink: 0
}

.lc-body {
  padding: 13px 17px
}

.lc-detail-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-family: var(--font2);
  font-size: 12.5px;
  color: var(--text2)
}

.lc-icon {
  font-size: 12px;
  width: 17px;
  flex-shrink: 0
}

.lc-val {
  color: var(--text);
  font-weight: 500
}

.lc-masked {
  font-family: var(--font2);
  font-size: 12px;
  background: var(--bg);
  padding: 2px 7px;
  border-radius: 5px;
  border: 1px solid var(--border);
  color: var(--text3);
  letter-spacing: .05em;
}

.lc-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin: 9px 0 12px
}

.lc-tag {
  padding: 3px 9px;
  border-radius: 100px;
  font-family: var(--font2);
  font-size: 10.5px;
  font-weight: 600;
  background: var(--accent-bg);
  border: 1px solid rgba(0, 200, 151, .2);
  color: var(--accent2);
}

.lc-footer {
  padding: 12px 17px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lc-price {
  font-family: var(--font);
  font-size: 19px;
  font-weight: 800;
  color: var(--navy)
}

.lc-price-sub {
  font-family: var(--font2);
  font-size: 11px;
  color: var(--text3);
  margin-top: 1px
}

.btn-buy {
  padding: 8px 18px;
  background: var(--accent);
  border: none;
  border-radius: var(--r);
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: .18s;
  box-shadow: 0 3px 10px rgba(0, 200, 151, .28);
}

.btn-buy:hover {
  background: var(--accent2);
  box-shadow: 0 5px 18px rgba(0, 200, 151, .4);
  transform: translateY(-1px)
}

/* ═══════════════════════════════════════════════════
   SELL SECTION
═══════════════════════════════════════════════════ */
.sell-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sell-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.sell-steps {
  display: flex;
  flex-direction: column;
  gap: 0
}

.sell-step {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border)
}

.sell-step:last-child {
  border-bottom: none
}

.ss-num {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 200, 151, .3);
}

.ss-title {
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px
}

.ss-desc {
  font-family: var(--font2);
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7
}

.sell-form-card {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 30px;
  box-shadow: var(--sh-lg);
}

.sf-title {
  font-family: var(--font);
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 5px
}

.sf-sub {
  font-family: var(--font2);
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 22px
}

.form-group {
  margin-bottom: 14px
}

.form-label {
  font-family: var(--font2);
  font-size: 11px;
  font-weight: 700;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: .08em;
  display: block;
  margin-bottom: 5px;
}

.form-input {
  width: 100%;
  padding: 9px 13px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: var(--font2);
  font-size: 13px;
  color: var(--navy);
  outline: none;
  transition: .15s;
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 200, 151, .1);
  background: var(--canvas)
}

.form-input::placeholder {
  color: var(--text3)
}

select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239CA3AF' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 11px center;
  padding-right: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.form-input option {
  background: #fff;
  color: var(--navy)
}

/* ═══════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════ */
.pricing-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  width: fit-content;
}

.pricing-tab {
  padding: 10px 28px;
  font-family: var(--font2);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text2);
  cursor: pointer;
  border: none;
  background: var(--canvas);
  transition: .15s;
}

.pricing-tab.active {
  background: var(--accent);
  color: #fff
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.price-card {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: .22s;
  box-shadow: var(--sh-xs);
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg)
}

.price-card.featured {
  border-color: var(--accent)
}

.price-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #00B4D8)
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 100px;
  font-family: var(--font2);
  letter-spacing: .05em;
}

.plan-name {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: var(--text2);
  margin-bottom: 14px
}

.plan-price {
  margin-bottom: 5px
}

.plan-amount {
  font-family: var(--font);
  font-size: 36px;
  font-weight: 800;
  color: var(--navy)
}

.plan-period {
  font-family: var(--font2);
  font-size: 14px;
  color: var(--text2)
}

.plan-sub {
  font-family: var(--font2);
  font-size: 12.5px;
  color: var(--text2);
  margin-bottom: 22px
}

.plan-features {
  list-style: none;
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.plan-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font2);
  font-size: 13px;
  color: var(--text)
}

.pf-check {
  color: var(--accent);
  font-size: 13px;
  flex-shrink: 0;
  font-weight: 700
}

.pf-no {
  color: var(--border2);
  font-size: 13px;
  flex-shrink: 0
}

.pf-no+span {
  color: var(--text3)
}

.credits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  display: none
}

.credit-card {
  background: var(--canvas);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  text-align: center;
  transition: .2s;
  cursor: pointer;
  box-shadow: var(--sh-xs);
}

.credit-card:hover {
  border-color: var(--accent);
  box-shadow: var(--sh-md);
  transform: translateY(-3px)
}

.credit-card.popular {
  border-color: var(--accent);
  background: var(--accent-bg)
}

.cc-credits {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), #00B4D8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.cc-label {
  font-family: var(--font2);
  font-size: 12px;
  color: var(--text2);
  margin-bottom: 12px
}

.cc-price {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 3px
}

.cc-per {
  font-family: var(--font2);
  font-size: 12px;
  color: var(--text3)
}

.cc-saving {
  font-family: var(--font2);
  font-size: 11px;
  color: var(--accent2);
  font-weight: 700;
  margin-top: 6px
}

/* ═══════════════════════════════════════════════════
   INTEGRATIONS
═══════════════════════════════════════════════════ */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 44px
}

.int-card {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px 14px;
  text-align: center;
  transition: .2s;
  box-shadow: var(--sh-xs);
}

.int-card:hover {
  border-color: rgba(0, 200, 151, .35);
  transform: translateY(-3px);
  box-shadow: var(--sh-md)
}

.int-icon {
  font-size: 28px;
  margin-bottom: 9px
}

.int-name {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px
}

.int-desc {
  font-family: var(--font2);
  font-size: 11.5px;
  color: var(--text2)
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px
}

.testi-card {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  transition: .2s;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-xs);
}

.testi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #00B4D8);
  opacity: 0;
  transition: .22s;
}

.testi-card:hover {
  border-color: rgba(0, 200, 151, .3);
  transform: translateY(-3px);
  box-shadow: var(--sh-md)
}

.testi-card:hover::before {
  opacity: 1
}

.testi-quote {
  font-size: 34px;
  line-height: 1;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--accent), #00B4D8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font);
}

.testi-text {
  font-family: var(--font2);
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: italic
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 11px
}

.ta-avatar {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0, 200, 151, .2), rgba(0, 180, 216, .15));
  border: 1.5px solid rgba(0, 200, 151, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 800;
  color: var(--accent2);
}

.ta-name {
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy)
}

.ta-role {
  font-family: var(--font2);
  font-size: 11.5px;
  color: var(--text2)
}

/* ═══════════════════════════════════════════════════
   ROI STATS — dark section
═══════════════════════════════════════════════════ */
.roi-section {
  padding: 96px 48px;
  background: var(--navy);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.roi-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 151, .07), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

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

.roi-header {
  text-align: center;
  margin-bottom: 60px
}

.roi-section .section-eyebrow {
  color: var(--accent)
}

.roi-section .section-eyebrow::before {
  background: linear-gradient(90deg, var(--accent), #00B4D8)
}

.roi-section .section-title {
  color: #fff
}

.roi-section .section-sub {
  color: rgba(255, 255, 255, .5);
  margin: 0 auto
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px
}

.roi-stat {
  padding: 38px 28px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .07);
  position: relative;
}

.roi-stat:last-child {
  border-right: none
}

.roi-num {
  font-family: var(--font);
  font-size: clamp(38px, 3.8vw, 52px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), #00B4D8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.roi-label {
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 6px
}

.roi-sub {
  font-family: var(--font2);
  font-size: 12.5px;
  color: rgba(255, 255, 255, .35);
  line-height: 1.6;
  max-width: 170px;
  margin: 0 auto
}

/* ═══════════════════════════════════════════════════
   CTA
═══════════════════════════════════════════════════ */
.cta-section {
  padding: 112px 48px;
  text-align: center;
  background: var(--canvas);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 200, 151, .07), transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font);
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-title .gr {
  background: linear-gradient(135deg, var(--accent), #00B4D8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-sub {
  font-family: var(--font2);
  font-size: 16.5px;
  color: var(--text2);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position: relative;
  z-index: 1
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1
}

.cta-trust {
  margin-top: 20px;
  font-family: var(--font2);
  font-size: 12.5px;
  color: var(--text3);
  position: relative;
  z-index: 1
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 56px 48px 30px
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px
}

.fg-brand {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  gap: 9px
}

.fg-brand-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px
}

.fg-brand span {
  color: var(--accent)
}

.fg-desc {
  font-family: var(--font2);
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.7;
  margin-bottom: 18px
}

.fg-title {
  font-family: var(--font);
  font-size: 11.5px;
  font-weight: 800;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .12em
}

.fg-link {
  display: block;
  font-family: var(--font2);
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
  margin-bottom: 9px;
  transition: .13s
}

.fg-link:hover {
  color: var(--accent)
}

.footer-divider {
  max-width: 1200px;
  margin: 0 auto 24px;
  height: 1px;
  background: rgba(255, 255, 255, .07)
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px
}

.fb-copy {
  font-family: var(--font2);
  font-size: 12.5px;
  color: rgba(255, 255, 255, .3)
}

.fb-links {
  display: flex;
  gap: 20px
}

.fb-link {
  font-family: var(--font2);
  font-size: 12.5px;
  color: rgba(255, 255, 255, .3);
  text-decoration: none;
  transition: .13s
}

.fb-link:hover {
  color: var(--accent)
}

/* ═══════════════════════════════════════════════════
   MODAL
═══════════════════════════════════════════════════ */
.modal-bg {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(26, 31, 46, .5);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: .2s;
}

.modal-bg.open {
  opacity: 1;
  pointer-events: all
}

.modal {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  width: 480px;
  max-width: 100%;
  box-shadow: var(--sh-xl);
  transform: scale(.95) translateY(14px);
  transition: .26s cubic-bezier(.34, 1.4, .64, 1);
}

.modal-bg.open .modal {
  transform: scale(1) translateY(0)
}

.modal-head {
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 800;
  color: var(--navy)
}

.modal-close {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  color: var(--text2);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .13s;
}

.modal-close:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-lt)
}

.modal-body {
  padding: 20px 24px
}

.modal-foot {
  padding: 14px 24px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 9px;
  justify-content: flex-end
}

.modal-lead-preview {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px;
  margin-bottom: 16px;
}

.mlp-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.mlp-row:last-child {
  border-bottom: none
}

.mlp-key {
  font-family: var(--font2);
  color: var(--text2);
  font-weight: 600
}

.mlp-val {
  font-family: var(--font2);
  color: var(--navy)
}

/* ═══════════════════════════════════════════════════
   TOAST
═══════════════════════════════════════════════════ */
#toast {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 9999;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--r-xl);
  font-family: var(--font2);
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--sh-lg);
  transform: translateY(80px);
  opacity: 0;
  transition: all .32s cubic-bezier(.34, 1.4, .64, 1);
  pointer-events: none;
}

#toast.show {
  transform: translateY(0);
  opacity: 1
}

/* ── Utils ─ */
.count-up {
  display: inline-block
}

.section-center {
  text-align: center
}

.section-center .section-eyebrow {
  justify-content: center
}

.section-center .section-sub {
  margin: 0 auto
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media(max-width:1100px) {
  .leads-grid {
    grid-template-columns: repeat(2, 1fr)
  }

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

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

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

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

  .roi-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .07)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:900px) {

  .ai-grid,
  .sell-grid {
    grid-template-columns: 1fr
  }

  .workflow-diagram {
    flex-wrap: wrap;
    gap: 24px
  }

  .wf-arrow {
    display: none
  }

  .nav {
    padding: 0 24px
  }

  .section {
    padding: 76px 28px
  }

  .workflow-section {
    padding: 68px 28px
  }

  .hero {
    padding: 88px 28px 68px
  }
}

@media(max-width:680px) {
  .nav-links {
    display: none
  }

  .leads-grid {
    grid-template-columns: 1fr
  }

  .pricing-grid {
    grid-template-columns: 1fr
  }

  .credits-grid {
    grid-template-columns: 1fr 1fr
  }

  .sources-grid {
    grid-template-columns: 1fr 1fr
  }

  .testi-grid {
    grid-template-columns: 1fr
  }

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

  .footer-grid {
    grid-template-columns: 1fr
  }

  .hero-stats {
    flex-direction: column
  }

  .hstat {
    border-right: none;
    border-bottom: 1px solid var(--border)
  }

  .hstat:last-child {
    border-bottom: none
  }

  .roi-grid {
    grid-template-columns: 1fr 1fr
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }
}