/* ============================================================
   THE SELFCARE MAMA (PTY) LTD — STYLESHEET
   ============================================================ */

:root {
  /* Brand palette — drawn from the logo (deep maroon linework)
     and the uniform pink used across the brand photography */
  --maroon-900: #350E14;
  --maroon-800: #4A1B24;
  --maroon-700: #5C2430;
  --maroon-600: #742D3A;
  --maroon-500: #8E3A48;

  --pink-600: #C92368;
  --pink-500: #E0457F;
  --pink-400: #EC7BA3;

  --gold-500: #C99A4B;
  --gold-300: #E9CE9B;

  --blush-50: #FDF6F4;
  --blush-100: #FAEAE8;
  --blush-200: #F4D9D8;

  --cream: #FFFBF8;
  --white: #FFFFFF;

  --ink-900: #2A1A1B;
  --ink-700: #4A3638;
  --ink-500: #7A6467;
  --ink-300: #B9A9AB;

  --shadow-sm: 0 2px 10px rgba(58, 16, 23, 0.07);
  --shadow-md: 0 12px 30px rgba(58, 16, 23, 0.12);
  --shadow-lg: 0 24px 60px rgba(58, 16, 23, 0.18);
  --shadow-glow: 0 18px 46px rgba(201, 35, 104, 0.28);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 999px;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-w: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Subtle film-grain texture for tactile depth */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--maroon-800);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h2 { font-size: clamp(2.1rem, 3.4vw, 3rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; margin-bottom: 0.6rem; }

p { color: var(--ink-700); }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.text-accent { color: var(--pink-600); font-style: italic; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--maroon-800);
  color: var(--white);
  padding: 12px 20px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Icon system ---------- */
.icon-line {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px 8px 14px;
  border-radius: var(--radius-full);
  background: var(--blush-100);
  color: var(--maroon-700);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink-600);
  flex-shrink: 0;
}
.eyebrow--muted { background: var(--blush-100); color: var(--pink-600); }
.eyebrow--gold { background: rgba(201, 154, 75, 0.18); color: var(--gold-300); }
.eyebrow--gold::before { background: var(--gold-300); }

/* ---------- Ghost numerals (editorial backdrop) ---------- */
.ghost-num {
  position: absolute;
  top: -0.5rem;
  right: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 5.5rem;
  color: var(--maroon-800);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.section--maroon .ghost-num { color: var(--white); opacity: 0.08; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  will-change: transform;
}
.btn .icon { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.btn:hover { box-shadow: var(--shadow-glow); }

.btn--primary {
  background: linear-gradient(135deg, var(--pink-600), var(--maroon-700));
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--maroon-800);
  border-color: var(--blush-200);
}
.btn--ghost:hover { background: var(--blush-100); }

.btn--outline {
  background: transparent;
  color: var(--maroon-700);
  border-color: var(--maroon-700);
}
.btn--outline:hover { background: var(--maroon-700); color: var(--white); }

.btn--light {
  background: var(--white);
  color: var(--maroon-800);
}
.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.12); }

.btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 251, 248, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--blush-200);
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-md); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  gap: 20px;
  transition: padding 0.3s ease;
}
.site-header.is-scrolled .header__inner { padding: 8px 24px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo {
  width: 46px; height: 46px;
  object-fit: contain;
  background: var(--white);
  border-radius: 12px;
  padding: 4px;
  box-shadow: var(--shadow-sm);
  transition: width 0.3s ease, height 0.3s ease;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.25; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--maroon-800); }
.brand__sub { font-size: 0.7rem; color: var(--ink-500); letter-spacing: 0.02em; }

.nav { display: flex; gap: 30px; }
.nav a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-700);
  position: relative;
  padding: 6px 0;
}
.nav a:hover { color: var(--pink-600); }
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--pink-600);
  transition: width 0.25s ease;
}
.nav a:hover::after { width: 100%; }

.header__cta { display: flex; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--maroon-800);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 20px 24px 28px;
  background: var(--white);
  border-top: 1px solid var(--blush-200);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 16px; }
.mobile-menu__nav a { font-weight: 600; font-size: 1.02rem; color: var(--maroon-800); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 60px 0 80px;
  overflow: hidden;
}
.hero__bg-shape {
  position: absolute;
  top: -20%;
  right: -12%;
  width: 60vw;
  height: 60vw;
  max-width: 820px;
  max-height: 820px;
  background: radial-gradient(circle at 30% 30%, var(--blush-200), transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.5rem, 4.8vw, 3.8rem);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.hero__lead {
  font-size: 1.1rem;
  max-width: 52ch;
  margin-bottom: 34px;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }

.hero__trust {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid var(--blush-200);
}
.hero__trust-item { display: flex; flex-direction: column; }
.hero__trust-item strong {
  font-family: var(--font-display);
  color: var(--maroon-800);
  font-size: 1.35rem;
  font-variant-numeric: tabular-nums;
}
.hero__trust-item span { font-size: 0.78rem; color: var(--ink-500); }

.hero__media { position: relative; }
.hero__media-blob {
  position: absolute;
  inset: -30px -10px auto auto;
  width: 94%;
  height: 94%;
  background: linear-gradient(145deg, var(--blush-200), var(--gold-300));
  border-radius: 63% 37% 54% 46% / 43% 37% 63% 57%;
  z-index: 0;
  opacity: 0.75;
  animation: blob-morph 14s ease-in-out infinite;
}
@keyframes blob-morph {
  0%, 100% { border-radius: 63% 37% 54% 46% / 43% 37% 63% 57%; transform: rotate(4deg); }
  50% { border-radius: 42% 58% 63% 37% / 56% 42% 58% 44%; transform: rotate(-2deg); }
}
.hero__img-wrap {
  position: relative;
  z-index: 1;
  border-radius: 63% 37% 54% 46% / 43% 37% 63% 57%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  will-change: transform;
}
.hero__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.hero__floating-card {
  position: absolute;
  z-index: 2;
  left: -12px;
  bottom: 22px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 230px;
  animation: float-y 5s ease-in-out infinite;
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero__floating-heart {
  color: var(--pink-600);
  font-size: 1.3rem;
}
.hero__floating-card p {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--maroon-800);
  font-size: 0.92rem;
  line-height: 1.3;
}

.hero__scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--ink-500);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
}
.hero__scroll-cue .icon-line { width: 16px; height: 16px; animation: bob 1.8s ease-in-out infinite; }
@keyframes bob {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--maroon-900);
  color: var(--blush-100);
  overflow: hidden;
  padding: 16px 0;
  transform: rotate(-1deg) scale(1.02);
  position: relative;
  z-index: 2;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0 22px;
  white-space: nowrap;
  color: var(--gold-300);
}
.marquee__item span { color: var(--blush-100); font-style: normal; font-weight: 600; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTIONS (generic)
   ============================================================ */
.section { padding: 100px 0; position: relative; }
.section--tint { background: var(--blush-50); }
.section--maroon {
  background: linear-gradient(160deg, var(--maroon-900), var(--maroon-700));
  color: var(--blush-100);
}
.section--maroon p { color: rgba(250, 234, 232, 0.85); }

.section__head { max-width: 640px; margin-bottom: 56px; position: relative; }
.section__head p { font-size: 1.02rem; }
.section__head--light h2 { color: var(--white); }
.section__head--center { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Wave dividers ---------- */
.wave-divider { display: block; line-height: 0; position: relative; z-index: 1; }
.wave-divider svg { width: 100%; height: 70px; display: block; }
.wave-divider--tint-top { margin-bottom: -1px; }

/* ---------- Stats strip ---------- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 56px 0;
  position: relative;
  z-index: 3;
}
.stats-strip__item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 30px 24px;
  text-align: center;
}
.stats-strip__num {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 2.6rem);
  color: var(--pink-600);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.stats-strip__label { font-size: 0.85rem; color: var(--ink-500); font-weight: 600; margin-top: 4px; }

/* ---------- Spotlight (cursor-glow) cards ---------- */
.spotlight {
  position: relative;
  isolation: isolate;
}
.spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), rgba(201, 35, 104, 0.14), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  pointer-events: none;
}
.spotlight:hover::before { opacity: 1; }

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}
.about__text h2 { margin-bottom: 20px; }
.about__text > p:first-of-type {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--maroon-800);
  line-height: 1.45;
  margin-bottom: 20px;
}
.about__text p { margin-bottom: 16px; }

.check-list { margin-top: 24px; display: grid; gap: 14px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--maroon-700);
}
.check-list .icon-line {
  width: 20px; height: 20px;
  color: var(--pink-600);
  padding: 3px;
  background: var(--blush-100);
  border-radius: 50%;
  box-sizing: content-box;
}

.about__cards { display: grid; gap: 22px; }
.feature-card {
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card__icon {
  width: 52px; height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 16px;
}
.feature-card__icon .icon-line { width: 24px; height: 24px; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { font-size: 0.94rem; }
.feature-card--maroon { background: var(--maroon-800); color: var(--blush-100); }
.feature-card--maroon .feature-card__icon { background: rgba(255,255,255,0.12); color: var(--gold-300); }
.feature-card--maroon h3, .feature-card--maroon p { color: var(--white); }
.feature-card--maroon p { color: rgba(250,234,232,0.85); }
.feature-card--pink { background: var(--blush-100); border: 1px solid var(--blush-200); }
.feature-card--pink .feature-card__icon { background: var(--white); color: var(--pink-600); }

/* ---------- Pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 60px;
}
.pillar-card {
  background: var(--white);
  padding: 34px 26px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pillar-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--blush-100);
  color: var(--pink-600);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.pillar-card h3 { position: relative; z-index: 1; }
.pillar-card p { font-size: 0.92rem; position: relative; z-index: 1; }

.delivery { text-align: left; margin-bottom: 60px; }
.delivery h3 { margin-bottom: 18px; }

.chip-row { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--blush-200);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--maroon-700);
}
.chip .icon-line { width: 15px; height: 15px; color: var(--pink-600); }
.section--maroon .chip { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); color: var(--white); }
.section--maroon .chip .icon-line { color: var(--gold-300); }

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-strip figure {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
}
.gallery-strip .gallery-strip__img-wrap { overflow: hidden; }
.gallery-strip img { width: 100%; height: 230px; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery-strip figure:hover img { transform: scale(1.07); }
.gallery-strip figcaption {
  padding: 14px 16px;
  font-size: 0.85rem;
  color: var(--ink-500);
  font-weight: 600;
}

/* ---------- Career Pathway ---------- */
.pathway__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 64px;
}
.pathway__media {
  position: sticky;
  top: 110px;
  border-radius: 34% 66% 61% 39% / 47% 41% 59% 53%;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.pathway__media img {
  aspect-ratio: 3/4;
  object-fit: cover;
}
.pathway__role {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--pink-600);
  margin-bottom: 14px;
}
.pathway__content h2 { margin-bottom: 14px; }
.pathway__content > p { margin-bottom: 26px; }
.pathway__content h4 { color: var(--maroon-800); margin-top: 6px; }

.tick-list { display: grid; gap: 12px; margin-bottom: 24px; }
.tick-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--ink-700);
}
.tick-list .icon-line {
  width: 18px; height: 18px;
  color: var(--pink-600);
  margin-top: 2px;
  flex-shrink: 0;
}
.tick-list--light li { color: rgba(250,234,232,0.9); }
.tick-list--light .icon-line { color: var(--gold-300); }

.notice-box {
  display: flex;
  gap: 14px;
  background: var(--blush-100);
  border-left: 4px solid var(--pink-600);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  align-items: flex-start;
}
.notice-box__icon { color: var(--pink-600); flex-shrink: 0; }
.notice-box__icon .icon-line { width: 22px; height: 22px; margin-top: 1px; }
.pathway__role .icon-line { width: 16px; height: 16px; }
.hero__floating-heart .icon-line { width: 20px; height: 20px; }
.pricing__note { display: flex; align-items: flex-start; gap: 6px; }
.pricing__limited { display: flex; align-items: center; gap: 6px; justify-content: center; }
.pricing__note .icon-line, .pricing__limited .icon-line { width: 15px; height: 15px; flex-shrink: 0; }
.notice-box p { font-size: 0.9rem; color: var(--ink-700); }
.notice-box--wide { margin-top: 50px; background: var(--blush-50); border-color: var(--gold-500); }
.notice-box--wide .notice-box__icon { color: var(--gold-500); }

.settings h3 { margin-bottom: 22px; }
.settings__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.settings__item {
  background: var(--white);
  border: 1px solid var(--blush-200);
  border-radius: var(--radius-md);
  padding: 22px;
  font-weight: 600;
  color: var(--maroon-700);
  font-size: 0.92rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.settings__item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.settings__item .icon-line {
  width: 26px; height: 26px;
  color: var(--pink-600);
  background: var(--blush-100);
  border-radius: 50%;
  padding: 9px;
  box-sizing: content-box;
}
.settings__item small { color: var(--ink-500); font-weight: 500; }

/* ---------- Fees / Pricing ---------- */
.pricing__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg);
  padding: 48px;
  backdrop-filter: blur(6px);
}
.pricing__header { text-align: center; margin-bottom: 40px; }
.pricing__label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--gold-300);
  font-weight: 700;
  margin-bottom: 10px;
}
.pricing__amount {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  color: var(--white);
  font-weight: 700;
}
.pricing__sub { display: block; margin-top: 8px; color: rgba(250,234,232,0.75); font-size: 0.92rem; }

.pricing__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  margin-bottom: 36px;
}
.pricing__col h4 { color: var(--white); }

.include-grid { display: grid; gap: 10px; }
.include-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(250,234,232,0.9);
  background: rgba(255,255,255,0.05);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}
.include-grid .icon-line { width: 16px; height: 16px; color: var(--gold-300); flex-shrink: 0; }

.plan-card {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 14px;
}
.plan-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 6px;
}
.plan-card p { font-size: 0.9rem; color: rgba(250,234,232,0.9); }
.pricing__note { font-size: 0.82rem; color: rgba(250,234,232,0.7); margin-top: 8px; }

.pricing__footer { text-align: center; }
.pricing__limited { margin-top: 16px; color: var(--gold-300); font-weight: 600; font-size: 0.9rem; }

/* ---------- Who Can Apply ---------- */
.audience {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.audience__card {
  background: var(--white);
  border: 1px solid var(--blush-200);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.audience__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.audience__card .icon-line {
  width: 30px; height: 30px;
  color: var(--pink-600);
  margin-bottom: 16px;
}
.audience__card p { font-weight: 600; color: var(--maroon-700); font-size: 0.92rem; }

.fine-print { font-size: 0.82rem; color: var(--ink-500); font-style: italic; }

/* ---------- Application Timeline ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}
.timeline__step {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.timeline__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-600), var(--maroon-700));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.timeline__step h3 { position: relative; z-index: 1; }
.timeline__step p { font-size: 0.92rem; margin-bottom: 10px; position: relative; z-index: 1; }
.timeline__step .tick-list { margin-top: 12px; margin-bottom: 0; position: relative; z-index: 1; }

.apply-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }

/* ---------- Practical ---------- */
.practical__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.practical__content h2 { margin-bottom: 16px; }
.practical__content p { margin-bottom: 24px; }
.practical__media {
  border-radius: 42% 58% 39% 61% / 55% 47% 53% 45%;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.practical__media img {
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ---------- Gallery (masonry) ---------- */
.masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 18px;
}
.masonry__item { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); grid-row: span 2; position: relative; }
.masonry__item--tall { grid-row: span 3; }
.masonry__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.masonry__item:hover img { transform: scale(1.08); }
.masonry__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(53,14,20,0.35), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.masonry__item:hover::after { opacity: 1; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--pink-600), var(--maroon-800));
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 34px; }
.cta-banner__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact__info h2 { margin-bottom: 14px; }
.contact__info > p { margin-bottom: 30px; }

.contact-list { display: grid; gap: 20px; margin-bottom: 34px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blush-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--pink-600);
  flex-shrink: 0;
}
.contact-list strong { display: block; color: var(--maroon-800); font-size: 0.85rem; margin-bottom: 2px; }
.contact-list a, .contact-list span { font-weight: 600; color: var(--ink-700); }
.contact-list a:hover { color: var(--pink-600); }

.contact__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.contact__map iframe { width: 100%; height: 340px; border: 0; display: block; }
.contact__map-note {
  padding: 14px 20px;
  background: var(--white);
  font-size: 0.8rem;
  color: var(--ink-500);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--maroon-900); color: var(--blush-100); padding: 64px 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer__logo {
  width: 60px; height: 60px;
  object-fit: contain;
  background: var(--white);
  border-radius: 14px;
  padding: 6px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.footer__brand p { color: rgba(250,234,232,0.7); font-size: 0.9rem; max-width: 32ch; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 { color: var(--white); margin-bottom: 6px; font-size: 0.95rem; }
.footer__col a, .footer__col span { color: rgba(250,234,232,0.75); font-size: 0.9rem; display: inline-flex; align-items: center; gap: 8px; }
.footer__col .icon-line { width: 15px; height: 15px; color: var(--gold-300); }
.footer__col a:hover { color: var(--pink-400); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px;
  font-size: 0.78rem;
  color: rgba(250,234,232,0.55);
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 90;
  animation: wa-pulse 2.6s infinite;
}
.wa-float svg { width: 30px; height: 30px; fill: var(--white); }
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55), var(--shadow-lg); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), var(--shadow-lg); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), var(--shadow-lg); }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > * { animation: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero { min-height: auto; padding-top: 32px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 440px; margin: 0 auto; }
  .hero__scroll-cue { display: none; }
  .about__grid, .practical__grid, .contact__grid { grid-template-columns: 1fr; }
  .pathway__grid { grid-template-columns: 1fr; }
  .pathway__media { position: static; max-width: 380px; margin: 0 auto; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .settings__grid { grid-template-columns: repeat(2, 1fr); }
  .audience { grid-template-columns: repeat(2, 1fr); }
  .pricing__body { grid-template-columns: 1fr; gap: 32px; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
  .masonry { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr; margin: 36px 0; }
}

@media (max-width: 860px) {
  .nav, .header__cta { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .hero { padding: 40px 0 50px; }
  .hero__actions .btn { width: 100%; }
  .hero__trust { gap: 20px; }
  .pillars { grid-template-columns: 1fr; }
  .settings__grid { grid-template-columns: 1fr; }
  .audience { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: 1fr; }
  .masonry { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
  .cta-banner__actions .btn, .apply-cta .btn, .contact__actions .btn, .pricing__footer .btn { width: 100%; }
  .btn { white-space: normal; text-align: center; }
  .apply-cta, .contact__actions { flex-direction: column; }
  .hero__floating-card { left: 4px; bottom: -16px; max-width: 190px; padding: 12px 16px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .pricing__card { padding: 30px 22px; }
  .marquee { transform: rotate(-1.5deg) scale(1.06); }
  .ghost-num { font-size: 4rem; }
}

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