/* ═══════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════ */
:root {
  --navy: #001F3F;
  --emerald: #00C853;
  --datablue: #3B82F6;
  --vellum: #F8FAFC;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --muted: #64748B;
  --inter: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ═══════════════════════════════════════════
   RESET
═══════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--inter);
  background: var(--white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 31, 63, .15);
  border-radius: 3px;
}

/* ═══════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

@media(min-width:640px) {
  .container {
    padding: 0 32px;
  }
}

@media(min-width:1024px) {
  .container {
    padding: 0 48px;
  }
}

.font-mono {
  font-family: var(--mono);
}

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

@keyframes fadeIn {
  from { opacity: 0 }
  to   { opacity: 1 }
}

@keyframes float {
  0%, 100% { transform: translateY(0) }
  50%      { transform: translateY(-12px) }
}

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

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 200, 83, .3) }
  50%      { box-shadow: 0 0 40px rgba(0, 200, 83, .6) }
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1) }
  50%      { opacity: .5; transform: scale(.8) }
}

@keyframes spin {
  to { transform: rotate(360deg) }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(20px) }
  to   { opacity: 1; transform: translateY(0) }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-d1 { transition-delay: .1s }
.reveal-d2 { transition-delay: .2s }
.reveal-d3 { transition-delay: .3s }
.reveal-d4 { transition-delay: .4s }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  transition: all .25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn-emerald {
  background: var(--emerald);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 200, 83, .3);
  animation: pulseGlow 2s ease-in-out infinite;
}

.btn-emerald:hover {
  background: #00a846;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 200, 83, .4);
}

.btn-outline {
  background: rgba(255, 255, 255, .07);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .2);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .4);
}

.btn-ghost-dark {
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .15);
}

.btn-ghost-dark:hover {
  background: rgba(255, 255, 255, .15);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 17px;
}

.btn svg {
  flex-shrink: 0;
  transition: transform .2s;
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all .5s var(--ease);
}

.navbar.scrolled {
  background: rgba(0, 31, 63, .96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, .2);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
}

.navbar-logo img {
  height: 38px;
  width: auto;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, .7);
  transition: color .2s;
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-ticker {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 6px 14px;
  opacity: 0;
  transform: translateX(20px);
  transition: all .4s var(--ease);
}

.nav-ticker.visible {
  opacity: 1;
  transform: none;
}

.nav-ticker-dot {
  width: 8px;
  height: 8px;
  background: var(--emerald);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

.nav-ticker-text {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255, 255, 255, .8);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
  display: block;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--navy);
  padding: 96px 24px 32px;
  display: none;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
}

@media(max-width:767px) {
  .nav-links,
  .nav-right {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

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

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .03;
  background-image: linear-gradient(rgba(255, 255, 255, .1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-orb-1 {
  position: absolute;
  top: 25%;
  left: -128px;
  width: 384px;
  height: 384px;
  background: rgba(59, 130, 246, .2);
  border-radius: 50%;
  filter: blur(80px);
}

.hero-orb-2 {
  position: absolute;
  bottom: 25%;
  right: 0;
  width: 320px;
  height: 320px;
  background: rgba(0, 200, 83, .1);
  border-radius: 50%;
  filter: blur(80px);
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 112px;
  padding-bottom: 64px;
}

.hero-content {
  animation: fadeUp .7s var(--ease) both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 8px 18px;
  margin-bottom: 32px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--emerald);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

.hero-badge-text {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255, 255, 255, .8);
  letter-spacing: .06em;
}

.hero h1 {
  font-size: clamp(38px, 5.5vw, 62px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--emerald);
}

.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-avatars {
  display: flex;
}

.hero-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: linear-gradient(135deg, var(--datablue), var(--emerald));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-left: -10px;
}

.hero-avatars .hero-avatar:first-child {
  margin-left: 0;
}

.hero-proof-text p:first-child {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.hero-proof-text p:last-child {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
}

/* Hero visual */
.hero-visual {
  position: relative;
  animation: fadeUp .8s var(--ease) .2s both;
}

.hero-mockup {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 40px 80px rgba(0, 0, 0, .4);
}

.hero-mockup-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 31, 63, .6) 0%, transparent 50%);
  pointer-events: none;
}

.hero-mockup img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-float-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
  z-index: 2;
}

.hero-float-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 200, 83, .1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.hero-float-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.hero-float-sub {
  font-size: 11px;
  color: rgba(0, 31, 63, .5);
}

@media(max-width:1023px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-visual {
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-float-card {
    display: none;
  }
}

@media(max-width:639px) {
  .hero {
    min-height: auto;
    padding: 80px 0 48px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ═══════════════════════════════════════════
   TICKER
═══════════════════════════════════════════ */
.ticker-section {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding: 14px 0;
  overflow: hidden;
}

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

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 24px;
}

.ticker-dot {
  width: 7px;
  height: 7px;
  background: var(--emerald);
  border-radius: 50%;
  flex-shrink: 0;
}

.ticker-cat {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.ticker-sep {
  font-size: 11px;
  color: rgba(255, 255, 255, .2);
}

.ticker-uf {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, .5);
}

.ticker-val {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: rgba(0, 200, 83, .8);
}

/* ═══════════════════════════════════════════
   SECTION COMMON
═══════════════════════════════════════════ */
.section-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.section-eyebrow.blue  { color: var(--datablue) }
.section-eyebrow.green { color: var(--emerald) }

.section-h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
}

.section-sub {
  font-size: 17px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   PROBLEM
═══════════════════════════════════════════ */
.problem {
  padding: 96px 0;
  background: var(--vellum);
}

.problem-header {
  text-align: center;
  margin-bottom: 64px;
}

.problem-header .section-h2 {
  color: var(--navy);
  max-width: 640px;
  margin: 0 auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.problem-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  border: 1.5px solid var(--border);
  transition: all .35s var(--ease);
}

.problem-card:hover {
  border-color: #fca5a5;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .06);
}

.problem-icon {
  width: 48px;
  height: 48px;
  background: #fef2f2;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background .3s;
}

.problem-card:hover .problem-icon {
  background: #fee2e2;
}

.problem-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.problem-footer-text {
  text-align: center;
  margin-top: 48px;
  font-size: 17px;
  color: rgba(0, 31, 63, .6);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.problem-footer-text strong {
  color: var(--navy);
}

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

/* ═══════════════════════════════════════════
   SOLUTION
═══════════════════════════════════════════ */
.solution {
  padding: 96px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.solution-bg-img {
  position: absolute;
  inset: 0;
  opacity: .15;
}

.solution-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--navy) 0%, rgba(0, 31, 63, .95) 50%, var(--navy) 100%);
}

.solution .container {
  position: relative;
  z-index: 1;
}

.solution-header {
  text-align: center;
  margin-bottom: 80px;
}

.solution-header .section-h2 {
  color: var(--white);
  max-width: 640px;
  margin: 0 auto 16px;
}

.solution-header .section-sub {
  color: rgba(255, 255, 255, .5);
  max-width: 560px;
  margin: 0 auto;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.solution-card {
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  padding: 36px 30px;
  transition: background .3s;
  position: relative;
}

.solution-card:hover {
  background: rgba(255, 255, 255, .09);
}

.solution-card-num {
  font-family: var(--mono);
  font-size: 13px;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 6px;
}

.solution-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.solution-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.solution-icon.blue   { background: rgba(59, 130, 246, .15); color: var(--datablue) }
.solution-icon.green  { background: rgba(0, 200, 83, .15);   color: var(--emerald) }
.solution-icon.purple { background: rgba(168, 85, 247, .15); color: #a855f7 }

.solution-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.solution-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
}

.solution-arrow {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, .2);
  z-index: 2;
}

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

  .solution-arrow {
    display: none;
  }
}

/* ═══════════════════════════════════════════
   BENEFITS
═══════════════════════════════════════════ */
.benefits {
  padding: 96px 0;
  background: var(--vellum);
}

.benefits-header {
  text-align: center;
  margin-bottom: 64px;
}

.benefits-header .section-h2 {
  color: var(--navy);
  max-width: 680px;
  margin: 0 auto;
}

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

.benefit-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1.5px solid var(--border);
  transition: all .35s var(--ease);
}

.benefit-card:hover {
  box-shadow: 0 12px 40px rgba(0, 31, 63, .07);
  border-color: rgba(0, 31, 63, .15);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 31, 63, .06);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background .3s;
}

.benefit-card:hover .benefit-icon {
  background: rgba(0, 31, 63, .1);
}

.benefit-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

@media(max-width:1023px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ═══════════════════════════════════════════
   TOOLS
═══════════════════════════════════════════ */
.tools {
  padding: 96px 0;
  background: var(--white);
  position: relative;
}

.tools-header {
  text-align: center;
  margin-bottom: 64px;
}

.tools-header .section-h2 {
  color: var(--navy);
  max-width: 720px;
  margin: 0 auto 16px;
}

.tools-header .section-sub {
  max-width: 620px;
  margin: 0 auto;
}

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

.tool-card {
  background: var(--vellum);
  border-radius: 20px;
  padding: 32px 26px;
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all .35s var(--ease);
}

.tool-card:hover {
  box-shadow: 0 16px 44px rgba(0, 31, 63, .08);
  border-color: rgba(0, 31, 63, .18);
  transform: translateY(-4px);
}

.tool-icon {
  width: 52px;
  height: 52px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: all .3s;
}

.tool-card:hover .tool-icon {
  transform: scale(1.06);
  border-color: rgba(0, 200, 83, .35);
}

.tool-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}

.tool-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.tool-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--emerald);
  text-decoration: none;
  transition: gap .25s var(--ease);
}

.tool-link:hover {
  gap: 10px;
}

.tool-card.ai {
  background: linear-gradient(160deg, rgba(0, 200, 83, .1), rgba(0, 200, 83, .02));
  border-color: rgba(0, 200, 83, .25);
}

.tool-card.ai .tool-icon {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--white);
}

@media(max-width:1199px) {
  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:899px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ═══════════════════════════════════════════
   DEMO
═══════════════════════════════════════════ */
.demo {
  padding: 96px 0;
  background: var(--white);
}

.demo-header {
  text-align: center;
  margin-bottom: 64px;
}

.demo-header .section-h2 {
  color: var(--navy);
  max-width: 640px;
  margin: 0 auto 16px;
}

.demo-header .section-sub {
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
}

.demo-browser {
  max-width: 960px;
  margin: 0 auto 64px;
  background: var(--navy);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 40px 80px rgba(0, 31, 63, .18);
}

.demo-browser-bar {
  background: rgba(0, 31, 63, .7);
  border-radius: 10px 10px 0 0;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
}

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

.demo-dot.red { background: rgba(252, 100, 100, .6) }
.demo-dot.yel { background: rgba(252, 196, 60, .6) }
.demo-dot.grn { background: rgba(76, 205, 115, .6) }

.demo-url-bar {
  background: rgba(255, 255, 255, .08);
  border-radius: 8px;
  padding: 5px 16px;
  margin: 0 auto;
}

.demo-url-bar span {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, .35);
}

.demo-browser img {
  width: 100%;
  border-radius: 0 0 10px 10px;
  display: block;
}

.demo-features {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.demo-feat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.demo-feat-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 31, 63, .06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-feat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}

/* ═══════════════════════════════════════════
   SOCIAL PROOF
═══════════════════════════════════════════ */
.social-proof {
  padding: 96px 0;
  background: var(--vellum);
}

.social-proof-header {
  text-align: center;
  margin-bottom: 64px;
}

.social-proof-header .section-h2 {
  color: var(--navy);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.stat-card {
  background: var(--navy);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
}

.stat-value {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  color: var(--emerald);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1.5px solid var(--border);
  transition: all .35s var(--ease);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  box-shadow: 0 16px 40px rgba(0, 31, 63, .08);
  transform: translateY(-4px);
}

.testimonial-quote {
  opacity: .08;
  margin-bottom: 16px;
  color: var(--navy);
}

.testimonial-text {
  font-size: 15px;
  color: rgba(0, 31, 63, .8);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.star {
  font-size: 14px;
  color: #FBBF24;
}

.testimonial-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.testimonial-role {
  font-size: 12px;
  color: var(--muted);
}

@media(max-width:1023px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:639px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══════════════════════════════════════════
   PRICING
═══════════════════════════════════════════ */
.pricing {
  padding: 96px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.pricing-orb {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: rgba(0, 200, 83, .08);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.pricing .container {
  position: relative;
  z-index: 1;
}

.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing-header .section-h2 {
  color: var(--white);
  max-width: 640px;
  margin: 0 auto 16px;
}

.pricing-header .section-sub {
  color: rgba(255, 255, 255, .5);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  transition: all .35s var(--ease);
}

.pricing-card:hover {
  background: rgba(255, 255, 255, .08);
}

.pricing-card.popular {
  background: linear-gradient(160deg, rgba(0, 200, 83, .18), rgba(0, 200, 83, .05));
  border-color: rgba(0, 200, 83, .4);
}

.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--emerald);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.pricing-badge svg {
  width: 12px;
  height: 12px;
}

.pricing-period {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.pricing-period.green {
  color: var(--emerald);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 6px;
}

.pricing-currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.pricing-amount {
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.pricing-cents {
  font-size: 22px;
  color: rgba(255, 255, 255, .5);
}

.pricing-interval {
  font-size: 13px;
  color: rgba(255, 255, 255, .3);
  margin-left: 4px;
}

.pricing-equiv {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 32px;
}

.pricing-equiv .green {
  color: var(--emerald);
  font-weight: 600;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, .7);
}

.check-icon {
  width: 18px;
  height: 18px;
  color: var(--emerald);
  flex-shrink: 0;
  margin-top: 2px;
}

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

/* ═══════════════════════════════════════════
   OBJECTIONS
═══════════════════════════════════════════ */
.objections {
  padding: 96px 0;
  background: var(--vellum);
}

.objections-header {
  text-align: center;
  margin-bottom: 64px;
}

.objections-header .section-h2 {
  color: var(--navy);
}

.objections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.objection-item {
  text-align: center;
}

.objection-icon {
  width: 64px;
  height: 64px;
  background: rgba(0, 31, 63, .06);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.objection-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.objection-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

@media(max-width:767px) {
  .objections-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ═══════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════ */
.final-cta {
  padding: 96px 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-grid {
  position: absolute;
  inset: 0;
  opacity: .03;
  background-image: linear-gradient(rgba(255, 255, 255, .1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.final-cta-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: rgba(0, 200, 83, .12);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}

.final-cta h2 em {
  font-style: normal;
  color: var(--emerald);
}

.final-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, .5);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.final-cta-note {
  font-size: 13px;
  color: rgba(255, 255, 255, .3);
  margin-top: 20px;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 64px 0;
}

.footer-resources {
  margin-bottom: 64px;
}

.footer-resources-label {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, .3);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: block;
}

.footer-resources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.footer-resource-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .04);
  border-radius: 14px;
  padding: 16px;
  transition: background .2s;
}

.footer-resource-link:hover {
  background: rgba(255, 255, 255, .08);
}

.footer-resource-icon {
  color: var(--datablue);
  flex-shrink: 0;
}

.footer-resource-text {
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  transition: color .2s;
}

.footer-resource-link:hover .footer-resource-text {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo img {
  height: 32px;
  width: auto;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, .3);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  transition: color .2s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, .7);
}

@media(max-width:1023px) {
  .footer-resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:639px) {
  .footer-resources-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-legal {
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════
   SVG ICONS (inline)
═══════════════════════════════════════════ */
.icon {
  display: inline-block;
  vertical-align: middle;
}
