/* =============================================================
   SERWANGA CONSULTING — Main Stylesheet
   Author: Serwanga Consulting / Annette Serwanga Dennard
   Version: 1.0 | June 2026
   Webmaster: Replace placeholder links & photo before launch
   ============================================================= */

/* ─── GOOGLE FONTS (loaded in index.html <head>) ─────────────
   Nunito, Fredoka One, Lato
   ──────────────────────────────────────────────────────────── */

/* ─── ROOT VARIABLES ───────────────────────────────────────── */
:root {
  --green:        #2D7A4F;
  --green-light:  #3a9962;
  --gold:         #C8860A;
  --navy:         #1a2744;
  --cream:        #fffdf6;
  --card-bg:      #ffffff;
  --muted:        #6b7280;
  --border:       #e8e0d0;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.08);
  --shadow-md:    0 8px 28px rgba(0,0,0,.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.16);
  --shadow-xl:    0 32px 80px rgba(0,0,0,.22);
  --radius:       18px;
  --radius-sm:    10px;
}

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--navy);
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: 'Nunito', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ─── UTILITY ──────────────────────────────────────────────── */
.container { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }

.tag-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.7); border: 1.5px solid var(--border);
  border-radius: 50px; padding: 6px 16px;
  font-family: 'Nunito', sans-serif; font-weight: 700;
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--navy); backdrop-filter: blur(6px);
  box-shadow: var(--shadow-sm);
}

.section-title {
  font-family: 'Nunito', sans-serif; font-weight: 900;
  font-size: clamp(2rem, 5vw, 2.8rem); color: var(--navy);
  margin: 16px 0 12px;
}
.section-sub {
  font-size: 1.05rem; color: var(--muted); max-width: 580px; line-height: 1.7;
}
.highlight-green { color: var(--green); font-style: italic; }
.highlight-gold  { color: var(--gold);  font-style: italic; }

/* ─── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .95rem;
  cursor: pointer; border: none;
  transition: all .25s cubic-bezier(.34,1.56,.64,1);
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0); transition: background .2s;
}
.btn:hover::after { background: rgba(255,255,255,.12); }
.btn:hover  { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--green); color: #fff;
  box-shadow: 0 6px 24px rgba(45,122,79,.35);
}
.btn-outline {
  background: transparent; color: var(--green);
  border: 2.5px solid var(--green); box-shadow: var(--shadow-sm);
}
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-gold {
  background: var(--gold); color: #fff;
  box-shadow: 0 6px 24px rgba(200,134,10,.35);
}
.btn-dark {
  background: var(--navy); color: #fff;
  box-shadow: 0 6px 24px rgba(26,39,68,.35);
}

/* ─── NAVIGATION ───────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,253,246,.92); backdrop-filter: blur(14px);
  border-bottom: 1.5px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: 960px; margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Nunito', sans-serif; font-weight: 900;
  font-size: 1.15rem; color: var(--navy);
}
.nav-logo-badge {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: .85rem;
  box-shadow: 0 4px 14px rgba(45,122,79,.4);
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: .9rem;
  color: var(--navy); transition: color .2s; opacity: .8;
}
.nav-links a:hover { color: var(--green); opacity: 1; }
.nav-cta { padding: 10px 22px; font-size: .85rem; }

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  padding: 80px 0 72px;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(45,122,79,.08) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(200,134,10,.07) 0%, transparent 60%),
    var(--cream);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -80px; right: -120px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,122,79,.06), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; max-width: 960px; margin: 0 auto; padding: 0 24px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.4rem);
  font-weight: 900; line-height: 1.1; margin: 20px 0 18px;
}
.hero-desc { font-size: 1.05rem; color: var(--muted); line-height: 1.75; margin-bottom: 28px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.hero-pill {
  display: flex; align-items: center; gap: 7px;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 50px; padding: 8px 16px;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: .82rem;
  box-shadow: var(--shadow-sm);
  transition: all .22s cubic-bezier(.34,1.56,.64,1);
}
.hero-pill:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.hero-btns   { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-pricing {
  margin-top: 18px; font-size: .83rem; color: var(--muted);
  font-family: 'Nunito', sans-serif; font-weight: 700;
}

/* Hero floating card */
.hero-visual {
  display: flex; justify-content: center; align-items: center; position: relative;
}
.hero-card {
  background: #fff; border-radius: 24px; padding: 32px 28px;
  box-shadow:
    0 2px 0 rgba(0,0,0,.04),
    0 8px 32px rgba(0,0,0,.1),
    0 32px 64px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255,255,255,.9);
  transform: perspective(800px) rotateY(-6deg) rotateX(3deg);
  transition: transform .4s ease;
  max-width: 320px; width: 100%;
  animation: floatY 6s ease-in-out infinite;
}
.hero-card:hover {
  transform: perspective(800px) rotateY(0deg) rotateX(0deg) translateY(-6px);
  animation: none;
}
.hero-card-title {
  font-family: 'Nunito', sans-serif; font-weight: 900;
  font-size: 1rem; color: var(--navy); margin-bottom: 18px;
  padding-bottom: 14px; border-bottom: 1.5px solid var(--border);
}
.milestone-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid #f0ebe0; gap: 12px;
}
.milestone-row:last-child { border-bottom: none; }
.milestone-label { font-size: .8rem; font-weight: 700; color: var(--muted); flex: 0 0 90px; }
.milestone-cdc   { font-size: .78rem; color: #999; flex: 1; }
.milestone-us    { font-size: .78rem; color: var(--green); font-weight: 700; flex: 1; }

/* ─── RESULTS TABLE ────────────────────────────────────────── */
.results-section { background: #fff; }
.results-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md); margin-top: 40px;
}
.results-table thead tr { background: var(--navy); }
.results-table th {
  padding: 18px 24px; text-align: left;
  font-family: 'Nunito', sans-serif; font-weight: 800;
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
}
.results-table th:first-child  { color: rgba(255,255,255,.6); }
.results-table th:nth-child(2) { color: #aac4ff; }
.results-table th:nth-child(3) { color: #7eebb8; }
.results-table tbody tr { transition: background .2s; }
.results-table tbody tr:nth-child(odd)  { background: #f8f6f0; }
.results-table tbody tr:nth-child(even) { background: #fff; }
.results-table tbody tr:hover { background: rgba(45,122,79,.06); }
.results-table td {
  padding: 20px 24px; font-size: .88rem; line-height: 1.6;
  border-bottom: 1px solid var(--border); vertical-align: top;
}
.results-table td:first-child {
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .92rem;
}
.results-table td:last-child { color: var(--green); font-weight: 700; }
.results-table td ul { list-style: none; }
.results-table td ul li::before { content: '→ '; font-weight: 700; }
.results-table td ul li { margin-bottom: 4px; }

/* Stats row */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px;
}
.stat-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px 20px; text-align: center;
  box-shadow: var(--shadow-md); border: 1.5px solid var(--border);
  transition: all .28s cubic-bezier(.34,1.56,.64,1);
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.stat-num {
  font-family: 'Fredoka One', cursive; font-size: 2.6rem;
  color: var(--green); line-height: 1;
}
.stat-label {
  font-family: 'Nunito', sans-serif; font-weight: 700;
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-top: 6px;
}

/* ─── PRICING ──────────────────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px;
}
.pricing-card {
  background: var(--card-bg); border-radius: var(--radius);
  padding: 32px 28px; border: 2px solid var(--border);
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, var(--shadow-md);
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
  position: relative; overflow: hidden;
}
.pricing-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, var(--shadow-xl);
  border-color: var(--green);
}
.pricing-card:hover::after { transform: scaleX(1); }
.pricing-card.featured {
  border-color: var(--green); background: #fff;
  box-shadow: 0 0 0 4px rgba(45,122,79,.08), var(--shadow-lg);
}
.pricing-card.featured::after { transform: scaleX(1); }
.pricing-card.bundle {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,134,10,.08), var(--shadow-lg);
}
.pricing-card.bundle::after {
  background: linear-gradient(90deg, var(--gold), #e8a020);
  transform: scaleX(1);
}
.pricing-card.session { border-color: #c44; }
.pricing-card.session::after {
  background: linear-gradient(90deg, #c44, #e05555);
  transform: scaleX(1);
}
.pricing-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--gold); color: #fff;
  font-family: 'Nunito', sans-serif; font-weight: 800;
  font-size: .7rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
  box-shadow: 0 4px 12px rgba(200,134,10,.4);
}
.pricing-type {
  font-family: 'Nunito', sans-serif; font-weight: 700;
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); background: #f0ebe0; border-radius: 50px;
  padding: 4px 12px; display: inline-block; margin-bottom: 14px;
}
.pricing-name {
  font-family: 'Nunito', sans-serif; font-weight: 900;
  font-size: 1.25rem; color: var(--navy); margin-bottom: 10px;
}
.pricing-desc { font-size: .88rem; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.pricing-features { list-style: none; margin-bottom: 24px; }
.pricing-features li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .87rem; line-height: 1.5; padding: 5px 0; color: var(--navy);
}
.pricing-features li::before { content: '✓'; color: var(--green); font-weight: 900; flex-shrink: 0; margin-top: 1px; }
.pricing-divider { border: none; border-top: 1.5px solid var(--border); margin: 20px 0; }
.price-main { font-family: 'Fredoka One', cursive; font-size: 2.2rem; color: var(--green); }
.price-suffix { font-size: .9rem; color: var(--muted); font-family: 'Nunito', sans-serif; font-weight: 600; }
.price-note   { font-size: .78rem; color: var(--muted); margin-top: 4px; margin-bottom: 18px; }
.price-was    { font-size: .88rem; color: #bbb; text-decoration: line-through; margin-bottom: 2px; }

/* ─── SUMMER CAMP ──────────────────────────────────────────── */
.summer-section {
  background: linear-gradient(135deg, #fff9ed 0%, #f0faf5 100%);
  border-top: 2px solid var(--border); border-bottom: 2px solid var(--border);
}
.camp-info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px;
}
.camp-info-card {
  background: #fff; border-radius: var(--radius-sm);
  padding: 22px 18px; text-align: center;
  box-shadow: var(--shadow-md); border: 1.5px solid var(--border);
  transition: all .28s cubic-bezier(.34,1.56,.64,1);
}
.camp-info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.camp-info-icon  { font-size: 1.8rem; margin-bottom: 8px; }
.camp-info-label {
  font-family: 'Nunito', sans-serif; font-weight: 700;
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px;
}
.camp-info-value {
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.05rem; color: var(--navy);
}
.camp-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.camp-feature {
  background: #fff; border-radius: var(--radius-sm);
  padding: 20px; display: flex; gap: 14px;
  box-shadow: var(--shadow-sm); border: 1.5px solid var(--border);
  transition: all .25s ease;
}
.camp-feature:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.camp-feature-icon  { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.camp-feature-title { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .92rem; color: var(--navy); margin-bottom: 5px; }
.camp-feature-desc  { font-size: .83rem; color: var(--muted); line-height: 1.6; }

/* ─── HOW IT WORKS ─────────────────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 48px; position: relative;
}
.steps-grid::before {
  content: ''; position: absolute;
  top: 36px; left: calc(12.5% + 18px); right: calc(12.5% + 18px);
  height: 2px; background: linear-gradient(90deg, var(--green), var(--green-light));
  z-index: 0;
}
.step-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px 20px; text-align: center;
  box-shadow: var(--shadow-md); border: 1.5px solid var(--border);
  position: relative; z-index: 1;
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
}
.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: #fff; font-family: 'Fredoka One', cursive; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; box-shadow: 0 6px 20px rgba(45,122,79,.35);
}
.step-title { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: .95rem; color: var(--navy); margin-bottom: 10px; }
.step-desc  { font-size: .82rem; color: var(--muted); line-height: 1.65; }

/* ─── STUDENT WORK ─────────────────────────────────────────── */
.work-section { background: #fff; }
.work-card {
  background: var(--cream); border-radius: var(--radius);
  padding: 36px; margin-top: 40px;
  box-shadow: 0 2px 0 rgba(255,255,255,.9) inset, var(--shadow-lg);
  border: 2px solid var(--border);
}
.work-header { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.1rem; color: var(--navy); margin-bottom: 6px; }
.work-sub    { font-size: .88rem; color: var(--muted); margin-bottom: 28px; }
.work-achievements { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.achieve-card {
  background: #fff; border-radius: var(--radius-sm);
  padding: 20px; border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all .25s cubic-bezier(.34,1.56,.64,1);
}
.achieve-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.achieve-icon  { font-size: 1.4rem; margin-bottom: 8px; }
.achieve-title { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .88rem; color: var(--navy); margin-bottom: 5px; }
.achieve-desc  { font-size: .79rem; color: var(--muted); line-height: 1.6; }
.worksheet-box {
  background: #fff; border-radius: var(--radius);
  padding: 32px; margin-top: 28px; text-align: center;
  border: 2px dashed var(--border); box-shadow: var(--shadow-sm);
}
.worksheet-title { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.1rem; color: var(--navy); margin-bottom: 6px; }
.worksheet-sub   { font-size: .85rem; color: var(--muted); margin-bottom: 24px; }
.worksheet-checks {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  text-align: left; max-width: 400px; margin: 0 auto;
}
.wcheck { font-size: .83rem; color: var(--green); font-weight: 700; font-family: 'Nunito', sans-serif; }

/* ─── ABOUT ────────────────────────────────────────────────── */
.about-section { background: linear-gradient(135deg, #f8f6f0, var(--cream)); }
.about-inner   { display: grid; grid-template-columns: 1fr 2fr; gap: 56px; align-items: start; }
.about-photo-box {
  background: #fff; border-radius: 24px; padding: 28px;
  box-shadow: 0 4px 0 rgba(0,0,0,.05), var(--shadow-lg);
  border: 2px solid var(--border); text-align: center;
  transform: perspective(600px) rotateY(4deg); transition: transform .4s ease;
}
.about-photo-box:hover { transform: perspective(600px) rotateY(0deg); }
.photo-placeholder {
  width: 140px; height: 140px; border-radius: 50%;
  background: linear-gradient(135deg, #e8f5ee, #d0ead8);
  margin: 0 auto 16px; display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; border: 4px solid var(--green);
  box-shadow: 0 8px 24px rgba(45,122,79,.2);
}
/* WEBMASTER NOTE: Replace .photo-placeholder with an <img> tag
   pointing to images/annette-photo.jpg once you have the photo */
.about-name { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1rem; color: var(--navy); }
.about-cred { font-size: .82rem; color: var(--muted); margin-top: 4px; }
.cred-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; justify-content: center; }
.cred-pill  {
  background: #f0ebe0; border-radius: 50px; padding: 5px 12px;
  font-size: .73rem; font-family: 'Nunito', sans-serif; font-weight: 700; color: var(--navy);
}
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 24px;
}
.about-stat {
  background: #fff; border-radius: var(--radius-sm);
  padding: 16px; text-align: center; box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: all .25s cubic-bezier(.34,1.56,.64,1);
}
.about-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.about-stat-num { font-family: 'Fredoka One', cursive; font-size: 1.8rem; color: var(--green); }
.about-stat-lbl { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.about-body p   { font-size: .95rem; color: #444; line-height: 1.8; margin-bottom: 16px; }

/* ─── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-section { background: var(--navy); }
.testimonials-section .section-title { color: #fff; }
.testimonials-section .section-sub   { color: rgba(255,255,255,.6); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 44px;
}
.testi-card {
  background: rgba(255,255,255,.07); border-radius: var(--radius);
  padding: 28px; border: 1.5px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(255,255,255,.08) inset, 0 20px 50px rgba(0,0,0,.2);
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
}
.testi-card:hover {
  background: rgba(255,255,255,.1); transform: translateY(-6px);
  box-shadow: 0 1px 0 rgba(255,255,255,.08) inset, 0 32px 70px rgba(0,0,0,.3);
}
.stars       { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-quote { font-size: .9rem; color: rgba(255,255,255,.85); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.testi-who   { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .85rem; color: #fff; }
.testi-where { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: 3px; }

/* ─── FAQ ──────────────────────────────────────────────────── */
.faq-section { background: #fff; }
.faq-list    { margin-top: 44px; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--cream); border-radius: var(--radius-sm);
  border: 1.5px solid var(--border); box-shadow: var(--shadow-sm);
  overflow: hidden; transition: box-shadow .25s ease;
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-q {
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-family: 'Nunito', sans-serif; font-weight: 800;
  font-size: .95rem; color: var(--navy); user-select: none;
}
.faq-q:hover { color: var(--green); }
.faq-icon { font-size: 1.2rem; color: var(--green); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
  padding: 0 24px; font-size: .9rem; color: var(--muted); line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }

/* ─── CTA SECTION ──────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--green) 0%, #1e6b3e 100%);
  text-align: center; padding: 88px 0; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(255,255,255,.05); pointer-events: none;
}
.cta-section .section-title { color: #fff; }
.cta-section .section-sub   { color: rgba(255,255,255,.8); margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ───────────────────────────────────────────────── */
footer { background: #0f1a30; color: rgba(255,255,255,.7); padding: 56px 0 32px; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  max-width: 960px; margin: 0 auto; padding: 0 24px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Nunito', sans-serif; font-weight: 900;
  font-size: 1.05rem; color: #fff; margin-bottom: 14px;
}
.footer-logo-badge {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: .78rem;
}
.footer-desc    { font-size: .85rem; line-height: 1.75; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.footer-contact a { color: var(--green-light); font-size: .85rem; }
.footer-col-title {
  font-family: 'Nunito', sans-serif; font-weight: 800;
  font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 16px;
}
.footer-links   { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links a:hover { color: var(--green-light); }
.footer-bottom  {
  max-width: 960px; margin: 40px auto 0; padding: 20px 24px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .78rem; color: rgba(255,255,255,.35);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}

/* ─── ANIMATIONS ───────────────────────────────────────────── */
@keyframes floatY {
  0%,100% { transform: perspective(800px) rotateY(-6deg) rotateX(3deg) translateY(0); }
  50%      { transform: perspective(800px) rotateY(-6deg) rotateX(3deg) translateY(-10px); }
}

.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-inner        { grid-template-columns: 1fr; }
  .hero-visual       { display: none; }
  .stats-row         { grid-template-columns: repeat(2,1fr); }
  .pricing-grid      { grid-template-columns: 1fr; }
  .camp-info-grid    { grid-template-columns: repeat(2,1fr); }
  .camp-features     { grid-template-columns: 1fr; }
  .steps-grid        { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before{ display: none; }
  .work-achievements { grid-template-columns: 1fr; }
  .about-inner       { grid-template-columns: 1fr; }
  .about-photo-box   { max-width: 280px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner      { grid-template-columns: 1fr; gap: 32px; }
  .nav-links         { display: none; }
}
@media (max-width: 480px) {
  .stats-row        { grid-template-columns: 1fr 1fr; }
  .camp-info-grid   { grid-template-columns: 1fr 1fr; }
  .steps-grid       { grid-template-columns: 1fr; }
  .about-stats      { grid-template-columns: 1fr 1fr; }
  .worksheet-checks { grid-template-columns: 1fr; }
}
