/* ===================================
   REPORT REPAIR TOOL — LANDING PAGE
   =================================== */

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

:root {
  --navy:       #1d2d5e;
  --navy-dark:  #111d40;
  --navy-mid:   #253872;
  --blue:       #1d2d5e;
  --blue-light: #2a3f80;
  --blue-pale:  #eef1fa;
  --green:      #2ec4b6;
  --green-light:#3dd9ca;
  --green-pale: #edfaf9;
  --gold:       #f0a500;
  --gold-light: #f5bc3a;
  --gold-pale:  #fffbeb;
  --white:      #ffffff;
  --off-white:  #f7f9fd;
  --gray-50:    #f9fafb;
  --gray-100:   #f3f4f6;
  --gray-200:   #e5e7eb;
  --gray-400:   #9ca3af;
  --gray-500:   #6b7280;
  --gray-600:   #4b5563;
  --gray-700:   #374151;
  --gray-800:   #1f2937;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.14);
  --shadow-xl:  0 24px 64px rgba(0,0,0,0.18);
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-lg { padding: 15px 32px; font-size: 16px; }
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover { background: var(--navy-mid); border-color: var(--navy-mid); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover { background: #25a89c; border-color: #25a89c; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(46,196,182,0.35); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); }
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); transform: translateY(-1px); }
.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.12); transform: translateY(-1px); }
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover { background: var(--off-white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-full { width: 100%; justify-content: center; }
.play-icon { font-size: 12px; }

/* ---- SECTION COMMONS ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.section-label {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.light-label { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.section-sub { font-size: 18px; color: var(--gray-500); max-width: 560px; margin: 0 auto; }
.light-sub { color: rgba(255,255,255,0.75); }
.section-header.light h2 { color: var(--white); }

/* ===================================
   NAVBAR
   =================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  width: 220px;
  height: auto;
  display: block;
  object-fit: contain;
}
.logo-text { font-weight: 700; color: var(--navy); font-size: 16px; }
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--gray-600);
  font-weight: 500;
  font-size: 14px;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--navy); }
.nav-login { color: var(--navy) !important; font-weight: 600 !important; }
.nav-active { color: var(--green) !important; }
.nav-cta { flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===================================
   HERO
   =================================== */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1d2d5e 55%, var(--navy-mid) 100%);
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(46,196,182,0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(240,165,0,0.15) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(46,196,182,0.12) 0%, transparent 40%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-headline {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.headline-accent { color: var(--gold-light); }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}
.trust-check { color: var(--gold-light); font-weight: 700; }

/* Hero Video */
.hero-right { position: relative; }
.video-wrapper { position: relative; }
.video-placeholder {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: var(--shadow-xl);
}
.video-thumb-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e3a5f 0%, #0f2054 100%);
}
.dark-bg { background: linear-gradient(135deg, #0f1f3d 0%, #152848 100%) !important; }
.video-thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(0,0,0,0.25);
}
.play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all var(--transition);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.play-btn svg { width: 28px; height: 28px; margin-left: 4px; }
.play-btn:hover { transform: scale(1.1); background: var(--white); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.play-btn-lg { width: 88px; height: 88px; }
.play-btn-lg svg { width: 36px; height: 36px; }
.video-caption {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 0 24px;
}
.video-card-stat {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}
.stat-block { text-align: center; }
.stat-num { display: block; font-size: 22px; font-weight: 800; color: var(--navy); }
.stat-label { font-size: 12px; color: var(--gray-500); font-weight: 500; }
.stat-divider { width: 1px; height: 36px; background: var(--gray-200); }
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 60px; }

/* ===================================
   3 PATHS
   =================================== */
.paths-section {
  background: var(--off-white);
  padding: 100px 0;
}
.paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.path-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 2px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
}
.path-card:hover { border-color: var(--green); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.path-card-featured {
  border-color: var(--green);
  background: linear-gradient(160deg, var(--green-pale) 0%, var(--white) 60%);
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
.path-card-featured:hover { transform: scale(1.02) translateY(-4px); }
.path-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--green), #25a89c);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.path-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.path-icon svg { width: 28px; height: 28px; }
.path-icon-blue { background: var(--blue-pale); color: var(--navy); }
.path-icon-teal { background: var(--green-pale); color: var(--green); }
.path-icon-green { background: var(--green-pale); color: #25a89c; }
.path-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 10px;
}
.path-tag-green { color: #25a89c; }
.path-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.path-card p {
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 24px;
}
.path-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.path-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
}
.feat-check {
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.feat-check-green { color: var(--green); }


/* ===================================
   OPPORTUNITY
   =================================== */
.opportunity-section {
  padding: 100px 0;
  background: var(--white);
}
.opp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.opp-left .section-label { margin-bottom: 16px; }
.opp-left h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 20px; }
.opp-body { color: var(--gray-500); font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.opp-benefits { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.opp-benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.opp-benefit-icon { font-size: 24px; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.opp-benefit strong { display: block; font-size: 15px; color: var(--gray-800); margin-bottom: 4px; }
.opp-benefit p { font-size: 14px; color: var(--gray-500); line-height: 1.5; margin: 0; }

/* Dashboard Mock */
.opp-visual { perspective: 1000px; }
.opp-dashboard-mock {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transform: rotateY(-5deg) rotateX(3deg);
  transition: transform var(--transition);
}
.opp-dashboard-mock:hover { transform: rotateY(0deg) rotateX(0deg); }
.mock-header {
  background: var(--navy);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mock-dots span:nth-child(1) { background: #ff5f57; }
.mock-dots span:nth-child(2) { background: #febc2e; }
.mock-dots span:nth-child(3) { background: #28c840; }
.mock-title { color: rgba(255,255,255,0.6); font-size: 12px; font-weight: 500; }
.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.mock-stat-card {
  background: var(--white);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mock-stat-num { font-size: 20px; font-weight: 800; }
.mock-stat-num.green { color: var(--green); }
.mock-stat-num.blue { color: var(--navy); }
.mock-stat-label { font-size: 11px; color: var(--gray-400); }
.mock-chart { padding: 16px 20px; border-bottom: 1px solid var(--gray-100); }
.mock-bar-group { display: flex; align-items: flex-end; gap: 8px; height: 80px; margin-bottom: 8px; }
.mock-bar {
  flex: 1;
  background: var(--blue-pale);
  border-radius: 4px 4px 0 0;
  transition: height var(--transition);
}
.mock-bar.active { background: var(--green); }
.mock-chart-label { font-size: 11px; color: var(--gray-400); text-align: center; }
.mock-list { padding: 12px 20px 16px; display: flex; flex-direction: column; gap: 10px; }
.mock-list-item { display: flex; align-items: center; gap: 12px; }
.mock-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--gray-200); flex-shrink: 0; }
.mock-list-text { flex: 1; }
.mock-list-name { height: 10px; background: var(--gray-200); border-radius: 4px; width: 70%; margin-bottom: 5px; }
.mock-list-sub { height: 8px; background: var(--gray-100); border-radius: 4px; width: 50%; }
.mock-status { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 100px; }
.active-status { background: var(--green-pale); color: var(--green); }
.pending-status { background: #fffbeb; color: #d97706; }

/* ===================================
   FEATURES
   =================================== */
.features-section {
  background: var(--off-white);
  padding: 100px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.feature-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 16px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ===================================
   VIDEO SALES
   =================================== */
.video-sales-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.video-sales-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(46,196,182,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.video-main-wrapper {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.video-large { aspect-ratio: 16/9; border-radius: var(--radius-lg); }
.video-points { display: flex; flex-direction: column; gap: 28px; }
.vp-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.vp-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--green-light);
  background: rgba(46,196,182,0.15);
  padding: 6px 10px;
  border-radius: 6px;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}
.vp-item strong { display: block; color: var(--white); font-size: 16px; margin-bottom: 6px; }
.vp-item p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.5; margin: 0; }

/* ===================================
   HOW IT WORKS
   =================================== */
.how-it-works {
  background: var(--white);
  padding: 100px 0;
}
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #25a89c);
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(46,196,182,0.4);
}
.step-icon {
  width: 60px;
  height: 60px;
  background: var(--blue-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 16px;
}
.step-icon svg { width: 28px; height: 28px; }
.step-item h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-item p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }
.step-arrow {
  font-size: 24px;
  color: var(--gray-300);
  margin-top: 10px;
  flex-shrink: 0;
  align-self: flex-start;
  padding-top: 14px;
}
.step-connector { display: none; }

/* ===================================
   INCOME
   =================================== */
.income-section {
  background: var(--off-white);
  padding: 100px 0;
}
.income-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.income-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 2px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
}
.income-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.income-card-mid { border-color: rgba(46,196,182,0.4); }
.income-card-featured { border-color: var(--green); box-shadow: 0 4px 20px rgba(46,196,182,0.2); }
.income-card-top {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: var(--navy);
}
.income-card-top .income-clients,
.income-card-top .income-rate,
.income-card-top .income-period { color: rgba(255,255,255,0.7); }
.income-card-top .income-total { color: var(--gold-light); }
.income-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.income-card-top .income-badge { background: var(--gold); }
.income-clients { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.income-rate { font-size: 12px; color: var(--gray-400); margin-bottom: 12px; }
.income-total { font-size: 36px; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.income-period { font-size: 13px; color: var(--gray-400); margin-bottom: 20px; }
.income-bar {
  height: 6px;
  background: var(--gray-100);
  border-radius: 100px;
  overflow: hidden;
}
.income-bar::after {
  content: '';
  display: block;
  height: 100%;
  width: var(--fill, 50%);
  background: linear-gradient(90deg, var(--navy), var(--green));
  border-radius: 100px;
}
.income-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 40px;
}
.income-cta { text-align: center; }

/* ===================================
   WHY RRT
   =================================== */
.why-rrt-section {
  background: var(--white);
  padding: 100px 0;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-left .section-label { margin-bottom: 16px; }
.why-left h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.why-left > p { color: var(--gray-500); font-size: 16px; margin-bottom: 36px; }
.why-checklist { display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-check {
  width: 28px;
  height: 28px;
  background: var(--green-pale);
  color: #25a89c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.why-item strong { display: block; font-size: 15px; color: var(--navy); margin-bottom: 4px; }
.why-item p { font-size: 14px; color: var(--gray-500); margin: 0; line-height: 1.5; }

/* Comparison Table */
.comparison-table {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.comp-header {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  padding: 14px 20px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.comp-rrt { text-align: center; color: var(--gold-light); }
.comp-others { text-align: center; color: rgba(255,255,255,0.5); }
.comp-row {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  padding: 13px 20px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
  color: var(--gray-700);
  align-items: center;
  transition: background var(--transition);
}
.comp-row:hover { background: var(--gray-50); }
.comp-row:last-child { border-bottom: none; }
.comp-yes { text-align: center; color: var(--green); font-weight: 700; font-size: 16px; }

.comp-no { text-align: center; color: #ef4444; font-size: 16px; }
.comp-partial { text-align: center; color: #f59e0b; font-size: 16px; }
.comp-brands {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  padding: 10px 20px;
  background: var(--gray-50);
  border-top: 2px solid var(--gray-200);
}
.comp-rrt-label { text-align: center; font-size: 11px; color: var(--green); font-weight: 700; }

.comp-others-label { text-align: center; font-size: 10px; color: var(--gray-400); }

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials-section {
  background: var(--off-white);
  padding: 100px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 2px solid var(--gray-200);
  transition: all var(--transition);
}
.testimonial-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-card-featured { border-color: var(--green); box-shadow: var(--shadow-md); }
.test-stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.test-quote {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.test-author { display: flex; align-items: center; gap: 14px; }
.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.test-author strong { display: block; font-size: 15px; color: var(--navy); }
.test-author span { font-size: 13px; color: var(--gray-400); }
.testimonials-stats {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.ts-stat { text-align: center; }
.ts-num { display: block; font-size: 32px; font-weight: 900; color: var(--white); margin-bottom: 6px; }
.ts-label { font-size: 13px; color: rgba(255,255,255,0.6); }
.ts-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); }

/* ===================================
   FAQ
   =================================== */
.faq-section {
  background: var(--white);
  padding: 100px 0;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item:first-child { border-top: 1px solid var(--gray-200); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--blue); }
.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--blue); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer p {
  padding-bottom: 22px;
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ===================================
   FINAL CTA
   =================================== */
.final-cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 70%, rgba(46,196,182,0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(240,165,0,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  text-align: center;
  z-index: 1;
}
.final-cta-inner h2 {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.final-cta-inner > p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
}
.final-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.final-trust {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--gray-800);
  padding-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-logo .logo-img { filter: brightness(0) invert(1); width: 200px; height: auto; opacity: 0.92; }
.footer-brand p { color: var(--gray-400); font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.footer-powered { color: var(--gray-500) !important; font-size: 13px !important; }
.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links-group strong { color: var(--white); font-size: 14px; margin-bottom: 4px; }
.footer-links-group a {
  text-decoration: none;
  color: var(--gray-400);
  font-size: 14px;
  transition: color var(--transition);
}
.footer-links-group a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.footer-bottom p { color: var(--gray-500); font-size: 13px; }
.footer-legal { color: var(--gray-600) !important; font-size: 12px !important; max-width: 700px; margin: 0 auto; }

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .video-card-stat { position: static; transform: none; margin-top: 16px; display: inline-flex; }
  .opp-inner { grid-template-columns: 1fr; gap: 48px; }
  .opp-right { display: flex; justify-content: center; }
  .opp-dashboard-mock { transform: none; max-width: 480px; }
  .paths-grid { grid-template-columns: 1fr; gap: 24px; }
  .path-card-featured { transform: none; }
  .income-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .video-main-wrapper { grid-template-columns: 1fr; }
  .testimonials-stats { flex-wrap: wrap; gap: 32px; padding: 32px; }
  .ts-divider { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    gap: 20px;
  }
  .nav-links.open + .nav-cta { display: block; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .income-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin: 0; }
  .hero { padding: 100px 0 60px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .income-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .testimonials-stats { flex-direction: column; gap: 24px; }
  .hero-ctas { flex-direction: column; }
  .final-cta-btns { flex-direction: column; align-items: center; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .final-trust { flex-direction: column; gap: 12px; align-items: center; }
  .comp-header, .comp-row, .comp-brands { grid-template-columns: 1fr 60px 60px; font-size: 12px; }
}
