/* =========================================================================
   Axivaris bespoke stylesheet
   Loads after theme.json's generated CSS variables.
   ---------------------------------------------------------------------------
   theme.json exposes brand colors as --wp--preset--color--<slug> and
   font families as --wp--preset--font-family--<slug>. The original
   stylesheet was authored against --axv-* names, so we alias them here.
   This keeps both the editor (which reads theme.json) and the front-end
   (which reads --axv-*) coherent without rewriting every selector.
   ========================================================================= */

:root {
  /* ---- color aliases (bridge --axv-* → --wp--preset--*) ---- */
  --axv-navy:          var(--wp--preset--color--navy, #15274e);
  --axv-navy-deep:     var(--wp--preset--color--navy-deep, #0f1d3a);
  --axv-gold-exec:     var(--wp--preset--color--gold-exec, #c7ae6a);
  --axv-gold-warm:     var(--wp--preset--color--gold-warm, #cbb26a);
  --axv-gold-active:   var(--wp--preset--color--gold-active, #b19759);
  --axv-sand:          var(--wp--preset--color--sand, #ead8b1);
  --axv-sapphire:      var(--wp--preset--color--sapphire, #385195);
  --axv-indigo:        var(--wp--preset--color--indigo, #344d95);
  --axv-paper:         var(--wp--preset--color--paper, #ffffff);
  --axv-ivory:         var(--wp--preset--color--ivory, #f8f3e6);
  --axv-linen:         var(--wp--preset--color--linen, #e7dcc0);
  --axv-canvas-dark:   var(--wp--preset--color--navy, #15274e);
  --axv-filter-sand:   rgba(234, 216, 177, 0.28);
  --axv-fg-display:    var(--wp--preset--color--fg-display, #15274e);
  --axv-fg-1:          var(--wp--preset--color--fg-1, #24385f);
  --axv-fg-2:          var(--wp--preset--color--fg-2, #5d6880);
  --axv-fg-3:          var(--wp--preset--color--fg-3, #cfc4a7);
  --axv-fg-placeholder: rgba(21, 39, 78, 0.6);
  --axv-fg-inverse:    var(--wp--preset--color--fg-inverse, #ffffff);
  --axv-link-on-dark:  var(--wp--preset--color--sand, #ead8b1);
  --axv-cta-premium:        var(--wp--preset--color--gold-exec, #c7ae6a);
  --axv-cta-premium-active: var(--wp--preset--color--gold-active, #b19759);
  --axv-warning:       var(--wp--preset--color--warning, #9f3852);

  /* ---- shadows / rings ---- */
  --axv-shadow-1: 0 5px 9px 0 rgba(21, 39, 78, 0.06);
  --axv-shadow-2: 0 5px 9px 0 rgba(21, 39, 78, 0.08);
  --axv-shadow-3: 0 5px 9px 0 rgba(21, 39, 78, 0.16);
  --axv-shadow-4: 0 5px 9px 0 rgba(15, 29, 58, 0.80);
  --axv-ring-gold: 0 0 0 2px #c7ae6a;
  --axv-ring-sand: 0 0 0 2px #ead8b1;

  /* ---- gradients ---- */
  --axv-grad-light: linear-gradient(180deg, #ffffff 0%, #f8f3e6 100%);
  --axv-grad-dark:  linear-gradient(180deg, #0f1d3a 0%, #15274e 100%);

  /* ---- radii ---- */
  --axv-radius-2: 2px; --axv-radius-3: 3px; --axv-radius-6: 6px;
  --axv-radius-12: 12px; --axv-radius-13: 13px; --axv-radius-19: 19px;
  --axv-radius-20: 20px; --axv-radius-24: 24px; --axv-radius-36: 36px;
  --axv-radius-48: 48px; --axv-radius-pill: 999px;

  /* ---- spacing ---- */
  --axv-space-1: 1px; --axv-space-2: 2px; --axv-space-3: 3px;
  --axv-space-4: 4.5px; --axv-space-5: 5px; --axv-space-8: 8px;
  --axv-space-9: 9px; --axv-space-10: 10px; --axv-space-12: 12px;
  --axv-space-14: 14px; --axv-space-15: 15px; --axv-space-16: 16px;
  --axv-space-18: 18px; --axv-space-20: 20px; --axv-space-21: 21px;
  --axv-space-24: 24px; --axv-space-32: 32px; --axv-space-48: 48px;
  --axv-space-64: 64px; --axv-space-96: 96px;

  /* ---- type families ---- */
  --axv-display: var(--wp--preset--font-family--display, "Montserrat", Arial, Helvetica, sans-serif);
  --axv-ui:      var(--wp--preset--font-family--ui, "Manrope", Arial, Helvetica, sans-serif);
  --axv-display-weight: 200;
  --axv-ui-weight: 600;

  /* ---- transitions ---- */
  --axv-ease: cubic-bezier(.4,0,.2,1);
  --axv-dur:  180ms;
}

/* =========================================================================
   Bespoke layout & component styles (ported from inline <style> block of
   construction.html, which is a superset of index.html). All --axv-* names
   resolve via the alias block above.
   ========================================================================= */
/* ============ PAGE-LEVEL OVERRIDES & LAYOUT ============ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; } /* nav is position:fixed at ~80px tall; reserve space when scrolling to anchors so #audit/#services/etc. don't hide under it */
body {
  background: var(--axv-paper);
  color: var(--axv-fg-1);
  overflow-x: hidden;
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

/* ============ NAV ============ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 20px 32px;
  display: flex; justify-content: space-between; align-items: center;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(15, 29, 58, 0.78);
  border-bottom: 1px solid rgba(199, 174, 106, 0.14);
}
.brand {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
  color: #fff;
}
.brand-wordmark {
  font-family: var(--axv-display);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0;
  padding-left: 0;
  line-height: 1;
  background: linear-gradient(90deg, #905e26 0%, #f5ec9b 50%, #905e26 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.brand-mark {
  height: 16px; /* matches Montserrat cap height for 22px font */
  display: inline-flex;
  align-items: center;
}
.brand-mark svg { height: 100%; width: auto; display: block; overflow: visible; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  letter-spacing: 0.4px;
  transition: color var(--axv-dur) var(--axv-ease);
}
.nav-links a:hover { color: var(--axv-gold-exec); }
/* 'Book a call' nav link — outlined gold pill button on the navy hero.
   Quiet, considered CTA: gold border + gold text, transparent fill. */
.nav-book {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  background: transparent;
  color: var(--axv-gold-exec) !important;
  border: 1.5px solid var(--axv-gold-exec);
  border-radius: var(--axv-radius-pill);
  letter-spacing: 0.3px;
  transition: background var(--axv-dur) var(--axv-ease), color var(--axv-dur) var(--axv-ease), transform var(--axv-dur) var(--axv-ease);
}
.nav-book:hover {
  background: rgba(199, 174, 106, 0.10);
  color: var(--axv-gold-exec) !important;
  transform: translateY(-1px);
}
@media (max-width: 760px) {
  .nav-links a:not(.nav-book) { display: none; }
}

/* ============ HERO (NAVY) ============ */
.hero {
  /* Cap height on tall screens so the next section peeks above the fold —
     otherwise the viewport-filling hero reads as the entire page on laptops
     and large displays. */
  min-height: min(100vh, 900px);
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  position: relative;
  background: var(--axv-grad-dark);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 85% 0%, rgba(199, 174, 106, 0.16), transparent 60%),
    radial-gradient(ellipse 55% 40% at 5% 100%, rgba(234, 216, 177, 0.08), transparent 60%);
}
.hero .wrap { z-index: 2; }

/* ----- Hero two-column grid (used when a hero form is configured) ----- */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.hero-grid > .hero-form-col { display: flex; flex-direction: column; gap: 16px; }
.hero-grid > .hero-form-col .hero-optin-card { width: 100%; max-width: 520px; }
.hero-grid > .hero-form-col .hero-secondary-note { margin: 0; max-width: 520px; }
/* Two-column hero uses a smaller headline so it fits in the narrower text column. */
.hero-grid .hero-text-col h1 {
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.06;
  letter-spacing: -1.2px;
  margin-bottom: 32px;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-grid > .hero-form-col .hero-optin-card,
  .hero-grid > .hero-form-col .hero-secondary-note { max-width: none; }
}

/* ----- Hero CTA buttons ----- */
.hero-primary-btn {
  font-size: 17px;
  padding: 18px 32px;
}
.hero-secondary-note {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
  color: rgba(234, 216, 177, 0.7);
  margin: 36px 0 0;
  opacity: 0;
  animation: fadeUp 1.1s 0.7s ease forwards;
}
.hero-secondary-link {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: rgba(234, 216, 177, 0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(234, 216, 177, 0.3);
  padding-bottom: 2px;
  margin-left: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.hero-secondary-link:hover {
  color: var(--axv-gold-exec);
  border-bottom-color: var(--axv-gold-exec);
}

.eyebrow {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--axv-gold-exec);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s 0.1s ease forwards;
}
.eyebrow::before {
  content: "";
  width: 36px; height: 1px;
  background: var(--axv-gold-exec);
}

.hero h1 {
  font-family: var(--axv-display);
  font-weight: 200;
  font-size: clamp(48px, 8.4vw, 124px);
  line-height: 1.02;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 1.1s 0.2s ease forwards;
}
.hero h1 .italic {
  font-style: italic;
  font-weight: 200;
  color: var(--axv-gold-exec);
}

.hero-sub {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1.1s 0.4s ease forwards;
}
.hero-qualifier {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: 0.1px;
  color: rgba(234, 216, 177, 0.82);
  max-width: 600px;
  margin-top: -12px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1.1s 0.3s ease forwards;
}
.hero-qualifier em {
  font-style: italic;
  font-weight: 700;
  color: var(--axv-gold-exec);
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1.1s 0.6s ease forwards;
}
.hero-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 580px;
}
.hero-cta-note {
  margin-top: 16px;
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(234, 216, 177, 0.72);
  max-width: 500px;
  opacity: 0;
  animation: fadeUp 1.1s 0.7s ease forwards;
  letter-spacing: 0.1px;
}
.hero-cta-note a {
  color: var(--axv-sand);
  text-decoration: none;
  border-bottom: 1px solid rgba(234, 216, 177, 0.4);
  transition: color var(--axv-dur), border-color var(--axv-dur);
}
.hero-cta-note a:hover {
  color: var(--axv-gold-exec);
  border-color: var(--axv-gold-exec);
}
.hero-call-note {
  margin-top: 28px;
  font-size: 15px;
  color: rgba(234, 216, 177, 0.88);
  animation-delay: 0.8s;
}
.hero-call-note a {
  font-weight: 700;
  color: var(--axv-gold-exec);
  border-bottom: 1px solid var(--axv-gold-exec);
  padding-bottom: 1px;
}

/* Buttons (page-level helpers — extend axv tokens) */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: var(--axv-radius-pill);
  transition: all 0.3s var(--axv-ease);
  cursor: pointer;
  border: 0;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--axv-gold-exec);
  color: var(--axv-navy);
}
.btn-primary:hover {
  background: var(--axv-gold-warm);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -16px rgba(199, 174, 106, 0.55);
}
.btn .arrow {
  font-size: 18px; line-height: 1;
}

/* ============ SECTION SHARED ============ */
section { padding: 140px 0; position: relative; }
.section-eyebrow {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--axv-gold-active);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--axv-gold-exec);
}
.section-title {
  font-family: var(--axv-display);
  font-weight: 200;
  font-size: clamp(34px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--axv-fg-display);
  margin-bottom: 32px;
  max-width: 880px;
}
.section-title em {
  font-style: italic;
  font-weight: 200;
  color: var(--axv-gold-active);
}
.section-lede {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 18px;
  color: var(--axv-fg-2);
  max-width: 660px;
  line-height: 1.55;
}

/* On-dark variants (used when section sits on navy) */
.on-dark .section-eyebrow { color: var(--axv-gold-exec); }
.on-dark .section-title { color: #fff; }
.on-dark .section-title em { color: var(--axv-gold-exec); }
.on-dark .section-lede { color: rgba(255, 255, 255, 0.78); }

/* ============ THE PROBLEM ============ */
.problem {
  background: var(--axv-paper);
  border-top: 1px solid var(--axv-linen);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 96px;
  align-items: start;
}
.problem-statements {
  display: flex;
  flex-direction: column;
}
.problem-statement {
  padding: 30px 0;
  border-top: 1px solid var(--axv-linen);
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  align-items: baseline;
}
.problem-statement:last-child { border-bottom: 1px solid var(--axv-linen); }
.problem-statement .ix {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 11px;
  color: var(--axv-gold-active);
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.problem-statement p {
  font-family: var(--axv-display);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.4;
  color: var(--axv-fg-display);
  letter-spacing: -0.2px;
}
@media (max-width: 880px) {
  .problem-grid { grid-template-columns: 1fr; gap: 48px; }
  .problem-statement { grid-template-columns: 1fr; gap: 8px; }
}

/* ============ OUTCOMES (NAVY) ============ */
.outcomes {
  background: var(--axv-grad-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.outcomes::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 90% 20%, rgba(199, 174, 106, 0.10), transparent 60%);
}
.outcomes .wrap { position: relative; z-index: 1; }
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(234, 216, 177, 0.16);
  border: 1px solid rgba(234, 216, 177, 0.16);
  border-radius: var(--axv-radius-12);
  overflow: hidden;
  margin-top: 76px;
}
.outcome-card {
  background: var(--axv-navy);
  padding: 44px 36px;
  transition: background var(--axv-dur) var(--axv-ease);
}
.outcome-card:hover { background: #1b3061; }
.outcome-card h3 {
  font-family: var(--axv-display);
  font-weight: 300;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 18px;
  color: #fff;
  letter-spacing: -0.2px;
}
.outcome-card p {
  font-family: var(--axv-ui);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 980px) {
  .outcome-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .outcome-grid { grid-template-columns: 1fr; }
}

/* ============ AUDIT FORM ============ */
.audit {
  background: var(--axv-ivory);
  border-top: 1px solid var(--axv-linen);
  border-bottom: 1px solid var(--axv-linen);
}
.audit-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 80px;
  align-items: start;
}
.audit-points {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 36px;
}
.audit-points li {
  font-family: var(--axv-ui);
  font-weight: 600;
  color: var(--axv-fg-1);
  font-size: 15px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.audit-points li::before {
  content: "";
  width: 6px; height: 6px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--axv-gold-exec);
  flex-shrink: 0;
}
.audit-form {
  background: #fff;
  border: 1px solid var(--axv-linen);
  border-radius: var(--axv-radius-19);
  padding: 36px;
  display: grid;
  gap: 18px;
  box-shadow: var(--axv-shadow-2);
}
.field { display: grid; gap: 8px; }
.field label {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--axv-fg-2);
}
.field-optional {
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--axv-fg-3, #a89b80);
  margin-left: 4px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d9ceb0;
  border-radius: var(--axv-radius-3);
  background: #fff;
  color: var(--axv-fg-1);
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--axv-dur), box-shadow var(--axv-dur);
}
.field textarea { min-height: 108px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--axv-gold-exec);
  box-shadow: var(--axv-ring-gold);
}
.audit-form .btn-primary {
  background: var(--axv-navy);
  color: #fff;
  margin-top: 6px;
}
.audit-form .btn-primary:hover {
  background: var(--axv-sapphire);
  box-shadow: var(--axv-ring-gold);
}
.form-note {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 12px;
  color: var(--axv-fg-2);
  line-height: 1.5;
}
@media (max-width: 920px) {
  .audit-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============ SERVICES ============ */
.services { background: var(--axv-paper); }
.services-header { margin-bottom: 80px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--axv-linen);
  border: 1px solid var(--axv-linen);
  border-radius: var(--axv-radius-12);
  overflow: hidden;
}
.service {
  background: #fff;
  padding: 56px 48px;
  position: relative;
  transition: background 0.4s var(--axv-ease);
  cursor: default;
}
.service-wide { grid-column: 1 / -1; }
.service:hover { background: var(--axv-ivory); }
.service:hover .service-num { color: var(--axv-gold-active); }
.service:hover .service-arrow {
  transform: translate(4px, -4px);
  color: var(--axv-gold-active);
}

.service-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}
.service-num {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 11px;
  color: var(--axv-fg-2);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  transition: color var(--axv-dur);
}
.service-arrow {
  color: var(--axv-fg-2);
  font-size: 22px;
  transition: all 0.3s var(--axv-ease);
  display: inline-block;
}
.service h3 {
  font-family: var(--axv-display);
  font-weight: 300;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin-bottom: 22px;
  color: var(--axv-fg-display);
}
.service h3 em {
  font-style: italic;
  font-weight: 300;
  color: var(--axv-gold-active);
}
.service p {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 15px;
  color: var(--axv-fg-2);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 460px;
}
.service ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service ul li {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 13px;
  color: var(--axv-fg-1);
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.1px;
}
.service ul li::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--axv-gold-exec);
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 880px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-wide { grid-column: auto; }
  .service { padding: 40px 28px; }
}

/* ============ PROCESS (IVORY) ============ */
.process {
  background: var(--axv-ivory);
  border-top: 1px solid var(--axv-linen);
  border-bottom: 1px solid var(--axv-linen);
}
/* ----- Process: end-to-end timeline ----- */
.process-timeline {
  margin-top: 80px;
}
.process-timeline-svg {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1100px;
  margin: 0 auto;
}
.ptl-week-label {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  fill: var(--axv-fg-2);
  opacity: 0.65;
}
.ptl-node-num {
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.5px;
  fill: var(--axv-navy);
}
.ptl-node-num-active { fill: var(--axv-paper); }
.ptl-step-label {
  font-family: var(--axv-display);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: -0.4px;
  fill: var(--axv-navy);
  font-style: italic;
}
.ptl-step-label-active { fill: var(--axv-gold-active); }
.ptl-step-sub {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.4px;
  fill: var(--axv-fg-2);
}
.ptl-bracket-label {
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  fill: var(--axv-gold-active);
}
.ptl-phase {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  fill: var(--axv-fg-2);
  opacity: 0.6;
}
.process-timeline-rows {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.ptl-row {
  border-top: 1px solid var(--axv-linen);
  padding-top: 18px;
}
.ptl-row-tag {
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--axv-gold-active);
  display: block;
  margin-bottom: 12px;
}
.ptl-row p {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.6;
  color: var(--axv-fg-2);
  margin: 0;
}
@media (max-width: 880px) {
  .process-timeline-svg { display: none; }
  .process-timeline-rows { grid-template-columns: 1fr; gap: 24px; margin-top: 40px; }
  .ptl-row { padding-top: 16px; }
}
/* ----- Process: 4 cards with meaningful diagrams ----- */
.process-cards {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  position: relative;
  background: var(--axv-paper);
  border: 1px solid var(--axv-linen);
  border-radius: 6px;
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.35s var(--axv-ease), transform 0.35s var(--axv-ease);
}
.step:hover {
  border-color: var(--axv-gold-exec);
  transform: translateY(-2px);
}
.step-tag {
  align-self: flex-start;
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--axv-gold-active);
  padding: 6px 12px;
  border: 1px solid var(--axv-linen);
  border-radius: 999px;
  margin-bottom: 18px;
}
.step h4 {
  font-family: var(--axv-display);
  font-weight: 200;
  font-size: 32px;
  letter-spacing: -0.5px;
  color: var(--axv-fg-display);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 0;
}
.step h4 em {
  font-style: italic;
  font-weight: 200;
  color: var(--axv-gold-active);
  text-transform: lowercase;
  letter-spacing: -0.3px;
}
.step-diagram {
  margin: 22px 0 22px;
  height: 180px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-diagram svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.step p {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 13px;
  color: var(--axv-fg-2);
  line-height: 1.6;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--axv-linen);
}

/* Diagram-specific text styling (inside SVGs) */
.dg-label {
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  fill: var(--axv-fg-2);
}
.dg-label-active { fill: var(--axv-navy); }
.dg-line { stroke: var(--axv-linen); stroke-width: 1; fill: none; }
.dg-line-active { stroke: var(--axv-gold-exec); stroke-width: 1; fill: none; stroke-dasharray: 2 3; }
.dg-dot { fill: var(--axv-gold-active); }
.dg-dot-muted { fill: var(--axv-fg-3, #c8b89a); opacity: 0.5; }
.dg-pill {
  fill: var(--axv-paper);
  stroke: var(--axv-linen);
  stroke-width: 1;
}
.dg-pill-active {
  fill: var(--axv-navy);
  stroke: var(--axv-navy);
}
.dg-pill-text {
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  fill: var(--axv-fg-2);
}
.dg-pill-text-active { fill: var(--axv-gold-exec); }

@media (max-width: 1080px) {
  .process-cards { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 540px) {
  .process-cards { grid-template-columns: 1fr; }
}

/* ============ WHY ============ */
.why { background: var(--axv-paper); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}
.why-points {
  display: flex;
  flex-direction: column;
}
.why-point {
  padding: 32px 0;
  border-top: 1px solid var(--axv-linen);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  cursor: default;
  transition: padding 0.3s var(--axv-ease);
}
.why-point:last-child { border-bottom: 1px solid var(--axv-linen); }
.why-point h5 {
  font-family: var(--axv-display);
  font-weight: 300;
  font-size: 24px;
  letter-spacing: -0.2px;
  color: var(--axv-fg-display);
  transition: color var(--axv-dur);
}
.why-point .plus {
  font-family: var(--axv-display);
  font-weight: 200;
  font-size: 32px;
  color: var(--axv-gold-exec);
}
@media (max-width: 980px) {
  .why-grid { grid-template-columns: 1fr; gap: 50px; }
}

/* ============ FAQ ============ */
.faq { background: var(--axv-paper); border-top: 1px solid var(--axv-linen); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--axv-linen);
  padding: 28px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--axv-linen); }
.faq-item summary {
  font-family: var(--axv-display);
  font-weight: 300;
  font-size: 22px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.2px;
  color: var(--axv-fg-display);
  transition: color var(--axv-dur);
  gap: 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--axv-gold-active); }
.faq-item summary::after {
  content: "+";
  font-family: var(--axv-display);
  font-size: 28px;
  color: var(--axv-gold-exec);
  font-weight: 200;
  transition: transform 0.3s var(--axv-ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 18px;
  font-family: var(--axv-ui);
  font-weight: 600;
  color: var(--axv-fg-2);
  font-size: 15px;
  line-height: 1.65;
  max-width: 680px;
}
@media (max-width: 880px) {
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============ CTA (NAVY) ============ */
.cta {
  background: var(--axv-grad-dark);
  text-align: center;
  padding: 160px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.cta::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 900px; height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(199, 174, 106, 0.14), transparent 60%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta h2 {
  font-family: var(--axv-display);
  font-weight: 200;
  font-size: clamp(42px, 6.6vw, 88px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 32px;
}
.cta h2 em {
  font-style: italic;
  font-weight: 200;
  color: var(--axv-gold-exec);
}
.cta p {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.55;
}
.cta .hero-cta-row { justify-content: center; }
/* CTA section: stack the checklist form, seal, and reassurance line vertically. */
.cta .cta-checklist-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin: 0 auto;
  max-width: 520px;
}
.cta .cta-checklist-action .hero-optin-card {
  width: 100%;
  text-align: left;
  align-items: stretch;
}
.cta .cta-seal { margin-top: 4px; }
.cta .hero-cta-note { margin: 0 auto; max-width: 500px; text-align: center; }
.cta .hero-action { margin: 0 auto; align-items: center; }
.cta .hero-cta-note { margin: 16px auto 0; max-width: 500px; text-align: center; }
.cta .hero-call-note { margin: 28px auto 0; max-width: 500px; text-align: center; }

/* ============ FOOTER ============ */
footer {
  background: var(--axv-navy-deep);
  border-top: 1px solid rgba(199, 174, 106, 0.18);
  padding: 80px 0 40px;
  color: rgba(255, 255, 255, 0.74);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.foot-logo {
  display: block;
  height: 110px;
  width: auto;
  margin-bottom: 22px;
  margin-left: -12px;
}
.foot-tagline {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.66);
  max-width: 340px;
  line-height: 1.6;
}
.foot-col h6 {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--axv-gold-exec);
  margin-bottom: 22px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.foot-col a {
  font-family: var(--axv-ui);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--axv-dur);
}
.foot-col a:hover { color: var(--axv-gold-exec); }
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
@media (max-width: 880px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .foot-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ============ HERO CHECKLIST OPT-IN FORM ============ */
.hero-optin-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(234, 216, 177, 0.22);
  border-radius: 18px;
  max-width: 480px;
  transition: border-color 0.3s var(--axv-ease), background 0.3s var(--axv-ease);
}
.hero-optin-card:focus-within {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--axv-gold-exec);
}
.hero-optin-card .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hero-optin-card label {
  display: block;
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: rgba(234, 216, 177, 0.78);
  margin-bottom: 6px;
}
/* `.label-optional` overrides the parent label's uppercase / 700 / 1.4px
   tracking so '(optional)' reads as a quieter, mixed-case annotation. The
   parent label rule uses !important to beat GF, so the overrides here do too. */
.hero-optin-card label .label-optional,
.hero-optin-card .gfield_label .label-optional {
  font-weight: 600 !important;
  font-size: 11px !important;
  text-transform: none !important;
  letter-spacing: 0.2px !important;
  color: rgba(234, 216, 177, 0.45) !important;
  margin-left: 4px;
}
.hero-optin-card input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(234, 216, 177, 0.18);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s var(--axv-ease), background 0.2s var(--axv-ease);
  min-height: 44px;
}
.hero-optin-card input::placeholder { color: rgba(255, 255, 255, 0.42); }
.hero-optin-card input:focus {
  border-color: var(--axv-gold-exec);
  background: rgba(255, 255, 255, 0.10);
}
.hero-optin-card button[type="submit"] {
  background: var(--axv-gold-exec);
  color: var(--axv-navy);
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: background 0.2s var(--axv-ease), transform 0.2s var(--axv-ease), box-shadow 0.3s var(--axv-ease);
  margin-top: 4px;
  min-height: 48px;
}
.hero-optin-card button[type="submit"]:hover {
  background: #f5ec9b;
  transform: translateY(-1px);
  box-shadow: 0 18px 40px -16px rgba(199, 174, 106, 0.55);
}

/* ----- Gravity Forms overrides inside .hero-optin-card -----
   GF renders <input type=submit> (not <button>) and its Orbital theme CSS
   has higher specificity than our bare-element selectors above, so we
   re-target the GF structure explicitly. */
.hero-optin-card .gform_wrapper,
.hero-optin-card .gform_wrapper form {
  margin: 0;
}
/* GF Foundation puts .gform_fields in a 12-col grid with row-gap=var(--gf-form-gap-y)
   defaulting to ~40px. Tighten the gap and lay Name + Email side-by-side. */
.hero-optin-card .gform_wrapper {
  --gf-form-gap-y: 14px;
  --gf-form-gap-x: 10px;
}
.hero-optin-card .gform_fields {
  row-gap: 14px;
  column-gap: 10px;
}
.hero-optin-card .gfield {
  margin: 0;
}
@media (min-width: 540px) {
  .hero-optin-card .gform_fields > .gfield--type-text:not(.axv-hp),
  .hero-optin-card .gform_fields > .gfield--type-email {
    grid-column: span 6;
  }
  .hero-optin-card .gform_fields > .gfield--type-phone,
  .hero-optin-card .gform_fields > .gfield--type-tel,
  .hero-optin-card .gform_fields > .gfield--type-textarea {
    grid-column: 1 / -1;
  }
}
.hero-optin-card .gfield_required {
  display: none;
}
.hero-optin-card .gfield.axv-hp,
.hero-optin-card .gfield--type-honeypot {
  display: none !important;
}
/* GF's Cloudflare Turnstile add-on field carries a label that the
   `.hero-optin-card .gfield_label` rule below would render as the
   visible "TURNSTILE" uppercase tag. The widget needs no caption
   (managed mode renders its own UI or nothing), so hide it. */
.hero-optin-card .gfield--type-cloudflare_turnstile > .gfield_label,
.hero-optin-card .gfield--type-turnstile > .gfield_label {
  display: none !important;
}
.hero-optin-card .gfield_label,
.hero-optin-card .gform-field-label {
  display: block;
  font-family: var(--axv-ui);
  /* GF framework's label rule ties our specificity (both 0,2,0) and wins
     the cascade. !important is the simplest reliable override here. */
  font-weight: 700 !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 1.4px !important;
  color: rgba(234, 216, 177, 0.78) !important;
  margin: 0 0 6px !important;
}
.hero-optin-card .ginput_container input[type="text"],
.hero-optin-card .ginput_container input[type="email"],
.hero-optin-card .ginput_container input[type="tel"] {
  /* GF Foundation's `.gfield input.medium { inline-size: calc(50% - …) }`
     halves every input — override with the logical property GF uses. */
  width: 100% !important;
  inline-size: 100% !important;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(234, 216, 177, 0.18);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  outline: none;
  min-height: 44px;
  transition: border-color 0.2s var(--axv-ease), background 0.2s var(--axv-ease);
}
.hero-optin-card .ginput_container input::placeholder { color: rgba(255, 255, 255, 0.42); }
.hero-optin-card .ginput_container input:focus {
  border-color: var(--axv-gold-exec);
  background: rgba(255, 255, 255, 0.10);
}
.hero-optin-card .gform_footer {
  padding: 0;
  margin: 14px 0 0;
  display: block;
}
.hero-optin-card .gform_footer input[type="submit"],
.hero-optin-card input.gform_button {
  display: block !important;
  width: 100% !important;
  inline-size: 100% !important;
  /* GF's framework selector chains 5 classes for the submit button so we
     can't beat it on specificity without going gnarly — !important is the
     pragmatic override here. */
  background: var(--axv-gold-exec) !important;
  background-color: var(--axv-gold-exec) !important;
  color: var(--axv-navy) !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 14px 22px !important;
  font-family: var(--axv-ui) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  letter-spacing: 0.3px !important;
  cursor: pointer;
  min-height: 48px !important;
  transition: background 0.2s var(--axv-ease), transform 0.2s var(--axv-ease), box-shadow 0.3s var(--axv-ease);
}
.hero-optin-card .gform_footer input[type="submit"]:hover,
.hero-optin-card input.gform_button:hover {
  background: #f5ec9b !important;
  background-color: #f5ec9b !important;
  color: var(--axv-navy) !important;
  transform: translateY(-1px);
  box-shadow: 0 18px 40px -16px rgba(199, 174, 106, 0.55);
}
.hero-optin-card .gfield_description {
  font-family: var(--axv-ui);
  font-size: 12px;
  color: rgba(234, 216, 177, 0.55);
  margin-top: 4px;
}
/* services_inline_inside is wpautop'd → wrapped in <p>. Force inheritance so
   the inner <p> doesn't pick up .services-cta p's 22px Montserrat display
   styling (or the body's dark text color) inside our form card. */
.hero-optin-card .services-cta-inside p {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: 0;
  margin: 0;
}

/* ----- Gravity Forms validation errors, tuned for the dark opt-in card -----
   Brand error treatment per axivaris-design-system: Manrope 600, brand
   Warning Crimson (--axv-warning, #9f3852) for borders/inputs; on navy the
   crimson is lifted to a brand-consistent rose-sand (#d99aa6 — same lightness
   as the brand --axv-sand accent, kept on the crimson hue) so the text reads
   on dark without going neon-coral. GF Foundation matches our specificity
   and loads alongside our stylesheet, so property-level !important is needed
   (same pattern as the submit-button overrides above).
   --axv-warning-on-dark is local to this block; the design system doesn't
   tokenize an on-dark error variant yet. */
.hero-optin-card {
  --axv-warning-on-dark: #d99aa6;
}
.hero-optin-card .gform_validation_errors {
  background: rgba(159, 56, 82, 0.10) !important;
  border: 1px solid rgba(159, 56, 82, 0.55) !important;
  border-radius: 12px !important;
  padding: 14px 16px !important;
  margin: 0 0 16px !important;
  box-shadow: none !important;
}
.hero-optin-card .gform_validation_errors .gform_submission_error,
.hero-optin-card .gform_validation_errors > h2 {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  font-family: var(--axv-ui) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  letter-spacing: 0.05px !important;
  color: var(--axv-warning-on-dark) !important;
  text-transform: none !important;
}
.hero-optin-card .gform_validation_errors .gform-icon,
.hero-optin-card .gform_validation_errors svg {
  color: var(--axv-warning-on-dark) !important;
  fill: var(--axv-warning-on-dark) !important;
  flex: 0 0 auto;
}
.hero-optin-card .gform_validation_errors ol,
.hero-optin-card .gform_validation_errors ul {
  margin: 8px 0 0 20px !important;
  padding: 0 !important;
  font-family: var(--axv-ui) !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
  letter-spacing: 0.1px !important;
  color: rgba(217, 154, 166, 0.82) !important;
}
.hero-optin-card .gform_validation_errors a {
  color: inherit !important;
  text-decoration: underline !important;
  text-decoration-color: rgba(217, 154, 166, 0.45) !important;
  text-underline-offset: 2px !important;
}
.hero-optin-card .gfield_error .ginput_container input[type="text"],
.hero-optin-card .gfield_error .ginput_container input[type="email"],
.hero-optin-card .gfield_error .ginput_container input[type="tel"] {
  border-color: var(--axv-warning) !important;
  background: rgba(159, 56, 82, 0.08) !important;
}
.hero-optin-card .gfield_validation_message,
.hero-optin-card .gfield_description.validation_message,
.hero-optin-card .validation_message {
  margin-top: 6px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  font-family: var(--axv-ui) !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
  letter-spacing: 0.1px !important;
  color: var(--axv-warning-on-dark) !important;
}

.hero-optin-meta {
  margin-top: 10px;
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(234, 216, 177, 0.68);
  text-align: center;
}
.hero-optin-meta span + span::before {
  content: "·";
  margin: 0 8px;
  color: rgba(234, 216, 177, 0.4);
}
.hero-price-chip {
  margin: 14px 0 0;
  padding: 10px 14px;
  border: 1px solid rgba(199, 174, 106, 0.35);
  border-radius: 999px;
  background: rgba(199, 174, 106, 0.08);
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.4px;
  color: rgba(234, 216, 177, 0.92);
  text-align: center;
  line-height: 1.4;
}
.hero-price-chip em {
  font-style: normal;
  color: var(--axv-gold-exec);
  font-weight: 700;
}

/* Seal placement next to the hero opt-in form */
.hero-optin-row {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-optin-row > form { flex: 1 1 380px; }
.hero-optin-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 28px;
}

/* ============ GUARANTEE REASSURANCE (hero — calm sentence next to form) ============ */
.guarantee-note {
  border-left: 2px solid rgba(199, 174, 106, 0.55);
  padding: 4px 0 4px 16px;
  font-family: var(--axv-ui);
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(234, 216, 177, 0.78);
  max-width: 280px;
}
.guarantee-note strong {
  display: block;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--axv-gold-exec);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 6px;
}
.guarantee-note a {
  color: rgba(234, 216, 177, 0.78);
  text-decoration: none;
  border-bottom: 1px solid rgba(199, 174, 106, 0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.guarantee-note a:hover {
  color: var(--axv-gold-exec);
  border-bottom-color: var(--axv-gold-exec);
}

/* ============ GUARANTEE BLOCK (bottom CTA — typographic clause card) ============ */
.guarantee-block {
  border: 1px solid rgba(199, 174, 106, 0.35);
  border-top: 2px solid var(--axv-gold-exec);
  background: rgba(21, 39, 78, 0.4);
  padding: 26px 32px 24px;
  max-width: 520px;
  margin: 4px auto 0;
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 18px;
  align-items: start;
}
.guarantee-block-mark {
  font-family: var(--axv-display);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--axv-gold-exec);
  line-height: 1;
  grid-row: 1 / span 3;
  padding-top: 4px;
}
.guarantee-block-eyebrow {
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--axv-gold-exec);
  margin: 0 0 6px;
}
.guarantee-block-claim {
  font-family: var(--axv-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 10px;
}
.guarantee-block-claim em {
  font-style: italic;
  color: var(--axv-gold-exec);
}
.guarantee-block-link {
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(234, 216, 177, 0.78);
  text-decoration: none;
  border-bottom: 1px solid rgba(199, 174, 106, 0.4);
  display: inline-block;
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.guarantee-block-link:hover {
  color: var(--axv-gold-exec);
  border-bottom-color: var(--axv-gold-exec);
}
@media (max-width: 540px) {
  .guarantee-block { padding: 22px; gap: 2px 14px; }
  .guarantee-block-claim { font-size: 19px; }
}

/* ============ GUARANTEE SEAL (legacy — kept off page but rules retained for now) ============ */
.guarantee-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.4s var(--axv-ease), filter 0.4s var(--axv-ease);
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.18));
}
.guarantee-seal svg { width: 100%; height: 100%; display: block; }
.guarantee-seal:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 14px rgba(245, 236, 155, 0.45)) drop-shadow(0 8px 22px rgba(0, 0, 0, 0.18));
}
.guarantee-seal-caption {
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(234, 216, 177, 0.6);
}
/* Guarantee note in hero (override default aside spacing). */
.hero-optin-aside.guarantee-note {
  padding-top: 28px;
  flex: 0 1 280px;
  align-items: stretch;
}
@media (max-width: 760px) {
  .hero-optin-aside.guarantee-note { padding-top: 4px; max-width: none; }
}
@media (max-width: 540px) {
  .hero-optin-card .field-row { grid-template-columns: 1fr; }
  .hero-optin-card { padding: 18px; }
}

/* ============ LEGACY HERO INLINE FORM (kept for any leftover instances) ============ */
.hero-inline-form {
  display: flex;
  gap: 8px;
  max-width: 520px;
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(234, 216, 177, 0.22);
  border-radius: 999px;
  padding: 6px;
  opacity: 0;
  animation: fadeUp 1.1s 0.55s ease forwards;
  transition: border-color 0.3s var(--axv-ease), background 0.3s var(--axv-ease);
}
.hero-inline-form:focus-within {
  background: rgba(255, 255, 255, 0.10);
  border-color: var(--axv-gold-exec);
}
.hero-inline-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0 18px;
  color: #fff;
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.1px;
}
.hero-inline-form input::placeholder { color: rgba(255, 255, 255, 0.45); }
.hero-inline-form button {
  background: var(--axv-gold-exec);
  color: var(--axv-navy);
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s var(--axv-ease), transform 0.2s var(--axv-ease);
}
.hero-inline-form button:hover {
  background: #f5ec9b;
  transform: translateX(2px);
}
.hero-form-meta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 12px;
  color: rgba(234, 216, 177, 0.7);
  letter-spacing: 0.04em;
  opacity: 0;
  animation: fadeUp 1.1s 0.7s ease forwards;
}
.hero-form-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-form-meta-item::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--axv-gold-exec);
}
@media (max-width: 540px) {
  .hero-inline-form { flex-direction: column; gap: 10px; padding: 10px; border-radius: 14px; }
  .hero-inline-form input { padding: 12px 14px; }
  .hero-inline-form button { width: 100%; }
}

/* ============ QUANTIFIED OUTCOME STATS ============ */
.outcome-stat {
  font-family: var(--axv-display);
  font-weight: 200;
  font-style: italic;
  font-size: 48px;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--axv-gold-exec);
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.outcome-stat-unit {
  font-family: var(--axv-ui);
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--axv-gold-exec);
  opacity: 0.8;
}

/* ============ PRICING SECTION (own section between Process and Why) ============ */
.pricing-section {
  background: var(--axv-paper);
  border-top: 1px solid var(--axv-linen);
  border-bottom: 1px solid var(--axv-linen);
  padding: 100px 0;
}
.pricing-section .pricing-signal {
  margin-top: 0;
}

/* ============ PRICING GUARANTEE (under the pricing-signal block) ============ */
.pricing-guarantee {
  margin-top: 18px;
  padding: 22px 28px;
  border-left: 2px solid var(--axv-gold-exec);
}
.pricing-guarantee-eyebrow {
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--axv-gold-active);
  margin: 0 0 8px;
}
.pricing-guarantee-body {
  font-family: var(--axv-ui);
  font-size: 15px;
  line-height: 1.55;
  color: var(--axv-navy);
  margin: 0;
  max-width: 70ch;
}
.pricing-guarantee-body a {
  color: var(--axv-navy);
  text-decoration: none;
  border-bottom: 1px solid rgba(199, 174, 106, 0.55);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.pricing-guarantee-body a:hover { color: var(--axv-gold-active); border-bottom-color: var(--axv-gold-active); }

/* ============ PRICING SIGNAL ============ */
.pricing-signal {
  margin-top: 56px;
  padding: 32px 36px;
  background: var(--axv-paper);
  border: 1px solid var(--axv-linen);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.pricing-signal-content { flex: 1; min-width: 260px; }
.pricing-signal-eyebrow {
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--axv-gold-active);
  margin-bottom: 10px;
}
.pricing-signal h4 {
  font-family: var(--axv-display);
  font-weight: 200;
  font-size: 26px;
  letter-spacing: -0.4px;
  color: var(--axv-fg-display);
  margin-bottom: 8px;
}
.pricing-signal h4 em {
  font-style: italic;
  font-weight: 300;
  color: var(--axv-gold-active);
}
.pricing-signal p {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 14px;
  color: var(--axv-fg-2);
  line-height: 1.6;
  max-width: 60ch;
}
.pricing-signal-cta {
  flex-shrink: 0;
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--axv-navy);
  text-decoration: none;
  border-bottom: 1px solid var(--axv-gold-exec);
  padding-bottom: 4px;
  transition: color 0.2s var(--axv-ease);
}
.pricing-signal-cta:hover { color: var(--axv-gold-active); }

/* ============ STICKY CTA BAR ============ */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(120%);
  z-index: 50;
  background: var(--axv-navy);
  border: 1px solid rgba(234, 216, 177, 0.3);
  border-radius: 999px;
  padding: 10px 10px 10px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 12px 36px rgba(15, 27, 56, 0.25);
  transition: transform 0.45s var(--axv-ease);
}
.sticky-cta.visible { transform: translateX(-50%) translateY(0); }
.sticky-cta-text {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}
.sticky-cta-text strong {
  color: var(--axv-gold-exec);
  font-weight: 700;
}
.sticky-cta a {
  background: var(--axv-gold-exec);
  color: var(--axv-navy);
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s var(--axv-ease);
}
.sticky-cta a:hover { background: #f5ec9b; }
.sticky-cta-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  margin-right: 4px;
  transition: color 0.2s var(--axv-ease);
}
.sticky-cta-close:hover { color: var(--axv-gold-exec); }
@media (max-width: 540px) {
  .sticky-cta { left: 12px; right: 12px; transform: translateY(120%); padding: 10px 10px 10px 16px; gap: 10px; }
  .sticky-cta.visible { transform: translateY(0); }
  .sticky-cta-text { font-size: 12px; }
  .sticky-cta a { font-size: 12px; padding: 9px 14px; }
}

/* ============ SERVICES: not-sure CTA + pricing footnote ============ */
.services-cta {
  margin-top: 48px;
  text-align: center;
  padding: 40px 32px;
  background: var(--axv-paper);
  border: 1px dashed var(--axv-gold-exec);
  border-radius: 8px;
}
.services-cta p {
  font-family: var(--axv-display);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: -0.2px;
  color: var(--axv-fg-display);
  margin-bottom: 16px;
}
.services-cta p em {
  font-style: italic;
  color: var(--axv-gold-active);
}
.services-cta a {
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--axv-navy);
  text-decoration: none;
  border-bottom: 1px solid var(--axv-gold-exec);
  padding-bottom: 4px;
}

/* Merged variant: prompt + opt-in form on a navy action card inside services */
.services-cta-merged {
  background: var(--axv-navy);
  border: 1px solid rgba(199, 174, 106, 0.32);
  text-align: left;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.services-cta-merged .services-cta-prompt p {
  color: #fff;
  font-size: 28px;
  margin-bottom: 0;
  line-height: 1.25;
}
.services-cta-merged .services-cta-prompt p em {
  color: var(--axv-gold-exec);
}
.services-cta-merged .services-cta-prompt p strong {
  font-weight: 300;
  font-style: italic;
  color: var(--axv-gold-active);
}
.services-cta-merged .services-cta-form {
  margin: 0;
  width: 100%;
}
.services-cta-merged .services-cta-inside {
  margin: 14px 0 0;
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(234, 216, 177, 0.78);
  text-align: center;
}
.hero-optin-card .services-cta-inside {
  margin: 14px 0 0;
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(234, 216, 177, 0.78);
  text-align: center;
}
@media (max-width: 880px) {
  .services-cta-merged {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 28px;
  }
  .services-cta-merged .services-cta-prompt p { font-size: 22px; }
}

/* With-preview variant: header band on top, then preview + form side by side */
.services-cta-with-preview {
  display: block;
  padding: 48px;
}
.services-cta-with-preview .services-cta-header {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(199, 174, 106, 0.18);
}
.services-cta-with-preview .section-eyebrow {
  color: var(--axv-gold-active);
  margin-bottom: 12px;
}
.services-cta-with-preview .services-cta-prompt-headline {
  font-family: var(--axv-display);
  font-weight: 300;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: #fff;
  margin: 0;
  max-width: none;
}
.services-cta-with-preview .services-cta-prompt-headline em {
  font-style: italic;
  color: var(--axv-gold-exec);
}
.services-cta-with-preview .services-cta-prompt-headline strong {
  font-weight: 300;
  font-style: italic;
  color: var(--axv-gold-active);
}
.services-cta-with-preview .services-cta-body {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: stretch;
}
@media (max-width: 880px) {
  .services-cta-with-preview {
    padding: 32px 24px;
  }
  .services-cta-with-preview .services-cta-prompt-headline { font-size: 22px; }
  .services-cta-with-preview .services-cta-body {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.services-call-aside {
  margin: 28px 0 0;
  text-align: center;
  font-family: var(--axv-ui);
  font-size: 13px;
  color: var(--axv-fg-2);
  letter-spacing: 0.02em;
}
.services-call-aside a {
  color: var(--axv-navy);
  text-decoration: none;
  border-bottom: 1px solid var(--axv-gold-exec);
  padding-bottom: 2px;
  font-weight: 700;
  margin-left: 6px;
  transition: color 0.2s var(--axv-ease), border-color 0.2s var(--axv-ease);
}
.services-call-aside a:hover {
  color: var(--axv-gold-active);
  border-bottom-color: var(--axv-gold-active);
}

/* ============ CHECKLIST TEASER (mid-page preview, replaces second form) ============ */
.checklist-teaser-grid { align-items: start; }
.checklist-teaser-actions {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.checklist-teaser-cta {
  background: var(--axv-navy) !important;
  color: #fff !important;
}
.checklist-teaser-cta:hover {
  background: var(--axv-sapphire) !important;
  box-shadow: var(--axv-ring-gold);
}
.checklist-teaser-jump {
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--axv-navy);
  text-decoration: none;
  border-bottom: 1px solid var(--axv-gold-exec);
  padding-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s var(--axv-ease), border-color 0.2s var(--axv-ease);
}
.checklist-teaser-jump:hover {
  color: var(--axv-gold-active);
  border-bottom-color: var(--axv-gold-active);
}
.checklist-teaser-jump .arrow { transition: transform 0.2s var(--axv-ease); }
.checklist-teaser-jump:hover .arrow { transform: translateY(2px); }
.checklist-teaser-meta {
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--axv-fg-2);
}
.checklist-preview {
  background: #fff;
  border: 1px solid var(--axv-linen);
  border-radius: var(--axv-radius-19);
  padding: 32px 32px 24px;
  box-shadow: 0 30px 60px -40px rgba(15, 29, 58, 0.18);
}
.checklist-preview-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--axv-linen);
}
.checklist-preview-label {
  font-family: var(--axv-display);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--axv-navy);
}
.checklist-preview-edition {
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--axv-fg-2);
}
.checklist-preview-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checklist-preview-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 8px;
  padding: 22px 0;
  border-bottom: 1px solid var(--axv-linen);
}
.checklist-preview-list li:last-child { border-bottom: none; }
.checklist-preview-list .q-num {
  font-family: var(--axv-display);
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  color: var(--axv-gold-active);
  line-height: 1;
  padding-top: 2px;
}
.checklist-preview-list h4 {
  font-family: var(--axv-display);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.3;
  color: var(--axv-fg-display);
  margin: 0 0 6px;
  letter-spacing: -0.2px;
}
.checklist-preview-list p {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  color: var(--axv-fg-2);
  margin: 0;
}
.checklist-preview-foot {
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px dashed var(--axv-linen);
  text-align: center;
}
.checklist-preview-locked {
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--axv-fg-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.checklist-preview-locked::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--axv-gold-exec);
  opacity: 0.5;
}
@media (max-width: 760px) {
  .checklist-preview { padding: 24px 22px 18px; }
  .checklist-preview-list li { grid-template-columns: 44px 1fr; padding: 18px 0; }
  .checklist-preview-list .q-num { font-size: 22px; }
  .checklist-preview-list h4 { font-size: 17px; }
}

/* ============ AUDIT FORM: offer detail strip ============ */
.audit-detail {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--axv-linen);
}
.audit-detail-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.audit-detail-label {
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--axv-fg-2);
}
.audit-detail-value {
  font-family: var(--axv-display);
  font-weight: 300;
  font-style: italic;
  font-size: 17px;
  color: var(--axv-fg-display);
  letter-spacing: -0.1px;
}
@media (max-width: 540px) {
  .audit-detail { grid-template-columns: 1fr 1fr; gap: 18px; }
}

/* ============ PROCESS: short summary ============ */
.process-summary {
  margin-top: 36px;
  font-family: var(--axv-display);
  font-weight: 300;
  font-style: italic;
  font-size: 20px;
  letter-spacing: -0.2px;
  color: var(--axv-fg-2);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.process-summary strong {
  font-style: normal;
  font-weight: 700;
  font-family: var(--axv-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--axv-gold-active);
  padding: 6px 14px;
  border: 1px solid var(--axv-gold-exec);
  border-radius: 999px;
}

/* ============ SUB-VERTICAL CHIP STRIP ============ */
/* Default: standalone strip on a light section background. */
.vertical-chip-strip {
  background: var(--axv-ivory);
  border-bottom: 1px solid var(--axv-linen);
  padding: 22px 0;
}
.vertical-chip-strip .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 0;
  row-gap: 8px;
}
.vertical-chip-label {
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--axv-gold-active);
  margin-right: 18px;
}
.vertical-chip {
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--axv-navy);
  white-space: nowrap;
  padding: 0 14px;
  border-right: 1px solid var(--axv-linen);
}
.vertical-chip:last-child { border-right: none; }
.vertical-chip:first-of-type { padding-left: 0; }
/* In-hero variant: transparent strip with a subtle gold separator and
   white-on-navy chip text, so the strip reads as a continuation of the hero. */
.hero .vertical-chip-strip {
  background: transparent;
  border-top: 1px solid rgba(234, 216, 177, 0.18);
  border-bottom: none;
  padding: 22px 0 0;
  margin-top: 56px;
}
.hero .vertical-chip-strip .wrap {
  padding-left: 0;
  padding-right: 0;
}
.hero .vertical-chip-label { color: var(--axv-gold-exec); }
.hero .vertical-chip {
  color: rgba(255, 255, 255, 0.86);
  border-right-color: rgba(234, 216, 177, 0.22);
}
@media (max-width: 760px) {
  .vertical-chip-strip { padding: 16px 0; }
  .vertical-chip { font-size: 11.5px; padding: 0 10px; }
  .vertical-chip-label { display: block; width: 100%; margin: 0 0 6px; }
  .hero .vertical-chip-strip { padding: 16px 0 0; margin-top: 36px; }
}

/* ============ REVEAL on scroll ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--axv-ease), transform 0.9s var(--axv-ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===================================================================
   BOOK AN APPOINTMENT (page-book.php)
   ----------------------------------------------------------------
   "Production-collapsed" layout — side-by-side hero with the GHL
   calendar iframe embedded directly in the hero aside. Calendar
   dimensions are tunable per-page via inline CSS custom properties
   (--axv-calendar-w / --axv-calendar-h / --axv-calendar-h-mobile)
   set on .book-page by page-book.php. The alternate exploration
   layouts (scarcity strip, outcomes stats panel, standalone calendar
   section, agenda strip, full-width guarantee band, final CTA) are
   intentionally absent — see mockup/DELTA-SINCE-LAST-HANDOFF.md.
   =================================================================== */

/* Wider container in the hero so the calendar has room beside the copy. */
.book-hero .wrap { max-width: 1440px; }

/* Side-by-side layout: copy on the left, calendar-bearing aside on the right.
   The aside sizes off --axv-calendar-w (set inline on .book-page). */
.book-hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 56px;
  align-items: start;
  justify-content: space-between;
}
.book-hero-grid .hero-copy { max-width: 480px; padding-top: 16px; }
.book-hero-grid .hero-copy h1 {
  font-size: clamp(42px, 6.2vw, 84px);
  line-height: 1.02;
  letter-spacing: -1.6px;
  margin-bottom: 28px;
}
.book-hero-grid .hero-copy h1 .italic {
  font-style: italic;
  font-weight: 200;
  color: var(--axv-gold-exec);
}
.book-hero-grid .hero-aside {
  width: var(--axv-calendar-w, 740px);
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.book-hero-grid .hero-aside .calendar-frame { width: 100%; margin: 0; }

@media (max-width: 980px) {
  .book-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .book-hero-grid .hero-aside { width: 100%; }
}

.hero-fact-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
}
.hero-fact-list li {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.86);
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.2px;
}
.hero-fact-list li::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--axv-gold-exec) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path fill='none' stroke='%2315274e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M3 6.5L5 8.5L9 4'/></svg>") center/11px no-repeat;
}

/* Calendar frame inside the hero aside — chromeless container around the GHL
   iframe. Height is driven by --axv-calendar-h (desktop) and
   --axv-calendar-h-mobile (mobile), both set inline on .book-page. */
.calendar-frame {
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  position: relative;
}
.calendar-frame-header { display: none; }
.calendar-iframe-wrap {
  position: relative;
  width: 100%;
  height: var(--axv-calendar-h, 820px);
  background: transparent;
  overflow: hidden;
}
.calendar-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
  display: block;
}
.calendar-fallback {
  padding: 24px;
  background: var(--axv-ivory);
  border: 1px dashed var(--axv-gold-active);
  border-radius: 12px;
  color: var(--axv-warning);
  font-family: var(--axv-ui);
}
@media (max-width: 880px) {
  .calendar-iframe-wrap { height: var(--axv-calendar-h-mobile, 1000px); }
}

/* Qualifier — book if / probably not yet if */
.qualifier {
  background: var(--axv-paper);
  padding: 110px 0;
  border-top: 1px solid var(--axv-linen);
}
.qualifier .qualifier-head { max-width: 780px; margin-bottom: 56px; }
.qualifier .qualifier-head .section-eyebrow,
.qualifier .qualifier-head .section-title,
.qualifier .qualifier-head .section-lede { text-align: left; }
.qualifier .qualifier-head .section-eyebrow { justify-content: flex-start; }
.qualifier .qualifier-head .section-title,
.qualifier .qualifier-head .section-lede { margin-left: 0; }
.qualifier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--axv-linen);
  border-radius: var(--axv-radius-12, 12px);
  overflow: hidden;
}
.qualifier-col {
  padding: 44px 44px 40px;
  background: #fff;
  position: relative;
}
.qualifier-col + .qualifier-col {
  border-left: 1px solid var(--axv-linen);
  background: var(--axv-ivory);
}
.qualifier-col-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--axv-linen);
}
.qualifier-col-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--axv-gold-exec);
  color: var(--axv-navy);
}
.qualifier-col-icon.no {
  background: transparent;
  border: 1.5px solid rgba(168, 155, 128, 0.85);
  color: rgba(168, 155, 128, 0.85);
}
.qualifier-col-icon svg { display: block; }
.qualifier-col-label {
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--axv-gold-active);
}
.qualifier-col-label.muted { color: rgba(168, 155, 128, 0.85); }
.qualifier-col-heading {
  font-family: var(--axv-display);
  font-weight: 300;
  font-size: 24px;
  letter-spacing: -0.3px;
  line-height: 1.2;
  color: var(--axv-fg-display);
  margin: 4px 0 22px;
}
.qualifier-col-heading em { font-style: italic; color: var(--axv-gold-active); font-weight: 300; }
.qualifier-col + .qualifier-col .qualifier-col-heading em { color: var(--axv-fg-2); }
.qualifier-list { list-style: none; display: grid; gap: 14px; padding: 0; margin: 0; }
.qualifier-list li {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.55;
  color: var(--axv-fg-1);
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: baseline;
}
.qualifier-list li::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--axv-gold-exec) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path fill='none' stroke='%2315274e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M3 6.5L5 8.5L9 4'/></svg>") center/9px no-repeat;
  margin-top: 4px;
}
.qualifier-col + .qualifier-col .qualifier-list li::before {
  background: transparent url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path fill='none' stroke='%23a89b80' stroke-width='2' stroke-linecap='round' d='M3 3l6 6M9 3l-6 6'/></svg>") center/9px no-repeat;
  border: 1.5px solid rgba(168, 155, 128, 0.85);
}
.qualifier-col + .qualifier-col .qualifier-list li { color: var(--axv-fg-2); }
@media (max-width: 880px) {
  .qualifier-grid { grid-template-columns: 1fr; }
  .qualifier-col + .qualifier-col { border-left: none; border-top: 1px solid var(--axv-linen); }
}

/* ===================================================================
   BOOKING CONFIRMED (page-booking-confirmed.php) and shared confirm-hero
   =================================================================== */
.confirm-hero {
  position: relative;
  background: var(--axv-grad-dark, linear-gradient(135deg, var(--axv-navy-deep) 0%, var(--axv-navy) 100%));
  color: #fff;
  padding: 128px 0 90px;
  overflow: hidden;
  text-align: center;
}
.confirm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(199, 174, 106, 0.16), transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(76, 175, 114, 0.10), transparent 60%);
}
.confirm-hero .wrap { position: relative; z-index: 1; max-width: 780px; }
.confirm-hero .eyebrow {
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--axv-gold-exec);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.confirm-hero .eyebrow::before,
.confirm-hero .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--axv-gold-exec);
}
.confirm-hero h1 {
  font-family: var(--axv-display);
  font-weight: 200;
  font-size: clamp(38px, 5.8vw, 68px);
  line-height: 1.05;
  letter-spacing: -1.2px;
  color: #fff;
  margin-bottom: 22px;
  text-wrap: balance;
}
.confirm-hero h1 em { font-style: italic; font-weight: 200; color: var(--axv-gold-exec); }
.confirm-hero .lede {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
  margin: 0 auto;
}
.confirm-hero .lede a { color: var(--axv-gold-exec); border-bottom: 1px solid rgba(199, 174, 106, 0.4); text-decoration: none; }
.confirm-hero .lede a:hover { color: #f5ec9b; border-bottom-color: var(--axv-gold-exec); }
.confirm-hero .lede .pdf-link { color: var(--axv-gold-exec); border-bottom: 1px solid rgba(199, 174, 106, 0.5); padding-bottom: 1px; transition: color 0.2s ease, border-color 0.2s ease; }
.confirm-hero .lede .email-tag { font-weight: 700; color: rgba(234, 216, 177, 0.92); }

/* Booking detail card */
.booking-card {
  margin: 36px auto 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(234, 216, 177, 0.28);
  border-radius: 18px;
  padding: 28px 32px;
  max-width: 520px;
  text-align: left;
  display: grid;
  gap: 18px;
  position: relative;
}
.booking-card-tag {
  position: absolute;
  top: -11px;
  left: 24px;
  background: var(--axv-navy);
  color: var(--axv-gold-exec);
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid rgba(199, 174, 106, 0.5);
  border-radius: 999px;
}
.booking-card-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: baseline;
}
.booking-card-label {
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--axv-gold-exec);
}
.booking-card-value {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}
.booking-card-value em { font-style: italic; color: rgba(234, 216, 177, 0.72); font-weight: 600; }

.calendar-add {
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px dashed rgba(234, 216, 177, 0.22);
}
.calendar-add-label {
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(234, 216, 177, 0.7);
  margin-bottom: 12px;
}
.calendar-add-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.calendar-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(234, 216, 177, 0.22);
  border-radius: 999px;
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 12px;
  color: rgba(234, 216, 177, 0.92);
  text-decoration: none;
  letter-spacing: 0.4px;
  transition: all 0.2s var(--axv-ease);
}
.calendar-btn:hover {
  background: rgba(199, 174, 106, 0.12);
  border-color: var(--axv-gold-exec);
  color: var(--axv-gold-exec);
  transform: translateY(-1px);
}
.calendar-btn svg { width: 14px; height: 14px; opacity: 0.85; }

/* Booking-confirmed section heads are CENTERED per the mockup (vs the theme's
   global left-aligned .section-eyebrow / .section-title / .section-lede used
   on industry pages). Scoped to .expect, .prep, .meantime so the override
   doesn't leak to other templates. */
.expect .section-eyebrow,
.prep .section-eyebrow,
.meantime .section-eyebrow { justify-content: center; }
.expect .section-title,
.prep .section-title,
.meantime .section-title {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.expect .section-lede,
.prep .section-lede,
.meantime .section-lede {
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* What to expect — 3-up */
.expect {
  background: var(--axv-ivory);
  border-top: 1px solid var(--axv-linen);
  border-bottom: 1px solid var(--axv-linen);
  padding: 96px 0;
}
.expect .wrap,
.prep .wrap,
.meantime .wrap { max-width: 1080px; }
.expect-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--axv-linen);
}
.expect-step {
  padding: 36px 32px 36px 0;
  border-bottom: 1px solid var(--axv-linen);
  display: grid;
  gap: 14px;
}
.expect-step + .expect-step { padding-left: 32px; border-left: 1px solid var(--axv-linen); }
.expect-step-num {
  font-family: var(--axv-display);
  font-style: italic;
  font-weight: 200;
  font-size: 44px;
  color: var(--axv-gold-active);
  line-height: 1;
  letter-spacing: -0.6px;
}
.expect-step-label {
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--axv-fg-2);
}
.expect-step h3 {
  font-family: var(--axv-display);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: var(--axv-fg-display);
  margin: 0;
}
.expect-step h3 em { font-style: italic; color: var(--axv-gold-active); font-weight: 300; }
.expect-step p {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--axv-fg-2);
  margin: 0;
}
@media (max-width: 880px) {
  .expect-grid { grid-template-columns: 1fr; }
  .expect-step + .expect-step { padding-left: 0; border-left: none; }
  .expect-step { padding-right: 0; }
}

/* Prep ask */
.prep { background: var(--axv-paper); padding: 96px 0; }
.prep-card {
  margin: 56px auto 0;
  max-width: 720px;
  background: #fff;
  border: 1px solid var(--axv-linen);
  border-left: 3px solid var(--axv-gold-exec);
  border-radius: 4px;
  padding: 36px 40px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  box-shadow: 0 24px 60px -40px rgba(15, 29, 58, 0.15);
}
.prep-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(199, 174, 106, 0.10);
  border: 1px solid var(--axv-gold-exec);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--axv-display);
  font-weight: 300;
  font-style: italic;
  font-size: 28px;
  color: var(--axv-gold-active);
  flex-shrink: 0;
}
.prep-body p {
  font-family: var(--axv-display);
  font-weight: 300;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -0.2px;
  color: var(--axv-fg-display);
  margin: 0;
}
.prep-body p em { font-style: italic; color: var(--axv-gold-active); font-weight: 300; }
.prep-body p strong { font-weight: 400; color: var(--axv-navy); }
@media (max-width: 540px) {
  .prep-card { grid-template-columns: 1fr; padding: 28px; }
  .prep-mark { width: 48px; height: 48px; font-size: 22px; }
  .prep-body p { font-size: 18px; }
}

/* While you wait */
.meantime {
  background: var(--axv-ivory);
  border-top: 1px solid var(--axv-linen);
  border-bottom: 1px solid var(--axv-linen);
  padding: 96px 0;
}
.meantime-card {
  margin: 56px auto 0;
  max-width: 640px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--axv-linen);
  border-radius: 19px;
  padding: 44px;
  box-shadow: 0 24px 60px -40px rgba(15, 29, 58, 0.18);
}
.meantime-text h3 {
  font-family: var(--axv-display);
  font-weight: 300;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.3px;
  color: var(--axv-fg-display);
  margin: 0 0 14px;
}
.meantime-text h3 em { font-style: italic; color: var(--axv-gold-active); font-weight: 300; }
.meantime-text p {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--axv-fg-2);
  margin: 0 auto 22px;
  max-width: 480px;
}
.meantime-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--axv-navy);
  color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all 0.2s var(--axv-ease);
}
.meantime-btn:hover {
  background: var(--axv-sapphire);
  transform: translateY(-1px);
  box-shadow: var(--axv-ring-gold, 0 0 0 4px rgba(199, 174, 106, 0.2));
}

/* Reschedule / contact line */
.reschedule { background: var(--axv-paper); padding: 80px 0; text-align: center; }
.reschedule p {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.6;
  color: var(--axv-fg-2);
  max-width: 540px;
  margin: 0 auto;
}
.reschedule p a {
  color: var(--axv-navy);
  text-decoration: none;
  border-bottom: 1px solid var(--axv-gold-exec);
  padding-bottom: 2px;
  font-weight: 700;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.reschedule p a:hover { color: var(--axv-gold-active); border-bottom-color: var(--axv-gold-active); }

/* ===================================================================
   CONFIRMATION (page-confirmation.php) — checklist PDF delivery
   Shares .confirm-hero with booking-confirmed but tightens type and
   widens the lede + section titles to match the checklist mockup
   (single-line headline, single-line lede, wider section titles).
   =================================================================== */

/* Checklist hero — smaller headline and wider lede than booking-confirmed.
   Booking-confirmed leads with a booking card under a punchy short headline
   ("Your 30 minutes are on the calendar"); the checklist hero leads with a
   longer headline + sentence-length lede that needs to sit on one line.
   The wrap is widened to 960px (vs 780px on booking-confirmed) so the
   personalised headline ("Mike, here's what to do with it.") fits on one
   line instead of breaking at "what". */
.checklist-confirm-hero { padding: 96px 0 80px; }
.checklist-confirm-hero .wrap { max-width: 960px; }
.checklist-confirm-hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: -1px;
}
.checklist-confirm-hero .lede {
  max-width: 720px;
  font-size: 16px;
}

/* How to use it — 3-up section (mirrors .expect on booking-confirmed) */
.howto {
  background: var(--axv-ivory);
  border-top: 1px solid var(--axv-linen);
  border-bottom: 1px solid var(--axv-linen);
  padding: 96px 0;
}
.howto .wrap { max-width: 1280px; }
.howto .section-eyebrow { justify-content: center; }
.howto .section-title {
  text-align: center;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  /* Sized to fit "Ten questions, the way we'd ask in the room." on one line
     inside the 1280px wrap on desktop, dropping to two lines on mobile. */
  font-size: clamp(28px, 4vw, 48px);
  text-wrap: balance;
}
.howto-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--axv-linen);
}
.howto-step {
  padding: 36px 32px 36px 0;
  border-bottom: 1px solid var(--axv-linen);
  display: grid;
  gap: 14px;
}
.howto-step + .howto-step { padding-left: 32px; border-left: 1px solid var(--axv-linen); }
.howto-step-num {
  font-family: var(--axv-display);
  font-style: italic;
  font-weight: 200;
  font-size: 44px;
  color: var(--axv-gold-active);
  line-height: 1;
  letter-spacing: -0.6px;
}
.howto-step-label {
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--axv-fg-2);
}
.howto-step h3 {
  font-family: var(--axv-display);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: var(--axv-fg-display);
  margin: 0;
}
.howto-step h3 em { font-style: italic; color: var(--axv-gold-active); font-weight: 300; }
.howto-step p {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--axv-fg-2);
  margin: 0;
}
@media (max-width: 880px) {
  .howto-grid { grid-template-columns: 1fr; }
  .howto-step + .howto-step { padding-left: 0; border-left: none; }
  .howto-step { padding-right: 0; }
}

/* Next step — dark CTA section to book a call */
.next-step {
  background: var(--axv-grad-dark, linear-gradient(135deg, var(--axv-navy-deep) 0%, var(--axv-navy) 100%));
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}
.next-step::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 900px; height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(199, 174, 106, 0.12), transparent 60%);
  pointer-events: none;
}
.next-step .wrap { position: relative; z-index: 1; max-width: 1280px; }
.next-step .section-eyebrow { justify-content: center; color: var(--axv-gold-exec); }
.next-step .section-title { color: #fff; text-align: center; max-width: 100%; margin-left: auto; margin-right: auto; font-size: clamp(28px, 4vw, 48px); text-wrap: balance; }
.next-step .section-title em { color: var(--axv-gold-exec); }
.next-step .section-lede { color: rgba(255, 255, 255, 0.78); text-align: center; max-width: 100%; margin-left: auto; margin-right: auto; }

.next-actions {
  margin-top: 40px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.next-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--axv-gold-exec);
  color: var(--axv-navy);
  padding: 18px 32px;
  border-radius: 999px;
  font-family: var(--axv-ui);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all 0.2s var(--axv-ease);
}
.next-cta:hover {
  background: #f5ec9b;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -16px rgba(199, 174, 106, 0.55);
}
.next-cta .arrow { font-size: 18px; line-height: 1; }
.next-aside {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2px;
  color: rgba(234, 216, 177, 0.7);
}
.next-aside a {
  color: rgba(234, 216, 177, 0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(199, 174, 106, 0.4);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.next-aside a:hover { color: var(--axv-gold-exec); border-bottom-color: var(--axv-gold-exec); }

/* Troubleshooting line (visually identical to .reschedule on booking-confirmed) */
.troubleshoot { background: var(--axv-paper); padding: 80px 0; text-align: center; border-top: 1px solid var(--axv-linen); }
.troubleshoot p {
  font-family: var(--axv-ui);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.6;
  color: var(--axv-fg-2);
  max-width: 100%;
  margin: 0 auto;
}
.troubleshoot p a {
  color: var(--axv-navy);
  text-decoration: none;
  border-bottom: 1px solid var(--axv-gold-exec);
  padding-bottom: 2px;
  font-weight: 700;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.troubleshoot p a:hover { color: var(--axv-gold-active); border-bottom-color: var(--axv-gold-active); }

