/* ============================================
   MED ACADEMY — Design System v2 (Premium)
   Navy #1B2B6E | Teal #2BBCD4
   ============================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; color: #1a1a2e; background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Variables ---------- */
:root {
  --navy:       #1B2B6E;
  --navy-d:     #131f52;
  --navy-l:     #253893;
  --teal:       #2BBCD4;
  --teal-d:     #1fa3b9;
  --teal-l:     #e6f8fb;
  --teal-mid:   #b3eaf3;
  --white:      #ffffff;
  --off:        #F7F9FF;
  --g50:        #f9fafb;
  --g100:       #f3f4f6;
  --g200:       #e5e7eb;
  --g400:       #9ca3af;
  --g500:       #6b7280;
  --g700:       #374151;
  --g900:       #111827;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.07);
  --shadow:     0 4px 20px rgba(0,0,0,.09);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.13);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.16);
  --shadow-t:   0 8px 32px rgba(27,43,110,.18);
  --r-sm:       6px;
  --r:          12px;
  --r-lg:       18px;
  --r-xl:       24px;
  --ease:       0.22s ease;
  --ease-slow:  0.45s cubic-bezier(0.16,1,0.3,1);
  --max-w:      1200px;
  --nb-h:       72px;
  --announce-h: 0px;
}

/* ---------- Layout helpers ---------- */
.container   { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.container--sm { max-width: 780px; margin: 0 auto; padding: 0 28px; }
.section     { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--lg { padding: 120px 0; }
.text-center { text-align: center; }
.bg-off      { background: var(--off); }
.bg-navy     { background: var(--navy); }
.bg-dark     { background: var(--g900); }

/* ---------- Typography ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-d);
  background: var(--teal-l);
  border: 1px solid var(--teal-mid);
  padding: 5px 13px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); display: inline-block; }
.tag--white  { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); }
.tag--white::before { background: #fff; }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; color: var(--navy); }

.section-title { font-size: clamp(1.8rem, 3.4vw, 2.7rem); margin-bottom: 14px; letter-spacing: -0.02em; }
.section-title--white { color: #fff; }

.section-sub { font-size: 1.05rem; color: var(--g500); max-width: 580px; line-height: 1.75; }
.section-sub--white { color: rgba(255,255,255,0.72); }
.section-sub--center { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 26px;
  border: 2px solid transparent;
  transition: all var(--ease);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn-lg  { font-size: 1rem; padding: 15px 34px; }
.btn-sm  { font-size: 0.82rem; padding: 9px 18px; }

.btn-primary { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-d); border-color: var(--teal-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(43,188,212,.3); }

.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-d); border-color: var(--navy-d); transform: translateY(-2px); box-shadow: var(--shadow-t); }

.btn-outline { background: transparent; color: var(--navy); border-color: var(--g200); }
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: #fff; transform: translateY(-2px); }

.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline-white:hover { background: #fff; color: var(--navy); border-color: #fff; transform: translateY(-2px); }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announce-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  background: linear-gradient(90deg, var(--teal-d) 0%, var(--teal) 60%, #50d9ea 100%);
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
}

.announce-bar__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.85);
  flex: 1;
  justify-content: center;
}

.announce-bar__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: ab-pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes ab-pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(1.4); } }

.announce-bar__link {
  color: #fff;
  font-weight: 600;
  margin-left: 4px;
  border-bottom: 1px solid rgba(255,255,255,.35);
  transition: border-color var(--ease), color var(--ease);
}
.announce-bar__link span { display: inline-block; transition: transform var(--ease); }
.announce-bar__link:hover { color: var(--teal); border-color: var(--teal); }
.announce-bar__link:hover span { transform: translateX(3px); }

.announce-bar__close {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 50%;
  transition: all var(--ease);
  height: 28px; width: 28px;
}
.announce-bar__close:hover { background: rgba(255,255,255,.1); color: #fff; }

/* ============================================
   NAVBAR
   ============================================ */
.site-header {
  position: fixed;
  top: var(--announce-h);
  left: 0; right: 0;
  z-index: 1000;
}

.navbar {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.055);
  transition: box-shadow var(--ease), background var(--ease);
}
.navbar.nb--scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.09); }

.nb-inner {
  display: flex;
  align-items: center;
  height: var(--nb-h);
  gap: 0;
}

/* Logo */
.nb-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-right: 32px;
  transition: opacity var(--ease);
}
.nb-logo:hover { opacity: 0.85; }
.nb-logo img { height: 46px; width: auto; }
.nb-logo__text { display: flex; flex-direction: column; }
.nb-logo__name { font-size: 1.15rem; font-weight: 800; color: var(--navy); letter-spacing: -0.025em; line-height: 1.1; }
.nb-logo__sub  { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-top: 2px; }

/* Nav links */
.nb-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.nb-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--g700);
  padding: 7px 13px;
  border-radius: var(--r-sm);
  border: none;
  background: none;
  transition: all var(--ease);
  position: relative;
  white-space: nowrap;
  line-height: 1;
}
.nb-link:hover, .nb-link--active { color: var(--navy); background: var(--off); }
.nb-link--active::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 50%; transform: translateX(-50%);
  width: 16px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

/* Programs button chevron */
.nb-chevron { transition: transform var(--ease); flex-shrink: 0; }
.header--mega-open .nb-chevron { transform: rotate(180deg); }

/* Actions */
.nb-actions { display: flex; align-items: center; gap: 12px; }

.nb-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  background: var(--teal);
  padding: 10px 20px;
  border-radius: 50px;
  transition: all var(--ease);
  white-space: nowrap;
  border: 2px solid var(--teal);
}
.nb-cta svg { transition: transform var(--ease); }
.nb-cta:hover { background: var(--teal-d); border-color: var(--teal-d); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(43,188,212,.32); }
.nb-cta:hover svg { transform: translateX(3px); }

/* Hamburger */
.nb-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  border-radius: var(--r-sm);
  margin-left: 8px;
  transition: background var(--ease);
}
.nb-hamburger:hover { background: var(--off); }
.nb-hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--ease); }
.nb-hamburger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nb-hamburger--open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nb-hamburger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   MEGA-MENU
   ============================================ */
.mega-menu {
  position: fixed;
  top: calc(var(--announce-h) + var(--nb-h));
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--g200);
  box-shadow: var(--shadow-xl);
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  pointer-events: none;
}
.mega-menu--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

.mega-menu__inner {
  display: flex;
  gap: 0;
  padding: 32px 28px 28px;
}

.mega-menu__col { flex: 1; }

.mega-menu__group-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--g400);
  margin-bottom: 12px;
  padding-left: 4px;
}

.mega-menu__cards { display: flex; flex-direction: column; gap: 4px; }

.mega-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: var(--r);
  border: 1px solid transparent;
  transition: all 0.18s ease;
  cursor: pointer;
}
.mega-card:hover {
  background: var(--off);
  border-color: var(--g200);
}
.mega-card--active {
  background: var(--teal-l);
  border-color: var(--teal-mid);
}

.mega-card__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.mega-card__body { flex: 1; min-width: 0; }
.mega-card__label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
.mega-card__sub   { display: block; font-size: 0.76rem; color: var(--g500); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.mega-card__arrow { color: var(--g400); flex-shrink: 0; opacity: 0; transform: translateX(-4px); transition: all 0.18s ease; }
.mega-card:hover .mega-card__arrow { opacity: 1; transform: translateX(0); color: var(--teal); }

.mega-menu__divider {
  width: 1px;
  background: var(--g200);
  margin: 0 32px;
  flex-shrink: 0;
}

/* Mega footer strip */
.mega-menu__footer {
  background: var(--off);
  border-top: 1px solid var(--g200);
  padding: 12px 0;
}
.mega-menu__footer .container {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.mega-menu__footer-badge {
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--teal);
  color: #fff;
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
}
.mega-menu__footer-text { font-size: 0.82rem; color: var(--g500); }
.mega-menu__footer-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal-d);
  margin-left: auto;
  transition: color var(--ease);
}
.mega-menu__footer-cta:hover { color: var(--teal); }

/* Mega overlay */
.mega-overlay {
  position: fixed;
  inset: 0;
  top: calc(var(--announce-h) + var(--nb-h));
  background: rgba(15,23,42,.35);
  backdrop-filter: blur(3px);
  z-index: 985;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s;
}
.mega-overlay--show { opacity: 1; visibility: visible; }

/* ============================================
   MOBILE DRAWER
   ============================================ */
.mob-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: #fff;
  box-shadow: var(--shadow-xl);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--ease-slow);
  overflow-y: auto;
}
.mob-drawer--open { transform: translateX(0); }

.mob-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--g200);
  flex-shrink: 0;
}

.mob-drawer__close {
  background: var(--g100);
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
  transition: background var(--ease);
}
.mob-drawer__close:hover { background: var(--g200); }

.mob-drawer__nav {
  flex: 1;
  padding: 16px 0;
  overflow-y: auto;
}

.mob-link {
  display: flex;
  align-items: center;
  padding: 13px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--g700);
  border-bottom: 1px solid var(--g100);
  transition: all var(--ease);
}
.mob-link:hover { color: var(--navy); background: var(--off); }

.mob-section { padding: 8px 0; border-bottom: 1px solid var(--g100); }

.mob-section__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--g400);
  padding: 10px 24px 8px;
  display: block;
}

.mob-programs { display: flex; flex-direction: column; }

.mob-program {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 24px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--g700);
  transition: all var(--ease);
}
.mob-program:hover { background: var(--off); color: var(--navy); }
.mob-program--active { background: var(--teal-l); color: var(--navy); }

.mob-program__icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.mob-program svg { margin-left: auto; color: var(--g400); flex-shrink: 0; }

.mob-drawer__cta {
  padding: 20px 24px;
  border-top: 1px solid var(--g200);
  flex-shrink: 0;
  background: var(--off);
}

.mob-drawer__note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--g400);
  margin-top: 10px;
}

.mob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.45);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ease-slow), visibility var(--ease-slow);
}
.mob-overlay--show { opacity: 1; visibility: visible; }

/* ============================================
   BODY OFFSET (push content below fixed header)
   ============================================ */
body { padding-top: calc(var(--announce-h) + var(--nb-h)); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: calc(100vh - var(--nb-h) - var(--announce-h));
  background: linear-gradient(135deg, var(--navy-d) 0%, var(--navy) 50%, #1e4a8c 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 64px 0 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 600px at 72% 45%, rgba(43,188,212,.13) 0%, transparent 60%),
    radial-gradient(ellipse 400px 400px at 8% 80%, rgba(43,188,212,.07) 0%, transparent 50%);
  pointer-events: none;
}

.hero__shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero__shape  { position: absolute; border-radius: 50%; opacity: 0.055; }
.hero__shape--1 { width: 620px; height: 620px; background: var(--teal); right: -200px; top: -200px; }
.hero__shape--2 { width: 360px; height: 360px; background: #fff; right: 180px; bottom: -120px; }
.hero__shape--3 { width: 200px; height: 200px; background: var(--teal); left: 4%; top: 22%; }

.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero__content { color: #fff; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(43,188,212,.18);
  border: 1px solid rgba(43,188,212,.4);
  color: #7ee8f5;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero__badge-dot { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; animation: ab-pulse 2s infinite; }

.hero__title {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.hero__title span {
  background: linear-gradient(90deg, var(--teal) 0%, #7ee8f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Reset on the light split hero — use a clean solid colour, no clip */
.hero--split .hero__title span {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: var(--teal);
  color: var(--teal);
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 34px;
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero__avatars { display: flex; }
.hero__avatar {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.35);
  background: linear-gradient(135deg, var(--teal), #7ee8f5);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; color: var(--navy);
  margin-left: -7px; flex-shrink: 0;
}
.hero__avatar:first-child { margin-left: 0; }
.hero__trust-text { font-size: 0.82rem; color: rgba(255,255,255,.7); line-height: 1.4; }
.hero__trust-text strong { color: #fff; }

/* Hero visual */
.hero__visual { display: flex; flex-direction: column; gap: 14px; }

.hero__card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  color: #fff;
}
.hero__card-hd { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.hero__card-ico { width: 42px; height: 42px; border-radius: 10px; background: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.hero__card-label { font-size: 0.95rem; font-weight: 700; }
.hero__card-sub   { font-size: 0.74rem; color: rgba(255,255,255,.55); }

.hero__score-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.hero__score-item { background: rgba(255,255,255,.07); border-radius: var(--r-sm); padding: 10px 12px; }
.hero__score-item .score { font-size: 1.35rem; font-weight: 800; color: var(--teal); line-height: 1; }
.hero__score-item .score-label { font-size: 0.68rem; color: rgba(255,255,255,.55); margin-top: 3px; }

.hero__mini {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r);
  padding: 14px 18px;
  color: #fff;
  display: flex; align-items: center; gap: 13px;
}
.hero__mini-ico { width: 38px; height: 38px; border-radius: 8px; background: rgba(43,188,212,.22); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.hero__mini-label { font-size: 0.87rem; font-weight: 600; }
.hero__mini-sub   { font-size: 0.72rem; color: rgba(255,255,255,.55); }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar { background: #fff; border-bottom: 1px solid var(--g200); }
.stats-bar__inner { display: grid; grid-template-columns: repeat(4,1fr); }
.stats-bar__item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 32px 20px;
  border-right: 1px solid var(--g200);
  text-align: center;
  transition: background var(--ease);
}
.stats-bar__item:last-child { border-right: none; }
.stats-bar__item:hover { background: var(--teal-l); }
.stats-bar__num   { font-size: 2.4rem; font-weight: 800; color: var(--teal); line-height: 1; }
.stats-bar__label { font-size: 0.78rem; font-weight: 500; color: var(--g500); margin-top: 5px; }

/* ============================================
   PROGRAM CARDS (homepage grid)
   ============================================ */
.programs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 48px; }
.programs-row2  { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 22px; }

.prog-card {
  background: #fff;
  border: 1px solid var(--g200);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--ease);
  display: flex; flex-direction: column;
}
.prog-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2.5px;
  background: linear-gradient(90deg, var(--teal), #7ee8f5);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.28s ease;
}
.prog-card:hover { border-color: var(--teal); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.prog-card:hover::before { transform: scaleX(1); }

.prog-card__ico  { width: 54px; height: 54px; border-radius: 13px; background: var(--teal-l); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 18px; }
.prog-card__tag  { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-d); background: var(--teal-l); padding: 3px 10px; border-radius: 50px; margin-bottom: 8px; }
.prog-card__title { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.prog-card__desc  { font-size: 0.86rem; color: var(--g500); line-height: 1.65; margin-bottom: 18px; flex: 1; }

.prog-card__features { margin-bottom: 22px; }
.prog-card__features li { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--g700); padding: 3px 0; }
.prog-card__features li::before { content: '✓'; width: 17px; height: 17px; background: var(--teal); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; font-weight: 700; flex-shrink: 0; }

.prog-card__link { display: inline-flex; align-items: center; gap: 5px; font-size: 0.84rem; font-weight: 600; color: var(--teal-d); transition: gap var(--ease); }
.prog-card:hover .prog-card__link { gap: 9px; }

/* ============================================
   WHY SECTION
   ============================================ */
.why__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.why__visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: visible;
}

.why__img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #1e4a8c 100%);
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.why__img-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(43,188,212,.28) 0%, transparent 60%);
}
.why__img-content { position: relative; z-index: 1; text-align: center; color: #fff; padding: 40px; }
.why__big-num   { font-size: 5rem; font-weight: 800; color: var(--teal); line-height: 1; }
.why__big-label { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,.75); margin-top: 6px; }

.why__float {
  position: absolute;
  background: #fff;
  border-radius: var(--r);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 11px;
}
.why__float--1 { bottom: -18px; left: -22px; }
.why__float--2 { top: 22px; right: -22px; }
.why__float-ico { width: 38px; height: 38px; border-radius: 8px; background: var(--teal-l); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0; }
.why__float-label { font-size: 0.78rem; font-weight: 600; color: var(--navy); }
.why__float-sub   { font-size: 0.68rem; color: var(--g500); }

.why__features { display: flex; flex-direction: column; gap: 26px; }
.why__feature { display: flex; gap: 16px; align-items: flex-start; }
.why__feat-ico {
  width: 50px; height: 50px; border-radius: 13px;
  background: var(--teal-l); border: 1px solid var(--teal-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.why__feat-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.why__feat-desc  { font-size: 0.85rem; color: var(--g500); line-height: 1.65; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 28px;
  margin-top: 48px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px; left: calc(12.5% + 24px); right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-mid));
  z-index: 0;
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-card__num {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-d));
  color: #fff; font-size: 1.25rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 18px rgba(43,188,212,.38);
  border: 4px solid #fff;
}
.step-card__title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.step-card__desc  { font-size: 0.84rem; color: var(--g500); line-height: 1.65; }

/* ============================================
   RESULTS CARDS
   ============================================ */
.results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

.result-card {
  background: #fff;
  border: 1px solid var(--g200);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: all var(--ease);
}
.result-card:hover { border-color: var(--teal); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.result-card__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.result-card__av  { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.result-card__score-num { font-size: 1.7rem; font-weight: 800; color: var(--teal); line-height: 1; text-align: right; }
.result-card__score-label { font-size: 0.68rem; font-weight: 600; color: var(--g400); text-transform: uppercase; letter-spacing: 0.08em; text-align: right; }
.result-card__name  { font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.result-card__prog  { font-size: 0.76rem; color: var(--teal-d); font-weight: 600; margin-bottom: 10px; }
.result-card__quote { font-size: 0.84rem; color: var(--g500); line-height: 1.65; font-style: italic; }
.stars { display: flex; gap: 1px; margin-bottom: 10px; }
.stars span { color: #fbbf24; font-size: 0.88rem; }

/* ============================================
   TESTIMONIALS
   ============================================ */
/* Testimonials — slider wrapper holds arrows + carousel in a row */
.testimonials__slider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}
.testimonials__carousel {
  flex: 1;
  overflow: hidden;
  position: relative;
  border-radius: var(--r-lg);
}
.testimonials__track { display: flex; gap: 0; transition: transform 0.52s cubic-bezier(0.4,0,0.2,1); }

.testimonial-card {
  /* width set by JS — min/max-width via style attr */
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 40px 44px;
  color: #fff;
  flex-shrink: 0;
  box-sizing: border-box;
}

/* Arrows sit outside the overflow:hidden carousel in the flex row */
.testimonials__arrow {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease), border-color var(--ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.testimonials__arrow:hover { background: var(--teal); border-color: var(--teal); }

.testimonial-card__quote  { font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.8); margin-bottom: 28px; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 13px; }
.testimonial-card__av     { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; color: #fff; flex-shrink: 0; }
.testimonial-card__name   { font-size: 0.92rem; font-weight: 700; color: #fff; }
.testimonial-card__role   { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 3px; }
.testimonials .stars span { color: var(--teal); font-size: 1rem; }

.testimonials__dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.testimonials__dot  { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.22); border: none; cursor: pointer; transition: all var(--ease); }
.testimonials__dot.active { background: var(--teal); width: 22px; border-radius: 4px; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(120deg, var(--teal) 0%, var(--teal-d) 45%, var(--navy) 100%);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 380px 280px at 8% 50%, rgba(255,255,255,.1) 0%, transparent 60%),
    radial-gradient(ellipse 480px 360px at 92% 50%, rgba(27,43,110,.2) 0%, transparent 60%);
}
.cta-banner__inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap;
}
.cta-banner__title { font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 800; color: #fff; margin-bottom: 7px; }
.cta-banner__sub   { font-size: 0.95rem; color: rgba(255,255,255,.8); max-width: 440px; }
.cta-banner__btns  { display: flex; gap: 11px; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--g900); padding: 72px 0 32px; }

.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }

.footer__brand-logo { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.footer__brand-logo img { height: 42px; width: auto; }
.footer__brand-name    { font-size: 1.1rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.footer__brand-sub     { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); }
.footer__brand-desc    { font-size: 0.84rem; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 18px; max-width: 270px; }

.footer__socials { display: flex; gap: 8px; }
.footer__social  {
  width: 34px; height: 34px; border-radius: 7px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.09);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: rgba(255,255,255,.5);
  transition: all var(--ease); cursor: pointer;
}
.footer__social:hover { background: var(--teal); border-color: var(--teal); color: #fff; }

.footer__col-title { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 18px; }
.footer__links { display: flex; flex-direction: column; gap: 9px; }
.footer__links a { font-size: 0.84rem; color: rgba(255,255,255,.55); transition: color var(--ease); }
.footer__links a:hover { color: var(--teal); }

.footer__contact-item { display: flex; align-items: flex-start; gap: 9px; font-size: 0.84rem; color: rgba(255,255,255,.55); margin-bottom: 9px; }
.footer__contact-icon  { font-size: 0.95rem; flex-shrink: 0; margin-top: 1px; }

.footer__bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer__copy   { font-size: 0.78rem; color: rgba(255,255,255,.3); }
.footer__legal  { display: flex; gap: 18px; }
.footer__legal a { font-size: 0.78rem; color: rgba(255,255,255,.3); transition: color var(--ease); }
.footer__legal a:hover { color: var(--teal); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-d) 0%, var(--navy) 55%, #1e4a8c 100%);
  padding: 60px 0 72px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 560px 380px at 82% 50%, rgba(43,188,212,.11) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero__inner    { position: relative; z-index: 1; }
.page-hero__breadcrumb { display: flex; align-items: center; gap: 7px; font-size: 0.78rem; color: rgba(255,255,255,.5); margin-bottom: 18px; }
.page-hero__breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--ease); }
.page-hero__breadcrumb a:hover { color: var(--teal); }
.page-hero__breadcrumb span { color: rgba(255,255,255,.28); }
.page-hero__title { font-size: clamp(1.9rem, 3.8vw, 2.9rem); font-weight: 800; color: #fff; margin-bottom: 14px; letter-spacing: -0.025em; }
.page-hero__sub   { font-size: 1rem; color: rgba(255,255,255,.7); max-width: 540px; line-height: 1.72; }

/* ============================================
   INDIVIDUAL SERVICE PAGES
   ============================================ */

/* Service hero */
.svc-hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 64px 0 80px;
}
.svc-hero--navy   { background: linear-gradient(135deg, var(--navy-d) 0%, var(--navy) 50%, #1e4a8c 100%); }
.svc-hero--teal   { background: linear-gradient(135deg, #0e7fa3 0%, var(--teal-d) 50%, var(--teal) 100%); }

.svc-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 500px at 72% 50%, rgba(255,255,255,.07) 0%, transparent 60%);
}
.svc-hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.svc-hero__content { color: #fff; }
.svc-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.88);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.svc-hero__title { font-size: clamp(2rem, 4.2vw, 3.2rem); font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 18px; }
.svc-hero__title span { color: var(--teal); }
.svc-hero__sub   { font-size: 1.02rem; color: rgba(255,255,255,.75); line-height: 1.75; margin-bottom: 30px; max-width: 460px; }
.svc-hero__actions { display: flex; gap: 11px; flex-wrap: wrap; }

/* Hero visual panel */
.svc-hero__panel {
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-xl);
  padding: 28px;
  color: #fff;
}
.svc-hero__panel-title { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,.5); margin-bottom: 18px; }
.svc-hero__stat-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.svc-stat {
  background: rgba(255,255,255,.08);
  border-radius: var(--r);
  padding: 16px;
}
.svc-stat__num   { font-size: 1.7rem; font-weight: 800; color: var(--teal); line-height: 1; }
.svc-stat__label { font-size: 0.72rem; color: rgba(255,255,255,.55); margin-top: 4px; }

.svc-hero__includes {
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 16px;
}
.svc-hero__includes-title { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.svc-hero__inc-list { display: flex; flex-direction: column; gap: 7px; }
.svc-hero__inc-item { display: flex; align-items: center; gap: 9px; font-size: 0.84rem; color: rgba(255,255,255,.8); }
.svc-hero__inc-item::before { content: '✓'; width: 16px; height: 16px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.58rem; font-weight: 700; color: #fff; flex-shrink: 0; }

/* Service overview row */
.svc-overview { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.svc-overview--reverse { direction: rtl; }
.svc-overview--reverse > * { direction: ltr; }

.svc-visual {
  border-radius: var(--r-xl);
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #1e4a8c 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.svc-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 30%, rgba(43,188,212,.26) 0%, transparent 60%); }
.svc-visual__inner { position: relative; z-index: 1; text-align: center; color: #fff; padding: 32px; }
.svc-visual__ico   { font-size: 4rem; margin-bottom: 12px; }
.svc-visual__title { font-size: 1.1rem; font-weight: 700; }
.svc-visual__sub   { font-size: 0.82rem; color: rgba(255,255,255,.6); margin-top: 4px; }

/* Inline stat grid in svc visual */
.svc-visual__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; text-align: left; }
.svc-visual__stat  { background: rgba(255,255,255,.09); border-radius: 9px; padding: 12px; }
.svc-visual__stat-num   { font-size: 1.4rem; font-weight: 800; color: var(--teal); }
.svc-visual__stat-label { font-size: 0.68rem; color: rgba(255,255,255,.55); margin-top: 2px; }

/* Service content */
.svc-ico { width: 60px; height: 60px; border-radius: 14px; background: var(--teal-l); display: flex; align-items: center; justify-content: center; font-size: 1.7rem; margin-bottom: 18px; border: 1px solid var(--teal-mid); }
.svc-title { font-size: 1.7rem; font-weight: 800; color: var(--navy); margin-bottom: 13px; letter-spacing: -0.02em; }
.svc-desc  { font-size: 0.92rem; color: var(--g500); line-height: 1.78; margin-bottom: 20px; }

.svc-checklist { margin-bottom: 26px; }
.svc-checklist li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.88rem; color: var(--g700); padding: 7px 0; border-bottom: 1px solid var(--g100); }
.svc-checklist li:last-child { border-bottom: none; }
.svc-checklist .ck { color: var(--teal); font-size: 0.95rem; flex-shrink: 0; margin-top: 1px; }

.highlight-box {
  background: var(--teal-l);
  border: 1px solid var(--teal-mid);
  border-radius: var(--r);
  padding: 18px 22px;
  margin: 22px 0;
}
.highlight-box__label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--teal-d); margin-bottom: 6px; }
.highlight-box__text  { font-size: 0.87rem; color: var(--navy); font-weight: 500; line-height: 1.6; }

/* Curriculum grid */
.curriculum-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 40px; }
.curriculum-card {
  background: #fff;
  border: 1px solid var(--g200);
  border-radius: var(--r);
  padding: 20px;
  transition: all var(--ease);
}
.curriculum-card:hover { border-color: var(--teal); box-shadow: var(--shadow); transform: translateY(-2px); }
.curriculum-card__ico   { font-size: 1.5rem; margin-bottom: 10px; }
.curriculum-card__title { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.curriculum-card__desc  { font-size: 0.8rem; color: var(--g500); line-height: 1.6; }

/* Format options */
.format-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.format-card {
  background: #fff;
  border: 1.5px solid var(--g200);
  border-radius: var(--r-lg);
  padding: 24px;
  text-align: center;
  transition: all var(--ease);
  cursor: default;
}
.format-card--featured { border-color: var(--teal); background: var(--teal-l); }
.format-card:hover { border-color: var(--teal); box-shadow: var(--shadow); transform: translateY(-3px); }
.format-card__ico   { font-size: 2rem; margin-bottom: 12px; }
.format-card__title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.format-card__desc  { font-size: 0.83rem; color: var(--g500); line-height: 1.65; }
.format-card__badge { display: inline-block; background: var(--teal); color: #fff; font-size: 0.67rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 9px; border-radius: 50px; margin-bottom: 10px; }

/* Includes grid */
.includes-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 40px; }
.include-item  { display: flex; align-items: flex-start; gap: 13px; background: #fff; border: 1px solid var(--g200); border-radius: var(--r); padding: 18px; transition: all var(--ease); }
.include-item:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.include-item__ico   { font-size: 1.4rem; flex-shrink: 0; }
.include-item__title { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.include-item__desc  { font-size: 0.79rem; color: var(--g500); line-height: 1.55; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-values__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; margin-top: 48px; }
.value-card { background: #fff; border: 1px solid var(--g200); border-radius: var(--r-lg); padding: 28px; transition: all var(--ease); }
.value-card:hover { border-color: var(--teal); box-shadow: var(--shadow); transform: translateY(-3px); }
.value-card__ico   { width: 50px; height: 50px; border-radius: 12px; background: var(--teal-l); display: flex; align-items: center; justify-content: center; font-size: 1.35rem; margin-bottom: 14px; }
.value-card__title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.value-card__desc  { font-size: 0.84rem; color: var(--g500); line-height: 1.65; }

.team__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.team-card  { background: #fff; border: 1px solid var(--g200); border-radius: var(--r-lg); padding: 26px; text-align: center; transition: all var(--ease); }
.team-card:hover { border-color: var(--teal); box-shadow: var(--shadow); transform: translateY(-3px); }
.team-card__av   { width: 76px; height: 76px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 700; color: #fff; margin: 0 auto 14px; }
.team-card__name { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.team-card__role { font-size: 0.78rem; color: var(--teal-d); font-weight: 600; margin-bottom: 9px; }
.team-card__bio  { font-size: 0.82rem; color: var(--g500); line-height: 1.65; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact__inner { display: grid; grid-template-columns: 1fr 1.65fr; gap: 52px; align-items: flex-start; }

.contact-info-item { display: flex; gap: 13px; margin-bottom: 22px; align-items: flex-start; }
.contact-info-ico  { width: 42px; height: 42px; border-radius: 10px; background: var(--teal-l); display: flex; align-items: center; justify-content: center; font-size: 1.05rem; flex-shrink: 0; border: 1px solid var(--teal-mid); }
.contact-info-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal-d); margin-bottom: 3px; }
.contact-info-text  { font-size: 0.88rem; color: var(--g700); line-height: 1.5; }

.form-card { background: #fff; border: 1px solid var(--g200); border-radius: var(--r-xl); padding: 36px; box-shadow: var(--shadow-lg); }
.form-card__title { font-size: 1.35rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.form-card__sub   { font-size: 0.84rem; color: var(--g500); margin-bottom: 26px; }

.form-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group--full { grid-column: 1/-1; }

.form-label    { font-size: 0.78rem; font-weight: 600; color: var(--navy); }
.form-input,
.form-select,
.form-textarea { padding: 10px 13px; border: 1.5px solid var(--g200); border-radius: var(--r-sm); font-size: 0.9rem; color: var(--g900); background: #fff; transition: border-color var(--ease), box-shadow var(--ease); font-family: inherit; width: 100%; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(43,188,212,.12); }
.form-textarea { resize: vertical; min-height: 110px; }

.form-submit { width: 100%; justify-content: center; margin-top: 6px; }

.success-message { display: none; background: var(--teal-l); border: 1px solid var(--teal-mid); border-radius: var(--r); padding: 16px 20px; text-align: center; margin-top: 14px; }
.success-message.show { display: block; }
.success-message p { color: var(--navy); font-weight: 600; font-size: 0.88rem; }

/* ============================================
   FAQ
   ============================================ */
.faq__list { max-width: 740px; margin: 44px auto 0; }

.faq-item { border: 1px solid var(--g200); border-radius: var(--r); margin-bottom: 10px; overflow: hidden; transition: border-color var(--ease); }
.faq-item.open { border-color: var(--teal); }

.faq-item__question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 0.92rem; font-weight: 600; color: var(--navy);
  transition: background var(--ease); gap: 14px; border: none; background: none; width: 100%; text-align: left;
}
.faq-item__question:hover { background: var(--off); }
.faq-item.open .faq-item__question { background: var(--teal-l); }

.faq-item__icon { font-size: 1.1rem; color: var(--teal); flex-shrink: 0; transition: transform var(--ease); }
.faq-item.open .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-item__answer { max-height: 320px; }
.faq-item__body { padding: 0 22px 18px; font-size: 0.88rem; color: var(--g500); line-height: 1.72; }

/* ============================================
   SERVICES overview page
   ============================================ */
.service-section  { padding: 80px 0; border-bottom: 1px solid var(--g200); }
.service-section:last-of-type { border-bottom: none; }
.service-section__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.service-section__inner--rev { direction: rtl; }
.service-section__inner--rev > * { direction: ltr; }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.58s ease, transform 0.58s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__inner    { grid-template-columns: 1fr; }
  .hero__visual   { display: none; }
  /* Split hero on tablet: full-width, no right-shape */
  .hero--split    { min-height: auto; }
  .hero__split-right { display: none; }
  .why__inner     { grid-template-columns: 1fr; }
  .why__visual    { display: none; }
  .steps-grid     { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before { display: none; }
  .programs-grid  { grid-template-columns: repeat(2,1fr); }
  .footer__grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact__inner { grid-template-columns: 1fr; }
  .svc-hero__inner{ grid-template-columns: 1fr; }
  .svc-hero__panel{ display: none; }
  .svc-overview   { grid-template-columns: 1fr; gap: 36px; }
  .svc-overview--reverse { direction: ltr; }
  .about-story__visual { display: none; }
  .curriculum-grid { grid-template-columns: repeat(2,1fr); }
  .format-grid    { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nb-links  { display: none; }
  .nb-actions { display: none; }
  .nb-hamburger { display: flex; }
  .stats-bar__inner { grid-template-columns: repeat(2,1fr); }
  .stats-bar__item  { border-right: none; border-bottom: 1px solid var(--g200); }
  .stats-bar__item:nth-child(odd) { border-right: 1px solid var(--g200); }
  .programs-grid { grid-template-columns: 1fr; }
  .programs-row2 { grid-template-columns: 1fr; }
  .results-grid  { grid-template-columns: 1fr; }
  .about-values__grid { grid-template-columns: 1fr; }
  .team__grid    { grid-template-columns: 1fr; }
  .cta-banner__inner { flex-direction: column; align-items: flex-start; }
  .footer__grid  { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom{ flex-direction: column; align-items: center; text-align: center; }
  .form-grid     { grid-template-columns: 1fr; }
  .form-card     { padding: 24px 18px; }
  .hero__actions { flex-direction: column; }
  .section       { padding: 64px 0; }
  .section--lg   { padding: 80px 0; }
  .testimonials__arrow { width: 36px; height: 36px; font-size: 1.1rem; }
  .testimonial-card { padding: 24px 20px; }
  .curriculum-grid  { grid-template-columns: 1fr; }
  .format-grid      { grid-template-columns: 1fr; }
  .includes-grid    { grid-template-columns: 1fr; }
  .service-section__inner { grid-template-columns: 1fr; }
  .service-section__inner--rev { direction: ltr; }
  .mega-menu { display: none; }
}

@media (max-width: 480px) {
  .container  { padding: 0 16px; }
  .hero__title { font-size: 1.8rem; }
  .svc-hero__title { font-size: 1.8rem; }
  .page-hero  { padding: 44px 0 56px; }
  .announce-bar { height: 40px; font-size: 0.76rem; }
  .nb-logo__sub { display: none; }
}

/* ============================================
   HOME PAGE v3 — Photo-first Contour-style
   ============================================ */

/* --- Load animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes heroScale {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

.anim-up {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--d, 0s);
}
.anim-in {
  opacity: 0;
  animation: fadeIn 0.7s ease forwards;
  animation-delay: var(--d, 0s);
}

/* --- Homepage: no padding-top (hero handles its own) --- */
.pg-home { padding-top: 0; }

/* -------------------------------------------------------
   HERO — SPLIT VARIANT (light left / photo-frame right)
   ------------------------------------------------------- */
.hero--split {
  background: #fff;
  min-height: 100vh;
  padding: calc(var(--announce-h) + var(--nb-h)) 0 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
/* Disable base hero decorations that show on white */
.hero--split::before { display: none; }

/* Teal-tinted right-hand background shape */
.hero__split-right {
  position: absolute;
  top: 0; right: 0;
  width: 52%;
  height: 100%;
  background: linear-gradient(145deg, #daf4f9 0%, var(--teal-l) 50%, #c8eef7 100%);
  border-radius: 0 0 0 72px;
  z-index: 0;
}
/* Subtle teal dot-grid texture */
.hero__split-right::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(43,188,212,0.18) 1px, transparent 1px);
  background-size: 22px 22px;
  border-radius: inherit;
}

.hero--split .hero__inner {
  position: relative; z-index: 1;
  padding: 60px 0 80px;
}

/* ---- Left content: navy text ---- */
.hero--split .hero__content { color: var(--navy); }

.hero--split .hero__badge {
  background: var(--teal-l);
  border-color: var(--teal-mid);
  color: var(--teal-d);
}
.hero--split .hero__badge-dot { background: var(--teal); }

.hero--split .hero__title {
  color: var(--navy);
  font-size: clamp(1.75rem, 2.6vw, 2.6rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.hero--split .hero__sub { color: var(--g500); }

.hero--split .hero__trust { border-top-color: var(--g200); }
.hero--split .hero__avatars .hero__avatar {
  border-color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: #fff;
}
.hero--split .hero__trust-text       { color: var(--g500); }
.hero--split .hero__trust-text strong { color: var(--navy); }

/* ---- Right visual: contained photo frame ---- */
.hero__vis-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 460px;
  background: linear-gradient(145deg, var(--navy-d) 0%, var(--navy) 45%, #1e4a8c 75%, var(--teal-d) 100%);
  box-shadow: 0 24px 64px rgba(27,43,110,0.28), 0 4px 16px rgba(43,188,212,0.12);
}

/* Decorative rings — visible when no photo loaded */
.hero__vis-frame::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,188,212,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero__vis-frame::after {
  content: '';
  position: absolute;
  bottom: 120px; left: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero__vis-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
  animation: heroScale 9s ease-out forwards;
  will-change: transform;
}

.hero__vis-dim {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(10,16,40,0.88) 100%);
}

/* Glassmorphism stats card at bottom of frame */
.hero__vis-card {
  position: absolute;
  bottom: 16px; left: 14px; right: 14px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 16px 18px;
  color: #fff;
  z-index: 1;
}
.hero__vis-card .hero__card-label { color: #fff; }
.hero__vis-card .hero__card-sub   { color: rgba(255,255,255,0.55); }

/* Mini cards below the frame */
.hero__mini-row { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }

.hero--split .hero__mini {
  background: #fff;
  border-color: var(--g200);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.hero--split .hero__mini-ico    { background: var(--teal-l); }
.hero--split .hero__mini-label  { color: var(--navy); font-weight: 600; }
.hero--split .hero__mini-sub    { color: var(--g400); }

/* --- Photo program cards --- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.photo-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  display: block;
  cursor: pointer;
  background: var(--navy-d);
  text-decoration: none;
}
.photo-grid .photo-card { aspect-ratio: 3/4; }
.photo-row  .photo-card { aspect-ratio: 16/9; }

.photo-card__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.photo-card:hover .photo-card__bg { transform: scale(1.07); }

/* Per-card gradient fallbacks */
.photo-card--vce      .photo-card__bg { background-color: var(--navy); background-image: linear-gradient(145deg, var(--navy) 0%, #253893 100%); }
.photo-card--ucat     .photo-card__bg { background-color: #1a3d80; background-image: linear-gradient(145deg, #1a3d80 0%, var(--teal) 100%); }
.photo-card--gamsat   .photo-card__bg { background-color: var(--navy); background-image: linear-gradient(145deg, var(--navy-d) 0%, #1e4a8c 100%); }
.photo-card--selective .photo-card__bg { background-color: #253893; background-image: linear-gradient(145deg, #253893 0%, var(--teal) 100%); }
.photo-card--prevce   .photo-card__bg { background-color: var(--navy); background-image: linear-gradient(145deg, var(--navy) 0%, var(--teal-d) 100%); }

/* Teal accent radial on fallback */
.photo-card--vce      ::before { background: radial-gradient(ellipse at 70% 20%, rgba(43,188,212,0.28) 0%, transparent 55%); }
.photo-card--ucat     ::before { background: radial-gradient(ellipse at 25% 25%, rgba(43,188,212,0.32) 0%, transparent 55%); }
.photo-card--gamsat   ::before { background: radial-gradient(ellipse at 65% 22%, rgba(43,188,212,0.22) 0%, transparent 55%); }
.photo-card--selective::before { background: radial-gradient(ellipse at 40% 25%, rgba(43,188,212,0.24) 0%, transparent 55%); }
.photo-card--prevce   ::before { background: radial-gradient(ellipse at 60% 20%, rgba(43,188,212,0.22) 0%, transparent 55%); }

.photo-card::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse at 60% 20%, rgba(43,188,212,0.22) 0%, transparent 55%);
}

/* Gradient overlay from bottom */
.photo-card__ov {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    to top,
    rgba(10,16,40,0.97) 0%,
    rgba(10,16,40,0.65) 38%,
    rgba(10,16,40,0.15) 68%,
    transparent 100%
  );
  transition: background 0.4s ease;
}
.photo-card:hover .photo-card__ov {
  background: linear-gradient(
    to top,
    rgba(10,16,40,0.98) 0%,
    rgba(10,16,40,0.72) 42%,
    rgba(10,16,40,0.25) 70%,
    transparent 100%
  );
}

/* Card content */
.photo-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 24px 26px;
  z-index: 3;
  color: #fff;
}

.photo-card__eyebrow {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.photo-card__eyebrow::before {
  content: '';
  display: inline-block;
  width: 16px; height: 1.5px;
  background: var(--teal);
  border-radius: 2px;
}

.photo-card__title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.022em;
  margin-bottom: 8px;
  transition: color 0.25s ease;
}
.photo-grid .photo-card__title { font-size: 1.5rem; }
.photo-card:hover .photo-card__title { color: #fff; }

.photo-card__sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.35s ease, margin 0.35s ease;
  margin-bottom: 0;
}
.photo-card:hover .photo-card__sub {
  max-height: 64px;
  opacity: 1;
  margin-bottom: 14px;
}

.photo-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  background: var(--teal);
  padding: 8px 16px;
  border-radius: 50px;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.38s ease, opacity 0.32s ease, background 0.2s ease;
}
.photo-card:hover .photo-card__cta { transform: translateY(0); opacity: 1; }
.photo-card__cta:hover { background: var(--teal-d); }

/* --- Proof bar --- */
.proof-bar {
  background: linear-gradient(135deg, var(--teal-l) 0%, #f5feff 100%);
  border-top: 1px solid var(--teal-mid);
  border-bottom: 1px solid var(--teal-mid);
  padding: 60px 0;
}
.proof-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 28px;
  border-right: 1px solid var(--g200);
}
.proof-item:last-child { border-right: none; }
.proof-item__num {
  font-size: clamp(2.6rem, 4.2vw, 3.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.proof-item__num span { color: inherit; }
.proof-item__label {
  font-size: 0.8rem;
  color: var(--g500);
  line-height: 1.5;
  max-width: 120px;
}

/* --- Why v2 (photo + features) --- */
.why-v2__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-v2__photo { position: relative; }
.why-v2__photo-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-l) 55%, var(--teal) 100%);
  position: relative;
}
.why-v2__photo-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
}
.why-v2__photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(13,22,48,0.5) 100%);
}
/* Teal accent inside the frame */
.why-v2__photo-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 25% 25%, rgba(43,188,212,0.22) 0%, transparent 55%);
  pointer-events: none;
}

.why-v2__badge {
  position: absolute;
  background: #fff;
  border-radius: var(--r);
  padding: 13px 17px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 168px;
  z-index: 2;
}
.why-v2__badge--a { bottom: -18px; left: -22px; }
.why-v2__badge--b { top: 22px; right: -22px; }
.why-v2__badge__ico {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: var(--teal-l);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; flex-shrink: 0;
}
.why-v2__badge__label { font-size: 0.78rem; font-weight: 700; color: var(--navy); }
.why-v2__badge__sub   { font-size: 0.67rem; color: var(--g500); margin-top: 1px; }

.why-v2__feats { margin-top: 36px; display: flex; flex-direction: column; gap: 0; }
.why-v2__feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--g100);
  transition: background var(--ease);
}
.why-v2__feat:first-child { padding-top: 0; }
.why-v2__feat:last-child  { border-bottom: none; padding-bottom: 0; }
.why-v2__feat-ico {
  width: 46px; height: 46px;
  border-radius: 11px;
  background: var(--teal-l);
  border: 1px solid var(--teal-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; flex-shrink: 0;
}
.why-v2__feat-title { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.why-v2__feat-sub   { font-size: 0.83rem; color: var(--g500); line-height: 1.65; }

/* --- Dark-section overrides (bg-navy) --- */
.bg-navy { background: var(--navy); }
.bg-navy .step-v2__num   { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.16); color: #fff; }
.bg-navy .step-v2:hover .step-v2__num { background: var(--teal); border-color: var(--teal); }
.bg-navy .step-v2__title { color: #fff; }
.bg-navy .step-v2__desc  { color: rgba(255,255,255,0.62); }
.bg-navy .steps-v2::before { background: linear-gradient(90deg, var(--teal), rgba(43,188,212,0.15)); }

/* --- Steps v2 (how it works) --- */
.steps-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.steps-v2::before {
  content: '';
  position: absolute;
  top: 35px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--teal), rgba(43,188,212,0.15));
  z-index: 0;
}
.step-v2 {
  text-align: center;
  padding: 0 18px;
  position: relative; z-index: 1;
}
.step-v2__num {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--g200);
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  box-shadow: var(--shadow);
  transition: all 0.32s ease;
  position: relative;
}
.step-v2__num::after {
  content: '';
  position: absolute; inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  opacity: 0;
  transform: scale(1.15);
  transition: all 0.32s ease;
}
.step-v2:hover .step-v2__num {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  box-shadow: 0 8px 28px rgba(43,188,212,0.36);
}
.step-v2__title { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-v2__desc  { font-size: 0.82rem; color: var(--g500); line-height: 1.68; }

/* --- Results v2 --- */
.results-v2__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.result-v2 {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 24px;
  border: 1px solid var(--g200);
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}
.result-v2::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), #7ee8f5);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
}
.result-v2:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.result-v2:hover::before { transform: scaleX(1); }
.result-v2__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.result-v2__av {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.88rem;
  color: #fff; flex-shrink: 0;
}
.result-v2__score     { text-align: right; }
.result-v2__score-num { font-size: 1.75rem; font-weight: 800; color: var(--navy); line-height: 1; }
.result-v2__score-lbl { font-size: 0.63rem; color: var(--g400); text-transform: uppercase; letter-spacing: 0.09em; }
.result-v2__name  { font-size: 0.92rem; font-weight: 700; color: var(--navy); }
.result-v2__prog  { font-size: 0.74rem; color: var(--teal-d); font-weight: 600; margin: 3px 0 10px; }
.result-v2__stars { display: flex; gap: 1px; margin-bottom: 10px; }
.result-v2__stars span { color: #fbbf24; font-size: 0.85rem; }
.result-v2__quote { font-size: 0.82rem; color: var(--g500); line-height: 1.68; font-style: italic; }

/* --- Responsive: new homepage sections --- */
@media (max-width: 1024px) {
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .photo-row  { grid-template-columns: 1fr; }
  .photo-grid .photo-card { aspect-ratio: 4/3; }

  .proof-bar__inner { grid-template-columns: 1fr 1fr; }
  .proof-item        { padding: 24px 20px; border-bottom: 1px solid var(--g200); }
  .proof-item:nth-child(2) { border-right: none; }
  .proof-item:nth-child(3) { border-top: none; }
  .proof-item:nth-child(4) { border-top: none; border-right: none; }

  .why-v2__inner  { grid-template-columns: 1fr; }
  .why-v2__photo  { display: none; }

  .steps-v2 { grid-template-columns: 1fr 1fr; gap: 28px; }
  .steps-v2::before { display: none; }

  .results-v2__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .photo-grid { grid-template-columns: 1fr; }
  .photo-row  { grid-template-columns: 1fr; }
  .photo-grid .photo-card { aspect-ratio: 4/3; }
  .photo-card__sub { display: none; }

  .proof-bar__inner { grid-template-columns: 1fr 1fr; }
  .proof-item { padding: 20px 14px; }

  .steps-v2 { grid-template-columns: 1fr 1fr; }

  .results-v2__grid { grid-template-columns: 1fr; }

  .hero--split .hero__inner { padding: 36px 0 52px; }
}
@media (max-width: 480px) {
  .proof-bar__inner { grid-template-columns: 1fr 1fr; }
  .steps-v2 { grid-template-columns: 1fr; }
  .photo-card__cta { opacity: 1; transform: none; }
  .photo-card__sub { max-height: none; opacity: 1; margin-bottom: 12px; }
  .proof-item__num { font-size: 2rem; }
  .hero__title { font-size: clamp(1.7rem, 6vw, 2.4rem); }
}

/* ============================================
   MOBILE POLISH — touch targets, spacing, type
   ============================================ */
@media (max-width: 768px) {
  /* Touch targets */
  .btn, .btn-navy, .btn-outline, .btn-outline-white,
  .nb-cta, .testimonials__dot {
    min-height: 44px;
  }
  .testimonials__arrow { width: 38px; height: 38px; font-size: 1.2rem; }

  /* Section spacing */
  .section { padding: 52px 0; }
  .section--lg { padding: 64px 0; }

  /* Typography scale-down */
  .section-title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .hero__title   { font-size: clamp(1.8rem, 6.5vw, 2.6rem); }
  .hero__sub     { font-size: 0.95rem; }

  /* Hero actions stack */
  .hero__actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero__actions .btn,
  .hero__actions .btn-navy,
  .hero__actions .btn-outline { width: 100%; justify-content: center; }

  /* Hero trust row wrap */
  .hero__trust { flex-wrap: wrap; gap: 12px; }

  /* Photo cards always show CTA on touch */
  .photo-card__cta { opacity: 1; transform: translateY(0); }

  /* Steps */
  .step-v2 { padding: 22px 18px; }

  /* Results */
  .result-v2 { padding: 22px 20px; }

  /* Proof bar */
  .proof-item__num  { font-size: 2.2rem; }
  .proof-item__label { font-size: 0.75rem; }

  /* CTA banner */
  .cta-banner__inner { gap: 20px; }
  .cta-banner__btns  { flex-direction: column; width: 100%; }
  .cta-banner__btns .btn,
  .cta-banner__btns .btn-navy,
  .cta-banner__btns .btn-outline,
  .cta-banner__btns .btn-outline-white { width: 100%; justify-content: center; }

  /* Footer */
  .footer { text-align: left; }
  .footer__brand { max-width: 100%; }

  /* Contact/form */
  .contact-sidebar { display: none; }

  /* No horizontal overflow */
  body { overflow-x: hidden; }
}

@media (max-width: 480px) {
  /* Navbar */
  .nb-logo__name { font-size: 1rem; }
  .nb-logo__sub  { display: none; }

  /* Announce bar tighter */
  .announce-bar { font-size: 0.72rem; padding: 0 12px; }

  /* Sections even tighter */
  .section { padding: 40px 0; }
  .section--lg { padding: 52px 0; }
  .section-title { font-size: 1.5rem; }

  /* Tags */
  .tag { font-size: 0.68rem; padding: 5px 12px; }

  /* Testimonials full-bleed */
  .testimonials__arrow { display: none; }
  .testimonial-card { padding: 20px 16px; }
  .testimonial-card__quote { font-size: 0.88rem; }

  /* Footer tighter */
  .footer { padding: 40px 0 24px; }
  .footer__bottom { gap: 8px; font-size: 0.78rem; }

  /* Why feats */
  .why-v2__feats { gap: 16px; }
  .why-v2__feat  { padding: 14px 16px; }
}
