/* ==========================================================================
   DIYA.AGENCY — Design System (light theme)
   Palette: white primary + navy/blue accents, metallic silver on navy bands.
   No gold.
   Type: Italiana (display) + Hanken Grotesk (text)
   Motion: LVMH-inspired — masked line reveals, long expo easing, marquee
   ========================================================================== */

:root {
  /* Navy scale */
  --navy-950: #050b18;
  --navy-900: #0a1428;
  --navy-850: #0c1930;
  --navy-800: #0f1f3c;
  --navy-700: #16294e;
  --navy-600: #1f3a6e;
  --blue-500: #2e5aa8;
  --blue-400: #4f7cc9;
  --blue-300: #8faedc;

  /* Silver scale */
  --silver-100: #f5f7fa;
  --silver-200: #e9edf2;
  --silver-300: #d5dae2;
  --silver-400: #b9c2ce;
  --silver-500: #98a3b3;
  --white: #ffffff;

  /* Text on light */
  --ink: #0a1428;
  --ink-soft: #3e4c68;
  --ink-faint: #7c8798;

  /* Hairlines */
  --line-dark: rgba(213, 218, 226, 0.14);   /* on navy sections */
  --line-light: rgba(15, 31, 60, 0.12);      /* on white sections */

  /* Type — single clean family, hierarchy by weight; mono for figures */
  --font-display: 'Geist', system-ui, sans-serif;
  --font-body: 'Geist', system-ui, sans-serif;
  --font-numeral: 'Geist Mono', ui-monospace, monospace;

  /* Motion */
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --reveal-duration: 1s;

  --nav-height: 84px;
  --gutter: clamp(1.25rem, 5vw, 5rem);
}

/* ---------- Reset / base ---------- */

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

::selection { background: var(--blue-500); color: var(--white); }

/* ---------- Typography helpers ---------- */

.display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}

/* Brushed-pewter accent on light backgrounds — elegant, with depth to read on white */
.metallic {
  background: linear-gradient(120deg, #4e596b 0%, #aab4c2 32%, #69748a 52%, #b4bdca 76%, #4e596b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
/* Emphasised words in headings go UPPERCASE for an engraved, deliberate accent */
em.metallic {
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

/* Silver gradient accent on navy bands */
.stats .metallic, .flash .metallic, .result-card .metallic {
  background: linear-gradient(115deg, #8f9aab 0%, #eef1f6 38%, #aeb8c6 58%, #f4f6f9 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blue-500);
}
.eyebrow::before {
  content: '';
  width: 2.25rem;
  height: 1px;
  background: linear-gradient(90deg, var(--blue-500), var(--navy-800));
}

.section-index {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  letter-spacing: 0.2em;
  color: var(--silver-500);
}

/* ---------- Layout ---------- */

.container { max-width: 1360px; margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: clamp(5rem, 11vw, 9.5rem) 0; position: relative; }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}
.section-head .rule {
  height: 1px;
  background: var(--line-light);
  margin-top: 1.5rem;
}
.section-head h2 {
  font-size: clamp(1.875rem, 3.6vw, 3rem);
  max-width: 20em;
}

/* Legacy hook kept for the student section markup — light theme is default now */
.on-light { color: var(--ink); }

/* ---------- Reveal animations ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity var(--reveal-duration) var(--ease-expo),
    transform var(--reveal-duration) var(--ease-expo);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
[data-reveal].in-view { opacity: 1; transform: none; }

.lines .line { display: block; overflow: hidden; }
.lines .line > span {
  display: block;
  transform: translateY(112%);
  transition: transform 1.2s var(--ease-expo);
}
.lines .line:nth-child(2) > span { transition-delay: 0.12s; }
.lines .line:nth-child(3) > span { transition-delay: 0.24s; }
.lines.in-view .line > span { transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], .lines .line > span { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Navigation ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.5s ease, border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-light);
}
.nav .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo .logo-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  letter-spacing: 0.14em;
  color: var(--navy-900);
}
.logo .logo-sub {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 0.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav-links a { position: relative; padding: 0.375rem 0; color: var(--navy-700); transition: color 0.35s ease; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--navy-950); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--navy-800);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-expo);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

.nav-links a.btn { padding: 0.75rem 1.5rem; }
.nav-links a.btn::after { display: none; }
.nav-links a.btn-solid, .nav-links a.btn-solid:hover { color: var(--white); }

.nav-toggle { display: none; flex-direction: column; gap: 6px; padding: 0.5rem; }
.nav-toggle span { width: 26px; height: 1px; background: var(--navy-800); transition: transform 0.4s var(--ease-expo), opacity 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background 0.45s var(--ease-expo), color 0.45s, border-color 0.45s, transform 0.45s var(--ease-expo);
}
.btn:hover { transform: translateY(-2px); }

.btn-solid {
  background: linear-gradient(115deg, var(--navy-700), var(--navy-900) 60%, var(--navy-700));
  color: var(--white);
}
.btn-solid:hover { background: var(--navy-800); }

.btn-ghost { border-color: var(--silver-400); color: var(--navy-800); }
.btn-ghost:hover { border-color: var(--navy-900); color: var(--navy-950); }

.btn-navy { background: var(--navy-800); color: var(--silver-100); border-color: var(--navy-700); }
.btn-navy:hover { background: var(--navy-700); }

/* Silver buttons inside navy bands */
.flash .btn-solid, .pack.popular .btn-solid, .result-card .btn-solid {
  background: linear-gradient(115deg, var(--silver-300), var(--white) 55%, var(--silver-300));
  color: var(--navy-900);
}
.flash .btn-solid:hover, .pack.popular .btn-solid:hover, .result-card .btn-solid:hover { background: var(--white); }
.partners-band .btn-ghost, .result-card .btn-ghost { border-color: var(--silver-500); color: var(--silver-200); }
.partners-band .btn-ghost:hover, .result-card .btn-ghost:hover { border-color: var(--white); color: var(--white); }

.btn-arrow::after { content: '\2192'; font-family: var(--font-body); transition: transform 0.4s var(--ease-expo); }
.btn-arrow:hover::after { transform: translateX(5px); }

/* ==========================================================================
   HOME
   ========================================================================== */

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
  background:
    radial-gradient(60vw 60vw at 82% -10%, rgba(46, 90, 168, 0.1), transparent 60%),
    radial-gradient(50vw 40vw at -10% 100%, rgba(79, 124, 201, 0.09), transparent 62%),
    var(--white);
}
.hero::after {
  /* slow drifting glow, LVMH-style ambient motion */
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(38vw 38vw at 68% 42%, rgba(46, 90, 168, 0.08), transparent 68%);
  animation: drift 14s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes drift {
  from { transform: translate3d(-2%, -1%, 0) scale(1); }
  to   { transform: translate3d(2%, 2%, 0) scale(1.06); }
}

.hero-inner { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.hero-media video {
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  /* rounded-square app-icon medallion (matches home + pricing) */
  border-radius: 28px;
  border: 1px solid var(--silver-300);
  box-shadow: 0 40px 90px -35px rgba(46, 90, 168, 0.45);
}
.hero .eyebrow { margin-bottom: 2rem; }
.hero h1 {
  font-size: clamp(2.5rem, 4.6vw, 4.5rem);
  max-width: 13em;
}
.hero-sub {
  max-width: 34em;
  margin-top: 2.25rem;
  font-size: clamp(1rem, 1.4vw, 1.1875rem);
  color: var(--ink-soft);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 3rem; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.625rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 3.25rem;
  background: linear-gradient(var(--blue-500), transparent);
  animation: scrollHint 2.4s var(--ease-expo) infinite;
}
@keyframes scrollHint {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Hero: portal / choose-your-path (home) ---------- */

.hero-portal { text-align: center; }
.hero-portal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 940px;
  margin: 0 auto;
}
.hero-media-center { margin-bottom: 1.5rem; }
.hero-media-center .hero-app-icon {
  width: clamp(160px, 21vw, 224px);
  height: auto;
  display: block;
  margin-inline: auto;
  max-width: none;
  filter: drop-shadow(0 22px 38px rgba(20, 41, 78, 0.16));
}
.hero-eyebrow { justify-content: center; }
.hero-eyebrow::before { display: none; }
.hero-portal-title {
  font-size: clamp(2.75rem, 6vw, 5rem);
  margin-top: 1.5rem;
}
.hero-portal-sub {
  max-width: 40em;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Two doors */
.portal-doors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
  width: 100%;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  text-align: left;
}
.door {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: 16px;
  border: 1px solid;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease-expo), box-shadow 0.5s ease, border-color 0.5s ease;
}
.door:hover { transform: translateY(-6px); }
.door-tag {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.door-icon { font-size: 1.75rem; line-height: 1; }
.door-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  font-size: clamp(1.375rem, 2.4vw, 1.875rem);
}
.door-hook { font-size: 0.9375rem; line-height: 1.55; }
.door-go {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.door-arrow { transition: transform 0.4s var(--ease-expo); }
.door:hover .door-arrow { transform: translateX(5px); }

.door-business {
  background: linear-gradient(165deg, var(--navy-850), var(--navy-950));
  border-color: var(--navy-800);
  color: var(--silver-300);
  box-shadow: 0 30px 60px -35px rgba(10, 20, 40, 0.6);
}
.door-business:hover { border-color: var(--blue-400); box-shadow: 0 40px 80px -35px rgba(46, 90, 168, 0.55); }
.door-business .door-tag { color: var(--blue-300); }
.door-business .door-title { color: var(--white); }
.door-business .door-go { color: var(--white); }

.door-creator {
  background: var(--white);
  border-color: var(--silver-300);
  color: var(--ink-soft);
  box-shadow: 0 30px 60px -35px rgba(10, 20, 40, 0.18);
}
.door-creator:hover { border-color: var(--blue-400); box-shadow: 0 40px 80px -35px rgba(46, 90, 168, 0.28); }
.door-creator .door-tag { color: var(--blue-500); }
.door-creator .door-title { color: var(--navy-900); }
.door-creator .door-go { color: var(--navy-900); }

/* ---------- The Diya model (two-sided) ---------- */

.model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.model-card {
  border: 1px solid var(--line-light);
  border-radius: 16px;
  padding: clamp(2rem, 3.5vw, 3rem);
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: transform 0.6s var(--ease-expo), box-shadow 0.6s ease, border-color 0.5s ease;
}
.model-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--navy-800), var(--blue-400));
}
.model-card-alt::before { background: linear-gradient(90deg, var(--blue-400), var(--blue-300)); }
.model-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue-400);
  box-shadow: 0 30px 70px -35px rgba(10, 20, 40, 0.22);
}
.model-side {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue-500);
}
.model-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  font-size: clamp(1.375rem, 2.6vw, 1.875rem);
  color: var(--navy-900);
  margin: 1rem 0 1rem;
}
.model-card p { color: var(--ink-soft); font-size: 0.9375rem; }
.model-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--blue-500);
}
.model-link span { transition: transform 0.4s var(--ease-expo); }
.model-link:hover span { transform: translateX(4px); }

/* ---------- Creator recruitment band (home teaser) ---------- */

.join-band {
  background: linear-gradient(150deg, var(--navy-850), var(--navy-950));
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.join-band-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.join-band-eyebrow { color: var(--blue-300); }
.join-band-eyebrow::before { background: linear-gradient(90deg, var(--blue-400), var(--blue-300)); }
.join-band-title {
  color: var(--white);
  font-size: clamp(1.875rem, 3.6vw, 3rem);
  margin: 1.25rem 0 1.25rem;
}
.join-band-sub { color: var(--silver-400); max-width: 40em; }
.join-band-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.join-band .btn-solid {
  background: linear-gradient(115deg, var(--silver-300), var(--white) 55%, var(--silver-300));
  color: var(--navy-900);
}
.join-band .btn-solid:hover { background: var(--white); }
.join-band-note { font-size: 0.8125rem; letter-spacing: 0.04em; color: var(--silver-500); }

/* ---------- Final CTA panel (business page) ---------- */

.cta-final-inner {
  background:
    radial-gradient(50vw 30vw at 50% 0%, rgba(46, 90, 168, 0.25), transparent 62%),
    linear-gradient(160deg, var(--navy-850), var(--navy-950));
  border: 1px solid var(--navy-800);
  border-radius: 20px;
  padding: clamp(2.75rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}
.cta-final-inner h2 { color: var(--white); font-size: clamp(1.75rem, 4vw, 3rem); max-width: 16em; margin: 0 auto 1rem; }
.cta-final-inner p { color: var(--silver-400); margin-bottom: 2.25rem; }
.cta-final-inner .btn-solid {
  background: linear-gradient(115deg, var(--silver-300), var(--white) 55%, var(--silver-300));
  color: var(--navy-900);
}
.cta-final-inner .btn-solid:hover { background: var(--white); }
.cta-final-inner .btn-ghost { border-color: var(--silver-500); color: var(--silver-200); }
.cta-final-inner .btn-ghost:hover { border-color: var(--white); color: var(--white); }

/* ---------- Creator page ---------- */

.creator-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin-top: 2.25rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
}
.creator-perks li { display: flex; align-items: center; gap: 0.5rem; }

.creator-timeline {
  max-width: 780px;
  counter-reset: none;
  display: flex;
  flex-direction: column;
}
.timeline-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  position: relative;
}
.timeline-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: calc(clamp(2.75rem, 4vw, 3.5rem) / 2);
  top: clamp(2.75rem, 4vw, 3.5rem);
  bottom: 0;
  width: 1px;
  background: linear-gradient(var(--blue-400), var(--line-light));
  transform: translateX(-0.5px);
}
.timeline-no {
  width: clamp(2.75rem, 4vw, 3.5rem);
  height: clamp(2.75rem, 4vw, 3.5rem);
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--blue-400);
  background: var(--white);
  color: var(--blue-500);
  font-family: var(--font-numeral);
  font-weight: 500;
  font-size: 0.9375rem;
  position: relative;
  z-index: 1;
}
.timeline-body { padding-top: 0.5rem; }
.timeline-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  color: var(--navy-900);
  margin-bottom: 0.625rem;
}
.timeline-body p { color: var(--ink-soft); font-size: 0.9375rem; max-width: 34em; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.benefit-card {
  border: 1px solid var(--line-light);
  border-radius: 16px;
  background: var(--white);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  transition: transform 0.5s var(--ease-expo), box-shadow 0.5s ease, border-color 0.5s ease;
}
.benefit-card:hover { transform: translateY(-4px); border-color: var(--blue-400); box-shadow: 0 24px 55px -30px rgba(10, 20, 40, 0.22); }
.benefit-card .benefit-icon {
  width: 3rem; height: 3rem;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--silver-100);
  border: 1px solid var(--line-light);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.benefit-card strong { font-weight: 600; font-size: 1rem; color: var(--navy-900); }
.benefit-card span { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.55; }

.apply-shell {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.apply-intro { position: sticky; top: calc(var(--nav-height) + 2rem); }
.apply-intro h2 { font-size: clamp(1.875rem, 3.6vw, 2.75rem); margin: 1rem 0 1.25rem; }
.apply-intro-sub { color: var(--ink-soft); max-width: 30em; }
.apply-reassure {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
}
.apply-reassure li {
  font-size: 0.9375rem;
  color: var(--navy-800);
  font-weight: 500;
}

/* ---------- SVG line icons (replaced emoji) ---------- */

.ic { display: block; }
.service-icon .ic { width: 26px; height: 26px; color: var(--navy-600); }
.door-icon .ic { width: 30px; height: 30px; }
.door-business .door-icon .ic { color: var(--blue-300); }
.door-creator .door-icon .ic { color: var(--navy-600); }
.benefit-card .benefit-icon .ic { width: 26px; height: 26px; color: var(--navy-600); }
.ico .ic { width: 22px; height: 22px; color: var(--navy-600); }
.creator-perks .ic { width: 18px; height: 18px; flex: none; color: var(--blue-500); }

/* ---------- Stats band (navy) ---------- */

.stats {
  background: linear-gradient(115deg, var(--navy-950), var(--navy-850));
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.stats .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat {
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1rem, 3vw, 3rem);
  border-left: 1px solid var(--line-dark);
}
.stat:first-child { border-left: none; }
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1;
}
.stat-label {
  margin-top: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-400);
}

/* ---------- Services (editorial columns) ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}
.service {
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: clamp(2rem, 3.5vw, 3.25rem) clamp(1.5rem, 2.5vw, 2.5rem);
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: background 0.6s var(--ease-expo);
}
.service::before {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-500), var(--navy-800));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease-expo);
}
.service:hover { background: rgba(46, 90, 168, 0.05); }
.service:hover::before { transform: scaleX(1); }

.service-icon {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: var(--silver-100);
}
.service h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.625rem;
  color: var(--navy-900);
  margin-top: auto;
}
.service p { font-size: 0.9375rem; color: var(--ink-soft); }
.service .service-no {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  font-family: var(--font-display);
  color: var(--silver-500);
  font-size: 0.875rem;
  letter-spacing: 0.14em;
}

/* ---------- Illustrated feature showcase (alternating image / text) ---------- */

.feature-showcase {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 6.5rem);
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
}
.feature-row:nth-child(even) .feature-media { order: 2; }
.feature-media img {
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  display: block;
  /* backgrounds are pure white — no mask needed, they blend into the section */
}
.feature-text { max-width: 30rem; }
.feature-icon {
  width: 3rem; height: 3rem;
  display: grid; place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 14px;
  background: var(--silver-100);
  margin-bottom: 1.5rem;
}
.feature-icon .ic { width: 24px; height: 24px; color: var(--navy-600); }
.feature-text h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  font-size: clamp(1.5rem, 2.8vw, 2.125rem);
  color: var(--navy-900);
  margin-bottom: 0.875rem;
}
.feature-text > p { color: var(--ink-soft); font-size: 1rem; margin-bottom: 1.5rem; }
.feature-points { display: grid; gap: 0.75rem; }
.feature-points li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--navy-800);
}
.feature-points li::before {
  content: '';
  flex: none;
  width: 1.15rem; height: 1.15rem;
  margin-top: 0.15rem;
  border-radius: 50%;
  background:
    linear-gradient(var(--blue-500), var(--blue-500)) no-repeat center/0.55rem 2px,
    linear-gradient(var(--blue-500), var(--blue-500)) no-repeat center/2px 0.55rem,
    var(--silver-100);
  border: 1px solid var(--blue-300);
}

/* ---------- Generic two-column illustration + text band ---------- */

.split-illus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split-illus.reverse .split-illus-media { order: 2; }
.split-illus-media img {
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  display: block;
  -webkit-mask-image: radial-gradient(closest-side, #000 78%, transparent 100%);
  mask-image: radial-gradient(closest-side, #000 78%, transparent 100%);
}
.split-illus-text { max-width: 30rem; }
.split-illus-text h2 { font-size: clamp(1.875rem, 3.6vw, 2.75rem); margin-bottom: 1.25rem; }
.split-illus-text .lead { color: var(--ink-soft); margin-bottom: 1.75rem; }

/* ---------- Centered illustration accent (home model section) ---------- */

.home-illus { text-align: center; margin-top: clamp(2.5rem, 5vw, 4rem); }
.home-illus img {
  width: 100%;
  max-width: 620px;
  margin-inline: auto;
  display: block;
  -webkit-mask-image: radial-gradient(closest-side, #000 80%, transparent 100%);
  mask-image: radial-gradient(closest-side, #000 80%, transparent 100%);
}

/* ---------- "Who we work with" — sector cards ---------- */

.sector-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.sector-help-card {
  border: 1px solid var(--line-light);
  border-radius: 16px;
  background: var(--white);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  transition: transform 0.5s var(--ease-expo), box-shadow 0.5s ease, border-color 0.5s ease;
}
.sector-help-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue-400);
  box-shadow: 0 28px 60px -34px rgba(10, 20, 40, 0.22);
}
.sector-help-icon {
  width: 3rem; height: 3rem;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--silver-100);
  border: 1px solid var(--line-light);
  margin-bottom: 1.25rem;
}
.sector-help-icon .ic { width: 24px; height: 24px; color: var(--navy-600); }
.sector-help-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  font-size: 1.3rem;
  color: var(--navy-900);
  margin-bottom: 0.7rem;
}
.sector-help-card p { font-size: 0.9375rem; color: var(--ink-soft); line-height: 1.6; }

/* ---------- Booking page (calendar + WhatsApp) ---------- */

.booking-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}
.booking-card {
  border: 1px solid var(--line-light);
  border-radius: 18px;
  background: var(--white);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: 0 26px 64px -44px rgba(10, 20, 40, 0.28);
}
.booking-card > h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 0.5rem; }
.booking-card > p { color: var(--ink-soft); font-size: 0.9375rem; margin-bottom: 1.75rem; }

.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }
.cal-month { font-weight: 600; color: var(--navy-900); font-size: 1.05rem; }
.cal-nav {
  width: 2.25rem; height: 2.25rem;
  border: 1px solid var(--line-light);
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 1.15rem; color: var(--navy-800);
  transition: border-color 0.3s, background 0.3s, opacity 0.3s;
}
.cal-nav:hover:not(:disabled) { border-color: var(--blue-400); background: var(--silver-100); }
.cal-nav:disabled { opacity: 0.3; cursor: default; }
.cal-weekdays, .cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.35rem; }
.cal-weekdays {
  margin-bottom: 0.5rem;
  font-size: 0.625rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-faint); text-align: center;
}
.cal-day {
  aspect-ratio: 1 / 1;
  border: 1px solid transparent;
  border-radius: 10px;
  background: var(--silver-100);
  color: var(--navy-800);
  font-family: var(--font-numeral);
  font-size: 0.85rem;
  transition: border-color 0.25s, transform 0.25s var(--ease-expo), background 0.25s, color 0.25s;
}
.cal-day:hover:not(:disabled) { border-color: var(--blue-400); transform: translateY(-1px); }
.cal-day.selected { background: var(--navy-900); color: #fff; }
.cal-day.past, .cal-day:disabled { background: transparent; color: var(--silver-400); cursor: default; }

.time-slots { margin-top: 1.75rem; }
.slots-label {
  font-size: 0.625rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue-500); margin-bottom: 0.75rem;
}
.slots { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.slot {
  padding: 0.6rem 1.15rem;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: var(--white);
  font-family: var(--font-numeral);
  font-size: 0.85rem;
  color: var(--navy-800);
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.slot:hover { border-color: var(--blue-400); }
.slot.selected { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }

#confirm-booking { margin-top: 1.75rem; }
#confirm-booking:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.booking-hint { margin-top: 0.875rem; font-size: 0.8125rem; color: var(--ink-faint); text-align: center; }

.wa-card { text-align: center; display: flex; flex-direction: column; align-items: center; }
.wa-card img { width: 100%; max-width: 360px; margin: -0.5rem auto 0.75rem; display: block; }
.wa-card h3 {
  font-family: var(--font-display); font-weight: 600; letter-spacing: -0.015em;
  font-size: 1.375rem; color: var(--navy-900); margin-bottom: 0.5rem;
}
.wa-card p { color: var(--ink-soft); font-size: 0.9375rem; margin-bottom: 1.75rem; max-width: 26em; }

/* ---------- How it works ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  counter-reset: step;
}
.step { position: relative; padding-top: 2rem; }
.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--line-light);
}
.step::after {
  content: '';
  position: absolute;
  top: -2px; left: 0;
  width: 2.75rem; height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--navy-800));
}
.step-no {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 4.5vw, 4rem);
  line-height: 1;
}
.step h3 {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--navy-900);
  margin: 1.25rem 0 0.75rem;
}
.step p { font-size: 0.9375rem; color: var(--ink-soft); }

/* ---------- Partners marquee (navy band) ---------- */

.partners-band {
  background: linear-gradient(165deg, var(--navy-950), var(--navy-800));
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
}
.marquee { overflow: hidden; padding: clamp(2.5rem, 5vw, 4rem) 0; }
.marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.4vw, 2.875rem);
  white-space: nowrap;
  color: var(--silver-400);
  transition: color 0.4s ease;
}
.marquee-item:hover { color: var(--white); }
.marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue-400); flex: none; }

.partners-cta { text-align: center; padding-bottom: clamp(4rem, 8vw, 7rem); }

/* ---------- Student recruitment (light section) ---------- */

.student {
  background: linear-gradient(180deg, var(--silver-100), var(--silver-200));
  color: var(--navy-800);
}
.student-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(3rem, 6vw, 6.5rem);
  align-items: start;
}
.student h2 { font-size: clamp(2.25rem, 4.6vw, 3.75rem); }
.student-msg { margin-top: 1.75rem; max-width: 32em; color: var(--ink-soft); }

.benefits { margin-top: 2.75rem; display: grid; gap: 0; border-top: 1px solid var(--line-light); }
.benefit {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.125rem 0;
  border-bottom: 1px solid var(--line-light);
}
.benefit-icon {
  width: 2.75rem; height: 2.75rem;
  flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  font-size: 1.05rem;
  background: var(--white);
}
.benefit strong { display: block; font-weight: 600; font-size: 0.9375rem; color: var(--navy-900); }
.benefit span { font-size: 0.875rem; color: var(--ink-soft); }

.student-quote {
  margin-top: 2.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--blue-500);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy-800);
}

/* Application form */

.app-form {
  background: var(--white);
  border: 1px solid var(--line-light);
  padding: clamp(2rem, 4vw, 3.25rem);
  box-shadow: 0 30px 80px -40px rgba(10, 20, 40, 0.35);
}
.app-form h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.75rem;
  color: var(--navy-900);
  margin-bottom: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.field label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-700);
}
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 0.9375rem;
  color: var(--navy-900);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--silver-400);
  padding: 0.625rem 0;
  border-radius: 0;
  transition: border-color 0.35s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--blue-500);
}
.field textarea { resize: vertical; min-height: 5.5rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}
.form-success.visible { display: block; }
.form-success .check {
  width: 4rem; height: 4rem;
  margin: 0 auto 1.5rem;
  display: grid; place-items: center;
  border: 1px solid var(--blue-500);
  border-radius: 50%;
  color: var(--blue-500);
  font-size: 1.5rem;
}
.form-success h4 { font-family: var(--font-display); font-weight: 400; font-size: 1.625rem; color: var(--navy-900); margin-bottom: 0.75rem; }
.form-success p { color: var(--ink-soft); font-size: 0.9375rem; }

/* ---------- Footer (navy) ---------- */

.footer {
  background: var(--navy-950);
  color: var(--silver-200);
  border-top: 1px solid var(--line-dark);
  padding: clamp(3rem, 6vw, 5rem) 0 2.5rem;
  position: relative;
  overflow: hidden;
}
/* Subtle white brand mark watermark */
.footer::after {
  content: '';
  position: absolute;
  right: clamp(-60px, -3vw, -30px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(200px, 26vw, 360px);
  aspect-ratio: 1 / 1;
  background: url(../assets/diya-d-white.png) no-repeat center / contain;
  opacity: 0.07;
  pointer-events: none;
}
.footer .logo-name { color: var(--white); }
.footer .logo-sub { color: var(--silver-500); }
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-dark);
}
.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; color: var(--silver-400); }
.footer-contact a:hover { color: var(--white); }
.footer-links { display: flex; gap: 2rem; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--silver-400); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--silver-500);
}
.footer-tagline { font-family: var(--font-display); letter-spacing: 0.18em; color: var(--silver-400); }

/* ---------- WhatsApp float ---------- */

.wa-float {
  position: fixed;
  right: 1.75rem;
  bottom: 1.75rem;
  z-index: 90;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-850));
  border: 1px solid var(--blue-400);
  box-shadow: 0 10px 40px -8px rgba(46, 90, 168, 0.55);
  transition: transform 0.45s var(--ease-expo), box-shadow 0.45s;
}
.wa-float:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 16px 50px -8px rgba(79, 124, 201, 0.7); }
.wa-float svg { width: 1.625rem; height: 1.625rem; fill: var(--silver-200); }

/* ==========================================================================
   PARTNERS PAGE
   ========================================================================== */

.page-hero {
  padding: calc(var(--nav-height) + clamp(4rem, 9vw, 7.5rem)) 0 clamp(3.5rem, 7vw, 6rem);
  background:
    radial-gradient(55vw 40vw at 90% 0%, rgba(46, 90, 168, 0.09), transparent 62%),
    var(--white);
}
.page-hero h1 { font-size: clamp(2.5rem, 5.2vw, 4.25rem); max-width: 14em; }

/* Business hero: text left, spotlight illustration filling the white space right */
.business-hero .biz-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.business-hero .biz-hero-text h1 { font-size: clamp(2.25rem, 3.9vw, 3.5rem); max-width: 12em; }
.business-hero .biz-hero-media img {
  width: 100%;
  height: auto;
  max-width: 640px;
  margin-inline: auto;
  display: block;
  /* softly melt the white PNG edges into the white hero */
  -webkit-mask-image: radial-gradient(120% 120% at 55% 45%, #000 68%, transparent 100%);
  mask-image: radial-gradient(120% 120% at 55% 45%, #000 68%, transparent 100%);
}
.page-hero .lead { margin-top: 1.75rem; max-width: 36em; color: var(--ink-soft); }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 2.5rem;
  transition: color 0.3s;
}
.back-link:hover { color: var(--navy-950); }
.back-link::before { content: '\2190'; transition: transform 0.4s var(--ease-expo); }
.back-link:hover::before { transform: translateX(-4px); }

.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.partner-card {
  border: 1px solid var(--line-light);
  background: var(--white);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.5s ease, transform 0.6s var(--ease-expo), box-shadow 0.6s ease;
}
.partner-card:hover {
  border-color: var(--blue-400);
  transform: translateY(-5px);
  box-shadow: 0 30px 70px -35px rgba(10, 20, 40, 0.25);
}

.partner-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.partner-name { font-family: var(--font-display); font-size: clamp(1.625rem, 2.6vw, 2.125rem); color: var(--navy-900); }
.partner-meta { margin-top: 0.375rem; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); }

.badge {
  flex: none;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.5rem 0.875rem;
  border: 1px solid;
}
.badge-premium { color: var(--navy-700); border-color: var(--silver-400); background: var(--silver-100); }
.badge-gold { color: var(--blue-500); border-color: var(--blue-400); background: rgba(46, 90, 168, 0.08); }
.badge-top { color: var(--white); border-color: var(--navy-700); background: linear-gradient(115deg, var(--navy-700), var(--navy-900)); }

.partner-quote {
  font-size: 1rem;
  color: var(--ink-soft);
  border-left: 2px solid var(--blue-500);
  padding-left: 1.25rem;
  font-style: italic;
}
.partner-result {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--blue-500);
}
.partner-result::before { content: ''; width: 1.5rem; height: 1px; background: var(--blue-400); flex: none; }
.partner-celeb {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-light);
  font-size: 0.8125rem;
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.partner-celeb::before { content: '\2726'; color: var(--blue-400); font-size: 0.75rem; }

/* ==========================================================================
   PRICING PAGE
   ========================================================================== */

.app-logo {
  width: 104px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid var(--silver-300);
  box-shadow: 0 18px 44px -22px rgba(46, 90, 168, 0.35);
  margin-bottom: 1.75rem;
}

/* Single-video quick access in the pricing hero */
.pricing-quick {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.single-video-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 1.25rem 0.7rem 0.7rem;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: border-color 0.3s ease, transform 0.4s var(--ease-expo), box-shadow 0.4s ease;
}
.single-video-chip:hover { border-color: var(--blue-400); transform: translateY(-2px); box-shadow: 0 14px 34px -20px rgba(10, 20, 40, 0.3); }
.single-video-chip strong { color: var(--navy-900); font-weight: 600; }
.single-video-chip .svc-icon {
  display: grid; place-items: center;
  width: 2.1rem; height: 2.1rem;
  border-radius: 50%;
  background: var(--silver-100);
  flex: none;
}
.single-video-chip .svc-icon .ic { width: 17px; height: 17px; color: var(--blue-500); }
.single-video-chip .svc-arrow { color: var(--blue-500); transition: transform 0.4s var(--ease-expo); }
.single-video-chip:hover .svc-arrow { transform: translateX(4px); }

.packs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2rem);
  align-items: stretch;
}
.pack {
  border: 1px solid var(--line-light);
  padding: clamp(2rem, 3.2vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--white);
  position: relative;
  transition: border-color 0.5s, transform 0.6s var(--ease-expo), box-shadow 0.6s ease;
}
.pack:hover {
  border-color: var(--blue-400);
  transform: translateY(-6px);
  box-shadow: 0 30px 70px -35px rgba(10, 20, 40, 0.25);
}
.pack-flag {
  position: absolute;
  top: -1px;
  right: 2rem;
  padding: 0.5rem 1rem;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: linear-gradient(115deg, var(--silver-300), var(--white));
  color: var(--navy-900);
}
.pack-tier { font-size: 0.6875rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--blue-500); }
.pack h3 { font-family: var(--font-display); font-weight: 400; font-size: 2rem; color: var(--navy-900); }
.pack-price { font-size: 0.9375rem; color: var(--ink-soft); }
.pack-price strong { font-family: var(--font-display); font-weight: 400; font-size: 1.625rem; color: var(--navy-900); letter-spacing: 0.02em; white-space: nowrap; }
.pack-commit { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); }
.pack-features { display: grid; gap: 0.875rem; padding-top: 1.5rem; border-top: 1px solid var(--line-light); }
.pack-features li {
  display: flex;
  gap: 0.875rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.pack-features li::before { content: '\2014'; color: var(--blue-500); flex: none; }
.pack .btn { margin-top: auto; }

/* Popular pack: navy showcase card */
.pack.popular {
  border-color: var(--navy-800);
  background: linear-gradient(170deg, var(--navy-850), var(--navy-950));
  box-shadow: 0 30px 70px -35px rgba(10, 20, 40, 0.45);
}
.pack.popular .pack-tier { color: var(--blue-300); }
.pack.popular h3, .pack.popular .pack-price strong { color: var(--white); }
.pack.popular .pack-price { color: var(--silver-400); }
.pack.popular .pack-commit { color: var(--silver-500); }
.pack.popular .pack-features { border-top-color: var(--line-dark); }
.pack.popular .pack-features li { color: var(--silver-300); }
.pack.popular .pack-features li::before { color: var(--blue-400); }

/* Flash offer (navy band) */

.flash {
  border: 1px solid var(--navy-800);
  background:
    radial-gradient(40vw 20vw at 100% 0%, rgba(79, 124, 201, 0.2), transparent 60%),
    linear-gradient(160deg, var(--navy-850), var(--navy-950));
  padding: clamp(2.25rem, 4.5vw, 4rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.flash h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.875rem, 3.2vw, 2.75rem); color: var(--white); }
.flash-price { font-family: var(--font-display); font-size: clamp(2.5rem, 4.5vw, 3.75rem); line-height: 1; }
.flash-price small { font-family: var(--font-body); font-size: 0.875rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--silver-500); display: block; margin-top: 0.625rem; }
.flash-features { display: grid; gap: 0.75rem; margin-top: 1.75rem; }
.flash-features li { display: flex; gap: 0.875rem; font-size: 0.9rem; color: var(--silver-300); }
.flash-features li::before { content: '\2014'; color: var(--blue-400); flex: none; }
.flash-side { display: flex; flex-direction: column; gap: 2rem; align-items: flex-start; }

/* Testimonial */

.testimonial { max-width: 56rem; margin: 0 auto; text-align: center; }
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.375rem);
  line-height: 1.35;
  color: var(--navy-900);
}
.testimonial cite {
  display: block;
  margin-top: 2rem;
  font-style: normal;
  font-size: 0.8125rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.testimonial cite strong { color: var(--navy-800); font-weight: 500; }

/* Guarantees */

.guarantees { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
.guarantee { border-top: 1px solid var(--line-light); padding-top: 1.75rem; position: relative; }
.guarantee::before {
  content: '';
  position: absolute;
  top: -2px; left: 0;
  width: 2.75rem; height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--navy-800));
}
.guarantee h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.625rem; color: var(--navy-900); margin-bottom: 0.875rem; }
.guarantee p { font-size: 0.9375rem; color: var(--ink-soft); }

.guarantee-note {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding: 1.75rem 2rem;
  border: 1px solid var(--line-light);
  background: var(--silver-100);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}
.guarantee-note strong { color: var(--navy-900); }
.guarantee-note .shield {
  width: 2.75rem; height: 2.75rem;
  flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--blue-500);
  border-radius: 50%;
  color: var(--blue-500);
}

/* ==========================================================================
   QUOTE PAGE
   ========================================================================== */

.quote-shell { max-width: 62rem; margin: 0 auto; }

.quote-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line-light);
}
.quote-steps-nav { display: flex; gap: 2rem; }
.q-step-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6875rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
  transition: color 0.4s;
}
.q-step-label .no { font-family: var(--font-display); font-size: 1.125rem; }
.q-step-label.active { color: var(--navy-950); }
.q-step-label.done { color: var(--blue-500); }

.currency-switch { display: flex; border: 1px solid var(--line-light); }
.currency-switch button {
  padding: 0.625rem 1.125rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
  transition: background 0.35s, color 0.35s;
}
.currency-switch button + button { border-left: 1px solid var(--line-light); }
.currency-switch button.active { background: var(--navy-900); color: var(--white); }

.q-step { display: none; }
.q-step.active { display: block; animation: stepIn 0.7s var(--ease-expo); }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

.q-step h2 { font-size: clamp(1.75rem, 3.6vw, 2.75rem); margin-bottom: 2.25rem; }

.tier-group { margin-bottom: 2.25rem; }
.tier-title {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.tier-title::after { content: ''; height: 1px; flex: 1; background: var(--line-light); }

/* Type-to-find search */
.sector-search {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--line-light);
  border-radius: 12px;
  padding: 0.9rem 1.15rem;
  margin-bottom: 2rem;
  background: var(--white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.sector-search:focus-within { border-color: var(--blue-400); box-shadow: 0 0 0 3px rgba(46, 90, 168, 0.1); }
.sector-search .ic { width: 20px; height: 20px; flex: none; color: var(--ink-faint); }
.sector-search input {
  flex: 1;
  border: none;
  background: none;
  font: inherit;
  font-size: 1rem;
  color: var(--navy-900);
}
.sector-search input:focus { outline: none; }
.sector-search input::placeholder { color: var(--ink-faint); }
.sector-noresult { margin: -1rem 0 2rem; font-size: 0.875rem; color: var(--ink-soft); }
.sector-noresult strong { color: var(--navy-900); font-weight: 600; }

.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.choice-card {
  border: 1px solid var(--line-light);
  padding: 1.25rem 1.375rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  font-size: 0.9375rem;
  color: var(--navy-800);
  background: var(--white);
  transition: border-color 0.4s, background 0.4s, transform 0.5s var(--ease-expo), box-shadow 0.5s ease;
}
.choice-card:hover {
  border-color: var(--blue-400);
  transform: translateY(-3px);
  box-shadow: 0 18px 45px -25px rgba(10, 20, 40, 0.25);
}
.choice-card.selected {
  border-color: var(--navy-800);
  background: rgba(46, 90, 168, 0.07);
}
.choice-card .ico {
  width: 2.5rem; height: 2.5rem;
  flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  font-size: 1rem;
  background: var(--silver-100);
}

.ambition-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.ambition-card {
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2rem 1.75rem;
  min-height: 14rem;
}
.ambition-card strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: 1.375rem; color: var(--navy-900); margin-bottom: 0.5rem; }
.ambition-card span { font-size: 0.875rem; color: var(--ink-soft); }

.q-back {
  margin-top: 2rem;
  font-size: 0.6875rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  transition: color 0.3s;
}
.q-back:hover { color: var(--navy-950); }
.q-back::before { content: '\2190'; }

/* Result (navy showcase) */

.result-card {
  border: 1px solid var(--navy-800);
  background:
    radial-gradient(45vw 25vw at 100% 0%, rgba(79, 124, 201, 0.22), transparent 60%),
    linear-gradient(165deg, var(--navy-850), var(--navy-950));
  padding: clamp(2.25rem, 4.5vw, 4rem);
  box-shadow: 0 40px 90px -45px rgba(10, 20, 40, 0.5);
}
.result-eyebrow { font-size: 0.6875rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--blue-300); margin-bottom: 1rem; }
.result-pack { font-family: var(--font-display); font-size: clamp(2.25rem, 5vw, 3.75rem); line-height: 1.05; }
.result-for { margin-top: 0.875rem; font-size: 0.9375rem; color: var(--silver-400); }

.result-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1.5rem;
  margin: 2.25rem 0 0.75rem;
}
.result-price { font-family: var(--font-display); font-size: clamp(2.75rem, 5.5vw, 4.25rem); line-height: 1; color: var(--white); }
.result-price small { font-family: var(--font-body); font-size: 0.875rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--silver-500); }
.result-market { font-size: 1.125rem; color: var(--silver-500); text-decoration: line-through; text-decoration-color: rgba(152, 163, 179, 0.7); }

.result-savings {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--blue-300);
  border: 1px solid var(--blue-400);
  padding: 0.5rem 1rem;
  margin-top: 0.5rem;
}
.result-commit { margin-top: 1.5rem; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--silver-500); }

.result-advice {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  border-left: 2px solid var(--blue-400);
  background: rgba(10, 20, 40, 0.5);
  font-size: 0.9375rem;
  color: var(--silver-300);
}
.result-advice strong { color: var(--white); font-weight: 500; }

.result-features { margin-top: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem 2rem; }
.result-features li { display: flex; gap: 0.75rem; font-size: 0.875rem; color: var(--silver-300); }
.result-features li::before { content: '\2014'; color: var(--blue-400); flex: none; }

.result-cta { margin-top: 2.75rem; display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; }

/* ==========================================================================
   TYPE OVERRIDES — kept at the end of the file to win the cascade
   ========================================================================== */

/* Figures: Geist Mono (tabular by nature — prices and stats never shift) */
.stat-value, .step-no, .section-index, .pack-price strong,
.flash-price, .result-price, .q-step-label .no {
  font-family: var(--font-numeral);
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* Headings that declared serif weight 400 — clean sans needs weight hierarchy */
.service h3, .partner-name, .pack h3, .guarantee h3, .app-form h3,
.form-success h4, .flash h3, .ambition-card strong, .result-pack, .marquee-item {
  font-weight: 600;
  letter-spacing: -0.015em;
}
.student-quote, .testimonial blockquote { font-weight: 500; letter-spacing: -0.01em; }
.logo-name { font-weight: 700; letter-spacing: 0.06em; }
.footer-tagline { font-weight: 500; letter-spacing: 0.04em; }

/* Press feedback: buttons respond to touch (kept subtle, transform-only) */
.btn:active { transform: scale(0.97); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media video { max-width: min(65vw, 340px); }
  .business-hero .biz-hero-grid { grid-template-columns: 1fr; }
  .business-hero .biz-hero-text h1 { max-width: 14em; }
  .business-hero .biz-hero-media img { max-width: 480px; }
  .feature-row, .split-illus { grid-template-columns: 1fr; }
  .feature-row:nth-child(even) .feature-media, .split-illus.reverse .split-illus-media { order: 0; }
  .feature-media img, .split-illus-media img { max-width: 420px; }
  .sector-cards { grid-template-columns: 1fr 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .wa-card img { max-width: 320px; }
  .model-grid { grid-template-columns: 1fr; }
  .join-band-inner { grid-template-columns: 1fr; }
  .apply-shell { grid-template-columns: 1fr; }
  .apply-intro { position: static; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service { min-height: 17rem; }
  .steps { grid-template-columns: 1fr 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .packs { grid-template-columns: 1fr; max-width: 34rem; margin: 0 auto; }
  .flash { grid-template-columns: 1fr; }
  .guarantees { grid-template-columns: 1fr; gap: 2.5rem; }
  .student-grid { grid-template-columns: 1fr; }
  .sector-grid, .ambition-grid { grid-template-columns: 1fr 1fr; }
}

/* Nav collapses earlier now that it carries two audience links + CTA */
@media (max-width: 940px) {
  .nav-links {
    position: fixed;
    inset: var(--nav-height) 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line-light);
    padding: 1rem var(--gutter) 2rem;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.4s var(--ease-expo), visibility 0.4s;
  }
  .nav-links.open { opacity: 1; transform: none; visibility: visible; }
  .nav-links a { padding: 0.875rem 0; width: 100%; }
  .nav-links a.btn { justify-content: flex-start; }
  .nav-toggle { display: flex; }
}

@media (max-width: 720px) {
  .hero-scroll { display: none; }
  .portal-doors { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .join-band-cta { align-items: stretch; }
  .stats .container { grid-template-columns: 1fr; }
  .stat { border-left: none; border-top: 1px solid var(--line-dark); }
  .stat:first-child { border-top: none; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .sector-grid, .ambition-grid { grid-template-columns: 1fr; }
  .sector-cards { grid-template-columns: 1fr; }
  .result-features { grid-template-columns: 1fr; }
  .quote-steps-nav { gap: 1.25rem; }
}
