/* ─── Custom Properties ─────────────────────────────────── */
:root {
  --navy:        #0e1f3e;
  --blue:        #1565c0;
  --blue-hover:  #1976d2;
  --gold:        #56cc00;
  --green:       #16a34a;
  --red:         #dc2626;
  --bg:          #f8fafc;
  --border:      #e2e8f0;
  --text:        #1e293b;
  --muted:       #64748b;
  --white:       #fff;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow:      0 4px 16px rgba(0,0,0,.1);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.16);
  --radius:      10px;
  --radius-sm:   6px;
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: 16px;
  position: relative;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  margin: 0;
  padding: 0;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ─── Navigation ────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(14, 31, 62, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo {
  height: 34px;
  width: 34px;
  object-fit: contain;
  flex-shrink: 0;
  mix-blend-mode: screen;
}

.nav-brand span { color: var(--gold); }

.nav-links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

/* Higher specificity avoids !important */
.nav-links a.nav-cta {
  background: var(--blue);
  color: var(--white);
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: background 0.2s;
}

.nav-links a.nav-cta:hover { background: var(--blue-hover); }

/* ─── Shared Layout Utilities ───────────────────────────── */
.inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section         { padding: 96px 0; }
.section-alt     { background: var(--bg); }
.section-dark    { background: var(--navy); color: var(--white); }

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

.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(21,101,192,0.1);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--blue);
  transition: background 0.2s, border-color 0.2s;
}

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

.btn-outline {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, color 0.2s;
}

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

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 55% at 50% 0%, rgba(21,101,192,0.45) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(86,204,0,0.15);
  border: 1px solid rgba(86,204,0,0.3);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin: 0 0 1.25rem;
  letter-spacing: -0.04em;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin: 0 auto 2rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Stats Bar ─────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  padding: 1.75rem 1.5rem;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  display: block;
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* ─── Services ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow);
  border-color: #c7d7f5;
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}

.icon-blue   { background: rgba(21,101,192,0.1); }
.icon-green  { background: rgba(22,163,74,0.1); }
.icon-gold   { background: rgba(86,204,0,0.1); }
.icon-purple { background: rgba(109,40,217,0.1); }

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.service-card > p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 1rem;
  line-height: 1.6;
}

.service-list {
  list-style: none;
  padding: 0; margin: 0;
}

.service-list li {
  font-size: 0.875rem;
  color: var(--muted);
  padding: 0.3rem 0 0.3rem 1.25rem;
  position: relative;
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ─── Cost Comparison ───────────────────────────────────── */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.comparison-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-header {
  padding: 1.1rem 1.75rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.comparison-bad .comparison-header {
  background: #fef2f2;
  color: #991b1b;
  border-bottom: 1px solid #fecaca;
}

.comparison-good .comparison-header {
  background: var(--navy);
  color: var(--white);
}

.comparison-good .comparison-header span { color: var(--gold); }

.comparison-body {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
}

/* Use border-top (not border-bottom) so the total's thick line
   doesn't stack with the preceding row's border-bottom */
.comparison-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
}

.comparison-body .comparison-row:first-child {
  border-top: none;
}

.comparison-row-label { color: var(--muted); }
.comparison-row-value { font-weight: 600; color: var(--text); }

/* Higher specificity removes need for !important */
.comparison-body .comparison-total {
  background: #f8fafc;
  border-top: 2px solid var(--border);
}

.comparison-total .comparison-row-label {
  font-weight: 700;
  color: var(--text);
  font-size: 0.95rem;
}

.comparison-bad .comparison-total .comparison-row-value {
  color: var(--red);
  font-size: 1.05rem;
}

.comparison-good .comparison-total .comparison-row-value {
  color: var(--green);
  font-size: 1.05rem;
}

.comparison-note {
  padding: 0.9rem 1.75rem;
  font-size: 0.8rem;
  color: var(--muted);
  background: var(--bg);
  border-top: 1px solid var(--border);
  line-height: 1.6;
}

.savings-note {
  font-size: 0.52em;
  vertical-align: super;
  color: var(--gold);
  text-decoration: none;
  margin-left: -0.05em;
  line-height: 0;
}
.savings-note:hover { text-decoration: underline; }

.savings-footnote {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.75rem;
  text-align: center;
}
.savings-footnote .fn-mark {
  color: var(--gold);
  font-weight: 700;
  margin-right: 0.2em;
}
.savings-footnote a { color: var(--muted); text-decoration: underline; }

.contact-field-center {
  grid-column: 1 / -1;
  max-width: calc(50% - 0.625rem);
  margin-left: auto;
  margin-right: auto;
}

.savings-callout {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: rgba(22,163,74,0.07);
  border: 1px solid rgba(22,163,74,0.2);
  border-radius: var(--radius);
}

.savings-callout strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 0.4rem;
}

.savings-callout p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

/* ─── Pricing ───────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
  /* Extra top space so the absolute-positioned badge clears the header */
  padding-top: 1.25rem;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}

.pricing-card-featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem 2rem;
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0d2000;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-plan-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.pricing-card-featured .pricing-plan-name { color: rgba(255,255,255,0.55); }

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

.pricing-currency {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 0.35rem;
}

.pricing-card-featured .pricing-currency { color: var(--white); }

.pricing-amount {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.04em;
}

.pricing-card-featured .pricing-amount { color: var(--white); }

/* Standalone block element; align-self no longer applies */
.pricing-period {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.pricing-card-featured .pricing-period { color: rgba(255,255,255,0.55); }

.pricing-description {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0.5rem 0 1.5rem;
  line-height: 1.55;
}

.pricing-card-featured .pricing-description { color: rgba(255,255,255,0.65); }

.pricing-features {
  list-style: none;
  padding: 1.25rem 0 0;
  margin: 0 0 2rem;
  border-top: 1px solid var(--border);
}

.pricing-card-featured .pricing-features { border-color: rgba(255,255,255,0.15); }

.pricing-features li {
  font-size: 0.875rem;
  padding: 0.38rem 0 0.38rem 1.5rem;
  position: relative;
  color: var(--text);
}

.pricing-card-featured .pricing-features li { color: rgba(255,255,255,0.85); }

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.pricing-card-featured .pricing-features li::before { color: var(--gold); }

/* Overage card title — replaces the inline style */
.pricing-overage-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

/* Overage rates table */
.overage-rates {
  list-style: none;
  padding: 1.25rem 0 0;
  margin: 0 0 1.75rem;
  border-top: 1px solid var(--border);
}

.overage-rate-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.overage-rate-item:last-child { border-bottom: none; }
.overage-rate-label { color: var(--muted); }
.overage-rate-value { font-weight: 700; color: var(--text); }

.pricing-cta {
  display: block;
  text-align: center;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.pricing-cta-primary {
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
}

.pricing-cta-primary:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  color: var(--white);
}

.pricing-cta-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.pricing-cta-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ─── CTA / Contact ─────────────────────────────────────── */
.cta-section {
  padding: 96px 0;
  background: var(--navy);
  text-align: center;
}

.cta-section h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.cta-section > .inner > p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  margin: 0 auto 2.5rem;
  max-width: 520px;
  line-height: 1.7;
}

.contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-field-full { grid-column: 1 / -1; }

.contact-field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}

.contact-field input,
.contact-field textarea,
.contact-field select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  font-family: inherit;
  width: 100%;
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus,
.contact-field select:focus {
  border-color: rgba(255,255,255,0.5);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder { color: rgba(255,255,255,0.28); }

.contact-field select option { background: var(--navy); color: var(--white); }

.contact-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}

.contact-submit:hover { background: var(--blue-hover); }

/* ─── Footer ────────────────────────────────────────────── */
.site-footer {
  background: #080f1e;
  padding: 1.5rem 0;
  text-align: center;
}

.site-footer p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

/* ─── Inner Page Header ─────────────────────────────────── */
.page-header {
  background: var(--navy);
  padding: 128px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 55% at 50% 0%, rgba(21,101,192,0.35) 0%, transparent 70%);
  pointer-events: none;
}

.page-header-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}

.page-header h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.page-header p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── Program Cards (Work With Us) ──────────────────────── */
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.program-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: box-shadow 0.2s;
}

.program-card:hover {
  box-shadow: var(--shadow);
}

.program-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.program-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.75rem;
}

.program-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 1.25rem;
}

.program-card p:last-of-type {
  margin-bottom: 1.25rem;
}

.program-highlight {
  background: rgba(21,101,192,0.06);
  border-left: 3px solid var(--blue);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.6;
}

.program-highlight strong {
  color: var(--blue);
}

.program-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.program-list li {
  font-size: 0.875rem;
  color: var(--muted);
  padding: 0.3rem 0 0.3rem 1.25rem;
  position: relative;
  line-height: 1.55;
}

.program-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 0.8rem;
}

/* ─── Partner Grid (Our Partners) ──────────────────────── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.partner-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.partner-card:hover {
  box-shadow: var(--shadow);
  border-color: #c7d7f5;
}

.partner-card-placeholder {
  border-style: dashed;
  opacity: 0.55;
}

.partner-card-placeholder:hover {
  box-shadow: none;
  border-color: var(--border);
}

.partner-logo {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.partner-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.4rem;
}

.partner-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* ─── About Page ────────────────────────────────────────── */
.about-intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-intro p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 1.25rem;
}

.about-intro p:last-child { margin-bottom: 0; }

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: start;
}

.founder-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.founder-role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(21,101,192,0.1);
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.founder-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.founder-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 0.9rem;
}

.founder-card p:last-child { margin-bottom: 0; }

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

.belief-item {
  padding: 1.5rem 1.5rem 1.5rem 1.25rem;
  border-left: 3px solid var(--blue);
  background: rgba(21,101,192,0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.belief-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.35rem;
}

.belief-item p {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* ─── Footer Nav ────────────────────────────────────────── */
.site-footer {
  background: #080f1e;
  padding: 2.5rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  height: 44px;
  width: 44px;
  object-fit: contain;
  mix-blend-mode: screen;
  opacity: 0.85;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255,255,255,0.75);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  margin: 0;
}

/* ─── How It Works ──────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.6rem;
}

.step-card > p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ─── Mobile Nav Toggle ─────────────────────────────────── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid > .pricing-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  /* Navigation */
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(14, 31, 62, 0.98);
    padding: 0.5rem 2rem 1.5rem;
    flex-direction: column;
    gap: 0;
  }

  .nav-links.open { display: flex; }

  .nav-links li {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links li:first-child { border-top: none; }

  .nav-links a {
    display: block;
    padding: 0.8rem 0;
    font-size: 1rem;
  }

  .nav-links a.nav-cta {
    margin-top: 0.75rem;
    text-align: center;
    padding: 0.75rem;
  }

  /* Hero */
  .hero { padding: 120px 0 72px; }

  /* Sections */
  .section      { padding: 64px 0; }
  .cta-section  { padding: 64px 0; }

  /* Stats — 2×2 grid */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .stat-item:nth-child(2)              { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4)              { border-top: 1px solid var(--border); }

  /* How It Works */
  .steps-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Comparison */
  .comparison-grid { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }

  .pricing-grid > .pricing-card:last-child {
    grid-column: auto;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Contact card full-width on mobile */
  .contact-card {
    padding: 1.75rem 1.25rem;
  }

  /* Inner page header */
  .page-header { padding: 100px 0 56px; }

  /* Program cards */
  .program-grid { grid-template-columns: 1fr; }

  /* Partner grid */
  .partners-grid { grid-template-columns: repeat(2, 1fr); }

  /* About page */
  .founders-grid { grid-template-columns: 1fr; }
  .belief-grid   { grid-template-columns: 1fr; }

  /* Footer */
  .footer-links { gap: 1.25rem; }
}

@media (max-width: 480px) {
  .partners-grid { grid-template-columns: 1fr; }
}

/* ─── Quote Form Feedback ───────────────────────────────── */
.quote-success,
.quote-error {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.quote-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
}

.quote-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}

.quote-error a { color: inherit; text-decoration: underline; }

/* ─── Volume Discounts ──────────────────────────────────── */
.discount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.25rem;
  align-items: start;
}

.discount-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  text-align: center;
  position: relative;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}

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

.discount-card-mid {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
  padding: 2.75rem 2rem 2.25rem;
}

.discount-card-dark {
  background: #07122a;
  border: 2px solid var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 2.75rem 2rem 2.25rem;
}

.discount-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.discount-badge-gold {
  background: var(--gold);
  color: #0d2000;
}

.discount-threshold {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.discount-card-mid .discount-threshold,
.discount-card-dark .discount-threshold { color: rgba(255,255,255,0.5); }

.discount-pct {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}

.discount-pct span {
  font-size: 2.2rem;
  font-weight: 700;
  vertical-align: super;
  line-height: 0;
  margin-left: 0.05rem;
}

.discount-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.discount-card-mid .discount-label,
.discount-card-dark .discount-label { color: rgba(255,255,255,0.55); }

.discount-savings {
  font-size: 0.85rem;
  background: rgba(86,204,0,0.07);
  border: 1px solid rgba(86,204,0,0.2);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.55;
  color: var(--text);
}

.discount-card-mid .discount-savings,
.discount-card-dark .discount-savings {
  color: rgba(255,255,255,0.8);
  background: rgba(86,204,0,0.1);
  border-color: rgba(86,204,0,0.25);
}

.discount-savings strong { color: var(--gold); }

.discount-cta {
  display: block;
  padding: 0.8rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  transition: all 0.2s;
  border: 2px solid var(--border);
  color: var(--text);
}

.discount-cta:hover { border-color: var(--blue); color: var(--blue); }

.discount-cta-blue {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.discount-cta-blue:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  color: var(--white);
}

.discount-cta-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #0d2000;
  font-weight: 700;
}

.discount-cta-gold:hover {
  background: #63e000;
  border-color: #63e000;
  color: #0d2000;
}

.discount-footnote {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2rem;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .discount-grid { grid-template-columns: 1fr 1fr; }
  .discount-grid .discount-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .discount-grid { grid-template-columns: 1fr; }
  .discount-grid .discount-card:last-child {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }
}

/* ─── Scroll Reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ─── Hero Glow Pulse ───────────────────────────────────── */
@keyframes hero-glow {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}

.hero::before { animation: hero-glow 7s ease-in-out infinite; }

/* ─── Promotion Banner ──────────────────────────────────── */
.promo-banner {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 1100;
  background: linear-gradient(90deg, #1a3a5c 0%, #0f6cbd 100%);
  color: #fff;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: .9rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

.promo-top    { top: 64px; z-index: 99; }
.promo-bottom { bottom: 0; }

.promo-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.promo-title  { font-weight: 700; }
.promo-body   { opacity: .9; }

.promo-btn {
  background: #fff;
  color: #0f6cbd;
  border: none;
  border-radius: 4px;
  padding: 4px 14px;
  font-weight: 700;
  font-size: .85rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
}
.promo-btn:hover { background: #e8f0fa; color: #0f6cbd; }

.promo-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  cursor: pointer;
  padding: 2px 6px;
  line-height: 1;
  margin-left: auto;
  flex-shrink: 0;
}
.promo-close:hover { color: #fff; }

/* ─── Promo Themes ──────────────────────────────────────── */
.promo-theme-dark    { background: linear-gradient(90deg, #1a3a5c 0%, #0f6cbd 100%); color: #fff; }
.promo-theme-light   { background: #f0f6ff; color: #1a3a5c; box-shadow: 0 2px 8px rgba(0,0,0,.12); }
.promo-theme-gold    { background: linear-gradient(90deg, #6b4c00 0%, #c9920b 100%); color: #fff; }
.promo-theme-alert   { background: linear-gradient(90deg, #7a1515 0%, #d32f2f 100%); color: #fff; }
.promo-theme-success { background: linear-gradient(90deg, #14401e 0%, #2e7d32 100%); color: #fff; }

.promo-theme-light .promo-btn          { background: #0f6cbd; color: #fff; }
.promo-theme-light .promo-btn:hover    { background: #0a5296; color: #fff; }
.promo-theme-light .promo-close        { color: #1a3a5c; opacity: .6; }
.promo-theme-light .promo-close:hover  { color: #0f6cbd; opacity: 1; }

.promo-theme-gold .promo-btn    { background: #fff3cd; color: #6b4c00; }
.promo-theme-gold .promo-btn:hover { background: #ffe8a1; }
.promo-theme-alert .promo-btn   { background: #fff; color: #d32f2f; }
.promo-theme-alert .promo-btn:hover { background: #ffeaea; }
.promo-theme-success .promo-btn { background: #fff; color: #2e7d32; }
.promo-theme-success .promo-btn:hover { background: #e8f5e9; }

/* ─── Promo Animations ──────────────────────────────────── */
@keyframes promo-slide-down {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
@keyframes promo-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes promo-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes promo-zoom {
  from { transform: scale(.75); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
@keyframes promo-bounce {
  0%   { transform: translateY(-120%); }
  55%  { transform: translateY(8px); }
  75%  { transform: translateY(-4px); }
  90%  { transform: translateY(2px); }
  100% { transform: translateY(0); }
}
@keyframes promo-flip {
  from { transform: perspective(400px) rotateX(-80deg); opacity: 0; }
  to   { transform: perspective(400px) rotateX(0deg);   opacity: 1; }
}

.promo-anim-slide-down { animation: promo-slide-down .42s cubic-bezier(.25,.46,.45,.94) both; }
.promo-anim-slide-up   { animation: promo-slide-up   .42s cubic-bezier(.25,.46,.45,.94) both; }
.promo-anim-fade       { animation: promo-fade       .55s ease both; }
.promo-anim-zoom       { animation: promo-zoom       .4s  cubic-bezier(.175,.885,.32,1.275) both; }
.promo-anim-bounce     { animation: promo-bounce     .7s  ease both; }
.promo-anim-flip       { animation: promo-flip       .5s  ease both; transform-origin: top center; }

/* ─── CTA Button Shake ──────────────────────────────────── */
@keyframes promo-btn-shake {
  0%,100% { transform: translateX(0) rotate(0); }
  15%     { transform: translateX(-6px) rotate(-3deg); }
  30%     { transform: translateX(6px)  rotate(3deg); }
  45%     { transform: translateX(-4px); }
  60%     { transform: translateX(4px); }
  78%     { transform: translateX(-2px); }
  90%     { transform: translateX(2px); }
}
.promo-btn-shake { animation: promo-btn-shake .55s ease both; }
