/* =============================================================================
   Human Advisor AI — training.humanadvisor.ai
   Brand system: Inter typography · Navy #0B1628 · Gold #C8920A / #E8C87A · White
   ============================================================================= */

/* ─── DESIGN TOKENS ───────────────────────────────────────────────────────── */
:root {
  --navy:        #0B1628;
  --navy-2:      #131F35;
  --navy-3:      #1B2A45;
  --navy-deep:   #08101F;
  --gold:        #C8920A;
  --gold-light:  #E8C87A;
  --gold-pale:   #F5E5BD;
  --gold-bg:     #FBF4DE;
  --white:       #FFFFFF;
  --off-white:   #F7F5F0;
  --cream:       #FAF8F2;
  --ink:         #0B1628;
  --ink-2:       #2A3447;
  --muted:       #5A6B85;
  --muted-2:     #8895A6;
  --line:        #E5E7EB;
  --line-soft:   #EFEEE8;
  --green:       #2A7A4B;

  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;

  --shadow-sm:   0 1px 2px rgba(11,22,40,.06), 0 1px 3px rgba(11,22,40,.04);
  --shadow:      0 4px 16px rgba(11,22,40,.08), 0 2px 6px rgba(11,22,40,.04);
  --shadow-lg:   0 16px 48px rgba(11,22,40,.14), 0 4px 12px rgba(11,22,40,.06);

  --max:         1240px;
  --pad-sec:     96px;

  --serif:       'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:        'Outfit', 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --mono:        'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

/* ─── RESET / BASE ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--serif); font-weight: 600; line-height: 1.2; color: var(--ink); }
p { margin: 0; }
input, textarea, select { font: inherit; color: inherit; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ─── PAGE TOGGLE (single-page app behavior) ──────────────────────────────── */
.pg { display: none; }
.pg.on { display: block; }

/* ─── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: .01em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  padding: 13px 26px;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  transition: transform .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }
.btn-lg { padding: 16px 30px; font-size: 16px; }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: #B17F00; border-color: #B17F00; box-shadow: var(--shadow); }

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-ghost:hover { background: var(--gold-bg); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline:hover { background: rgba(255,255,255,.08); border-color: var(--white); }

/* ─── NAV ─────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(11,22,40,.04);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-right: auto;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: .005em;
  position: relative;
  padding: 6px 0;
  transition: color .15s ease;
}
.nav__links a:hover { color: var(--gold); }
.nav__links a.on {
  color: var(--gold);
}
.nav__links a.on::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav__right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__hamburger {
  display: none;
  background: none;
  border: 0;
  width: 36px;
  height: 36px;
  position: relative;
  padding: 0;
}
.nav__hamburger::before,
.nav__hamburger::after,
.nav__hamburger span {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--ink);
  transition: transform .25s ease, opacity .15s ease;
}
.nav__hamburger::before { top: 11px; }
.nav__hamburger span    { top: 17px; }
.nav__hamburger::after  { top: 23px; }
.nav__hamburger.open::before { top: 17px; transform: rotate(45deg); }
.nav__hamburger.open span    { opacity: 0; }
.nav__hamburger.open::after  { top: 17px; transform: rotate(-45deg); }

/* Mobile menu (slides down from top under nav) */
.nav__mobile {
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--white);
  z-index: 99;
  padding: 24px 28px 32px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform .25s ease, opacity .25s ease;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav__mobile.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.nav__mobile a {
  display: block;
  padding: 14px 4px;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
.nav__mobile a.on { color: var(--gold); }
.nav__mobile-cta {
  margin-top: 20px;
  background: var(--gold);
  color: var(--white) !important;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-align: center;
}

/* ─── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: 132px 0 88px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 80% 10%, rgba(200,146,10,.18), transparent 60%),
    radial-gradient(40% 60% at 10% 90%, rgba(200,146,10,.10), transparent 60%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-2) 100%);
  z-index: -2;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(70% 70% at 50% 30%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(70% 70% at 50% 30%, #000 0%, transparent 80%);
  z-index: -1;
}
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero__h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.4vw, 68px);
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.05;
  color: var(--white);
}
.hero__h1 em, .hero__h1 i { color: var(--gold-light); font-style: italic; }
.hero__sub {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,.82);
  margin-top: 24px;
}
.hero__btns {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__proof {
  margin-top: 56px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 28px;
}
.hero__stat { display: flex; flex-direction: column; gap: 2px; }
.hero__stat-n {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hero__stat-l {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  letter-spacing: .04em;
}
.hero__stat-div {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.14);
}
.hero__vis { position: relative; }

/* Hero visual: floating "AI Vendor Match Report" card */
.hv-card {
  background: rgba(11,22,40,.92);
  color: var(--white);
  border: 1px solid rgba(200,146,10,.35);
  border-radius: var(--radius-lg);
  padding: 22px 22px 24px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}
.hv-top {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.hv-lbl { color: var(--gold-light); font-weight: 600; }
.hv-status { display: inline-flex; align-items: center; gap: 6px; }
.hv-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #4ad991;
  box-shadow: 0 0 0 4px rgba(74,217,145,.18);
}
.hv-title {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
}
.hv-co { font-size: 13px; color: rgba(255,255,255,.62); margin-top: 2px; }
.hv-divider { height: 1px; background: rgba(255,255,255,.12); margin: 16px 0 12px; }
.hv-section-lbl {
  font-size: 11px; text-transform: uppercase; letter-spacing: .08em;
  color: rgba(255,255,255,.55); margin-bottom: 10px;
}
.hv-vendors { display: flex; flex-direction: column; gap: 10px; }
.hv-vendor {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
}
.hv-vendor-name { font-size: 14px; font-weight: 600; color: var(--white); }
.hv-vendor-cat { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 1px; }
.hv-match { display: flex; align-items: center; gap: 10px; min-width: 130px; justify-content: flex-end; }
.hv-match-bar {
  flex: 1; max-width: 90px; height: 6px;
  background: rgba(255,255,255,.10);
  border-radius: 3px; overflow: hidden;
}
.hv-match-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: 3px;
}
.hv-match-pct {
  font-family: var(--mono);
  font-size: 12px; font-weight: 500;
  color: var(--gold-light);
  min-width: 32px;
  text-align: right;
}
.hv-float {
  position: absolute;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  color: var(--white);
}
.hv-float-1 { top: -16px; right: -8px; }
.hv-float-lbl {
  font-size: 10px; text-transform: uppercase; letter-spacing: .12em;
  color: rgba(255,255,255,.55);
}
.hv-float-val {
  font-family: var(--serif);
  font-size: 22px; font-weight: 600; color: var(--gold-light);
  margin-top: 2px;
}
.hv-float-sub { font-size: 11px; color: rgba(255,255,255,.6); margin-top: 4px; }

/* ─── INTERIOR PAGE HEROES ────────────────────────────────────────────────── */
.pg-hero {
  background: var(--navy);
  color: var(--white);
  padding: 138px 0 80px;
  position: relative;
  overflow: hidden;
}
.pg-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 90% 0%, rgba(200,146,10,.16), transparent 60%),
    linear-gradient(180deg, var(--navy-deep), var(--navy));
  z-index: 0;
}
.pg-hero__inner { position: relative; z-index: 1; text-align: center; max-width: 880px; margin: 0 auto; }
.pg-hero__title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.6vw, 56px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.01em;
}
.pg-hero__sub {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
}

/* ─── SECTION HEADERS (sh / sh-title / sh-sub) ────────────────────────────── */
.sh { text-align: center; max-width: 760px; margin: 0 auto var(--pad-sec); padding: 0 24px; }
.sh-title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.8vw, 46px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -.005em;
}
.sh-sub {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
}
.tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-bg);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ─── PROBLEM SECTION ─────────────────────────────────────────────────────── */
.problem { padding: var(--pad-sec) 0; background: var(--cream); }
.problem__q {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  line-height: 1.3;
}
.problem__body {
  margin-top: 36px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-2);
  text-align: center;
}
.problem__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ─── WHO IT'S FOR / VALUES / VERTICALS SHARED CARD STYLES ────────────────── */
.who, .values, .verticals, .results, .industries-deep, .marketplace, .process,
.client-journey, .pricing-tiers, .pricing-vendor, .contact-section, .cta-band,
.manifesto, .pricing-intro {
  padding: var(--pad-sec) 0;
}
.who { background: var(--white); }
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.who-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.who-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--gold-pale);
}
.who-ico {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--gold-bg);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
}
.who-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--ink);
}
.who-desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-2);
}

/* ─── VALUES (3-column key principles) ────────────────────────────────────── */
.values { background: var(--cream); }
.val-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.val {
  text-align: center;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.val-n {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.val-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin-top: 12px;
  color: var(--ink);
}
.val-desc {
  font-size: 14.5px;
  color: var(--ink-2);
  margin-top: 10px;
  line-height: 1.65;
}

/* ─── VERTICALS / INDUSTRIES ──────────────────────────────────────────────── */
.verticals { background: var(--white); }
.vert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}
.vert {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  transition: border-color .15s ease, transform .15s ease;
}
.vert:hover { border-color: var(--gold-pale); transform: translateY(-2px); }
.vert-ico {
  width: 44px; height: 44px;
  margin: 0 auto 12px;
  background: var(--gold-bg);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}

.industries-deep { background: var(--cream); }
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.ind-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
}
.ind-item::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── COMPARISON TABLE ────────────────────────────────────────────────────── */
.compare-tbl-wrap {
  max-width: 1080px;
  margin: 0 auto;
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.compare-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
.compare-tbl th, .compare-tbl td {
  padding: 18px 22px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.compare-tbl thead th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.compare-tbl thead th:nth-child(2) { color: var(--gold-light); }
.compare-tbl tbody tr:last-child td { border-bottom: 0; }
.compare-tbl tbody tr:nth-child(even) { background: var(--cream); }
.compare-tbl td:first-child { font-weight: 600; color: var(--ink); width: 28%; }
.compare-tbl td:nth-child(2) { color: var(--ink); font-weight: 500; }
.compare-tbl td:nth-child(3) { color: var(--muted); }
.compare-tbl td.ck {
  color: var(--ink);
  font-weight: 500;
}
.compare-tbl td.ck::before {
  content: "✓ ";
  color: var(--gold);
  font-weight: 700;
}
.compare-tbl td.nx {
  color: var(--muted);
}

/* ─── PROCESS / STEPS ─────────────────────────────────────────────────────── */
.process { background: var(--white); }
.process-steps {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}
.ps {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  align-items: start;
  transition: border-color .15s ease;
}
.ps:hover { border-color: var(--gold-pale); }
.ps__n {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.ps__ico {
  font-size: 22px;
  color: var(--gold);
  width: 40px; height: 40px;
  background: var(--gold-bg);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.ps__title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.ps__desc {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.7;
}

/* Horizontal flow (used somewhere in the pricing/process) */
.process-flow-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}
.process-flow-step {
  text-align: center;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.process-flow-arrow {
  color: var(--gold);
  font-size: 26px;
}

/* ─── CLIENT JOURNEY ──────────────────────────────────────────────────────── */
.client-journey { background: var(--cream); }
.step-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1080px;
  margin: 0 auto 40px;
  align-items: center;
}
.step-row:nth-child(even) .step-left { order: 2; }
.step-row:nth-child(even) .step-right { order: 1; }
.step-left img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.step-right h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--ink);
}
.step-right p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
}

/* ─── MARKETPLACE ─────────────────────────────────────────────────────────── */
.marketplace { background: var(--white); }
.mp-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto var(--pad-sec);
}
.mp-intro-title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 18px;
}
.mp-intro-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
}
.mp-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.mp-cat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.mp-cat:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--gold-pale);
}
.mp-cat-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.mp-cat-icon {
  width: 38px; height: 38px;
  background: var(--gold-bg);
  color: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.mp-cat-num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  background: var(--gold-bg);
  padding: 4px 10px;
  border-radius: 100px;
}
.mp-cat-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.mp-cat-vendors {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.mp-qual {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin-left: auto; margin-right: auto;
}
.mp-qual-item {
  text-align: center;
  padding: 24px 18px;
}
.mp-qual-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
}
.mp-qual-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  margin-top: 6px;
  color: var(--ink);
}
.mp-qual-desc {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.6;
}

/* ─── RESULTS / TESTIMONIALS ──────────────────────────────────────────────── */
.results { background: var(--cream); }
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.rc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.rc-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-bg);
  padding: 5px 11px;
  border-radius: 100px;
  align-self: flex-start;
  margin-bottom: 14px;
}
.rc-quote {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 18px;
  flex: 1;
}
.rc-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.rc-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.rc-role {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
}

/* ─── PRICING ─────────────────────────────────────────────────────────────── */
.pricing-intro { background: var(--white); padding-top: 64px; padding-bottom: 32px; }
.pricing-tiers { background: var(--white); padding-top: 32px; }
.tier-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.tier {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
}
.tier--featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--white) 0%, #FDFBF3 100%);
  box-shadow: 0 12px 32px rgba(200,146,10,.12);
  transform: translateY(-8px);
}
.tier--featured::before {
  content: "Most Popular";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
}
.tier__badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}
.tier__name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  margin-top: 6px;
  color: var(--ink);
}
.tier__price {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 14px;
  line-height: 1;
}
.tier__per {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}
.tier__divider {
  height: 1px;
  background: var(--line);
  margin: 22px 0 18px;
}
.tier__includes {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 12px;
}
.tier__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.tier__list li {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
  padding-left: 26px;
  position: relative;
}
.tier__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 7px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.tier__cta {
  margin-top: 24px;
}

.pricing-vendor { background: var(--cream); }
.pricing-note {
  margin-top: 32px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}
.vendor-note {
  margin-top: 24px;
  padding: 24px 28px;
  background: var(--white);
  border: 1px dashed var(--gold-pale);
  border-radius: var(--radius);
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 880px;
  margin-left: auto; margin-right: auto;
  text-align: center;
}

/* ─── MANIFESTO / DIFFERENTIATION ─────────────────────────────────────────── */
.manifesto { background: var(--navy); color: var(--white); }
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: center;
}
.manifesto-left h2 {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(32px, 3.6vw, 44px);
  line-height: 1.15;
  margin-bottom: 18px;
}
.manifesto-q {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--gold-light);
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 18px;
  margin-bottom: 24px;
}
.manifesto-body {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.82);
}
.diff {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 14px;
}
.diff h4 {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}
.diff p {
  font-size: 14.5px;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
}

/* ─── VENDOR NOTE CARDS (vn-card) ─────────────────────────────────────────── */
.vn-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.vn-ico {
  width: 40px; height: 40px;
  background: var(--gold-bg);
  color: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
}
.vn-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.vn-body {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.65;
}

/* ─── CTA BAND ────────────────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 80% 30%, rgba(200,146,10,.18), transparent 60%);
}
.cta-inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}
.cta-title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.8vw, 46px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
}
.cta-sub {
  margin-top: 16px;
  font-size: 18px;
  color: rgba(255,255,255,.82);
  line-height: 1.6;
}
.cta-btns {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── CONTACT / FORM ──────────────────────────────────────────────────────── */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}
.contact-section .ck {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 16px;
}
.contact-section .ck h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.contact-section .ck p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
}
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-t {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.form-s {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 24px;
}
.form-card label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin: 14px 0 6px;
  letter-spacing: .01em;
}
.form-card input[type=text],
.form-card input[type=email],
.form-card input[type=tel],
.form-card textarea,
.form-card select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  transition: border-color .15s ease, box-shadow .15s ease;
  font-family: inherit;
}
.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,146,10,.15);
}
.form-card textarea { resize: vertical; min-height: 120px; }
.fl {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin: 14px 0 6px;
  letter-spacing: .01em;
}
.fg { display: flex; flex-direction: column; }
.fi { width: 100%; }
.fta { width: 100%; min-height: 130px; }
.fcheck {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
}
.fcheck input[type=checkbox] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px; height: 16px;
  accent-color: var(--gold);
}
.fcheck label {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-2);
  flex: 1;
  cursor: pointer;
}
.fsub {
  margin-top: 20px;
  width: 100%;
  background: var(--gold);
  color: var(--white);
  border: 0;
  border-radius: var(--radius-sm);
  padding: 14px 22px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .15s ease, transform .15s ease;
}
.fsub:hover:not(:disabled) { background: #B17F00; transform: translateY(-1px); }
.fsub:disabled { opacity: .65; cursor: not-allowed; }

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.78);
  padding: 64px 0 32px;
  font-size: 14.5px;
}
.footer__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__brand img { margin-bottom: 16px; }
.footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,.62);
  line-height: 1.7;
  max-width: 320px;
}
.footer__col-t {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  color: rgba(255,255,255,.78);
  font-size: 14.5px;
  transition: color .15s ease;
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  max-width: var(--max);
  margin: 48px auto 0;
  padding: 24px 28px 0;
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__legal {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer__legal a:hover { color: var(--white); }
.footer__copy { letter-spacing: .01em; }

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__vis { margin-top: 0 !important; }
  .mp-intro { grid-template-columns: 1fr; gap: 28px; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 32px; }
  .mp-cats, .results-grid, .tier-cards, .ind-grid, .val-grid, .problem__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vert-grid { grid-template-columns: repeat(3, 1fr); }
  .mp-qual { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; max-width: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .step-row { grid-template-columns: 1fr; gap: 20px; }
  .step-row:nth-child(even) .step-left { order: 0; }
  .step-row:nth-child(even) .step-right { order: 0; }
  .tier--featured { transform: none; }
  .process-flow-grid { grid-template-columns: 1fr; }
  .process-flow-arrow { transform: rotate(90deg); justify-self: center; }
}
@media (max-width: 720px) {
  :root { --pad-sec: 64px; }
  .nav__links, .nav__right { display: none; }
  .nav__hamburger { display: block; }
  .hero { padding: 110px 0 60px; }
  .pg-hero { padding: 110px 0 56px; }
  .hero__h1 { font-size: 38px; }
  .hero__btns { flex-direction: column; align-items: stretch; }
  .hero__btns .btn { width: 100%; }
  .hero__proof { justify-content: space-around; gap: 16px; }
  .hero__stat-div { display: none; }
  .who-grid, .mp-cats, .results-grid, .tier-cards, .ind-grid, .val-grid,
  .problem__grid, .vert-grid, .mp-qual {
    grid-template-columns: 1fr;
  }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
  .fl { grid-template-columns: 1fr; }
  .compare-tbl th, .compare-tbl td { padding: 14px 16px; font-size: 13.5px; }
  .form-card { padding: 24px; }
  .hv-float-1 { display: none; }
}

/* ─── UTIL ────────────────────────────────────────────────────────────────── */
.btn-gold svg, .btn-ghost svg, .btn-outline svg { stroke-width: 2; }
