/* ==========================================================================
   Global Reset & Box Model
   ========================================================================== */

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

@layer base {
  * {
    margin: 0;
    padding: 0;
  }
}

html {
  -webkit-text-size-adjust: 100%;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  list-style: none;
}

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

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

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

/* ==========================================================================
   Design Tokens
   ========================================================================== */

:root {
  /* Colors */
  --color-primary: #0d1959;
  --color-secondary: #fe5000;
  --color-background: #ffffff;
  --color-text: #000000;

  /* Typography */
  --font-serif: "Crimson Pro", Georgia, "Times New Roman", serif;
  --font-sans: "Poppins", system-ui, -apple-system, sans-serif;

  /* Base scale */
  --font-size-base: 1rem;
  --line-height-base: 1.5;

  /* Layout */
  --container-max-width: 77.5rem;
  --container-padding-inline: clamp(1rem, 4vw, 6.25rem);
  --section-padding-block: clamp(3rem, 8vw, 5rem);

  /* Header */
  --header-height: 60px;
  --header-top-offset: 1.5rem;
  --header-bottom-padding: 10px;
  --header-total-height: calc(var(--header-height) + var(--header-top-offset) + var(--header-bottom-padding));
  --nav-inactive-opacity: 0.5;
  --search-label-opacity: 0.4;
  --cta-gradient: linear-gradient(90deg, #1face2 0%, #1f4ee2 100%);
  --star-green: #009347;
  --card-shadow: 0 0 50px rgba(138, 43, 26, 0.15);
}

/* ==========================================================================
   Base Typography
   ========================================================================== */

body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background-color: var(--color-background);
  scroll-padding-top: var(--header-total-height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  color: var(--color-primary);
  line-height: 1.2;
}

/* ==========================================================================
   Layout Utilities
   ========================================================================== */

/* Unlayered so it wins over @layer base reset and matches Tailwind theme tokens */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding-inline);
}

.section {
  padding-block: var(--section-padding-block);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Section: Site header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-top: var(--header-top-offset);
  padding-bottom: var(--header-bottom-padding);
  background: transparent;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    padding 0.25s ease;
}

.site-header--scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: var(--color-background);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1rem;
}

.site-header__logo {
  flex: none;
  line-height: 0;
}

.site-header__logo img {
  width: 214px;
  height: 60px;
}

.site-header__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.site-header__menu-icon,
.site-header__menu-icon::before,
.site-header__menu-icon::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header__menu-icon {
  position: relative;
}

.site-header__menu-icon::before,
.site-header__menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.site-header__menu-icon::before {
  top: -6px;
}

.site-header__menu-icon::after {
  top: 6px;
}

.site-header__menu-toggle[aria-expanded="true"] .site-header__menu-icon {
  background: transparent;
}

.site-header__menu-toggle[aria-expanded="true"] .site-header__menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header__menu-toggle[aria-expanded="true"] .site-header__menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-header__nav-link {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  font-weight: 500;
  opacity: var(--nav-inactive-opacity);
  transition: opacity 0.2s ease, color 0.2s ease;
}

.site-header__nav-link:hover,
.site-header__nav-link:focus-visible {
  opacity: 1;
}

.site-header__nav-link--active {
  font-weight: 600;
  opacity: 1;
}

.site-header__nav-link:focus-visible,
.site-header__search:focus-visible,
.site-header__cta:focus-visible,
.hero__card:focus-within {
  outline: 2px solid #1face2;
  outline-offset: 2px;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex: none;
}

.site-header__search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  height: 2.5rem;
  padding: 0.625rem 1.25rem;
  border: none;
  border-radius: 3.75rem;
  background: transparent;
  cursor: pointer;
  color: var(--color-text);
}

.site-header__search-label {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  font-weight: 500;
  opacity: var(--search-label-opacity);
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 3.75rem;
  background: var(--cta-gradient);
  color: #ffffff;
  font-size: 0.8125rem;
  line-height: 1.25rem;
  font-weight: 600;
  white-space: nowrap;
}

.search-modal {
  width: min(32rem, calc(100% - 2rem));
  padding: 0;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
}

.search-modal::backdrop {
  background: rgba(0, 0, 0, 0.4);
}

.search-modal__inner {
  padding: 1.5rem;
}

.search-modal__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.search-modal__form {
  display: flex;
  gap: 0.5rem;
}

.search-modal__form input {
  flex: 1;
  min-width: 0;
  padding: 0.625rem 0.875rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.375rem;
}

.search-modal__form button,
.search-modal__close {
  padding: 0.625rem 1rem;
  border-radius: 0.375rem;
  border: none;
  background: var(--color-primary);
  color: #fff;
  cursor: pointer;
}

.search-modal__close {
  margin-top: 1rem;
  background: transparent;
  color: var(--color-text);
  border: 1px solid rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   Section: Hero / Banner
   ========================================================================== */

.section--hero {
  position: relative;
  padding-block: 0;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: hidden;
  background-color: var(--color-background);
}

.hero__background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__background-base {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__background-grid {
  position: absolute;
  left: 50%;
  top: clamp(6rem, 13vw, 128px);
  width: min(1416px, calc(100% - 1.5rem));
  height: auto;
  transform: translateX(-50%);
  opacity: 1;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding-top: var(--header-total-height);
  min-height: 100svh;
  min-height: 100dvh;
  box-sizing: border-box;
  overflow: visible;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 41.875rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero__heading {
  font-size: 3.75rem;
  line-height: 4.1875rem;
  font-weight: 700;
}

.hero__heading-accent {
  color: var(--color-secondary);
}

.hero__cards {
  position: relative;
  z-index: 1;
  width: min(930px, calc(100vw - 31.25rem));
  max-width: 930px;
  aspect-ratio: 930 / 757;
  margin-left: auto;
  justify-self: end;
  flex-shrink: 0;
  overflow: visible;
}

.hero__card {
  position: absolute;
  left: var(--wheel-left, 50%);
  top: var(--wheel-top, 50%);
  width: 360px;
  max-width: 38.71%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: var(--card-shadow);
  transform: translate(-50%, -50%);
  opacity: var(--wheel-opacity, 0.6);
  z-index: var(--wheel-z, 1);
  transition:
    left 900ms ease-in-out,
    top 900ms ease-in-out,
    opacity 900ms ease-in-out;
}

.hero__card[data-wheel-station="2"] {
  z-index: 3;
}

.hero__card--sessions {
  padding: 2.0625rem 2rem;
  min-height: 10.9375rem;
}

.hero__card--rating {
  padding: 2.5rem 2rem;
  min-height: 10.9375rem;
}

.hero__card--feature {
  padding: 1.25rem 1.5rem;
  min-height: 10.9375rem;
}

.hero__card-value {
  font-size: 0.75rem;
  line-height: 1.125rem;
  font-weight: 600;
}

.hero__card-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero__card-desc {
  font-size: 0.75rem;
  line-height: 1.125rem;
  font-weight: 400;
  opacity: 0.6;
}

.hero__rating-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.hero__stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.hero__rating-score {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  font-weight: 600;
}

.hero__feature-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__feature-icon {
  flex: none;
  width: 28px;
  height: 28px;
}

.hero__feature-title {
  font-size: 0.875rem;
  line-height: 1.3125rem;
  font-weight: 600;
  color: var(--color-primary);
}

.hero__card--feature .hero__card-desc {
  opacity: 0.6;
}

@media (min-width: 768px) {
  .hero__card[data-slot]:not([data-slot="center"]) {
    cursor: pointer;
  }
}

/* ==========================================================================
   Section: Features / Mentorship hub
   ========================================================================== */

.section--features {
  position: relative;
  overflow-x: clip; /* clips horizontal blur bleed; y stays visible so blur flows into section 4 */
  background-color: var(--color-background);
}

.features__heading {
  max-width: 41.375rem;
}

.features__heading-accent {
  color: var(--color-secondary);
}

.features__stage {
  position: relative;
  width: 100%;
  max-width: 76rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.features__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.features__blur {
  position: absolute;
  width: 446px;
  height: 446px;
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(250px);
}

.features__blur--gold {
  background: #f8b53f;
  top: 10%;
  left: -12%;
}

.features__blur--blue {
  background: #1face2;
  bottom: 5%;
  right: -10%;
}

.features__center {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 28.875rem);
}

.features__center-photo {
  display: block;
  width: 100%;
  max-width: 28.875rem;
  height: auto;
  object-fit: contain;
}

.features__card {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.features__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.features__card:focus-within {
  outline: 2px solid #1face2;
  outline-offset: 2px;
}

.features__card-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.features__card-icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.4375rem;
  height: 3.4375rem;
  border-radius: 64px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
}

.features__card-icon--pink {
  background: #ec3786;
}

.features__card-icon--purple {
  background: #9e1f63;
}

.features__card-icon--green {
  background: #009347;
}

.features__card-icon--blue {
  background: #1b75bb;
}

.features__card-title {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
  flex: 1;
  min-width: 0;
}

.features__card-desc {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.3125rem;
  font-weight: 400;
  color: var(--color-text);
  opacity: 0.7;
}

/* ==========================================================================
   Section: Counselling guidance
   ========================================================================== */

.section--counselling {
  background-color: transparent; /* lets features blur bleed through at top */
  padding-block: 5rem;
}

.counselling__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 43.3125rem;
  text-align: center;
}

.counselling__heading {
  margin: 0;
  max-width: 41.375rem;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  line-height: 2.75rem;
  font-weight: 700;
  color: var(--color-primary);
}

.counselling__heading-accent {
  color: var(--color-secondary);
}

.counselling__subheading {
  margin: 0;
  max-width: 43.3125rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.3125rem;
  font-weight: 400;
  color: var(--color-text);
  opacity: 0.7;
}

.counselling__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  width: 100%;
  padding-top: 80px;
}

.counselling__media {
  position: relative;
}

.counselling__decor {
  position: absolute;
    bottom: -12%;
    right: -10%;
    z-index: 0;
    width: min(100%, 13.75rem);
    height: auto;
    pointer-events: none;
}

.counselling__illustration {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 36.375rem;
  height: auto;
  object-fit: contain;
}

.counselling__list {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.counselling__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
}

.counselling__item:focus-within {
  outline: 2px solid #1face2;
  outline-offset: 2px;
  border-radius: 0.25rem;
}

.counselling__item-icon {
  flex: none;
  width: 3.125rem;
  height: 3.125rem;
}

.counselling__item-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 31rem;
}

.counselling__item-title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
}

.counselling__item-body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.3125rem;
  font-weight: 400;
  color: var(--color-text);
  opacity: 0.7;
}

/* ==========================================================================
   Section: Rank Predictor
   ========================================================================== */

.section--rank-predictor {
  background: linear-gradient(90deg, #000000 0%, #0d1959 100%);
  color: #ffffff;
  min-height: 583px;
  padding-block: 5rem;
}

.rank-predictor__container {
  display: grid;
  grid-template-columns: minmax(0, 31.875rem) minmax(0, 35rem);
  justify-content: space-between;
  align-items: start;
  gap: 7.5rem;
}

.rank-predictor__promo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 31.875rem;
}

.rank-predictor__heading {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 2.875rem;
  line-height: 3.1875rem;
  font-weight: 700;
  color: #ffffff;
}

.rank-predictor__body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.3125rem;
  font-weight: 400;
  color: #ffffff;
  opacity: 0.7;
}

.rank-predictor__heading-accent {
  color: var(--color-secondary);
}

.rank-predictor__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  border-radius: 3.75rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}

.rank-predictor__features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rank-predictor__features li {
  position: relative;
  padding-left: 1.125rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  line-height: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
}

.rank-predictor__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--color-secondary);
}

.rank-predictor__disclaimer {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  line-height: 1rem;
  color: rgba(255, 255, 255, 0.45);
}

.rank-predictor__widget {
  width: 100%;
  max-width: 35rem;
  padding: 1.75rem;
  border-radius: 0.75rem;
  background: #ffffff;
  color: var(--color-text);
  box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.2);
}

.rank-predictor__widget-title {
  margin: 0 0 0.25rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
}

.rank-predictor__widget-sub {
  margin: 0 0 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  line-height: 1.25rem;
  color: #4d4846;
}

.rank-predictor__score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.rank-predictor__score-label,
.rank-predictor__cat-label {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
}

.rank-predictor__score-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 2.25rem;
  font-weight: 700;
  color: var(--color-secondary);
}

.rank-predictor__slider {
  width: 100%;
  height: 0.375rem;
  margin-bottom: 1.25rem;
  appearance: none;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--color-secondary) 0%,
    var(--color-secondary) var(--pred-pct, 66.7%),
    #e6e6e6 var(--pred-pct, 66.7%),
    #e6e6e6 100%
  );
  cursor: pointer;
}

.rank-predictor__slider::-webkit-slider-thumb {
  appearance: none;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: var(--color-secondary);
  box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.2);
}

.rank-predictor__slider::-moz-range-thumb {
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: var(--color-secondary);
  box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.2);
}

.rank-predictor__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.rank-predictor__cat-btn {
  padding: 0.4375rem 0.875rem;
  border-radius: 3.75rem;
  border: 1px solid #e6e6e6;
  background: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: #4d4846;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.rank-predictor__cat-btn.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
}

.rank-predictor__cat-btn:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

.rank-predictor__result {
  padding: 1.125rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
}

.rank-predictor__result--safe {
  background: #eaf3de;
  border-color: #c0dd97;
  color: #27500a;
}

.rank-predictor__result--moderate {
  background: #faeeda;
  border-color: #fac775;
  color: #633806;
}

.rank-predictor__result--tough {
  background: #fcebeb;
  border-color: #f7c1c1;
  color: #791f1f;
}

.rank-predictor__result-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.625rem;
}

.rank-predictor__rank-label {
  margin: 0 0 0.25rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.rank-predictor__rank-num {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  line-height: 2rem;
  font-weight: 700;
}

.rank-predictor__zone-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3125rem 0.625rem;
  border-radius: 3.75rem;
  border: 1px solid currentColor;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  white-space: nowrap;
}

.rank-predictor__result-cols {
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  line-height: 1.25rem;
}

.rank-predictor__wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  border-radius: 3.75rem;
  background: var(--color-primary);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-predictor__wa-btn:hover {
  background: #111d4a;
  transform: translateY(-1px);
}

.rank-predictor__wa-btn:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* ==========================================================================
   Shared section eyebrow
   ========================================================================== */

.section-eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.section-eyebrow--light {
  color: rgba(13, 25, 89, 0.65);
}

/* ==========================================================================
   Section: Tags
   ========================================================================== */

.section--tags {
  padding-block: 1.5rem;
  background: #f8faff;
}

.tags__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tags__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border-radius: 3.75rem;
  border: 1px solid #e6e6e6;
  background: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-primary);
  white-space: nowrap;
}

.tags__dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--color-secondary);
  flex-shrink: 0;
}

.tags__dot--pg,
.tags__item--pg {
  border-color: rgba(124, 58, 237, 0.25);
}

.tags__dot--pg {
  background: #7c3aed;
}

/* ==========================================================================
   Section: How It Works
   ========================================================================== */

.section--how {
  background: #ffffff;
}

.how__subheading {
  max-width: 36rem;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.3125rem;
  color: #4d4846;
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.how__step {
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #e6e6e6;
  background: #ffffff;
  box-shadow: 0 0.25rem 1.5rem rgba(13, 25, 89, 0.06);
}

.how__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(254, 80, 0, 0.1);
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-secondary);
}

.how__step-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
}

.how__step-body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  line-height: 1.25rem;
  color: #4d4846;
}

/* ==========================================================================
   Section: Services / Pricing
   ========================================================================== */

.section--services {
  background: #f8faff;
}

.services__subheading {
  max-width: 42rem;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.3125rem;
  color: #4d4846;
}

.services__tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.375rem;
  border-radius: 3.75rem;
  border: 1px solid #e6e6e6;
  background: #ffffff;
}

.services__tab {
  padding: 0.625rem 1.125rem;
  border: none;
  border-radius: 3.75rem;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #4d4846;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.services__tab.is-active {
  background: var(--color-primary);
  color: #ffffff;
}

.services__tab:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

.services__panel {
  width: 100%;
  align-self: stretch;
}

.services__panel[hidden] {
  display: none;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 1.5rem 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid #e6e6e6;
  background: #ffffff;
  box-shadow: 0 0.25rem 1.5rem rgba(13, 25, 89, 0.06);
}

.services__card--featured {
  border-color: var(--color-secondary);
  box-shadow: 0 0.5rem 2rem rgba(254, 80, 0, 0.12);
}

.services__card--pg-featured {
  border-color: rgba(124, 58, 237, 0.25);
  box-shadow: 0 0.5rem 2rem rgba(124, 58, 237, 0.08);
}

.services__badge {
  position: absolute;
  top: -0.625rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3125rem 0.75rem;
  border-radius: 3.75rem;
  background: var(--color-secondary);
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

.services__tier {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.services__tier--pg {
  color: #7c3aed;
}

.services__name {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.services__price {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  line-height: 2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.services__price--free {
  color: #009347;
}

.services__price-note {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  line-height: 1.125rem;
  color: #4d4846;
}

.services__features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}

.services__features li {
  position: relative;
  padding-left: 1.125rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  line-height: 1.25rem;
  color: #4d4846;
}

.services__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #009347;
  font-weight: 700;
}

.services__pg-card {
  max-width: 42rem;
  margin-inline: auto;
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(124, 58, 237, 0.2);
  background: #ffffff;
  box-shadow: 0 0.5rem 2rem rgba(124, 58, 237, 0.08);
}

.services__enroll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.875rem 1.25rem;
  border-radius: 3.75rem;
  background: #7c3aed;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #ffffff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.services__enroll-btn:hover {
  background: #6d28d9;
  transform: translateY(-1px);
}

.services__enroll-note {
  margin: 0.5rem 0 0;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  color: #4d4846;
}

/* ==========================================================================
   Section: About
   ========================================================================== */

.section--about {
  background: #ffffff;
}

.about__inner {
  display: grid;
  grid-template-columns: minmax(0, 18rem) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.about__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 18rem;
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
  background: #f8faff;
  box-shadow: 0 0.5rem 2.5rem rgba(13, 25, 89, 0.1);
}

.about__logo {
  width: 70%;
  height: auto;
}

.about__text {
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #4d4846;
}

.about__points {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.about__points li {
  position: relative;
  padding-left: 1.125rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  line-height: 1.25rem;
  color: var(--color-primary);
}

.about__points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #009347;
  font-weight: 700;
}

/* ==========================================================================
   Section: NEET PG
   ========================================================================== */

.section--neet-pg {
  position: relative;
  overflow: hidden;
  background: #f8faff;
}

.neet-pg__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.neet-pg__blur {
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.08);
  filter: blur(4rem);
}

.neet-pg__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: start;
}

.neet-pg__text {
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #4d4846;
}

.neet-pg__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.neet-pg__stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
}

.neet-pg__stat-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  line-height: 1.125rem;
  color: #4d4846;
}

.neet-pg__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.neet-pg__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1.25rem;
  border-radius: 3.75rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.neet-pg__btn--primary {
  background: #7c3aed;
  color: #ffffff;
}

.neet-pg__btn--primary:hover {
  background: #6d28d9;
  transform: translateY(-1px);
}

.neet-pg__btn--outline {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.neet-pg__btn--outline:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.neet-pg__spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
}

.neet-pg__spec-grid div {
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #e6e6e6;
  background: #ffffff;
}

.neet-pg__spec-grid dt {
  margin: 0 0 0.25rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-secondary);
}

.neet-pg__spec-grid dd {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  line-height: 1.25rem;
  color: var(--color-primary);
}

.neet-pg__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.neet-pg__card {
  padding: 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid #e6e6e6;
  background: #ffffff;
  box-shadow: 0 0.25rem 1.5rem rgba(13, 25, 89, 0.06);
}

.neet-pg__card-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.375rem;
  font-weight: 600;
  color: var(--color-primary);
}

.neet-pg__card-body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  line-height: 1.25rem;
  color: #4d4846;
}

/* ==========================================================================
   Placeholder Sections (scaffold only)
   ========================================================================== */

.placeholder {
  padding: 2rem;
  text-align: center;
  color: var(--color-primary);
  border: 1px dashed color-mix(in srgb, var(--color-primary) 30%, transparent);
  border-radius: 0.5rem;
  font-size: 0.95rem;
}

/* ==========================================================================
   Section: Lead Form
   ========================================================================== */

.section--lead-form {
  padding-block: 5rem;
  background: #fafafa;
}

.lead-form__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.lead-form__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lead-form__decor--phone {
  width: 59px;
  height: 59px;
  margin-bottom: 0.5rem;
}

.lead-form__decor--target {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 59px;
  height: 59px;
  opacity: 0.6;
}

.lead-form__title {
  font-size: 2.5rem;
  line-height: 2.75rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}

.lead-form__title-accent {
  color: var(--color-secondary);
}

.lead-form__subtext {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.3125rem;
  color: #333;
  margin: 0;
}

.lead-form__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-secondary) 12%, transparent);
  color: var(--color-secondary);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  margin: 0;
}

.lead-form__card {
  background: #fff;
  border: 1px solid #efedf5;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(13, 25, 89, 0.06);
}

.lead-form__fields {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.lead-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.lead-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.lead-form__field--full {
  grid-column: 1 / -1;
}

.lead-form__label {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
}

.lead-form__input,
.lead-form__select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: #333;
  background: #fff;
  box-sizing: border-box;
}

.lead-form__input:focus,
.lead-form__select:focus {
  outline: 2px solid color-mix(in srgb, var(--color-secondary) 40%, transparent);
  border-color: var(--color-secondary);
}

.lead-form__select-wrap {
  position: relative;
}

.lead-form__select {
  appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
}

.lead-form__select-wrap::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-top-color: var(--color-primary);
  pointer-events: none;
}

.lead-form__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lead-form__pill-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lead-form__pill {
  display: inline-flex;
  padding: 0.5rem 1rem;
  border: 1px solid #e6e6e6;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-primary);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.lead-form__pill-input:checked + .lead-form__pill {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.lead-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1.5rem;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: 999px;
  background: var(--color-secondary);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.lead-form__submit:hover {
  opacity: 0.9;
}

.lead-form__submit-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* ==========================================================================
   Section: Statistics
   ========================================================================== */

.section--stats {
  padding-block: 3rem;
  background: #fff;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.stats__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.75rem 1rem;
  background: #fff;
  border: 1px solid #efedf5;
  border-radius: 8px;
  text-align: center;
}

.stats__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--color-primary) 8%, transparent);
}

.stats__number {
  font-size: 2rem;
  line-height: 2.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}

.stats__label {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.25rem;
  color: #666;
  margin: 0;
}

/* ==========================================================================
   Section: State Expertise
   ========================================================================== */

.section--states {
  padding-block: 5rem;
  background: #fafafa;
}

.states__pill {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-secondary) 12%, transparent);
  color: var(--color-secondary);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
}

.states__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
}

.state-card {
  background: #fff;
  border: 1px solid #efedf5;
  border-radius: 8px;
  padding: 1.75rem;
  border-top: 4px solid var(--color-primary);
}

.state-card--karnataka {
  border-top-color: #009347;
}

.state-card--tamil-nadu {
  border-top-color: var(--color-secondary);
}

.state-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.state-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}

.state-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.state-card__list li {
  position: relative;
  padding-left: 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.3125rem;
  color: #444;
}

.state-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-secondary);
}

/* ==========================================================================
   Section: Timeline Banner
   ========================================================================== */

.section--timeline {
  position: relative;
  padding-block: 0;
  overflow: hidden;
  min-height: 280px;
}

.timeline-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.timeline-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 25, 89, 0.92) 0%, rgba(13, 25, 89, 0.75) 55%, rgba(13, 25, 89, 0.4) 100%);
}

.timeline-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 280px;
  padding-block: 3rem;
}

.timeline-banner__title {
  font-size: 2.5rem;
  line-height: 2.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.5rem;
  max-width: 640px;
}

.timeline-banner__title-accent {
  color: var(--color-secondary);
}

.timeline-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: var(--color-secondary);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  transition: opacity 0.2s;
}

.timeline-banner__cta:hover {
  opacity: 0.9;
}

/* ==========================================================================
   Section: Parent Focus
   ========================================================================== */

.section--parents {
  position: relative;
  padding-block: 5rem;
  background: #fff;
  overflow: hidden;
}

.parents__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.parents__blur {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--color-primary) 6%, transparent);
  filter: blur(80px);
}

.parents__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.parents__value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.value-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #efedf5;
  border-radius: 8px;
}

.value-card__icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--color-secondary) 12%, transparent);
}

.value-card__title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 0.375rem;
}

.value-card__text {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.3125rem;
  color: #555;
  margin: 0;
}

.parents__cta-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  padding: 2rem;
  background: color-mix(in srgb, var(--color-primary) 4%, #fff);
  border: 1px solid #efedf5;
  border-radius: 8px;
}

.parents__cta-title {
  font-size: 2rem;
  line-height: 2.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.75rem;
}

.parents__cta-pill {
  display: inline-flex;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  background: var(--color-secondary);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  margin: 0;
}

.parents__cta-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.parents__cta-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.parents__cta-chevron {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.parents__cta-text {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #444;
  margin: 0;
}

/* ==========================================================================
   Section: WhatsApp CTA
   ========================================================================== */

.section--whatsapp-cta {
  position: relative;
  padding-block: 5rem;
  background: #fafafa;
  overflow: hidden;
}

.whatsapp-cta__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.whatsapp-cta__blur {
  position: absolute;
  top: 0;
  right: 10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: color-mix(in srgb, #25d366 15%, transparent);
  filter: blur(80px);
}

.whatsapp-cta__inner {
  position: relative;
  z-index: 1;
}

.whatsapp-cta__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.whatsapp-cta__title {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 2.5rem;
  line-height: 2.75rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}

.whatsapp-cta__subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #555;
  margin: 0;
  max-width: 480px;
}

.whatsapp-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.2s;
}

.whatsapp-cta__btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* ==========================================================================
   Section: Aspirant Message
   ========================================================================== */

.section--aspirant {
  padding-block: 5rem;
  background: #fff;
}

.aspirant__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  max-width: 720px;
  margin-inline: auto;
}

.aspirant__title {
  font-size: 2.5rem;
  line-height: 2.75rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}

.aspirant__title-accent {
  color: var(--color-secondary);
}

.aspirant__body,
.aspirant__tagline {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: #444;
  margin: 0;
}

.aspirant__highlight {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  font-style: italic;
  color: var(--color-primary);
  margin: 0;
}

.aspirant__badge {
  display: inline-flex;
  margin-top: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--color-secondary) 40%, transparent);
  background: color-mix(in srgb, var(--color-secondary) 8%, transparent);
  color: var(--color-secondary);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0;
}

/* ==========================================================================
   Section: Social QR (Instagram & YouTube)
   ========================================================================== */

.section--social {
  padding-block: 5rem;
  background: linear-gradient(135deg, #111d4a 0%, #1b2b6b 100%);
  text-align: center;
}

.social__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.social__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin: 0;
}

.social__heading {
  font-size: 2.5rem;
  line-height: 2.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.social__heading-accent {
  color: var(--color-secondary);
}

.social__body {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 2rem;
  max-width: 560px;
}

.social__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.social-card__qr-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  width: 200px;
  box-sizing: border-box;
}

.social-card__qr {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.social-card__handle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-card__name {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
}

.social-card__btn {
  display: inline-flex;
  padding: 0.5625rem 1.375rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  transition: opacity 0.2s, transform 0.2s;
}

.social-card__btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.social-card__btn--instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-card__btn--youtube {
  background: #ff0000;
}

/* ==========================================================================
   Floating WhatsApp + Toast
   ========================================================================== */

.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

#toast-container {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.toast {
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  animation: toastSlideDown 0.25s forwards;
}

.toast.toast-success {
  background: #91cd23;
  color: #fff;
}

.toast.toast-error {
  background: #c62828;
  color: #fff;
}

.toast.fade-out {
  animation: toastFadeOut 0.3s forwards;
}

@keyframes toastSlideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toastFadeOut {
  to {
    opacity: 0;
    transform: translateY(-8px);
  }
}

/* Lead form honeypot + submit protection */
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.section-2-lead-capture__submit:disabled,
.lead-form__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
}

.section-2-lead-capture__submit.is-loading,
.lead-form__submit.is-loading {
  filter: brightness(0.98);
}

.lead-form__hcaptcha {
  margin: 1rem 0;
}

.lead-otp-step {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(13, 25, 89, 0.12);
}

.lead-otp-step__hint {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: #444;
}

.lead-otp-step__input {
  letter-spacing: 0.2em;
  font-variant-numeric: tabular-nums;
}

.lead-otp-step__resend {
  margin-top: 0.75rem;
  padding: 0;
  border: 0;
  background: none;
  color: #0d1959;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
}

.lead-otp-step__resend:disabled {
  color: #777;
  text-decoration: none;
  cursor: not-allowed;
}

.lead-otp-step__resend[hidden] {
  display: none;
}

/* #features — features hub styles in style.css + responsive.css */

/* ==========================================================================
   Footer (legacy stub — see redesigned footer at bottom of file)
   ========================================================================== */

/* ==========================================================================
   Section: Testimonials
   ========================================================================== */

.section--testimonials {
  background-color: transparent;
  padding-block: 5rem;
  overflow-x: clip;
}

.section--testimonials .container {
  margin-bottom: 3rem;
}

/* Break out to true viewport edge — edge-to-edge slider */
.testimonials__swiper {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}

.testimonials__swiper .swiper-slide {
  width: 380px !important;
  height: 250px !important;
  box-sizing: border-box;
}

.testimonials__card {
  background: #ffffff;
  border: 1px solid #EFEDF5;
  border-radius: 8px;
  padding: 30px 20px 20px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.testimonials__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  flex-shrink: 0;
  padding-bottom: 16px;
}

.testimonials__profile {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
}

.testimonials__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonials__avatar--placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e8eaef;
  object-fit: unset;
}

.testimonials__avatar--placeholder img {
  width: 28px;
  height: 28px;
  opacity: 0.45;
}

.testimonials__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.testimonials__name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  line-height: 22px;
  color: #000000;
}

.testimonials__detail {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #000000;
  opacity: 0.5;
}

.testimonials__quote {
  width: 26px;
  height: 56px;
  flex-shrink: 0;
  object-fit: contain;
}

.testimonials__rating {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  padding-bottom: 16px;
}

.testimonials__text {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #000000;
  opacity: 0.6;
  margin: 0;
  flex: 1;
  min-height: 0;
}


/* ==========================================================================
   Section: FAQ
   ========================================================================== */

.section--faq {
  position: relative;
  background-color: transparent;
  padding-block: 5rem;
}

.faq__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.faq__blur {
  position: absolute;
  width: 446px;
  height: 446px;
  border-radius: 50%;
  background: #1FACE2;
  opacity: 0.3;
  filter: blur(250px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.section--faq .container {
  position: relative;
  z-index: 1;
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-block: 1.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  text-align: left;
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  overflow: hidden;
}

.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer-inner {
  overflow: hidden;
  min-height: 0;
}

.faq__answer-inner > p {
  margin: 0;
  padding-bottom: 1.5rem;
  overflow: hidden;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #000000;
  opacity: 0.7;
}

.faq__icon-minus,
.faq__icon-plus {
  display: block;
}

.faq__icon-minus.hidden,
.faq__icon-plus.hidden {
  display: none;
}

/* ==========================================================================
   Section: Newsletter CTA Banner
   ========================================================================== */

.section--cta {
  background-color: transparent;
  padding-block: 5rem;
}

.cta-banner {
  background: linear-gradient(90deg, #1FACE2 0%, #1F57E2 100%);
}

.cta-banner__title {
  color: #ffffff;
}

.cta-banner__body {
  color: #ffffff;
  font-weight: 400;
}

.cta-banner__input-wrap {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-banner__input {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #ffffff;
}

.cta-banner__input::placeholder {
  color: #ffffff;
  opacity: 1;
}

.cta-banner__submit {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
}

/* ==========================================================================
   Section: Site Footer (redesigned)
   ========================================================================== */

.site-footer {
  background-color: var(--color-primary);
  min-height: 160px;
}

.site-footer__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 160px;
  padding-block: 1.5rem;
}

.site-footer__content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.site-footer__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.site-footer__contact-link {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  color: #ffffff;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.site-footer__contact-link:hover {
  opacity: 1;
}

.site-footer__nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.site-footer__link {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  color: #ffffff;
  transition: opacity 0.2s ease;
}

.site-footer__link--semibold {
  font-weight: 600;
}

.site-footer__link:hover {
  opacity: 0.8;
}

.site-footer__copyright {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #ffffff;
  opacity: 0.4;
  margin: 0;
}

/* ==========================================================================
   Legal / policy pages
   ========================================================================== */

.page-legal .site-header {
  position: sticky;
  top: 0;
}

.page-legal .section--legal {
  padding-top: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background: #ffffff;
}

.legal-content__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
  margin: 0 0 1rem;
}

.legal-content__download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 2rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: var(--color-secondary);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.legal-content__download:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.legal-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-primary);
  margin: 2rem 0 0.75rem;
}

.legal-content p {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: #374151;
  margin: 0 0 0.875rem;
}

.legal-content a:not(.legal-content__download) {
  color: var(--color-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a.legal-content__download {
  color: #ffffff;
  text-decoration: none;
}

.legal-content em {
  font-style: italic;
  color: #6b7280;
}

/* ==========================================================================
   Blog pages
   ========================================================================== */

.blog-listing__intro {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #4b5563;
  margin: 0 0 2rem;
  max-width: 42rem;
}

.blog-listing__empty {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #6b7280;
}

.blog-listing {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.blog-card {
  margin: 0;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 8px 24px rgba(13, 25, 89, 0.06);
}

.blog-card__date {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.blog-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.75rem;
}

.blog-card__title a {
  color: var(--color-primary);
  text-decoration: none;
}

.blog-card__title a:hover {
  color: var(--color-secondary);
}

.blog-card__excerpt {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
  margin: 0 0 1rem;
}

.blog-card__tags {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-card__tag {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-secondary);
  background: rgba(13, 25, 89, 0.06);
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-secondary);
  text-decoration: none;
}

.blog-card__link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-content__back {
  margin: 0 0 1.5rem;
}

.blog-content__back a {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-secondary);
  text-decoration: none;
}

.blog-content__back a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-content__header {
  margin-bottom: 2rem;
}

.blog-content__meta {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: #6b7280;
  margin: 0;
}

.blog-content__meta-sep {
  margin: 0 0.375rem;
}

.blog-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  color: var(--color-primary);
  margin: 2rem 0 0.875rem;
}

.blog-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-primary);
  margin: 1.5rem 0 0.75rem;
}

.blog-content p {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: #374151;
  margin: 0 0 0.875rem;
}

.blog-content ul,
.blog-content ol {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: #374151;
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}

.blog-content li {
  margin-bottom: 0.375rem;
}

.blog-content a {
  color: var(--color-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-content blockquote {
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--color-secondary);
  background: rgba(13, 25, 89, 0.04);
  border-radius: 0 0.5rem 0.5rem 0;
}

.blog-content blockquote p {
  margin: 0;
}

.blog-content hr {
  border: 0;
  border-top: 1px solid #e5e7eb;
  margin: 2rem 0;
}

.blog-content__table-wrap {
  overflow-x: auto;
  margin: 0 0 1.25rem;
  -webkit-overflow-scrolling: touch;
}

.blog-content table {
  width: 100%;
  min-width: 32rem;
  border-collapse: collapse;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
}

.blog-content th,
.blog-content td {
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  text-align: left;
  vertical-align: top;
}

.blog-content th {
  background: rgba(13, 25, 89, 0.05);
  font-weight: 600;
  color: var(--color-primary);
}

.blog-content td {
  color: #374151;
}

.blog-content em {
  font-style: italic;
  color: #6b7280;
}

.blog-content strong {
  font-weight: 600;
  color: var(--color-primary);
}
