/* ============================================================
   OurSchoolHouse — Design System + Homepage Components
   ourschoolhouse.in
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,700&family=Playfair+Display:ital,wght@0,700;0,900;1,700;1,900&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Brand colours */
  --cyan:        #14C8C8;
  --cyan-dark:   #0DA8A8;
  --cyan-deep:   #0B7B7F;
  --cyan-pale:   #E8FAFA;
  --cyan-light:  #C6F0F0;

  /* Celebration (use only in banner) */
  --gold:        #C8960A;
  --gold-pale:   #FEF6E0;

  /* Neutrals */
  --white:       #FFFFFF;
  --off-white:   #F8FEFF;
  --ink:         #1A2E2E;
  --ink-mid:     #3D5C5C;
  --ink-light:   #7FA5A5;
  --border:      #DDF0F0;

  /* Social */
  --green-soft:  #25D366;

  /* Typography */
  --font-body:    'Nunito', sans-serif;
  --font-display: 'Playfair Display', serif;

  /* Spacing */
  --section-py-desktop: 5rem;
  --section-px-desktop: 3rem;
  --section-py-mobile:  3.5rem;
  --section-px-mobile:  1.5rem;
  --max-width:          900px;
  --header-height:      70px;

  /* Border radius */
  --radius-card:   16px;
  --radius-btn:     8px;
  --radius-pill:   50px;
  --radius-tag:     5px;
  --radius-input:   8px;

  /* Shadows */
  --shadow-card-hover:   0 8px 24px rgba(20, 200, 200, 0.08);
  --shadow-btn-primary:  0 4px 16px rgba(20, 200, 200, 0.30);
  --shadow-btn-whatsapp: 0 4px 16px rgba(37, 211, 102, 0.30);
}

/* ============================================================
   RESET & BASE
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video {
  display: block;
  max-width: 100%;
}

a {
  color: var(--cyan-deep);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--cyan-dark);
}

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 800;
  line-height: 1.25;
  color: var(--ink);
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--ink);
}

.h1-display {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.125rem);
  font-weight: 800;
  color: var(--ink);
}

h3 {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 700;
  color: var(--ink-mid);
}

h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink-mid);
}

h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-mid);
}

h6 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

p {
  color: var(--ink-mid);
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.text-lg { font-size: 1.125rem; line-height: 1.7; }
.text-sm { font-size: 0.875rem; line-height: 1.6; }
.text-xs { font-size: 0.75rem;  line-height: 1.5; }

.font-display {
  font-family: var(--font-display);
}

.display-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
}

.pull-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--cyan-deep);
  line-height: 1.45;
}

.text-ink       { color: var(--ink); }
.text-ink-mid   { color: var(--ink-mid); }
.text-ink-light { color: var(--ink-light); }
.text-cyan      { color: var(--cyan); }
.text-cyan-deep { color: var(--cyan-deep); }
.text-gold      { color: var(--gold); }
.text-white     { color: var(--white); }

.fw-300 { font-weight: 300; }
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.fw-900 { font-weight: 900; }

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--section-px-desktop);
}

.section {
  padding-block: var(--section-py-desktop);
  padding-inline: var(--section-px-desktop);
}

.section--alt       { background-color: var(--off-white); }
.section--cyan-pale { background-color: var(--cyan-pale); }

.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col     { display: flex; flex-direction: column; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.gap-5 { gap: 3rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.text-center { text-align: center; }
.text-left   { text-align: left; }

/* ============================================================
   SITE HEADER
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── Logo & Wordmark ── */

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: block;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.logo-name span {
  color: var(--cyan-dark);
}

.logo-tag {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink-light);
  letter-spacing: 0.03em;
  margin-top: 0.1rem;
}

/* ── Header navigation ── */

.header-nav {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  align-items: center;
}

.header-nav a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-mid);
  text-decoration: none;
  padding: 0.45rem 1rem;
  border-radius: 6px;
  transition: all 0.2s;
}

.header-nav a:hover {
  background: var(--cyan-pale);
  color: var(--cyan-dark);
}

.header-nav .cta {
  background: var(--cyan);
  color: var(--white) !important;
  border-radius: 6px;
  padding: 0.5rem 1.3rem;
  box-shadow: 0 2px 10px rgba(20, 200, 200, 0.25);
}

.header-nav .cta:hover {
  background: var(--cyan-dark) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 16px rgba(20, 200, 200, 0.3);
}

/* ── Header dropdown menus ── */

.header-nav > li {
  position: relative;
}

.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.5;
  transition: transform 0.2s ease, opacity 0.2s ease;
  flex-shrink: 0;
  margin-left: 1px;
}

.has-dropdown:hover > a::after,
.has-dropdown:focus-within > a::after {
  transform: rotate(225deg) translateY(2px);
  opacity: 0.8;
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 215px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(26, 46, 46, 0.11);
  padding: 0.4rem;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s 0.18s;
  z-index: 300;
}

.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s;
}

.dropdown li a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-mid);
  border-radius: 6px;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.14s ease, color 0.14s ease;
}

.dropdown li a:hover {
  background: var(--cyan-pale);
  color: var(--cyan-deep);
}

.dropdown li + li {
  margin-top: 1px;
}

/* ── Generic site-nav (for pages using the BEM pattern) ── */

.site-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-logo span      { color: var(--cyan); }
.site-logo:hover     { color: var(--cyan-deep); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--cyan);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cyan-deep);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ============================================================
   CELEBRATION BANNER
   ============================================================ */

.celebrate-banner {
  background: var(--gold-pale);
  border-bottom: 2px solid rgba(200, 150, 10, 0.15);
  padding: 1.1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.celebrate-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.celebrate-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 0.03em;
  font-weight: 700;
}

.celebrate-text strong {
  color: var(--ink);
}

/* Inline announcement strip variant */
.announcement-strip {
  background-color: var(--gold-pale);
  border-bottom: 1px solid #F0D98A;
  padding: 0.5rem var(--section-px-desktop);
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
}

.banner-celebration {
  background-color: var(--gold-pale);
  border: 1px solid #F0D98A;
  border-radius: var(--radius-card);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--gold);
}

.banner-celebration__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  background: var(--off-white);
  padding: 5rem 3rem 3.5rem;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cyan-pale);
  color: var(--cyan-deep);
  border: 1.5px solid var(--cyan-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.8rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.2rem;
  font-weight: 900;
}

.hero h1 em {
  font-style: italic;
  color: var(--cyan-dark);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-mid);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  font-weight: 500;
}

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

/* Hero BEM classes (for other page hero patterns) */
.hero__inner {
  max-width: var(--max-width);
  margin-inline: auto;
}

.hero__eyebrow   { margin-bottom: 1rem; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero__title em {
  font-style: italic;
  color: var(--cyan-deep);
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.1875rem);
  color: var(--ink-mid);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 2rem;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

/* ============================================================
   HIGHLIGHTS STRIP
   ============================================================ */

.highlights-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2rem 3rem;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hs-item {
  padding: 3rem 2.25rem;
  text-align: center;
  background: var(--cyan-pale);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  transition: background 0.2s;
}

.hs-item:hover { background: #D6F5F5; }

.hs-icon {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}

.hs-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.hs-body {
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.7;
  max-width: 220px;
  margin: 0 auto;
}

/* ============================================================
   SHARED SECTION COMPONENTS
   ============================================================ */

.section-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-dark);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.section-title em {
  font-style: italic;
  color: var(--cyan-dark);
}

.section-body {
  font-size: 1rem;
  color: var(--ink-mid);
  max-width: 620px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

/* Section header BEM pattern */
.section-header            { margin-bottom: 3rem; }
.section-header--center    { text-align: center; }
.section-header__eyebrow   { margin-bottom: 0.625rem; }
.section-header__title     { margin-bottom: 0.875rem; }
.section-header__body {
  max-width: 560px;
  font-size: 1.0625rem;
  color: var(--ink-mid);
}
.section-header--center .section-header__body { margin-inline: auto; }

/* ============================================================
   WHAT SECTION
   ============================================================ */

.what-section {
  padding: 5rem 3rem;
  background: var(--white);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

/* ============================================================
   BUTTONS
   ============================================================ */

/* Base utility class (use with a modifier, or standalone modifiers below) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-btn);
  padding: 0.75rem 1.625rem;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease,
              color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

/* Primary — self-contained (no .btn dependency) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--cyan);
  color: var(--white);
  padding: 1rem 2.2rem;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: var(--shadow-btn-primary);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--cyan-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(20, 200, 200, 0.35);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
}

/* Secondary — self-contained */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--ink-mid);
  padding: 1rem 2rem;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid var(--border);
  cursor: pointer;
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan-dark);
  transform: translateY(-2px);
}

/* Outline modifier (use with .btn) */
.btn-outline {
  background-color: transparent;
  color: var(--cyan-deep);
  border-color: var(--cyan);
}

.btn-outline:hover {
  background-color: var(--cyan-pale);
  color: var(--cyan-deep);
  border-color: var(--cyan-dark);
}

/* Ghost modifier */
.btn-ghost {
  background-color: transparent;
  color: var(--ink-mid);
  border-color: var(--border);
}

.btn-ghost:hover {
  background-color: var(--cyan-pale);
  color: var(--ink);
  border-color: var(--cyan-light);
}

/* WhatsApp modifier */
.btn-whatsapp {
  background-color: var(--green-soft);
  color: var(--white);
  border-color: var(--green-soft);
  box-shadow: var(--shadow-btn-whatsapp);
}

.btn-whatsapp:hover {
  background-color: #1EB358;
  border-color: #1EB358;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.38);
}

.btn-sm { font-size: 0.8125rem; padding: 0.5rem 1.125rem; }
.btn-lg { font-size: 1.0625rem; padding: 0.9375rem 2rem; }

/* ============================================================
   FEATURE GRID
   ============================================================ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.feature-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem;
  text-align: left;
  transition: all 0.2s;
}

.feature-card:hover {
  border-color: var(--cyan-light);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.fc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--cyan-pale);
  border: 1.5px solid var(--cyan-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.fc-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.fc-body {
  font-size: 0.82rem;
  color: var(--ink-mid);
  line-height: 1.65;
}

/* ============================================================
   CARDS
   ============================================================ */

.card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

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

.card--alt       { background-color: var(--off-white); }
.card--cyan-pale { background-color: var(--cyan-pale); border-color: var(--cyan-light); }
.card--accent    { border-top: 3px solid var(--cyan); }

.card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background-color: var(--cyan-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--cyan-deep);
  font-size: 1.375rem;
}

/* ============================================================
   PROOF SECTION
   ============================================================ */

.proof-section {
  background: var(--cyan);
  padding: 5rem 3rem;
  position: relative;
  overflow: hidden;
}

.proof-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.proof-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

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

.proof-header .section-label { color: rgba(255, 255, 255, 0.7); }
.proof-header .section-title { color: var(--white); }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.proof-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-card);
  padding: 2.5rem 1.5rem;
  transition: background 0.2s, transform 0.2s;
}

.proof-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

.pc-icon  { font-size: 2rem; margin-bottom: 0.75rem; display: block; }

.pc-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.4rem;
  font-weight: 900;
}

.pc-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

.pc-body {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* ============================================================
   TAGS & PILLS
   ============================================================ */

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3125rem 0.75rem;
  border-radius: var(--radius-tag);
  line-height: 1;
}

.tag-cyan {
  background-color: var(--cyan-pale);
  color: var(--cyan-deep);
  border: 1px solid var(--cyan-light);
}

.tag-gold {
  background-color: var(--gold-pale);
  color: var(--gold);
  border: 1px solid #F5E0A0;
}

.pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-pill);
  line-height: 1;
}

.pill-cyan {
  background-color: var(--cyan-pale);
  color: var(--cyan-deep);
  border: 1px solid var(--cyan-light);
}

.pill-ink {
  background-color: var(--off-white);
  color: var(--ink-mid);
  border: 1px solid var(--border);
}

/* ============================================================
   FORMS & INPUTS
   ============================================================ */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
}

.form-label { font-size: 0.875rem; font-weight: 700; color: var(--ink); }
.form-hint  { font-size: 0.8125rem; color: var(--ink-light); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.6875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-input);
  font-size: 0.9375rem;
  color: var(--ink);
  background-color: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(20, 200, 200, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--ink-light);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

/* BEM card variant (for multi-card grids on other pages) */
.testimonial-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2rem;
  transition: box-shadow 0.25s ease;
}

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

.testimonial-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.testimonial-card__quote::before {
  content: '\201C';
  color: var(--cyan);
  font-size: 2rem;
  line-height: 0;
  vertical-align: -0.5rem;
  margin-right: 0.125rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--cyan-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--cyan-deep);
  flex-shrink: 0;
}

.testimonial-card__name { font-weight: 700; font-size: 0.9375rem; color: var(--ink); }
.testimonial-card__meta { font-size: 0.8125rem; color: var(--ink-light); }

/* Homepage testimonial section (flat classes) */
.testi-section {
  padding: 5rem 3rem;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.testi-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.testi-stars {
  font-size: 1.4rem;
  letter-spacing: 0.15rem;
  margin-bottom: 1.5rem;
  display: block;
}

.testi-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.65;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 2rem;
  font-weight: 700;
}

.testi-quote em {
  font-style: normal;
  color: var(--cyan-dark);
  background: var(--cyan-pale);
  padding: 0 0.3em;
  border-radius: 4px;
}

.testi-person {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.3rem;
}

.testi-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
}

.testi-name { font-size: 0.9rem; font-weight: 800; color: var(--ink); }
.testi-meta { font-size: 0.75rem; color: var(--ink-light); margin-top: 0.1rem; }

.testi-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--cyan-dark);
  text-decoration: none;
  background: var(--cyan-pale);
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  border: 1.5px solid var(--cyan-light);
  transition: all 0.2s;
}

.testi-more:hover {
  background: var(--cyan);
  color: var(--white);
}

/* ============================================================
   PATHWAYS SECTION
   ============================================================ */

.pathways-section {
  padding: 5rem 3rem;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.pathways-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 860px;
  margin: 3rem auto 0;
}

.pw {
  border-radius: var(--radius-card);
  padding: 2.5rem;
  text-decoration: none;
  display: block;
  border: 2px solid;
  transition: all 0.25s;
}

.pw:hover { transform: translateY(-4px); }

.pw.pa { background: var(--cyan-pale); border-color: var(--cyan-light); }
.pw.pa:hover { box-shadow: 0 12px 32px rgba(20, 200, 200, 0.15); border-color: var(--cyan); }

.pw.pb { background: var(--ink); border-color: var(--cyan-dark); }
.pw.pb:hover { box-shadow: 0 12px 32px rgba(11, 123, 127, 0.25); }

.pw-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.pw.pa .pw-tag { background: var(--cyan-light); color: var(--cyan-deep); }
.pw.pb .pw-tag { background: rgba(20, 200, 200, 0.15); color: var(--cyan); }

.pw-emoji {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.pw h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
  font-weight: 700;
}

.pw.pa h3 { color: var(--ink); }
.pw.pb h3 { color: var(--white); }

.pw p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.5rem; }
.pw.pa p { color: var(--ink-mid); }
.pw.pb p { color: rgba(255, 255, 255, 0.6); }

.pw-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.55rem 1.1rem;
  border-radius: 6px;
  border: 2px solid;
  transition: all 0.2s;
}

.pw.pa .pw-link       { color: var(--cyan-deep); border-color: var(--cyan); background: var(--white); }
.pw.pa:hover .pw-link { background: var(--cyan); color: var(--white); }
.pw.pb .pw-link       { color: var(--white); border-color: rgba(20, 200, 200, 0.4); background: rgba(20, 200, 200, 0.1); }
.pw.pb:hover .pw-link { background: var(--cyan); color: var(--ink); border-color: var(--cyan); }

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
  background: var(--cyan);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.12), transparent 60%);
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  font-weight: 900;
  line-height: 1.15;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* WhatsApp button — standalone (self-contained) */
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--green-soft);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: var(--shadow-btn-whatsapp);
  cursor: pointer;
}

.wa-btn:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.wa-btn svg { width: 20px; height: 20px; }

/* Email button in CTA */
.em-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.2s;
  cursor: pointer;
}

.em-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
  transform: translateY(-2px);
}

.cta-note {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   QUOTE SECTION
   ============================================================ */

.quote-section {
  padding: 4rem 3rem;
  background: var(--white);
  text-align: center;
  border-top: 1px solid var(--border);
}

.quote-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan-dark);
  margin-bottom: 0.75rem;
}

.quote-author {
  font-size: 0.85rem;
  color: var(--ink-light);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.quote-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink-mid);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 700;
}

/* ============================================================
   FOOTER
   ============================================================ */

/* Homepage footer (hierarchical layout) */
footer {
  background: var(--white);
  border-top: 2px solid var(--border);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}

.f-brand .f-name {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.f-brand .f-name span { color: var(--cyan-dark); }
.f-brand .f-tag       { font-size: 0.78rem; color: var(--ink-light); font-weight: 600; }
.f-brand .f-copy      { font-size: 0.72rem; color: var(--ink-light); margin-top: 0.75rem; }

.f-section h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 0.85rem;
}

.f-section ul { list-style: none; }
.f-section li { margin-bottom: 0.4rem; }

.f-section a {
  font-size: 0.85rem;
  color: var(--ink-mid);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.f-section a:hover { color: var(--cyan-dark); }

.f-contact h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 0.85rem;
}

.f-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.f-contact-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--ink-light);
  min-width: 50px;
  padding-top: 0.1rem;
}

.f-contact-val {
  font-size: 0.85rem;
  color: var(--ink-mid);
  font-weight: 600;
}

.f-contact-val a {
  color: var(--cyan-dark);
  text-decoration: none;
}

.f-contact-val a:hover { text-decoration: underline; }

/* Footer hierarchical nav columns */
.f-nav-col { display: flex; flex-direction: column; }

.f-nav-parent {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  text-decoration: none;
  margin-bottom: 0.85rem;
  transition: color 0.2s;
}

.f-nav-parent:hover { color: var(--cyan-dark); }

.f-nav-children { list-style: none; margin-bottom: 1.1rem; }
.f-nav-children li { margin-bottom: 0.4rem; }

.f-nav-children a {
  font-size: 0.85rem;
  color: var(--ink-mid);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.f-nav-children a:hover { color: var(--cyan-dark); }

.f-nav-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-top: 0.5rem;
  margin-bottom: 0.85rem;
}

/* Compact contact in brand column */
.f-contact-compact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.85rem;
}

.f-contact-compact a {
  font-size: 0.8rem;
  color: var(--cyan-dark);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.f-contact-compact a:hover { text-decoration: underline; }

/* Dark footer variant (for inner pages) */
.site-footer {
  background-color: var(--ink);
  color: var(--ink-light);
  padding-block: 3.5rem 2rem;
  padding-inline: var(--section-px-desktop);
}

.site-footer .container { max-width: var(--max-width); margin-inline: auto; }

.site-footer a             { color: var(--ink-light); text-decoration: none; transition: color 0.2s ease; }
.site-footer a:hover       { color: var(--cyan); }

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-brand span      { color: var(--cyan); }
.footer-tagline         { font-size: 0.875rem; color: var(--ink-light); margin-bottom: 1.5rem; }

.footer-nav-heading {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.875rem;
}

.footer-nav-list         { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav-list a       { font-size: 0.9rem; }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--ink-light);
}

/* ============================================================
   STATS / NUMBERS
   ============================================================ */

.stat { text-align: center; }

.stat__number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.stat__label { font-size: 0.9375rem; font-weight: 600; color: var(--ink-mid); }

/* ============================================================
   ACCORDION / FAQ
   ============================================================ */

.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:first-child { border-top: 1px solid var(--border); }

.accordion-trigger {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.accordion-trigger:hover { color: var(--cyan-deep); }

.accordion-trigger__icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: var(--cyan-pale);
  color: var(--cyan-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.25s ease, background-color 0.2s ease;
}

.accordion-item.open .accordion-trigger__icon {
  transform: rotate(45deg);
  background-color: var(--cyan-light);
}

.accordion-body {
  display: none;
  padding-bottom: 1.25rem;
  font-size: 0.9375rem;
  color: var(--ink-mid);
  line-height: 1.7;
}

.accordion-item.open .accordion-body { display: block; }

/* ============================================================
   DIVIDERS
   ============================================================ */

hr,
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-block: 2rem;
}

.divider--cyan { border-top-color: var(--cyan-light); }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */

.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 200;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background-color: var(--green-soft);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: var(--shadow-btn-whatsapp);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.42);
  color: var(--white);
}

/* ============================================================
   UTILITIES
   ============================================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hidden { display: none !important; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* ============================================================
   CONTENT PAGE TEMPLATE — breadcrumb, page hero, body, CTA
   ============================================================ */

/* Breadcrumb */
.breadcrumb { margin-bottom: 1.5rem; }

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0;
  align-items: center;
  font-size: 0.8rem;
  color: var(--ink-light);
}

.breadcrumb li + li::before {
  content: '›';
  margin: 0 0.4rem;
  color: var(--ink-light);
}

.breadcrumb a {
  color: var(--ink-light);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--cyan-dark); }

.breadcrumb [aria-current="page"] {
  color: var(--ink-mid);
  font-weight: 700;
}

/* Page hero */
.page-hero {
  background: var(--off-white);
  padding: 4rem 3rem 3rem;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 900;
  margin: 0 0 0.75rem;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--cyan-dark);
}

.page-sub {
  font-size: 1.05rem;
  color: var(--ink-mid);
  max-width: 620px;
  line-height: 1.75;
  font-weight: 500;
}

/* Content body */
.content-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 3rem;
}

/* Prose typography — scoped to content pages */
.content-body .lead {
  font-size: 1.1rem;
  color: var(--ink-mid);
  line-height: 1.85;
  font-weight: 500;
  margin-bottom: 2.5rem;
  border-left: 4px solid var(--cyan);
  padding-left: 1.25rem;
}

.content-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.content-body h2::before {
  content: '';
  display: block;
  width: 4px;
  height: 1.1em;
  background: var(--cyan);
  border-radius: 2px;
  flex-shrink: 0;
}

.content-body h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.4;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}

.content-body p {
  font-size: 1rem;
  color: var(--ink-mid);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.content-body p:last-child { margin-bottom: 0; }

.content-body a {
  color: var(--cyan-dark);
  text-decoration: underline;
  text-decoration-color: var(--cyan-light);
  text-underline-offset: 3px;
  font-weight: 600;
}

.content-body a:hover {
  color: var(--cyan-deep);
  text-decoration-color: var(--cyan);
}

.content-body ul,
.content-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.content-body li {
  font-size: 1rem;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

.content-body strong {
  font-weight: 800;
  color: var(--ink);
}

/* Content images */
.content-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 2rem 0;
}

/* Founder / personal anecdote callout */
.personal-note {
  background: var(--cyan-pale);
  border-left: 6px solid var(--cyan);
  border-radius: 0 12px 12px 0;
  padding: 2rem 2.25rem;
  margin: 2.5rem 0;
}

.personal-note p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.personal-note-source {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-light);
  font-style: normal;
  font-family: var(--font-body);
}

/* Section divider */
.section-divider,
.divider {
  border: none;
  border-top: 1px solid var(--border);
  background: none;
  margin: 2.5rem 0;
}

/* Content pull-quote */
.content-pullquote {
  border-top: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  padding: 1.75rem 0;
  margin: 2.5rem 0;
  text-align: center;
}

.content-pullquote p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-style: italic;
  font-weight: 700;
  color: var(--cyan-deep);
  line-height: 1.55;
  max-width: 580px;
  margin: 0 auto;
}

/* Inline fact badge */
.fact-chip {
  display: inline;
  background: var(--cyan-pale);
  border: 1px solid var(--cyan-light);
  border-radius: 6px;
  padding: 0.2rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cyan-deep);
  white-space: nowrap;
}

/* Page hero eyebrow tag */
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--cyan-pale);
  color: var(--cyan-deep);
  border: 1.5px solid var(--cyan-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  text-decoration: none;
}

/* Page-level CTA block */
.page-cta {
  padding: 4rem 3rem;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.page-cta-inner {
  background: var(--cyan-pale);
  border: 1.5px solid var(--cyan-light);
  border-radius: 16px;
  padding: 3rem;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.page-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.page-cta-inner p {
  font-size: 1rem;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.page-cta-inner .cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.page-cta-inner .wa-btn,
.page-cta-inner .em-btn {
  flex: 1;
  min-width: 160px;
  max-width: 210px;
  justify-content: center;
  padding: 0.9rem 1.5rem;
}

.page-cta-inner .em-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--ink-mid);
  border: 2px solid var(--border);
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.page-cta-inner .em-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan-dark);
}

.page-cta-inner .em-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============================================================
   CONTENT PAGE ENHANCEMENTS
   ============================================================ */

/* Stat strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0 0 2.5rem;
}

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

.stat-card {
  background: var(--cyan-pale);
  border: 1.5px solid var(--cyan-light);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  text-align: center;
}

.stat-card__num {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 900;
  color: var(--cyan-deep);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-card__label {
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-mid);
}

/* Tag grid */
.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}

.tag-item {
  background: var(--cyan-pale);
  border: 1.5px solid var(--cyan-light);
  border-radius: 6px;
  padding: 0.35rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cyan-deep);
}

.tag-item--ink {
  background: var(--off-white);
  border-color: var(--border);
  color: var(--ink-mid);
}

/* Comparison table */
.comparison-table-wrap {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin: 1.5rem 0 2rem;
}

.comparison-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.comparison-table-wrap thead th {
  background: var(--cyan-pale);
  padding: 0.75rem 1.25rem;
  text-align: left;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-light);
  border-bottom: 1.5px solid var(--border);
}

.comparison-table-wrap thead th.col-nios {
  color: var(--cyan-deep);
}

.comparison-table-wrap tbody td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--ink-mid);
  font-weight: 600;
  vertical-align: middle;
}

.comparison-table-wrap tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table-wrap tbody td:first-child {
  color: var(--ink);
  font-weight: 700;
  width: 44%;
}

.comparison-table-wrap tbody td.col-nios {
  color: var(--cyan-deep);
  font-weight: 800;
}

.comparison-table-wrap tbody tr:nth-child(even) td {
  background: var(--off-white);
}

.ct-yes { color: var(--cyan); font-weight: 900; margin-right: 2px; }
.ct-no  { color: var(--ink-light); margin-right: 2px; }

/* Info cards */
.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
.info-cards--3 { grid-template-columns: repeat(3, 1fr); }

.info-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.35rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(20, 200, 200, 0.10);
  border-color: var(--cyan);
}

.info-card.accent {
  background: var(--cyan-pale);
  border-color: var(--cyan-light);
}

.info-card.accent:hover {
  border-color: var(--cyan-dark);
  box-shadow: 0 8px 24px rgba(20, 200, 200, 0.14);
}

.info-card__icon {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
  display: block;
}

.info-card__title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.info-card__body {
  font-size: 0.82rem;
  color: var(--ink-mid);
  line-height: 1.7;
}

/* In-page jump nav (table of contents) */
.page-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.75rem 0 0;
}

.page-toc__link,
.content-body .page-toc__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1.15rem;
  border: 1.5px solid var(--cyan-light);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--cyan-dark);
  text-decoration: none;
  background: transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.page-toc__link::after {
  content: '↓';
  font-size: 0.75rem;
  opacity: 0.6;
}

.page-toc__link:hover,
.content-body .page-toc__link:hover {
  background: var(--cyan-pale);
  border-color: var(--cyan);
  color: var(--cyan-deep);
  text-decoration: none;
}

/* Personal note block */
.founder-note {
  border-left: 4px solid var(--cyan);
  background: var(--cyan-pale);
  border-radius: 0 10px 10px 0;
  padding: 1.5rem 1.75rem;
  margin: 2.5rem 0;
}

.founder-note__text {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.85;
  font-weight: 500;
  margin-bottom: 0;
}

.founder-note__sig {
  font-size: 0.82rem;
  color: var(--ink-light);
  margin-top: 0.9rem;
  font-weight: 600;
}

.founder-note__sig a {
  color: var(--cyan-dark);
  text-decoration: underline;
  text-decoration-color: var(--cyan-light);
  text-underline-offset: 2px;
  font-weight: 700;
}

/* Step timeline */
.steps-list {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
}

.step-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  position: relative;
}

.step-item + .step-item .step-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15px;
  width: 2px;
  height: 100%;
  background: var(--border);
  z-index: 0;
}

.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 2px;
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-line {
  width: 2px;
  flex: 1;
  background: var(--border);
  margin-top: 4px;
  min-height: 2rem;
}

.step-item:last-child .step-line { display: none; }

.step-content {
  flex: 1;
  padding-bottom: 2.25rem;
}

.step-item:last-child .step-content { padding-bottom: 0; }

.step-label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan-dark);
  margin-bottom: 0.3rem;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.step-body {
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.8;
}

.step-body p {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.step-body p:last-child { margin-bottom: 0; }

.step-body a {
  color: var(--cyan-dark);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--cyan-light);
  text-underline-offset: 2px;
}

/* Documents checklist */
.doc-list {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  margin: 1.5rem 0 2rem;
}

.doc-list__title {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan-dark);
  margin-bottom: 1rem;
}

.doc-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.doc-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.6;
}

.doc-list li::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.doc-list li strong {
  color: var(--ink);
  font-weight: 700;
}

.doc-list__note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--ink-light);
  font-style: italic;
}

/* Fee table */
.fee-table-wrap {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin: 1rem 0 0;
}

.fee-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.fee-table-wrap thead th {
  background: var(--cyan-pale);
  padding: 0.7rem 1.1rem;
  text-align: left;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-light);
  border-bottom: 1.5px solid var(--border);
}

.fee-table-wrap thead th.col-highlight { color: var(--cyan-deep); }

.fee-table-wrap tbody td {
  padding: 0.8rem 1.1rem;
  border-bottom: 1px solid var(--border);
  color: var(--ink-mid);
  font-weight: 600;
  vertical-align: middle;
}

.fee-table-wrap tbody tr:last-child td { border-bottom: none; }
.fee-table-wrap tbody td:first-child { color: var(--ink); font-weight: 700; }
.fee-table-wrap tbody tr:nth-child(even) td { background: var(--off-white); }

.fee-highlight { color: var(--cyan-deep); font-weight: 800; }

/* Callout box */
.callout {
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.callout--info {
  background: var(--cyan-pale);
  border: 1.5px solid var(--cyan-light);
}

.callout--warn {
  background: var(--gold-pale);
  border: 1.5px solid #F0D98A;
}

.callout__icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  line-height: 1;
}

.callout__body { flex: 1; }

.callout__title {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.callout__text {
  font-size: 0.88rem;
  color: var(--ink-mid);
  line-height: 1.7;
  margin: 0;
}

/* Subject list tables */
.subject-table-wrap {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin: 0.5rem 0 1rem;
}

.subject-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.subject-table-wrap thead th {
  background: var(--cyan-pale);
  padding: 0.55rem 1rem;
  text-align: left;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-light);
  border-bottom: 1.5px solid var(--border);
}

.subject-table-wrap tbody td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  font-weight: 700;
  vertical-align: middle;
  line-height: 1.4;
}

.subject-table-wrap tbody tr:last-child td { border-bottom: none; }

.subject-table-wrap .td-code {
  font-size: 0.76rem;
  color: var(--ink-light);
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  width: 60px;
  text-align: right;
}

.subject-table-wrap tbody tr:nth-child(even) td { background: var(--off-white); }

/* Group divider label between subject table sections */
.subject-group-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan-dark);
  margin: 1.75rem 0 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.subject-group-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Subject combination cards (JEE / NEET requirements) */
.combo-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.combo-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.combo-card.accent {
  background: var(--cyan-pale);
  border-color: var(--cyan-light);
}

.combo-card__title {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan-dark);
  margin-bottom: 1rem;
}

.combo-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.combo-card__list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.combo-card__list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

.combo-card__code {
  font-size: 0.72rem;
  color: var(--ink-light);
  font-weight: 600;
  margin-left: auto;
  padding-left: 0.5rem;
  white-space: nowrap;
}

/* ============================================================
   HUB / PARENT PAGES — dark hero, dark stats, nav cards
   ============================================================ */

/* Dark hero variant */
.page-hero--dark {
  background: #0B1F23;
  border-bottom: 1px solid rgba(20, 200, 200, 0.15);
}

.page-hero--dark h1 {
  color: var(--white);
}

.page-hero--dark h1 em {
  color: var(--cyan);
}

.page-hero--dark .page-sub {
  color: rgba(255, 255, 255, 0.68);
}

.page-hero--dark .page-hero-tag {
  background: rgba(20, 200, 200, 0.12);
  color: var(--cyan);
  border-color: rgba(20, 200, 200, 0.28);
}

.page-hero--dark .breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
}

.page-hero--dark .breadcrumb a:hover {
  color: var(--cyan);
}

.page-hero--dark .breadcrumb li + li::before {
  color: rgba(255, 255, 255, 0.25);
}

.page-hero--dark .breadcrumb [aria-current="page"] {
  color: rgba(255, 255, 255, 0.65);
}

/* Dark stat strip — seamless dark band connecting directly to dark hero */
.stat-strip--dark {
  background: #0f2428;
  border-bottom: 1px solid rgba(20, 200, 200, 0.12);
  gap: 0;
  margin: 0;
}

.stat-strip--dark .stat-card {
  background: transparent;
  border: none;
  border-right: 1px solid rgba(20, 200, 200, 0.12);
  border-radius: 0;
  padding: 2rem 3rem;
  text-align: left;
}

.stat-strip--dark .stat-card:last-child {
  border-right: none;
}

.stat-strip--dark .stat-card__num {
  color: var(--cyan);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.stat-strip--dark .stat-card__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
}

/* Hub nav cards — full-width stacked link cards for parent page navigation */
.hub-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}

.hub-nav-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.35rem 1.75rem;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease,
              background 0.2s ease, box-shadow 0.2s ease;
}

.hub-nav-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--cyan);
  border-radius: 0 2px 2px 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.2s ease;
}

.hub-nav-card:hover {
  border-color: var(--cyan-light);
  background: var(--cyan-pale);
  transform: translateX(5px);
  box-shadow: 0 4px 20px rgba(20, 200, 200, 0.10);
  color: inherit;
}

.hub-nav-card:hover::before {
  transform: scaleY(1);
}

.hub-nav-card__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: var(--cyan-pale);
  border: 1.5px solid var(--cyan-light);
  border-radius: 12px;
  transition: background 0.2s ease;
}

.hub-nav-card:hover .hub-nav-card__icon {
  background: var(--cyan-light);
}

.hub-nav-card__body {
  flex: 1;
  min-width: 0;
}

.hub-nav-card__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.hub-nav-card__desc {
  font-size: 0.84rem;
  color: var(--ink-mid);
  line-height: 1.6;
  margin: 0;
}

.hub-nav-card__arrow {
  font-size: 1.2rem;
  color: var(--ink-light);
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.hub-nav-card:hover .hub-nav-card__arrow {
  transform: translateX(4px);
  color: var(--cyan-dark);
}

/* Hub page hero inner container (max-width + centering inside full-width dark hero) */
.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* Trust bar — rows of dot-prefixed highlights at bottom of dark hero */
.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

.hero-trust-item::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

/* Responsive — ≤ 700px */
@media (max-width: 700px) {
  .stat-strip    { grid-template-columns: repeat(2, 1fr); }
  .stat-strip--4 { grid-template-columns: repeat(2, 1fr); }
  .founder-note  { flex-direction: column; gap: 1rem; }
  .step-item     { gap: 0.85rem; }
}

/* Responsive — ≤ 640px */
@media (max-width: 640px) {
  .info-cards            { grid-template-columns: 1fr; }
  .info-cards--3         { grid-template-columns: 1fr; }
  .comparison-table-wrap { overflow-x: auto; }
  .fee-table-wrap        { overflow-x: auto; }

  .hub-nav-card              { padding: 1.1rem 1.25rem; gap: 1rem; }
  .hub-nav-card__icon        { width: 40px; height: 40px; font-size: 1.3rem; border-radius: 10px; }
  .hub-nav-card__arrow       { display: none; }
  .stat-strip--dark .stat-card { padding: 1.5rem 1.75rem; }
  .hero-trust-bar            { gap: 0.85rem; }
}

/* Responsive — ≤ 480px */
@media (max-width: 480px) {
  .stat-strip    { grid-template-columns: 1fr; }
  .stat-strip--4 { grid-template-columns: 1fr; }
  .stat-strip--dark { grid-template-columns: 1fr; }
  .stat-strip--dark .stat-card {
    border-right: none;
    border-bottom: 1px solid rgba(20, 200, 200, 0.12);
  }
  .stat-strip--dark .stat-card:last-child { border-bottom: none; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow { animation: fadeUp 0.5s 0.00s ease both; }
.hero h1      { animation: fadeUp 0.5s 0.08s ease both; }
.hero-sub     { animation: fadeUp 0.5s 0.15s ease both; }
.hero-btns    { animation: fadeUp 0.5s 0.22s ease both; }

/* ============================================================
   RESPONSIVE — TABLET LARGE  (≤ 900px)
   ============================================================ */

@media (max-width: 900px) {
  .site-header      { padding: 0.75rem 1.5rem; }
  .header-nav       { display: none; }

  .celebrate-banner {
    padding: 1rem 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .hero             { padding: 3.5rem 1.5rem 2.5rem; }

  .highlights-strip { grid-template-columns: 1fr; padding: 1.5rem; gap: 1rem; }

  .page-hero        { padding: 2.5rem 1.5rem 2rem; }
  .content-body     { padding: 2.5rem 1.5rem; }
  .page-cta         { padding: 2.5rem 1.5rem; }
  .page-cta-inner   { padding: 2rem 1.5rem; }

  .what-section,
  .testi-section,
  .pathways-section,
  .quote-section     { padding: 3.5rem 1.5rem; }
  .proof-section,
  .cta-section        { padding: 3.5rem 1.5rem; }

  .feature-grid       { grid-template-columns: 1fr; }
  .proof-grid         { grid-template-columns: 1fr; gap: 1rem; }
  .pathways-grid      { grid-template-columns: 1fr; }

  footer              { grid-template-columns: 1fr 1fr; padding: 2.5rem 1.5rem; }
  footer .f-brand     { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — TABLET  (≤ 768px)
   ============================================================ */

@media (max-width: 768px) {
  .container,
  .section {
    padding-inline: var(--section-px-mobile);
  }

  .section { padding-block: var(--section-py-mobile); }

  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem var(--section-px-mobile);
    gap: 1.25rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  }

  .site-nav.open { display: flex; }
  .nav-toggle    { display: flex; }

  .announcement-strip { padding-inline: var(--section-px-mobile); }
  .site-footer        { padding-inline: var(--section-px-mobile); }
  .footer-bottom      { flex-direction: column; text-align: center; }
  .whatsapp-float     { bottom: 1.25rem; right: 1.25rem; }
  .section-header__body { max-width: 100%; }
}

/* ============================================================
   RESPONSIVE — MOBILE  (≤ 480px)
   ============================================================ */

@media (max-width: 480px) {
  footer              { grid-template-columns: 1fr; }
  footer .f-brand     { grid-column: auto; }

  .btn-lg { font-size: 1rem; padding: 0.875rem 1.5rem; }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-btns .btn-primary,
  .hero-btns .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .cta-btns .wa-btn,
  .cta-btns .em-btn {
    width: 100%;
    justify-content: center;
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__cta-group .btn {
    width: 100%;
    justify-content: center;
  }
}
