:root {
  /* Vivac green palette (matches existing logo) */
  --v-50:  #F0FDF4;
  --v-100: #DCFCE7;
  --v-200: #BBF7D0;
  --v-300: #86EFAC;
  --v-400: #4ADE80;
  --v-500: #22C55E;
  --v-600: #16A34A;
  --v-700: #15803D;
  --v-800: #166534;
  --v-900: #14532D;
  --v-950: #052E16;

  /* Warm accent (used very sparingly) */
  --gold-100: #FEF3C7;
  --gold-500: #F59E0B;
  --gold-600: #D97706;

  /* Neutrals */
  --gray-50:  #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  --display: "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1240px;
  --gutter: clamp(1rem, 3vw, 1.75rem);

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow:    0 4px 16px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 32px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 56px rgba(15, 23, 42, 0.12);
  --shadow-v:  0 16px 40px rgba(21, 128, 61, 0.22);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: #FFFFFF;
  color: var(--gray-800);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--v-200); color: var(--v-900); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.wrap { max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

/* ============ NAV ============ */
nav.top {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border-bottom: 1px solid var(--gray-100);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 44px; width: auto; }
@media (min-width: 720px) { .nav-logo img { height: 50px; } }

.nav-links {
  display: none; gap: 1.8rem; list-style: none;
}
.nav-links a {
  font-family: var(--body); font-size: 14px; font-weight: 500;
  color: var(--gray-600); transition: color 0.18s; padding: 6px 0;
  position: relative;
}
.nav-links a:hover { color: var(--v-700); }
@media (min-width: 980px) { .nav-links { display: flex; } }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-login {
  font-family: var(--body); font-size: 13.5px; font-weight: 500;
  color: var(--gray-700); display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px; border-radius: 8px;
  transition: all 0.2s ease;
}
.nav-login:hover { color: var(--v-700); background: var(--v-50); }
.nav-login svg { opacity: 0.7; transition: transform 0.2s; }
.nav-login:hover svg { transform: translate(2px, -2px); opacity: 1; }
@media (max-width: 540px) { .nav-login { display: none; } }

.nav-cta {
  font-family: var(--body); font-size: 14px; font-weight: 600;
  background: var(--v-600); color: #fff;
  padding: 10px 18px; border-radius: 10px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 4px 12px rgba(22, 163, 74, 0.22);
}
.nav-cta:hover { background: var(--v-700); box-shadow: var(--shadow-v); transform: translateY(-1px); }
.nav-cta .pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--v-200);
  display: inline-block; position: relative;
}
.nav-cta .pulse::after {
  content: ""; position: absolute; inset: -3px; border-radius: 50%;
  background: var(--v-300); opacity: 0.5; animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* ============ HERO ============ */
.hero {
  position: relative; padding: clamp(2rem, 5vw, 4rem) 0 clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, var(--v-50) 0%, rgba(255,255,255,1) 75%);
}
.hero::after {
  content: ""; position: absolute; top: -10%; right: -8%;
  width: 540px; height: 540px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.18) 0%, transparent 65%);
  filter: blur(40px); z-index: -1; pointer-events: none;
}

.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center;
}
@media (min-width: 920px) {
  .hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 3.5rem; }
}

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--v-700);
  font-family: var(--body); font-size: 12.5px; font-weight: 600;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--v-200);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.4rem;
}
.badge .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--v-500);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

h1.hero-h {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  line-height: 1.05; letter-spacing: -0.025em;
  color: var(--gray-900); margin-bottom: 1.2rem;
}
h1.hero-h .accent { color: var(--v-700); position: relative; white-space: nowrap; }
h1.hero-h .accent::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.08em;
  height: 0.18em; background: var(--v-100); z-index: -1;
}

.hero-sub {
  font-family: var(--body); font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: var(--gray-600); line-height: 1.6; max-width: 56ch;
  margin-bottom: 1.8rem;
}
.hero-sub strong { color: var(--gray-900); font-weight: 600; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 1.5rem; }

.hero-quiz {
  font-family: var(--body); font-size: 13.5px; color: var(--gray-600);
  margin-top: 0.9rem; margin-bottom: 1.5rem;
}
.hero-quiz a {
  color: var(--v-700); font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
  margin-left: 4px; padding-bottom: 1px;
  border-bottom: 1px solid var(--v-300);
  transition: all 0.2s;
}
.hero-quiz a:hover { color: var(--v-800); border-bottom-color: var(--v-600); }
.hero-quiz a svg { transition: transform 0.2s; opacity: 0.7; }
.hero-quiz a:hover svg { transform: translate(2px, -2px); opacity: 1; }

.btn {
  font-family: var(--body); font-size: 14.5px; font-weight: 600;
  padding: 13px 22px; border-radius: 12px;
  display: inline-flex; align-items: center; gap: 9px;
  transition: all 0.2s ease; border: 1px solid;
  cursor: pointer;
}
.btn-primary {
  background: var(--v-600); color: #fff; border-color: var(--v-600);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 6px 14px rgba(22, 163, 74, 0.22);
}
.btn-primary:hover { background: var(--v-700); border-color: var(--v-700); box-shadow: var(--shadow-v); transform: translateY(-1px); }
.btn-secondary {
  background: #fff; color: var(--gray-800); border-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: var(--v-600); color: var(--v-700); }
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(3px); }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center;
  margin-top: 1.4rem; padding-top: 1.4rem;
  border-top: 1px solid var(--gray-100);
}
.hero-trust-item {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--body); font-size: 13px; color: var(--gray-600);
}
.hero-trust-item svg { width: 18px; height: 18px; color: var(--v-600); flex-shrink: 0; }
.hero-trust-item strong { color: var(--gray-900); font-weight: 600; }

/* Hero visual */
.hero-visual {
  position: relative;
}
.hero-photo-card {
  position: relative; border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; max-height: 540px;
}
.hero-photo-card img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-photo-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.75) 100%);
}
.hero-photo-cap {
  position: absolute; bottom: 22px; left: 22px; right: 22px; color: #fff;
}
.hero-photo-cap .eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.16); backdrop-filter: blur(8px);
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  padding: 5px 10px; border-radius: 999px; margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,0.22);
}
.hero-photo-cap .text {
  font-family: var(--display); font-weight: 600; font-size: 1.15rem;
  line-height: 1.3;
}

.hero-stat-card {
  position: absolute; top: -18px; left: -18px;
  background: #fff; border-radius: 16px; padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--v-100);
}
.hero-stat-card .ring {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--v-100); display: flex; align-items: center; justify-content: center;
  color: var(--v-700);
}
.hero-stat-card .ring svg { width: 22px; height: 22px; }
.hero-stat-card .stat-num {
  font-family: var(--display); font-weight: 700; font-size: 1.5rem; line-height: 1;
  color: var(--gray-900);
}
.hero-stat-card .stat-label {
  font-size: 11px; color: var(--gray-500); margin-top: 3px; font-weight: 500;
}
@media (max-width: 919px) { .hero-stat-card { display: none; } }

.hero-batch-card {
  position: absolute; bottom: -20px; right: -16px;
  background: var(--gray-900); color: #fff;
  border-radius: 14px; padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px;
}
.hero-batch-card .icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--v-500); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-batch-card .icon svg { width: 18px; height: 18px; color: #fff; }
.hero-batch-card .label {
  font-size: 10.5px; color: rgba(255,255,255,0.65); font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.hero-batch-card .value {
  font-family: var(--display); font-weight: 600; font-size: 0.98rem; line-height: 1.2;
  margin-top: 2px;
}
@media (max-width: 919px) { .hero-batch-card { display: none; } }

/* ============ EMPLOYERS STRIP ============ */
.employers {
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--gray-100);
  background: #FCFCFD;
}
.employers-label {
  text-align: center;
  font-family: var(--body); font-size: 12.5px; font-weight: 500;
  color: var(--gray-500); margin-bottom: 1.3rem;
}
.employers-label strong { color: var(--gray-800); font-weight: 600; }
.emp-track-wrap { overflow: hidden; position: relative; }
.emp-track-wrap::before, .emp-track-wrap::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.emp-track-wrap::before { left: 0; background: linear-gradient(to right, #FCFCFD, transparent); }
.emp-track-wrap::after { right: 0; background: linear-gradient(to left, #FCFCFD, transparent); }
.emp-track {
  display: flex; gap: 3rem; align-items: center; white-space: nowrap;
  animation: marquee 55s linear infinite;
}
.emp-track .emp {
  font-family: var(--display); font-weight: 500; font-size: 1.05rem;
  color: var(--gray-600); flex-shrink: 0;
}
.emp-track .dot {
  color: var(--v-300); font-size: 0.7em; flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ SECTION BASE ============ */
section.block { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-head {
  display: flex; flex-direction: column; gap: 0.8rem;
  margin-bottom: 2.5rem; max-width: 720px;
}
.section-eyebrow {
  font-family: var(--body); font-size: 12.5px; font-weight: 600;
  color: var(--v-700); letter-spacing: 0.06em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
}
.section-eyebrow::before {
  content: ""; width: 24px; height: 2px; background: var(--v-500); border-radius: 999px;
}
h2.section-h {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem); line-height: 1.1;
  letter-spacing: -0.02em; color: var(--gray-900);
}
h2.section-h .accent { color: var(--v-700); }
.section-lede {
  font-family: var(--body); font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: var(--gray-600); line-height: 1.55; max-width: 60ch;
}

/* ============ STATS RIBBON ============ */
.stats {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: var(--gray-900); color: #fff;
}
.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem;
}
@media (min-width: 760px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat {
  text-align: center;
}
.stat-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(34, 197, 94, 0.14);
  margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center;
  color: var(--v-300);
}
.stat-icon svg { width: 24px; height: 24px; }
.stat-num {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2rem, 3.6vw, 2.8rem); line-height: 1;
  color: #fff;
}
.stat-num .plus { color: var(--v-400); font-weight: 600; }
.stat-label {
  font-family: var(--body); font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,0.65); margin-top: 0.5rem;
}

/* ============ GUARANTEE SECTION ============ */
.guarantee-block .section-head { max-width: 720px; }
.guarantee-steps {
  display: grid; grid-template-columns: 1fr; gap: 1.4rem;
  margin-top: 0.5rem;
}
@media (min-width: 760px) { .guarantee-steps { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; } }
.g-step {
  background: #fff; border: 1px solid var(--v-100); border-radius: 22px;
  padding: 2rem 1.8rem; position: relative; transition: all 0.25s ease;
}
.g-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--v-200); }
.g-step.featured {
  background: linear-gradient(160deg, var(--v-700) 0%, var(--v-900) 100%);
  border-color: var(--v-700);
  color: #fff;
  box-shadow: var(--shadow-v);
}
.g-step.featured:hover { box-shadow: 0 24px 56px rgba(21,128,61,0.32); }
.g-num {
  font-family: var(--display); font-weight: 700;
  font-size: 2.6rem; line-height: 1;
  color: var(--v-600); margin-bottom: 1.2rem; letter-spacing: -0.02em;
}
.g-step.featured .g-num { color: var(--v-300); }
.g-step h3 {
  font-family: var(--display); font-weight: 700; font-size: 1.3rem;
  line-height: 1.22; margin-bottom: 0.6rem; letter-spacing: -0.01em;
  color: var(--gray-900);
}
.g-step.featured h3 { color: #fff; }
.g-step p {
  font-family: var(--body); font-size: 14.5px; line-height: 1.6;
  color: var(--gray-600);
}
.g-step.featured p { color: rgba(255,255,255,0.88); }
.g-step.featured p strong { color: #fff; font-weight: 700; }
.guarantee-note {
  margin-top: 2rem; padding: 1.2rem 1.4rem; border-radius: 16px;
  background: rgba(255,255,255,0.6); border: 1px solid var(--v-200);
  display: flex; gap: 12px; align-items: flex-start;
  font-family: var(--body); font-size: 14.5px; line-height: 1.55;
  color: var(--gray-700);
}
.guarantee-note svg { width: 22px; height: 22px; color: var(--v-700); flex-shrink: 0; margin-top: 2px; }
.guarantee-note strong { color: var(--gray-900); font-weight: 600; }
.guarantee-cta {
  margin-top: 2rem; display: flex; justify-content: center; flex-wrap: wrap; gap: 10px;
}

/* ============ PROGRAMS ============ */
.programs-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 880px) { .programs-grid { grid-template-columns: 1fr 1fr; gap: 1.6rem; } }

.program-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: 24px;
  padding: 2.2rem 2rem 2rem; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--v-200);
}
.program-card.featured {
  background: linear-gradient(180deg, var(--v-700) 0%, var(--v-800) 100%);
  border-color: var(--v-700);
  color: #fff;
}

.program-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--v-50); color: var(--v-700);
  font-family: var(--body); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; align-self: flex-start;
  margin-bottom: 1.2rem; border: 1px solid var(--v-100);
}
.program-card.featured .program-tag { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.2); }

.program-name {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 1.85rem); line-height: 1.15;
  margin-bottom: 0.45rem; letter-spacing: -0.015em;
}
.program-card.featured .program-name { color: #fff; }
.program-card:not(.featured) .program-name { color: var(--gray-900); }

.program-meta {
  font-family: var(--body); font-size: 13px; font-weight: 500;
  color: var(--gray-500); margin-bottom: 1.2rem;
  display: flex; flex-wrap: wrap; gap: 6px 14px;
}
.program-card.featured .program-meta { color: rgba(255,255,255,0.7); }
.program-meta span { display: inline-flex; align-items: center; gap: 6px; }
.program-meta svg { width: 14px; height: 14px; opacity: 0.7; }

.program-desc {
  font-family: var(--body); font-size: 15px; line-height: 1.55;
  margin-bottom: 1.3rem;
}
.program-card.featured .program-desc { color: rgba(255,255,255,0.86); }
.program-card:not(.featured) .program-desc { color: var(--gray-600); }

.program-modules {
  list-style: none; margin-bottom: 1.4rem;
}
.program-modules li {
  display: flex; gap: 10px; align-items: flex-start; padding: 6px 0;
  font-family: var(--body); font-size: 14px; line-height: 1.5;
}
.program-card.featured .program-modules li { color: rgba(255,255,255,0.92); }
.program-card:not(.featured) .program-modules li { color: var(--gray-700); }
.program-modules li svg {
  width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0;
  color: var(--v-600);
}
.program-card.featured .program-modules li svg { color: var(--v-300); }

.program-fee {
  margin-bottom: 1.2rem; padding: 1rem 1.1rem; border-radius: 14px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
}
.program-card:not(.featured) .program-fee {
  background: var(--gray-50); border-color: var(--gray-200);
}
.fee-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 0.6rem; margin-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.program-card:not(.featured) .fee-row { border-bottom-color: var(--gray-200); }
.fee-label {
  font-family: var(--body); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--v-200);
}
.program-card:not(.featured) .fee-label { color: var(--v-700); }
.fee-amount {
  font-family: var(--display); font-weight: 700; font-size: 1.45rem;
  color: #fff; line-height: 1; letter-spacing: -0.01em;
}
.program-card:not(.featured) .fee-amount { color: var(--gray-900); }
.fee-amount .fee-gst {
  font-family: var(--body); font-size: 0.55em; font-weight: 500;
  color: rgba(255,255,255,0.65); letter-spacing: 0.02em;
}
.program-card:not(.featured) .fee-amount .fee-gst { color: var(--gray-500); }
.fee-emi {
  display: flex; align-items: flex-start; gap: 9px;
  font-family: var(--body); font-size: 12.5px; line-height: 1.45;
  color: rgba(255,255,255,0.78);
}
.program-card:not(.featured) .fee-emi { color: var(--gray-600); }
.fee-emi svg { width: 16px; height: 16px; color: var(--v-300); flex-shrink: 0; margin-top: 1px; }
.program-card:not(.featured) .fee-emi svg { color: var(--v-600); }
.fee-emi strong { color: #fff; font-weight: 600; }
.program-card:not(.featured) .fee-emi strong { color: var(--gray-900); }

.program-outcome {
  margin-top: auto; padding: 1rem 1.1rem; border-radius: 14px;
  background: var(--v-50);
  font-family: var(--body); font-size: 13.5px; line-height: 1.5;
  color: var(--gray-700);
  display: flex; gap: 10px; align-items: flex-start;
}
.program-outcome strong { color: var(--v-800); display: block; font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; font-weight: 600; }
.program-card.featured .program-outcome {
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.16);
}
.program-card.featured .program-outcome strong { color: var(--v-200); }
.program-outcome svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; color: var(--v-600); }
.program-card.featured .program-outcome svg { color: var(--v-300); }

.program-cta {
  margin-top: 1.4rem;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--body); font-size: 14px; font-weight: 600;
  color: var(--v-700);
  border-bottom: 1.5px solid var(--v-700);
  padding-bottom: 3px;
  align-self: flex-start;
  transition: all 0.2s;
}
.program-card.featured .program-cta { color: #fff; border-color: rgba(255,255,255,0.5); }
.program-cta:hover { gap: 12px; }

/* ============ WHY ============ */
.why-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.2rem;
}
@media (min-width: 720px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

.why-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: 20px;
  padding: 1.8rem 1.6rem;
  transition: all 0.25s; position: relative;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--v-200); }
.why-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--v-50);
  display: flex; align-items: center; justify-content: center;
  color: var(--v-700); margin-bottom: 1.2rem;
}
.why-icon svg { width: 26px; height: 26px; }
.why-card h3 {
  font-family: var(--display); font-weight: 600; font-size: 1.2rem;
  line-height: 1.25; color: var(--gray-900); margin-bottom: 0.5rem;
  letter-spacing: -0.005em;
}
.why-card p {
  font-family: var(--body); font-size: 14.5px; line-height: 1.55;
  color: var(--gray-600);
}

/* ============ OUTCOMES ============ */
.outcomes { background: var(--v-50); }
.outcome-aggregate {
  background: #fff; border-radius: 20px; padding: 1.8rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--v-100);
  margin-bottom: 2rem;
}
@media (min-width: 760px) { .outcome-aggregate { grid-template-columns: repeat(4, 1fr); } }
.outcome-pair {
  display: flex; flex-direction: column; gap: 4px;
  padding-right: 1.4rem; border-right: 1px solid var(--gray-100);
}
.outcome-pair:last-child { border-right: none; padding-right: 0; }
@media (max-width: 759px) {
  .outcome-pair:nth-child(2n) { border-right: none; padding-right: 0; }
}
.outcome-pair .num {
  font-family: var(--display); font-weight: 700; font-size: 1.85rem;
  color: var(--gray-900); letter-spacing: -0.015em; line-height: 1;
}
.outcome-pair .num .plus { color: var(--v-600); }
.outcome-pair .lbl {
  font-family: var(--body); font-size: 12.5px; color: var(--gray-500);
  font-weight: 500;
}

.employer-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
}
@media (min-width: 600px) { .employer-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .employer-grid { grid-template-columns: repeat(6, 1fr); } }
.er {
  background: #fff; border-radius: 12px; padding: 14px 12px;
  text-align: center;
  font-family: var(--body); font-size: 13px; font-weight: 500;
  color: var(--gray-700); border: 1px solid var(--gray-100);
  transition: all 0.2s;
}
.er:hover { border-color: var(--v-200); color: var(--v-800); transform: translateY(-1px); }

.privacy-card {
  margin-top: 2.5rem;
  background: #fff; border: 1px solid var(--gray-200); border-radius: 20px;
  padding: 1.8rem;
  display: grid; grid-template-columns: 1fr; gap: 0.8rem;
  position: relative;
}
@media (min-width: 700px) { .privacy-card { grid-template-columns: auto 1fr; gap: 1.6rem; } }
.privacy-card .icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--v-50); color: var(--v-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.privacy-card .icon svg { width: 26px; height: 26px; }
.privacy-card h4 {
  font-family: var(--display); font-weight: 600; font-size: 1.18rem;
  color: var(--gray-900); margin-bottom: 0.4rem;
}
.privacy-card p {
  font-family: var(--body); font-size: 14.5px; line-height: 1.55;
  color: var(--gray-600);
}
.privacy-card p strong { color: var(--gray-900); font-weight: 600; }
.privacy-card .sig {
  margin-top: 0.7rem; font-size: 13px; color: var(--gray-500);
  font-weight: 500;
}

/* ============ FOUNDER ============ */
.founder {
  background: linear-gradient(180deg, #FCFCFD 0%, #FFFFFF 100%);
}
.founder-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center;
}
@media (min-width: 880px) { .founder-grid { grid-template-columns: 0.85fr 1.2fr; gap: 4rem; } }

.founder-photo {
  position: relative; border-radius: 24px; overflow: hidden;
  aspect-ratio: 4/5; max-width: 420px;
  box-shadow: var(--shadow-lg);
}
.founder-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.founder-photo .badge-floating {
  position: absolute; top: 18px; left: 18px;
  background: #fff; border-radius: 999px;
  padding: 6px 14px;
  font-family: var(--body); font-size: 12px; font-weight: 600;
  color: var(--v-700);
  box-shadow: var(--shadow);
  display: inline-flex; align-items: center; gap: 6px;
}
.founder-photo .badge-floating .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--v-500);
}

.founder-body h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem); line-height: 1.08;
  color: var(--gray-900); margin-bottom: 1.4rem;
  letter-spacing: -0.02em;
}
.founder-body h2 .accent { color: var(--v-700); }
.founder-body p {
  font-family: var(--body); font-size: 16px; line-height: 1.6;
  color: var(--gray-600); margin-bottom: 1rem; max-width: 56ch;
}
.founder-body p strong { color: var(--gray-900); font-weight: 600; }
.founder-quote {
  margin: 1.4rem 0;
  padding: 1.1rem 1.4rem;
  background: var(--v-50);
  border-left: 3px solid var(--v-600);
  border-radius: 0 12px 12px 0;
  font-family: var(--display); font-weight: 500; font-style: italic;
  font-size: 1.05rem; line-height: 1.5;
  color: var(--gray-800);
}

.founder-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.6rem;
}
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--gray-200);
  font-family: var(--body); font-size: 13px; font-weight: 500;
  color: var(--gray-700); padding: 8px 14px; border-radius: 999px;
}
.tag svg { width: 14px; height: 14px; color: var(--v-600); }

/* ============ TESTIMONIALS ============ */
.testi-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.2rem;
}
@media (min-width: 760px) { .testi-grid { grid-template-columns: 1fr 1fr 1fr; } }
.testi {
  background: #fff; border: 1px solid var(--gray-200); border-radius: 20px;
  padding: 1.6rem 1.5rem 1.4rem;
  display: flex; flex-direction: column; gap: 0.9rem;
  transition: all 0.25s;
  box-shadow: var(--shadow-sm);
}
.testi:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--v-200); }
.testi .stars {
  display: flex; align-items: center; gap: 4px;
  color: var(--gold-500); font-size: 15px;
}
.testi .stars .label {
  margin-left: 8px; font-family: var(--body); font-size: 11px;
  font-weight: 600; color: var(--gray-500); letter-spacing: 0.06em;
  text-transform: uppercase;
}
.testi-quote {
  font-family: var(--body); font-size: 14.5px; line-height: 1.55;
  color: var(--gray-700); flex: 1;
}
.testi-cite {
  display: flex; align-items: center; gap: 10px;
  padding-top: 0.9rem; border-top: 1px solid var(--gray-100);
}
.testi-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--v-100);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36'><circle cx='18' cy='14' r='5' fill='%2316A34A'/><path d='M9 32c0-5 4-8 9-8s9 3 9 8z' fill='%2316A34A'/></svg>");
  background-size: cover; background-position: center;
  border: 1.5px solid var(--v-200); flex-shrink: 0;
}
.testi-name {
  font-family: var(--body); font-size: 13.5px; font-weight: 600;
  color: var(--gray-900);
}
.testi-source {
  font-size: 11.5px; color: var(--gray-500); font-weight: 500;
}

.reviews-cta {
  margin-top: 2rem; display: flex; flex-direction: column;
  align-items: center; gap: 0.7rem;
}
.reviews-cta a {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; color: var(--gray-800);
  font-family: var(--body); font-size: 14px; font-weight: 600;
  padding: 12px 22px; border-radius: 12px;
  border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.reviews-cta a:hover { border-color: var(--v-600); color: var(--v-700); }
.reviews-cta a svg.g { width: 18px; height: 18px; }

/* ============ FAQ ============ */
.faq-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media (min-width: 880px) { .faq-grid { grid-template-columns: 0.9fr 1.4fr; gap: 4rem; } }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--gray-200); border-radius: 14px;
  padding: 16px 20px;
  transition: all 0.2s;
}
.faq-item[open] { border-color: var(--v-200); box-shadow: var(--shadow-sm); }
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  font-family: var(--display); font-weight: 600; font-size: 1.05rem;
  color: var(--gray-900); line-height: 1.3;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .plus {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--v-50); color: var(--v-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 18px; font-weight: 500;
  transition: all 0.25s;
}
.faq-item[open] .plus { background: var(--v-600); color: #fff; transform: rotate(45deg); }
.faq-item .answer {
  margin-top: 0.9rem;
  font-family: var(--body); font-size: 14.5px; line-height: 1.6;
  color: var(--gray-600);
}

/* ============ CTA FINAL ============ */
.cta-final {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  position: relative;
}
.cta-card {
  background: linear-gradient(135deg, var(--v-700) 0%, var(--v-800) 100%);
  border-radius: 32px;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  color: #fff;
  position: relative; overflow: hidden;
}
.cta-card::before {
  content: ""; position: absolute;
  top: -50%; right: -10%; width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.18), transparent 50%);
  pointer-events: none;
}
.cta-card .badge {
  background: rgba(255,255,255,0.15); color: #fff;
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  margin-bottom: 1.4rem;
}
.cta-card .badge .dot { background: var(--v-300); box-shadow: 0 0 0 3px rgba(74,222,128,0.3); }
.cta-card h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.1;
  margin: 0 auto 1rem; max-width: 22ch;
  letter-spacing: -0.02em;
  position: relative;
}
.cta-card h2 .accent { color: var(--v-200); }
.cta-card p {
  font-family: var(--body); font-size: 1.05rem; line-height: 1.55;
  color: rgba(255,255,255,0.85); max-width: 48ch; margin: 0 auto 2rem;
  position: relative;
}
.cta-card .btns {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  position: relative;
}
.cta-card .btn-primary {
  background: #fff; color: var(--v-800); border-color: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 12px 24px rgba(0,0,0,0.18);
}
.cta-card .btn-primary:hover { background: var(--v-50); color: var(--v-900); }
.cta-card .btn-secondary {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.4);
}
.cta-card .btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); }

/* ============ FOOTER ============ */
footer.bottom {
  background: var(--gray-900); color: rgba(255,255,255,0.7);
  padding: 3.5rem 0 1.6rem;
  font-family: var(--body); font-size: 14px;
}
.foot-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 760px) { .foot-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; } }
.foot-brand .foot-logo {
  background: #fff; padding: 12px 16px; border-radius: 10px;
  display: inline-block; margin-bottom: 1rem;
}
.foot-brand .foot-logo img { height: 40px; width: auto; display: block; }
.foot-brand p {
  font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.65);
  max-width: 36ch; margin-bottom: 1rem;
}
.foot-brand .addr {
  font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5;
}
.foot-col h5 {
  font-family: var(--display); font-weight: 600; font-size: 13px;
  color: #fff; margin-bottom: 1rem; letter-spacing: 0.02em;
}
.foot-col a, .foot-col span {
  display: block; padding: 5px 0;
  font-size: 13.5px; color: rgba(255,255,255,0.65);
  transition: color 0.18s;
}
.foot-col a:hover { color: var(--v-300); }
.foot-bottom {
  padding-top: 1.6rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem;
  font-size: 12.5px; color: rgba(255,255,255,0.45);
}

/* ============ WHATSAPP STICKY ============ */
.wa {
  position: fixed; bottom: 22px; right: 22px; z-index: 95;
  background: var(--v-600); color: #fff;
  padding: 13px 18px; border-radius: 14px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-size: 14px; font-weight: 600;
  box-shadow: var(--shadow-v);
  transition: all 0.25s;
}
.wa:hover { background: var(--v-700); transform: translateY(-2px); box-shadow: 0 20px 40px rgba(21,128,61,0.35); }
.wa svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============ REVEAL ============ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }
}

/* ============ 6-STEP PATHWAY ============ */
.pathway-block { background: linear-gradient(180deg, #FFFFFF 0%, var(--v-50) 100%); }
.pathway {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr; gap: 1rem;
  counter-reset: pathstep;
}
@media (min-width: 720px) { .pathway { grid-template-columns: 1fr 1fr; gap: 1.2rem; } }
@media (min-width: 1040px) { .pathway { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; } }
.pathway-step {
  position: relative; background: #fff;
  border: 1px solid var(--gray-200); border-radius: 18px;
  padding: 1.7rem 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.pathway-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--v-200); }
.pathway-step .step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--v-50); color: var(--v-700);
  font-family: var(--display); font-weight: 700; font-size: 1rem;
  margin-bottom: 0.95rem;
  letter-spacing: -0.01em;
}
.pathway-step h4 {
  font-family: var(--display); font-weight: 600; font-size: 1.12rem;
  color: var(--gray-900); line-height: 1.25; letter-spacing: -0.005em;
  margin-bottom: 0.45rem;
}
.pathway-step p {
  font-family: var(--body); font-size: 14px; line-height: 1.6;
  color: var(--gray-600);
}
.pathway-step.featured {
  background: linear-gradient(160deg, var(--v-700) 0%, var(--v-900) 100%);
  color: #fff; border-color: var(--v-700); box-shadow: var(--shadow-v);
}
.pathway-step.featured .step-num {
  background: rgba(255,255,255,0.18); color: #fff;
}
.pathway-step.featured h4 { color: #fff; }
.pathway-step.featured p { color: rgba(255,255,255,0.85); }

/* ============ NAV DROPDOWN ============ */
.nav-links .has-dropdown { position: relative; }
.nav-dropdown-trigger {
  background: none; border: none; padding: 0; cursor: pointer;
  font: inherit; color: inherit;
  display: inline-flex; align-items: center; gap: 5px;
}
.dropdown-chevron {
  width: 11px; height: 11px; transition: transform 0.2s;
  color: var(--gray-500);
}
.nav-links .has-dropdown:hover .dropdown-chevron,
.nav-links .has-dropdown:focus-within .dropdown-chevron { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: 100%; left: -0.8rem;
  min-width: 290px; padding: 0.5rem;
  background: #fff;
  border: 1px solid var(--gray-200); border-radius: 14px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 110;
}
/* invisible hover bridge so cursor can travel from trigger to dropdown */
.nav-dropdown::before {
  content: ""; position: absolute;
  top: -14px; left: 0; right: 0; height: 14px;
}
.nav-links .has-dropdown:hover .nav-dropdown,
.nav-links .has-dropdown:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(6px);
}
.nav-dropdown a {
  display: block; padding: 0.75rem 0.9rem; border-radius: 9px;
  color: var(--gray-900) !important;
  font-family: var(--body); text-decoration: none;
  transition: background 0.15s;
}
.nav-dropdown a:hover { background: var(--v-50); }
.nav-dropdown a strong {
  display: block; font-family: var(--display); font-weight: 600;
  font-size: 14.5px; color: var(--gray-900); line-height: 1.25;
}
.nav-dropdown a span {
  display: block; font-size: 12.5px; color: var(--gray-500);
  margin-top: 3px; font-weight: 400; letter-spacing: 0;
}

/* ============ PROGRAM CARD — whole-card clickable ============ */
a.program-card {
  text-decoration: none;
  color: inherit;
  display: flex; flex-direction: column;
}
a.program-card:hover { text-decoration: none; }
