/* =========================================================
   MarketKingAI — Main Stylesheet
   Design: Dark navy + lime green + royal blue (logo palette)
   Font: Inter (Google Fonts)
   ========================================================= */

/* --- TOKENS --- */
:root {
  --navy-950: #04091A;
  --navy-900: #060C20;
  --navy-800: #0A1228;
  --navy-700: #0D1835;
  --navy-600: #121F42;
  --navy-500: #1A2A55;

  --green:      #6FFF4B;   /* Primary accent — lime green from logo "AI" */
  --green-glow: rgba(111,255,75,0.18);
  --green-dim:  rgba(111,255,75,0.08);
  --blue:       #2D7FFF;   /* Crown blue */
  --blue-light: #00D4FF;   /* Crown cyan highlight */

  --white: #FFFFFF;
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255,255,255,0.58);
  --text-tertiary: rgba(255,255,255,0.35);

  --border:       rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.14);
  --border-green: rgba(111,255,75,0.25);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-card: 0 4px 32px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px rgba(111,255,75,0.15);
}

/* --- RESET & BASE --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--navy-950);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
::selection { background: var(--green); color: #000; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-900); }
::-webkit-scrollbar-thumb { background: var(--navy-500); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--green); }

/* --- TYPOGRAPHY SCALE --- */
.display-1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.0; }
.display-2 { font-size: clamp(2.2rem, 4.5vw, 4rem);  font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; }
.heading-1  { font-size: clamp(1.6rem, 3vw, 2.5rem);  font-weight: 700; letter-spacing: -0.03em; line-height: 1.2; }
.heading-2  { font-size: clamp(1.2rem, 2vw, 1.75rem); font-weight: 600; letter-spacing: -0.02em; }
.body-lg    { font-size: clamp(1rem, 1.5vw, 1.2rem);  line-height: 1.7; }
.body-md    { font-size: 1rem; line-height: 1.7; }
.body-sm    { font-size: 0.875rem; line-height: 1.6; }
.caption    { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; }

/* --- ACCENT COLORS IN TEXT --- */
.text-green  { color: var(--green); }
.text-blue   { color: var(--blue-light); }
.text-muted  { color: var(--text-secondary); }

/* --- LAYOUT --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }
.section-sm { padding: 5rem 0; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 0;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-bottom 0.4s ease, padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(4, 9, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0;
}
.nav-logo img { height: 56px; width: auto; }
.nav-logo-text {
  font-size: 1.1rem; font-weight: 800; letter-spacing: -0.03em;
}
.nav-logo-text span { color: var(--green); }

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  padding: 0.5rem 0.85rem; border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 500; color: var(--text-secondary);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }

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

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; cursor: pointer;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile menu */
.nav-mobile {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(4,9,26,0.97); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.5rem; font-weight: 700; color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--white); }
.nav-mobile-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 1.5rem; color: var(--text-secondary); cursor: pointer;
  padding: 0.5rem;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.8rem 1.75rem; border-radius: 980px;
  font-size: 0.9rem; font-weight: 600; letter-spacing: -0.01em;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green); color: #050A14;
  box-shadow: 0 0 0 0 var(--green-glow);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(111,255,75,0.35);
}
.btn-primary:active { transform: translateY(0) scale(0.99); }

.btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid var(--border-hover);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.8rem; }

/* =========================================================
   BADGE
   ========================================================= */
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.3rem 0.85rem; border-radius: 980px;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  border: 1px solid var(--border-green);
  background: var(--green-dim); color: var(--green);
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

/* =========================================================
   HERO SECTION — 2-column with scroll-driven video
   ========================================================= */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  /* Will be pinned by GSAP ScrollTrigger — height managed by JS */
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../assets/img/hero-bg.jpg');
  background-size: cover; background-position: center 30%;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(4,9,26,0.88) 0%,
    rgba(4,9,26,0.72) 50%,
    rgba(4,9,26,0.88) 100%
  );
}
.hero-overlay-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to bottom, transparent, var(--navy-950));
}

/* 2-column inner layout */
.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  padding-top: 7rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr; /* video column 1.5x wider */
  gap: 3rem;
  align-items: center;
}
.hero-left { /* left column: badge, headline, CTAs, stats */ }
.hero-badge { margin-bottom: 1.75rem; }
.hero-headline {
  max-width: 600px; margin-bottom: 1.5rem;
}
.hero-sub {
  max-width: 500px; margin-bottom: 2.5rem;
  color: rgba(255,255,255,0.75); font-size: clamp(1rem, 1.5vw, 1.15rem); line-height: 1.7;
}
.hero-actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
  margin-bottom: 2rem;
}
.hero-guarantee {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: var(--text-secondary);
  margin-bottom: 2.5rem;
}
.hero-guarantee svg { flex-shrink: 0; color: var(--green); }

/* Full-width stats bar below the 2-column hero grid */
.hero-stats-bar {
  position: relative; z-index: 2;
  width: 100%; max-width: 1280px; margin: 0 auto;
  padding: 2rem 2rem 0;
  border-top: 1px solid var(--border);
  margin-top: 2.5rem;
}
.hero-stats-inner {
  display: flex; flex-direction: row; align-items: stretch;
  justify-content: space-between; gap: 0;
  width: 100%;
}
.hero-stat-item {
  flex: 1; text-align: center; padding: 0 1rem;
}
.hero-stat-divider {
  width: 1px; background: var(--border); flex-shrink: 0; align-self: stretch; min-height: 3rem;
}
.hero-stat-value {
  font-size: 1.75rem; font-weight: 800; letter-spacing: -0.04em;
  color: var(--green);
  min-width: 5ch;
  display: block;
}
.hero-stat-label {
  font-size: 0.72rem; color: var(--text-secondary); margin-top: 0.25rem;
  white-space: nowrap;
}

/* =========================================================
   HERO VIDEO PLAYER — right column, scroll-driven
   ========================================================= */
.hero-right {
  display: flex; align-items: center; justify-content: center;
}
.hero-video-wrapper {
  position: relative; width: 100%;
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(111,255,75,0.2);
  box-shadow:
    0 0 0 1px rgba(111,255,75,0.08),
    0 20px 60px rgba(0,0,0,0.5),
    0 0 80px rgba(111,255,75,0.08);
  background: var(--navy-800);
  aspect-ratio: 16/9;
}
.hero-video-wrapper video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  /* video is scrubbed via JS, not playing on its own */
}

/* Scroll progress bar at bottom of video */
.video-progress-track {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: rgba(255,255,255,0.1);
  z-index: 3;
}
.video-progress-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--green), var(--blue-light));
  transition: width 0.05s linear;
  border-radius: 0 2px 2px 0;
}

/* Scroll hint badge on video */
.video-scroll-hint {
  position: absolute; top: 1rem; right: 1rem; z-index: 3;
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.3rem 0.75rem; border-radius: 980px;
  background: rgba(4,9,26,0.8); backdrop-filter: blur(8px);
  border: 1px solid var(--border-green);
  color: var(--green); font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  animation: pulseHint 2s ease-in-out infinite;
  transition: opacity 0.5s;
}
.video-scroll-hint svg { width: 10px; height: 10px; }
@keyframes pulseHint {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: var(--text-tertiary); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
  transition: opacity 0.5s ease;
}
.scroll-indicator svg { width: 20px; height: 20px; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* Mobile: stack to single column, video autoplays */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 8rem;
  }
  .hero-right { order: -1; } /* video above text on mobile */
  .hero-video-wrapper { max-width: 100%; }
  .video-scroll-hint { display: none; }
}

/* =========================================================
   TICKER
   ========================================================= */
.ticker {
  background: var(--navy-800);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0; overflow: hidden;
}
.ticker-track {
  display: flex; gap: 3rem; width: max-content;
  animation: tickerScroll 30s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex; align-items: center; gap: 0.75rem;
  white-space: nowrap; font-size: 0.8rem; font-weight: 600;
  color: var(--text-secondary); letter-spacing: 0.04em; text-transform: uppercase;
}
.ticker-item svg { color: var(--green); flex-shrink: 0; width: 14px; height: 14px; }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   SECTION LABELS
   ========================================================= */
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--green); margin-bottom: 1.25rem;
}
.section-label::before {
  content: '';
  display: block; width: 20px; height: 2px; border-radius: 2px;
  background: var(--green);
}

/* =========================================================
   PROBLEM SECTION
   ========================================================= */
.problem { background: var(--navy-900); }
.problem-header { text-align: center; }
.problem-headline { max-width: 700px; margin: 0 auto 1rem; }
.problem-sub { max-width: 600px; margin: 0 auto 4rem; color: var(--text-secondary); }

.stat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.stat-card {
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.stat-card:hover {
  border-color: var(--border-green);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), var(--shadow-glow);
}
.stat-card-number {
  font-size: 3rem; font-weight: 900; letter-spacing: -0.05em;
  color: var(--green); line-height: 1; margin-bottom: 0.75rem;
}
.stat-card-text {
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6;
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how { background: var(--navy-950); }
.how-header { text-align: center; margin-bottom: 5rem; }
.how-header h2 { max-width: 600px; margin: 0 auto 1rem; }
.how-header p { color: var(--text-secondary); max-width: 500px; margin: 0 auto; }

.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center; padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.how-step:last-child { border-bottom: none; }
.how-step.reverse { direction: rtl; }
.how-step.reverse > * { direction: ltr; }

.how-step-number {
  font-size: 5rem; font-weight: 900; letter-spacing: -0.06em;
  color: var(--green); opacity: 0.2; line-height: 1; margin-bottom: 1rem;
  font-variant-numeric: tabular-nums;
}
.how-step-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--green); margin-bottom: 0.75rem; }
.how-step-title { margin-bottom: 1rem; }
.how-step-desc { color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.75rem; }
.how-step-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.how-step-tag {
  padding: 0.3rem 0.75rem; border-radius: 980px;
  font-size: 0.72rem; font-weight: 600;
  background: var(--green-dim); color: var(--green);
  border: 1px solid var(--border-green);
}

.how-step-visual {
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  aspect-ratio: 16/10;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.how-step-visual-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
/* Animated gradient for visual placeholders */
.how-step-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--green-dim), rgba(45,127,255,0.08), transparent);
  opacity: 0.7;
}

/* =========================================================
   FEATURES
   ========================================================= */
.features { background: var(--navy-900); }
.features-header { text-align: center; margin-bottom: 4rem; }
.features-header h2 { margin-bottom: 1rem; }
.features-header p { color: var(--text-secondary); max-width: 520px; margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.feature-card {
  background: var(--navy-800);
  padding: 2rem;
  transition: background 0.3s;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-dim), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover { background: var(--navy-700); }
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: var(--green-dim);
  border: 1px solid var(--border-green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; color: var(--green);
}
.feature-icon svg { width: 20px; height: 20px; }
.feature-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

/* =========================================================
   DEMO SHOWCASE
   ========================================================= */
.demo { background: var(--navy-950); }
.demo-header { text-align: center; margin-bottom: 3rem; }
.demo-header h2 { margin-bottom: 1rem; }
.demo-header p { color: var(--text-secondary); max-width: 520px; margin: 0 auto 2rem; }

.demo-browser {
  max-width: 900px; margin: 0 auto;
  background: var(--navy-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.demo-browser:hover {
  transform: translateY(-8px);
  box-shadow: 0 60px 150px rgba(0,0,0,0.7), var(--shadow-glow);
}
.demo-browser-bar {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: var(--navy-800);
  border-bottom: 1px solid var(--border);
}
.demo-browser-dots {
  display: flex; gap: 6px;
}
.demo-browser-dots span {
  width: 11px; height: 11px; border-radius: 50%;
}
.demo-browser-dots span:nth-child(1) { background: #FF5F57; }
.demo-browser-dots span:nth-child(2) { background: #FEBC2E; }
.demo-browser-dots span:nth-child(3) { background: #28C840; }
.demo-browser-url {
  flex: 1; background: var(--navy-700); border-radius: 6px;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem; color: var(--text-secondary); font-family: monospace;
}
.demo-browser-body {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #06091A, #0A1228);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.demo-browser-body iframe {
  width: 100%; height: 100%; border: none;
  transform-origin: top left;
}
/* Placeholder when iframe not available */
.demo-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; color: var(--text-secondary); text-align: center; padding: 3rem;
}
.demo-placeholder-icon { font-size: 3rem; }
.demo-placeholder-text { font-size: 0.9rem; }
.demo-placeholder-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--green); font-size: 0.85rem; font-weight: 600;
  border-bottom: 1px solid var(--green-dim); padding-bottom: 2px;
  transition: border-color 0.2s, gap 0.2s;
}
.demo-placeholder-link:hover { border-color: var(--green); gap: 0.6rem; }

/* =========================================================
   BEFORE / AFTER
   ========================================================= */
.before-after { background: var(--navy-900); }
.before-after-header { text-align: center; margin-bottom: 4rem; }
.ba-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch;
  border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden;
}
.ba-col {
  padding: 2.5rem; position: relative;
}
.ba-col-before {
  background: var(--navy-800);
  border-right: 1px solid var(--border);
  opacity: 0.75;
}
.ba-col-after {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
}
.ba-label {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  padding: 0.3rem 0.75rem; border-radius: 980px;
  margin-bottom: 1.5rem;
}
.ba-col-before .ba-label { background: rgba(255,255,255,0.06); color: var(--text-secondary); }
.ba-col-after .ba-label { background: var(--green-dim); color: var(--green); border: 1px solid var(--border-green); }
.ba-col-after::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, transparent, var(--green), transparent);
  opacity: 0.4;
}
.ba-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.85rem 0; border-bottom: 1px solid var(--border);
}
.ba-item:last-child { border-bottom: none; }
.ba-item-icon { flex-shrink: 0; margin-top: 2px; }
.ba-item-text { font-size: 0.875rem; line-height: 1.5; }
.ba-col-before .ba-item-icon { color: rgba(255,255,255,0.25); }
.ba-col-after .ba-item-icon { color: var(--green); }
.ba-col-before .ba-item-text { color: var(--text-secondary); }

.ba-divider {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy-900); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: var(--text-secondary); z-index: 2;
}
.ba-wrapper { position: relative; }

/* =========================================================
   PRICING
   ========================================================= */
.pricing { background: var(--navy-950); }
.pricing-header { text-align: center; margin-bottom: 4rem; }
.pricing-header h2 { margin-bottom: 1rem; }
.pricing-header p { color: var(--text-secondary); max-width: 480px; margin: 0 auto; }

.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  max-width: 900px; margin: 0 auto;
}
.pricing-card {
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.pricing-card-featured {
  border-color: var(--border-green);
  background: linear-gradient(160deg, var(--navy-700), var(--navy-800));
  box-shadow: 0 0 60px rgba(111,255,75,0.08);
}
.pricing-card-featured:hover {
  box-shadow: 0 20px 80px rgba(0,0,0,0.4), 0 0 60px rgba(111,255,75,0.15);
}
.pricing-badge {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: var(--green); color: #050A14;
  font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em;
  padding: 0.25rem 0.65rem; border-radius: 980px;
}
.pricing-tier { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-secondary); margin-bottom: 0.5rem; }
.pricing-price { display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: 0.25rem; }
.pricing-amount { font-size: 3.5rem; font-weight: 900; letter-spacing: -0.05em; }
.pricing-period { font-size: 0.9rem; color: var(--text-secondary); }
.pricing-setup { font-size: 0.78rem; color: var(--text-secondary); margin-bottom: 1.75rem; }
.pricing-divider { height: 1px; background: var(--border); margin-bottom: 1.75rem; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2rem; }
.pricing-feature {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.875rem; line-height: 1.5;
}
.pricing-feature-check { flex-shrink: 0; color: var(--green); margin-top: 2px; }
.pricing-feature-dim { color: var(--text-secondary); }
.pricing-cta { width: 100%; }
.pricing-note { text-align: center; margin-top: 2rem; font-size: 0.82rem; color: var(--text-secondary); }
.pricing-note a { color: var(--green); border-bottom: 1px solid var(--green-dim); }
.pricing-note a:hover { border-color: var(--green); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { background: var(--navy-900); }
.testimonials-header { text-align: center; margin-bottom: 4rem; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.testimonial-card {
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial-card:hover { border-color: var(--border-green); transform: translateY(-4px); }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.testimonial-stars svg { width: 16px; height: 16px; color: #FFD700; fill: #FFD700; }
.testimonial-text { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; color: var(--green);
  border: 1px solid var(--border-green); flex-shrink: 0;
}
.testimonial-name { font-size: 0.875rem; font-weight: 700; }
.testimonial-company { font-size: 0.75rem; color: var(--text-secondary); }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--navy-950); }
.faq-header { text-align: center; margin-bottom: 4rem; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.5rem 0; font-size: 0.95rem; font-weight: 600; color: var(--white);
  background: none; border: none; cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--green); }
.faq-icon {
  flex-shrink: 0; width: 24px; height: 24px;
  border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--green-dim); border-color: var(--border-green);
  color: var(--green);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer-inner {
  padding-bottom: 1.5rem;
  font-size: 0.9rem; line-height: 1.75; color: var(--text-secondary);
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.cta-section {
  background: var(--navy-900);
  position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(111,255,75,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content {
  position: relative; z-index: 1;
  text-align: center; max-width: 700px; margin: 0 auto;
}
.cta-content h2 { margin-bottom: 1.25rem; }
.cta-content p { color: var(--text-secondary); margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 1rem; margin-bottom: 1.5rem;
}
.cta-risk {
  font-size: 0.8rem; color: var(--text-secondary);
  display: flex; align-items: center; gap: 0.4rem; justify-content: center;
}
.cta-risk svg { color: var(--green); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--navy-950);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem;
  margin-bottom: 2rem; padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  display: flex; align-items: center; gap: 0.6rem;
}
.footer-logo img { height: 32px; width: auto; }
.footer-logo-text { font-size: 1rem; font-weight: 800; letter-spacing: -0.03em; }
.footer-logo-text span { color: var(--green); }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.25rem; }
.footer-links a {
  padding: 0.4rem 0.75rem; border-radius: var(--radius-sm);
  font-size: 0.82rem; color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.78rem; color: var(--text-tertiary); }
.footer-tagline { font-size: 0.78rem; color: var(--text-tertiary); }
.footer-tagline span { color: var(--green); }

/* =========================================================
   UTILITIES & ANIMATIONS
   ========================================================= */
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }

/* GSAP initial states */
.fade-up { opacity: 0; transform: translateY(30px); }
.fade-in  { opacity: 0; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .how-step { grid-template-columns: 1fr; gap: 2rem; }
  .how-step.reverse { direction: ltr; }
}
@media (max-width: 768px) {
  .section { padding: 5rem 0; }
  .stat-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .ba-col-before { border-right: none; border-bottom: 1px solid var(--border); }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-stats-bar { margin-top: 1.5rem; padding-top: 1.5rem; }
  .hero-stat-item { padding: 0 0.5rem; }
  .hero-stat-value { font-size: 1.35rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .features-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-content { padding-left: 1.25rem; padding-right: 1.25rem; }
  .btn-lg { padding: 0.875rem 1.75rem; font-size: 0.9rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; }
}
