/* ============================================
   COSMICLEADS — FULL DARK SYSTEM
   ============================================ */

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

:root {
  --bg-base:        #070B16;
  --bg-1:           #0D1326;
  --bg-2:           #111827;
  --bg-3:           #0F172A;
  --bg-deep:        #050914;
  --bg-card:        #111827;
  --bg-card-hover:  #161F33;

  --text-primary:   #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted:     #64748B;

  --accent:         #6366F1;
  --accent-2:       #4F46E5;
  --accent-glow:    rgba(99,102,241,0.35);
  --accent-dim:     rgba(99,102,241,0.12);
  --accent-border:  rgba(99,102,241,0.28);

  --border:         rgba(255,255,255,0.07);
  --border-strong:  rgba(255,255,255,0.12);
  --border-accent:  rgba(99,102,241,0.30);

  --font-serif:     Georgia, 'Times New Roman', serif;
  --font-sans:      system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:      'SF Mono', 'Fira Code', 'Cascadia Code', monospace;

  --radius-sm:      4px;
  --radius-md:      10px;
  --radius-lg:      16px;
  --radius-xl:      20px;

  --max-width:      1140px;
  --section-v:      96px;

  --shadow-card:    0 4px 24px rgba(0,0,0,0.40);
  --shadow-lift:    0 16px 48px rgba(0,0,0,0.50);
  --shadow-glow:    0 12px 40px rgba(99,102,241,0.28);
}

/* ============================================
   BASE
   ============================================ */

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

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.7;
}

img { max-width: 100%; display: block; }

a { color: #818CF8; text-decoration: none; transition: color 0.15s; }
a:hover { color: #A5B4FC; text-decoration: underline; }

/* ============================================
   LAYOUT
   ============================================ */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

/* ============================================
   SECTION SYSTEM — ALL DARK
   ============================================ */

.section {
  padding: var(--section-v) 0;
  background: var(--bg-base);
  border-bottom: 1px solid var(--border);
}

.section:last-of-type { border-bottom: none; }

.section-soft {
  padding: var(--section-v) 0;
  background: var(--bg-1);
  border-bottom: 1px solid var(--border);
}

.section-soft:last-of-type { border-bottom: none; }

.section-dark {
  padding: var(--section-v) 0;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(99,102,241,0.14) 0%, transparent 65%);
  pointer-events: none;
}

.section-dark .container { position: relative; z-index: 1; }
.section-dark:last-of-type { border-bottom: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */

.section-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #818CF8;
  margin-bottom: 18px;
  display: block;
  font-weight: 600;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: normal;
  line-height: 1.15;
  color: var(--text-primary);
}

h1 { font-size: clamp(38px, 5vw, 58px); }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: clamp(17px, 2vw, 21px); }

p { color: var(--text-secondary); font-size: 16px; line-height: 1.8; }

.lead {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.75;
}

strong { color: var(--text-primary); font-weight: 600; }

/* ============================================
   NAVBAR
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,11,22,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  box-shadow: 0 1px 20px rgba(0,0,0,0.40);
}

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

.nav-logo { font-family: var(--font-sans); font-size: 18px; font-weight: 700; color: var(--text-primary); text-decoration: none; flex-shrink: 0; }
.nav-logo:hover { opacity: 0.8; text-decoration: none; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; font-weight: 500; transition: color 0.15s; }
.nav-links a:hover { color: var(--text-primary); text-decoration: none; }
.nav-cta { flex-shrink: 0; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text-secondary); border-radius: 2px; }

.nav-mobile { display: none; flex-direction: column; border-top: 1px solid var(--border); margin-top: 16px; padding-top: 8px; }
.nav-mobile a { font-size: 15px; color: var(--text-secondary); padding: 12px 0; border-bottom: 1px solid var(--border); text-decoration: none; font-weight: 500; }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile.open { display: flex; }

/* ============================================
   HERO — KEEP AS IS
   ============================================ */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(99,102,241,0.35) 0%, rgba(99,102,241,0.14) 24%, rgba(11,16,32,1) 68%),
    linear-gradient(135deg, #0B1020 0%, #131A33 60%, #1E1B4B 100%);
  color: var(--text-primary);
  padding: 120px 0 110px;
  text-align: center;
  border-bottom: 1px solid rgba(99,102,241,0.12);
}

.hero::before {
  content: "";
  position: absolute;
  top: -25%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(99,102,241,0.22), transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.032) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}

.hero .container { position: relative; z-index: 1; }

.hero h1 { color: #FFFFFF; text-shadow: 0 0 40px rgba(99,102,241,0.22); margin-bottom: 22px; }
.hero h1 .navy { color: #A5B4FC; }
.hero .section-label { color: rgba(165,180,252,0.78); }
.hero .lead { color: rgba(248,250,252,0.72); margin: 0 auto 40px; }
.hero .micro-copy { color: rgba(248,250,252,0.38); }
.hero-cta-group { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.micro-copy { font-size: 12px; letter-spacing: 0.01em; }

/* ============================================
   BUTTONS — KEEP AS IS
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  text-decoration: none;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.btn:hover { text-decoration: none; }
.btn:active { transform: scale(0.98); }

.btn-primary,
.btn-hero {
  background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
  color: white;
  border: none;
  box-shadow: 0 12px 34px rgba(99,102,241,0.30);
}

.btn-primary:hover,
.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 52px rgba(99,102,241,0.42);
  filter: brightness(1.05);
}

.btn-hero { font-size: 16px; padding: 17px 44px; }

.btn-outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-strong);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.20);
  transform: translateY(-1px);
}

.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-full { width: 100%; }

/* ============================================
   CARDS — ALL DARK
   ============================================ */

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}

.card-accent {
  background: linear-gradient(180deg, rgba(99,102,241,0.10) 0%, var(--bg-card) 100%);
  border-top: 2px solid var(--accent);
  border-color: var(--border);
}

.card-accent:hover {
  border-top-color: var(--accent);
  border-color: var(--border-accent);
  background: linear-gradient(180deg, rgba(99,102,241,0.14) 0%, var(--bg-card-hover) 100%);
}

.card-featured {
  background: var(--bg-card);
  border: 1.5px solid var(--accent);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.10), var(--shadow-card);
}

.card-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.14), var(--shadow-lift);
}

/* Dark section cards — same dark treatment */
.section-dark .card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: none;
}

.section-dark .card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(99,102,241,0.32);
  box-shadow: 0 16px 48px rgba(0,0,0,0.40);
  transform: translateY(-4px);
}

/* ============================================
   GRIDS
   ============================================ */

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }

/* ============================================
   BADGES & TAGS
   ============================================ */

.badge { display: inline-block; font-size: 11px; padding: 4px 10px; border-radius: var(--radius-sm); font-weight: 500; }
.badge-navy { background: rgba(99,102,241,0.14); color: #A5B4FC; border: 1px solid rgba(99,102,241,0.24); }

.tag {
  display: inline-block;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 13px;
  color: var(--text-secondary);
  transition: border-color 0.15s, color 0.15s;
}

.tag:hover { border-color: var(--border-accent); color: #A5B4FC; }

/* ============================================
   LICENSE TAG
   ============================================ */

.license-tag {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.18);
  border-radius: var(--radius-sm);
  padding: 7px 12px;
  font-size: 11px;
  color: #A5B4FC;
  margin-bottom: 18px;
}

.license-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   WARNING BOX
   ============================================ */

.warning-box {
  background: rgba(180,120,0,0.12);
  border: 1px solid rgba(180,120,0,0.30);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.warning-box .warning-icon { color: #FCD34D; font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.warning-box p { font-size: 13px; color: #FDE68A; line-height: 1.7; margin: 0; }
.warning-box strong { color: #FEF3C7; font-weight: 600; }
.warning-box a { color: #FCD34D; text-decoration: underline; }

/* ============================================
   DELIVERY LIST
   ============================================ */

.delivery-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }

.delivery-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.delivery-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

/* ============================================
   COVERAGE TAGS
   ============================================ */

.coverage-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

/* ============================================
   SAMPLE BOX
   ============================================ */

.sample-box {
  background: linear-gradient(180deg, #040810 0%, #080D1A 100%);
  color: #E5E7EB;
  border: 1px solid rgba(99,102,241,0.20);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.50);
}

.sample-header {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(165,180,252,0.60);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding-bottom: 12px;
  margin-bottom: 16px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.sample-row {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(229,231,235,0.65);
  line-height: 2.3;
}

.sample-note {
  margin-top: 16px;
  font-size: 11px;
  color: rgba(248,250,252,0.35);
  font-style: italic;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 60px;
  font-family: var(--font-serif);
  color: rgba(99,102,241,0.14);
  line-height: 1;
  pointer-events: none;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--border-accent);
}

.testimonial blockquote {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial cite { font-size: 12px; color: var(--text-muted); font-style: normal; font-weight: 500; }

/* ============================================
   PRICING
   ============================================ */

.price-amount { font-family: var(--font-serif); font-size: 36px; color: var(--text-primary); line-height: 1; margin-bottom: 4px; }
.price-period { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; min-height: 18px; }

.price-items { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; flex: 1; }

.price-items li {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}

.price-items li::before { content: "—"; color: var(--accent); flex-shrink: 0; }

/* ============================================
   BILLING TOGGLE
   ============================================ */

.toggle-wrap { display: flex; align-items: center; gap: 14px; margin-bottom: 44px; }
.toggle-label { font-size: 14px; color: var(--text-muted); cursor: pointer; transition: color 0.15s; font-weight: 500; }
.toggle-label.active { color: var(--text-primary); }

.toggle-track {
  width: 52px;
  height: 28px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.toggle-track.on { background: rgba(99,102,241,0.20); border-color: rgba(99,102,241,0.40); }

.toggle-thumb {
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.30);
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 4px;
  transition: left 0.2s, background 0.2s;
}

.toggle-track.on .toggle-thumb { left: 28px; background: var(--accent); }

/* ============================================
   ADD-ON CARDS
   ============================================ */

.addon-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: var(--shadow-card);
}

.addon-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: var(--border-accent);
}

.addon-price { font-family: var(--font-serif); font-size: 40px; color: var(--text-primary); line-height: 1; margin-bottom: 4px; }
.addon-price-sub { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.addon-price-block { text-align: center; min-width: 150px; }
.addon-delivery { font-size: 11px; color: var(--text-muted); margin-top: 8px; line-height: 1.5; }

/* ============================================
   FAQ
   ============================================ */

.faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { font-size: 16px; font-weight: 600; color: var(--text-primary); margin-bottom: 10px; }
.faq-a { font-size: 14px; color: var(--text-secondary); line-height: 1.8; }

/* ============================================
   OBJECTIONS
   ============================================ */

.objection { border-bottom: 1px solid var(--border); padding: 22px 0; }
.objection:first-child { border-top: 1px solid var(--border); }
.objection-q { font-size: 14px; color: var(--text-muted); font-style: italic; margin-bottom: 8px; font-weight: 500; }
.objection-a { font-size: 14px; color: var(--text-secondary); line-height: 1.8; }

/* ============================================
   STEPS
   ============================================ */

.step { display: flex; gap: 28px; padding: 32px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.step:last-child { border-bottom: none; }
.step-num { font-family: var(--font-serif); font-size: 44px; color: rgba(255,255,255,0.08); flex-shrink: 0; width: 52px; line-height: 1; padding-top: 4px; }
.step-content h3 { font-size: 18px; margin-bottom: 10px; font-family: var(--font-sans); font-weight: 600; color: var(--text-primary); }

/* ============================================
   PILLARS
   ============================================ */

.pillar {
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
}

.pillar h3 { font-size: 15px; font-weight: 600; font-family: var(--font-sans); margin-bottom: 10px; color: var(--text-primary); }
.pillar p { color: var(--text-secondary); }

/* ============================================
   METHOD BRIDGE
   ============================================ */

.method-bridge {
  background: linear-gradient(180deg, rgba(99,102,241,0.10) 0%, rgba(99,102,241,0.04) 100%);
  border: 1px solid rgba(99,102,241,0.20);
  border-radius: var(--radius-xl);
  padding: 32px 36px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.30);
}

.method-bridge p { font-size: 15px; color: var(--text-secondary); max-width: 600px; margin: 0; line-height: 1.75; }
.method-bridge a { color: #A5B4FC; }
.method-bridge a:hover { color: #C7D2FE; }

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(99,102,241,0.28) 0%, rgba(99,102,241,0.08) 25%, rgba(11,16,32,1) 68%),
    linear-gradient(135deg, #0B1020 0%, #131A33 60%, #1E1B4B 100%);
  color: var(--text-primary);
  padding: 110px 0;
  text-align: center;
  border-top: 1px solid rgba(99,102,241,0.12);
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -25%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(99,102,241,0.20), transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}

.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: #FFFFFF; margin-bottom: 16px; text-shadow: 0 0 40px rgba(99,102,241,0.20); }
.cta-section .lead { color: rgba(248,250,252,0.65); margin: 0 auto 40px; }
.cta-section .section-label { color: rgba(165,180,252,0.78); }
.cta-section .micro-copy { color: rgba(248,250,252,0.35); }

/* ============================================
   TEAM BANNER
   ============================================ */

.team-banner {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  box-shadow: var(--shadow-card);
}

.team-banner h3 { font-size: 22px; margin-bottom: 8px; font-family: var(--font-serif); color: var(--text-primary); }
.team-banner p { font-size: 14px; color: var(--text-muted); max-width: 480px; }

/* ============================================
   MATH BOX
   ============================================ */

.math-box {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.math-box h3 { font-size: 20px; margin-bottom: 22px; font-family: var(--font-serif); color: var(--text-primary); }

.math-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  gap: 16px;
}

.math-row:last-child { border-bottom: none; }
.math-row .lbl { color: var(--text-secondary); }
.math-row .val { color: #A5B4FC; font-weight: 600; flex-shrink: 0; }

/* ============================================
   FOOTER — DARKEST LAYER
   ============================================ */

.footer {
  background: #040710;
  border-top: 1px solid var(--border);
  padding: 56px 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.50), transparent);
}

.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.footer-logo { font-size: 17px; font-weight: 700; color: var(--text-primary); }
.footer-copy { font-size: 12px; color: var(--text-muted); margin-top: 6px; }
.footer-links { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; align-items: center; }
.footer-links li { display: flex; align-items: center; line-height: 1; }
.footer a { color: var(--text-muted); text-decoration: none; transition: color 0.15s; display: inline-flex; align-items: center; gap: 5px; }
.footer a:hover { color: #A5B4FC; text-decoration: none; }
.footer-links a { font-size: 12px; color: rgba(248,250,252,0.42); }
.footer-links a svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ============================================
   DIVIDER
   ============================================ */

.divider { border: none; border-top: 1px solid var(--border); margin: 64px 0; }

/* ============================================
   UTILITY
   ============================================ */

.text-navy   { color: #818CF8; }
.text-accent { color: var(--accent); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.bg-surface  { background: var(--bg-1); }
.mt-auto { margin-top: auto; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  :root { --section-v: 72px; }
  .container { padding: 0 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero { padding: 96px 0 80px; text-align: left; }
  .hero .lead { text-align: left; }
  .hero-cta-group { align-items: flex-start; }
  h1 { font-size: 34px; }
  h2 { font-size: 27px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .addon-card { grid-template-columns: 1fr; gap: 28px; }
  .addon-price-block { text-align: left; }
  .team-banner { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .cta-section { text-align: left; }
  .hero::before { width: 500px; height: 500px; top: -10%; }
  .cta-section::before { width: 400px; height: 400px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .card { padding: 24px 20px; }
  .addon-card { padding: 24px 20px; }
}

/* ============================================
   EMAIL DISPLAY — CSS ONLY
   Netlify does not scan CSS for email addresses.
   \40 is the CSS unicode escape for @
   ============================================ */

.cl-email::after,
a.cl-email-link:hover {
  color: #C7D2FE;
  text-decoration: underline;
}
