/* ===================================================
   GHL 30 DAY FREE TRIAL — PREMIUM STYLES
   =================================================== */

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

:root {
  --navy-950: #040c1a;
  --navy-900: #080f20;
  --navy-800: #0d1530;
  --navy-700: #111d3a;
  --navy-600: #162244;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --blue-300: #93c5fd;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --emerald-400: #34d399;
  --emerald-300: #6ee7b7;
  --purple-500: #8b5cf6;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--navy-900);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---------- UTILITIES ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: clamp(64px, 8vw, 120px) 0; }
.section-dark { background: var(--navy-900); }
.section-darker { background: var(--navy-950); }
.section-light { background: var(--gray-50); color: var(--gray-700); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-400);
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-title .highlight {
  background: linear-gradient(135deg, var(--blue-400), var(--emerald-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--gray-400);
  max-width: 600px;
  line-height: 1.7;
}

.section-center { text-align: center; }
.section-center .section-label { margin: 0 auto 20px; }
.section-center .section-subtitle { margin: 0 auto; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.25s var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s ease;
  border-radius: inherit;
}

.btn:hover::after { background: rgba(255,255,255,0.08); }
.btn:active { transform: scale(0.97); }

.btn-emerald {
  background: linear-gradient(135deg, var(--emerald-600), var(--emerald-500));
  color: #fff;
  box-shadow: 0 4px 20px rgba(16,185,129,0.35), 0 1px 3px rgba(0,0,0,0.2);
}

.btn-emerald:hover {
  box-shadow: 0 8px 32px rgba(16,185,129,0.5), 0 2px 8px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

.btn-blue {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: #fff;
  box-shadow: 0 4px 20px rgba(59,130,246,0.35), 0 1px 3px rgba(0,0,0,0.2);
}

.btn-blue:hover {
  box-shadow: 0 8px 32px rgba(59,130,246,0.5), 0 2px 8px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--gray-200);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
  transform: translateY(-1px);
}

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

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.35s var(--ease-out);
  padding: 0;
}

.site-header.transparent {
  background: transparent;
}

.site-header.scrolled {
  background: rgba(8, 15, 32, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.header-logo {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-badge {
  background: linear-gradient(135deg, var(--blue-500), var(--emerald-500));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 5px;
  letter-spacing: 0.05em;
}

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

.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-300);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.header-nav a:hover {
  color: #fff;
  background: rgba(255,255,255,0.07);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Language selector */
.lang-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-300);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font);
}

.lang-btn:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.lang-btn svg { width: 14px; height: 14px; transition: transform 0.2s; }
.lang-selector.open .lang-btn svg { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 6px;
  min-width: 130px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(-8px) scale(0.97);
  pointer-events: none;
  transition: all 0.2s var(--ease-out);
  backdrop-filter: blur(20px);
}

.lang-selector.open .lang-dropdown {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-300);
  transition: all 0.15s;
}

.lang-dropdown a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.lang-dropdown a.active {
  color: var(--blue-400);
  background: rgba(59,130,246,0.1);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gray-300);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 40%, #0a1628 100%);
  z-index: 0;
}

.hero-glow-1 {
  position: absolute;
  width: 700px;
  height: 700px;
  top: -200px;
  left: -100px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.12) 0%, transparent 70%);
  animation: glowPulse 8s ease-in-out infinite;
  z-index: 0;
  will-change: opacity, transform;
  contain: strict;
}

.hero-glow-2 {
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -100px;
  right: -100px;
  background: radial-gradient(ellipse, rgba(16,185,129,0.08) 0%, transparent 70%);
  animation: glowPulse 10s ease-in-out infinite reverse;
  z-index: 0;
  will-change: opacity, transform;
  contain: strict;
}

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

#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content { max-width: 580px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald-400);
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.hero-eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--emerald-400);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(52,211,153,0.8);
  animation: blink 2s ease-in-out infinite;
}

.hero-h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: var(--white);
}

.hero-h1 .gradient-text {
  background: linear-gradient(135deg, var(--blue-400) 0%, var(--emerald-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
  align-items: center;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: var(--gray-400);
  font-weight: 500;
}

.trust-item .check {
  width: 18px;
  height: 18px;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  color: var(--emerald-400);
}

/* Hero mockup dashboard */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-mock {
  background: rgba(13, 21, 48, 0.9);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-2xl);
  padding: 20px;
  width: 100%;
  max-width: 500px;
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 0 1px rgba(59,130,246,0.1),
    0 40px 80px rgba(0,0,0,0.5),
    0 0 60px rgba(59,130,246,0.05);
  animation: dashFloat 6s ease-in-out infinite;
  position: relative;
}

.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.dash-dots {
  display: flex;
  gap: 6px;
}

.dash-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dash-dots span:nth-child(1) { background: #ff5f57; }
.dash-dots span:nth-child(2) { background: #febc2e; }
.dash-dots span:nth-child(3) { background: #28c840; }

.dash-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-400);
}

.dash-user {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--blue-500), var(--purple-500));
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.dash-metric {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 12px;
}

.dash-metric-label {
  font-size: 10px;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dash-metric-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.dash-metric-delta {
  font-size: 10px;
  color: var(--emerald-400);
  font-weight: 600;
  margin-top: 2px;
}

.dash-chart {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 12px;
}

.dash-chart-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
}

.dash-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, var(--blue-600), var(--blue-400));
  opacity: 0.7;
  animation: barGrow 1s var(--ease-out) both;
}

.dash-bar.emerald {
  background: linear-gradient(to top, var(--emerald-600), var(--emerald-400));
}

.dash-bar.active {
  opacity: 1;
  box-shadow: 0 0 12px rgba(59,130,246,0.4);
}

.dash-pipeline {
  display: flex;
  gap: 8px;
}

.dash-pipe-col {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  padding: 8px;
}

.dash-pipe-header {
  font-size: 9px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.dash-pipe-card {
  background: rgba(255,255,255,0.06);
  border-radius: 5px;
  padding: 6px 8px;
  margin-bottom: 4px;
}

.dash-pipe-name {
  font-size: 10px;
  color: var(--gray-300);
  font-weight: 500;
}

.dash-pipe-val {
  font-size: 10px;
  color: var(--emerald-400);
  font-weight: 700;
}

/* Floating notification cards */
.float-card {
  position: absolute;
  background: rgba(13, 21, 48, 0.95);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  z-index: 10;
}

.float-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.float-card-title {
  font-weight: 700;
  color: var(--white);
  font-size: 12px;
}

.float-card-sub {
  color: var(--gray-400);
  font-size: 11px;
  margin-top: 1px;
}

.float-card-1 {
  top: -24px;
  right: -32px;
  animation: floatCard1 4s ease-in-out infinite;
}

.float-card-2 {
  bottom: 40px;
  left: -40px;
  animation: floatCard2 5s ease-in-out infinite;
}

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-strip-label {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-400);
  font-size: 13px;
  font-weight: 600;
}

.trust-badge-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* ---------- WHY SECTION ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59,130,246,0.04) 0%, transparent 60%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-card:hover {
  border-color: rgba(59,130,246,0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2), 0 0 0 1px rgba(59,130,246,0.1);
}

.why-card:hover::before { opacity: 1; }

.why-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(59,130,246,0.05));
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.why-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.why-desc {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.65;
}

/* ---------- FEATURES GRID ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.feature-card {
  background: rgba(13, 21, 48, 0.8);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--emerald-500));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.3), 0 0 40px rgba(59,130,246,0.07);
}

.feature-card:hover::after { opacity: 1; }

.feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 0 8px rgba(59,130,246,0.3));
}

.feature-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.feature-desc {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ---------- COMPARISON TABLE ---------- */
.compare-wrap {
  margin-top: 56px;
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.08);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.compare-table th {
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.compare-table th:first-child {
  text-align: left;
  width: 40%;
}

.compare-table th.col-30 {
  background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(16,185,129,0.08));
  color: var(--blue-300);
  border-top-right-radius: var(--radius-xl);
  position: relative;
}

.col-30-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue-600), var(--emerald-600));
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.compare-table td {
  padding: 18px 24px;
  font-size: 14px;
  color: var(--gray-300);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.compare-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--white);
}

.compare-table td.col-30-val {
  background: rgba(59,130,246,0.05);
  color: var(--white);
  font-weight: 600;
}

.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:last-child td:last-child { border-bottom-right-radius: var(--radius-xl); }

.check-yes { color: var(--emerald-400); font-size: 16px; font-weight: 700; }
.check-partial { color: var(--blue-400); font-size: 16px; }
.check-no { color: var(--gray-600); font-size: 16px; }

/* ---------- WHO IT'S FOR ---------- */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 56px;
}

.who-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s var(--ease-out);
}

.who-card:hover {
  border-color: rgba(16,185,129,0.3);
  background: rgba(16,185,129,0.04);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.2);
}

.who-emoji {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}

.who-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.who-desc {
  font-size: 12px;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ---------- HOW IT WORKS ---------- */
.steps-timeline {
  display: flex;
  gap: 0;
  margin-top: 64px;
  position: relative;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-500), var(--emerald-500));
  z-index: 0;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 16px;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  border-radius: 50%;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 0 8px rgba(59,130,246,0.1), 0 0 0 16px rgba(59,130,246,0.05);
  position: relative;
}

.step:nth-child(3) .step-number {
  background: linear-gradient(135deg, var(--emerald-600), var(--emerald-500));
  box-shadow: 0 0 0 8px rgba(16,185,129,0.1), 0 0 0 16px rgba(16,185,129,0.05);
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.step-desc {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.65;
  max-width: 220px;
  margin: 0 auto;
}

/* ---------- MID CTA BANNER ---------- */
.mid-cta {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(59,130,246,0.08) 0%, rgba(16,185,129,0.05) 100%);
  border-top: 1px solid rgba(59,130,246,0.15);
  border-bottom: 1px solid rgba(59,130,246,0.15);
}

.mid-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.mid-cta-text h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.mid-cta-text p {
  font-size: 15px;
  color: var(--gray-400);
}

/* ---------- FAQ ---------- */
.faq-list {
  margin-top: 56px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item.open {
  border-color: rgba(59,130,246,0.25);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}

.faq-question-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

.faq-chevron {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-out);
  color: var(--gray-400);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: rgba(59,130,246,0.15);
  color: var(--blue-400);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.7;
  border-left: 3px solid var(--blue-500);
  margin: 0 24px 22px;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  overflow: hidden;
  text-align: center;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-950) 0%, #0a1628 50%, var(--navy-950) 100%);
}

.final-cta-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(59,130,246,0.1) 0%, transparent 65%);
  pointer-events: none;
}

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

.final-cta-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.final-cta-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--gray-400);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.final-cta-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.final-urgency {
  font-size: 13px;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.final-urgency::before {
  content: '⚡';
  font-size: 13px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--white);
}

.footer-brand-desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 280px;
}

.footer-affiliate-note {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.6;
  padding: 12px;
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-sm);
  border-left: 3px solid rgba(59,130,246,0.2);
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--gray-400);
  transition: color 0.2s;
}

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

.footer-contact-email {
  font-size: 13px;
  color: var(--blue-400);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

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

.footer-disclaimer {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.5;
  max-width: 700px;
}

.footer-copy {
  font-size: 12px;
  color: var(--gray-600);
  white-space: nowrap;
}

/* ---------- MOBILE STICKY BAR ---------- */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--navy-800);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 16px;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
}

.mobile-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.mobile-sticky-text {
  font-size: 12px;
  color: var(--gray-400);
  line-height: 1.4;
}

.mobile-sticky-text strong {
  color: var(--white);
  display: block;
  font-size: 13px;
}

.mobile-sticky .btn {
  flex-shrink: 0;
  padding: 12px 20px;
  font-size: 13px;
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ---------- KEYFRAMES ---------- */
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes dashFloat {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(0.5deg); }
}

@keyframes floatCard1 {
  0%, 100% { transform: translateY(0px) rotate(2deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

@keyframes floatCard2 {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(8px) rotate(-1deg); }
}

@keyframes barGrow {
  from { height: 0; }
}

/* ---------- LEGAL PAGES ---------- */
.legal-hero {
  padding: 140px 0 60px;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.legal-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.legal-meta {
  font-size: 13px;
  color: var(--gray-500);
}

.legal-content {
  padding: 64px 0 80px;
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 16px;
  color: var(--white);
}

.legal-content p, .legal-content li {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-content ul { padding-left: 24px; }
.legal-content li { margin-bottom: 8px; }

.legal-content a {
  color: var(--blue-400);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- CONTACT FORM ---------- */
.contact-form {
  max-width: 560px;
  margin: 56px auto 0;
}

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-300);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-input, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--white);
  transition: all 0.2s ease;
  outline: none;
}

.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-600); }

.form-input:focus, .form-textarea:focus {
  border-color: rgba(59,130,246,0.5);
  background: rgba(59,130,246,0.05);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}

.form-textarea { min-height: 140px; resize: vertical; }

.form-success {
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  color: var(--emerald-400);
  font-weight: 600;
  display: none;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .menu-toggle { display: flex; }

  .header-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(8, 15, 32, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    gap: 4px;
  }

  .header-nav.mobile-open a { display: block; padding: 12px 16px; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-cta-row { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }

  .steps-timeline { flex-direction: column; gap: 40px; }
  .steps-timeline::before { display: none; }

  .mid-cta-inner { flex-direction: column; text-align: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .mobile-sticky { display: flex; }

  body { padding-bottom: 80px; }

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

@media (max-width: 480px) {
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { justify-content: center; }
  .who-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .dash-pipeline { display: none; }
  .hero-trust { flex-direction: column; align-items: flex-start; }
  .trust-badges { gap: 16px; }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
