/* ──────────────────────────────────────────────────────────────
   region.css — Region page styles
   Mirrors the original HP index.html inline styles exactly.
   ────────────────────────────────────────────────────────────── */

/* ——— HEADER logo ———————————————————————————————————————— */
.header-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.header-inner {
  justify-content: space-between;
}
/* Region tag badge shown next to logo on desktop */
.region-header-tag {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  padding: 5px 14px;
  border-radius: 50px;
}

/* ——— BUTTONS ———————————————————————————————————————————— */
.btn-coral {
  display: inline-block;
  background: linear-gradient(135deg, #FF9B5E 0%, #FFAF7E 60%, #FFD07E 100%);
  color: var(--dark);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(255,175,126,.45);
  text-align: center;
}
.btn-coral:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,175,126,.55);
}

/* ——— HERO ——————————————————————————————————————————————— */
.hero {
  background: linear-gradient(120deg, #FBE8D5 0%, #FBEEDE 55%, #FFF3E8 100%);
  overflow: hidden;
  padding: 0;
}
.hero-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 52% 48%;
  align-items: center;
  min-height: 560px;
}
.hero-content {
  padding: 72px 48px 72px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-content h1 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.22;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}
.hero-content h1 span { color: #D4631A; }
.hero-sub {
  font-size: 1.02rem;
  color: var(--text);
  max-width: 430px;
  margin-bottom: 24px;
  line-height: 1.7;
}
.hero-photo {
  height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-photo img {
  height: 105%;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(-12px 0 32px rgba(52,49,48,.1));
}

/* ——— VIDEO SECTION ——————————————————————————————————————— */
.video-section {
  background: var(--bg);
  padding: 48px 0 56px;
}
.video-wrap {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 12px 48px rgba(52,49,48,.14);
}
.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ——— SECTION COMMON ———————————————————————————————————— */
section { padding: 80px 0; }
.section-tag {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #D4631A;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text);
  max-width: 560px;
  margin-bottom: 52px;
}

/* ——— FLIP CARDS (Benefits) ——————————————————————————————— */
.benefits-header { text-align: center; margin-bottom: 0; }
.benefits-header .section-tag,
.benefits-header .section-title { text-align: center; }
.benefits-header .section-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit-card {
  height: 280px;
  perspective: 1000px;
  cursor: pointer;
}
.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
  transform-style: preserve-3d;
}
.benefit-card:hover .flip-inner { transform: rotateY(180deg); }
.flip-front, .flip-back {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 22px;
  text-align: center;
}
.flip-front {
  background: var(--white);
  box-shadow: 0 6px 28px rgba(52,49,48,.09);
}
.flip-back {
  background: linear-gradient(135deg,#F5A05A,#E8912D);
  transform: rotateY(180deg);
  box-shadow: 0 8px 32px rgba(255,175,126,.35);
}
.flip-back p {
  font-size: .97rem;
  color: var(--dark);
  font-weight: 500;
  line-height: 1.6;
}
.benefit-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 20px;
}
.benefit-card h3 {
  font-size: .97rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}

/* ——— TESTIMONIALS ———————————————————————————————————————— */
.testimonials { background: #FFF8F2; }
.testimonials-header { text-align: center; margin-bottom: 52px; }
.t-slider-wrap { position: relative; overflow: hidden; }
.t-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  padding: 12px 4px;
}
.t-card {
  min-width: calc(33.333% - 16px);
  background: var(--white);
  border-radius: 24px;
  padding: 36px 28px 28px;
  box-shadow: 0 4px 28px rgba(52,49,48,.07);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .3s, box-shadow .3s;
  flex-shrink: 0;
}
.t-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(52,49,48,.12); }
.t-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
}
.t-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--coral);
  flex-shrink: 0;
}
.t-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
}
.t-role {
  font-size: .82rem;
  color: var(--text);
  margin-top: 2px;
}
.t-stars { color: #FFCA6B; font-size: 1rem; letter-spacing: 2px; }
.t-quote {
  font-family: 'PT Serif', serif;
  font-style: italic;
  font-size: .97rem;
  color: var(--text);
  line-height: 1.75;
  position: relative;
  padding-left: 18px;
  border-left: 3px solid var(--coral);
}
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
.c-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid var(--coral);
  background: var(--white);
  color: var(--coral);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.c-btn:hover { background: var(--coral); color: var(--white); }
.c-dots { display: flex; gap: 8px; }
.c-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.c-dot.active { background: var(--coral); transform: scale(1.3); }

/* ——— SCIENCE / STATS ——————————————————————————————————————— */
.science { background: #FFFAF5; }
.science-header { text-align: center; margin-bottom: 48px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}
.stat-box {
  background: var(--white);
  border-radius: 22px;
  padding: 36px 20px 28px;
  text-align: center;
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 22px rgba(52,49,48,.06);
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.stat-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(135deg,#F5A05A,#E8912D);
  border-radius: 22px 22px 0 0;
}
.stat-box:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(52,49,48,.1); }
.stat-icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.stat-num {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #D4631A;
  display: block;
  line-height: 1.1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: .88rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}
.science-caption {
  text-align: center;
  font-weight: 600;
  color: var(--dark);
  font-size: 1rem;
  margin-bottom: 32px;
}
.uni-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.uni-logos img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter .2s;
}
.uni-logos img:hover { filter: grayscale(0%); }

/* ——— REGISTER FORM ——————————————————————————————————————— */
.register { background: linear-gradient(160deg,#FBE8D5 0%,#FBEEDE 100%); }

.register-card {
  max-width: 680px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 28px;
  padding: 52px 52px 48px;
  box-shadow: 0 20px 64px rgba(52,49,48,.11);
  border: 1px solid rgba(222,210,196,.5);
}
.register-head { text-align: center; margin-bottom: 40px; }
.register-head .section-tag { margin-bottom: 8px; }
.register-head .section-title { margin-bottom: 10px; }
.register-head p { font-size: .97rem; color: var(--text); }

.form-step-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-step-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.form-group { margin-bottom: 28px; }

/* Date / Timing pills */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.sel-pill {
  padding: 9px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: #FAFAFA;
  font-family: 'Manrope', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  transition: all .2s;
}
.sel-pill:hover { border-color: var(--coral); color: #D4631A; background: #FFF5EE; }
.sel-pill.active {
  background: linear-gradient(135deg,#F5A05A,#E8912D);
  border-color: #FF9B5E;
  color: #FFFFFF;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(255,175,126,.4);
}
.sel-pill.locked {
  cursor: default;
  pointer-events: none;
  background: linear-gradient(135deg,#FFF5EE,#FFEBDD);
  border-color: #FFAF7E;
  color: #B8561E;
  font-weight: 600;
}
.sel-pill.locked::before { content: '✓  '; color: #FF9B5E; }

/* Intent cards */
.intent-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.intent-card {
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 22px 14px;
  text-align: center;
  cursor: pointer;
  background: #FAFAFA;
  transition: all .22s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.intent-card:hover { border-color: var(--coral); background: #FFF5EE; transform: translateY(-2px); }
.intent-card.active {
  border-color: #FF9B5E;
  background: linear-gradient(145deg,#FFF0E4,#FBEEDE);
  box-shadow: 0 6px 22px rgba(255,175,126,.25);
}
.intent-icon { font-size: 1.8rem; line-height: 1; }
.intent-title { font-size: .97rem; font-weight: 700; color: var(--dark); }
.intent-sub { font-size: .78rem; color: var(--text); }

/* Name / Phone fields */
.fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 24px; }
.reg-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  font-family: 'Manrope', sans-serif;
  font-size: .97rem;
  color: var(--dark);
  background: #FAFAFA;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.reg-input:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(255,175,126,.18); background: #FFFFFF; }
.reg-input::placeholder { color: #B0A89E; }

.reg-submit {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg,#F5A05A,#E8912D);
  color: var(--dark);
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(255,175,126,.45);
  transition: transform .2s, box-shadow .2s;
  letter-spacing: .02em;
}
.reg-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,175,126,.55); }
.reg-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* Inline validation error */
.reg-error {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  background: #FFF0EC;
  border: 1.5px solid #FFBAA0;
  border-radius: 12px;
  color: #B8371C;
  font-size: .92rem;
  font-weight: 500;
  text-align: center;
}
.reg-error.show { display: block; }

/* Success state */
.reg-success {
  text-align: center;
  padding: 20px 0 8px;
  display: none;
}
.reg-success .success-icon { font-size: 3rem; margin-bottom: 12px; }
.reg-success h3 { font-size: 1.4rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.reg-success p { color: var(--text); font-size: .97rem; }

/* Hidden utility */
.form-step { transition: opacity .3s; }
.form-step.hidden { display: none; }

/* ——— FAQ ———————————————————————————————————————————————— */
.faq { background: #FFFAF5; }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--white);
  border-radius: 16px;
  border: 1.5px solid var(--border);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(52,49,48,.05);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  user-select: none;
  transition: background .2s;
  gap: 16px;
}
.faq-q:hover { background: #FFF5EC; }
.faq-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 300;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 28px;
  font-size: .97rem;
  color: var(--text);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding: 0 28px 22px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ——— PROGRAM CARDS (region.html listing) —————————————————— */
.region-programs { background: linear-gradient(160deg,#FBE8D5 0%,#FBEEDE 100%); }
.programs-header { text-align: center; margin-bottom: 48px; }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.program-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 24px rgba(52,49,48,.07);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: transform .25s, box-shadow .25s;
  gap: 10px;
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(52,49,48,.12);
}
.pc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pc-type {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--card-accent, #D4631A);
  background: color-mix(in srgb, var(--card-accent, #D4631A) 12%, transparent);
  padding: 4px 12px;
  border-radius: 50px;
}
.pc-fee {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
}
.pc-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  line-height: 1.3;
}
.pc-desc {
  font-size: .88rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.pc-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: var(--text);
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.pc-batches {
  font-weight: 600;
  color: var(--card-accent, #D4631A);
}
.pc-venue { opacity: .7; }
.programs-empty {
  text-align: center;
  padding: 48px 0;
  color: var(--text);
}
.programs-empty .empty-msg { font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; }
.programs-empty .empty-sub { font-size: .92rem; margin-bottom: 24px; color: #776E64; }

/* ——— INTEREST FORM (no-programs fallback) ——————————————— */
.interest-form { max-width: 520px; margin: 0 auto; text-align: left; }
.if-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.interest-form input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: .92rem;
  color: var(--dark);
  background: #FAFAFA;
  outline: none;
  transition: border-color .2s;
}
.interest-form input:focus { border-color: var(--coral); background: #fff; }
.interest-form input::placeholder { color: #B0A89E; }

.if-intent { margin-bottom: 16px; }
.if-intent-label { font-size: .85rem; font-weight: 600; color: var(--dark); display: block; margin-bottom: 8px; }
.if-intent-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.if-pill {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: #FAFAFA;
  font-family: 'Manrope', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
  color: var(--dark);
}
.if-pill:hover { border-color: var(--coral); background: #FFF5EE; }
.if-pill.active {
  background: linear-gradient(135deg,#F5A05A,#E8912D);
  border-color: #FF9B5E;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(255,175,126,.4);
}

.if-error {
  display: none;
  margin-top: 12px;
  padding: 10px 14px;
  background: #FFF0EC;
  border: 1.5px solid #FFBAA0;
  border-radius: 10px;
  color: #B8371C;
  font-size: .85rem;
  font-weight: 500;
  text-align: center;
}

.if-submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg,#F5A05A,#E8912D);
  color: var(--dark);
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(255,175,126,.45);
  transition: transform .2s, box-shadow .2s;
  margin-top: 4px;
}
.if-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,175,126,.55); }
.if-submit-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.if-success {
  text-align: center;
  padding: 12px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #27AE60;
}

@media (max-width: 480px) {
  .if-row { grid-template-columns: 1fr; }
  .if-intent-pills { flex-direction: column; }
  .if-pill { text-align: center; }
}

/* ——— LANDING PAGE PROGRAM COUNT BADGE ———————————————— */
.card-program-count {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .03em;
  background: var(--card-accent, #D4631A);
  color: #fff;
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

/* ——— SKELETON LOADERS ——————————————————————————————— */
.skeleton-programs { display: flex; flex-direction: column; gap: 16px; }
.skeleton-block {
  background: linear-gradient(90deg, #f0e8e0 25%, #f8f2ec 50%, #f0e8e0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 12px;
}
.skeleton-card { height: 160px; }
.skeleton-title { height: 28px; width: 60%; margin-bottom: 12px; }
.skeleton-text { height: 16px; width: 90%; margin-bottom: 8px; }
.skeleton-text.short { width: 40%; }
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ——— PROGRAM DETAIL PAGE (program.html) ——————————————— */
.program-page .program-detail-section { padding: 60px 0 80px; }
.back-link {
  display: inline-block;
  font-size: .9rem;
  color: var(--coral);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 20px;
}
.back-link:hover { text-decoration: underline; }
.program-detail-header { margin-bottom: 32px; }
.pd-type-badge {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #D4631A;
  background: #FFF0E4;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.program-detail-header h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 12px;
  line-height: 1.25;
}
.pd-description {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  max-width: 720px;
}
.pd-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 36px;
  padding: 20px 24px;
  background: #FFFAF5;
  border-radius: 16px;
  border: 1px solid var(--border);
}
.pd-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pd-meta-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text);
  opacity: .7;
}
.pd-meta-item span:last-child {
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
}

/* ——— BATCH CARDS ———————————————————————————————— */
.pd-batches { margin-bottom: 40px; }
.pd-batches-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 16px;
}
.pd-batch-list { display: flex; flex-direction: column; gap: 12px; }
.batch-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--white);
  border-radius: 14px;
  border: 1.5px solid var(--border);
  transition: border-color .2s, box-shadow .2s;
}
.batch-card:hover { border-color: var(--coral); box-shadow: 0 4px 16px rgba(255,175,126,.15); }
.batch-card-left { display: flex; flex-direction: column; gap: 4px; }
.batch-dates {
  font-weight: 700;
  font-size: .95rem;
  color: var(--dark);
}
.batch-timing {
  font-size: .85rem;
  color: var(--text);
}
.batch-card-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.batch-seats {
  font-size: .82rem;
  font-weight: 600;
  color: #27AE60;
  white-space: nowrap;
}
.batch-seats.full { color: #E74C3C; }
.batch-select-btn {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--coral);
  background: transparent;
  color: var(--coral);
  font-family: 'Manrope', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.batch-select-btn:hover {
  background: var(--coral);
  color: var(--white);
}

/* ——— BATCH PILLS (in registration form) ———————————————— */
.batch-pill { font-size: .85rem; }

/* ——— REGISTRATION FORM (program page) ——————————————————— */
.pd-register-card {
  max-width: 640px;
  background: var(--white);
  border-radius: 24px;
  padding: 36px 40px 40px;
  box-shadow: 0 12px 48px rgba(52,49,48,.1);
  border: 1px solid var(--border);
}
.pd-register-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 24px;
}
.pd-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.pd-form-row .form-group { margin-bottom: 0; }
.pd-register-card .form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

/* ——— WHATSAPP FLOAT BUTTON ——————————————————————————— */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 999;
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}

/* ——— FOOTER ————————————————————————————————————————————— */
.site-footer-orig {
  background: var(--dark);
  color: rgba(255,255,255,.65);
  text-align: center;
  padding: 36px 24px;
}
.footer-links-orig {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  font-size: .88rem;
}
.footer-links-orig a {
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer-links-orig a:hover { color: var(--coral); }
.footer-credit-orig {
  font-size: .78rem;
  opacity: .5;
  font-style: italic;
  margin-top: 12px;
}
.footer-copy-orig { font-size: .82rem; }

/* ——— PROGRAM TYPE PICKER TILES (index.html) ———————————————— */
.program-type-picker, .area-picker { padding: 60px 0; }
.ptp-header, .ap-header { text-align: center; margin-bottom: 40px; }
.ptp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}
.ptp-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px 20px 28px;
  background: var(--white);
  border-radius: 20px;
  border: 1.5px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: pointer;
}
.ptp-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(52,49,48,.12);
  border-color: var(--coral);
}
.ptp-icon { font-size: 2.8rem; line-height: 1; }
.ptp-name { font-size: 1.05rem; font-weight: 700; color: var(--dark); text-align: center; }
.ptp-duration { font-size: .82rem; color: var(--text); }

@media (max-width: 768px) {
  .program-type-picker, .area-picker { padding: 32px 0; }
  .ptp-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ptp-tile { padding: 24px 14px 20px; }
  .ptp-icon { font-size: 2.2rem; }
  .ptp-name { font-size: .92rem; }
}

/* ——— RESPONSIVE ——————————————————————————————————————————— */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .t-card { min-width: calc(50% - 12px); }
  .hero-grid { grid-template-columns: 55% 45%; }
  .hero-content { padding: 60px 32px 60px 24px; }
  .hero-photo { height: 520px; }
}

@media (max-width: 768px) {
  section { padding: 40px 0; }

  /* Mobile hero: photo full-bleed on top, text centered below */
  .hero { background: #FFFFFF; padding: 0; }
  .hero-grid {
    display: flex;
    flex-direction: column;
    min-height: unset;
  }
  .hero-photo {
    order: -1;
    width: 100%;
    height: auto;
    overflow: visible;
    justify-content: flex-start;
  }
  .hero-photo img {
    width: 100%;
    height: auto;
    filter: none;
    object-fit: contain;
  }
  .hero-content {
    padding: 20px 20px 28px;
    align-items: center;
    text-align: center;
  }
  .hero-content h1 { font-size: 1.65rem; letter-spacing: -.5px; margin-bottom: 10px; }
  .hero-sub { max-width: 100%; margin-bottom: 16px; font-size: .95rem; }

  /* Video compact */
  .video-section { padding: 20px 0 28px; }
  .video-wrap { border-radius: 12px; }

  /* Benefits compact */
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .benefit-card { height: 220px; }
  .benefit-icon { width: 56px; height: 56px; margin-bottom: 12px; }
  .benefit-card h3 { font-size: .85rem; }
  .flip-front, .flip-back { padding: 18px 14px; }
  .flip-back p { font-size: .85rem; }

  /* Stats compact */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 32px; }
  .stat-box { padding: 20px 12px 18px; border-radius: 16px; }
  .stat-icon { font-size: 1.4rem; margin-bottom: 6px; }
  .stat-num { font-size: 1.6rem; margin-bottom: 4px; }
  .stat-label { font-size: .78rem; }
  .science-header { margin-bottom: 28px; }
  .uni-logos { gap: 24px; }
  .uni-logos img { height: 32px; }

  /* Testimonials compact */
  .testimonials-header { margin-bottom: 32px; }
  .t-card {
    min-width: 100%;
    padding: 24px 20px 20px;
    border-radius: 18px;
    gap: 12px;
  }
  .t-avatar { width: 48px; height: 48px; }
  .t-name { font-size: .9rem; }
  .t-quote { font-size: .88rem; padding-left: 14px; }
  .carousel-controls { margin-top: 24px; }

  /* Section headers compact */
  .section-sub { margin-bottom: 28px; }

  /* FAQ compact */
  .faq-header { margin-bottom: 28px; }
  .faq-q { padding: 16px 20px; font-size: .92rem; }
  .faq-a { padding: 0 20px; font-size: .88rem; }
  .faq-item.open .faq-a { padding: 0 20px 16px; }

  /* Register compact */
  .register-card { padding: 28px 18px 24px; border-radius: 18px; }
  .register-head { margin-bottom: 24px; }
  .register-head .section-title { font-size: 1.2rem; }
  .form-group { margin-bottom: 18px; }

  /* Region header tag: hide on very small */
  .region-header-tag { display: none !important; }
}

@media (max-width: 680px) {
  .register-card { padding: 32px 20px 28px; border-radius: 20px; }
  .intent-row { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .intent-card { padding: 14px 8px; border-radius: 14px; }
  .intent-icon { font-size: 1.4rem; }
  .intent-title { font-size: .82rem; }
  .intent-sub { display: none; }
  .fields-row { grid-template-columns: 1fr; }
  .pill-row { gap: 8px; }
  .sel-pill { padding: 8px 16px; font-size: .82rem; }
  .form-group { margin-bottom: 20px; }
  .register-head { margin-bottom: 28px; }
}

@media (max-width: 480px) {
  section { padding: 32px 0; }
  .hero-content h1 { font-size: 1.4rem; }
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .benefit-card { height: 200px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .stat-box { padding: 16px 10px 14px; }
  .stat-num { font-size: 1.4rem; }
  .stat-label { font-size: .72rem; }
  .header-logo { height: 38px; }
  .container { padding: 0 16px; }
}

/* ——— REGISTRATION CARD (Phase 10) ——————————————————————— */
.hp-register {
  background: linear-gradient(160deg,#FBE8D5 0%,#FBEEDE 100%);
}
.hp-card {
  max-width: 440px;
  margin: 0 auto;
  border: 1.5px solid #E8A87C;
  border-radius: 16px;
  overflow: hidden;
}
.hp-card-header {
  background: #D4631A;
  padding: 14px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.hp-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hp-lotus-icon {
  font-size: 18px;
  color: #fff;
  line-height: 1;
}
.hp-header-text {
  flex: 1;
  min-width: 0;
}
.hp-title-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.hp-title {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}
.hp-badge {
  font-size: 10px;
  background: rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 20px;
  padding: 2px 8px;
  margin-left: 0;
  white-space: nowrap;
}
.hp-subtitle {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  margin-top: 2px;
}
.hp-card-body {
  background: #fff;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* Selectors grid */
.hp-select-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.hp-field-full {
  grid-column: 1 / -1;
}
.hp-label {
  display: block;
  font-size: 11px;
  color: #B07A5A;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 4px;
}
.hp-select {
  width: 100%;
  padding: 8px 10px;
  border: 1.5px solid #F0D5C0;
  border-radius: 8px;
  font-size: 13px;
  background: #FFFAF6;
  color: #3D1F0A;
  font-family: 'Manrope', sans-serif;
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
  cursor: pointer;
}
.hp-select:focus {
  border-color: #D4631A;
}
.hp-select:disabled {
  opacity: .4;
  background: #F9F5F2;
  cursor: not-allowed;
}
/* Locked field */
.hp-locked-field {
  width: 100%;
  padding: 8px 10px;
  border: 1.5px solid #E8C4A0;
  border-radius: 8px;
  font-size: 13px;
  background: #FFF5EE;
  color: #3D1F0A;
  font-family: 'Manrope', sans-serif;
  box-sizing: border-box;
  cursor: default;
  pointer-events: none;
}
.hp-preselected {
  color: #D4631A;
  font-size: 10px;
  font-weight: 600;
  margin-left: 4px;
}
/* Intent row */
.hp-intent-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 24px;
  margin-bottom: 24px;
}
.hp-intent-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1.5px solid #F0D5C0;
  background: #fff;
  color: #B07A5A;
  border-radius: 8px;
  padding: 7px 4px;
  font-size: 12px;
  font-weight: 500;
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
  transition: all .2s;
  line-height: 1.3;
}
.hp-intent-btn .ti {
  font-size: 13px;
}
.hp-intent-btn:hover {
  border-color: #E8A87C;
  background: #FFF5EE;
}
.hp-intent-btn.active {
  border-color: #D4631A;
  color: #D4631A;
  background: #FFF3EB;
}
/* Name/Phone fields */
.hp-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 20px;
}
.hp-input {
  width: 100%;
  padding: 8px 11px;
  border: 1.5px solid #F0D5C0;
  border-radius: 8px;
  font-size: 13px;
  background: #FFFAF6;
  outline: none;
  font-family: 'Manrope', sans-serif;
  color: #3D1F0A;
  box-sizing: border-box;
  transition: border-color .2s;
}
.hp-input:focus {
  border-color: #D4631A;
}
.hp-input::placeholder {
  color: #B0A89E;
}
.hp-input.error {
  border-color: #D4631A;
}
/* Buttons */
.hp-btn {
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
  border: none;
  transition: background .2s;
}
.hp-btn-primary {
  background: #D4631A;
  color: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.hp-btn-primary:hover {
  background: #B8521A;
}
.hp-btn-submit {
  width: 100%;
  padding: 11px;
  margin-top: 20px;
  background: #D4631A;
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.hp-btn-submit:hover {
  background: #B8521A;
}
.hp-btn-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
}
/* Error */
.hp-error {
  display: none;
  font-size: 12px;
  color: #D4631A;
  text-align: center;
}
.hp-error.show {
  display: block;
}
/* Field wrapper (for locking swap) */
.hp-field-wrap {
  position: relative;
}
/* Missing field highlight */
.hp-select.missing, .hp-input.missing {
  border-color: #D4631A;
}


/* Loading state */
.card-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px 16px;
  text-align: center;
  color: #B07A5A;
  font-size: 14px;
}
.card-spin {
  font-size: 28px;
  animation: card-spin 1s linear infinite;
}
@keyframes card-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Mobile responsive */
@media (max-width: 480px) {
  .hp-fields-row { grid-template-columns: 1fr; }
  .hp-intent-btn { font-size: 11px; padding: 6px 2px; }
  .hp-intent-btn .ti { font-size: 11px; }
}


/* ══════════════════════════════════════════════════════════════
   NEW DESIGN SYSTEM — region.html redesign
   Colors: #3B2A52 primary  ·  #E8912D accent  ·  #EAEDED bg
   Fonts : Montserrat 700/800 headings  ·  Mulish body
   ══════════════════════════════════════════════════════════════ */

/* ── Font & body overrides ─────────────────────────────────── */
.region-page {
  font-family: 'Mulish', sans-serif;
  background: #EAEDED;
}
.region-page h1,
.region-page h2,
.region-page h3 {
  font-family: 'Montserrat', sans-serif;
}
.region-page .section-tag  { color: #E8912D; }
.region-page .section-title { color: #2C2438; }
.region-page .section-sub  { color: #5a5565; }

/* ── Header override ───────────────────────────────────────── */
.region-page .site-header {
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid #F0EAE2;
}
.region-page .header-inner { justify-content: center; position: relative; }
/* Hamburger: absolute left, logo stays centered via flex */
.region-page .hamburger-btn {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-reserve-btn {
  background: #E8912D;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .82rem;
  padding: 9px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
  letter-spacing: .01em;
}
.header-reserve-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,145,45,.45);
}

/* ── HERO — full-bleed dark ────────────────────────────────── */
.region-page .hero {
  position: relative;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #3B2A52;
  overflow: hidden;
  padding: 0;
}
/* Hide the old hero grid from legacy HTML (not present in new HTML but safety) */
.region-page .hero-grid { display: none !important; }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
/* ── CSS-only hero background ─────────────────────────── */
.region-page .hero {
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(232,145,45,.13) 0%, transparent 65%),
              radial-gradient(ellipse 60% 80% at 20% 80%, rgba(120,80,200,.18) 0%, transparent 60%),
              linear-gradient(145deg, #0D0820 0%, #1E1438 45%, #150E2C 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Decorative concentric rings — top-right corner */
.hero-decor-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232,145,45,.18);
}
.hero-decor-ring-1 {
  width: 520px; height: 520px;
  right: -130px; top: -130px;
}
.hero-decor-ring-2 {
  width: 360px; height: 360px;
  right: -50px; top: -50px;
  border-color: rgba(232,145,45,.12);
}
.hero-decor-ring-3 {
  width: 210px; height: 210px;
  right: 30px; top: 30px;
  border-color: rgba(232,145,45,.22);
  border-width: 1.5px;
}

/* Warm orange glow in top-right */
.hero-decor-glow {
  position: absolute;
  width: 400px; height: 400px;
  right: -80px; top: -80px;
  background: radial-gradient(circle, rgba(232,145,45,.12) 0%, transparent 70%);
  border-radius: 50%;
}

/* Remove old overlay + img styles */
.hero-bg-img { display: none; }
.hero-overlay { display: none; }

@media (max-width: 768px) {
  /* Hide rings on mobile — too large and distracting on small screens */
  .hero-decor-ring,
  .hero-decor-glow { display: none; }
}
.hero-content-wrap {
  position: relative;
  z-index: 2;
  padding: 72px 0 80px;
}
.region-page .hero-content {
  max-width: 640px;
  padding: 0;
  align-items: flex-start;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #E8912D;
  margin-bottom: 14px;
}
.hero-title-highlight {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 800;
  color: #F0A63E;
  line-height: .88;
  letter-spacing: -3px;
  margin-bottom: 6px;
}
.hero-title-sub {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.2rem, 2.6vw, 1.85rem);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -.5px;
  margin-bottom: 18px;
}
.region-page .hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.78);
  max-width: 500px;
  margin-bottom: 22px;
  line-height: 1.75;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.hero-chip {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
}
.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-reserve-btn {
  background: #E8912D;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 15px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(232,145,45,.5);
  letter-spacing: .01em;
}
.hero-reserve-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,145,45,.6);
}
.hero-watch-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.82);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: color .2s;
}
.hero-watch-btn:hover { color: #fff; }
.play-circle {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.14);
  border: 1.5px solid rgba(255,255,255,.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}
.hero-watch-btn:hover .play-circle { background: rgba(255,255,255,.24); }
.play-tri {
  width: 0;
  height: 0;
  border-left: 12px solid #fff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 3px;
}

/* ── Trust strip ───────────────────────────────────────────── */
.trust-strip {
  background: #E8912D;
  padding: 22px 0;
}
.trust-strip .trust-num { color: #3B2A52; }
.trust-strip .trust-lbl { color: rgba(59,42,82,.75); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 4px 0;
}
.trust-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: #3B2A52; /* dark purple on orange bg */
  line-height: 1;
}
.trust-lbl {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(59,42,82,.7);
  letter-spacing: .04em;
}

/* ── Journey roadmap section ───────────────────────────────── */
.journey-section {
  background: #FFFAF5;
  padding: 88px 0 80px;
}
.journey-header {
  text-align: center;
  margin-bottom: 60px;
}
.journey-header .section-sub {
  max-width: 600px;
}
.journey-path {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 56px;
}
.journey-arrow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 64px;
  font-size: 1.6rem;
  color: #C3B8D4;
  flex-shrink: 0;
  width: 40px;
}
.journey-step {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px 22px;
  border: 1.5px solid rgba(59,42,82,.1);
  box-shadow: 0 4px 24px rgba(59,42,82,.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.journey-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(59,42,82,.13);
}
.step-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9C8DB0;
}
.step-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f0edf8, #e8e0f0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.step-1 .step-icon-wrap { background: linear-gradient(135deg,#fdf0e4,#fbe0c4); }
.step-2 .step-icon-wrap { background: linear-gradient(135deg,#fdf0e4,#fbe0c4); }
.step-3 .step-icon-wrap { background: linear-gradient(135deg,#fdf0e4,#fbe0c4); }
.step-4 .step-icon-wrap { background: linear-gradient(135deg,#fdf0e4,#fbe0c4); }

.step-body { flex: 1; }
.step-tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #E8912D;
  margin-bottom: 6px;
}

.step-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #2C2438;
  margin: 0 0 8px;
  line-height: 1.3;
}
.step-desc {
  font-size: .85rem;
  color: #5a5565;
  line-height: 1.65;
  margin: 0 0 12px;
}
.step-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.step-perks li {
  font-size: .8rem;
  color: #5a5565;
  font-weight: 600;
}
.step-urgency {
  background: #FFF5E6;
  color: #C87A1A;
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  text-align: center;
  border: 1px solid #FDDAA8;
  align-self: flex-start;
}
.step-badge-new {
  background: #F5F1EA;
  color: #6B6560;
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  text-align: center;
  border: 1px solid #E4DED4;
  align-self: flex-start;
}
.step-badge-free {
  background: #F5F1EA;
  color: #6B6560;
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  text-align: center;
  border: 1px solid #E4DED4;
  align-self: flex-start;
}
.journey-cta-wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.journey-cta-btn {
  background: #3B2A52;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  padding: 16px 44px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(59,42,82,.35);
  letter-spacing: .01em;
}
.journey-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(59,42,82,.45);
}
.journey-cta-note {
  font-size: .82rem;
  color: #9C8DB0;
  font-weight: 600;
}

/* ── Benefits section (flip cards) overrides ───────────────── */
.region-page .benefits { background: #fff; }
.region-page .flip-back {
  background: linear-gradient(145deg, #3B2A52, #5A3D7A);
}
.region-page .flip-back p { color: #fff; }
.region-page .t-avatar { border-color: #E8912D; }
.region-page .t-quote { border-left-color: #E8912D; }
.region-page .c-btn { border-color: #E8912D; color: #E8912D; }
.region-page .c-btn:hover { background: #E8912D; color: #fff; }
.region-page .c-dot.active { background: #E8912D; }

/* ── Video section ──────────────────────────────────────────── */
.region-page .video-section { background: #EAEDED; }
.video-section-header { text-align: center; margin-bottom: 32px; }

/* ── Science section ────────────────────────────────────────── */
.region-page .science { background: #EDE8F4; }
.region-page .stat-num { color: #E8912D; }
.region-page .stat-box::before { background: linear-gradient(135deg,#F5A05A,#E8912D); }

/* ── FAQ overrides ─────────────────────────────────────────── */
.region-page .faq { background: #FFFFFF; }
.region-page .faq-q:hover { background: #FFF5EE; }
.region-page .faq-icon { background: #55504B; }
.region-page .faq-item.open .faq-icon { background: #E8912D; }

/* ── Footer padding — leave space for float bar ────────────── */
.region-page .site-footer-orig {
  padding-bottom: 90px;
}

/* ── FLOATING REGISTER BAR ─────────────────────────────────── */
.float-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #fff;
  border-top: 1px solid rgba(59,42,82,.12);
  box-shadow: 0 -4px 28px rgba(59,42,82,.14);
  padding: 12px 20px;
}
.float-cta-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.float-cta-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.float-cta-text strong {
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem;
  font-weight: 800;
  color: #2C2438;
}
.float-cta-text span {
  font-size: .75rem;
  color: #6E6A76;
  font-weight: 600;
}
.float-cta-btn {
  background: #E8912D;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(232,145,45,.4);
  letter-spacing: .01em;
}
.float-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(232,145,45,.5);
}

/* ── BOTTOM SHEET ──────────────────────────────────────────── */
.sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8,4,18,.72);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
  backdrop-filter: blur(3px);
}
.sheet-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  /* Two-tone: dark purple header top, cream-white body */
  background:
    linear-gradient(160deg, #0D0820 0%, #1E1438 100%) top / 100% 68px no-repeat,
    #FAFAFE;
  border-radius: 28px 28px 0 0;
  padding: 10px 22px 24px;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.32,.72,0,1);
  box-shadow: 0 -16px 60px rgba(8,4,18,.4);
  overflow: hidden;
}
.bottom-sheet.open {
  transform: translateY(0);
}
.sheet-grabber {
  width: 40px;
  height: 4px;
  background: rgba(255,255,255,.22);
  border-radius: 50px;
  margin: 0 auto 14px;
  flex-shrink: 0;
}
.sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.sheet-head-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.sheet-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.2;
}
.sheet-region-chip {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
  font-family: 'Manrope', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: .02em;
  white-space: nowrap;
}
.sheet-region-chip:empty { display: none; }
.sheet-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}
.sheet-close:hover { background: rgba(255,255,255,.22); }
.sheet-scroll {
  overflow-y: visible;
  padding-bottom: 4px;
}
.sheet-disclaimer {
  text-align: center;
  font-size: .72rem;
  color: #9a94a2;
  padding-top: 10px;
  flex-shrink: 0;
  font-weight: 600;
  line-height: 1.5;
}

/* ── Sheet form card wrappers ── */
.bottom-sheet .hp-card {
  max-width: 100%;
  border: none;
  border-radius: 0;
  margin: 0;
  background: transparent;
}
.bottom-sheet .hp-card-body {
  background: transparent;
  padding: 0;
}

/* ── Field labels ── */
.hp-label {
  display: block;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #6B6560;
  margin-bottom: 5px;
}
.hp-field { margin-bottom: 4px; }
.hp-select-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 4px;
}
.hp-field-full { grid-column: 1 / -1; }

/* Layout overrides: hide Area (shown in header), Centre full row, Dates+Timing side by side */
#hpAreaField    { display: none; }
#hpCentreField  { grid-column: 1 / -1; }
#hpDatesField   { grid-column: auto; }
#hpTimingField  { grid-column: auto; }

/* ── Dropdowns ── */
.hp-select {
  width: 100%;
  padding: 11px 32px 11px 12px;
  border-radius: 10px;
  border: 1.5px solid #E6DED2;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6560' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 12px center;
  -webkit-appearance: none;
  appearance: none;
  font-family: 'Manrope', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  color: #1E1438;
  cursor: pointer;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.hp-select:focus {
  border-color: #D4631A;
  box-shadow: 0 0 0 3px rgba(123,94,160,.12);
  background-color: #fff;
}
.hp-select:disabled {
  opacity: .4;
  background-color: #FFF5EE;
  cursor: not-allowed;
}

/* ── Locked / pre-selected ── */
.hp-locked-field {
  width: 100%;
  padding: 11px 12px;
  border-radius: 10px;
  background: #FFF9F2;
  border: 1.5px solid #E6DED2;
  font-family: 'Manrope', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: #55504B;
  display: flex;
  align-items: center;
  gap: 7px;
}
.hp-locked-field::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  min-width: 17px;
  background: #E8912D;
  color: #fff;
  font-size: .6rem;
  font-weight: 900;
  border-radius: 50%;
}
.hp-preselected {
  font-size: .65rem;
  font-weight: 800;
  color: #E8912D;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-left: 2px;
}
.hp-field-wrap { position: relative; }
.hp-select.missing, .hp-input.missing {
  border-color: #E8453A;
  box-shadow: 0 0 0 3px rgba(232,69,58,.10);
}

/* ── 21 Days divider ── */
.sheet-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 10px;
}
.sheet-divider::before,
.sheet-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #E8E0F0;
}
.sheet-divider span {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9C8DB0;
  white-space: nowrap;
}

/* ── Add-on options container ── */
.sheet-addons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 4px;
}

/* ── Each add-on card ── */
.sheet-addon {
  position: relative;
  background: linear-gradient(135deg, #FFFBF5 0%, #F7F2FF 100%);
  border: 1.5px solid #EDE5FF;
  border-left: 4px solid #E8912D;
  border-radius: 12px;
  padding: 12px 14px 11px;
  margin-bottom: 0;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.sheet-addon:hover {
  border-color: #D0C5F0;
  background: linear-gradient(135deg, #FFF5EC 0%, #EEE8FF 100%);
}
/* Highlight when checkbox inside is checked */
.sheet-addon:has(.sheet-checkbox:checked) {
  border-left-color: #3B2A52;
  background: linear-gradient(135deg, #F5F0FF 0%, #EDE5FF 100%);
}
.sheet-addon-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: linear-gradient(135deg, #27AE60, #1a8a4a);
  color: #fff;
  font-size: .63rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 50px;
  letter-spacing: .05em;
  margin-top: 5px;
}
.sheet-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.sheet-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.sheet-checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #C3B8D4;
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: 2px;
  background: #fff;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sheet-checkbox:checked + .sheet-checkbox-custom {
  background: linear-gradient(135deg, #E8912D, #D4631A);
  border-color: #E8912D;
}
.sheet-checkbox:checked + .sheet-checkbox-custom::after {
  content: '✓';
  color: #fff;
  font-size: .75rem;
  font-weight: 900;
}
.sheet-addon-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sheet-addon-text strong {
  font-size: .88rem;
  font-weight: 800;
  color: #2C2438;
  line-height: 1.25;
}
.sheet-addon-text > span:not(.sheet-addon-badge) {
  font-size: .74rem;
  color: #6E6080;
  font-weight: 600;
}

/* ── Intent toggle ── */
.hp-intent-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 16px 0 16px;
}
.hp-intent-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 4px;
  border-radius: 50px;
  border: 1.5px solid #DDD8E8;
  background: #fff;
  color: #6E6080;
  font-family: 'Manrope', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  line-height: 1;
}
.hp-intent-btn .ti { font-size: 13px; }
.hp-intent-btn:hover {
  border-color: #D4631A;
  color: #3B2A52;
  background: #FFFAF5;
}
.hp-intent-btn.active {
  background: linear-gradient(135deg, #3B2A52, #5A3F7A);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 3px 12px rgba(59,42,82,.28);
}

/* ── Name + Phone ── */
.hp-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.hp-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid #E6DED2;
  background: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  color: #1E1438;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}
.hp-input:focus {
  border-color: #3B2A52;
  box-shadow: 0 0 0 3px rgba(59,42,82,.10);
}
.hp-input::placeholder { color: #B0A5C0; font-weight: 500; }

/* ── Submit button ── */
.hp-btn { font-family: 'Montserrat', sans-serif; cursor: pointer; border: none; }
.hp-btn-submit {
  width: 100%;
  padding: 15px;
  border-radius: 50px;
  background: linear-gradient(135deg, #E8912D 0%, #C96E1A 100%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 24px rgba(232,145,45,.38);
  border: none;
  cursor: pointer;
  transition: all .25s;
}
.hp-btn-submit:hover {
  background: linear-gradient(135deg, #D4631A, #B8521A);
  box-shadow: 0 8px 32px rgba(232,145,45,.52);
  transform: translateY(-1px);
}
.hp-btn-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.hp-btn-primary {
  background: linear-gradient(135deg, #E8912D, #C96E1A);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
}

/* ── Error ── */
.hp-error {
  display: none;
  color: #C0392B;
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 12px;
  background: rgba(192,57,43,.08);
  border-radius: 8px;
  margin-top: 10px;
  text-align: center;
}
.hp-error.show { display: block; }

/* ── Desktop: centered modal card ── */
@media (min-width: 769px) {
  .bottom-sheet {
    left: 50%;
    right: auto;
    bottom: 32px;
    width: 580px;
    border-radius: 24px;
    transform: translateX(-50%) translateY(calc(100% + 48px));
    box-shadow: 0 24px 70px rgba(8,4,18,.48);
  }
  .bottom-sheet.open {
    transform: translateX(-50%) translateY(0);
  }
}

/* ── Mobile tweaks ── */
@media (max-width: 480px) {
  .hp-fields-row { grid-template-columns: 1fr; }
  .hp-intent-btn { font-size: .75rem; padding: 9px 2px; }
  .hp-intent-btn .ti { font-size: 11px; }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .journey-path {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    row-gap: 20px;
  }
  .journey-step:nth-child(4) { grid-column: 1; }
  .journey-step:nth-child(6) { grid-column: 3; }
  .journey-arrow:nth-child(5) { display: none; }
  .journey-arrow:nth-child(3) { grid-column: 2; grid-row: 1; }
}
@media (max-width: 768px) {
  /* Hero mobile — new layout: title → photo → benefits → cta */
  .region-page .hero {
    background: #FAF9F6;
    min-height: unset;
    display: flex;
    flex-direction: column;
    padding-bottom: 36px;
  }
  /* Hide desktop-only hero elements on mobile */
  .hero-desktop-photo,
  .region-page .hero .hero-bg,
  .region-page .hero .hero-sub,
  .region-page .hero .hero-benefits,
  .region-page .hero .hero-actions { display: none; }
  /* Title block — compact padding on mobile */
  .hero-content-wrap { padding: 12px 0 8px; background: #FAF9F6; }
  .hero-title-highlight { font-size: clamp(2.8rem, 12vw, 3.8rem); }
  .region-page .hero-content { text-align: center; align-items: center; padding-bottom: 0; }
  .hero-chips { justify-content: center; }
  /* "Happiness Program" white on dark mobile background */
  .region-page .hero .hero-title-main { color: #343130 !important; }

  /* ── Mobile photo (full width) ── */
  .hero-mobile-photo {
    display: block;
    width: 100%;
    height: 260px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    margin-top: 0;
  }
  .hero-mobile-photo::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 64px;
    background: linear-gradient(to bottom, #FAF9F6, rgba(250,249,246,0));
    z-index: 1;
    pointer-events: none;
  }
  .hero-mobile-photo img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }
  .hero-mobile-overlay {
    position: relative;
    z-index: 2;
    margin: -40px 5% 0;  /* pull 80% up into photo, 20% sits in benefits zone */
    background: rgba(48,33,68,.93);
    border-radius: 18px;
    padding: 14px 18px 16px;
    font-family: 'Mulish', sans-serif;
    font-size: .84rem;
    line-height: 1.6;
    color: rgba(255,255,255,.92);
    text-align: center;
    box-shadow: 0 12px 36px rgba(59,42,82,.30);
  }
  .hero-mobile-overlay strong { color: #F4B84A; font-weight: 700; }

  /* ── Mobile benefits 2×2 grid ── */
  .hero-mobile-bottom {
    padding: 16px 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-mobile-benefits {
    list-style: none;
    padding: 0; margin: 0 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 16px;
    width: 100%;
    text-align: center;
  }
  .hero-mobile-benefits li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
  }
  .hero-mobile-benefits .benefit-verb {
    font-size: .75rem;
    letter-spacing: .08em;
  }
  .hero-mobile-benefits span:not(.benefit-verb) {
    font-family: 'Mulish', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    color: #343130;
    line-height: 1.3;
  }
  .hero-mobile-cta {
    width: 100%;
    background: #E8912D;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    padding: 16px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    letter-spacing: .02em;
    box-shadow: 0 4px 24px rgba(232,145,45,.45);
  }

  /* Trust strip */
  .trust-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .trust-strip { padding: 18px 0; }

  /* Journey mobile — horizontal 85/15 peek carousel */
  .journey-section { padding: 48px 0 44px; overflow: hidden; }
  .journey-section .container { padding: 0; }
  .journey-section .journey-header { padding: 0 20px; }
  .journey-section .journey-cta-wrap { padding: 0 20px; }

  .journey-path {
    display: flex;
    flex-direction: row;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 20px; /* tells browser: snap points start 20px from left */
    -webkit-overflow-scrolling: touch;
    padding: 4px 0 16px 20px; /* 20px left so first card has visible gap */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .journey-path::-webkit-scrollbar { display: none; }
  /* Prevent first card from snapping flush to edge */
  .journey-step { scroll-snap-align: start; }

  .journey-step {
    flex: 0 0 85%;
    scroll-snap-align: start;
    min-width: 0;
  }

  /* Right breathing room after last card */
  .journey-path::after {
    content: '';
    flex: 0 0 20px;
  }

  /* Hide arrows on mobile */
  .journey-arrow { display: none; }

  /* Science/Research — horizontal scroll, 1 row, compact cards */
  .region-page .science { padding: 40px 0; }
  .region-page .science .science-header { padding: 0 20px; margin-bottom: 20px; }
  .stats-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 4px 20px 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-bottom: 20px;
  }
  .stats-grid::-webkit-scrollbar { display: none; }
  .stat-box {
    flex: 0 0 72%;
    scroll-snap-align: start;
    padding: 20px 16px 18px;
    border-radius: 16px;
  }
  .stat-icon { font-size: 1.4rem; margin-bottom: 6px; }
  .stat-num { font-size: 1.6rem !important; margin-bottom: 6px; }
  .stat-label { font-size: .8rem; }
  .region-page .science .science-caption { padding: 0 20px; font-size: .9rem; }
  .uni-logos { padding: 0 20px; gap: 20px; }

  /* Float bar compact */
  .float-cta-inner { gap: 12px; }
  .float-cta-text strong { font-size: .85rem; }
  .float-cta-btn { font-size: .85rem; padding: 11px 22px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero-reserve-btn { width: 100%; text-align: center; }
  .hero-watch-btn { font-size: .88rem; }
  .hero-chip { font-size: .72rem; padding: 4px 10px; }
  .journey-step { padding: 22px 18px 18px; }
  .step-title { font-size: .95rem; }
  .step-desc { font-size: .82rem; }

  /* Register Now — full-width edge-to-edge bar on mobile */
  .float-cta-bar {
    padding: 0;
    border-top: 2px solid #E8912D;
  }
  .float-cta-inner { padding: 0; margin: 0; max-width: 100%; }
  .float-cta-text { display: none; }
  .float-cta-btn {
    width: 100%;
    border-radius: 0;
    font-size: 1rem;
    padding: 18px 20px;
    letter-spacing: .06em;
  }
}

/* ══════════════════════════════════════════════════════════════
   SK PHOTO MOMENT SECTION
   ══════════════════════════════════════════════════════════════ */

/* ── Mobile (default): heading → photo → benefits → CTA ── */
.sk-moment {
  background: #1E1438;
  display: flex;
  flex-direction: column;
  padding-bottom: 44px;
}
.sk-moment-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 7vw, 2.4rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -.5px;
  text-align: center;
  padding: 28px 20px 16px;
  margin: 0;
}
.sk-moment-photo {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.sk-moment-photo img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.sk-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 66%;
  background: rgba(13,8,32,.84);
  padding: 12px 16px 14px;
  border-radius: 0 14px 0 0;
  font-family: 'Mulish', sans-serif;
  font-size: .84rem;
  line-height: 1.55;
  color: rgba(255,255,255,.9);
  text-align: center;
}
.sk-photo-overlay strong {
  color: #F4B84A;
  font-weight: 700;
}
.sk-moment-body {
  padding: 24px 20px 0;
  text-align: center;
}
.sk-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 12px;
}
.sk-benefits-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.sk-verb {
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 800;
  color: #F4B84A;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.sk-btext {
  font-family: 'Mulish', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  line-height: 1.3;
}
.sk-moment-cta {
  width: 100%;
  background: #E8912D;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  letter-spacing: .02em;
  box-shadow: 0 4px 24px rgba(232,145,45,.45);
  transition: transform .2s, box-shadow .2s;
}
.sk-moment-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,145,45,.6);
}

/* Desktop: photo LEFT col, content RIGHT col — grid for reliability */
@media (min-width: 769px) {
  .hero-mobile-photo,
  .hero-mobile-overlay,
  .hero-mobile-bottom { display: none; }

  /* 2-column grid: photo left 46%, content right rest */
  .region-page .hero {
    display: grid;
    grid-template-columns: 46% 1fr;
    grid-template-rows: 1fr;
    min-height: auto;
  }

  /* Photo: explicitly placed in column 1 */
  .hero-desktop-photo {
    display: block;
    grid-column: 1;
    grid-row: 1;
    position: relative;
    overflow: hidden;
  }
  .hero-desktop-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  /* Wide cinematic fade — starts from 15% of photo so blend feels natural */
  .hero-desktop-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
      rgba(13,8,32,0)   15%,
      rgba(13,8,32,.55) 60%,
      #0D0820           100%
    );
    pointer-events: none;
  }
  .hero-desktop-photo::after { display: none; }

  /* Content: explicitly placed in column 2 */
  .hero-content-wrap {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    padding: 0 48px 0 16px;
    /* Inset shadow fades the left edge of content into the photo blend */
    box-shadow: inset 90px 0 60px rgba(13,8,32,.65);
  }
  .region-page .hero .hero-content { max-width: 100%; padding: 56px 0; }

  /* Fix title colours — override old h1 span rule */
  .region-page .hero .hero-title-main { color: #FFFFFF !important; }
  .region-page .hero .hero-title-region { color: #E8912D !important; }

  /* Watch intro: move below button as subtle text link */
  .region-page .hero .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .region-page .hero .hero-watch-btn {
    font-size: .85rem;
    color: rgba(255,255,255,.6);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
  }
  .region-page .hero .hero-watch-btn:hover { color: rgba(255,255,255,.9); }
  .region-page .hero .play-circle {
    width: 28px; height: 28px;
    border: 1.5px solid rgba(255,255,255,.4);
  }

  /* Decorative rings replaced by photo */
  .hero-decor-ring, .hero-decor-glow { display: none; }
}

/* ── Desktop: photo left, heading+benefits right ── */
@media (min-width: 769px) {
  .sk-moment {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    padding-bottom: 0;
  }
  .sk-moment-heading {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    padding: 60px 60px 16px;
  }
  .sk-moment-photo {
    grid-column: 1;
    grid-row: 1 / 3;
    height: 100%;
    min-height: 460px;
    border-radius: 0 20px 20px 0;
  }
  .sk-photo-overlay { display: none; }
  .sk-moment-body {
    grid-column: 2;
    grid-row: 2;
    padding: 0 60px 60px;
    text-align: left;
  }
  .sk-benefits-list { justify-items: start; }
  .sk-benefits-list li { align-items: flex-start; }
  .sk-moment-cta { width: auto; }
}

/* ══════════════════════════════════════════════════════════════
   HEADER — hamburger left / logo center / register right
   ══════════════════════════════════════════════════════════════ */
.header-menu-btn {
  display: none; /* hidden on desktop */
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.header-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #3B2A52;
  border-radius: 2px;
  transition: .2s;
}
@media (max-width: 768px) {
  .region-page .header-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    position: relative;
  }
  .region-page .hamburger-btn {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
  .region-page .header-logo { height: 36px; }
  /* Hide region badge in header on mobile — shown in hero instead */
  .region-header-tag { display: none !important; }
  .header-reserve-btn {
    font-size: .78rem !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    white-space: nowrap;
  }
}

/* ══════════════════════════════════════════════════════════════
   HERO — new title structure
   ══════════════════════════════════════════════════════════════ */
.hero-title {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-title-main {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.9rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -1px;
  white-space: nowrap; /* keep "Happiness Program" on one line */
}
.hero-title-region {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #E8912D;
  line-height: 1.1;
  letter-spacing: -.3px;
}
@media (max-width: 380px) {
  /* Very small phones — allow wrap rather than overflow */
  .hero-title-main { white-space: normal; font-size: 1.7rem; }
}

/* Benefit bullet list */
.hero-benefits {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-benefits li {
  font-family: 'Mulish', sans-serif;
  font-size: .97rem;
  color: rgba(255,255,255,.85);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-benefits li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: #E8912D;
  border-radius: 50%;
  flex-shrink: 0;
}
.benefit-verb {
  color: #F4B84A;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem;
  letter-spacing: .02em;
}

/* ══════════════════════════════════════════════════════════════
   SCIENCE — flat compact design, no cards
   ══════════════════════════════════════════════════════════════ */
.region-page .science {
  background: #FFFAF5;
  padding: 44px 0;
}
.sci-top {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: center;
}
.sci-label-col .section-tag { color: #E8912D; margin-bottom: 8px; }
.sci-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: #343130;
  line-height: 1.2;
  margin-bottom: 10px;
}
.sci-unis {
  font-size: .78rem;
  font-weight: 700;
  color: #8A837C;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.sci-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.sci-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 8px;
  border-left: 1px solid #EFE4D6;
}
.sci-stat:first-child { border-left: none; }
.sci-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #E8912D;
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.sci-desc {
  font-size: .72rem;
  font-weight: 600;
  color: #6B6560;
  line-height: 1.3;
  display: block;
}
.sci-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #EFE4D6;
  flex-wrap: wrap;
}
.sci-logos img {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: .95;
  transition: opacity .2s;
}
.sci-logos img:hover { opacity: .85; }

@media (max-width: 768px) {
  .sci-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sci-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #EFE4D6;
  }
  .sci-stat {
    background: #FFFAF5;
    border-left: none;
    padding: 18px 12px;
  }
  .sci-logos { gap: 24px; margin-top: 20px; }
  .sci-logos img { height: 22px; }
}


/* ── Float CTA bar: hidden until user scrolls halfway ── */
.float-cta-bar {
  transform: translateY(110%);
  transition: transform .35s ease;
}
.float-cta-bar.fcb-visible { transform: translateY(0); }


/* ── All register/CTA buttons: one deep purple ── */
.header-reserve-btn, .hero-reserve-btn, .hero-mobile-cta,
.journey-cta-btn, .float-cta-btn, .hp-btn-submit {
  background: #3B2A52 !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 20px rgba(59,42,82,.30) !important;
}


.hero-cta-note {
  margin: 4px 0 10px;
  font-family: 'Mulish', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: #6B6560;
  text-align: center;
}


/* Journey steps: no icons, no step numbers */
.journey-step .step-icon-wrap,
.journey-step .step-badge { display: none; }


/* ── Legal footer: stacked links, padded above float bar ── */
.legal-footer {
  background: #F2F0EC;
  border-top: 1px solid #E8E4DE;
  padding: 14px 16px 78px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.legal-footer .lf-sep { color: #D5D0C8; font-size: .7rem; }
.legal-footer a {
  font-family: 'Mulish', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  color: #8A837C;
  text-decoration: none;
}
.legal-footer a:hover { color: #D4631A; }
