/* ============================================================
   LONDON SCHOOL — Inner Pages Shared Styles
   Used by: gallery.html, campus.html, faculty.html, admissions.html
   ============================================================ */

/* ── PAGE HERO ── */
.pg-hero {
  background: var(--cream);
  padding: clamp(6rem, 10vw, 9rem) 0 clamp(3rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pg-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.pg-hero .sec-label { justify-content: center; margin-bottom: var(--s-3); }
.pg-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--navy);
  margin-bottom: var(--s-3);
  line-height: 1.15;
}
.pg-hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}
.pg-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-size: 0.85rem;
  color: var(--sand-500);
  margin-bottom: var(--s-4);
}
.pg-breadcrumb a { color: var(--navy); text-decoration: none; }
.pg-breadcrumb a:hover { color: var(--red); }
.pg-breadcrumb span { color: var(--sand-400); }

/* ── SECTION ALTERNATING BG ── */
.pg-section { padding: clamp(4rem, 7vw, 6rem) 0; background: var(--white); }
.pg-section--cream { background: var(--cream); }

/* ── GALLERY GRID ── */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  justify-content: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.gallery-filter {
  padding: var(--s-2) var(--s-5);
  border-radius: var(--r-pill);
  border: 2px solid var(--navy-100);
  background: transparent;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.gallery-filter:hover,
.gallery-filter.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.gallery-filter.active { background: var(--red); border-color: var(--red); }

.gallery-grid {
  columns: 3;
  column-gap: var(--s-4);
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--s-4);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item__cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--s-4) var(--s-4) var(--s-3);
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item__cap { opacity: 1; }

@media (max-width: 900px) { .gallery-grid { columns: 2; } }
@media (max-width: 600px) { .gallery-grid { columns: 1; } }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: var(--s-6);
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
}
.lightbox__close {
  position: absolute;
  top: var(--s-5);
  right: var(--s-5);
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.lightbox__close:hover { background: rgba(255,255,255,0.15); }

/* ── CAMPUS PAGE ── */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--s-6);
}
.facility-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  background: var(--white);
  transition: transform 0.3s, box-shadow 0.3s;
}
.facility-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}
.facility-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.facility-card__body {
  padding: var(--s-5);
}
.facility-card__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: var(--s-2);
}
.facility-card__body h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: var(--s-2); }
.facility-card__body p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }

/* Video section */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--s-6);
}
.video-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  background: var(--navy-dark);
  position: relative;
}
.video-wrap video {
  width: 100%;
  display: block;
  max-height: 280px;
  object-fit: cover;
}
.video-wrap__label {
  padding: var(--s-4) var(--s-5);
  color: var(--white);
}
.video-wrap__label h4 { font-size: 1rem; margin-bottom: var(--s-1); }
.video-wrap__label p { font-size: 0.85rem; color: rgba(255,255,255,0.65); }

@media (max-width: 600px) {
  .facility-grid, .video-grid { grid-template-columns: 1fr; }
}

/* Mural quote */
.mural-quote {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: clamp(3rem, 5vw, 4rem) 0;
}
.mural-quote::before {
  content: '"';
  position: absolute;
  top: -0.3em;
  left: 0.15em;
  font-size: 12rem;
  color: rgba(255,255,255,0.05);
  font-family: var(--font-heading);
  line-height: 1;
  pointer-events: none;
}
.mural-quote blockquote {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}
.mural-quote cite {
  display: block;
  margin-top: var(--s-4);
  font-size: 0.9rem;
  color: var(--sage);
  font-style: normal;
}

/* ── FACULTY PAGE ── */
.faculty-hero-photo {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  margin-bottom: clamp(3rem, 5vw, 4rem);
  background: var(--cream);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.faculty-hero-photo img { width: 100%; display: block; height: auto; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--s-6);
}
.team-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.team-card__photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top;
  display: block;
}
.team-card__body { padding: var(--s-5); }
.team-card__body h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: var(--s-1); }
.team-card__body .role {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--red);
  margin-bottom: var(--s-2);
}
.team-card__body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; }

.cpd-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}
.cpd-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  aspect-ratio: 4 / 3;
}
.cpd-photo img { width: 100%; height: 100%; display: block; object-fit: cover; }
@media (max-width: 600px) {
  .cpd-grid { grid-template-columns: 1fr; gap: var(--s-3); }
  .cpd-photo { aspect-ratio: 16 / 10; }
}

.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.value-card {
  background: var(--cream);
  border-radius: var(--r-xl);
  padding: var(--s-6) var(--s-5);
  text-align: center;
}
.value-card__ico {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--s-4);
}
.value-card__ico svg { width: 26px; height: 26px; }
.value-card h4 { color: var(--navy); margin-bottom: var(--s-2); }
.value-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
@media (max-width: 768px) { .values-row { grid-template-columns: 1fr; } }

/* ── ADMISSIONS PAGE ── */
.adm-hero-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-bottom: clamp(3rem, 5vw, 4rem);
}
.adm-stat {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--s-6) var(--s-5);
  text-align: center;
  box-shadow: var(--sh-sm);
}
.adm-stat__num {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: var(--s-1);
}
.adm-stat__lbl { font-size: 0.9rem; color: var(--text-muted); }
@media (max-width: 600px) { .adm-hero-strip { grid-template-columns: 1fr; } }

.steps-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  max-width: 700px;
  margin: 0 auto;
}
.step {
  display: flex;
  gap: var(--s-5);
  align-items: flex-start;
}
.step__num {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-sm);
}
.step__body h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: var(--s-1); }
.step__body p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }

.adm-cta-strip {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  margin-top: clamp(3rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.adm-cta-strip h2 { color: var(--white); margin-bottom: var(--s-3); }
.adm-cta-strip p { color: rgba(255,255,255,0.75); margin-bottom: var(--s-6); max-width: 500px; margin-left: auto; margin-right: auto; }
.adm-cta-strip .cta-btns { display: flex; gap: var(--s-3); justify-content: center; flex-wrap: wrap; }

/* Fee cards reuse from index, minor tweak for standalone page */
.fees-standalone .fee-grid { margin-top: 0; }

/* ============================================================
   AD LANDING HERO — Admissions funnel hero with lead form
   Used by: enroll.html (Meta ad traffic landing)
   ============================================================ */
.adm-hero-ad {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  padding: clamp(5.5rem, 8vw, 7rem) 0 clamp(3rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.adm-hero-ad::before {
  content: '';
  position: absolute;
  top: 0; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(122,195,158,0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.adm-hero-ad::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(242,213,197,0.3), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.adm-hero-ad__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  position: relative;
  z-index: 2;
}
.adm-hero-ad__content { padding-top: clamp(0.5rem, 2vw, 1.5rem); }
.adm-hero-ad__h1 {
  font-size: clamp(2rem, 3.8vw + 0.3rem, 3.4rem);
  line-height: 1.1;
  color: var(--navy);
  margin: var(--s-3) 0 var(--s-5);
  letter-spacing: -0.01em;
}
.adm-hero-ad__accent {
  background: linear-gradient(120deg, var(--red) 0%, #E8604A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.adm-hero-ad__lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: var(--s-6);
  max-width: 560px;
}
.adm-hero-ad__lead strong { color: var(--navy); font-weight: 700; }
.adm-hero-ad__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.adm-hero-ad__bullets li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.5;
}
.adm-hero-ad__bullets svg {
  width: 20px; height: 20px;
  color: var(--sage);
  flex-shrink: 0;
  margin-top: 2px;
}
.adm-hero-ad__trust {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);
  border-radius: var(--r-pill);
  width: fit-content;
  box-shadow: var(--sh-sm);
}
.adm-hero-ad__trust-ico {
  width: 22px; height: 22px;
  color: var(--sage);
  flex-shrink: 0;
}
.adm-hero-ad__trust p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}
.adm-hero-ad__trust strong { color: var(--navy); font-weight: 700; }

/* ============================================================
   LEAD FORM — High-converting form with scarcity + UTM + honeypot
   ============================================================ */
.lead-form-wrap {
  position: sticky;
  top: 100px;
}
.lead-form {
  background: var(--white);
  border-radius: var(--r-2xl);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  box-shadow: 0 20px 60px rgba(30,29,27,0.12), 0 0 0 1px rgba(30,29,27,0.04);
  position: relative;
  overflow: hidden;
}
.lead-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--sage), var(--peach));
}
.lead-form__scarcity {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-3);
  background: var(--red-50);
  border-radius: var(--r-md);
  margin-bottom: var(--s-4);
  font-size: 0.82rem;
  color: var(--navy-dark);
  line-height: 1.4;
}
.lead-form__scarcity strong { color: var(--red); font-weight: 800; }
.lead-form__scarcity-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(193,53,61,0.6);
  animation: lf-pulse 2s infinite;
}
@keyframes lf-pulse {
  0% { box-shadow: 0 0 0 0 rgba(193,53,61,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(193,53,61,0); }
  100% { box-shadow: 0 0 0 0 rgba(193,53,61,0); }
}
@media (prefers-reduced-motion: reduce) { .lead-form__scarcity-dot { animation: none; } }
.lead-form__title {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: var(--navy);
  margin: 0 0 var(--s-2);
  line-height: 1.2;
}
.lead-form__sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 var(--s-5);
  line-height: 1.5;
}
.lead-form__field { margin-bottom: var(--s-3); }
.lead-form__field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--s-1);
}
.lead-form__field input,
.lead-form__field select {
  width: 100%;
  padding: 13px 14px;
  border: 2px solid var(--sand-100);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.lead-form__field input::placeholder { color: var(--sand-400); }
.lead-form__field input:focus,
.lead-form__field select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(193,53,61,0.12);
}
.lead-form__field input:user-invalid,
.lead-form__field select:user-invalid,
.lead-form__field input:invalid:not(:placeholder-shown):not(:focus) {
  border-color: var(--red-light);
}
.lead-form__field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232F5581' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.lead-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
}
.lead-form__honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
}
.lead-form__submit {
  width: 100%;
  margin-top: var(--s-3);
  padding: 15px 24px;
  font-size: 1rem;
}
.lead-form__submit[disabled] { opacity: 0.7; cursor: wait; }
.lead-form__submit svg { transition: transform var(--dur-fast) var(--ease); }
.lead-form__submit:hover svg { transform: translateX(3px); }
.lead-form__divider {
  display: flex;
  align-items: center;
  margin: var(--s-4) 0;
  color: var(--sand-400);
  font-size: 0.8rem;
}
.lead-form__divider::before,
.lead-form__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--sand-100);
}
.lead-form__divider span { padding: 0 var(--s-3); }
.lead-form__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  width: 100%;
  padding: 13px 24px;
  background: #f0faf5;
  border: 2px solid #25D366;
  border-radius: var(--r-pill);
  color: #0c5635;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--dur-fast) var(--ease);
}
.lead-form__whatsapp:hover {
  background: #25D366;
  color: white;
  transform: translateY(-1px);
}
.lead-form__whatsapp:hover svg path { fill: white; }
.lead-form__privacy {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  margin-top: var(--s-4);
  padding: var(--s-2) var(--s-3);
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.lead-form__privacy svg { color: var(--sage-dark); flex-shrink: 0; }
.lead-form__error {
  margin-top: var(--s-3);
  padding: var(--s-3);
  background: var(--red-50);
  border-left: 3px solid var(--red);
  border-radius: var(--r-sm);
  color: var(--red-dark);
  font-size: 0.85rem;
  display: none;
}
.lead-form__error.show { display: block; }

/* ── Tablet/Mobile ── */
@media (max-width: 960px) {
  .adm-hero-ad__grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .lead-form-wrap { position: static; }
  .adm-hero-ad__content { padding-top: 0; }
  .adm-hero-ad__h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
}
@media (max-width: 600px) {
  .lead-form { padding: var(--s-5); border-radius: var(--r-xl); }
  .lead-form__row { grid-template-columns: 1fr; }
  .adm-hero-ad { padding-top: 5.5rem; }
  .adm-hero-ad__trust { width: 100%; }
  .adm-hero-ad__trust p { font-size: 0.82rem; }
}

/* ============================================================
   THANK-YOU PAGE — Post-submit confirmation + next-step nudges
   Used by: thank-you.html
   ============================================================ */
.ty-hero {
  background: linear-gradient(180deg, var(--sage-50) 0%, var(--cream) 100%);
  padding: clamp(6rem, 10vw, 9rem) 0 clamp(3rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.ty-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border-radius: var(--r-2xl);
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--sh-lg);
  position: relative;
}
.ty-check {
  width: 80px; height: 80px;
  margin: 0 auto var(--s-5);
  border-radius: 50%;
  background: var(--sage);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ty-pop 0.6s var(--ease) both;
  box-shadow: 0 8px 24px rgba(122,195,158,0.35);
}
.ty-check svg { width: 44px; height: 44px; animation: ty-draw 0.8s var(--ease) 0.2s both; }
@keyframes ty-pop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}
@keyframes ty-draw {
  0% { stroke-dasharray: 50; stroke-dashoffset: 50; }
  100% { stroke-dasharray: 50; stroke-dashoffset: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .ty-check, .ty-check svg { animation: none; }
}
.ty-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--navy);
  margin: 0 0 var(--s-3);
  line-height: 1.2;
}
.ty-lead {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--text-body);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto var(--s-6);
}
.ty-lead strong { color: var(--navy); font-weight: 700; }
.ty-accelerator {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  margin-top: var(--s-6);
}
.ty-accelerator__label {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 var(--s-3);
}
.ty-wa-btn {
  background: #25D366 !important;
  color: white !important;
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}
.ty-wa-btn:hover {
  background: #1fb955 !important;
  transform: translateY(-2px);
}
.ty-accelerator__phone {
  margin: var(--s-4) 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.ty-accelerator__phone a { color: var(--navy); font-weight: 700; text-decoration: underline; }

/* Steps override for thank-you (single column, larger) */
.ty-steps { max-width: 720px; margin: 0 auto; }

/* Explore grid */
.ty-explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s-5);
  max-width: 1040px;
  margin: 0 auto;
}
.ty-explore {
  display: block;
  background: var(--white);
  border: 2px solid var(--sand-100);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  transition: all var(--dur) var(--ease);
}
.ty-explore:hover {
  border-color: var(--navy-100);
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.ty-explore__ico {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-3);
}
.ty-explore h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0 0 var(--s-1);
}
.ty-explore p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   AI ROBOTICS PILLAR PAGE — ai-robotics.html
   Long-form, SEO-optimized, emoji-free, parent-trusted content.
   ============================================================ */

/* ── HERO (2-column: text + photo w/ floating badges) ── */
.ai-p-hero {
  padding: clamp(6rem, 10vw, 8.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(circle at 85% 10%, rgba(122,195,158,.18), transparent 55%),
    radial-gradient(circle at 15% 90%, rgba(242,213,197,.28), transparent 55%),
    var(--cream);
  position: relative;
  overflow: hidden;
}
.ai-p-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.ai-p-hero__text .sec-label { margin-top: var(--s-3); margin-bottom: var(--s-3); }

.ai-p-hero__h1 {
  font-size: clamp(1.8rem, 3.6vw, 2.9rem);
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--s-5);
  font-weight: 800;
}
.ai-p-hero__accent {
  display: block;
  color: var(--red);
  font-weight: 700;
  font-size: 0.88em;
  line-height: 1.15;
  margin-top: 8px;
}

.ai-p-hero__lead {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--text-body);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 0 var(--s-6);
}
.ai-p-hero__lead strong { color: var(--navy); font-weight: 700; }

.ai-p-hero__cta {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-bottom: var(--s-6);
}

.ai-p-hero__trust {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: 10px 18px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  width: fit-content;
  box-shadow: 0 2px 10px rgba(30,29,27,.04);
}
.ai-p-hero__trust-ico {
  width: 22px; height: 22px;
  color: var(--sage);
  flex-shrink: 0;
}
.ai-p-hero__trust p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.ai-p-hero__trust strong { color: var(--navy); font-weight: 700; }

/* Visual — photo with floating credential badges */
.ai-p-hero__visual {
  position: relative;
  min-height: 420px;
}
.ai-p-hero__photo {
  border-radius: 36px 52px 36px 52px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(30,29,27,.18), 0 2px 10px rgba(30,29,27,.06);
  aspect-ratio: 5 / 4;
}
.ai-p-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ai-p-hero__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(30,29,27,.14);
  max-width: 240px;
  animation: ai-p-float-soft 6s ease-in-out infinite;
}
.ai-p-hero__badge--cert {
  top: 24px; right: -16px;
}
.ai-p-hero__badge--stage {
  bottom: 24px; left: -16px;
  animation-delay: 1.5s;
}
@keyframes ai-p-float-soft {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .ai-p-hero__badge { animation: none; }
}

.ai-p-hero__badge-ico {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--red-50);
  color: var(--red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai-p-hero__badge-ico--sage {
  background: var(--sage-50);
  color: var(--sage-dark);
}
.ai-p-hero__badge-text strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--navy);
  line-height: 1.2;
}
.ai-p-hero__badge-text span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── STATS STRIP (dedicated band below hero) ── */
.ai-p-statbar {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: var(--white);
  border-bottom: 1px solid var(--sand-100);
}
.ai-p-statbar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}
.ai-p-statb {
  text-align: center;
  padding: var(--s-5) var(--s-4);
  background: var(--cream);
  border-radius: var(--r-lg);
  border: 1px solid var(--sand-100);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.ai-p-statb:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(30,29,27,.08);
  border-color: var(--navy-100);
  background: var(--white);
}
.ai-p-statb__ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--white);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s-3);
  box-shadow: 0 2px 6px rgba(30,29,27,.04);
}
.ai-p-statb__num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  line-height: 1;
  margin-bottom: var(--s-2);
  letter-spacing: -0.02em;
}
.ai-p-statb__num small {
  font-size: 0.45em;
  font-weight: 800;
  color: var(--red);
  margin-left: 4px;
  letter-spacing: 0;
}
.ai-p-statb__num--word {
  color: var(--red);
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
}
.ai-p-statb__lbl {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 4px;
}
.ai-p-statb__sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Responsive hero + stats */
@media (max-width: 960px) {
  .ai-p-hero__grid { grid-template-columns: 1fr; gap: var(--s-8); }
  .ai-p-hero__h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .ai-p-hero__lead { max-width: 100%; }
  .ai-p-hero__visual { min-height: 0; max-width: 560px; margin: 0 auto; width: 100%; }
  .ai-p-statbar__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .ai-p-hero__badge { max-width: 200px; padding: 10px 12px; gap: 10px; }
  .ai-p-hero__badge--cert { top: 16px; right: -8px; }
  .ai-p-hero__badge--stage { bottom: 16px; left: -8px; }
  .ai-p-hero__badge-ico { width: 36px; height: 36px; }
  .ai-p-hero__badge-text strong { font-size: 0.8rem; }
  .ai-p-hero__badge-text span { font-size: 0.66rem; }
  .ai-p-statbar__grid { grid-template-columns: 1fr 1fr; gap: var(--s-3); }
  .ai-p-statb { padding: var(--s-4) var(--s-3); }
  .ai-p-hero__cta .btn { width: 100%; }
}

/* Why we start at 3 — 2-column */
.ai-p-why__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.ai-p-why__text h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  color: var(--navy);
  line-height: 1.2;
  margin: var(--s-3) 0 var(--s-4);
  letter-spacing: -0.01em;
}
.ai-p-why__text p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: var(--s-4);
}
.ai-p-why__text p strong { color: var(--navy); font-weight: 700; }
.ai-p-why__text p em { color: var(--red); font-style: italic; }
.ai-p-why__img img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
}

/* 10-year path stages */
.ai-p-stages {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}
.ai-p-stage {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--s-6);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--sand-100);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.ai-p-stage:hover { border-color: var(--navy-100); box-shadow: var(--sh-md); }
.ai-p-stage--featured {
  background: linear-gradient(135deg, var(--red-50) 0%, var(--white) 60%);
  border-color: var(--red-100);
  box-shadow: 0 8px 24px rgba(193,53,61,0.08);
}
.ai-p-stage__meta {
  border-right: 2px solid var(--sand-100);
  padding-right: var(--s-4);
  position: relative;
}
.ai-p-stage--featured .ai-p-stage__meta { border-right-color: var(--red-100); }
.ai-p-stage__badge {
  display: inline-block;
  background: var(--red);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  margin-bottom: var(--s-3);
}
.ai-p-stage__age {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.ai-p-stage--featured .ai-p-stage__age { color: var(--red); }
.ai-p-stage__grade {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}
.ai-p-stage__body h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: var(--s-3);
  letter-spacing: -0.01em;
}
.ai-p-stage__body p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: var(--s-3);
}
.ai-p-stage__body p strong { color: var(--navy); font-weight: 700; }
.ai-p-stage__body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ai-p-stage__body li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.55;
  padding-top: 6px;
  padding-bottom: 6px;
}
.ai-p-stage__body li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 8px; height: 8px;
  background: var(--sage);
  border-radius: 50%;
}
.ai-p-stage--featured .ai-p-stage__body li::before { background: var(--red); }

/* Comparison table */
.ai-p-compare {
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--sand-100);
  box-shadow: var(--sh-sm);
}
.ai-p-compare table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.ai-p-compare thead th {
  background: var(--cream);
  padding: var(--s-4);
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--navy);
  text-align: left;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.ai-p-compare thead th.highlight {
  background: var(--red);
  color: white;
}
.ai-p-compare tbody th {
  text-align: left;
  padding: var(--s-3) var(--s-4);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
  background: var(--sand-50);
}
.ai-p-compare tbody td {
  padding: var(--s-3) var(--s-4);
  color: var(--text-body);
  border-top: 1px solid var(--sand-100);
}
.ai-p-compare tbody td.highlight {
  background: rgba(193,53,61,0.04);
  color: var(--navy);
  font-weight: 700;
  border-left: 3px solid var(--red);
}
.ai-p-compare tbody tr:hover td { background: var(--sand-50); }
.ai-p-compare tbody tr:hover td.highlight { background: rgba(193,53,61,0.08); }

/* Testimonial quotes */
.ai-p-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  max-width: 1080px;
  margin: 0 auto;
}
.ai-p-quote {
  background: var(--white);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: var(--r-lg);
  border: 1px solid var(--sand-100);
  margin: 0;
  position: relative;
}
.ai-p-quote::before {
  content: '\201C';
  position: absolute;
  top: -12px;
  left: 18px;
  font-family: 'Georgia', serif;
  font-size: 64px;
  color: var(--red);
  line-height: 1;
  font-weight: 700;
}
.ai-p-quote blockquote {
  margin: 0 0 var(--s-4);
  font-size: 0.98rem;
  color: var(--text-dark);
  line-height: 1.6;
  font-style: italic;
  padding-top: var(--s-2);
}
.ai-p-quote figcaption {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
  padding-top: var(--s-3);
  border-top: 1px solid var(--sand-100);
}
.ai-p-quote figcaption strong {
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.92rem;
}

/* FAQ accordion */
.ai-p-faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.ai-p-faq__item {
  background: var(--white);
  border: 1px solid var(--sand-100);
  border-radius: var(--r-lg);
  transition: border-color var(--dur) var(--ease);
}
.ai-p-faq__item[open] { border-color: var(--navy-100); }
.ai-p-faq__item summary {
  padding: var(--s-4) var(--s-5);
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  list-style: none;
  position: relative;
  padding-right: 50px;
  line-height: 1.35;
}
.ai-p-faq__item summary::-webkit-details-marker { display: none; }
.ai-p-faq__item summary::after {
  content: '+';
  position: absolute;
  right: var(--s-5);
  top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--sand-100);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s, background 0.2s;
}
.ai-p-faq__item[open] summary::after {
  content: '−';
  background: var(--red);
  color: white;
}
.ai-p-faq__item p {
  padding: 0 var(--s-5) var(--s-5);
  margin: 0;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 880px) {
  .ai-p-hero__stats { grid-template-columns: repeat(2, 1fr); }
  .ai-p-hero__stats > div:nth-child(2) { border-right: none; }
  .ai-p-hero__stats > div { border-bottom: 1px solid var(--sand-100); padding-bottom: var(--s-3); }
  .ai-p-hero__stats > div:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; padding-top: var(--s-3); }
  .ai-p-why__grid { grid-template-columns: 1fr; }
  .ai-p-stage { grid-template-columns: 1fr; gap: var(--s-4); }
  .ai-p-stage__meta { border-right: none; border-bottom: 2px solid var(--sand-100); padding-right: 0; padding-bottom: var(--s-3); }
  .ai-p-stage--featured .ai-p-stage__meta { border-bottom-color: var(--red-100); }
  .ai-p-compare { overflow-x: auto; }
  .ai-p-quotes { grid-template-columns: 1fr; max-width: 540px; }
}
@media (max-width: 520px) {
  .ai-p-hero__stats { grid-template-columns: 1fr; padding: var(--s-4); }
  .ai-p-hero__stats > div { border-right: none; border-bottom: 1px solid var(--sand-100); padding: var(--s-3) 0; }
  .ai-p-hero__stats > div:last-child { border-bottom: none; }
  .ai-p-compare { font-size: 0.85rem; }
  .ai-p-compare td, .ai-p-compare th { padding: var(--s-2) var(--s-3); }
}

/* ============================================================
   AI PILLAR PAGE — Storybook Adventure Map (emoji-free)
   Zigzag timeline with sticker badges, organic blob cards,
   and parent-quote speech bubbles. Scoped to ai-robotics.html.
   ============================================================ */
.adv-map {
  position: relative;
  padding: clamp(4.5rem, 7vw, 7rem) 0 clamp(3rem, 5vw, 5rem);
  background:
    radial-gradient(ellipse at top left,  rgba(242,213,197,.32), transparent 55%),
    radial-gradient(ellipse at top right, rgba(122,195,158,.2),  transparent 55%),
    radial-gradient(ellipse at bottom,    rgba(193,53,61,.06),   transparent 60%),
    var(--cream);
  overflow: hidden;
  isolation: isolate;
}

/* Decorative abstract shapes (no emojis) */
.adv-map__deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  opacity: 0.45;
}
.adv-map__deco--circle1 {
  top: 8%; left: 3%;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193,53,61,.25), transparent 65%);
  animation: adv-float-soft 10s ease-in-out infinite;
}
.adv-map__deco--circle2 {
  top: 60%; right: 4%;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,195,158,.22), transparent 65%);
  animation: adv-float-soft 12s ease-in-out infinite reverse;
}
.adv-map__deco--dot {
  top: 28%; right: 9%;
  width: 14px; height: 14px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.5;
  animation: adv-float-soft 8s ease-in-out infinite;
}
.adv-map__deco--plus {
  top: 76%; left: 7%;
  width: 20px; height: 20px;
  opacity: 0.35;
}
.adv-map__deco--plus::before,
.adv-map__deco--plus::after {
  content: '';
  position: absolute;
  background: var(--navy);
  border-radius: 2px;
}
.adv-map__deco--plus::before { inset: 9px 0; }
.adv-map__deco--plus::after  { inset: 0 9px; }
@keyframes adv-float-soft {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-16px); }
}
@media (prefers-reduced-motion: reduce) {
  .adv-map__deco { animation: none !important; }
}
@media (max-width: 700px) {
  .adv-map__deco--dot,
  .adv-map__deco--plus { display: none; }
}

/* Intro */
.adv-map__intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(3rem, 5vw, 4rem);
  position: relative;
  z-index: 2;
}
.adv-map__intro .sec-label { justify-content: center; margin-bottom: var(--s-3); }
.adv-map__title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.015em;
  margin-bottom: var(--s-4);
}
.adv-map__title-accent {
  position: relative;
  display: inline-block;
  color: var(--red);
}
.adv-map__squiggle {
  position: absolute;
  left: 0; right: 0;
  bottom: -10px;
  width: 100%;
  height: 12px;
  pointer-events: none;
}
.adv-map__lead {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--text-body);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto;
}

/* Path + vertical dashed connector */
.adv-map__path {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: var(--s-6) 0;
  z-index: 2;
}
.adv-map__path::before {
  content: '';
  position: absolute;
  top: 40px;
  bottom: 80px;
  left: 50%;
  width: 3px;
  background: repeating-linear-gradient(to bottom,
    rgba(47,85,129,.22) 0 8px,
    transparent 8px 16px);
  transform: translateX(-50%);
  z-index: 0;
}

/* Milestone row — age sticker + card paired tightly, pair zigzags L/R */
.adv-stop {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  max-width: min(100%, 620px);
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
.adv-stop:last-of-type { margin-bottom: clamp(2rem, 3vw, 3rem); }
.adv-stop--left  { margin-right: auto; margin-left: 0; }
.adv-stop--right { margin-left: auto;  margin-right: 0; flex-direction: row-reverse; }

/* Sticker */
.adv-stop__sticker {
  position: relative;
  flex-shrink: 0;
  width: clamp(100px, 12vw, 140px);
  height: clamp(100px, 12vw, 140px);
  border-radius: 50%;
  background: var(--white);
  box-shadow:
    0 8px 24px rgba(30,29,27,.12),
    inset 0 0 0 5px rgba(255,255,255,1),
    inset 0 0 0 7px var(--sand-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  transform: rotate(-6deg);
  transition: transform var(--dur) var(--ease);
  z-index: 3;
}
.adv-stop--right .adv-stop__sticker { transform: rotate(6deg); }
.adv-stop:hover .adv-stop__sticker { transform: rotate(0) scale(1.06); }
.adv-stop__sticker-age {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.adv-stop__sticker-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.adv-stop__sticker--gold {
  background: linear-gradient(135deg, #fff6df, #ffde6b);
  box-shadow:
    0 12px 32px rgba(255,180,0,.35),
    inset 0 0 0 5px rgba(255,255,255,1),
    inset 0 0 0 7px #ffde6b;
  transform: rotate(-8deg);
}
.adv-stop--right .adv-stop__sticker--gold { transform: rotate(8deg); }
.adv-stop__sticker--gold .adv-stop__sticker-age { color: #7a5700; }
.adv-stop__sticker-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 3px dashed var(--red);
  opacity: .4;
  animation: adv-ring-spin 20s linear infinite;
}
@keyframes adv-ring-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .adv-stop__sticker-ring { animation: none; }
}

/* Card */
.adv-stop__card {
  position: relative;
  flex: 1;
  min-width: 0;
  background: var(--white);
  padding: clamp(1.3rem, 2.5vw, 2rem);
  border-radius: 36px 42px 32px 48px / 44px 32px 48px 36px;
  box-shadow: 0 12px 36px rgba(30,29,27,.08), 0 2px 8px rgba(30,29,27,.04);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  border: 1.5px solid rgba(255,255,255,.8);
}
.adv-stop--left  .adv-stop__card { border-radius: 12px 36px 38px 48px / 18px 36px 48px 36px; }
.adv-stop--right .adv-stop__card { border-radius: 36px 12px 48px 38px / 36px 18px 36px 48px; }
.adv-stop:hover .adv-stop__card {
  transform: translateY(-5px) rotate(-.4deg);
  box-shadow: 0 20px 48px rgba(30,29,27,.12), 0 4px 12px rgba(30,29,27,.05);
}
.adv-stop--right:hover .adv-stop__card { transform: translateY(-5px) rotate(.4deg); }

/* Tints */
.adv-stop[data-tint="peach"]      .adv-stop__card { background: linear-gradient(135deg, var(--peach-50) 0%, var(--white) 60%); }
.adv-stop[data-tint="red"]        .adv-stop__card { background: linear-gradient(135deg, var(--red-50)  0%, var(--white) 60%); }
.adv-stop[data-tint="sage"]       .adv-stop__card { background: linear-gradient(135deg, var(--sage-50) 0%, var(--white) 60%); }
.adv-stop[data-tint="navy"]       .adv-stop__card { background: linear-gradient(135deg, var(--navy-50) 0%, var(--white) 60%); }
.adv-stop[data-tint="peach-warm"] .adv-stop__card { background: linear-gradient(135deg, var(--peach-100) 0%, var(--white) 60%); }

.adv-stop--featured .adv-stop__card {
  box-shadow:
    0 16px 44px rgba(193,53,61,.18),
    0 2px 8px rgba(193,53,61,.08),
    inset 0 0 0 2px rgba(193,53,61,.2);
}

/* SVG icon marker (replaces emoji) */
.adv-stop__ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--navy);
  margin-bottom: var(--s-3);
  box-shadow: 0 4px 10px rgba(30,29,27,.06);
  transition: transform var(--dur) var(--ease);
}
.adv-stop[data-tint="red"]        .adv-stop__ico { color: var(--red); }
.adv-stop[data-tint="sage"]       .adv-stop__ico { color: var(--sage-dark); }
.adv-stop[data-tint="navy"]       .adv-stop__ico { color: var(--navy); }
.adv-stop[data-tint="peach-warm"] .adv-stop__ico { color: var(--red-dark); }
.adv-stop:hover .adv-stop__ico { transform: rotate(-6deg) scale(1.08); }

/* "Unique in Pakistan" badge */
.adv-stop__badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: linear-gradient(135deg, var(--red) 0%, #e8604a 100%);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  box-shadow: 0 6px 16px rgba(193,53,61,.35);
  transform: rotate(4deg);
  z-index: 2;
  white-space: nowrap;
  text-transform: uppercase;
}

.adv-stop__chip {
  display: inline-block;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  box-shadow: 0 2px 6px rgba(30,29,27,.06);
  margin-bottom: var(--s-3);
}

.adv-stop__title {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: var(--s-3);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.adv-stop__title em {
  font-style: italic;
  color: var(--red);
  position: relative;
}

.adv-stop__text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: var(--s-4);
}
.adv-stop__text em { font-style: italic; color: var(--navy); }
.adv-stop__text strong { color: var(--navy); font-weight: 700; }

/* Bullets with dot markers (no emoji) */
.adv-stop__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-5);
}
.adv-stop__bullets li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.5;
  padding: 6px 0;
}
.adv-stop__bullet-dot {
  flex-shrink: 0;
  margin-top: 8px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sage);
}
.adv-stop[data-tint="red"] .adv-stop__bullet-dot { background: var(--red); }
.adv-stop[data-tint="navy"] .adv-stop__bullet-dot { background: var(--navy); }
.adv-stop[data-tint="peach-warm"] .adv-stop__bullet-dot { background: var(--red-dark); }

/* Parent quote bubble (not kid-voice on pillar page) */
.adv-stop__bubble {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--sand-100);
  border-radius: 18px 18px 6px 18px;
  padding: 12px 16px;
  margin-top: var(--s-3);
  transition: border-color var(--dur) var(--ease);
}
.adv-stop:hover .adv-stop__bubble { border-color: var(--sand-200); }
.adv-stop__bubble::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 22px;
  width: 13px; height: 13px;
  background: var(--white);
  border-right: 1.5px solid var(--sand-100);
  border-bottom: 1.5px solid var(--sand-100);
  transform: rotate(45deg);
}
.adv-stop__bubble strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.adv-stop__bubble p {
  margin: 0;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.5;
}

/* Finish line */
.adv-map__finish {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  max-width: 640px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: white;
  border-radius: 32px 48px 32px 48px;
  box-shadow: 0 16px 40px rgba(47,85,129,.3);
  position: relative;
  overflow: hidden;
}
.adv-map__finish::after {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(193,53,61,.22), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.adv-map__finish-badge {
  flex-shrink: 0;
  width: 72px; height: 72px;
  background: linear-gradient(135deg, #fff6df, #ffde6b);
  color: #7a5700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(255,180,0,.4);
  position: relative;
  z-index: 2;
  animation: adv-breathe 3s ease-in-out infinite;
}
@keyframes adv-breathe {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.05); }
}
@media (prefers-reduced-motion: reduce) {
  .adv-map__finish-badge { animation: none; }
}
.adv-map__finish-text { position: relative; z-index: 2; }
.adv-map__finish-text h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: white;
  margin: 0 0 4px;
  font-weight: 800;
}
.adv-map__finish-text p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,.85);
  line-height: 1.55;
}
.adv-map__finish-text strong { color: #ffde6b; }

/* Responsive */
@media (max-width: 880px) {
  .adv-map__path::before { left: 32px; }
  .adv-stop {
    max-width: 100%;
    margin-left: 0; margin-right: 0;
    flex-direction: row;
    gap: var(--s-4);
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  }
  .adv-stop--right { flex-direction: row; }
  .adv-stop__sticker {
    width: 64px; height: 64px;
    transform: rotate(-4deg);
  }
  .adv-stop--right .adv-stop__sticker { transform: rotate(4deg); }
  .adv-stop__sticker-age { font-size: 1rem; }
  .adv-stop__sticker-label { font-size: 0.6rem; margin-top: 0; }
  .adv-stop__sticker-ring { inset: -6px; border-width: 2px; }
  .adv-stop--left  .adv-stop__card,
  .adv-stop--right .adv-stop__card { border-radius: 16px 36px 38px 48px / 20px 36px 48px 36px; }
  .adv-map__finish { flex-direction: column; text-align: center; border-radius: 28px 36px 28px 36px; }
}
@media (max-width: 500px) {
  .adv-stop__badge { right: 12px; font-size: 0.62rem; padding: 5px 10px; }
  .adv-stop__card { padding: var(--s-4); }
}

/* Hide the simple ai-p-stage block on pillar page (legacy styles stay for other contexts) */
