:root {
  --navy:       #0C2340;
  --gold:       #C99700;
  --gold-light: #E8B84B;
  --gold-wash:  #FBF5E6;
  --kelly:      #37B259;
  --kelly-dark: #228A42;
  --kelly-wash: #EAF7EF;
  --cream:      #FAFAF7;
  --white:      #FFFFFF;
  --text:       #0C2340;
  --text-mid:   #2C3E50;
  --text-muted: #4A5568;
  --border:     rgba(12,35,64,0.12);
  --danger:     #c4502a;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── UTILITY ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }
.green { color: var(--kelly); }

.tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--kelly-dark);
  border: 1px solid var(--kelly);
  padding: 6px 16px; border-radius: 2px; margin-bottom: 20px;
}
.tag-gold {
  color: var(--gold); border-color: var(--gold);
}

.section-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(26px,4.5vw,42px);
  line-height: 0.95; letter-spacing: -1px;
  text-transform: uppercase; margin-bottom: 24px;
  color: var(--navy);
}
.section-headline .gold { color: var(--gold); }
.section-headline .green { color: var(--kelly); }

.btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 17px;
  letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; padding: 16px 36px;
  border-radius: 4px; cursor: pointer;
  transition: all 0.2s ease; border: none;
}
.btn-kelly { background: var(--kelly); color: var(--white); }
.btn-kelly:hover { background: var(--kelly-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(55,178,89,0.35); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,151,0,0.35); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { border-color: var(--kelly); color: var(--kelly); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { border-color: var(--kelly); color: var(--kelly); }

.kelly-line { width: 48px; height: 4px; background: var(--kelly); border-radius: 2px; margin-bottom: 24px; }
.kelly-line.center { margin-left: auto; margin-right: auto; }
.gold-line { width: 48px; height: 4px; background: var(--gold); border-radius: 2px; margin-bottom: 24px; }
.gold-line.center { margin-left: auto; margin-right: auto; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: var(--navy);
  border-bottom: 3px solid var(--kelly);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 17px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap; flex-shrink: 0;
}
.nav-logo span { color: var(--kelly); }
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 15px;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.85); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--kelly); }
.nav-book { margin-left: 12px; flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); display: block; transition: all 0.3s; }

@media (max-width: 960px) {
  .nav-links, .nav-book { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--navy); padding: 24px; gap: 20px;
    border-bottom: 3px solid var(--kelly); z-index: 901;
  }
  .nav-book.open { display: block; padding: 0 24px 24px; }
}

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 68px; position: relative; overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(55,178,89,0.08) 0%, transparent 60%),
              linear-gradient(160deg, #0C2340 0%, #0d1e38 50%, #071020 100%);
  z-index: 0;
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(55,178,89,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(55,178,89,0.05) 1px, transparent 1px);
  background-size: 60px 60px; z-index: 0;
}
.hero-layout {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 260px;
  gap: 56px; align-items: center;
  padding: 48px 0 64px; width: 100%;
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 18px; letter-spacing: 5px;
  text-transform: uppercase; color: var(--kelly);
  margin-bottom: 28px; display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 2px; background: var(--kelly); flex-shrink: 0; }
.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(52px,9vw,108px);
  line-height: 0.88; letter-spacing: -2px;
  text-transform: uppercase; margin-bottom: 32px; color: var(--white);
}
.hero-headline .line-gold { color: var(--gold); display: block; }
.hero-sub { font-size: clamp(15px,1.8vw,18px); color: rgba(255,255,255,0.85); max-width: 560px; margin-bottom: 44px; line-height: 1.7; }
.hero-sub strong { color: var(--white); }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-right { display: flex; flex-direction: column; gap: 14px; }
.hero-thumb {
  border-radius: 10px; overflow: hidden;
  border: 2px solid var(--kelly);
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
  transition: transform 0.25s, box-shadow 0.25s;
}
.hero-thumb:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 0 2px var(--kelly); }
.hero-thumb img { width: 100%; height: 155px; object-fit: cover; object-position: top; display: block; }
.hero-thumb-caption {
  padding: 9px 12px; background: rgba(12,35,64,0.96);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600; color: var(--kelly);
  line-height: 1.35; font-style: italic;
}

@media (max-width: 860px) {
  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { flex-direction: row; gap: 12px; }
  .hero-right .hero-thumb { flex: 1; }
  .hero-thumb img { height: 130px; }
}
@media (max-width: 500px) {
  .hero-right { flex-direction: column; }
  .hero-thumb img { height: 200px; }
}

/* ── STATS BAR ── */
.stats-bar { background: var(--kelly); overflow: hidden; }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { padding: 16px 28px; text-align: center; border-right: 1px solid rgba(255,255,255,0.2); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(22px,3vw,36px); color: var(--white); line-height: 1; margin-bottom: 4px; display: block; }
.stat-label { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.88); line-height: 1.3; }
@media (max-width: 640px) {
  .stats-inner { 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 rgba(255,255,255,0.2); }
}

/* ── GALLERY ── */
.gallery-section {
  padding: 48px 0; background: var(--navy); position: relative; overflow: hidden;
}
.gallery-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--kelly), transparent);
}
.gallery-section::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--kelly), transparent);
}
.gallery-header { text-align: center; margin-bottom: 48px; }
.gallery-header p {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(26px,4.5vw,42px); letter-spacing: -1px;
  line-height: 0.95; text-transform: uppercase; color: var(--kelly);
}
.gallery-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 24px; }
.gallery-card { grid-column: span 2; }
.gallery-card:nth-child(1) { grid-column: 2 / 4; }
.gallery-card:nth-child(2) { grid-column: 4 / 6; }
.gallery-card:nth-child(3) { grid-column: 1 / 3; }
.gallery-card:nth-child(4) { grid-column: 3 / 5; }
.gallery-card:nth-child(5) { grid-column: 5 / 7; }
.gallery-card {
  display: flex; flex-direction: column;
  border-radius: 10px; overflow: hidden;
  border: 2px solid rgba(55,178,89,0.3);
  background: rgba(12,35,64,0.95);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5), 0 0 0 2px var(--kelly);
}
.gallery-card img { width: 100%; height: 280px; object-fit: cover; object-position: top; display: block; }
.gallery-photo-placeholder {
  width: 100%; height: 280px;
  border-bottom: 1px solid rgba(55,178,89,0.2);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.gallery-photo-placeholder span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 600;
  color: rgba(55,178,89,0.45); text-align: center; line-height: 1.5; font-style: italic;
}
.gallery-caption {
  padding: 14px 16px; font-size: 16px; color: rgba(255,255,255,0.85);
  line-height: 1.45; font-style: italic; background: rgba(12,35,64,0.95); flex: 1;
}

@media (max-width: 800px) {
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-card:nth-child(1),
  .gallery-card:nth-child(2),
  .gallery-card:nth-child(3),
  .gallery-card:nth-child(4),
  .gallery-card:nth-child(5) { grid-column: span 1; }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card:nth-child(1),
  .gallery-card:nth-child(2),
  .gallery-card:nth-child(3),
  .gallery-card:nth-child(4),
  .gallery-card:nth-child(5) { grid-column: span 1; }
  .gallery-card img, .gallery-photo-placeholder { height: 300px; }
}

/* ── STATS QUOTE STRIP ── */
.stats-quote-strip {
  background: var(--navy);
  text-align: center;
  padding: 28px 36px;
  border-top: 2px solid rgba(201,151,0,0.35);
}
.stats-quote-strip blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(22px, 3.5vw, 32px);
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
  margin: 0 auto 12px;
  max-width: 960px;
  border: none;
  padding: 0;
}
.stats-quote-author {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--kelly);
}

/* ── WHY / HOW IT WORKS ── */
.why-section { padding: 64px 0; position: relative; background: var(--cream); }
.why-section::before {
  content: ''; position: absolute; right: -100px; top: 50%;
  transform: translateY(-50%); width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(55,178,89,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.why-body { font-size: 17px; color: var(--text-mid); line-height: 1.8; }
.why-body p + p { margin-top: 20px; }
.sports-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.sport-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--kelly-dark);
  background: var(--kelly-wash);
  border: 1px solid rgba(55,178,89,0.3);
  padding: 5px 12px; border-radius: 3px;
}
@media (max-width: 800px) { .why-inner { grid-template-columns: 1fr; gap: 40px; } }

/* ── PROBLEM ── */
.problem-section { padding: 64px 0; background: var(--white); position: relative; }
.problem-section::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(12,35,64,0.015) 40px, rgba(12,35,64,0.015) 41px);
  pointer-events: none;
}
.problem-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.problem-card {
  background: var(--cream); border: 1px solid var(--border);
  border-top: 3px solid rgba(201,151,0,0.4);
  border-radius: 8px; padding: 32px 28px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.problem-card:hover { background: var(--gold-wash); border-top-color: var(--gold); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.problem-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 48px; color: rgba(201,151,0,0.2); line-height: 1; margin-bottom: 12px; display: block; }
.problem-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 24px; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); margin-bottom: 10px; }
.problem-desc { font-size: 16px; color: var(--text-muted); line-height: 1.6; }
@media (max-width: 800px) { .problem-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px) { .problem-grid { grid-template-columns: 1fr; } }

/* ── VAULT ── */
.vault-section { padding: 64px 0; position: relative; overflow: hidden; background: var(--cream); }
.vault-section::before {
  content: ''; position: absolute; left: -200px; top: 50%;
  transform: translateY(-50%); width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(55,178,89,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.vault-header { text-align: center; margin-bottom: 72px; }
.vault-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.vault-steps::before {
  content: ''; position: absolute; top: 36px; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(90deg, transparent, var(--kelly), var(--kelly), transparent);
  z-index: 0; opacity: 0.4;
}
.vault-step { text-align: center; padding: 0 24px; position: relative; z-index: 1; }
.vault-step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--kelly);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 28px; color: var(--kelly);
  box-shadow: 0 0 0 6px rgba(55,178,89,0.08), 0 0 24px rgba(55,178,89,0.1);
}
.vault-step-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 22px; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); margin-bottom: 12px; }
.vault-step-desc { font-size: 16px; color: var(--text-muted); line-height: 1.6; }
@media (max-width: 800px) { .vault-steps { grid-template-columns: repeat(2,1fr); gap: 40px; } .vault-steps::before { display: none; } }
@media (max-width: 500px) { .vault-steps { grid-template-columns: 1fr; } }

/* ── NUMBERS ── */
.numbers-section {
  padding: 64px 0; position: relative; overflow: hidden;
  background: var(--navy);
}
.numbers-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201,151,0,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 100%, rgba(55,178,89,0.05) 0%, transparent 60%);
}
.numbers-header { text-align: center; margin-bottom: 56px; }
.numbers-intro {
  font-size: clamp(15px,1.6vw,17px); color: rgba(255,255,255,0.75);
  max-width: 640px; margin: 0 auto; line-height: 1.7;
}
.numbers-intro strong { color: var(--white); }

/* ── Contrast bar ── */
.numbers-contrast {
  display: flex; align-items: stretch; justify-content: center;
  gap: 0; margin-bottom: 64px;
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  max-width: 820px; margin-left: auto; margin-right: auto;
}
.contrast-old, .contrast-new {
  flex: 1; padding: 32px 36px; display: flex;
  flex-direction: column; align-items: center; gap: 6px;
}
.contrast-old { background: rgba(196,80,42,0.1); }
.contrast-new { background: rgba(55,178,89,0.1); }
.contrast-label {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 3px; text-transform: uppercase;
}
.contrast-old .contrast-label { color: #e86f4d; }
.contrast-new .contrast-label { color: var(--kelly); }
.contrast-value {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 32px; color: var(--white); line-height: 1;
}
.contrast-result {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 16px;
}
.contrast-old .contrast-result { color: rgba(232,111,77,0.7); text-decoration: line-through; }
.contrast-new .contrast-result { color: var(--gold-light); }
.contrast-divider {
  width: 56px; min-width: 56px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
}
.contrast-vs {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 16px; letter-spacing: 2px; color: rgba(255,255,255,0.35);
}

/* ── Milestone cards ── */
.milestone-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-bottom: 56px;
}
.milestone-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 36px 28px;
  text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.milestone-card:hover {
  transform: translateY(-4px);
  border-color: rgba(55,178,89,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.milestone-card-hero {
  background: linear-gradient(135deg, rgba(201,151,0,0.12) 0%, rgba(201,151,0,0.04) 100%);
  border-color: rgba(201,151,0,0.3);
}
.milestone-card-hero:hover { border-color: var(--gold); box-shadow: 0 16px 48px rgba(201,151,0,0.15); }
.milestone-age {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 14px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--kelly); display: block;
}
.milestone-card-hero .milestone-age { color: var(--gold); }
.milestone-amount {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(34px, 4vw, 46px); color: var(--white); line-height: 1;
}
.milestone-amount-big { font-size: clamp(42px, 5vw, 56px); }
.milestone-taxfree {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 14px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-light); background: rgba(201,151,0,0.12);
  padding: 4px 14px; border-radius: 3px;
}
.milestone-context {
  font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.5;
}

/* ── Bottom area ── */
.numbers-bottom { text-align: center; }
.numbers-checks {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 24px;
}
.check {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 15px; color: var(--kelly); letter-spacing: 0.5px;
}
.check::before { content: '\2713'; font-size: 16px; }
.numbers-disc {
  font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.5;
  max-width: 600px; margin: 20px auto 0;
}

@media (max-width: 800px) {
  .milestone-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-contrast { flex-direction: column; }
  .contrast-divider { width: 100%; min-width: 0; height: 44px; }
}
@media (max-width: 500px) {
  .milestone-grid { grid-template-columns: 1fr; }
}

/* ── ABOUT ── */
.about-section { padding: 64px 0; position: relative; overflow: hidden; background: var(--cream); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-copy p { font-size: 18px; color: var(--text-mid); line-height: 1.8; margin-bottom: 18px; }
.benefits-list { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.benefits-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text-mid); line-height: 1.5; }
.benefits-list li::before { content: '\25B8'; color: var(--kelly); font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.about-accent {
  position: relative; padding: 48px;
  background: var(--kelly-wash); border: 1px solid rgba(55,178,89,0.25);
  border-radius: 16px;
}
.about-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 72px; line-height: 0.85; text-transform: uppercase; color: rgba(55,178,89,0.12); margin-bottom: 32px; letter-spacing: -2px; }
.about-credentials { display: flex; flex-direction: column; gap: 16px; }
.credential { display: flex; align-items: center; gap: 16px; }
.credential-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(55,178,89,0.15); border: 1px solid rgba(55,178,89,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.credential-text strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: 0.5px; color: var(--navy); }
.credential-text span { font-size: 13px; color: var(--text-muted); }
@media (max-width: 800px) { .about-inner { grid-template-columns: 1fr; gap: 40px; } .about-accent { padding: 32px; } }

/* ── IMPACT ── */
.impact-section { padding: 64px 0; background: var(--white); position: relative; }
.impact-header { text-align: center; margin-bottom: 64px; }
.impact-header p { font-size: 17px; color: var(--text-mid); max-width: 640px; margin: 0 auto; line-height: 1.7; }
.impact-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: var(--border); border-radius: 12px; overflow: hidden; }
.impact-item { background: var(--white); padding: 40px 28px; text-align: center; transition: background 0.2s; }
.impact-item:hover { background: var(--kelly-wash); }
.impact-year { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 14px; letter-spacing: 3px; text-transform: uppercase; color: var(--kelly-dark); margin-bottom: 16px; display: block; }
.impact-families { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 38px; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.impact-revenue { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 22px; color: var(--gold); margin-bottom: 6px; }
.impact-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
@media (max-width: 700px) { .impact-grid { grid-template-columns: repeat(2,1fr); } }

/* ── CTA ── */
.cta-section { padding: 80px 0; position: relative; overflow: hidden; text-align: center; background: var(--navy); }
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(55,178,89,0.08) 0%, transparent 70%);
  z-index: 0;
}
.cta-content { position: relative; z-index: 1; max-width: 740px; margin: 0 auto; }
.cta-content p { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 40px; }
.cta-contact {
  margin-top: 48px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.cta-contact a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 16px; letter-spacing: 1px;
  color: rgba(255,255,255,0.75); text-decoration: none;
  transition: color 0.2s; display: flex; align-items: center; gap: 8px;
}
.cta-contact a:hover { color: var(--kelly); }
.contact-icon { font-size: 18px; }

/* ── FOOTER ── */
footer { background: #060e1c; padding: 48px 0; border-top: 1px solid rgba(55,178,89,0.2); position: relative; z-index: 1; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.footer-logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 18px; letter-spacing: 2px; text-transform: uppercase; color: var(--white); }
.footer-logo span { color: var(--kelly); }
.footer-tagline { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 4px; text-transform: uppercase; color: var(--kelly); margin-bottom: 4px; }
.footer-contact { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-contact a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: var(--kelly); }
.footer-disc { width: 100%; text-align: center; font-size: 11px; color: rgba(138,154,181,0.6); margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05); line-height: 1.6; max-width: 800px; margin-left: auto; margin-right: auto; }

/* ── POPUP ── */
.bwb-popup-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(12,35,64,0.85); backdrop-filter: blur(6px);
  z-index: 9000; align-items: center; justify-content: center;
}
.bwb-popup-overlay.show { display: flex; }
.bwb-popup {
  background: var(--white); border-radius: 14px;
  max-width: 480px; width: 90%; padding: 44px 36px 36px;
  position: relative; box-shadow: 0 32px 72px rgba(0,0,0,0.3);
  border: 2px solid var(--kelly);
}
.bwb-popup-close {
  position: absolute; top: 14px; right: 18px;
  font-size: 20px; color: var(--text-muted); cursor: pointer;
  background: none; border: none; font-weight: 600;
  transition: color 0.2s;
}
.bwb-popup-close:hover { color: var(--navy); }
.bwb-popup h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 28px;
  text-transform: uppercase; color: var(--navy);
  margin-bottom: 6px; line-height: 1;
}
.bwb-popup .popup-sub {
  font-size: 15px; color: var(--text-mid);
  margin-bottom: 28px; line-height: 1.5;
}
.bwb-popup input {
  width: 100%; padding: 14px 16px;
  font-size: 15px; font-family: 'Barlow', sans-serif;
  border: 1px solid var(--border);
  border-radius: 6px; margin-bottom: 12px;
  background: var(--cream); color: var(--navy);
  transition: border-color 0.2s;
}
.bwb-popup input:focus { outline: none; border-color: var(--kelly); }
.bwb-popup input::placeholder { color: var(--text-muted); }
.bwb-popup .btn-kelly {
  width: 100%; text-align: center; padding: 16px;
  font-size: 15px; margin-top: 8px;
}
.bwb-popup .bwb-err {
  background: rgba(196,80,42,0.08); color: #c4502a;
  font-size: 13px; padding: 10px 14px;
  border-radius: 4px; margin-bottom: 12px;
  display: none;
}
.bwb-popup .bwb-thanks {
  text-align: center; padding: 20px 0;
}
.bwb-popup .bwb-thanks p {
  font-size: 20px; font-weight: 700; color: var(--kelly-dark); line-height: 1.5;
}
.bwb-popup .bwb-privacy {
  font-size: 11px; color: var(--text-muted);
  text-align: center; margin-top: 16px;
}
