/* ═══════════════════════════════════════════════
   DRAGONFLY CPD — Marketing Site Stylesheet v2
   ═══════════════════════════════════════════════ */

:root {
  --green:       #274640;
  --green-dark:  #1C3832;
  --green-mid:   #2F5248;
  --green-light: #E8F0EE;
  --gold:        #C9970C;
  --gold-dark:   #A07A08;
  --gold-light:  #FDF6E3;
  --white:       #FFFFFF;
  --off-white:   #F8F6F1;
  --gray-light:  #EDEBE6;
  --gray-mid:    #B8B4AC;
  --gray-dark:   #6B6660;
  --text:        #1A2E1E;
  --text-muted:  #6B6660;
  --radius:      12px;
  --radius-lg:   20px;
  --font:        'Nunito', sans-serif;
  --shadow:      0 4px 24px rgba(26,46,30,0.10);
  --shadow-lg:   0 8px 48px rgba(26,46,30,0.16);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: var(--font); font-weight: 800; line-height: 1.12; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); }
h4 { font-size: 1rem; font-weight: 700; }
p { line-height: 1.75; }

/* ── Eyebrow labels ── */
.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ── Layout helpers ── */
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 1.75rem; }
.section { padding: 5.5rem 0; }
.section-sm { padding: 3rem 0; }
.section-dark { background: var(--green-dark); color: var(--white); }
.section-tint { background: var(--off-white); }
.section-gold-tint { background: var(--gold-light); }
.center { text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  border-radius: 50px;
  font-family: var(--font); font-size: 0.92rem; font-weight: 800;
  cursor: pointer; border: none; transition: all 0.2s ease;
  min-height: 48px; touch-action: manipulation;
  text-decoration: none; letter-spacing: 0.01em;
}
.btn-gold { background: var(--gold); color: var(--white); box-shadow: 0 4px 16px rgba(201,151,12,0.3); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,151,12,0.4); }
.btn-white { background: var(--white); color: var(--green); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.45); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-outline-green { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline-green:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }
.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.82rem; min-height: 38px; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-group { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ══════════════════════════════════
   NAVIGATION
══════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--green-dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 1.75rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo img { height: 38px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 0.15rem;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem; font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 8px;
  transition: all 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.09); }
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.nav-login {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem; font-weight: 700;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: all 0.15s;
}
.nav-login:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  color: var(--white); padding: 0.4rem;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0; transition: all 0.2s;
}
.nav-mobile {
  display: none;
  background: var(--green-dark);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1rem 1.75rem 1.5rem;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block; color: rgba(255,255,255,0.8);
  padding: 0.65rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.95rem; font-weight: 600;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .btn { display: block; text-align: center; margin-top: 1rem; }

/* ══════════════════════════════════
   HOME HERO — distinctive split
══════════════════════════════════ */
.hero {
  background: var(--green-dark);
  color: var(--white);
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex; align-items: stretch;
}
/* Diagonal gold accent */
.hero::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(201,151,12,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1140px; margin: 0 auto; padding: 5rem 1.75rem;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center;
  width: 100%;
}
.hero-text .eyebrow { color: var(--gold); font-size: 0.72rem; }
.hero-text h1 { color: var(--white); margin-bottom: 1.25rem; line-height: 1.08; }
.hero-text h1 em {
  color: var(--gold); font-style: normal;
  position: relative;
}
.hero-text h1 em::after {
  content: '';
  position: absolute; left: 0; bottom: -4px; right: 0;
  height: 3px; background: var(--gold); border-radius: 2px; opacity: 0.5;
}
.hero-text p { color: rgba(255,255,255,0.78); font-size: 1.08rem; margin-bottom: 2rem; max-width: 500px; }

/* Hero logo — big transparent dragonfly */
.hero-logo-display {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-logo-display img {
  width: 100%; max-width: 380px;
  opacity: 0.92;
  filter: drop-shadow(0 8px 40px rgba(201,151,12,0.25));
}
/* Subtle glow ring behind logo */
.hero-logo-display::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(201,151,12,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

/* ══════════════════════════════════
   TRUST BAR
══════════════════════════════════ */
.trust-bar {
  background: var(--green);
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.trust-bar-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 1.75rem;
  display: flex; align-items: center; gap: 0; flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.8); font-size: 0.82rem; font-weight: 600;
  padding: 0.35rem 1.25rem;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.trust-item:last-child { border-right: none; }
.trust-item .icon { color: var(--gold); font-size: 0.95rem; }

/* ══════════════════════════════════
   FEATURE GRID — always 3 cols max, clean 2-col fallback
══════════════════════════════════ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.2s;
  box-shadow: var(--shadow);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 52px; height: 52px;
  background: var(--green-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.1rem;
  flex-shrink: 0;
}
.feature-card h3 { color: var(--green); margin-bottom: 0.5rem; font-size: 1rem; }
.feature-card p { color: var(--text-muted); font-size: 0.88rem; }

/* Dark variant feature cards */
.feature-card-dark {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.feature-card-dark h3 { color: var(--white); margin-bottom: 0.4rem; font-size: 1rem; }
.feature-card-dark p { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.feature-card-dark .feature-icon { background: rgba(201,151,12,0.2); }

/* ══════════════════════════════════
   THREE-TIER MODEL
══════════════════════════════════ */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tier-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.tier-head {
  padding: 2rem 1.75rem 1.5rem;
  color: var(--white);
  position: relative;
}
.tier-head::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 2px; background: rgba(255,255,255,0.15);
}
.tier-head.foundation { background: linear-gradient(135deg, var(--green-dark), #1e4a3e); }
.tier-head.applied { background: linear-gradient(135deg, var(--green-mid), #3a6358); }
.tier-head.toolbox { background: linear-gradient(135deg, #8a6508, var(--gold-dark)); }
.tier-head .tier-num {
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase;
  opacity: 0.6; margin-bottom: 0.4rem;
}
.tier-head h3 { color: var(--white); font-size: 1.3rem; }
.tier-body {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-top: none;
  padding: 1.5rem;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.tier-body ul { display: flex; flex-direction: column; gap: 0.65rem; }
.tier-body li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.88rem; color: var(--text-muted);
}
.tier-body li::before { content: '✓'; color: var(--gold); font-weight: 800; flex-shrink: 0; margin-top: 0.05rem; }

/* ══════════════════════════════════
   PATHWAY CARDS
══════════════════════════════════ */
.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.pathway-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.2s;
  box-shadow: var(--shadow);
}
.pathway-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: var(--green-light); }
.pathway-card.coming-soon { opacity: 0.72; }
.pathway-status {
  display: inline-block;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.22rem 0.65rem; border-radius: 20px;
  margin-bottom: 0.85rem;
}
.status-live { background: var(--green-light); color: var(--green); }
.status-soon { background: var(--gray-light); color: var(--gray-dark); }
.pathway-card h3 { font-size: 0.95rem; color: var(--green); margin-bottom: 0.35rem; font-weight: 700; }
.pathway-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }
.pathway-tiers {
  display: flex; gap: 0.35rem; margin-top: 0.85rem; flex-wrap: wrap;
}
.tier-pill {
  font-size: 0.68rem; font-weight: 700; padding: 0.2rem 0.55rem;
  border-radius: 20px; background: var(--gray-light); color: var(--gray-dark);
}
.tier-pill.f { background: var(--green-light); color: var(--green); }
.tier-pill.a { background: #E0EDE9; color: var(--green-mid); }
.tier-pill.t { background: var(--gold-light); color: var(--gold-dark); }

/* ══════════════════════════════════
   STATS BAR — distinctive dark card
══════════════════════════════════ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.stat-block {
  padding: 2.25rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.stat-block:last-child { border-right: none; }
.stat-num { font-size: 2.4rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 0.4rem; font-weight: 500; }

/* ══════════════════════════════════
   PROCESS STEPS
══════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: steps;
}
.step {
  position: relative;
  padding: 2rem 1.5rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  counter-increment: steps;
}
.step::before {
  content: counter(steps);
  position: absolute; top: -14px; left: 1.5rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.78rem; font-weight: 800;
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.step h4 { margin-bottom: 0.5rem; color: var(--green); }
.step p { font-size: 0.88rem; color: var(--text-muted); }

/* ══════════════════════════════════
   PACKAGE CARDS
══════════════════════════════════ */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.package-card {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: all 0.2s;
  position: relative;
}
.package-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--green-light); }
.package-card.featured { border-color: var(--gold); }
.featured-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--white);
  font-size: 0.68rem; font-weight: 800; padding: 0.25rem 0.9rem;
  border-radius: 20px; white-space: nowrap; letter-spacing: 0.05em; text-transform: uppercase;
}
.package-icon { font-size: 2rem; margin-bottom: 1rem; }
.package-card h3 { color: var(--green); font-size: 1.05rem; margin-bottom: 0.35rem; }
.package-card .price-note {
  font-size: 0.78rem; font-weight: 700; color: var(--gold-dark);
  background: var(--gold-light); border-radius: 6px;
  padding: 0.3rem 0.65rem; display: inline-block; margin-bottom: 1rem;
}
.package-card ul { flex: 1; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.package-card li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.85rem; color: var(--text-muted);
}
.package-card li::before { content: '✓'; color: var(--gold); font-weight: 800; flex-shrink: 0; }

/* ══════════════════════════════════
   SECTION HEADING
══════════════════════════════════ */
.section-heading { margin-bottom: 3rem; }
.section-heading.center { text-align: center; }
.section-heading h2 { color: var(--green); margin-bottom: 0.75rem; }
.section-heading p { color: var(--text-muted); font-size: 1rem; max-width: 620px; }
.section-heading.center p { margin: 0 auto; }

/* ══════════════════════════════════
   CTA BAND — gold accent stripe
══════════════════════════════════ */
.cta-band {
  background: var(--green-dark);
  color: var(--white);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .eyebrow { color: var(--gold); }

/* ══════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.25rem;
  font-family: var(--font); font-size: 0.95rem; font-weight: 700;
  color: var(--green);
}
.faq-q .arrow { color: var(--gold); font-size: 1.2rem; transition: transform 0.2s; flex-shrink: 0; margin-left: 1rem; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 1.25rem 1.1rem;
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.75;
}
.faq-item.open .faq-a { display: block; }

/* ══════════════════════════════════
   CONTACT FORM
══════════════════════════════════ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.span-2 { grid-column: span 2; }
label { font-size: 0.83rem; font-weight: 700; color: var(--text); }
input, select, textarea {
  width: 100%; padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius); font-family: var(--font); font-size: 0.95rem;
  color: var(--text); background: var(--off-white); outline: none;
  transition: border-color 0.15s;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); background: var(--white); }
textarea { resize: vertical; min-height: 120px; }
.form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-light);
}
.form-success {
  display: none;
  background: var(--green-light); border: 1px solid #A8D5B8;
  border-radius: var(--radius); padding: 1rem 1.25rem;
  color: var(--green); font-size: 0.9rem; margin-top: 1rem;
}

/* ══════════════════════════════════
   QUOTE BLOCK
══════════════════════════════════ */
.quote-block {
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
  background: var(--gold-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1rem; font-style: italic; color: var(--green-dark);
  line-height: 1.75;
}

/* ══════════════════════════════════
   TWO-COL LAYOUT
══════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col.reverse .col-visual { order: -1; }
.col-text h2 { color: var(--green); margin-bottom: 1rem; }
.col-text p { color: var(--text-muted); margin-bottom: 1rem; }
.col-visual { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.col-visual-card {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--white);
}

/* Mini dashboard mockup */
.mini-dashboard { display: flex; flex-direction: column; gap: 0.55rem; }
.mini-dash-row {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(255,255,255,0.07);
  border-radius: 8px; padding: 0.7rem 1rem;
  font-size: 0.83rem;
}
.dash-name { color: rgba(255,255,255,0.82); }
.dash-status { font-size: 0.72rem; font-weight: 800; padding: 0.2rem 0.55rem; border-radius: 6px; flex-shrink: 0; }
.dash-status.complete { background: var(--green-light); color: var(--green); }
.dash-status.progress { background: var(--gold-light); color: var(--gold-dark); }
.dash-status.pending { background: var(--gray-light); color: var(--gray-dark); }

/* ══════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: var(--white); padding: 4.5rem 0 3.5rem;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,151,12,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { color: var(--white); margin-bottom: 0.85rem; max-width: 720px; }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 600px; font-size: 1.05rem; }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ── Icon list ── */
.icon-list { display: flex; flex-direction: column; gap: 1rem; }
.icon-list-item { display: flex; align-items: flex-start; gap: 0.9rem; }
.icon-list-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--green-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.icon-list-text h4 { font-size: 0.9rem; color: var(--green); margin-bottom: 0.2rem; }
.icon-list-text p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ── About / org badge ── */
.about-card {
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow);
}
.org-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--green-light); color: var(--green);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.4rem 0.85rem; border-radius: 20px; margin-bottom: 1rem;
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.65);
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.84rem; line-height: 1.75; margin-top: 1rem; color: rgba(255,255,255,0.5); }
.footer-col h4 {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col li a { font-size: 0.86rem; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.footer-col li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-logo { margin-bottom: 0.75rem; }

/* ── Chips ── */
.chips { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.chip {
  background: var(--gray-light); color: var(--gray-dark);
  font-size: 0.74rem; font-weight: 700;
  padding: 0.25rem 0.65rem; border-radius: 20px;
}
.chip.green { background: var(--green-light); color: var(--green); }
.chip.gold { background: var(--gold-light); color: var(--gold-dark); }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1000px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .pathway-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-block { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 780px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-logo-display { display: none; }
  .tier-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.reverse .col-visual { order: 0; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .nav-toggle { display: block; }
  .section { padding: 3.5rem 0; }
  .hero { min-height: auto; }
  .hero-inner { padding: 4rem 1.5rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid-2 { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: 1fr; }
  .pathway-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.span-2 { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { gap: 0; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); width: 50%; justify-content: center; }
}
@media (max-width: 480px) {
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }
  .tier-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-block { border-right: none; }
}

/* ── Utility ── */
.mt-1{margin-top:0.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}
.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.5rem}
.text-gold{color:var(--gold)}.text-green{color:var(--green)}.text-muted{color:var(--text-muted)}
.fw-700{font-weight:700}.fw-800{font-weight:800}

/* ══════════════════════════════════
   HERO CARD STACK (visual right col)
══════════════════════════════════ */
.hero-visual-stack {
  display: flex; flex-direction: column; gap: 0.85rem;
}
.hv-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  backdrop-filter: blur(6px);
}
.hv-card-head {
  display: flex; align-items: center; gap: 0.65rem; margin-bottom: 0.65rem;
}
.hv-badge { font-size: 0.72rem; font-weight: 700; }
.hv-badge.live { color: #6dca8a; }
.hv-title { font-size: 0.9rem; font-weight: 700; color: var(--white); }
.hv-tiers { display: flex; gap: 0.4rem; }
.hv-tier {
  font-size: 0.68rem; font-weight: 700; padding: 0.18rem 0.55rem;
  border-radius: 20px;
}
.hv-tier.f { background: rgba(232,240,238,0.15); color: #b8d4cc; }
.hv-tier.a { background: rgba(201,151,12,0.15); color: #e8c060; }
.hv-tier.t { background: rgba(201,151,12,0.25); color: var(--gold); }
.hv-dash { }
.hv-dash-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.7);
  padding: 0.35rem 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hv-dash-row:last-child { border-bottom: none; padding-bottom: 0; }
.hv-complete { color: #6dca8a; font-weight: 800; font-size: 0.85rem; }
.hv-progress { color: var(--gold); font-weight: 800; font-size: 0.8rem; }

@media (max-width: 780px) {
  .hero-visual-stack { display: none; }
}

/* ── Hero logo display ── */
.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-wrap img {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 0 60px rgba(201,151,12,0.35)) drop-shadow(0 0 120px rgba(201,151,12,0.15));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@media (max-width: 780px) {
  .hero-logo-wrap { display: none; }
}
