/* ═══════════════════════════════════════════════
   Dele — Landing Pages Shared Stylesheet
   Dark Higgsfield Aesthetic · Black/Gold/Green
   ═══════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ─── Design Tokens ─── */
:root {
  --bg: #080806;
  --bg-soft: #0e0e0b;
  --surface: #141410;
  --surface-2: #1c1c17;
  --border: rgba(200,169,110,0.12);
  --gold: #c8a96e;
  --gold-bright: #e8c98a;
  --green: #2d6a4f;
  --green-bright: #52b788;
  --white: #f5f2ec;
  --white-muted: rgba(245,242,236,0.6);
  --white-faint: rgba(245,242,236,0.25);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }

/* ─── Base ─── */
body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
}
body.has-ticker {
  padding-top: 36px;
}

/* ─── Film Grain ─── */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* ═══════════════════════════════════════════════
   HISTORY TICKER (gold bar at very top)
   ═══════════════════════════════════════════════ */
.history-ticker {
  height: 36px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
}
.ticker-label {
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ticker-track {
  display: flex;
  animation: tickerScroll 80s linear infinite;
  white-space: nowrap;
  align-items: center;
  height: 100%;
}
.ticker-track:hover {
  animation-play-state: paused;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  font-size: 11px;
  font-weight: 400;
  color: rgba(245,242,236,0.55);
  white-space: nowrap;
}
.ticker-item .year {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
}
.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(200,169,110,0.35);
  flex-shrink: 0;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(8,8,6,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  z-index: 200;
  display: flex;
  align-items: center;
}
body.has-ticker .navbar {
  top: 36px;
}
.navbar .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 24px;
}
.logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo span {
  color: var(--white);
}

/* ─── Nav Links ─── */
.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  margin-left: auto;
  align-items: center;
}
.nav-links li {
  list-style: none;
}
.nav-links a {
  color: rgba(245,242,236,0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color var(--transition);
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-links a.active {
  color: var(--gold);
}

/* ─── Buttons ─── */
.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-outline:hover {
  background: rgba(200,169,110,0.1);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--bg);
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-display);
  transition: opacity var(--transition), transform var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.btn-gold {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  padding: 12px 28px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(200,169,110,0.28);
}
.btn-ghost {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--white-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.btn-ghost:hover {
  color: var(--white);
}

/* ─── Mobile Menu Button ─── */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: all var(--transition);
}

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

/* ═══════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════ */
section {
  padding: 80px 0;
}
section.hero {
  padding-top: 120px;
  padding-bottom: 80px;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(200,169,110,0.06) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}
section.hero .container {
  text-align: center;
}
section h2, .section-heading {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 em, section h2 em {
  font-style: normal;
  color: var(--gold);
}
.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(245,242,236,0.65);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.section-subtitle {
  color: rgba(245,242,236,0.6);
  font-size: 16px;
  margin-bottom: 48px;
  max-width: 600px;
  line-height: 1.65;
}
section.hero .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

/* ═══════════════════════════════════════════════
   PRICING SECTION
   ═══════════════════════════════════════════════ */
.pricing-section {
  background: var(--bg-soft);
}
.pricing-table {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  width: 100%;
}
.pricing-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid rgba(200,169,110,0.08);
}
.pricing-row:last-child {
  border-bottom: none;
}
.pricing-row.header {
  background: rgba(200,169,110,0.08);
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.pricing-cell {
  padding: 16px 20px;
  font-size: 14px;
  color: rgba(245,242,236,0.75);
  border-right: 1px solid rgba(200,169,110,0.06);
}
.pricing-cell:last-child {
  border-right: none;
}
.pricing-cell.feature-name {
  font-weight: 500;
  color: var(--white);
}
.pricing-cell .check {
  color: var(--green-bright);
  font-weight: 700;
}
.pricing-cell .dash {
  color: rgba(245,242,236,0.2);
}

/* ─── Pricing Cards (alt layout) ─── */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
}
.pricing-card:hover {
  border-color: rgba(200,169,110,0.25);
  transform: translateY(-4px);
}
.pricing-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(200,169,110,0.08), var(--surface) 40%);
}
.pricing-card .plan-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px;
}
.pricing-card .plan-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.pricing-card .plan-price small {
  font-size: 14px;
  font-weight: 400;
  color: var(--white-muted);
}
.pricing-card .plan-desc {
  font-size: 13px;
  color: var(--white-muted);
  margin-bottom: 24px;
}
.pricing-card .plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.pricing-card .plan-features li {
  font-size: 14px;
  color: rgba(245,242,236,0.7);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-card .plan-features li::before {
  content: '✓';
  color: var(--green-bright);
  font-weight: 700;
  flex-shrink: 0;
}
.badge-popular {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 0 0 8px 8px;
}

/* ═══════════════════════════════════════════════
   CARDS — generic, feature, team
   ═══════════════════════════════════════════════ */
.card, .feature-card, .team-card {
  background: var(--surface);
  border: 1px solid rgba(200,169,110,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.card:hover, .feature-card:hover, .team-card:hover {
  border-color: rgba(200,169,110,0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.card-icon, .feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(200,169,110,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.feature-icon.green {
  background: rgba(82,183,136,0.1);
}
.card h3, .feature-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.card p, .feature-card p {
  font-size: 14px;
  color: var(--white-muted);
  line-height: 1.65;
}
.team-card {
  text-align: center;
  padding: 32px 24px;
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(200,169,110,0.2), rgba(82,183,136,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--gold);
  margin: 0 auto 16px;
}
.team-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}
.team-card .role {
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 12px;
}
.team-card p {
  font-size: 13px;
  color: var(--white-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   GRID LAYOUTS
   ═══════════════════════════════════════════════ */
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* ═══════════════════════════════════════════════
   STATS STRIP
   ═══════════════════════════════════════════════ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-cell {
  background: var(--bg);
  padding: 48px 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.04em;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.stat-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-faint);
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════ */
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: rgba(200,169,110,0.15);
  position: absolute;
  top: 16px;
  left: 24px;
  line-height: 1;
}
.testimonial-card blockquote {
  font-size: 15px;
  color: rgba(245,242,236,0.8);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(200,169,110,0.2), rgba(82,183,136,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--gold);
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 500;
  font-size: 14px;
}
.testimonial-role {
  font-size: 12px;
  color: var(--white-muted);
}

/* ═══════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════ */
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--white-muted);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(245,242,236,0.06);
  border: 1px solid rgba(245,242,236,0.08);
  font-size: 15px;
  color: var(--white);
  transition: border-color var(--transition);
}
.form-input:focus {
  outline: none;
  border-color: var(--gold);
}
.form-input::placeholder {
  color: var(--white-faint);
}
textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

/* ═══════════════════════════════════════════════
   CONTACT-SPECIFIC
   ═══════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(200,169,110,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-info-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}
.contact-info-card p {
  font-size: 13px;
  color: var(--white-muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   FEATURES/ABOUT HERO VARIANTS
   ═══════════════════════════════════════════════ */
.page-hero {
  padding-top: 120px;
  padding-bottom: 60px;
  text-align: center;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(200,169,110,0.06), transparent 60%);
}
body.has-ticker .page-hero {
  padding-top: 140px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.page-hero p {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--white-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
footer, .site-footer {
  background: var(--bg-soft);
  border-top: 1px solid rgba(200,169,110,0.1);
  padding: 40px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-brand .logo {
  font-size: 22px;
  margin-bottom: 8px;
  display: block;
}
.footer-tagline {
  font-size: 13px;
  color: var(--white-muted);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(245,242,236,0.5);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-col a:hover {
  color: var(--gold);
}
.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 20px 24px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p, .footer-copy {
  color: rgba(245,242,236,0.4);
  font-size: 13px;
}
footer a, .site-footer a {
  color: var(--gold);
  text-decoration: none;
}
footer p {
  color: rgba(245,242,236,0.4);
  font-size: 13px;
}
.footer-simple {
  text-align: center;
  padding: 40px 24px 24px;
}

/* ═══════════════════════════════════════════════
   DRIVER / RIDER-SPECIFIC
   ═══════════════════════════════════════════════ */
.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.benefit-card:hover {
  border-color: rgba(200,169,110,0.25);
  transform: translateY(-3px);
}
.benefit-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.benefit-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}
.benefit-card p {
  font-size: 13px;
  color: var(--white-muted);
  line-height: 1.6;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
}
.step-card:hover {
  border-color: rgba(200,169,110,0.3);
  transform: translateY(-3px);
}
.step-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 16px;
}
.step-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.step-card p {
  font-size: 14px;
  color: var(--white-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  text-align: left;
  padding: 4px 0;
  cursor: pointer;
}
.faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform var(--transition);
}
.faq-item.open .faq-question::after {
  content: '−';
}
.faq-answer {
  display: none;
  padding-top: 12px;
  font-size: 14px;
  color: var(--white-muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  display: block;
}

/* ═══════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════ */
.cta-section {
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 60%, rgba(200,169,110,0.07), transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  position: relative;
}
.cta-section p {
  font-size: 18px;
  color: var(--white-muted);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.65;
  position: relative;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* ═══════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--white-muted); }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }

/* ═══════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  section {
    padding: 48px 0;
  }
  section.hero, .page-hero {
    padding-top: 100px;
    padding-bottom: 48px;
  }
  body.has-ticker .page-hero {
    padding-top: 110px;
  }
  .hero h1 {
    font-size: clamp(28px, 8vw, 40px);
  }
  section h2, .section-heading {
    font-size: 28px;
  }
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  .pricing-row {
    grid-template-columns: 1fr;
  }
  .pricing-row.header {
    display: none;
  }
  .pricing-cell {
    padding: 12px 16px;
    border-right: none;
    border-bottom: 1px solid rgba(200,169,110,0.06);
  }
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-cell {
    padding: 32px 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-buttons .btn-gold {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .navbar .container {
    padding: 0 16px;
  }
  .card, .feature-card, .team-card {
    padding: 20px;
  }
  .pricing-card {
    padding: 24px 20px;
  }
}

/* ─── Nigerian History Ticker (shared across all landing pages) ─── */
.naija-ticker {
  background: var(--bg-soft, #0e0e0b);
  border-top: 1px solid var(--border, rgba(200,169,110,0.12));
  border-bottom: 1px solid var(--border, rgba(200,169,110,0.12));
  padding: 1rem 0;
  overflow: hidden;
}
.naija-inner {
  display: flex;
  width: max-content;
  animation: naija-scroll 50s linear infinite;
}
.naija-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(245,242,236,0.45);
  padding: 0 3rem;
  white-space: nowrap;
}
.naija-item span {
  color: var(--gold, #c8a96e);
  font-style: normal;
  font-weight: 600;
  margin-right: 0.5rem;
}
@keyframes naija-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
