:root {
  --light-blue: #4FB6E8;
  --light-blue-dark: #2E97CB;
  --light-blue-deep: #1E6E9B;
  --yellow: #FFC72C;
  --yellow-deep: #E8AF15;
  --white: #FFFFFF;
  --ink: #142631;
  --ink-soft: #51626E;
  --bg-alt: #F2F9FD;
  --radius: 16px;
  --shadow: 0 10px 30px -8px rgba(20, 38, 49, 0.16);
  --shadow-lg: 0 24px 60px -16px rgba(20, 38, 49, 0.28);
  --grad-brand: linear-gradient(120deg, var(--light-blue) 0%, var(--light-blue-deep) 100%);
  --grad-warm: linear-gradient(120deg, var(--yellow) 0%, #FF9F43 100%);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-head: "Poppins", "Century Gothic", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { padding-left: 1.2rem; margin: 0.5rem 0; }
li { margin: 0.3rem 0; }
h1, h2, h3, h4 { font-family: var(--font-head); letter-spacing: -0.01em; }
::selection { background: var(--light-blue); color: var(--white); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--light-blue); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--light-blue-deep); }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(20, 38, 49, 0.06);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 30px -12px rgba(20, 38, 49, 0.18);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-family: var(--font-head);
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--grad-brand);
  color: var(--white);
  font-size: 0.9rem;
  box-shadow: 0 8px 20px -6px rgba(46, 151, 203, 0.6);
  transition: transform 0.35s var(--ease);
}
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.06); }
.brand-name {
  color: var(--light-blue-deep);
  font-size: 1.12rem;
}
.nav-links {
  display: flex;
  gap: 1.7rem;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.2s;
  padding: 0.4rem 0.1rem;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
  transition: right 0.3s var(--ease);
}
.nav-links a:hover { color: var(--light-blue-deep); }
.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }
.nav-links a.active { color: var(--light-blue-deep); }
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--light-blue-deep);
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-head);
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn span { position: relative; z-index: 1; }
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translateY(102%);
  transition: transform 0.35s var(--ease);
  border-radius: inherit;
}
.btn:hover { transform: translateY(-3px); }
.btn:hover::before { transform: translateY(0); }
.btn-primary {
  background: var(--grad-brand);
  color: var(--white);
  box-shadow: 0 10px 26px -8px rgba(46, 151, 203, 0.55);
}
.btn-primary::before { background: var(--light-blue-deep); }
.btn-secondary {
  background: var(--grad-warm);
  color: var(--ink);
  box-shadow: 0 10px 26px -8px rgba(255, 199, 44, 0.55);
}
.btn-secondary::before { background: var(--yellow-deep); }
.btn-outline {
  background: transparent;
  color: var(--light-blue-deep);
  border-color: var(--light-blue);
}
.btn-outline::before { background: var(--light-blue); }
.btn-outline:hover { color: var(--white); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}
.btn-outline-light::before { background: var(--white); }
.btn-outline-light:hover { color: var(--light-blue-deep); }
.nav-cta { white-space: nowrap; }
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  background: var(--bg-alt);
  border: 1px solid #E5EEF3;
}
.lang-btn {
  border: none;
  background: transparent;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.lang-btn:hover { color: var(--light-blue-deep); }
.lang-btn.active {
  background: var(--grad-brand);
  color: var(--white);
  box-shadow: 0 6px 16px -6px rgba(46, 151, 203, 0.6);
}

/* Hero */
.hero {
  position: relative;
  background: radial-gradient(circle at top right, rgba(255, 199, 44, 0.16), transparent 55%),
              linear-gradient(160deg, #EAF7FE 0%, var(--white) 65%);
  padding: 7rem 0 6rem;
  text-align: center;
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  z-index: 1;
  animation: drift 16s ease-in-out infinite alternate;
}
.blob-1 {
  width: 420px; height: 420px;
  top: -140px; right: -120px;
  background: radial-gradient(circle, var(--light-blue) 0%, transparent 70%);
}
.blob-2 {
  width: 360px; height: 360px;
  bottom: -160px; left: -100px;
  background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
  animation-delay: -6s;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.12); }
}

.hero-notes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-notes span {
  position: absolute;
  font-size: 1.8rem;
  color: var(--light-blue);
  opacity: 0.35;
  animation: float-note 9s ease-in-out infinite;
  font-family: var(--font-head);
}
.hero-notes span:nth-child(1) { left: 8%;  top: 28%; animation-delay: 0s;  color: var(--light-blue); }
.hero-notes span:nth-child(2) { left: 18%; top: 68%; animation-delay: -2s; color: var(--yellow); font-size: 2.4rem; }
.hero-notes span:nth-child(3) { right: 12%; top: 22%; animation-delay: -4s; color: var(--light-blue-deep); font-size: 2.1rem; }
.hero-notes span:nth-child(4) { right: 20%; top: 70%; animation-delay: -6s; color: var(--yellow-deep); }
.hero-notes span:nth-child(5) { left: 46%; top: 14%; animation-delay: -3s; color: var(--light-blue); font-size: 1.5rem; }
@keyframes float-note {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.25; }
  50% { transform: translateY(-26px) rotate(8deg); opacity: 0.5; }
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--light-blue-deep);
  background: rgba(79, 182, 232, 0.12);
  border: 1px solid rgba(79, 182, 232, 0.25);
  padding: 0.5rem 1.3rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
.tagline i { font-style: normal; color: var(--yellow-deep); }
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  margin: 0.2rem 0;
  letter-spacing: 0.04em;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.15;
}
.text-gradient {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--light-blue-deep);
  margin: 0.5rem 0 1rem;
  font-family: var(--font-head);
}
.hero-desc {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin: 0 auto 2.2rem;
  max-width: 620px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Hero stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 6vw, 4rem);
  margin-top: 3.2rem;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(20, 38, 49, 0.08);
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(46, 151, 203, 0.35);
  border-radius: 999px;
  z-index: 2;
}
.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 9px;
  border-radius: 999px;
  background: var(--light-blue-deep);
  animation: scroll-cue-move 1.8s ease-in-out infinite;
}
@keyframes scroll-cue-move {
  0% { opacity: 1; transform: translate(-50%, 0); }
  70% { opacity: 0; transform: translate(-50%, 16px); }
  100% { opacity: 0; transform: translate(-50%, 16px); }
}

/* Reveal-on-load (hero) */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  animation: reveal-up 0.8s var(--ease) forwards;
  animation-delay: calc(var(--delay, 0) * 0.12s);
}
@keyframes reveal-up {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered reveal for sections */
.section .eyebrow,
.section h2,
.section .lead,
.section > .container > p:not(.lead),
.section .link-arrow {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.section.in-view .eyebrow { opacity: 1; transform: none; }
.section.in-view h2 { opacity: 1; transform: none; transition-delay: 0.08s; }
.section.in-view .lead { opacity: 1; transform: none; transition-delay: 0.16s; }
.section.in-view > .container > p:not(.lead) { opacity: 1; transform: none; transition-delay: 0.2s; }
.section.in-view .link-arrow { opacity: 1; transform: none; transition-delay: 0.3s; }

.card, .vm-card, .service, .benefit, .checklist li {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease),
              box-shadow 0.3s ease, border-color 0.3s ease;
}
.section.in-view .card,
.section.in-view .vm-card,
.section.in-view .service,
.section.in-view .benefit,
.section.in-view .checklist li {
  opacity: 1;
  transform: translateY(0);
}
.grid > :nth-child(1), .checklist > :nth-child(1) { transition-delay: 0.05s; }
.grid > :nth-child(2), .checklist > :nth-child(2) { transition-delay: 0.12s; }
.grid > :nth-child(3), .checklist > :nth-child(3) { transition-delay: 0.19s; }
.grid > :nth-child(4), .checklist > :nth-child(4) { transition-delay: 0.26s; }
.grid > :nth-child(5), .checklist > :nth-child(5) { transition-delay: 0.33s; }
.grid > :nth-child(6), .checklist > :nth-child(6) { transition-delay: 0.4s; }

/* Magnetic hover lift for interactive tiles */
.card:hover, .vm-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79, 182, 232, 0.35);
}
.benefit { transition: opacity 0.65s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s ease; }
.benefit:hover { transform: translateY(-4px) translateX(2px); box-shadow: var(--shadow); }

/* Sections */
.section { padding: 5.5rem 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-dark {
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 199, 44, 0.25), transparent 50%),
    linear-gradient(135deg, var(--light-blue-deep), var(--light-blue));
  color: var(--white);
}
.section-dark .eyebrow { color: rgba(255,255,255,0.85); }
.section-dark h2 { color: var(--white); }
.section-accent {
  background: linear-gradient(135deg, #FFF7E0, #FFFFFF 60%);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--light-blue-deep);
  margin-bottom: 0.7rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--grad-warm);
  border-radius: 2px;
}
.section-dark .eyebrow::before,
.cta .eyebrow::before { background: rgba(255,255,255,0.8); }
h2 {
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  margin: 0 0 1.2rem;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.25;
}
.lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 760px;
}

/* Vision/Mission */
.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.vm-card {
  background: var(--white);
  border: 1px solid #E5EEF3;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.vm-card::after {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,182,232,0.16), transparent 70%);
}
.vm-card h3 {
  margin-top: 0;
  color: var(--light-blue-deep);
  letter-spacing: 0.04em;
  font-size: 1.05rem;
}

/* Grids & cards */
.grid { display: grid; gap: 1.5rem; margin-top: 2.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid #ECF4F8;
  border-top: 4px solid var(--light-blue);
  position: relative;
}
.card h3 { margin-top: 0; color: var(--ink); font-size: 1.12rem; }

.services { text-align: center; }
.service {
  background: var(--white);
  border: 1px solid #E5EEF3;
  border-radius: var(--radius);
  padding: 2.2rem 1.2rem;
  transition: opacity 0.65s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}
.service:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, var(--white), var(--bg-alt));
}
.service-icon {
  font-size: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: var(--bg-alt);
  transition: transform 0.35s var(--ease);
}
.service:hover .service-icon { transform: scale(1.1) rotate(-6deg); }
.service h3 { margin: 0; font-size: 1.05rem; font-weight: 600; }

/* Checklist */
.checklist {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 1rem 1.3rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
  transition: opacity 0.65s var(--ease), transform 0.4s var(--ease), background 0.3s ease;
}
.checklist li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.85rem;
}
.section.in-view .checklist li:hover { background: rgba(255, 255, 255, 0.18); transform: translateY(-3px); }

/* Benefits */
.benefits { margin-top: 1.2rem; }
.benefit {
  background: var(--bg-alt);
  border-left: 4px solid var(--yellow);
  border-radius: 10px;
  padding: 1rem 1.3rem;
  font-weight: 700;
  color: var(--ink);
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.8rem;
  font-weight: 700;
  color: var(--light-blue-deep);
  position: relative;
}
.link-arrow::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.link-arrow:hover::after { transform: scaleX(1); }

/* Rita Charity */
.rita-inner { text-align: center; }
.rita-inner > div { max-width: 720px; margin: 0 auto; }

/* CTA */
.cta {
  background:
    radial-gradient(circle at 15% 30%, rgba(255,255,255,0.18), transparent 45%),
    linear-gradient(135deg, var(--light-blue), var(--light-blue-deep));
  color: var(--white);
  text-align: center;
}
.cta h2 { color: var(--white); }
.cta p { color: rgba(255,255,255,0.9); margin-bottom: 2rem; }
.cta .eyebrow { color: rgba(255,255,255,0.85); justify-content: center; }

/* Footer */
.site-footer {
  background: linear-gradient(180deg, var(--ink), #0E1B23);
  color: rgba(255,255,255,0.78);
  padding: 4.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand { margin-bottom: 0.6rem; }
.footer-brand .brand-name { color: var(--white); }
.tagline-footer {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--yellow);
  font-weight: 700;
}
.site-footer h4 {
  color: var(--white);
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}
.site-footer a:hover { color: var(--light-blue); }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  font-size: 0.85rem;
}

/* Payment policy page */
.policy-hero { padding: 4.5rem 0 3.5rem; }
.policy-title { font-size: clamp(2rem, 5vw, 3rem); letter-spacing: 0.03em; line-height: 1.2; }
.nav-links a.active { color: var(--light-blue-dark); border-bottom: 2px solid var(--light-blue); }
.amount {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--light-blue-dark);
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 0.3rem 0.9rem;
  margin: 0.3rem 0 0.8rem;
}
.pill {
  display: inline-block;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  background: var(--light-blue);
  border-radius: 999px;
  padding: 0.25rem 0.9rem;
  margin-bottom: 0.6rem;
}
.icf-grid .card { border-top-color: var(--yellow); }
.benefit.big {
  font-size: 1.05rem;
  line-height: 1.5;
  padding: 1.4rem 1.4rem;
}
.benefit.big small { font-weight: 500; color: var(--ink-soft); }
.metrics-list {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.metrics-list li {
  background: var(--bg-alt);
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  font-weight: 600;
}
.note {
  margin-top: 1.5rem;
  padding: 1rem 1.4rem;
  background: rgba(255, 199, 44, 0.15);
  border-left: 4px solid var(--yellow);
  border-radius: 8px;
  color: var(--ink-soft);
}

/* Responsive */
@media (max-width: 1080px) {
  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1rem 0 1.4rem;
    border-bottom: 1px solid #E5EEF3;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 0.7rem 1rem;
    border-radius: 10px;
  }
  .nav-links a::after { display: none; }
  .nav-links a:hover, .nav-links a.active { background: var(--bg-alt); }
  .nav-links.open {
    display: flex;
    animation: nav-drop 0.3s var(--ease);
  }
  @keyframes nav-drop {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hamburger { display: block; }
  .nav-cta { display: none; }
}
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .grid-2, .grid-3, .vision-mission, .checklist, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats { gap: 1.6rem; }
}
