/* ============================================
   ExpandIQ Landing Page Styles
   ============================================ */

/* 1. Variables */
:root {
  --primary: #1a2b4a;
  --primary-light: #2d4a7a;
  --accent: #3b82f6;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --bg: #f8fafc;
  --card: #ffffff;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --gold: #c9a84c;
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* 2. Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--card);
}

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

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

/* 3. Typography */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* 4. Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.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; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
.reveal-delay-8 { transition-delay: 0.8s; }
.reveal-delay-9 { transition-delay: 0.9s; }
.reveal-delay-10 { transition-delay: 1.0s; }
.reveal-delay-11 { transition-delay: 1.1s; }

/* ============================================
   5. Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
  padding: 0.75rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: white;
  transition: color 0.3s ease;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-brand-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.nav.scrolled .nav-brand-logo {
  filter: none;
}

.nav.scrolled .nav-brand {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: white;
}

.nav.scrolled .nav-link {
  color: var(--text-muted);
}

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

.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1.25rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.2s ease;
  cursor: pointer;
}

.nav-cta:hover {
  background: rgba(255,255,255,0.25);
}

.nav.scrolled .nav-cta {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.nav.scrolled .nav-cta:hover {
  background: var(--primary-light);
}

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

/* ============================================
   6. Hero
   ============================================ */
.hero {
  min-height: 85vh;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 0;
  /* Force a stacking context so the .hero::after gradient overlay
     reliably renders above the transformed .hero-globe iframe. Without
     this, the iframe's transform creates an isolated stacking context
     that can render above the pseudo-element in some browsers. */
  isolation: isolate;
}

.hero-globe {
  position: absolute;
  top: 10%;
  left: -25%;
  width: 100%;
  height: 100%;
  border: none;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
  transform: scale(1.7);
  transform-origin: center center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(59,130,246,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Top gradient overlay — darkens the area behind the fixed nav so the
   ExpansionLens logo and nav links stand out cleanly against the
   spinning globe iframe in the background. Subtle vertical fade from
   solid primary navy at the very top to fully transparent ~180px down. */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(180deg, var(--primary) 0%, rgba(26, 43, 74, 0.85) 30%, rgba(26, 43, 74, 0) 100%);
  opacity: 0.4;
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.hero .eyebrow {
  color: rgba(255,255,255,0.6);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: 3.75rem;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: heroFadeUp 0.8s ease both;
}

.hero-subhead {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 650px;
  margin-bottom: 2.5rem;
  animation: heroFadeUp 0.8s ease 0.15s both;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: heroFadeUp 0.8s ease 0.3s both;
}

.hero-form {
  animation: heroFadeUp 0.8s ease 0.3s both;
  width: 100%;
  max-width: 720px;
  background: white;
  border-radius: 16px;
  padding: 1rem;
}

.hero-form-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.hero-form-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  position: relative;
  z-index: 1;
}

.hero-select {
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease;
  min-width: 200px;
}

.hero-select:focus {
  border-color: var(--accent);
}

.hero-select option {
  background: white;
  color: var(--text);
}

.hero-input {
  flex: 1;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease;
}

.hero-input::placeholder {
  color: var(--text-muted);
}

.hero-input:focus {
  border-color: var(--accent);
}

.hero-form-btn.btn-primary {
  width: 100%;
  margin-top: 10px;
  background: var(--success) !important;
  color: white !important;
  border: none !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35) !important;
}

.hero-form-btn.btn-primary:hover {
  background: #0d9668 !important;
  border-color: #0a7d56 !important;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.45) !important;
}

.hero-data-sources {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  line-height: 1.6;
}

.hero-data-sources span {
  display: block;
  font-size: 0.775rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
  color: white;
}

.hero-form-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background: white;
  color: var(--primary);
  border-color: white;
}

.btn-primary:hover {
  background: #f0f4ff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.35);
}

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

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

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

/* Login Modal */
.login-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20000;
  padding: 1rem;
}

.login-modal {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  position: relative;
  text-align: center;
}

.login-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.login-modal-close:hover { color: var(--text); }

.login-modal-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }

.login-modal-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.login-modal-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.login-modal-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  font-family: var(--font-sans);
  outline: none;
  margin-bottom: 0.75rem;
  text-align: center;
}

.login-modal-input:focus { border-color: var(--accent); }

.login-modal-btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background 0.2s ease;
}

.login-modal-btn:hover:not(:disabled) { background: #2563eb; }
.login-modal-btn:disabled { opacity: 0.5; cursor: default; }

.login-modal-btn-secondary {
  padding: 0.5rem 1.25rem;
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-sans);
}

.login-modal-btn-secondary:hover { background: var(--bg); }

/* Highlights Row */
.highlights-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.highlight-card {
  text-align: center;
  padding: 1.5rem 1rem;
}

.highlight-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e8eff5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.highlight-emoji {
  font-size: 1.6rem;
  line-height: 1;
}

.highlight-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.highlight-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.55;
  font-weight: 500;
}

@media (max-width: 768px) {
  .highlights-row {
    grid-template-columns: 1fr;
    max-width: 360px;
    gap: 0.5rem;
  }
}

/* Testimonial */
.testimonial-section {
  padding: 5rem 0;
  background: white;
}

.testimonial-carousel {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.testimonial-track {
  overflow: hidden;
  position: relative;
}

.testimonial-card {
  text-align: center;
  display: none;
}

.testimonial-card.active {
  display: block;
  animation: testimonialSlideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card.exiting {
  display: block;
  animation: testimonialSlideOut 0.35s ease-in forwards;
}

@keyframes testimonialSlideIn {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes testimonialSlideOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-30px); }
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-arrow {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.15s ease;
  line-height: 1;
}

.testimonial-arrow:hover {
  color: var(--text);
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--border);
  cursor: pointer;
  transition: all 0.2s ease;
}

.testimonial-dot:hover {
  background: var(--text-muted);
}

.testimonial-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

.testimonial-stars {
  font-size: 1.4rem;
  color: #f59e0b;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text);
  line-height: 1.7;
  margin: 0 0 1.75rem;
  border: none;
  padding: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.testimonial-avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

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

.testimonial-info {
  text-align: left;
}

.testimonial-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.preview-accordion {
  display: flex;
  flex-direction: column;
  margin-top: 0.75rem;
}

.preview-accordion-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.6rem;
  color: var(--text-muted);
}

.preview-accordion-row:last-child {
  border-bottom: none;
}

.preview-chevron {
  font-size: 0.75rem;
  color: var(--border);
}

.features-divider {
  border: none;
  border-top: 1px solid var(--border);
  max-width: 900px;
  margin: 2.5rem auto 0;
}

.features-sample-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.features-sample-link:hover {
  color: #2563eb;
  text-decoration: underline;
}

/* ============================================
   6b. How It Works
   ============================================ */
.how-it-works {
  padding: 4rem 0 5rem;
  background: white;
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.hiw-step {
  text-align: center;
  position: relative;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  padding: 2rem 1.25rem;
}

.hiw-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -1.25rem;
  top: 50%;
  transform: translate(50%, -50%);
  font-size: 1.2rem;
  color: #c8d1da;
  z-index: 1;
  line-height: 1;
  width: 2.5rem;
  text-align: center;
}

.hiw-step-number {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.hiw-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 2;
}

.hiw-icon-circle svg {
  width: 28px;
  height: 28px;
  color: white;
}

.hiw-step-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.hiw-step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 260px;
  margin: 0 auto;
}

/* ============================================
   7. Business Verticals
   ============================================ */
.verticals {
  padding: 4.8rem 0 6rem;
  background: white;
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.vertical-card {
  text-align: center;
  padding: 2rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.vertical-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.vertical-card.available {
  border-top: 3px solid var(--success);
}

.vertical-card.coming-soon {
  opacity: 0.65;
}

.vertical-card.coming-soon:hover {
  opacity: 0.85;
}

.vertical-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--primary);
}

.coming-soon .vertical-icon {
  color: var(--text-muted);
}

.vertical-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.coming-soon .vertical-name {
  color: var(--text-muted);
}

.vertical-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.vertical-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-top: 0.75rem;
}

.badge-available {
  background: rgba(16,185,129,0.1);
  color: var(--success);
}

.badge-coming {
  background: var(--bg);
  color: var(--text-muted);
}

/* ============================================
   8. Features
   ============================================ */
.features {
  padding: 6rem 0;
  background: var(--bg);
}

.features-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

/* Report Preview (CSS-only mockup) */
.report-preview {
  background: var(--card);
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: sticky;
  top: 6rem;
}

.preview-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.preview-logomark {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
}

.preview-subtitle {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
}

.preview-body {
  padding: 1.75rem 1.5rem;
}

.preview-score {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.preview-score-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: conic-gradient(var(--success) 0% 0%, var(--border) 0% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.preview-score-circle::before {
  content: '';
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: white;
  position: absolute;
}

.preview-score-number {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--success);
}

.preview-score-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.preview-score-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--success);
}

.preview-score-verdict {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.preview-bars {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.preview-bar-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.preview-bar-label {
  width: 65px;
  font-size: 0.6rem;
  color: var(--text-muted);
  text-align: right;
  flex-shrink: 0;
}

.preview-bar-track {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.preview-bar-fill {
  height: 100%;
  border-radius: 3px;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 16px);
  gap: 2px;
  margin-bottom: 1.5rem;
  border-radius: 6px;
  overflow: hidden;
}

.preview-grid-cell {
  border-radius: 2px;
}

.preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.preview-metric {
  background: var(--bg);
  border-radius: 6px;
  padding: 0.5rem;
  text-align: center;
}

.preview-metric-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
}

.preview-metric-label {
  font-size: 0.55rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Feature List */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.feature-item:hover {
  background: white;
}

.feature-number {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-content {
  flex: 1;
}

.feature-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.feature-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   9. Trust / Social Proof
   ============================================ */
.trust {
  padding: 5rem 0;
  background: white;
}

.trust-sources {
  text-align: center;
  margin-bottom: 3rem;
}

.trust-sources-label {
  font-size: 0.845rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-logo {
  font-size: 1.19rem;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0.55;
  white-space: nowrap;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.trust-stat {
  text-align: center;
  padding: 1.5rem;
}

.trust-stat-number {
  font-family: var(--font-serif);
  font-size: 2.625rem;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.trust-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================
   10. Pricing
   ============================================ */
.pricing {
  padding: 6rem 0;
  background: var(--bg);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 820px;
  margin: 0 auto;
  align-items: start;
}

.pricing-card {
  background: var(--card);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--border);
  box-shadow: var(--shadow-xl);
  padding: 3rem 2rem;
  margin-top: 38px;
}

.pricing-card.featured:hover {
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
}

.pricing-amount {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  color: var(--text);
  line-height: 1;
}

.pricing-period {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.pricing-original {
  font-size: 0.88rem;
  color: var(--danger);
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text);
}

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

.btn-pricing {
  width: 100%;
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  font-family: var(--font-sans);
}

.btn-pricing-outline {
  background: transparent;
  color: var(--primary);
}

.btn-pricing-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-pricing-solid {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.btn-pricing-solid:hover {
  background: #2563eb;
  border-color: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59,130,246,0.35);
}

/* Guarantee Card */
.guarantee-content {
  padding: 0.5rem 0;
}

.guarantee-text {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.guarantee-testimonial {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.guarantee-quote {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1rem;
}

.guarantee-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.guarantee-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.guarantee-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

.guarantee-role {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================
   10b. Comparison Table
   ============================================ */
.comparison {
  padding: 6rem 0 0;
  background: white;
}

.comparison-table-wrap {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.comparison-table thead {
  border-bottom: 2px solid var(--border);
}

.comparison-table th {
  padding: 0.85rem 1rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.comparison-table th.comparison-highlight {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
}

.comparison-feature-col {
  width: 220px;
  text-align: left !important;
}

.comparison-table td {
  padding: 0.7rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.comparison-table td.comparison-label {
  text-align: left;
  font-weight: 500;
  color: var(--text);
  font-size: 0.85rem;
}

.comparison-table td.comparison-highlight {
  background: rgba(16, 185, 129, 0.04);
  font-weight: 600;
}

.comparison-check {
  color: var(--success);
  font-weight: 700;
  font-size: 1.1rem;
}

.comparison-x {
  color: #cbd5e1;
  font-size: 0.9rem;
}

.comparison-footer {
  max-width: 900px;
  margin: 1rem auto 0;
  text-align: center;
}

.comparison-footer p {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 640px) {
  .comparison-table { font-size: 0.75rem; }
  .comparison-table th, .comparison-table td { padding: 0.5rem 0.5rem; }
  .comparison-feature-col { width: 140px; }
}

/* ============================================
   11. FAQ
   ============================================ */
.faq {
  padding: 6rem 0;
  background: white;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover {
  color: var(--accent);
}

.faq-item summary::after {
  content: '+';
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 1.25rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   12. Final CTA
   ============================================ */
.final-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  text-align: center;
}

.final-cta .section-title {
  color: white;
  margin-bottom: 1rem;
}

.final-cta .section-subtitle {
  color: rgba(255,255,255,0.75);
  margin: 0 auto 2.5rem;
}

/* ============================================
   13. Footer
   ============================================ */
.footer {
  background: #111827;
  padding: 3.5rem 0 2rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: white;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logomark {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-link {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s ease;
  font-size: 0.88rem;
}

.footer-link:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   14. Responsive
   ============================================ */
@media (max-width: 1024px) {
  .verticals-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .features-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .report-preview {
    position: static;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-globe { display: none; }
  .section-title { font-size: 1.85rem; }
  .hero-headline { font-size: 2.5rem; }
  .hero-subhead { font-size: 1.05rem; }
  .hero { min-height: 85vh; }

  .hiw-steps {
    grid-template-columns: 1fr;
    max-width: 360px;
    gap: 2rem;
  }
  .hiw-step:not(:last-child)::after {
    display: none;
  }

  .nav-links { display: none; }
  .nav-toggle-label { display: flex; }
  .nav-toggle:checked ~ .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    gap: 1rem;
  }
  .nav-toggle:checked ~ .nav-links .nav-link {
    color: var(--text);
    font-size: 1rem;
  }
  .nav-toggle:checked ~ .nav-links .nav-cta {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    text-align: center;
  }

  .verticals-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards { grid-template-columns: 1fr; max-width: 420px; }
  .pricing-card.featured { order: -1; }
  .trust-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .trust-stat-number { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-ctas { flex-direction: column; }
  .hero-form-row { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .section-title { font-size: 1.6rem; }
  .hero-headline { font-size: 2rem; }
  .hero { min-height: 80vh; }
  .verticals-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .verticals { padding: 4rem 0; }
  .features { padding: 4rem 0; }
  .pricing { padding: 4rem 0; }
  .faq { padding: 4rem 0; }
}

/* ============================================
   15. Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-headline,
  .hero-subhead,
  .hero-ctas {
    animation: none;
  }
  html { scroll-behavior: auto; }
}
