:root{
--iem-purple:#2D3091;
--iem-pink:#E91E63;
--iem-gold:#FFD700;
--navy:#3730A3;
--navy-dark:#312E81;
--navy-light:#6366F1;
--gold:#F472B6;
--gold-hover:#DB2777;
--gold-light:#FBCFE8;
--accent-magenta:#DB2777;
--accent-blue:#6366F1;
--white:#F8FAFC;
--off-white:#F1F5F9;
--section-light:#F8FAFC;
--gray-100:#E2E8F0;
--gray-200:#CBD5E1;
--gray-400:#94A3B8;
--gray-600:#64748B;
--gray-800:#1E293B;
--text-dark:#3730A3;
--text-body:#475569;
--ink:#111827;
--surface:#FFFFFF;
--surface-soft:#F8FAFC;
--shadow-sm:0 2px 8px rgba(55,48,163,.08);
--shadow-md:0 4px 20px rgba(55,48,163,.12);
--shadow-lg:0 8px 40px rgba(55,48,163,.16);
--shadow-gold:0 4px 24px rgba(244,114,182,.25);
--glass-bg:rgba(255,255,255,.65);
--glass-blur:blur(10px);
--glass-border:1px solid rgba(255,255,255,.4);
--radius-sm:8px;
--radius-md:16px;
--radius-lg:24px;
--radius-xl:32px;
--section-pad:clamp(40px,6vw,60px);
--card-pad:clamp(20px,4vw,28px);
--gap-grid:clamp(24px,4vw,32px);
--transition:all .3s cubic-bezier(.4,0,.2,1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  color: var(--text-body);
  background: linear-gradient(180deg, #fff 0%, #f8fafc 48%, #fff 100%);
  font-family: "Plus Jakarta Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(.95rem, 1.5vw, 1.05rem);
  line-height: 1.65;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(233, 30, 99, .34);
  outline-offset: 3px;
}

.container {
  width: min(100% - 28px, 1200px);
  margin-inline: auto;
}

.section-shell {
  padding-block: clamp(24px, 3.4vw, 38px);
}

.light-band {
  background: linear-gradient(180deg, rgba(248, 250, 252, .84), rgba(241, 245, 249, .72));
  border-block: 1px solid rgba(203, 213, 225, .55);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 250, 252, .9);
  border-bottom: 1px solid rgba(226, 232, 240, .6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand img {
  width: auto;
  max-height: 42px;
}

.desktop-nav,
.desktop-cta {
  display: none;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 11px 19px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
  text-align: center;
  transition: var(--transition);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--iem-purple), var(--iem-pink));
  box-shadow: 0 10px 24px rgba(219, 39, 119, .24);
}

.btn-secondary,
.btn-ghost {
  color: var(--iem-purple);
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(99, 102, 241, .22);
  box-shadow: var(--shadow-sm);
}

.mobile-whatsapp {
  min-width: 102px;
}

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

h1,
h2,
h3 {
  color: var(--text-dark);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--iem-purple);
  background: linear-gradient(135deg, var(--iem-purple) 0%, var(--navy-dark) 46%, var(--iem-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(1.92rem, 4.9vw, 3.85rem);
  font-weight: 900;
  -webkit-text-fill-color: transparent;
}

h2 {
  margin-bottom: 8px;
  color: var(--iem-purple);
  font-size: clamp(1.58rem, 3.4vw, 2.72rem);
  font-weight: 900;
}

h3 {
  margin-bottom: 8px;
  color: var(--navy-dark);
  font-size: 1.04rem;
  font-weight: 900;
}

.pill,
.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--iem-pink);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.pill {
  width: max-content;
  max-width: 100%;
  color: var(--iem-purple);
  background: linear-gradient(135deg, rgba(255, 215, 0, .5), rgba(255, 255, 255, .9));
  border: 1px solid rgba(45, 48, 145, .16);
  border-radius: 999px;
  padding: 8px 13px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(18px, 3.1vw, 34px);
  min-height: 60vh;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(248, 250, 252, .86)),
    linear-gradient(135deg, rgba(45, 48, 145, .08), rgba(233, 30, 99, .05));
}

.hero::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 48, 145, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 48, 145, .045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .74), transparent 72%);
}

.hero-grid {
  position: relative;
  display: grid;
  gap: clamp(16px, 2.8vw, 28px);
  align-items: center;
}

/* Hero video wrapper */
.hero-video-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 9/16;
  background: #000;
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(45, 48, 145, 0.3);
  animation: hero-video-pulse 2.5s ease-in-out infinite;
  order: -1;
}

@keyframes hero-video-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(45, 48, 145, 0.3); }
  50% { box-shadow: 0 0 0 6px rgba(233, 30, 99, 0.2); }
}

.hero-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 20px;
  aspect-ratio: 9/16;
}

/* Standalone enquiry section */
.enquiry-section {
  width: 100%;
  background: radial-gradient(circle at top right, rgba(233, 30, 99, 0.05), transparent 400px),
              linear-gradient(180deg, #f8fafc, #e2e8f0);
  padding: 80px 24px;
}

.enquiry-section-inner {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 56px 48px;
  box-shadow: 0 40px 80px rgba(45, 48, 145, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  position: relative;
  overflow: hidden;
}

.enquiry-section-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--iem-purple), var(--iem-pink), #f59e0b);
}

.enquiry-section .form-heading {
  text-align: center;
  margin-bottom: 40px;
}

.enquiry-section .form-heading .section-kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 16px;
  border-radius: 999px;
  color: var(--iem-purple);
  background: linear-gradient(135deg, rgba(251, 207, 232, 0.8), rgba(255, 215, 0, 0.4));
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.enquiry-section .form-heading h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--navy-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.enquiry-section .form-heading p:last-child {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.enquiry-section .enquiry-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.enquiry-section .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.enquiry-section .field label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.enquiry-section .field input,
.enquiry-section .field select {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-800);
  background: rgba(248, 250, 252, 0.6);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.enquiry-section .field input::placeholder {
  color: var(--gray-400);
}

.enquiry-section .field input:focus,
.enquiry-section .field select:focus {
  background: #fff;
  border-color: var(--iem-pink);
  box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.1);
  outline: none;
}

.enquiry-section .form-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--iem-purple), var(--iem-pink));
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 12px 24px rgba(233, 30, 99, 0.25);
  margin-top: 8px;
}

.enquiry-section .form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(233, 30, 99, 0.35);
}

.enquiry-section .form-note {
  font-size: 13px;
  color: var(--gray-600);
  text-align: center;
  margin-top: 12px;
}

.enquiry-section .form-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.enquiry-section .form-trust span {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: var(--iem-purple);
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 700;
}

.hero-copy {
  display: grid;
  gap: 9px;
  align-content: center;
}

.hero-lede {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--navy-dark);
  font-size: clamp(.98rem, 1.7vw, 1.14rem);
  font-weight: 800;
  line-height: 1.38;
}

.hero-sub {
  max-width: 700px;
  margin-bottom: 0;
  line-height: 1.42;
}

.hero-actions,
.trust-chips,
.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-actions {
  margin-top: 2px;
}

.hero-actions .btn {
  width: 100%;
}

.trust-chips {
  margin-top: 0;
  gap: 7px;
}

.trust-chips span,
.centre-pills span,
.parent-points span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(99, 102, 241, .16);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--iem-purple);
  background: rgba(255, 255, 255, .78);
  box-shadow: none;
  font-size: .8rem;
  font-weight: 800;
  line-height: 1.15;
}

.mini-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 640px;
  margin-top: 2px;
  gap: 7px;
}

.mini-proof strong {
  min-height: 56px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(45, 48, 145, .12);
  border-radius: 18px;
  padding: 10px;
  color: var(--iem-purple);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
  font-size: clamp(1rem, 3vw, 1.35rem);
  line-height: 1;
}

.mini-proof span {
  margin-top: 4px;
  color: var(--gray-600);
  font-size: .72rem;
  font-weight: 800;
}

.hero-signal-panel {
  display: grid;
  max-width: 720px;
  gap: 7px;
  margin-top: 2px;
}

.hero-signal-panel div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(203, 213, 225, .7);
  border-radius: 16px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, .78);
}

.hero-signal-panel span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--iem-purple);
  font-size: .76rem;
  font-weight: 900;
}

.hero-signal-panel strong {
  color: var(--ink);
  font-size: .84rem;
  line-height: 1.35;
}

.enquiry-card {
  position: relative;
  z-index: 2;
  scroll-margin-top: 90px;
  border: 1px solid rgba(45, 48, 145, .12);
  border-radius: 22px;
  padding: clamp(16px, 2vw, 20px);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 24px 60px rgba(15, 23, 42, .12);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.form-heading h2 {
  margin-bottom: 6px;
  color: var(--iem-purple);
  font-size: clamp(1.42rem, 2.8vw, 2.02rem);
}

.form-heading p:last-child {
  margin-bottom: 9px;
  line-height: 1.4;
}

.enquiry-form {
  display: grid;
  gap: 8px;
}

.field {
  display: grid;
  gap: 4px;
}

.field label {
  color: var(--gray-800);
  font-size: .86rem;
  font-weight: 800;
}

.field input,
.field select {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(148, 163, 184, .42);
  border-radius: var(--radius-md);
  padding: 9px 12px;
  color: var(--gray-800);
  background: rgba(255, 255, 255, .9);
  font-size: 16px;
  outline: 0;
  transition: var(--transition);
}

.field input:focus,
.field select:focus {
  border-color: rgba(219, 39, 119, .62);
  box-shadow: 0 0 0 4px rgba(219, 39, 119, .12);
}

.field.is-invalid input,
.field.is-invalid select {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, .1);
}

.error {
  min-height: 12px;
  color: #b91c1c;
  font-size: .76rem;
  font-weight: 800;
  line-height: 1.2;
}

.error:empty,
.form-status:empty {
  display: none;
}

.form-submit {
  width: 100%;
  margin-top: 2px;
}

.form-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: -2px;
}

.form-trust span {
  border: 1px solid rgba(99, 102, 241, .14);
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--iem-purple);
  background: #f8fafc;
  font-size: .74rem;
  font-weight: 900;
  line-height: 1.15;
}

.form-note,
.form-status {
  margin: 0;
  font-size: .82rem;
  line-height: 1.4;
}

.form-status {
  min-height: 18px;
  color: var(--iem-purple);
  font-weight: 800;
}

.trust-strip {
  padding-block: 14px;
  color: #fff;
  background: linear-gradient(135deg, #17153f, var(--iem-purple));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.stats-grid div {
  min-height: 64px;
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  padding: 10px;
  background: rgba(255, 255, 255, .08);
  text-align: center;
}

.stats-grid strong {
  color: var(--iem-gold);
  font-size: clamp(1.36rem, 4vw, 2.12rem);
  line-height: 1;
}

.stats-grid span {
  font-size: .8rem;
  font-weight: 800;
}

.proof-note {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: .82rem;
  text-align: center;
}

.conversion-ribbon {
  position: relative;
  z-index: 2;
  padding-block: 10px;
  background: #fff;
  border-block: 1px solid rgba(203, 213, 225, .62);
}

.conversion-grid {
  display: grid;
  gap: 8px;
}

.conversion-grid article {
  min-height: 68px;
  display: grid;
  align-content: center;
  gap: 5px;
  border: 1px solid rgba(203, 213, 225, .7);
  border-radius: 16px;
  padding: 12px;
  background: #fff;
}

.conversion-grid span {
  color: var(--accent-magenta);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.conversion-grid strong {
  color: var(--ink);
  font-size: .95rem;
  line-height: 1.35;
}

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

.section-heading p:not(.section-kicker) {
  margin-bottom: 0;
}

.align-left {
  margin-inline: 0;
  text-align: left;
}

.course-grid,
.advantage-grid,
.process-grid {
  display: grid;
  gap: clamp(14px, 2vw, 20px);
}

.course-card,
.feature-card,
.process-grid article,
.doc-list,
.parent-panel,
.centre-panel {
  border: 1px solid rgba(203, 213, 225, .68);
  border-radius: 18px;
  padding: clamp(14px, 2vw, 18px);
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow-sm);
}

.course-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  isolation: isolate;
  transition: var(--transition);
}

.course-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--iem-purple), var(--iem-pink), #f59e0b);
  opacity: .86;
}

.course-card::after {
  content: "";
  position: absolute;
  inset: 5px 0 auto;
  height: 84px;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(45, 48, 145, .08), rgba(233, 30, 99, .06) 62%, rgba(245, 158, 11, .08));
  opacity: .8;
}

.course-card.is-featured {
  border-color: rgba(233, 30, 99, .24);
  box-shadow: 0 14px 42px rgba(45, 48, 145, .12);
}

.course-card-top,
.course-card-bottom,
.course-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.course-card-top,
.course-card-bottom {
  justify-content: space-between;
}

.course-badge {
  width: max-content;
  max-width: 100%;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--iem-purple);
  background: linear-gradient(135deg, rgba(251, 207, 232, .9), rgba(255, 215, 0, .42));
  font-size: .76rem;
  font-weight: 900;
}

.course-index {
  color: rgba(49, 46, 129, .32);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.course-card h3 {
  min-height: 2.25em;
  margin-bottom: 0;
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
}

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

.best-for {
  color: var(--accent-magenta);
  font-size: .86rem;
  font-weight: 900;
  line-height: 1.35;
}

.course-card p:not(.best-for):not(.course-meta) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.course-meta {
  color: var(--iem-purple);
  font-size: .86rem;
  font-weight: 900;
  line-height: 1.35;
}

.course-card-bottom {
  margin-top: auto;
  align-items: flex-end;
  flex-wrap: wrap;
}

.course-highlight {
  width: max-content;
  max-width: 100%;
  border: 1px solid rgba(233, 30, 99, .2);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--accent-magenta);
  background: rgba(251, 207, 232, .42);
  font-size: .72rem;
  font-weight: 900;
  line-height: 1.2;
}

.course-actions {
  margin-top: 4px;
}

.course-card .btn {
  flex: 1 1 150px;
  width: 100%;
  min-height: 42px;
  padding-inline: 13px;
  font-size: .86rem;
}

.course-card .btn-primary {
  box-shadow: 0 10px 22px rgba(45, 48, 145, .18);
}

.course-link::after {
  content: "->";
  font-weight: 900;
}

.course-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, .34);
  box-shadow: 0 18px 48px rgba(45, 48, 145, .15);
}

.feature-card {
  transition: var(--transition);
}

.feature-card span,
.process-grid span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--iem-purple), var(--iem-pink));
  box-shadow: var(--shadow-gold);
  font-size: .8rem;
  font-weight: 900;
}

.feature-card p,
.process-grid p {
  margin-bottom: 0;
}

.iem-video-section {
  margin-top: clamp(18px, 2.8vw, 28px);
}

.iem-video-section .section-heading {
  margin-bottom: 12px;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(10px, 1.6vw, 16px);
}

.video-tile {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border: 1px solid rgba(203, 213, 225, .68);
  border-radius: 20px;
  padding: 0;
  background: #111827;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 9 / 16;
  transition: var(--transition);
}

.video-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9;
}

.video-tile::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0), rgba(17, 24, 39, .74));
  pointer-events: none;
}

.video-tile span {
  position: absolute;
  right: 12px;
  bottom: 11px;
  left: 12px;
  z-index: 1;
  color: #fff;
  font-size: .88rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: left;
}

.gallery-action {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.video-modal[hidden] {
  display: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 18px;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 20px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 24px 80px rgba(15, 23, 42, .42);
}

.video-modal-head {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px 12px 18px;
  background: #fff;
}

.video-modal-head h2 {
  margin: 0;
  color: var(--iem-purple);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.video-close {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--iem-purple), var(--iem-pink));
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.video-modal-dialog video {
  width: 100%;
  max-height: min(76vh, 720px);
  display: block;
  background: #000;
  object-fit: contain;
}

body.video-modal-open {
  overflow: hidden;
}

.centres-layout,
.document-layout,
.faq-layout,
.footer-grid {
  display: grid;
  gap: clamp(16px, 2.4vw, 24px);
}

.centres-layout {
  gap: clamp(12px, 2vw, 20px);
}

.centres-layout .section-heading {
  margin-bottom: 0;
}

.centre-panel {
  padding: clamp(12px, 1.8vw, 16px);
}

.centre-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.centre-pills span.active {
  color: #fff;
  background: linear-gradient(135deg, var(--iem-purple), var(--iem-pink));
}

.centre-card-grid {
  display: grid;
  gap: 8px;
}

.centre-card {
  display: grid;
  gap: 7px;
  border: 1px solid rgba(99, 102, 241, .13);
  border-radius: 16px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(45, 48, 145, .07), rgba(233, 30, 99, .04));
  transition: var(--transition);
}

.centre-card.active {
  border-color: rgba(219, 39, 119, .32);
  background:
    linear-gradient(135deg, rgba(45, 48, 145, .11), rgba(233, 30, 99, .08)),
    #fff;
  box-shadow: var(--shadow-md);
}

.centre-card p,
.centre-card strong,
.centre-card small {
  margin: 0;
}

.centre-card p {
  color: var(--accent-magenta);
  font-size: .86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.centre-card strong {
  display: block;
  color: var(--gray-800);
  font-size: .94rem;
  line-height: 1.38;
}

.centre-card small {
  color: var(--gray-600);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.3;
}

.centre-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.centre-actions .btn {
  width: 100%;
  min-height: 38px;
  padding: 8px 11px;
  font-size: .8rem;
}

.centre-support {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.centre-support span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(99, 102, 241, .16);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--iem-purple);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow-sm);
  font-size: .8rem;
  font-weight: 900;
  line-height: 1.15;
}

.head-office {
  margin-top: 14px;
  border: 1px solid rgba(99, 102, 241, .13);
  border-radius: 20px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(45, 48, 145, .09), rgba(233, 30, 99, .06));
}

.head-office p,
.head-office strong {
  margin: 0;
}

.head-office p {
  color: var(--accent-magenta);
  font-size: .86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.head-office strong {
  display: block;
  margin-top: 6px;
  color: var(--gray-800);
  line-height: 1.45;
}

.parent-panel {
  display: grid;
  gap: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(248, 250, 252, .78)),
    radial-gradient(circle at 100% 0%, rgba(251, 207, 232, .5), transparent 18rem);
}

.parent-panel h2 {
  max-width: 760px;
}

.parent-panel p {
  margin-bottom: 0;
}

.parent-points {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-content: start;
}

.process-grid article {
  position: relative;
}

.doc-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: calc(clamp(18px, 2.5vw, 24px) + 18px);
}

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

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(203, 213, 225, .68);
  border-radius: 18px;
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow-sm);
}

.faq-item button {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 0;
  padding: 12px 14px;
  color: var(--iem-purple);
  background: transparent;
  font-weight: 900;
  text-align: left;
}

.faq-item button::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--iem-purple);
}

.faq-item button[aria-expanded="true"]::after {
  content: "-";
  background: var(--accent-magenta);
}

.faq-answer {
  padding: 0 14px 12px;
}

.final-cta {
  overflow: hidden;
  padding-block: clamp(30px, 4.5vw, 48px);
  color: #fff;
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 215, 0, .26), transparent 20rem),
    radial-gradient(circle at 86% 20%, rgba(233, 30, 99, .38), transparent 22rem),
    linear-gradient(135deg, var(--navy-dark), var(--iem-purple));
}

.final-cta-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.final-cta h2,
.final-cta p {
  color: #fff;
}

.final-cta h2 {
  margin-bottom: 7px;
}

.final-cta p:not(.pill) {
  max-width: 760px;
}

.final-cta .pill {
  color: var(--navy-dark);
}

.site-footer {
  padding: 30px 0 calc(82px + env(safe-area-inset-bottom));
  color: rgba(255, 255, 255, .8);
  background: #17153f;
}

.footer-grid {
  align-items: start;
}

.footer-brand img {
  width: min(200px, 100%);
  height: auto;
  margin-bottom: 10px;
}

.site-footer h2 {
  color: #fff;
  font-size: 1.04rem;
}

.site-footer p {
  margin-bottom: 6px;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

.footer-disclaimer {
  color: rgba(255, 255, 255, .64);
  font-size: .88rem;
}

.footer-links {
  color: #fff;
  font-weight: 900;
}

.footer-links span {
  color: rgba(255, 255, 255, .46);
  margin-inline: 6px;
}

.copyright {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .64);
  font-size: .88rem;
}

.legal-page {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.legal-header {
  border-bottom: 1px solid rgba(226, 232, 240, .8);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.legal-header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.legal-main {
  padding-block: clamp(24px, 4vw, 48px);
}

.legal-card {
  max-width: 920px;
  border: 1px solid rgba(203, 213, 225, .72);
  border-radius: 22px;
  padding: clamp(20px, 4vw, 42px);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-md);
}

.legal-card h1 {
  margin: 6px 0 14px;
}

.legal-card h2 {
  margin-top: 24px;
  font-size: clamp(1.18rem, 2vw, 1.46rem);
}

.legal-card p {
  margin-bottom: 12px;
}

.legal-card a {
  color: var(--iem-purple);
  font-weight: 900;
}

.legal-footer {
  padding: 22px 0;
  color: rgba(255, 255, 255, .78);
  background: #17153f;
}

.legal-footer p {
  margin: 0;
}

.legal-footer a {
  color: #fff;
  font-weight: 900;
}

.mobile-action-bar {
  position: fixed;
  z-index: 60;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  left: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  padding: 6px;
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.mobile-action-bar a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--iem-purple);
  font-size: .84rem;
  font-weight: 900;
}

.mobile-action-bar a:nth-child(2) {
  color: #fff;
  background: linear-gradient(135deg, var(--iem-purple), var(--iem-pink));
}

@media(max-width:360px) {
  .container {
    width: min(100% - 20px, 1200px);
  }

  .brand img {
    max-height: 36px;
  }

  .btn {
    padding-inline: 14px;
    font-size: .88rem;
  }

  .trust-chips span {
    width: auto;
  }

  .mini-proof,
  .stats-grid,
  .conversion-grid {
    grid-template-columns: 1fr;
  }

  .legal-header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 10px;
  }

  .legal-header-inner .btn {
    width: 100%;
  }
}

@media(min-width:480px) {
  .hero-actions .btn {
    width: auto;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .conversion-grid {
    grid-template-columns: 1fr;
  }

  .video-grid,
  .centre-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .centre-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media(min-width:640px) {
  .course-grid,
  .advantage-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .enquiry-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .enquiry-form .field:nth-of-type(5),
  .form-submit,
  .form-note,
  .form-trust,
  .form-status {
    grid-column: 1 / -1;
  }
}

@media(max-width:767px) {
  html {
    scroll-padding-top: 72px;
  }

  .section-heading {
    max-width: 100%;
  }

  .hero-copy,
  .form-heading {
    text-align: left;
  }

  .trust-chips,
  .hero-actions,
  .form-trust,
  .centre-support {
    align-items: stretch;
  }

  .trust-chips span,
  .form-trust span,
  .centre-support span {
    max-width: 100%;
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-tile {
    border-radius: 14px;
  }

  .video-tile span {
    right: 9px;
    bottom: 8px;
    left: 9px;
    font-size: .76rem;
  }

  .centre-card {
    border-radius: 14px;
  }

  .enquiry-section-inner {
    padding: 48px 20px;
  }
}

@media(max-width:768px) {
  .brand img {
    max-width: 120px;
    height: auto;
    object-fit: contain;
  }

  .mobile-whatsapp {
    display: none;
  }

  .hero-video-wrapper {
    max-width: 100%;
    order: -1;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

@media(min-width:768px) {
  .mobile-action-bar {
    display: none;
  }

  .site-footer {
    padding-bottom: 40px;
  }

  .hero-signal-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-signal-panel div {
    align-content: start;
    align-items: start;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .centres-layout,
  .document-layout,
  .faq-layout,
  .parent-panel {
    grid-template-columns: .86fr 1.14fr;
    align-items: start;
  }
}

@media(min-width:1024px) {
  .header-inner {
    min-height: 66px;
  }

  .brand img {
    max-height: 50px;
  }

  .desktop-nav,
  .desktop-cta {
    display: flex;
  }

  .desktop-nav {
    align-items: center;
    gap: 18px;
    color: var(--iem-purple);
    font-size: .92rem;
    font-weight: 900;
  }

  .mobile-whatsapp {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 40% 1fr;
    gap: 48px;
    min-height: 90vh;
    align-items: center;
  }

  .hero-video-wrapper {
    max-width: 340px;
    order: 0;
  }

  .hero-copy {
    min-height: auto;
    padding-block: 8px;
    order: 1;
  }



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

  .advantage-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .video-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.12fr .9fr 1fr;
  }
}

@media(min-width:1280px) {
  .hero-grid {
    grid-template-columns: 40% 1fr;
  }

  .course-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media(min-width:1440px) {
  .container {
    width: min(100% - 64px, 1280px);
  }
}

@media(hover:hover) {
  .btn:hover {
    transform: translateY(-2px);
  }

  .btn-primary:hover {
    box-shadow: 0 14px 32px rgba(219, 39, 119, .3);
  }

  .btn-secondary:hover,
  .btn-ghost:hover,
  .course-card:hover,
  .feature-card:hover,
  .centre-card:hover,
  .video-tile:hover {
    border-color: rgba(219, 39, 119, .28);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
  }

  .desktop-nav a:hover,
  .site-footer a:hover {
    color: var(--accent-magenta);
  }
}

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

@supports(-webkit-touch-callout:none) {
  body {
    min-height: -webkit-fill-available;
  }

  .site-header,
  .enquiry-card,
  .mobile-action-bar {
    -webkit-backdrop-filter: blur(14px);
  }
}
