/* ============================================================
   Clear Path Mitigation — Premium Redesign
   Colors matched to logo: deep indigo navy + soft violet purple
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

:root {
  /* Logo-matched palette */
  --navy:          #16124a;   /* "Clear Path" text — deep indigo */
  --navy-mid:      #1e1a6e;   /* slightly lighter navy for gradients */
  --violet:        #7c52d4;   /* "Mitigation" text — soft classic violet */
  --violet-mid:    #8b5cf6;   /* mid violet — buttons, accents */
  --violet-light:  #a78bfa;   /* lighter violet */
  --violet-pale:   #f0ecff;   /* very light lavender — shield bg */
  --violet-border: #ddd6fe;
  --violet-glow:   rgba(124, 82, 212, 0.18);

  /* Shield gradient approximation */
  --shield-from:   #e8e4f8;
  --shield-to:     #c4b5fd;

  /* Neutral */
  --dark:          #0f0d2e;   /* near-black for text */
  --gray-dark:     #374151;
  --gray:          #6b7280;
  --gray-mid:      #9ca3af;
  --gray-light:    #f8f7ff;   /* very slight purple tint on bg */
  --white:         #ffffff;

  /* Status */
  --success:       #059669;
  --warn:          #d97706;
  --danger:        #dc2626;

  /* Gradients */
  --grad-hero:     linear-gradient(135deg, #0d0b33 0%, #1e1a6e 45%, #3b2a9e 75%, #5b3fc8 100%);
  --grad-card:     linear-gradient(135deg, #16124a, #3b2a9e);
  --grad-violet:   linear-gradient(135deg, #7c52d4, #a78bfa);
  --grad-cta:      linear-gradient(135deg, #0d0b33 0%, #3b2a9e 60%, #7c52d4 100%);

  /* Shadows */
  --shadow-sm:     0 1px 3px rgba(22,18,74,.08), 0 1px 2px rgba(22,18,74,.06);
  --shadow-md:     0 4px 16px rgba(22,18,74,.10), 0 2px 6px rgba(22,18,74,.07);
  --shadow-lg:     0 12px 40px rgba(22,18,74,.14), 0 4px 12px rgba(22,18,74,.08);
  --shadow-violet: 0 8px 32px rgba(124,82,212,.28);
  --shadow-glow:   0 0 40px rgba(124,82,212,.20);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--gray-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--navy); }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.2rem; }

.display-font { font-family: 'Playfair Display', Georgia, serif; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 0.65rem;
  background: var(--violet-pale);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  border: 1px solid var(--violet-border);
}
.section-label::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--violet);
  border-radius: 50%;
}

/* ── Layout ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
.section   { padding: 5.5rem 0; }
.section--gray    { background: var(--gray-light); }
.section--navy    { background: var(--navy); color: var(--white); }
.section--violet  { background: var(--violet-pale); }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(124,82,212,.12);
  box-shadow: 0 1px 24px rgba(22,18,74,.07);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.nav__logo svg { width: 44px; height: 44px; flex-shrink: 0; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav__logo-text strong { font-size: 1.1rem; color: var(--navy); font-weight: 800; letter-spacing: -.02em; }
.nav__logo-text span   { font-size: 0.8rem; color: var(--violet); font-weight: 600; letter-spacing: .02em; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-dark);
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--grad-violet);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav__links a:hover { color: var(--violet); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__links .nav-cta a {
  background: var(--grad-violet);
  color: var(--white);
  padding: 0.6rem 1.35rem;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: var(--shadow-violet);
  transition: transform 0.15s, box-shadow 0.15s;
}
.nav__links .nav-cta a::after { display: none; }
.nav__links .nav-cta a:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(124,82,212,.4); color: white; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border: none; background: none; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }

/* ── HERO ── */
.hero {
  background: var(--grad-hero);
  color: var(--white);
  padding: 6.5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}
/* mesh / orb decorations */
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,82,212,.25) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167,139,250,.15) 0%, transparent 70%);
  bottom: -100px; left: 10%;
  pointer-events: none;
}
/* subtle grid overlay */
.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(167,139,250,.15);
  border: 1px solid rgba(167,139,250,.35);
  color: var(--violet-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.4rem;
}
.hero__badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--violet-light);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--violet-light);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.hero h1 em {
  font-style: normal;
  background: var(--grad-violet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.08rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 2.2rem;
  max-width: 480px;
  line-height: 1.75;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__stats {
  display: flex;
  gap: 0;
  margin-top: 3.5rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  max-width: 440px;
}
.hero__stat {
  flex: 1;
  padding: 1.25rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.hero__stat:last-child { border-right: none; }
.hero__stat strong { display: block; font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero__stat span   { font-size: 0.75rem; color: rgba(255,255,255,.55); margin-top: 0.25rem; display: block; }

/* Hero eligibility card */
.hero__card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.hero__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-violet);
}
.hero__card h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}
.hero__card-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }
.hero__card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: rgba(255,255,255,.82);
  font-size: 0.9rem;
  line-height: 1.55;
}
.hero__card-list .icon {
  width: 24px; height: 24px;
  background: var(--grad-violet);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  box-shadow: 0 2px 8px rgba(124,82,212,.4);
}
.hero__card-list .icon svg { width: 13px; height: 13px; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  font-family: inherit;
  letter-spacing: 0.01em;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--grad-violet);
  color: var(--white);
  box-shadow: var(--shadow-violet);
}
.btn--primary:hover { box-shadow: 0 12px 40px rgba(124,82,212,.45); }

.btn--outline {
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.3);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn--outline:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.5); }

.btn--navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn--navy:hover { box-shadow: var(--shadow-lg); }

.btn--ghost {
  background: var(--violet-pale);
  color: var(--violet);
  border: 1.5px solid var(--violet-border);
}
.btn--ghost:hover { background: var(--violet-border); }

/* PayPal button */
.btn--paypal {
  background: linear-gradient(135deg, #009cde, #0070ba);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 1.05rem 2.5rem;
  width: 100%;
  text-align: center;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: none;
  cursor: not-allowed;
  opacity: 0.45;
  transition: opacity 0.25s, transform 0.18s, box-shadow 0.18s;
  letter-spacing: 0.01em;
  filter: grayscale(0.3);
}
.btn--paypal.active {
  cursor: pointer;
  opacity: 1;
  filter: none;
}
.btn--paypal.active:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(0,112,186,.4); }

/* ── TRUST BAR ── */
.trust-bar {
  background: linear-gradient(90deg, var(--violet-pale) 0%, #f5f2ff 100%);
  border-bottom: 1px solid var(--violet-border);
  padding: 1.1rem 0;
}
.trust-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  padding: 0.35rem 2rem;
  border-right: 1px solid var(--violet-border);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 18px; height: 18px; color: var(--violet); flex-shrink: 0; }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border: 1px solid #ede9fe;
  border-radius: 16px;
  padding: 2.25rem;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--violet-pale) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.25s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--violet-border); }
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 54px; height: 54px;
  background: var(--grad-violet);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  box-shadow: 0 4px 16px rgba(124,82,212,.3);
  position: relative;
}
.service-card__icon svg { width: 26px; height: 26px; color: white; }
.service-card h3 { color: var(--navy); margin-bottom: 0.65rem; font-size: 1.05rem; position: relative; }
.service-card p  { font-size: 0.9rem; color: var(--gray); line-height: 1.7; position: relative; }

/* ── SERVICES SIMPLE ── */
.services-simple {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}
.services-simple__card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--violet-border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.services-simple__card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.services-simple__icon {
  width: 52px; height: 52px;
  background: var(--grad-violet);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(124,82,212,.3);
}
.services-simple__icon svg { width: 24px; height: 24px; color: white; }
.services-simple__card h3 { color: var(--navy); margin-bottom: 0.5rem; font-size: 1.05rem; }
.services-simple__card p  { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* ── ELIGIBILITY ── */
.eligibility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-top: 2.5rem;
}
.eligibility__list { list-style: none; display: flex; flex-direction: column; gap: 1.4rem; margin-top: 1.5rem; }
.eligibility__list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--violet-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.eligibility__list li:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.eligibility__list .check {
  width: 28px; height: 28px;
  background: var(--grad-violet);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  box-shadow: 0 2px 8px rgba(124,82,212,.35);
}
.eligibility__list .check svg { width: 14px; height: 14px; color: white; }
.eligibility__list li p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }
.eligibility__list li strong { display: block; color: var(--navy); margin-bottom: 0.2rem; font-size: 0.95rem; }

.eligibility__callout {
  background: var(--grad-card);
  border-radius: 20px;
  padding: 2.75rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.eligibility__callout::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,82,212,.4) 0%, transparent 70%);
  top: -100px; right: -80px;
  pointer-events: none;
}
.eligibility__callout h3 { color: var(--white); margin-bottom: 1rem; font-size: 1.45rem; position: relative; }
.eligibility__callout p  { color: rgba(255,255,255,.78); font-size: 0.92rem; margin-bottom: 1.5rem; line-height: 1.7; position: relative; }
.eligibility__callout .btn { width: 100%; text-align: center; position: relative; }

/* ── HOW IT WORKS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  counter-reset: steps;
}
.step { text-align: center; position: relative; }
.step::after {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(50% + 38px);
  right: calc(-50% + 38px);
  height: 2px;
  background: linear-gradient(90deg, var(--violet-border), transparent);
}
.step:last-child::after { display: none; }
.step__num {
  width: 48px; height: 48px;
  background: var(--grad-violet);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  counter-increment: steps;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-violet);
}
.step h3 { color: var(--navy); margin-bottom: 0.4rem; font-size: 0.97rem; }
.step p   { font-size: 0.83rem; color: var(--gray); line-height: 1.6; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--grad-cta);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,82,212,.3) 0%, transparent 65%);
  top: -300px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.cta-band h2 { color: var(--white); margin-bottom: 1rem; position: relative; font-weight: 800; }
.cta-band p  { color: rgba(255,255,255,.78); max-width: 560px; margin: 0 auto 2.2rem; position: relative; }
.cta-band__actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; position: relative; }

/* ── PAGE HERO (generic) ── */
.page-hero {
  background: var(--grad-hero);
  color: white;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { color: white; margin-bottom: 0.85rem; font-weight: 800; }
.page-hero p  { color: rgba(255,255,255,.78); max-width: 580px; margin: 0 auto; }
.page-hero .section-label { background: rgba(167,139,250,.18); border-color: rgba(167,139,250,.3); color: var(--violet-light); }
.page-hero .section-label::before { background: var(--violet-light); }

/* ── ABOUT PAGE ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--violet-border);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  box-shadow: var(--shadow-sm);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-violet);
}
.team-card__avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--grad-violet);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  font-size: 1.6rem;
  color: white;
  font-weight: 800;
  box-shadow: var(--shadow-violet);
}
.team-card h3 { color: var(--navy); margin-bottom: 0.3rem; }
.team-card .role { color: var(--violet); font-size: 0.83rem; font-weight: 700; margin-bottom: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; }
.team-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }

.team-card__photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 1.4rem;
  overflow: hidden;
  border: 3px solid var(--violet-border);
  box-shadow: var(--shadow-violet);
  position: relative;
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.team-card__photo--fun {
  border-radius: 16px;
  width: 130px;
  height: 110px;
  border-color: var(--violet-light);
}
.team-card__photo-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(22,18,74,.75);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.3rem 0.4rem;
  text-align: center;
  line-height: 1.3;
}
.team-card__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
}
.team-card__tags span {
  background: var(--violet-pale);
  color: var(--violet);
  font-size: 0.73rem;
  font-weight: 700;
  padding: 0.28rem 0.75rem;
  border-radius: 100px;
  border: 1px solid var(--violet-border);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.value-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--violet-border);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  bottom: 0;
  background: var(--grad-violet);
  border-radius: 4px 0 0 4px;
}
.value-card h4 { color: var(--navy); margin-bottom: 0.5rem; font-size: 1rem; }
.value-card p  { font-size: 0.87rem; color: var(--gray); line-height: 1.65; }

.states-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--grad-violet);
  color: white;
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 1;
  text-align: center;
  box-shadow: var(--shadow-violet);
}
.states-badge small { display: block; font-size: 0.65rem; font-weight: 700; margin-top: 0.3rem; opacity: 0.85; text-transform: uppercase; letter-spacing: 0.1em; }

/* ── CONTACT PAGE ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}
.contact-info h3 { color: var(--navy); margin-bottom: 1.75rem; }
.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.6rem;
  align-items: flex-start;
  padding: 1.1rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--violet-border);
  box-shadow: var(--shadow-sm);
}
.contact-info__item svg {
  width: 22px; height: 22px;
  color: var(--violet);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info__item p { font-size: 0.88rem; color: var(--gray-dark); line-height: 1.65; }
.contact-info__item strong { color: var(--navy); display: block; margin-bottom: 0.2rem; font-size: 0.92rem; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--violet-border);
  border-radius: 20px;
  padding: 2.75rem;
  box-shadow: var(--shadow-md);
}
.contact-form h3 { color: var(--navy); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.1rem; }
.form-group label { font-size: 0.83rem; font-weight: 700; color: var(--navy); letter-spacing: 0.01em; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1.1rem;
  border: 1.5px solid #ddd6fe;
  border-radius: 9px;
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--gray-dark);
  transition: border-color 0.15s, box-shadow 0.15s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(124,82,212,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; margin-top: 0.5rem; font-size: 1rem; }
.form-success {
  display: none;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-radius: 10px;
  padding: 1.1rem;
  color: var(--success);
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.92rem;
}

/* ── CHECKOUT PAGE ── */
.checkout-hero {
  background: var(--grad-hero);
  color: white;
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.checkout-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.checkout-hero > .container { position: relative; z-index: 1; }
.checkout-hero h1 { color: white; margin-bottom: 0.75rem; font-weight: 800; }
.checkout-hero p  { color: rgba(255,255,255,.78); }

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
  align-items: start;
}
.checkout-summary {
  background: var(--white);
  border: 1px solid var(--violet-border);
  border-radius: 20px;
  padding: 2.25rem;
  position: sticky;
  top: 90px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.checkout-summary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-violet);
}
.checkout-summary h3 { color: var(--navy); margin-bottom: 1.5rem; font-size: 1.05rem; font-weight: 700; position: relative; }
.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--violet-pale);
  font-size: 0.88rem;
  gap: 1rem;
}
.summary-line:last-of-type { border-bottom: none; }
.summary-line span  { color: var(--gray); flex-shrink: 0; }
.summary-line strong { color: var(--navy); text-align: right; }
.summary-total {
  margin-top: 1rem;
  padding: 1rem 1rem;
  border-top: 2px solid var(--violet-pale);
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  background: var(--violet-pale);
  border-radius: 10px;
}
.secure-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.secure-badge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--violet);
  background: var(--violet-pale);
  border: 1px solid var(--violet-border);
  padding: 0.35rem 0.7rem;
  border-radius: 100px;
}
.secure-badge svg { width: 13px; height: 13px; color: var(--success); }

.checkout-form {
  background: var(--white);
  border: 1px solid var(--violet-border);
  border-radius: 20px;
  padding: 2.75rem;
  box-shadow: var(--shadow-md);
}
.checkout-form h3 { color: var(--navy); margin-bottom: 0.75rem; }

/* TOS */
.tos-box {
  background: #fffcf0;
  border: 1.5px solid #f6d860;
  border-radius: 14px;
  padding: 1.75rem;
  margin: 1.75rem 0;
}
.tos-box h4 {
  color: #78350f;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}
.tos-box h4 svg { width: 18px; height: 18px; }
.tos-scroll {
  max-height: 230px;
  overflow-y: auto;
  background: white;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 1.25rem;
  font-size: 0.84rem;
  color: var(--gray-dark);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  scroll-behavior: smooth;
}
.tos-scroll::-webkit-scrollbar { width: 5px; }
.tos-scroll::-webkit-scrollbar-track { background: #fef9e7; border-radius: 4px; }
.tos-scroll::-webkit-scrollbar-thumb { background: #fbbf24; border-radius: 4px; }
.tos-scroll p { margin-bottom: 0.85rem; }
.tos-scroll p:last-child { margin-bottom: 0; }
.tos-scroll strong { color: var(--navy); }

.tos-checks { display: flex; flex-direction: column; gap: 0.85rem; }
.tos-check {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  cursor: pointer;
  font-size: 0.87rem;
  color: var(--gray-dark);
  padding: 0.75rem 1rem;
  background: white;
  border: 1px solid #fde68a;
  border-radius: 8px;
  transition: background 0.15s, border-color 0.15s;
  line-height: 1.55;
}
.tos-check:has(input:checked) {
  background: #f0fdf4;
  border-color: #86efac;
}
.tos-check input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--violet);
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
}

.checkout-divider {
  border: none;
  border-top: 1px solid var(--violet-border);
  margin: 1.75rem 0;
}

/* ── DISCLAIMER ── */
.disclaimer {
  background: #fffbeb;
  border-top: 3px solid #f59e0b;
  padding: 0.9rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: #78350f;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.65);
  padding: 4rem 0 1.75rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,82,212,.08) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}
.footer__logo svg { width: 40px; height: 40px; }
.footer__logo-text strong { color: white; display: block; font-size: 1.05rem; font-weight: 800; letter-spacing: -.01em; }
.footer__logo-text span   { color: var(--violet-light); font-size: 0.78rem; font-weight: 500; }
.footer__brand p { font-size: 0.87rem; line-height: 1.8; max-width: 300px; }
.footer h4 {
  color: white;
  font-size: 0.78rem;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
  transition: color 0.15s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer ul a:hover { color: var(--violet-light); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
}
.footer__bottom a { color: rgba(255,255,255,.4); transition: color 0.15s; }
.footer__bottom a:hover { color: var(--violet-light); }

/* ── STAT / HIGHLIGHT BLOCKS ── */
.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.stat-block__num {
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-block__label { color: rgba(255,255,255,.6); font-size: 0.85rem; }
.stat-block__sub   { color: var(--violet-light); font-size: 0.78rem; font-weight: 600; }

/* ── HERO CARD TEXT FIX ── */
.hero__card-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.hero__card-text strong {
  display: block;
  color: white;
  font-size: 0.92rem;
  line-height: 1.3;
}
.hero__card-text span {
  color: rgba(255,255,255,.65);
  font-size: 0.8rem;
  line-height: 1.3;
}

/* ── LICENSED STATES ── */
.states-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  max-width: 860px;
  margin: 0 auto;
}
.states-grid span {
  background: var(--white);
  border: 1.5px solid var(--violet-border);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  transition: background 0.15s, color 0.15s, transform 0.15s;
  cursor: default;
}
.states-grid span:hover {
  background: var(--violet);
  color: white;
  border-color: var(--violet);
  transform: translateY(-2px);
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  text-align: left;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--violet-border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px; right: 20px;
  font-size: 8rem;
  color: var(--violet-pale);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.testimonial-card__stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.testimonial-card__quote {
  font-size: 0.92rem;
  color: var(--gray-dark);
  line-height: 1.75;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--violet-pale);
}
.testimonial-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad-violet);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-card__author strong { display: block; color: var(--navy); font-size: 0.9rem; }
.testimonial-card__author span   { font-size: 0.78rem; color: var(--gray); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero__inner      { grid-template-columns: 1fr; }
  .hero__card       { display: none; }
  .eligibility-grid { grid-template-columns: 1fr; }
  .contact-layout   { grid-template-columns: 1fr; }
  .checkout-layout  { grid-template-columns: 1fr; }
  .footer__grid     { grid-template-columns: 1fr 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .step::after { display: none; }
}
@media (max-width: 640px) {
  .nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 74px; left: 0; right: 0;
    background: white;
    border-bottom: 1px solid var(--violet-border);
    padding: 1.5rem;
    gap: 1.25rem;
    box-shadow: var(--shadow-lg);
    z-index: 99;
  }
  .nav__links.open { display: flex; }
  .nav__toggle     { display: flex; }
  .footer__grid    { grid-template-columns: 1fr; }
  .trust-bar__inner { flex-direction: column; gap: 0.75rem; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--violet-border); padding: 0.5rem 1rem; width: 100%; justify-content: center; }
  .trust-item:last-child { border-bottom: none; }
  .steps { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; gap: 0; }
  .hero__stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .hero__stat:last-child { border-bottom: none; }
}
