:root {
  --ink: #17211f;
  --muted: #596a66;
  --paper: #fffaf0;
  --line: #e5dcc8;
  --deep: #12342e;
  --green: #07835f;
  --gold: #f4b83a;
  --coral: #e85f45;
  --blue: #176da5;
  --mint: #dff7ec;
  --sun: #fff1c7;
  --rose: #ffe4dc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(18, 52, 46, 0.16);
  --soft-shadow: 0 16px 42px rgba(18, 52, 46, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(244, 184, 58, 0.18), transparent 34rem),
    radial-gradient(circle at 88% 12%, rgba(232, 95, 69, 0.14), transparent 28rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.page-lock {
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-elevated {
  color: var(--ink);
  background: rgba(251, 250, 245, 0.94);
  box-shadow: 0 10px 30px rgba(18, 52, 46, 0.12);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.site-header.is-elevated .brand-mark,
.site-header.is-menu-open .brand-mark {
  border-color: rgba(18, 52, 46, 0.16);
  box-shadow: 0 10px 24px rgba(18, 52, 46, 0.14);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 250px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  opacity: 0.72;
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: clamp(12px, 2vw, 28px);
  font-size: 14px;
}

.mobile-nav-cta,
.menu-toggle {
  display: none;
}

.menu-toggle {
  position: relative;
  z-index: 12;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 750;
}

.header-cta {
  padding: 0 18px;
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(232, 95, 69, 0.28);
}

.hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1800&q=82");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 31, 28, 0.93), rgba(9, 31, 28, 0.69) 48%, rgba(9, 31, 28, 0.22)),
    radial-gradient(circle at 22% 72%, rgba(244, 184, 58, 0.28), transparent 24rem);
}

.hero-content {
  position: relative;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 132px 0 42px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  border: 0;
  padding: 0 22px;
  cursor: pointer;
  font: inherit;
}

.button.primary {
  background: linear-gradient(135deg, var(--coral), #f4a23a);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(232, 95, 69, 0.3);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 780px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.hero-stats div {
  padding: 16px 18px;
  background: rgba(9, 31, 28, 0.28);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 18px;
}

.hero-stats span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: linear-gradient(90deg, #12342e, #0a6d5a, #176da5);
  color: var(--white);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 76px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
  line-height: 1.25;
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--gold);
}

.trust-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.trust-item > span:last-child {
  max-width: 210px;
}

.seo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.seo-strip div {
  padding: 18px clamp(16px, 2vw, 24px);
  background: #ffffff;
}

.seo-strip strong,
.seo-strip span {
  display: block;
}

.seo-strip strong {
  color: var(--deep);
  font-size: 15px;
  line-height: 1.25;
}

.seo-strip span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.section {
  padding: clamp(48px, 6vw, 78px) clamp(20px, 4vw, 56px);
}

.parent-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  background: var(--white);
}

.parent-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.parent-grid {
  display: grid;
  gap: 14px;
}

.parent-grid article {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #fff7e4);
  box-shadow: var(--soft-shadow);
}

.parent-grid strong,
.parent-grid span {
  display: block;
}

.parent-grid strong {
  margin-bottom: 8px;
  color: var(--deep);
  font-size: 20px;
}

.parent-grid span {
  color: var(--muted);
  line-height: 1.6;
}

.academic-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.74), rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at 88% 18%, rgba(23, 109, 165, 0.14), transparent 24rem);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 24px;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p,
.method-content p,
.results-copy p,
.cta-section p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.program-grid,
.faculty-grid,
.enrichment-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  gap: 18px;
}

.program-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.program-card,
.faculty-card,
.enrichment-grid article,
.quote-panel,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 50px rgba(18, 52, 46, 0.08);
}

.program-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.program-card.featured {
  background: linear-gradient(145deg, #12342e, #0b7158);
  color: var(--white);
  box-shadow: var(--shadow);
}

.program-card:nth-child(2) {
  background: linear-gradient(180deg, #ffffff, #f0f8ff);
}

.program-card:nth-child(3) {
  background: linear-gradient(180deg, #ffffff, #fff1e7);
}

.program-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--coral), var(--gold), var(--green));
}

.service-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 54px;
  margin-bottom: 18px;
}

.service-number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  background: var(--deep);
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
}

.program-card.featured .service-number {
  background: var(--gold);
  color: #211706;
}

.card-topline {
  margin-bottom: 0;
  color: var(--coral);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
  text-align: right;
  text-transform: uppercase;
}

.program-card.featured .card-topline {
  color: var(--gold);
}

.program-card h3,
.faculty-card h3,
.enrichment-grid h3 {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.15;
}

.program-card p,
.program-card li,
.faculty-card p,
.enrichment-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.program-card p {
  margin-bottom: 0;
}

.program-card.featured p,
.program-card.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.program-card ul {
  margin: 18px 0 20px;
  padding-left: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: flex-start;
  margin: 14px 0 0;
}

.service-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(18, 52, 46, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--deep);
  font-size: 13px;
  font-weight: 820;
}

.program-card.featured .service-tags span {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: auto;
  padding: 0 15px;
  border-radius: 8px;
  background: var(--deep);
  color: var(--white);
  font-weight: 800;
}

.program-card.featured .card-link {
  background: var(--gold);
  color: #231807;
}

.outcomes-section {
  background:
    linear-gradient(135deg, #0d2d28, #155f78),
    var(--deep);
  color: var(--white);
}

.outcomes-section .eyebrow,
.outcomes-section h2 {
  color: var(--white);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.outcomes-grid div {
  min-height: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.outcomes-grid strong,
.outcomes-grid span {
  display: block;
}

.outcomes-grid strong {
  margin-bottom: 10px;
  font-size: 22px;
}

.outcomes-grid span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.method-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  background: linear-gradient(135deg, var(--mint), #f8fbff);
}

.method-image img {
  aspect-ratio: 4 / 5;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.method-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.method-list div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid #cad8cf;
}

.method-list strong {
  color: var(--deep);
}

.method-list span {
  color: var(--muted);
  line-height: 1.55;
}

.lms-layout {
  grid-template-columns: minmax(320px, 1fr) repeat(2, minmax(220px, 0.8fr));
}

.lms-dashboard {
  grid-row: span 2;
  padding: 0;
}

.lms-dashboard .service-card-head {
  padding: 24px 24px 0;
}

.lms-window-bar {
  display: flex;
  gap: 7px;
  margin-top: 18px;
  padding: 14px 18px;
  background: var(--deep);
}

.lms-window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.lms-window-bar span:nth-child(2) {
  background: var(--coral);
}

.lms-window-bar span:nth-child(3) {
  background: var(--green);
}

.lms-dashboard-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.lms-dashboard-head h3 {
  margin-bottom: 4px;
}

.lms-dashboard-head p,
.lms-dashboard-head strong,
.schedule-list small {
  display: block;
}

.lms-dashboard-head p,
.schedule-list small {
  color: var(--muted);
}

.lms-dashboard-head strong {
  color: var(--green);
  font-size: 15px;
  text-align: right;
}

.schedule-list {
  display: grid;
  gap: 12px;
  padding: 22px 24px 24px;
}

.schedule-list div {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(18, 52, 46, 0.1);
  border-radius: 8px;
  background: #fbfaf5;
}

.schedule-list span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.schedule-list strong {
  color: var(--ink);
}

.lms-feature-card {
  min-height: 230px;
}

.lms-feature-card .service-number {
  width: 46px;
  height: 46px;
  flex-basis: 46px;
  font-size: 15px;
}

.lms-feature-card h3 {
  font-size: 21px;
}

.lms-dashboard-fallback {
  display: none;
}

.results-section {
  display: block;
  background:
    linear-gradient(135deg, rgba(18, 52, 46, 0.96), rgba(23, 109, 165, 0.84)),
    var(--deep);
  color: var(--white);
  overflow: hidden;
}

.feedback-heading {
  max-width: 940px;
  margin-bottom: 34px;
}

.feedback-heading h2,
.feedback-heading p,
.feedback-heading .eyebrow {
  color: var(--white);
}

.feedback-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.quote-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 min(420px, 84vw);
  min-height: 250px;
  padding: clamp(22px, 3vw, 30px);
  background: linear-gradient(180deg, #fff8e9, #ffffff);
}

.quote-panel::before {
  content: "\"";
  position: absolute;
  top: 16px;
  right: 26px;
  color: rgba(232, 95, 69, 0.18);
  font-family: Georgia, serif;
  font-size: 90px;
  line-height: 1;
}

.quote {
  position: relative;
  color: var(--ink);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.35;
}

.review-card {
  min-height: 500px;
}

.review-card::before {
  display: none;
}

.review-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 390px;
  margin-bottom: 14px;
  border: 1px solid rgba(18, 52, 46, 0.1);
  border-radius: 8px;
  background: #ffffff;
  object-fit: contain;
  object-position: top center;
}

.review-card .quote {
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.4;
}

.review-text-frame {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 390px;
  margin-bottom: 14px;
  padding: 24px;
  border: 1px solid rgba(18, 52, 46, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 233, 0.96)),
    #ffffff;
}

.review-text-frame span {
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-text-frame .quote {
  margin: 0;
}

.quote-name {
  margin-top: auto;
  padding-top: 18px;
  color: var(--green);
  font-weight: 850;
}

.results-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.swipe-panel {
  max-width: 1180px;
  margin: 0 auto;
  min-width: 0;
}

.swipe-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.swipe-heading span {
  color: var(--white);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.swipe-controls {
  display: flex;
  gap: 8px;
}

.swipe-controls button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.swipe-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 4px 22px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

.swipe-track > * {
  scroll-snap-align: start;
}

.swipe-track::-webkit-scrollbar {
  height: 10px;
}

.swipe-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.swipe-track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 999px;
}

.faculty-section {
  background:
    linear-gradient(180deg, #ffffff, #fff6e9),
    var(--white);
}

.faculty-section .section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.faculty-swipe-panel {
  max-width: 1180px;
  margin: 0 auto;
}

.faculty-swipe-panel .swipe-heading span {
  color: var(--deep);
}

.faculty-swipe-panel .swipe-controls button {
  border-color: #cdded8;
  background: var(--deep);
}

.faculty-grid {
  grid-template-columns: repeat(3, 1fr);
}

.faculty-card {
  flex: 0 0 min(340px, 82vw);
  overflow: hidden;
}

.faculty-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #eef4ef;
  object-fit: cover;
  object-position: 50% 24%;
}

.faculty-card .teacher-photo-diana {
  object-position: 50% 18%;
}

.faculty-card .teacher-photo-fit {
  padding: 0;
  background: #eef4ef;
  object-fit: cover;
  object-position: 50% 28%;
}

.faculty-card .teacher-photo-fit-tall {
  object-position: 50% 36%;
}

.faculty-card .teacher-photo-studio {
  background: #eef4ef;
  object-fit: cover;
  object-position: 50% 30%;
}

.faculty-card .teacher-photo-vineet-new {
  object-position: 50% 14%;
}

.faculty-card .teacher-photo-umama-new {
  object-position: 50% 19%;
}

.faculty-card .teacher-photo-diana-new {
  object-position: 42% 22%;
}

.faculty-card .teacher-photo-persida-new {
  object-position: 50% 24%;
}

.faculty-card .teacher-photo-sheema-new {
  object-position: 50% 20%;
}

.faculty-card .teacher-photo-soft-crop {
  padding: 0;
  object-fit: cover;
  object-position: 50% 8%;
}

.faculty-card .teacher-photo-center {
  object-position: 50% 34%;
}

.faculty-card .teacher-photo-center-low {
  object-position: 50% 46%;
}

.faculty-card .teacher-photo-low {
  object-position: 50% 62%;
}

.faculty-card div {
  padding: 20px;
}

.enrichment-section {
  background: #f4efe6;
}

.enrichment-grid {
  grid-template-columns: repeat(3, 1fr);
}

.enrichment-grid article {
  overflow: hidden;
}

.enrichment-grid img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.enrichment-grid h3,
.enrichment-grid p {
  padding-inline: 22px;
}

.enrichment-grid h3 {
  margin-top: 18px;
}

.enrichment-grid p {
  padding-bottom: 18px;
}

.media-section {
  background: #ffffff;
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(20px, 4vw, 38px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
}

.student-video-grid {
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
  align-items: stretch;
}

.student-reel-wall {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  min-height: 100%;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(18, 52, 46, 0.08), rgba(255, 250, 240, 0.94)),
    var(--white);
  box-shadow: var(--soft-shadow);
}

.reel-panel-copy {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 0;
}

.reel-panel-copy span,
.reel-panel-copy strong {
  display: block;
}

.reel-panel-copy span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reel-panel-copy strong {
  color: var(--deep);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.18;
  text-align: right;
}

.limelight-media-pair {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(320px, 1.05fr) minmax(220px, 0.75fr);
  gap: 12px;
  min-height: 0;
}

.video-feature {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.video-feature img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 52, 46, 0.68), rgba(18, 52, 46, 0.06));
}

.reel-feature {
  display: grid;
  width: 100%;
  min-height: 0;
  margin: 0;
  aspect-ratio: auto;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(18, 52, 46, 0.08), rgba(32, 143, 102, 0.1)),
    #eef4ef;
}

.reel-feature iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.reel-mobile-fallback {
  display: none;
}

.reel-feature::after {
  display: none;
}

.award-feature {
  position: relative;
  min-height: 100%;
  height: auto;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #eef4ef;
  box-shadow: var(--soft-shadow);
}

.award-feature img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.award-feature figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(18, 52, 46, 0.82);
  color: var(--white);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
}

.reel-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.reel-tile {
  display: flex;
  min-height: 88px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 13px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 52, 46, 0.9), rgba(32, 143, 102, 0.86)),
    var(--green);
  color: var(--white);
  text-decoration: none;
  box-shadow: var(--soft-shadow);
}

.reel-tile span,
.reel-tile strong {
  display: block;
}

.reel-tile span {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reel-tile strong {
  font-size: 14px;
  line-height: 1.2;
}

.youtube-tile {
  background:
    linear-gradient(135deg, rgba(177, 39, 39, 0.94), rgba(18, 52, 46, 0.86)),
    #b12727;
}

.reel-tile:hover {
  transform: translateY(-2px);
}

.play-mark {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-weight: 850;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.media-copy h3 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
}

.media-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.student-value-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.94), rgba(238, 244, 239, 0.96)),
    var(--white);
  box-shadow: var(--soft-shadow);
}

.value-kicker {
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.student-value-card h3 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 40px);
}

.student-value-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.student-value-list div {
  padding: 15px;
  border: 1px solid rgba(18, 52, 46, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.student-value-list strong,
.student-value-list span {
  display: block;
}

.student-value-list strong {
  margin-bottom: 7px;
  color: var(--deep);
  font-size: 15px;
}

.student-value-list span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.video-link {
  align-self: flex-start;
  margin-top: 24px;
  color: var(--green);
  font-weight: 850;
  text-decoration: none;
}

.video-link:hover {
  color: var(--deep);
}

.media-points {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.media-points span {
  padding: 13px 15px;
  border-left: 4px solid var(--green);
  background: #eef4ef;
  color: var(--deep);
  font-weight: 760;
}

.media-points a {
  color: inherit;
  text-decoration: none;
}

.media-points a:hover {
  color: var(--green);
}

.enrollment-section {
  background: linear-gradient(180deg, #fffaf0, #ffffff);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.steps-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.steps-grid span,
.steps-grid strong {
  display: block;
}

.steps-grid span {
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.steps-grid strong {
  margin-bottom: 10px;
  color: var(--deep);
  font-size: 21px;
}

.steps-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.faq-section {
  background: #f4fbf8;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid #cfe2dc;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.faq-list summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--deep);
  font-weight: 850;
  list-style-position: inside;
}

.faq-list p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-media-answer {
  display: grid;
  grid-template-columns: minmax(140px, 0.42fr) 1fr;
  gap: 16px;
  align-items: center;
  padding: 0 18px 16px;
}

.faq-media-answer img {
  width: 100%;
  max-height: 180px;
  border-radius: 8px;
  object-fit: contain;
  background: #f7fbf8;
}

.faq-media-answer p {
  padding: 0;
}

.faq-answer-copy {
  display: grid;
  gap: 10px;
}

.faq-answer-copy p {
  padding: 0;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(18, 52, 46, 0.92), rgba(23, 109, 165, 0.84)),
    url("https://images.unsplash.com/photo-1503676260728-1c00da094a0b?auto=format&fit=crop&w=1800&q=78");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.cta-section h2,
.cta-section .eyebrow {
  color: var(--white);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.82);
}

.cta-copy {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.cta-image-card {
  display: grid;
  grid-template-columns: minmax(120px, 0.85fr) minmax(170px, 1.15fr);
  gap: 12px;
  align-items: stretch;
  flex: 1;
  min-height: 300px;
  overflow: hidden;
  margin: 22px 0 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.cta-image-wrap {
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 100%;
  border-radius: 8px;
  background: #ffffff;
}

.cta-image-wrap img {
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cta-outcomes {
  display: grid;
  align-content: center;
  gap: 7px;
}

.cta-outcomes div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  align-items: center;
  min-height: 38px;
  padding: 7px 9px;
  border-radius: 8px;
  background: #f4fbf8;
}

.cta-outcomes span {
  display: grid;
  place-items: center;
  height: 28px;
  width: 28px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.cta-outcomes strong {
  color: var(--deep);
  font-size: 14px;
  line-height: 1.2;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.96);
}

label {
  display: grid;
  gap: 8px;
  color: var(--deep);
  font-size: 14px;
  font-weight: 760;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cdd8d1;
  border-radius: 8px;
  padding: 13px 14px;
  background: #ffffff;
  color: var(--ink);
  font-size: 16px;
}

textarea {
  resize: vertical;
}

.lead-form .button {
  width: 100%;
}

.footer {
  background: #0b211d;
  color: rgba(255, 255, 255, 0.76);
}

.footer-main {
  padding: 34px clamp(20px, 4vw, 56px) 26px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 24px;
}

.footer-brand img {
  width: 76px;
  height: 76px;
  padding: 4px;
  border-radius: 8px;
  background: var(--white);
  object-fit: contain;
}

.footer strong,
.footer h3 {
  color: var(--white);
}

.footer h3 {
  margin: 0 0 10px;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer .presence-title {
  margin-top: 18px;
}

.footer p {
  margin: 6px 0 0;
  line-height: 1.55;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 26px;
}

.footer a {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
}

.footer-icon-link {
  display: flex !important;
  align-items: center;
  gap: 9px;
  margin-bottom: 9px !important;
}

.footer-icon,
.social-links span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.whatsapp-icon {
  background: #25d366;
  color: #072315;
}

.viber-icon {
  background: #7360f2;
  color: #ffffff;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 6px 10px 6px 7px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.social-links a:nth-child(1) span {
  background: #1877f2;
}

.social-links a:nth-child(2) span {
  background: #e4405f;
}

.social-links a:nth-child(3) span {
  background: #0a66c2;
}

.social-links a:nth-child(4) span {
  background: #ff0000;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
  font-size: 13px;
}

.footer-legal p {
  max-width: 780px;
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    position: fixed;
    align-items: center;
    color: var(--ink);
    background: rgba(251, 250, 245, 0.96);
    box-shadow: 0 10px 30px rgba(18, 52, 46, 0.12);
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .nav {
    position: fixed;
    top: 92px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    max-height: calc(100vh - 112px);
    overflow-y: auto;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-header.is-menu-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 12px;
    border-radius: 8px;
    color: var(--ink);
    font-size: 16px;
    font-weight: 760;
  }

  .nav a:active {
    background: #eef4ef;
  }

  .mobile-nav-cta {
    display: flex;
    justify-content: center;
    margin-top: 8px;
    background: var(--green);
    color: var(--white) !important;
  }

  .program-grid,
  .faculty-grid,
  .enrichment-grid,
  .media-grid,
  .parent-section,
  .method-section,
  .results-section,
  .cta-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .student-video-grid {
    max-width: 760px;
  }

  .reel-feature {
    aspect-ratio: 16 / 10;
  }

  .reel-panel-copy strong {
    text-align: left;
  }

  .footer-legal {
    display: block;
  }

  .footer-legal p + p {
    margin-top: 10px;
  }

  .program-card {
    min-height: auto;
  }

  .program-card h3,
  .program-card p,
  .service-tags {
    min-height: 0;
  }

  .card-topline {
    text-align: left;
  }

  .outcomes-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .trust-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item {
    justify-content: flex-start;
    text-align: left;
  }

  .footer a {
    text-align: left;
  }

  .hero-content {
    padding-top: 118px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
    padding: 4px;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-content {
    width: min(100% - 32px, 980px);
    padding-top: 112px;
    padding-bottom: 28px;
  }

  .reel-feature {
    width: 100%;
    aspect-ratio: 9 / 12;
    height: auto;
    min-height: 360px;
    max-height: 500px;
    background: #eef4ef;
    box-shadow: var(--shadow);
  }

  .reel-feature iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
  }

  .reel-mobile-fallback {
    display: none;
  }

  .reel-panel-copy {
    display: block;
  }

  .reel-panel-copy strong {
    margin-top: 8px;
    font-size: 20px;
    line-height: 1.2;
  }

  .limelight-media-pair {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 8px;
  }

  .award-feature {
    min-height: 0;
    height: auto;
  }

  .award-feature img {
    display: block;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .reel-tile-grid {
    grid-template-columns: 1fr;
  }

  .student-value-list {
    grid-template-columns: 1fr;
  }

  .student-value-card {
    padding: 22px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(9, 31, 28, 0.62), rgba(9, 31, 28, 0.9)),
      radial-gradient(circle at 42% 72%, rgba(244, 184, 58, 0.22), transparent 18rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-stats,
  .trust-band,
  .seo-strip {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 68px;
  }

  .trust-item > span:last-child {
    max-width: none;
  }

  .method-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .section {
    padding-inline: 16px;
  }

  .service-card-head {
    align-items: flex-start;
  }

  .service-number {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    font-size: 16px;
  }

  .quote-panel {
    min-height: 230px;
  }

  .cta-image-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .faq-media-answer {
    grid-template-columns: 1fr;
  }

  .cta-image-wrap {
    min-height: 180px;
  }

  .swipe-heading {
    align-items: flex-start;
  }

  .swipe-heading span {
    max-width: 190px;
  }

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

  .outcomes-grid div {
    min-height: auto;
  }

  h1 {
    font-size: clamp(40px, 13vw, 54px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(30px, 10vw, 42px);
  }
}

@supports not (min-height: 100svh) {
  @media (max-width: 640px) {
    .hero {
      min-height: 86vh;
    }
  }
}

@media (max-width: 380px) {
  .brand-mark {
    width: 52px;
    height: 52px;
    padding: 3px;
  }

  .brand strong {
    font-size: 15px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .hero-copy,
  .section-heading p,
  .method-content p,
  .results-copy p,
  .cta-section p,
  .media-copy p {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
