/* ==========================================================================
   Aligned Precision™ — Design System (Option C, "Bold Contrast")
   Static site. No build step. Mobile-first.
   --------------------------------------------------------------------------
   Section map:
     1. Tokens (colour, type, spacing)
     2. Reset & base
     3. Typography helpers (eyebrow, headline, body)
     4. Layout (container, section, grids)
     5. Buttons & CTAs
     6. Nav
     7. Components (counters, ticker, cards, badges, fit boxes, forms)
     8. Footer
     9. Motion (scroll reveal, reduced motion)
    10. Responsive breakpoints
   ========================================================================== */

/* ===== 1. TOKENS ========================================================= */
:root {
  /* Colour */
  --charcoal:     #1C1C1C;
  --hero-black:   #0D0D0D;
  --gold:         #FFD650;
  --gold-dim:     #e0b93f;
  --gold-ink:     #D6A100;   /* rich gold for ALL gold text/marks on LIGHT backgrounds (dark sections keep #FFD650) */
  --off-white:    #F5F5F3;
  --white:        #FFFFFF;
  --text-dark:    #1C1C1C;
  --text-light:   #F5F5F5;
  --text-muted:   #888888;
  --text-faint:   #555555;
  --text-on-dark: #C8C8C8;   /* min brightness for body/description text on backgrounds darker than #2A2A2A */
  --border-dark:  #2A2A2A;
  --border-light: #E5E5E5;

  /* Type */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Spacing rhythm */
  --section-pad: 52px;          /* desktop vertical section padding */
  --section-pad-mobile: 32px;
  --gutter: 28px;
  --maxw: 1100px;
  --radius: 3px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== 2. RESET & BASE =================================================== */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 18px;          /* primary body copy — comfortable reading size for a senior reader (rem-based components unaffected) */
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; height: auto; }

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

h1, h2, h3, h4 { margin: 0; font-weight: 500; letter-spacing: -0.02em; line-height: 1.1; }

p { margin: 0 0 1.1em; }

ul { margin: 0; padding: 0; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ===== 3. TYPOGRAPHY HELPERS ============================================ */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-ink);   /* legible deep amber on light sections */
  margin: 0 0 18px;
}
.section--dark .eyebrow,
.section--black .eyebrow,
.section--charcoal .eyebrow { color: var(--gold); }   /* bright gold stays on dark */

.headline {
  font-size: clamp(1.75rem, 3.6vw, 2.6rem);   /* tightened one step — less shouting, more considered */
  letter-spacing: -0.025em;
}
.headline--lg { font-size: clamp(2.3rem, 5.2vw, 3.8rem); }

.gold { color: var(--gold); }
/* Gold emphasis on LIGHT sections uses the deeper amber so it doesn't dissolve on white */
.section--white .gold,
.section--offwhite .gold { color: var(--gold-ink); }

.lede {
  font-size: 1.25rem;         /* ~20px — sub-headline lifted one step */
  line-height: 1.6;
  max-width: 440px;
}

.muted  { color: var(--text-muted); }
.faint  { color: var(--text-faint); }

/* ===== 4. LAYOUT ======================================================== */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}
.section--lg { padding-top: calc(var(--section-pad) + 16px); padding-bottom: calc(var(--section-pad) + 16px); }

/* Background variants */
.section--white    { background: var(--white);     color: var(--text-dark); }
.section--offwhite { background: var(--off-white);  color: var(--text-dark); }
.section--black    { background: var(--hero-black); color: var(--text-light); }
.section--charcoal { background: var(--charcoal);   color: var(--text-light); }
.section--dark     { background: var(--hero-black); color: var(--text-light); }

/* Grids */
.grid { display: grid; gap: 40px; }
.grid--2 { grid-template-columns: 1fr 1fr; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--split { grid-template-columns: 1fr 1fr; align-items: center; }
.grid--titleleft { grid-template-columns: 0.9fr 1.1fr; gap: 56px; }

/* ===== 5. BUTTONS ======================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 15px 28px;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Gold fill — primary on dark */
.btn--gold {
  background: var(--gold);
  color: var(--hero-black);
  border-color: var(--gold);
}
.btn--gold:hover { background: #ffe07f; }

/* Charcoal fill — primary on light */
.btn--charcoal {
  background: var(--charcoal);
  color: var(--gold);
  border-color: var(--charcoal);
}
.btn--charcoal:hover { background: #000; }

/* Gold outline — nav book button on dark */
.btn--gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--gold-outline:hover { background: var(--gold); color: var(--hero-black); }

/* Ghost / text */
.btn--ghost {
  background: transparent;
  color: var(--text-light);
  border-color: transparent;
  padding-left: 6px;
  padding-right: 6px;
}
.btn--ghost:hover { color: var(--gold); }
.section--white .btn--ghost,
.section--offwhite .btn--ghost { color: var(--text-dark); }

.btn--sm { padding: 11px 20px; font-size: 0.875rem; }
.btn--block { width: 100%; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ===== 6. NAV =========================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--hero-black);
  border-bottom: 1px solid var(--border-dark);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__logo {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo img { height: 54px; width: auto; display: block; margin-right: 8px; }
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-mark {
  height: 54px;
  width: auto;
  display: block;
}
.nav-brand-name {
  font-size: 15px;
  font-weight: 500;
  color: #F5F5F5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav__links a {
  font-size: 0.9375rem;
  color: var(--text-light);
  transition: color 0.18s var(--ease);
}
.nav__links a:hover { color: var(--gold); }
.nav__back { color: var(--text-muted) !important; font-size: 0.875rem !important; }

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

/* ===== 7. COMPONENTS ==================================================== */

/* --- Counters (hero) --- */
.counters {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin: 0 0 30px;
}
.counter__num {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.counter__label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --- Ticker band --- */
.ticker {
  background: var(--gold);
  color: var(--charcoal);
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
}
.ticker__track {
  display: inline-flex;
  gap: 0;
  padding: 13px 0;
  animation: ticker-scroll 38s linear infinite;
  will-change: transform;
}
.ticker__track span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0 26px;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- Hero --- */
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero__headline {
  font-size: clamp(1.9rem, 4vw, 2.9rem);   /* tightened one step */
  letter-spacing: -0.03em;
  margin-bottom: 26px;
}
.hero__cta { margin-top: 34px; }

/* Portrait images (hero + about) — responsive, undistorted.
   The global `img { height:auto }` reset would otherwise force the natural
   image ratio; aspect-ratio:4/5 restores the intended box so the inline
   object-fit:cover crops to the spec'd 480x600 / 400x500 proportion. */
.hero__portrait img,
.grid--split img {
  max-width: 100%;
  aspect-ratio: 4 / 5;
  object-position: top;
}

/* Image placeholder block */
.img-ph {
  background: linear-gradient(135deg, #161616 0%, #232323 100%);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-faint);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 20px;
  aspect-ratio: 4 / 5;
}
.img-ph--light {
  background: linear-gradient(135deg, #ececea 0%, #f6f6f4 100%);
  border-color: var(--border-light);
  color: var(--text-muted);
}

/* --- Pain points (Section 2) --- */
.pain {
  border-top: 1px solid var(--border-light);
  padding: 22px 0;
}
.pain:last-child { border-bottom: 1px solid var(--border-light); }
.pain__num {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-ink);   /* legible deep amber on white */
  display: block;
  margin-bottom: 6px;
}
.pain__title { font-size: 1.3rem; margin-bottom: 8px; }   /* lifted one step for more presence */
.pain__body { font-size: 1.0625rem; color: var(--text-faint); margin: 0; }

.closing-line {
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.4;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

/* --- Methodology phases (Section 4) --- */
.phases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.phase {
  padding: 0 34px;
  border-left: 1px solid var(--border-dark);
}
.phase:first-child { padding-left: 0; border-left: 0; }
.phase:last-child { padding-right: 0; }
.phase__label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}
.phase__name { font-size: 1.5rem; margin-bottom: 14px; }
.phase--gold .phase__name { color: var(--gold); }
.phase__body { font-size: 1.125rem; color: var(--text-on-dark); margin: 0; }   /* body on dark (section--black) */

/* --- ICP cards (Section 5) --- */
.icp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.icp {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--white);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.icp:hover { border-color: var(--charcoal); transform: translateY(-3px); }
.icp__title { font-size: 1.15rem; margin-bottom: 10px; }
.icp__body { font-size: 1.0625rem; color: var(--text-faint); margin: 0; }

/* Not-for-you block */
.notfor {
  margin-top: 40px;
  border-left: 3px solid var(--border-light);
  padding: 6px 0 6px 24px;
  color: var(--text-muted);
  font-size: 1.0625rem;
}
.notfor__title {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  margin: 0 0 14px;
}
.section--charcoal .notfor__title,
.section--black .notfor__title { color: var(--text-light); }
.notfor ul { list-style: none; }
.notfor li { margin-bottom: 8px; }
.notfor p { margin: 16px 0 0; font-style: italic; }

/* --- Offer cards (Section 6) --- */
.offers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.offer {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 30px 28px;
  background: var(--white);
  color: var(--text-dark);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
  min-height: 100%;
}
.offer:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(0,0,0,0.12); }
.offer__tag {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.offer__name { font-size: 1.5rem; margin-bottom: 14px; }
.offer__hook { font-size: 1.0625rem; color: var(--text-faint); margin: 0 0 16px; }
.offer__reveal {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 0 22px;
  /* On desktop: hidden until hover. On mobile: always shown (see media query). */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), opacity 0.3s var(--ease), margin 0.35s var(--ease);
}
.offer:hover .offer__reveal,
.offer:focus-within .offer__reveal { max-height: 200px; opacity: 1; }
.offer__cta {
  margin-top: auto;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s var(--ease);
}
.offer:hover .offer__cta { gap: 12px; }

/* Featured (dark) card */
.offer--featured {
  background: var(--charcoal);
  color: var(--text-light);
  border-color: var(--charcoal);
  position: relative;
}
.offer--featured .offer__tag { color: var(--gold); }
.offer--featured .offer__hook,
.offer--featured .offer__reveal { color: var(--text-on-dark); }   /* body on dark featured card (charcoal) */
.offer--featured .offer__cta { color: var(--gold); }
.offer--featured .offer__name { color: var(--white); }

/* --- Credential badges --- */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 28px;
}
.badge {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--text-faint);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  padding: 7px 15px;
  background: var(--white);
}
.section--offwhite .badge { background: var(--white); }

/* --- Social proof (Section 7) --- */
.logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 38px;
  margin-bottom: 40px;
}
.logos .logo-ph {
  filter: grayscale(1);
  opacity: 0.6;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}
.logos .logo {
  width: 160px;
  height: 60px;
  object-fit: contain;
  max-width: 100%;
  filter: grayscale(100%) opacity(0.7);
  transition: filter 0.3s ease;
}
.logos .logo:hover { filter: none; }
.linkedin-line {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--border-light);
  padding-top: 32px;
}

/* Testimonial slot */
.testi-slot {
  margin-top: 36px;
}
.testi-coming {
  border: 1px dashed var(--border-light);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

/* --- Lead magnet (Section 8) --- */
.leadmagnet__grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 48px;
  align-items: start;
}
.lead-magnet-cover {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.pdf-cover-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  display: block;
}
.kit-wrap {
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: 4px;
}
/* Restyle the embedded Kit form to match charcoal/white */
.kit-wrap .formkit-form {
  background: var(--charcoal) !important;
  border: none !important;
  max-width: 100% !important;
}
.kit-wrap .formkit-background { display: none !important; }
.kit-wrap .formkit-header,
.kit-wrap .formkit-subheader { display: none !important; } /* heading/body provided in page copy */
.kit-wrap [data-style="minimal"] { padding: 26px !important; }
.kit-wrap .formkit-input {
  background: var(--white) !important;
  color: #1c1c1c !important;
  border: 1px solid #3a3a3a !important;
  border-radius: var(--radius) !important;
  font-size: 15px !important;
}
.kit-wrap .formkit-submit {
  background: var(--white) !important;
  border-radius: var(--radius) !important;
}
.kit-wrap .formkit-submit > span { color: var(--charcoal) !important; font-weight: 600 !important; }
.kit-wrap .formkit-submit:hover > span { background: rgba(0,0,0,0.06) !important; }
.kit-wrap .formkit-guarantee { color: var(--text-muted) !important; }
.kit-wrap .formkit-powered-by-convertkit-container { opacity: 0.4; }
.form-intro { font-size: 0.95rem; color: var(--text-muted); margin: 18px 0 0; }
.download-fallback {
  font-size: 13px;
  color: var(--text-muted, #888888);
  margin-top: 12px;
  text-align: center;
}
.download-fallback a {
  color: #D6A100;
  text-decoration: none;
  font-weight: 500;
}
.download-fallback a:hover {
  text-decoration: underline;
}

/* --- Final CTA band --- */
.finalcta { text-align: center; }
.finalcta .headline { max-width: 760px; margin: 0 auto 18px; }
.finalcta .lede { max-width: 600px; margin: 0 auto 30px; color: var(--text-on-dark); }   /* body on dark (section--charcoal) */

/* ===== 8. FOOTER ======================================================== */
.footer {
  background: var(--charcoal);
  color: var(--text-light);
  padding-top: 56px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border-dark);
}
.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer__logo img { height: 48px; width: auto; display: block; }
.footer__tagline { font-size: 0.9rem; color: var(--gold); font-weight: 500; margin: 0 0 6px; letter-spacing: 0.02em; }
.footer__desc { font-size: 0.9rem; color: var(--text-muted); margin: 0; max-width: 300px; }
.footer-brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 14px;
}
.footer-logo-mark {
  height: 54px;
  width: auto;
  display: block;
}
.footer-brand-name {
  font-size: 15px;
  font-weight: 500;
  color: #F5F5F5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.footer-tagline { font-size: 0.9rem; color: var(--gold); font-weight: 500; margin: 0 0 6px; letter-spacing: 0.02em; }
.footer-desc { font-size: 0.9rem; color: var(--text-muted); margin: 0; max-width: 300px; }
.footer__h {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 16px;
}
.footer__list { list-style: none; }
.footer__list li { margin-bottom: 11px; }
.footer__list a { font-size: 0.92rem; color: var(--text-light); transition: color 0.18s var(--ease); }
.footer__list a:hover { color: var(--gold); }
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 22px 0 30px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer__legal a:hover { color: var(--gold); }

/* ===== 9. MOTION (scroll reveal) ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .ticker__track { animation: none; }
  .btn:hover, .offer:hover, .icp:hover { transform: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ===== SERVICE-PAGE HELPERS ============================================= */
.page-hero { padding-top: 60px; padding-bottom: 60px; }
.page-hero__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-dark);
  border-radius: 100px;
  padding: 7px 15px;
  margin-bottom: 24px;
}
.page-hero__badge--faint { color: var(--text-muted); }
.page-hero__rule { width: 48px; height: 2px; background: var(--gold); margin-bottom: 22px; }
.page-hero__headline {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  max-width: 760px;
}
.gold-underline { border-bottom: 3px solid var(--gold); padding-bottom: 2px; }
.page-hero__meta {
  margin-top: 26px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Checklist (gold ticks) */
.checklist { list-style: none; }
.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
  font-size: 1.0625rem;
  line-height: 1.55;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 9px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
/* Rich gold ticks on light sections (e.g. Clarity Sprint white body); bright gold stays on dark */
.section--white .checklist li::before,
.section--offwhite .checklist li::before {
  border-left-color: var(--gold-ink);
  border-bottom-color: var(--gold-ink);
}

/* Fit box */
.fitbox {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 30px;
}
.section--offwhite .fitbox { background: var(--white); }
.fitbox h3 { font-size: 1.05rem; margin-bottom: 16px; }
.fitbox ul { list-style: none; margin-bottom: 6px; }
.fitbox li { padding-left: 18px; position: relative; margin-bottom: 10px; font-size: 1.0625rem; }
.fitbox li::before { content: "—"; position: absolute; left: 0; color: var(--text-muted); }
.fitbox .notfor-title { margin-top: 26px; color: var(--text-muted); }
.fitbox .notfor-list li { color: var(--text-muted); }

/* Numbered phase list (service pages) */
.phaselist { display: grid; gap: 0; }
.phaselist__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--border-dark);
  align-items: start;
}
.phaselist__item:last-child { border-bottom: 1px solid var(--border-dark); }
.phaselist__num {
  font-size: 3.4rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--border-dark);
  line-height: 0.9;
}
.phaselist__name { font-size: 1.35rem; margin-bottom: 6px; }
.phaselist__name .gold { font-weight: 500; }
.phaselist__sub { font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
.phaselist__body { font-size: 1.0625rem; color: var(--text-on-dark); margin: 0; }   /* body on dark (section--black) */

/* Outcome cards */
.outcomes { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.outcome {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--white);
}
.outcome h3 { font-size: 1.1rem; margin-bottom: 10px; }
.outcome p { font-size: 1.0625rem; color: var(--text-faint); margin: 0; }

/* Price section */
.price { text-align: center; }
.price__label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.price__amount {
  font-size: clamp(2.8rem, 7vw, 4.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.price__detail { font-size: 1.0625rem; color: var(--text-on-dark); margin-bottom: 30px; }   /* description on dark price section */
.price .cta-row { justify-content: center; }
.price__note { font-size: 0.95rem; color: var(--text-on-dark); margin-top: 22px; max-width: 480px; margin-left: auto; margin-right: auto; }   /* note on dark price section */
.razorpay-wrap { margin: 4px 0; display: flex; justify-content: center; }

.twocol-includes { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.twocol-includes h3 { font-size: 1.15rem; margin-bottom: 20px; }

/* ===== 10. RESPONSIVE =================================================== */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__portrait { max-width: 360px; }
  .grid--2, .grid--3, .grid--split, .grid--titleleft,
  .icp-grid, .offers, .phases, .leadmagnet__grid,
  .outcomes, .twocol-includes, .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .phase { border-left: 0; border-top: 1px solid var(--border-dark); padding: 28px 0 0; }
  .phase:first-child { border-top: 0; padding-top: 0; }
}

@media (max-width: 720px) {
  :root { --section-pad: var(--section-pad-mobile); }
  .nav__toggle { display: flex; }
  /* Nav logo scales down slightly on mobile but never overflows the 64px bar */
  .nav__logo img { height: 30px; min-height: 28px; }
  .nav__links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--hero-black);
    border-bottom: 1px solid var(--border-dark);
    padding: 8px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease);
  }
  .nav.is-open .nav__links { max-height: 360px; }
  .nav__links li { width: 100%; }
  .nav__links a { display: block; padding: 14px var(--gutter); width: 100%; }
  .nav__links .btn { margin: 10px var(--gutter); width: calc(100% - 2*var(--gutter)); }

  /* Offers: show reveal text statically on mobile (no hover dependency) */
  .offer__reveal { max-height: none !important; opacity: 1 !important; overflow: visible; }

  /* Lead magnet cover: smaller and centred when columns stack */
  .pdf-cover-img { max-width: 220px; margin-left: auto; margin-right: auto; }

  .counters { gap: 22px; }
  .phaselist__item { grid-template-columns: 1fr; gap: 6px; }
  .phaselist__num { font-size: 2.4rem; }
  .linkedin-line { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 400px) {
  body { font-size: 15px; }
  .counters { gap: 18px; }
  .counter__num { font-size: 1.4rem; }
}
