/* ============================================================
   PREPMASTER — Precision Medical Prep
   Design: Deep Navy + Warm Cream + Surgical Gold
   Fonts : Playfair Display (display) · Inter (body)
   Concept: Clinical authority meets human warmth
============================================================ */

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

:root {
  /* Core palette */
  --navy:      #0a1f3c;
  --navy-mid:  #12305e;
  --navy-soft: #1a4a7a;
  --gold:      #c4963a;
  --gold-lt:   #e8b84b;
  --gold-pale: #fdf6e3;
  --gold-rim:  rgba(196,150,58,.18);
  --cream:     #fdfcf9;
  --cream2:    #f7f5ef;
  --cream3:    #ede9de;
  --ink:       #0d1b2e;
  --ink2:      #2d4263;
  --ink3:      #5a7a9a;
  --ink4:      #8fa8c2;
  --green:     #2e9e6e;
  --green-bg:  rgba(46,158,110,.07);
  --red:       #c94040;

  /* Surfaces */
  --border:    rgba(10,31,60,.08);
  --border2:   rgba(10,31,60,.05);
  --sh1: 0 2px 8px rgba(10,31,60,.07), 0 8px 24px rgba(10,31,60,.06);
  --sh2: 0 6px 24px rgba(10,31,60,.10), 0 20px 60px rgba(10,31,60,.08);
  --sh3: 0 12px 48px rgba(10,31,60,.14), 0 32px 96px rgba(10,31,60,.08);

  --r:  10px;
  --r2: 18px;
  --r3: 28px;
  --max: 1160px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Nunito Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2 {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  line-height: 1.1;
  color: var(--navy);
}
h3, h4 { font-family: 'Inter', 'Nunito Sans', sans-serif; font-weight: 700; color: var(--navy); }
em { font-style: italic; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── LAYOUT ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.section-pad { padding: 100px 0; }

/* ── TAGS / EYEBROWS ── */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-pale); border: 1px solid var(--gold-rim);
  color: var(--gold); padding: 5px 14px; border-radius: 100px;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 16px;
}
.section-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.section-h2 em { color: var(--gold); font-style: italic; }
.section-sub { color: var(--ink3); font-size: .97rem; max-width: 500px; margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 100px; font-weight: 700; cursor: pointer;
  border: none; font-family: inherit; transition: all .22s ease;
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--navy); color: #fff;
  padding: 14px 26px; font-size: .88rem;
  box-shadow: 0 2px 10px rgba(10,31,60,.2), 0 8px 28px rgba(10,31,60,.12);
}
.btn-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(10,31,60,.25), 0 14px 40px rgba(10,31,60,.14);
}
.btn-primary svg, .btn-primary span { flex-shrink: 0; }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-primary svg { transition: transform .2s; }

.btn-outline {
  background: transparent; color: var(--navy);
  padding: 13px 24px; font-size: .88rem;
  border: 1.5px solid rgba(10,31,60,.18);
}
.btn-outline:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-2px); }

.btn-nav {
  background: var(--navy); color: #fff;
  padding: 9px 20px; font-size: .78rem;
  box-shadow: 0 2px 8px rgba(10,31,60,.18);
}
.btn-nav:hover { background: var(--navy-mid); transform: translateY(-1px); }

.btn-lg { padding: 16px 30px !important; font-size: .95rem !important; }

.btn-white {
  background: #fff; color: var(--navy);
  padding: 14px 28px; font-size: .9rem;
  box-shadow: 0 4px 20px rgba(255,255,255,.2);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,255,255,.3); }

/* ── PROGRESS BAR ── */
#progressBar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  z-index: 9999; transition: width .12s linear;
}

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253,252,249,.92);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border2);
  transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: var(--sh1); }

.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 32px;
  height: 68px; display: flex; align-items: center; gap: 32px;
}

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark {
  width: 36px; height: 36px; background: var(--navy); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: .95rem;
  font-weight: 700; color: var(--gold); letter-spacing: -.02em;
}
.logo-text {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 700; color: var(--navy);
}
.logo-text em { color: var(--gold); font-style: italic; }

.nav-links { display: flex; gap: 6px; margin-right: auto; }
.nav-links a {
  font-size: .8rem; font-weight: 600; color: var(--ink3);
  padding: 6px 12px; border-radius: 100px;
  transition: color .18s, background .18s;
}
.nav-links a:hover { color: var(--navy); background: var(--cream2); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }

.mobile-menu {
  display: none; flex-direction: column;
  padding: 16px 32px 24px; gap: 12px;
  border-top: 1px solid var(--border);
  background: rgba(253,252,249,.98);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: .92rem; font-weight: 600; color: var(--ink2); padding: 8px 0; border-bottom: 1px solid var(--border2); }
.mobile-menu .btn-primary { margin-top: 8px; justify-content: center; }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  padding-top: 68px;
  background: var(--cream);
  position: relative; overflow: hidden;
  min-height: 100vh;
  display: flex; flex-direction: column;
}

/* Signature background treatment — ruled lines like medical paper */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,31,60,.028) 1px, transparent 1px);
  background-size: 100% 40px;
  pointer-events: none;
}
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hs1 {
  position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,150,58,.1) 0%, transparent 65%);
  top: -200px; right: -150px;
}
.hs2 {
  position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(10,31,60,.04) 0%, transparent 70%);
  bottom: -100px; left: -120px;
}
.hs3 {
  position: absolute;
  width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent, rgba(196,150,58,.12) 40%, transparent);
  right: 40%;
}
/* Dot grid for visual texture */
.hs-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(10,31,60,.07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 60% 60% at 80% 40%, black 0%, transparent 100%);
}

.hero-container {
  max-width: var(--max); margin: 0 auto; padding: 80px 32px 0;
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 56px; align-items: center; flex: 1;
  position: relative; z-index: 1;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-bg); border: 1px solid rgba(46,158,110,.18);
  color: var(--green); padding: 6px 14px; border-radius: 100px;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 24px;
}
.eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.85)} }

.hero-h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 700; color: var(--navy);
  margin-bottom: 22px; line-height: 1.06;
}
.h1-highlight {
  color: var(--gold);
  position: relative; display: inline-block;
}
.h1-highlight::after {
  content: '';
  position: absolute; bottom: 2px; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: 2px; opacity: .5;
}

.hero-desc {
  font-size: 1.05rem; color: var(--ink2); max-width: 460px;
  margin-bottom: 36px; line-height: 1.74;
}
.hero-desc strong { color: var(--navy); }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

/* Social proof */
.hero-trust { display: flex; align-items: center; gap: 14px; }
.trust-avatars { display: flex; }
.ta {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2.5px solid var(--cream);
  font-size: .66rem; font-weight: 800; color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-left: -10px; flex-shrink: 0;
}
.ta:first-child { margin-left: 0; }
.ta1 { background: var(--navy); }
.ta2 { background: #2a7d6e; }
.ta3 { background: var(--gold); }
.ta4 { background: #6b4fa0; }
.ta5 { background: var(--navy-soft); }
.trust-stars { color: var(--gold); font-size: .78rem; letter-spacing: 2px; margin-bottom: 2px; }
.trust-text span { font-size: .76rem; color: var(--ink3); font-weight: 600; }

/* ── Hero visual cards ── */
.hero-right { position: relative; }
.hero-card-wrap { position: relative; padding: 40px 10px 60px 30px; }

/* Glass-card style for the score display */
.hc-main {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r3);
  padding: 30px;
  box-shadow: var(--sh3);
  position: relative; z-index: 2;
}
.hc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.hc-badge {
  font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em;
  color: var(--ink4);
}
.hc-score-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.hc-score-block { text-align: center; flex: 1; }
.hc-score-label {
  font-size: .66rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--ink4); margin-bottom: 6px;
}
.hc-score-num {
  font-family: 'Playfair Display', serif; font-size: 3.5rem;
  font-weight: 700; line-height: 1; margin-bottom: 4px;
}
.hc-score-block.before .hc-score-num { color: var(--red); }
.hc-score-block.after .hc-score-num { color: var(--green); }
.hc-score-sub { font-size: .66rem; font-weight: 600; color: var(--ink4); }

.hc-arrow-wrap { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 0 12px; }
.hc-arrow { font-size: 2rem; color: var(--navy); line-height: 1; }
.hc-jump {
  font-size: .7rem; font-weight: 800; color: var(--green);
  background: var(--green-bg); padding: 3px 9px; border-radius: 100px;
}

.hc-bar-wrap { }
.hc-bar-label { font-size: .7rem; font-weight: 700; color: var(--ink3); margin-bottom: 8px; }
.hc-bar-track { height: 8px; background: var(--cream2); border-radius: 100px; overflow: hidden; }
.hc-bar-fill {
  height: 100%; width: 0; border-radius: 100px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  animation: barFill 2s .8s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes barFill { to { width: var(--w); } }
.hc-bar-pct { font-size: .7rem; font-weight: 700; color: var(--ink3); margin-top: 6px; display: block; }

/* Floating chips */
.hc-float {
  position: absolute;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r2); padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--sh2); z-index: 3;
}
.hcf-icon { font-size: 1.3rem; flex-shrink: 0; }
.hcf-title { font-size: .78rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
.hcf-sub { font-size: .67rem; color: var(--ink4); font-weight: 600; }

.hcf1 { top: 10px; left: -10px; animation: float1 6s ease-in-out infinite; }
.hcf2 { top: 80px; right: -16px; animation: float1 7s 2s ease-in-out infinite; }
.hcf3 { bottom: 20px; left: 0; animation: float1 8s 1s ease-in-out infinite; }

@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ── Stats bar ── */
.hero-stats-bar {
  background: var(--navy);
  position: relative; z-index: 1; margin-top: auto;
}
.hsb-inner {
  max-width: var(--max); margin: 0 auto; padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 16px;
}
.hsb-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hsb-num {
  font-family: 'Playfair Display', serif; font-size: 2.4rem;
  font-style: italic; color: var(--gold); line-height: 1;
}
.hsb-suffix { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-style: italic; color: var(--gold); }
.hsb-label {
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: rgba(255,255,255,.45); margin-top: 4px;
}
.hsb-div { width: 1px; height: 40px; background: rgba(255,255,255,.1); }

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about { background: var(--cream2); }

.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }

.about-visual { position: relative; }
.about-img-card {
  position: relative; display: inline-block;
}
.aic-photo {
  width: 100%; max-width: 340px; aspect-ratio: 3/4;
  object-fit: cover; border-radius: var(--r3);
  display: block; box-shadow: var(--sh3);
}
/* Fallback placeholder when no photo */
.aic-inner {
  width: 100%; max-width: 340px; aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-soft) 100%);
  border-radius: var(--r3); position: relative; overflow: hidden;
  box-shadow: var(--sh3);
}
.aic-initials {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 7rem; font-style: italic;
  color: rgba(255,255,255,.08); user-select: none;
}
.aic-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 35% 25%, rgba(196,150,58,.22) 0%, transparent 60%);
}

.aic-score-badge {
  position: absolute; bottom: -16px; left: -18px;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 14px 18px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--sh2);
}
.asb-emoji { font-size: 1.4rem; }
.asb-num {
  font-family: 'Playfair Display', serif; font-size: 1.6rem;
  font-style: italic; color: var(--navy); line-height: 1;
}
.asb-label { font-size: .64rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--ink4); }

.aic-exp-badge {
  position: absolute; top: -14px; right: -18px;
  background: var(--gold); border-radius: var(--r2);
  padding: 12px 16px; text-align: center; box-shadow: var(--sh2);
}
.aeb-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-style: italic; color: #fff; line-height: 1; }
.aeb-label { font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.7); }

.about-quote-card {
  margin-top: 28px; background: var(--cream);
  border-radius: var(--r2); padding: 22px 26px;
  border-left: 3px solid var(--gold);
  box-shadow: var(--sh1);
  position: relative;
}
.aqc-quote {
  font-family: 'Playfair Display', serif; font-size: 3.5rem;
  color: var(--cream3); line-height: .5; margin-bottom: 8px;
}
.about-quote-card p { font-size: .88rem; color: var(--ink2); font-style: italic; line-height: 1.68; }
.aqc-author { font-size: .74rem; font-weight: 700; color: var(--navy); margin-top: 10px; }

.about-content { }
.about-content .section-h2 { margin-bottom: 14px; }
.about-lead { font-size: 1.02rem; font-weight: 600; color: var(--navy); margin-bottom: 14px; line-height: 1.65; }
.about-body { font-size: .93rem; color: var(--ink2); margin-bottom: 12px; line-height: 1.78; }
.about-body strong { color: var(--navy); }

.about-credentials { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0 36px; }
.cred-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--r); padding: 14px;
}
.cred-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.cred-text strong { display: block; font-size: .82rem; color: var(--navy); margin-bottom: 2px; }
.cred-text span { font-size: .72rem; color: var(--ink4); font-weight: 600; }

/* ══════════════════════════════
   RESULTS
══════════════════════════════ */
.results { background: var(--navy); }
.results .section-tag { background: rgba(196,150,58,.14); border-color: rgba(196,150,58,.25); color: var(--gold-lt); }
.results .section-h2 { color: #fff; }
.results .section-sub { color: rgba(255,255,255,.5); }

.results-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-bottom: 44px; }
.result-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r2); padding: 36px 22px 28px; text-align: center;
  position: relative; overflow: hidden; transition: all .3s;
}
.result-card:hover { background: rgba(255,255,255,.08); transform: translateY(-5px); }
.result-card.featured-rc { background: rgba(196,150,58,.1); border-color: rgba(196,150,58,.22); }
.rc-accent-bar {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 40px; height: 2.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: 0 0 4px 4px;
}
.rc-num {
  font-family: 'Playfair Display', serif; font-size: 3.8rem; font-style: italic;
  color: var(--gold); line-height: 1; display: inline;
}
.rc-plus { display: inline; font-family: 'Playfair Display', serif; font-size: 2.5rem; font-style: italic; color: var(--gold); }
.rc-label { font-size: .8rem; font-weight: 700; color: #fff; margin: 10px 0 6px; }
.rc-desc { font-size: .72rem; color: rgba(255,255,255,.4); line-height: 1.55; }

/* Score strips */
.score-strips {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r2); padding: 26px 32px;
}
.score-strip-label {
  font-size: .66rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.3); margin-bottom: 20px;
}
.score-strips-row { display: flex; align-items: center; flex-wrap: wrap; gap: 0; justify-content: space-around; }
.ss-item { display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 4px 16px; }
.ss-before { font-size: .95rem; font-weight: 800; color: rgba(201,79,79,.7); }
.ss-arrow { font-size: .8rem; color: rgba(255,255,255,.2); }
.ss-after {
  font-family: 'Playfair Display', serif; font-size: 1.7rem; font-style: italic;
  color: #4ade80;
}
.ss-exam { font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.3); }
.ss-div { width: 1px; height: 40px; background: rgba(255,255,255,.07); }

/* ══════════════════════════════
   HOW IT WORKS
══════════════════════════════ */
.how { background: var(--cream); }

.how-grid {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0; align-items: start; margin-bottom: 52px;
}
.how-step {
  background: var(--cream2); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 30px 24px; position: relative;
  overflow: hidden; transition: all .28s;
}
.how-step::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 100%);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.how-step:hover { background: var(--cream); box-shadow: var(--sh2); transform: translateY(-6px); }
.how-step:hover::after { transform: scaleX(1); }

.hs-number {
  font-family: 'Playfair Display', serif; font-size: 4.5rem; font-style: italic;
  color: var(--cream3); line-height: 1; position: absolute; top: 6px; right: 14px;
}
.hs-icon { font-size: 1.8rem; margin-bottom: 14px; display: block; }
.how-step h3 { font-size: 1.02rem; color: var(--navy); margin-bottom: 10px; }
.how-step p { font-size: .85rem; color: var(--ink2); line-height: 1.68; margin-bottom: 14px; }
.hs-time {
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: var(--gold);
}

.how-connector {
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 50px; padding-left: 0; padding-right: 0;
  position: relative;
}
.hconn-line {
  position: absolute; top: 60px; left: 50%; width: 1px; height: 24px;
  background: var(--border);
}
.hconn-arrow {
  font-size: 1.5rem; color: var(--ink4); line-height: 1;
  padding: 0 8px;
}

.how-cta { text-align: center; }

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testimonials { background: var(--cream2); }

.testi-masonry {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 20px;
}
.testi-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 28px;
  transition: all .28s; display: flex; flex-direction: column;
}
.testi-card:hover { box-shadow: var(--sh2); transform: translateY(-4px); }
.testi-featured {
  grid-row: 1 / 3; grid-column: 1 / 2;
  background: var(--navy); border-color: transparent;
}
.testi-featured .tc-body { color: rgba(255,255,255,.72) !important; }
.testi-featured .tc-stars { color: var(--gold) !important; }
.testi-featured .tc-quote-mark { color: rgba(196,150,58,.3) !important; }
.testi-featured strong { color: #fff !important; }
.testi-featured .tc-author strong { color: #fff !important; }
.testi-featured .tc-avatar { background: rgba(255,255,255,.12) !important; }
.testi-featured .tc-info span { color: rgba(255,255,255,.4) !important; }
.testi-featured .tc-exam-badge {
  background: rgba(196,150,58,.18) !important;
  color: var(--gold-lt) !important; border-color: rgba(196,150,58,.28) !important;
}

.tc-stars { color: var(--gold); font-size: .8rem; letter-spacing: 3px; margin-bottom: 8px; }
.tc-quote-mark {
  font-family: 'Playfair Display', serif; font-size: 4rem;
  color: var(--cream3); line-height: .5; margin-bottom: 10px;
}
.tc-body {
  font-size: .87rem; color: var(--ink2); line-height: 1.7;
  flex: 1; margin-bottom: 22px;
}
.tc-body strong { color: var(--navy); }
.tc-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tc-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  font-size: .7rem; font-weight: 800; color: #fff;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy);
}
.tc-info strong { display: block; font-size: .84rem; color: var(--navy); }
.tc-info span { display: block; font-size: .72rem; color: var(--ink4); font-weight: 600; }
.tc-exam-badge {
  display: inline-block; margin-top: 4px;
  background: var(--gold-pale); color: var(--gold);
  border: 1px solid var(--gold-rim);
  padding: 2px 9px; border-radius: 100px;
  font-size: .63rem; font-weight: 800; letter-spacing: .04em;
}

/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
.services { background: var(--cream); }

.services-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.service-card {
  border-radius: var(--r2); padding: 36px 28px;
  position: relative; overflow: hidden; transition: all .28s;
  border: 1px solid transparent;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--sh2); }

.sc-primary { background: var(--navy); }
.sc-primary.service-card:nth-child(2) { background: var(--navy-mid); }
.service-card:last-child { background: var(--cream2); border-color: var(--border); }

.sc-num {
  font-family: 'Playfair Display', serif; font-size: 5.5rem; font-style: italic;
  position: absolute; top: 6px; right: 16px; line-height: 1;
}
.sc-primary .sc-num { color: rgba(255,255,255,.06); }
.service-card:last-child .sc-num { color: var(--cream3); }

.sc-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.service-card h3 { font-size: 1.12rem; margin-bottom: 12px; }
.sc-primary h3 { color: #fff; }
.service-card:last-child h3 { color: var(--navy); }
.service-card p { font-size: .86rem; line-height: 1.66; margin-bottom: 20px; }
.sc-primary p { color: rgba(255,255,255,.58); }
.service-card:last-child p { color: var(--ink2); }
.sc-list { display: flex; flex-direction: column; gap: 9px; }
.sc-list li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: .82rem; line-height: 1.45;
}
.sc-primary .sc-list li { color: rgba(255,255,255,.62); }
.service-card:last-child .sc-list li { color: var(--ink2); }
.sc-list li::before { content: '→'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq { background: var(--cream2); }
.faq-layout { display: grid; grid-template-columns: 1fr 1.8fr; gap: 80px; align-items: start; }

.faq-left { position: sticky; top: 88px; }
.faq-left .section-h2 { text-align: left; font-size: clamp(1.9rem, 3.5vw, 2.6rem); margin-bottom: 14px; }
.faq-left .section-sub { text-align: left; max-width: none; color: var(--ink2); font-size: .93rem; margin-bottom: 28px; }

.faq-email-btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--border); border-radius: var(--r); padding: 12px 18px;
  font-size: .82rem; font-weight: 700; color: var(--navy); transition: all .2s;
}
.faq-email-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-pale); }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden; transition: border-color .22s, box-shadow .22s;
}
.faq-item.open { border-color: rgba(10,31,60,.16); box-shadow: var(--sh1); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 18px 20px;
  font-family: 'Inter', sans-serif; font-size: .88rem; font-weight: 700; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--border);
  display: grid; place-items: center; flex-shrink: 0;
  position: relative; transition: all .25s;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--navy); border-radius: 2px; transition: all .25s;
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 10px; }
.faq-item.open .faq-q { color: var(--navy); }
.faq-item.open .faq-icon { background: var(--navy); border-color: var(--navy); }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: #fff; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-a { display: none; padding: 0 20px 18px; }
.faq-a.open { display: block; }
.faq-a p { font-size: .87rem; color: var(--ink2); line-height: 1.74; }

/* ══════════════════════════════
   BOOK / CALENDLY
══════════════════════════════ */
.book { background: var(--cream); }
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.book-left { position: sticky; top: 88px; }
.book-left .section-h2 { text-align: left; font-size: clamp(1.9rem, 3.5vw, 2.6rem); margin-bottom: 14px; }
.book-desc { color: var(--ink2); font-size: .97rem; line-height: 1.74; margin-bottom: 28px; }

.book-checklist { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.bcl-item { display: flex; align-items: flex-start; gap: 12px; font-size: .87rem; color: var(--ink2); }
.bcl-check {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--green-bg); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 900; margin-top: 1px;
}
.book-contact-alt { margin-bottom: 20px; }
.book-contact-alt p { font-size: .75rem; color: var(--ink4); font-weight: 600; margin-bottom: 4px; }
.bca-link { font-size: .88rem; font-weight: 700; color: var(--navy); border-bottom: 1.5px solid var(--gold); padding-bottom: 1px; }

.book-urgency {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(201,64,64,.05); border: 1px solid rgba(201,64,64,.15);
  border-radius: 100px; padding: 8px 16px;
  font-size: .74rem; font-weight: 700; color: var(--red);
}
.bu-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--red); flex-shrink: 0;
  animation: pulse 1.5s ease-in-out infinite;
}

.book-right {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--r3); overflow: hidden;
  box-shadow: var(--sh2); min-height: 540px; position: relative;
}
.cal-fallback {
  position: absolute; inset: 0;
  display: none; flex-direction: column; align-items: center; justify-content: center;
  padding: 48px 36px; text-align: center; gap: 14px;
}
.cal-fallback.visible { display: flex; }
.calf-icon { font-size: 3.5rem; }
.cal-fallback h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--navy); }
.cal-fallback p { color: var(--ink2); font-size: .88rem; max-width: 260px; line-height: 1.65; }
.calf-or { font-size: .75rem; color: var(--ink4); }
.calf-email { font-weight: 700; color: var(--navy); border-bottom: 1.5px solid var(--gold); padding-bottom: 1px; font-size: .9rem; }

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact { background: var(--cream2); }
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; }

.ci-card {
  background: var(--navy); border-radius: var(--r2); padding: 32px;
  display: flex; flex-direction: column; gap: 24px;
}
.ci-item { display: flex; align-items: flex-start; gap: 14px; }
.ci-icon-wrap {
  width: 40px; height: 40px; background: rgba(255,255,255,.07);
  border-radius: 10px; display: grid; place-items: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.ci-item strong { display: block; font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.38); margin-bottom: 3px; }
.ci-item a, .ci-item span { color: rgba(255,255,255,.85); font-size: .87rem; font-weight: 600; }
.ci-item a:hover { color: var(--gold-lt); }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cf-group { display: flex; flex-direction: column; gap: 6px; }
.cf-group label {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: var(--navy);
}
.cf-group input,
.cf-group select,
.cf-group textarea {
  background: var(--cream); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 12px 14px;
  font-family: 'Inter', 'Nunito Sans', sans-serif; font-size: .87rem;
  color: var(--ink); outline: none; width: 100%;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.cf-group input::placeholder, .cf-group textarea::placeholder { color: var(--ink4); }
.cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus {
  border-color: var(--navy); box-shadow: 0 0 0 3px rgba(10,31,60,.07);
}
.cf-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238fa8c2' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer;
}
.cf-group textarea { resize: vertical; min-height: 110px; }
.cf-success {
  display: none; background: rgba(46,158,110,.07); border: 1px solid rgba(46,158,110,.22);
  color: var(--green); padding: 12px 16px; border-radius: var(--r);
  font-size: .84rem; font-weight: 700;
}

/* ══════════════════════════════
   CTA BANNER
══════════════════════════════ */
.cta-banner {
  background: linear-gradient(130deg, var(--navy) 0%, #0f2e5a 55%, var(--navy-soft) 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.ctab-shapes { position: absolute; inset: 0; pointer-events: none; }
.ctab-shape {
  position: absolute; border-radius: 50%;
}
.s1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(196,150,58,.16), transparent);
  top: -180px; right: 60px;
}
.s2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,.04), transparent);
  bottom: -100px; left: 80px;
}
.ctab-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 36px; flex-wrap: wrap; position: relative; z-index: 1;
}
.ctab-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: #fff; margin-bottom: 8px;
}
.ctab-text p { color: rgba(255,255,255,.55); font-size: .95rem; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer { background: var(--cream2); border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-brand { }
.footer-logo { margin-bottom: 16px; }
.footer-brand p { color: var(--ink3); font-size: .82rem; line-height: 1.68; max-width: 240px; margin-bottom: 16px; }
.footer-email {
  font-size: .82rem; font-weight: 700; color: var(--navy);
  border-bottom: 1.5px solid var(--gold); padding-bottom: 2px; display: inline-block;
}
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col h4 {
  font-size: .68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: var(--navy); margin-bottom: 6px;
}
.footer-col a { font-size: .82rem; color: var(--ink3); transition: color .18s; }
.footer-col a:hover { color: var(--navy); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: .76rem; color: var(--ink4); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .76rem; color: var(--ink4); }
.footer-legal a:hover { color: var(--navy); }

/* ══════════════════════════════
   SCROLL REVEAL
══════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1040px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; padding-bottom: 40px; }
  .hero-left { display: flex; flex-direction: column; align-items: center; }
  .hero-right { display: none; }
  .hero-desc { max-width: 540px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { display: flex; flex-direction: column; align-items: center; }
  .about-credentials { grid-template-columns: 1fr; }

  .results-grid { grid-template-columns: 1fr 1fr; }

  .how-grid { grid-template-columns: 1fr; }
  .how-connector { display: none; }

  .testi-masonry { grid-template-columns: 1fr 1fr; }
  .testi-featured { grid-row: auto; grid-column: auto; }

  .services-grid { grid-template-columns: 1fr; }

  .faq-layout { grid-template-columns: 1fr; gap: 36px; }
  .faq-left { position: static; }

  .book-grid { grid-template-columns: 1fr; }
  .book-left { position: static; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ctab-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 700px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }

  .container { padding: 0 20px; }
  .section-pad { padding: 72px 0; }

  .hero-container { padding: 52px 20px 0; }
  .hsb-inner { flex-wrap: wrap; gap: 12px 32px; }
  .hsb-div { display: none; }

  .results-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .score-strips-row { flex-direction: column; gap: 14px; align-items: center; }
  .ss-div { display: none; }

  .testi-masonry { grid-template-columns: 1fr; }

  .cf-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-actions { justify-content: center; }
}

/* ══════════════════════════════
   COUNTER ANIMATION TARGET
══════════════════════════════ */
.hsb-num, .rc-num { display: inline; }