/* ── Design tokens ─────────────────────────────────────── */
:root {
  --brand:      #0e3c70;
  --brand-soft: #1c6bef;
  --brand-ink:  #ffffff;
  --bg:         #f4f6fb;
  --surface:    #ffffff;
  --surface-2:  #eef2fb;
  --border:     #d0d6e4;
  --ink:        #0f172a;
  --muted:      #4b5563;
  --accent:     #16c8a8;
  --success:    #198754;
  --error:      #dc3545;

  --radius:     14px;
  --radius-sm:  8px;
  --shadow-1:   0 2px 12px rgba(15,23,42,.07);
  --shadow-2:   0 8px 28px rgba(15,23,42,.12);
}

/* ── Reset & base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0 }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip }
body {
  font: 16px/1.7 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: clip;
  max-width: 100%;
}
a { color: var(--brand); text-decoration: none }
a:hover { text-decoration: underline }
p { margin: 0 0 12px }
p:last-child { margin-bottom: 0 }
ul { padding-left: 0 }
img { max-width: 100%; height: auto; display: block }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ── Container ─────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 480px)  { .container { padding: 0 20px } }
@media (min-width: 768px)  { .container { padding: 0 32px } }

/* ── Utilities ─────────────────────────────────────────── */
.muted      { color: var(--muted) }
.note       { color: var(--muted); font-size: 13px }
.disclaimer { color: #6b7280; font-size: 12px; line-height: 1.6; margin-top: 12px }

/* ═══════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
   ═══════════════════════════════════════════════════════ */

.ann-bar {
  background: var(--brand);
  color: var(--brand-ink);
  font-size: 13px; font-weight: 500;
  height: 40px;
  overflow: hidden; white-space: nowrap;
  display: flex; align-items: center;
  cursor: pointer; user-select: none;
  transition: background .15s ease;
}
.ann-bar:hover,
.ann-bar:focus-visible { background: #0a305a; outline: none }

.ann-bar__track {
  display: flex; width: max-content;
  animation: ann-ticker 50s linear infinite;
}
.ann-bar:hover .ann-bar__track { animation-play-state: paused }
.ann-bar__text { padding: 0 16px; white-space: nowrap }

.ann-bar__live {
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-left: 16px;
  box-shadow: 0 0 0 0 rgba(22,200,168,.6);
  animation: live-pulse 1.8s ease-out infinite;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(22,200,168,.7) }
  70%  { box-shadow: 0 0 0 8px rgba(22,200,168,0)  }
  100% { box-shadow: 0 0 0 0   rgba(22,200,168,0)  }
}

@keyframes ann-ticker {
  from { transform: translateX(0) }
  to   { transform: translateX(-50%) }
}

/* ═══════════════════════════════════════════════════════
   APPBAR & NAV
   ═══════════════════════════════════════════════════════ */

.appbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s ease;
}
.appbar.is-scrolled { box-shadow: 0 4px 20px rgba(15,23,42,.10) }

.appbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  /* only set vertical padding — horizontal padding comes from .container */
  padding-top: 10px;
  padding-bottom: 10px;
  min-height: 58px;
}
@media (min-width: 600px) {
  .appbar__row { min-height: 64px; padding-top: 12px; padding-bottom: 12px }
}

/* Brand / Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 1;
  text-decoration: none;
  min-width: 0;
}
.brand__mark {
  width: 34px; height: 34px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  letter-spacing: .01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 480px) {
  .brand__mark { width: 38px; height: 38px }
  .brand__name { font-size: 0.95rem }
}
@media (min-width: 900px) {
  .brand__mark { width: 42px; height: 42px }
  .brand__name { font-size: 1rem }
}

/* Hamburger — visible on mobile, hidden on desktop */
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  width: 44px; height: 44px;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .15s ease, border-color .15s ease;
}
.icon-btn:hover { background: var(--bg); border-color: var(--brand) }

/* ── Mobile nav drawer
   Lives outside <header> so backdrop-filter can't trap fixed positioning
   ─────────────────────────────────────────────────────── */
#site-nav {
  /* layout */
  display: flex;
  flex-direction: column;
  gap: 4px;

  /* cover full screen below the appbar */
  position: fixed;
  top: 58px; left: 0; right: 0; bottom: 0;
  z-index: 200;

  background: #fff;
  border-top: 1px solid var(--border);
  padding: 12px 16px 48px;
  overflow-y: auto;
  overflow-x: hidden;

  /* hidden by default */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
}
#site-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

@media (min-width: 600px) {
  #site-nav { top: 64px }
}

/* Mobile nav link */
.nav__link {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 13px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  min-height: 48px;
  transition: background .15s ease;
  text-decoration: none;
}
.nav__link:hover { background: var(--bg); text-decoration: none }

/* "Enroll Now" button inside mobile nav */
.nav__enroll {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 10px;
  min-height: 50px;
  font-size: 15px;
}

/* ── Desktop nav — floats inside the appbar area ─ */
@media (min-width: 900px) {
  /* hide hamburger */
  .icon-btn { display: none }

  #site-nav {
    /* position at the top of the viewport, same height as appbar */
    position: fixed;
    top: 0;
    left: 0; right: 0;
    bottom: auto;
    height: 64px;

    /* horizontal flex row, aligned to container's right edge */
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    /* match the container right padding at each viewport width */
    padding: 0 max(20px, calc((100vw - 1160px) / 2 + 32px)) 0 0;

    background: transparent;
    border-top: none;
    overflow: visible;

    /* always visible on desktop */
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    /* pass clicks through the empty left area */
    pointer-events: none;
    transition: none;
    z-index: 200;
  }

  /* re-enable clicks only on the actual links/buttons */
  #site-nav .nav__link,
  #site-nav .nav__enroll,
  #site-nav .nav__call {
    pointer-events: auto;
  }

  .nav__link {
    width: auto;
    padding: 7px 10px;
    font-size: 13.5px;
    opacity: .8;
    white-space: nowrap;
    min-height: 36px;
  }
  .nav__link:hover { opacity: 1; background: rgba(14,60,112,.07) }

  .nav__enroll {
    width: auto;
    margin-top: 0;
    padding: 8px 16px;
    min-height: 36px;
    font-size: 13.5px;
  }
}

@media (min-width: 1100px) {
  #site-nav  { gap: 4px }
  .nav__link { padding: 8px 12px; font-size: 14px }
  .nav__enroll { padding: 9px 18px; font-size: 14px }
}

/* Appbar right group — call + hamburger stay together */
.appbar__end {
  display: flex; align-items: center; gap: 8px;
  margin-left: auto;
}

/* Navbar call button */
.nav__call {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1.5px solid rgba(14,60,112,.25);
  color: var(--brand);
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
  transition: background .15s ease, border-color .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.nav__call:hover { background: rgba(14,60,112,.06); border-color: var(--brand); text-decoration: none }
.nav__call svg { flex-shrink: 0 }

/* Mobile: hide number on very small screens, show from 360px+ */
.nav__call-num { display: none }
@media (min-width: 360px) {
  .nav__call-num { display: inline; font-size: 11px; letter-spacing: .01em }
}

/* Desktop-only version lives inside #site-nav — hidden on mobile */
.nav__call--desktop { display: none }

@media (min-width: 900px) {
  /* hide mobile version from appbar */
  .nav__call--mobile { display: none }
  /* show desktop version in the nav row */
  .nav__call--desktop {
    display: inline-flex;
    pointer-events: auto;
    font-size: 13px;
  }
}

/* ═══════════════════════════════════════════════════════
   SECTIONS — universal shell
   ═══════════════════════════════════════════════════════ */

.section {
  padding: 40px 0;
}
@media (min-width: 480px) { .section { padding: 52px 0 } }
@media (min-width: 768px) { .section { padding: 72px 0 } }
@media (min-width: 1024px){ .section { padding: 88px 0 } }

.section--alt { background: var(--surface) }

.section__head {
  margin-bottom: 32px;
}
@media (min-width: 768px) { .section__head { margin-bottom: 40px } }

.section__head h2 {
  margin: 8px 0 12px;
  font-size: clamp(1.45rem, 4vw, 2rem);
  line-height: 1.2;
}

.section__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-soft);
  background: rgba(28,107,239,.08);
  border: 1px solid rgba(28,107,239,.18);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ═══════════════════════════════════════════════════════
   GRID
   ═══════════════════════════════════════════════════════ */

.grid { display: grid; gap: 20px }
@media (min-width: 480px) { .grid { gap: 24px } }

.grid--2    { grid-template-columns: 1fr }
.grid--auto { grid-template-columns: 1fr }

@media (min-width: 640px)  {
  .grid--auto { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) }
}
@media (min-width: 768px)  {
  .grid--2 { grid-template-columns: 1fr 1fr }
  .grid { gap: 28px }
}

/* ═══════════════════════════════════════════════════════
   SURFACES & CARDS
   ═══════════════════════════════════════════════════════ */

.surface {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.card    { padding: 20px }
.callout { padding: 16px; margin-top: 20px; background: #fff; border: 1px dashed #cbd5e1; border-radius: var(--radius) }
.elev-1  { box-shadow: var(--shadow-1) }
.elev-2  { box-shadow: var(--shadow-2) }

@media (min-width: 480px) { .card { padding: 24px } }
@media (min-width: 768px) { .card { padding: 28px } }

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */

.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px;
  border-radius: 10px; border: none;
  background: linear-gradient(135deg, var(--brand), var(--brand-soft));
  color: var(--brand-ink);
  font-weight: 600; font-size: 15px; letter-spacing: .02em;
  box-shadow: var(--shadow-1);
  transition: transform .1s ease, box-shadow .2s ease;
  min-height: 50px;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); text-decoration: none }
.btn:active { transform: translateY(0) scale(.98) }

.btn--tonal {
  border: 1.5px solid rgba(14,60,112,.3);
  background: #fff;
  color: var(--brand);
  box-shadow: none;
}
.btn--tonal:hover { background: rgba(14,60,112,.05) }

.btn--call {
  background: rgba(22,200,168,.12);
  color: #0e8f77;
  border: 1.5px solid rgba(22,200,168,.4);
  box-shadow: none;
}
.btn--call:hover { background: rgba(22,200,168,.2); box-shadow: 0 4px 14px rgba(22,200,168,.25); transform: translateY(-2px) }

.btn--small { padding: 8px 16px; font-size: 14px; min-height: 40px }
.btn--block { display: flex; width: 100% }

/* ═══════════════════════════════════════════════════════
   CHIPS
   ═══════════════════════════════════════════════════════ */

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  border-radius: 999px; padding: 6px 12px;
  border: 1px solid rgba(14,60,112,.2);
  background: rgba(14,60,112,.06);
  color: var(--brand); font-size: 12.5px; font-weight: 500;
  line-height: 1.3;
}
.chip.link { cursor: pointer; transition: background .15s ease, color .15s ease }
.chip.link:hover { background: var(--brand); color: #fff; text-decoration: none }

/* ═══════════════════════════════════════════════════════
   RIPPLE
   ═══════════════════════════════════════════════════════ */

.ripple {
  position: absolute; border-radius: 999px; transform: scale(0);
  animation: ripple .55s ease-out;
  background: rgba(255,255,255,.3); pointer-events: none;
}
@keyframes ripple { to { transform: scale(4); opacity: 0 } }

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */

.hero {
  position: relative; overflow: hidden;
  padding: 36px 0 32px;
  background: linear-gradient(160deg, rgba(14,60,112,.08), rgba(28,107,239,.03) 60%, transparent);
}
@media (min-width: 480px) { .hero { padding: 48px 0 40px } }
@media (min-width: 768px) { .hero { padding: 72px 0 60px } }
@media (min-width: 1024px){ .hero { padding: 88px 0 72px } }

/* Decorative blobs — hidden on small screens for performance */
.hero__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0 }
@media (min-width: 600px) { .hero__blob { opacity: .3 } }

.hero__blob--1 {
  width: min(440px, 70vw); height: min(440px, 70vw);
  background: radial-gradient(circle, rgba(28,107,239,.4), transparent 70%);
  top: -20%; right: -10%;
}
.hero__blob--2 {
  width: min(320px, 55vw); height: min(320px, 55vw);
  background: radial-gradient(circle, rgba(22,200,168,.35), transparent 70%);
  bottom: -10%; left: -8%;
}

.hero__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
@media (min-width: 900px) { .hero__grid { grid-template-columns: 1.25fr .75fr; gap: 40px } }

.kicker {
  display: inline-block;
  color: var(--brand-soft);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10.5px;
  font-weight: 700;
  margin-bottom: 10px;
}

.display {
  font-size: clamp(1.65rem, 6vw, 3rem);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -.01em;
  color: var(--ink);
}

.lead {
  color: var(--muted);
  font-size: clamp(.9rem, 2.5vw, 1.05rem);
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Buttons — always stacked on mobile, side-by-side at 560px+ */
.actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 560px) {
  .actions { flex-direction: row; flex-wrap: wrap }
}

.hero__chips  { margin-bottom: 0 }
.hero__domain { margin-top: 16px; font-size: 13px; color: var(--muted) }
.hero__domain a { font-weight: 600; color: var(--brand) }

/* ── Warranty seal (fixed, right side, never affects layout) ─ */
.warranty-seal {
  position: fixed;
  right: 14px;
  top: 30%;
  z-index: 90;
  width: 154px;
  height: 154px;
  pointer-events: none;
  filter: drop-shadow(3px 5px 14px rgba(0,0,0,.35));
  animation: seal-wobble 7s ease-in-out infinite;
}
.warranty-seal svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Mobile — smaller, pinned below the sticky nav */
@media (max-width: 767px) {
  .warranty-seal {
    width: 110px;
    height: 110px;
    top: 68px;
    bottom: auto;
    right: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .warranty-seal { animation: none; transform: translateY(0) rotate(-5deg) }
}
@keyframes seal-wobble {
  0%,100% { transform: rotate(-5deg) scale(1);    }
  25%     { transform: rotate(-1deg) scale(1.05); }
  60%     { transform: rotate(-8deg) scale(0.96); }
  80%     { transform: rotate(-3deg) scale(1.02); }
}

/* ── Disclaimer badge / sticker ─────────────────────────── */
.disclaimer-badge {
  display: inline-block;
  max-width: 300px;
  width: 100%;
  margin-top: 18px;
  transform: rotate(-2.5deg);
  transform-origin: left center;
  filter: drop-shadow(2px 3px 7px rgba(120,53,15,.18));
  animation: badge-float 6s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .disclaimer-badge { animation: none }
}
@keyframes badge-float {
  0%,100% { transform: rotate(-2.5deg) translateY(0); }
  30%     { transform: rotate(-1.8deg) translateY(-4px); }
  65%     { transform: rotate(-3deg)   translateY(-2px); }
}

.hero__media {
  padding: 20px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
}
@media (min-width: 480px) { .hero__media { padding: 24px } }

.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.stat__num   { font-size: 1.8rem; font-weight: 800; color: var(--brand); line-height: 1 }
.stat__label { font-size: 12.5px; color: var(--muted); margin-top: 3px; line-height: 1.3 }

/* ═══════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════ */

.about-card { position: relative; overflow: hidden }

.about-quote {
  position: absolute; top: -12px; right: 16px;
  font-size: 100px; line-height: 1;
  font-family: Georgia, 'Times New Roman', serif;
  color: rgba(14,60,112,.05);
  pointer-events: none; user-select: none;
}

.about-highlights {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 16px;
}

.about-highlight {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(22,200,168,.06);
  border: 1px solid rgba(22,200,168,.2);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}

.about-highlight__icon {
  width: 17px; height: 17px; min-width: 17px;
  color: var(--accent); margin-top: 3px;
}

.about-highlight span { font-size: 13.5px; font-weight: 500; line-height: 1.5 }

/* Photo card — compact on mobile, tall on desktop */
.what-to-expect {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.trainer-figure {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #cfe2ff, #e7f1ff);
  /* portrait on mobile — face fills the frame naturally */
  aspect-ratio: 3 / 4;
  max-width: 320px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .trainer-figure { aspect-ratio: 3 / 4; max-width: 420px; margin: 0 }
  .what-to-expect { min-height: 360px }
}

.trainer-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.trainer-caption {
  display: flex; flex-direction: column; gap: 2px;
  padding: 14px 4px 4px;
  text-align: center;
}
.trainer-caption strong { font-size: 15px; color: var(--ink) }
.trainer-caption span  { font-size: 12.5px; color: var(--muted) }
@media (min-width: 768px) {
  .trainer-caption { text-align: left; padding: 12px 0 0 }
}

/* ═══════════════════════════════════════════════════════
   PROGRAMS
   ═══════════════════════════════════════════════════════ */

.program-card {
  position: relative;
  border-top: 3px solid transparent;
  overflow: hidden;
}
.program-card--blue { border-top-color: var(--brand) }
.program-card--teal { border-top-color: var(--accent) }

.program-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(14,60,112,.1);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.program-card__icon--teal {
  background: rgba(22,200,168,.12);
  color: #0ca089;
}

.program-card h3       { margin-bottom: 4px }
.program-card__sub     { font-size: 13px; margin-bottom: 16px }

/* ═══════════════════════════════════════════════════════
   SYLLABUS
   ═══════════════════════════════════════════════════════ */

.syllabus-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.syllabus-card__icon--blue  { background: rgba(14,60,112,.09);  color: var(--brand) }
.syllabus-card__icon--amber { background: rgba(217,119,6,.1);   color: #b45309 }
.syllabus-card__icon--green { background: rgba(22,200,168,.1);  color: #0ca089 }
.syllabus-card h3 { margin-bottom: 12px }

/* ═══════════════════════════════════════════════════════
   LISTS
   ═══════════════════════════════════════════════════════ */

.list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.list li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.list li::before {
  content: '›';
  position: absolute; left: 0; top: 0;
  color: var(--brand-soft); font-weight: 700;
}

/* ═══════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════ */

.pricing { display: grid; gap: 20px }
/* 2 columns only on larger screens to avoid cramped cards */
@media (min-width: 680px) {
  .pricing { grid-template-columns: repeat(2, 1fr); gap: 24px }
}

.price-card {
  position: relative; isolation: isolate;
  transition: transform .12s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2) }

.price-card.featured {
  border-top: 3px solid var(--brand-soft);
  box-shadow: 0 8px 32px rgba(28,107,239,.16), var(--shadow-2);
}
.price-card.featured::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(28,107,239,.03), transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}

.badge {
  position: absolute; top: 14px; right: 14px;
  font-size: 11px; font-weight: 700;
  background: rgba(28,107,239,.1);
  color: var(--brand-soft);
  border: 1px solid rgba(28,107,239,.25);
  padding: 4px 10px; border-radius: 999px;
  letter-spacing: .04em;
}

.price-card__label { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--ink) }
.price             { font-size: 2rem; font-weight: 800; color: var(--brand); margin-bottom: 4px }
.price__unit       { font-size: 14px; color: var(--muted); font-weight: 400; margin-left: 4px }
.price-card .list  { margin: 16px 0 20px }
.price-card .btn   { margin-top: auto }

.pricing-note { text-align: center; margin-top: 16px; padding: 0 8px }

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px)  { .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 24px } }
@media (min-width: 1000px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr) } }

.testimonial-card { position: relative; overflow: hidden }
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: -8px; right: 14px;
  font-size: 80px; line-height: 1;
  font-family: Georgia, serif;
  color: rgba(14,60,112,.07);
  pointer-events: none;
}

.testimonial-card__header {
  display: flex; gap: 12px; align-items: center;
  margin-bottom: 14px;
}

.testimonial-avatar {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 700; font-size: 17px;
  display: flex; align-items: center; justify-content: center;
}
.testimonial-avatar--teal  { background: #0ca089 }
.testimonial-avatar--amber { background: #b45309 }

.stars           { font-size: 14px; color: #f59e0b; letter-spacing: 1px; margin-bottom: 3px }
.testimonial-name{ display: block; font-weight: 700; font-size: 14px; color: var(--ink) }
.testimonial-role{ display: block; font-size: 12px; color: var(--muted); margin-top: 1px }

.testimonial-card blockquote {
  margin: 0; padding: 0;
  font-style: italic; color: var(--muted);
  font-size: 14px; line-height: 1.7;
  border: none;
}

/* ═══════════════════════════════════════════════════════
   ACCORDION (FAQ)
   ═══════════════════════════════════════════════════════ */

.accordion { display: flex; flex-direction: column; gap: 10px }

.accordion__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition: border-color .2s ease;
}
.accordion__item:has([aria-expanded="true"]) {
  border-left: 3px solid var(--brand-soft);
  border-color: rgba(28,107,239,.3);
}

.accordion__header {
  width: 100%;
  /* tighter padding on mobile */
  padding: 14px 16px;
  background: transparent; color: var(--ink);
  border: 0; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-weight: 600; font-size: 14.5px; cursor: pointer;
  min-height: 52px; line-height: 1.4;
  transition: background .15s ease;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 480px) {
  .accordion__header { padding: 15px 20px; font-size: 15px }
}
.accordion__header:hover { background: rgba(14,60,112,.03) }

.chev { transition: transform .2s ease; opacity: .7; flex-shrink: 0 }
.accordion__header[aria-expanded="true"] .chev { transform: rotate(180deg) }

.accordion__panel { overflow: hidden }
.accordion__content {
  padding: 0 16px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
@media (min-width: 480px) {
  .accordion__content { padding: 0 20px 20px }
}

/* ═══════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════ */

.contact-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 16px;
  margin: 16px 0;
}

.contact-item { display: flex; gap: 12px; align-items: flex-start }

.contact-icon {
  width: 40px; height: 40px; min-width: 40px;
  border-radius: 10px;
  background: rgba(14,60,112,.08);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
}

.contact-item strong {
  display: block;
  font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted); margin-bottom: 3px;
}
.contact-item a,
.contact-item span { color: var(--ink); font-weight: 500; font-size: 15px }

/* ═══════════════════════════════════════════════════════
   FORM
   ═══════════════════════════════════════════════════════ */

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px }
.field label { color: var(--ink); font-weight: 600; font-size: 14px }

.field input,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;   /* 16px prevents iOS zoom-on-focus */
  font-family: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
  -webkit-appearance: none;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand-soft);
  box-shadow: 0 0 0 3px rgba(28,107,239,.12);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 100px }
.req { color: var(--brand-soft); margin-left: 3px }
.hp  { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */

.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 40px 0 24px;
}
@media (min-width: 768px) { .footer { padding: 56px 0 32px } }

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
/* 2-column: brand + first links column on one row, remaining two below */
@media (min-width: 640px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px 40px }
}
/* full 4-column on wide screens */
@media (min-width: 960px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr }
}

.footer__brand-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
}

.footer__links {
  display: flex; flex-direction: column; gap: 8px;
}

.footer__links strong {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--ink);
  margin-bottom: 4px;
}

.footer__links nav {
  display: flex; flex-direction: column; gap: 8px;
}

.footer__links nav a,
.footer__links > a {
  color: var(--muted);
  font-size: 14px; line-height: 1.5;
  transition: color .15s ease;
}
.footer__links nav a:hover,
.footer__links > a:hover { color: var(--brand); text-decoration: none }

.footer__links > span { color: var(--muted); font-size: 13px; line-height: 1.5 }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.footer__bottom p { font-size: 12.5px; color: var(--muted) }

/* ═══════════════════════════════════════════════════════
   FLOATING CTA (WhatsApp + Scroll-top)
   ═══════════════════════════════════════════════════════ */

.floating-cta {
  position: fixed; right: 16px; bottom: 16px;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
  z-index: 60;
}
@media (min-width: 480px) {
  .floating-cta { right: 20px; bottom: 20px }
}

.scroll-top {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-1); cursor: pointer;
  opacity: 0; pointer-events: none;
  transform: translateY(6px) scale(.94);
  transition: opacity .25s ease, transform .25s ease;
}
.scroll-top svg { width: 20px; height: 20px }
.floating-cta.has-arrow .scroll-top {
  opacity: 1; pointer-events: auto; transform: translateY(0) scale(1);
}

.whatsapp-float {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(37,211,102,.35), var(--shadow-2);
  transition: transform .18s ease, box-shadow .2s ease;
  -webkit-tap-highlight-color: transparent;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(37,211,102,.4), var(--shadow-2);
}
.whatsapp-float svg { width: 26px; height: 26px; fill: currentColor }

.call-float {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(14,60,112,.35), var(--shadow-2);
  transition: transform .18s ease, box-shadow .2s ease;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}
.call-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(14,60,112,.4), var(--shadow-2);
}
.call-float svg { width: 24px; height: 24px; stroke: currentColor }

/* ═══════════════════════════════════════════════════════
   SNACKBAR
   ═══════════════════════════════════════════════════════ */

.snackbar {
  position: fixed; left: 50%; bottom: 20px;
  transform: translateX(-50%);
  background: #fff; color: var(--ink);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-2);
  border-radius: 10px;
  padding: 12px 20px;
  z-index: 200;
  font-size: 14px;
  max-width: calc(100vw - 32px);
  white-space: nowrap;
}
.snackbar.success { border-color: rgba(25,135,84,.35) }
.snackbar.error   { border-color: rgba(220,53,69,.35) }

/* ═══════════════════════════════════════════════════════
   NOTIFICATION MODAL
   ═══════════════════════════════════════════════════════ */

.notif-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(15,23,42,.55);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  animation: overlay-in .25s ease;
}
.notif-overlay[hidden] { display: none }

@keyframes overlay-in {
  from { opacity: 0 }
  to   { opacity: 1 }
}

.notif-modal {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
  max-width: 580px; width: 100%; max-height: 88vh;
  overflow-y: auto;
  padding: 24px 24px 20px;
  animation: modal-up .38s cubic-bezier(.22,1,.36,1);
  position: relative;
}
@keyframes modal-up {
  from { opacity: 0; transform: translateY(28px) scale(.95) }
  to   { opacity: 1; transform: translateY(0)     scale(1)  }
}

.notif-modal__hdr {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.notif-modal__badge {
  background: rgba(22,200,168,.15);
  color: #0e8f77;
  font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(22,200,168,.35);
}
.notif-modal__close {
  background: none; border: none; cursor: pointer;
  color: var(--muted);
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background .15s ease, color .15s ease;
  padding: 0;
}
.notif-modal__close:hover { background: var(--surface-2); color: var(--ink) }

.notif-modal__title {
  font-size: 18px; font-weight: 700;
  line-height: 1.35;
  color: var(--brand);
  margin-bottom: 6px;
}
.notif-modal__sub {
  font-size: 13px; color: var(--muted);
  margin-bottom: 20px;
}

.notif-modal__section { margin-bottom: 20px }
.notif-modal__section-hdr {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.notif-modal__step {
  width: 24px; height: 24px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.notif-modal__subjects {
  list-style: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.notif-modal__subject {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 14px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.notif-modal__subject:last-child { border-bottom: none }
.notif-modal__subject:nth-child(odd) { background: var(--surface-2) }
.notif-modal__subject-name { color: var(--ink) }
.notif-modal__marks {
  background: rgba(14,60,112,.1);
  color: var(--brand);
  font-size: 12px; font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
}

.notif-modal__body {
  font-size: 14px; color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.notif-modal__footer { margin-top: 20px }

@media (max-width: 480px) {
  .notif-modal { padding: 20px 16px 16px }
  .notif-modal__title { font-size: 16px }
}
