/* =========================================================
   VisionFlight — Stylesheet (v3)
   Brand-accurate: navy + bright blue + gold arc
   Editorial, photo-led, less SaaS-chunky
   ========================================================= */

:root {
  --vf-navy: #0c1e3e;
  --vf-navy-deep: #060f24;
  --vf-blue: #1e6bd6;
  --vf-blue-dim: #1856ad;
  --vf-blue-soft: #e3edf9;
  --vf-gold: #e89c2a;
  --vf-gold-soft: #f6dca2;
  --vf-ivory: #faf8f3;
  --vf-paper: #f3eee2;
  --vf-ink: #14171c;
  --vf-stone: #5e6470;
  --vf-mist: #c5cad2;
  --vf-line: rgba(12, 30, 62, 0.12);
  --vf-line-strong: rgba(12, 30, 62, 0.22);
  --max-w: 1240px;
  --max-w-narrow: 780px;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --font-serif: "Cormorant Garamond", "Fraunces", Georgia, serif;
  --font-sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --shadow-sm: 0 1px 2px rgba(12, 30, 62, 0.04);
  --shadow:    0 18px 50px -28px rgba(12, 30, 62, 0.35);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

body {
  font-family: var(--font-sans);
  color: var(--vf-ink);
  background: var(--vf-ivory);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--vf-navy);
  line-height: 1.1;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.6rem, 5.6vw, 5rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.6vw, 3.25rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }
h4 {
  font-size: 0.78rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vf-stone);
  margin: 0 0 0.6em;
}
p { margin: 0 0 1em; color: #2c3038; }
.lede { font-size: 1.18rem; color: #3a3f48; max-width: 56ch; }
.muted { color: var(--vf-stone); }
.serif { font-family: var(--font-serif); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vf-gold);
  margin-bottom: 1.4rem;
  position: relative;
  padding-left: 32px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 22px; height: 1.5px;
  background: var(--vf-gold);
}
.eyebrow.center { padding-left: 0; }
.eyebrow.center::before { display: none; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.container.narrow { max-width: var(--max-w-narrow); }

/* NAV */
.nav { position: absolute; top: 0; left: 0; right: 0; z-index: 50; }
.nav.dark, .nav.scrolled {
  position: sticky;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--vf-line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 42px; width: auto; }
.brand-text { display: none; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav.dark .nav-links a, .nav.scrolled .nav-links a { color: var(--vf-navy); }
.nav-links a:hover { color: var(--vf-gold); }
.nav-links a.active { color: var(--vf-gold); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1px;
  background: var(--vf-gold);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 999px;
  font-size: 0.86rem !important;
  color: #fff !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: rgba(255,255,255,0.12); color: #fff !important; }
.nav.dark .nav-cta, .nav.scrolled .nav-cta {
  border-color: var(--vf-navy);
  color: var(--vf-navy) !important;
}
.nav.dark .nav-cta:hover, .nav.scrolled .nav-cta:hover {
  background: var(--vf-navy);
  color: #fff !important;
}
.menu-toggle { display: none; color: #fff; }
.nav.dark .menu-toggle, .nav.scrolled .menu-toggle { color: var(--vf-navy); }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 78px; left: 0; right: 0;
    flex-direction: column;
    background: var(--vf-navy);
    padding: 28px;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open a { color: #fff; }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
  }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 2px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s, transform 0.15s, border-color 0.2s;
}
.btn-primary {
  background: var(--vf-gold);
  color: var(--vf-navy);
  border: 1px solid var(--vf-gold);
}
.btn-primary:hover { background: #d68b1c; border-color: #d68b1c; }
.btn-navy {
  background: var(--vf-navy);
  color: #fff;
  border: 1px solid var(--vf-navy);
}
.btn-navy:hover { background: var(--vf-navy-deep); }
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
}
.btn-outline:hover { background: #fff; color: var(--vf-navy); }
.btn-outline-navy {
  background: transparent;
  border: 1px solid var(--vf-navy);
  color: var(--vf-navy);
}
.btn-outline-navy:hover { background: var(--vf-navy); color: #fff; }
.btn .arrow { transition: transform 0.2s; display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

.linklike {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--vf-blue);
  border-bottom: 1px solid var(--vf-blue);
  padding-bottom: 2px;
  letter-spacing: 0.02em;
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}
.linklike:hover { color: var(--vf-gold); border-color: var(--vf-gold); gap: 10px; }

/* HERO */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(6,15,36,0.55) 0%, rgba(6,15,36,0.35) 40%, rgba(6,15,36,0.75) 100%),
    url("assets/mountain-trail.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 130px 0 90px;
  max-width: 820px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 4.6vw, 4.4rem);
  letter-spacing: -0.015em;
  line-height: 1.06;
  font-weight: 400;
  margin-bottom: 0.4em;
}
.hero h1 em { font-style: italic; color: var(--vf-gold-soft); }
.hero .tagline {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero .tagline::before, .hero .tagline::after {
  content: "";
  width: 28px; height: 1px;
  background: var(--vf-gold);
}
.hero .hero-lede {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  color: rgba(255,255,255,0.92);
  font-style: italic;
  max-width: 580px;
  font-weight: 400;
  margin: 24px 0 40px;
  line-height: 1.5;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-scroll {
  position: absolute;
  bottom: 38px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-align: center;
}
.hero-scroll .line {
  display: block;
  width: 1px; height: 38px;
  background: rgba(255,255,255,0.5);
  margin: 12px auto 0;
  animation: drop 2.4s ease-in-out infinite;
}
@keyframes drop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@media (max-width: 900px) {
  .hero { min-height: 78vh; }
  .hero-inner { padding: 140px 0 80px; }
  .hero-scroll { display: none; }
}

/* SECTIONS */
section { padding: 120px 0; }
.section-narrow { padding: 80px 0; }
.section-head { max-width: 760px; margin: 0 auto 72px; }
.section-head.center { text-align: center; }
.section-head p { color: var(--vf-stone); font-size: 1.12rem; line-height: 1.6; }
.bg-ivory { background: var(--vf-ivory); }
.bg-paper { background: var(--vf-paper); }
.bg-navy { background: var(--vf-navy); color: rgba(255,255,255,0.86); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: #fff; }
.bg-navy .lede, .bg-navy p { color: rgba(255,255,255,0.78); }
.bg-navy .eyebrow { color: var(--vf-gold); }
.bg-navy .muted { color: rgba(255,255,255,0.6); }

.rule {
  display: block;
  width: 40px; height: 2px;
  background: var(--vf-gold);
  margin: 0 0 28px;
}
.rule.center { margin-left: auto; margin-right: auto; }

/* EDITORIAL ROWS */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.editorial.flip { direction: rtl; }
.editorial.flip > * { direction: ltr; }
.editorial-art {
  position: relative;
  aspect-ratio: 5/6;
  overflow: hidden;
  background-color: var(--vf-paper);
  max-width: 480px;
}
.editorial-art img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .editorial { grid-template-columns: 1fr; gap: 40px; }
  .editorial.flip { direction: ltr; }
}

/* SEQUENCE (5-step strip) */
.sequence {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--vf-line);
}
.sequence .step {
  padding: 36px 24px 12px;
  border-right: 1px solid var(--vf-line);
  position: relative;
}
.sequence .step:last-child { border-right: 0; }
.sequence .step-n {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--vf-gold);
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  display: block;
}
.sequence .step-t {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--vf-navy);
  margin: 0 0 10px;
  font-weight: 500;
}
.sequence .step-d {
  font-size: 0.92rem;
  color: var(--vf-stone);
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .sequence { grid-template-columns: 1fr 1fr; }
  .sequence .step { border-bottom: 1px solid var(--vf-line); }
  .sequence .step:nth-child(2n) { border-right: 0; }
}
@media (max-width: 560px) {
  .sequence { grid-template-columns: 1fr; }
  .sequence .step { border-right: 0; }
}

/* FOUNDERS STRIP */
.founders-intro {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.founders-intro p { color: var(--vf-stone); font-size: 1.06rem; }
.founders-intro .names {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vf-stone);
  margin-top: 22px;
}
.founders-intro .names strong { color: var(--vf-navy); font-weight: 600; }
.founders-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 560px;
  margin: 0 auto;
}
.founders-row figure { margin: 0; }
.founders-row .face {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--vf-paper);
  position: relative;
  border-radius: 4px;
}
.founders-row .face img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.founders-row figure:hover .face img { transform: scale(1.04); }
.founders-row figcaption { margin-top: 10px; text-align: center; }
.founders-row figcaption .name {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  color: var(--vf-navy);
  display: block;
  font-weight: 500;
}
.founders-row figcaption .role {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vf-stone);
  margin-top: 2px;
}
.founders-row .face.john img    { object-position: 50% 28%; }
.founders-row .face.melinda img { object-position: 50% 16%; }
.founders-row .face.shanon img  { object-position: 22% 38%; }
.founders-row .face.tate img    { object-position: 50% 32%; }
@media (max-width: 720px) {
  .founders-row { grid-template-columns: 1fr 1fr; gap: 14px; max-width: 380px; }
}

/* PULL QUOTE / TESTIMONIALS */
.pullquote { max-width: 880px; margin: 0 auto; text-align: center; position: relative; }
.pullquote .quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--vf-gold);
  line-height: 0.6;
  margin-bottom: 16px;
}
.pullquote blockquote {
  margin: 0 0 28px;
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.4;
  font-weight: 400;
  font-style: italic;
  color: var(--vf-navy);
}
.bg-navy .pullquote blockquote { color: #fff; }
.pullquote cite {
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vf-stone);
}
.bg-navy .pullquote cite { color: rgba(255,255,255,0.7); }

.tlist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--vf-line);
}
.tlist .t {
  padding: 48px 32px;
  border-right: 1px solid var(--vf-line);
}
.tlist .t:last-child { border-right: 0; }
.tlist .t blockquote {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  line-height: 1.5;
  color: var(--vf-navy);
  font-style: italic;
  margin: 0 0 22px;
  font-weight: 400;
}
.tlist .t cite {
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vf-stone);
  display: block;
}
.tlist .t cite strong { color: var(--vf-navy); font-weight: 600; }
@media (max-width: 900px) {
  .tlist { grid-template-columns: 1fr; }
  .tlist .t { border-right: 0; border-bottom: 1px solid var(--vf-line); }
  .tlist .t:last-child { border-bottom: 0; }
}

/* CTA PHOTO BAND */
.cta-photo {
  position: relative;
  padding: 140px 0;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(6,15,36,0.7), rgba(6,15,36,0.7)),
    url("assets/mountain-trail.jpg");
  background-size: cover;
  background-position: center 40%;
}
.cta-photo > * { position: relative; }
.cta-photo h2 { color: #fff; max-width: 680px; margin: 0 auto 18px; }
.cta-photo p { color: rgba(255,255,255,0.85); max-width: 540px; margin: 0 auto 36px; font-size: 1.1rem; }

/* PAGE HERO (subpages) */
.page-hero {
  position: relative;
  padding: 200px 0 80px;
  background: var(--vf-navy);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: -1px;
  width: 80px; height: 2px;
  background: var(--vf-gold);
}
.page-hero h1 { color: #fff; max-width: 900px; margin: 0 auto; font-size: clamp(2.2rem, 4.4vw, 3.6rem); }
.page-hero .eyebrow { color: var(--vf-gold); padding-left: 0; }
.page-hero .eyebrow::before { display: none; }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 640px; margin: 18px auto 0; font-size: 1.12rem; }

/* PROCESS — interactive walkthrough */
.process-stage {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: flex-start;
}
.step-rail {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--vf-line);
}
.step-rail button {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: baseline;
  gap: 14px;
  padding: 18px 0 18px 24px;
  text-align: left;
  color: var(--vf-stone);
  transition: color 0.2s;
  border-left: 2px solid transparent;
  margin-left: -1px;
}
.step-rail button:hover { color: var(--vf-navy); }
.step-rail button.active {
  color: var(--vf-navy);
  border-left-color: var(--vf-gold);
}
.step-rail .step-num {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--vf-gold);
  letter-spacing: 0.12em;
}
.step-rail .step-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}
.step-rail .step-sub {
  font-size: 0.82rem;
  color: var(--vf-stone);
  font-family: var(--font-sans);
  display: block;
}
.step-panel { padding: 12px 0; min-height: 460px; }
.step-panel .step-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--vf-gold);
  text-transform: uppercase;
}
.step-panel h2 { margin: 10px 0 24px; font-size: clamp(2rem, 3vw, 2.8rem); }
.step-panel .step-body { color: #3a3f48; font-size: 1.12rem; line-height: 1.7; max-width: 580px; }
.step-panel .step-visual {
  margin-top: 36px;
  padding: 28px 32px;
  border-left: 2px solid var(--vf-gold);
  background: rgba(232, 156, 42, 0.06);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--vf-navy);
  font-style: italic;
  line-height: 1.5;
}
.step-panel .step-foot {
  margin-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--vf-line);
}
.step-panel[data-active="false"] { display: none; }
@media (max-width: 900px) {
  .process-stage { grid-template-columns: 1fr; }
  .step-rail { position: relative; top: 0; border-left: 0; border-top: 1px solid var(--vf-line); flex-direction: row; overflow-x: auto; }
  .step-rail button { border-left: 0; border-top: 2px solid transparent; min-width: 180px; padding: 16px; }
  .step-rail button.active { border-top-color: var(--vf-gold); border-left: 0; }
}

/* ABOUT — team strip */
.team-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 56px 40px; }
.member { text-align: left; }
.member .portrait {
  width: 100%;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--vf-blue-soft), var(--vf-gold-soft));
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.member .portrait img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.member:hover .portrait img { transform: scale(1.04); }
.member .portrait img.pos-john    { object-position: 50% 28%; }
.member .portrait img.pos-melinda { object-position: 50% 16%; }
.member .portrait img.pos-shanon  { object-position: 22% 38%; }
.member .portrait img.pos-tate    { object-position: 50% 32%; }
.member h3 { font-size: 1.35rem; margin: 0 0 4px; font-weight: 500; }
.member .role {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vf-gold);
  margin-bottom: 14px;
}
.member .bio {
  font-size: 0.97rem;
  color: var(--vf-stone);
  line-height: 1.6;
  max-height: 96px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.4s;
}
.member.expanded .bio { max-height: 1200px; }
.member .bio::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 32px;
  background: linear-gradient(180deg, transparent, var(--vf-paper));
  pointer-events: none;
  transition: opacity 0.2s;
}
.member.expanded .bio::after { opacity: 0; }
.member .more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--vf-blue);
  border-bottom: 1px solid var(--vf-blue);
  padding-bottom: 2px;
}
.member .more:hover { color: var(--vf-gold); border-color: var(--vf-gold); }
@media (max-width: 900px) { .team-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .team-strip { grid-template-columns: 1fr; } }

/* PRICING — card */
.price-card {
  background: #fff;
  border: 1px solid var(--vf-line);
  padding: 56px;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  position: relative;
}
.price-card .badge {
  position: absolute;
  top: -1px; left: 50%; transform: translate(-50%, -50%);
  background: var(--vf-gold);
  color: var(--vf-navy);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 18px;
}
.price-card .price {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 6vw, 4.6rem);
  color: var(--vf-navy);
  line-height: 1;
  font-weight: 500;
}
.price-card .price small {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--vf-stone);
  margin-left: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  vertical-align: middle;
}
.price-card .one-time { color: var(--vf-stone); margin: 10px 0 30px; font-size: 0.95rem; }

/* PRICING FORM (email + checkboxes + Purchase) */
.price-form { margin-top: 28px; text-align: left; }
.price-form .field-line { display: block; width: 100%; margin-bottom: 18px; }
.price-form input[type=email] {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--vf-line-strong);
  background: transparent;
  color: var(--vf-ink);
  transition: border-color 0.15s;
}
.price-form input[type=email]:focus {
  outline: none;
  border-bottom-color: var(--vf-gold);
}
.price-form .checks { display: grid; gap: 12px; margin: 18px 0 24px; }
.price-form .check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--vf-ink);
  cursor: pointer;
  line-height: 1.5;
}
.price-form .check input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border: 1.5px solid var(--vf-line-strong);
  border-radius: 3px;
  background: #fff;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  cursor: pointer;
  transition: all 0.15s;
}
.price-form .check input[type=checkbox]:checked {
  background: var(--vf-gold);
  border-color: var(--vf-gold);
}
.price-form .check input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 5px; top: 1px;
  width: 5px; height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.price-form .check a {
  color: var(--vf-blue);
  border-bottom: 1px solid var(--vf-blue);
  padding-bottom: 1px;
}
.price-form .check a:hover { color: var(--vf-gold); border-bottom-color: var(--vf-gold); }
.price-form .check span { flex: 1; }

/* NEXT STEPS — horizontal 3-column timeline beneath buy button */
.next-steps {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--vf-line);
  text-align: left;
}
.next-steps .label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vf-gold);
  margin-bottom: 24px;
  text-align: center;
}
.next-steps ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.next-steps li {
  padding: 8px 18px;
  text-align: center;
  border-left: 1px solid var(--vf-line);
}
.next-steps li:first-child { border-left: 0; }
.next-steps .n {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--vf-gold);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
  font-weight: 500;
}
.next-steps .step-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--vf-navy);
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}
.next-steps .step-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--vf-stone);
  line-height: 1.55;
}
@media (max-width: 600px) {
  .next-steps ol { grid-template-columns: 1fr; }
  .next-steps li {
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid var(--vf-line);
  }
  .next-steps li:first-child { border-top: 0; padding-top: 0; }
}

/* WHAT'S INCLUDED */
.whats-included {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 64px;
  max-width: 920px;
  margin: 0 auto;
}
.whats-included .item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 18px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--vf-line);
}
.whats-included .item:nth-last-child(-n+2) { border-bottom: 0; }
.whats-included .item::before {
  content: "";
  width: 32px; height: 32px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--vf-blue-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e6bd6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/18px no-repeat;
}
.whats-included .item h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 10px;
  font-weight: 500;
  color: var(--vf-navy);
  line-height: 1.2;
}
.whats-included .item p {
  margin: 0;
  color: var(--vf-stone);
  font-size: 0.93rem;
  line-height: 1.65;
}
@media (max-width: 720px) {
  .whats-included { grid-template-columns: 1fr; gap: 0; }
  .whats-included .item:nth-last-child(-n+2) { border-bottom: 1px solid var(--vf-line); }
  .whats-included .item:last-child { border-bottom: 0; }
}

/* SAMPLE VISION PREVIEW (doc-style card) */
.preview {
  background: #fff;
  padding: 56px;
  border: 1px solid var(--vf-line);
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.preview .doc-tag {
  position: absolute;
  top: 18px; right: 24px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vf-stone);
}
.preview .doc-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--vf-navy);
  margin: 0 0 4px;
  font-weight: 500;
}
.preview .doc-sub {
  color: var(--vf-stone);
  font-style: italic;
  margin: 0 0 32px;
  border-bottom: 1px solid var(--vf-line);
  padding-bottom: 18px;
  font-size: 0.95rem;
}
.preview .doc-h {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vf-gold);
  margin: 28px 0 8px;
}
.preview .doc-p { color: var(--vf-ink); margin: 0 0 12px; line-height: 1.65; }
.preview .doc-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 14px;
  border-top: 1px solid var(--vf-line);
}
.preview .pillar {
  padding: 18px 18px 18px 0;
  border-right: 1px solid var(--vf-line);
}
.preview .pillar:last-child { border-right: 0; padding-right: 0; }
.preview .pillar h6 {
  margin: 0 0 6px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--vf-navy);
}
.preview .pillar p { font-size: 0.9rem; color: var(--vf-stone); margin: 0; line-height: 1.55; }
@media (max-width: 720px) {
  .preview { padding: 36px 28px; }
  .preview .doc-pillars { grid-template-columns: 1fr; }
  .preview .pillar { border-right: 0; border-bottom: 1px solid var(--vf-line); }
  .preview .pillar:last-child { border-bottom: 0; }
}

/* TIPS FOR SUCCESS */
.tips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--vf-line);
}
.tips .tip {
  padding: 36px 32px 36px 0;
  border-bottom: 1px solid var(--vf-line);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: start;
}
.tips .tip:nth-child(2n-1) { padding-right: 32px; }
.tips .tip:nth-child(2n) { padding-left: 32px; border-left: 1px solid var(--vf-line); margin-left: -1px; }
.tips .tip-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--vf-gold);
  line-height: 1;
  font-weight: 500;
}
.tips .tip h3 { font-size: 1.2rem; margin: 4px 0 8px; font-weight: 500; }
.tips .tip p { color: var(--vf-stone); margin: 0; font-size: 0.96rem; line-height: 1.6; }
@media (max-width: 720px) {
  .tips { grid-template-columns: 1fr; }
  .tips .tip { padding: 30px 0 !important; border-left: 0 !important; margin-left: 0 !important; }
}

/* FAQ ACCORDION */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--vf-line); }
.faq-item:last-child { border-bottom: 1px solid var(--vf-line); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--vf-navy);
  text-align: left;
  transition: color 0.15s;
  letter-spacing: -0.005em;
}
.faq-q:hover { color: var(--vf-gold); }
.faq-item.open .faq-q { color: var(--vf-blue); }
.faq-q .ico {
  width: 22px;
  flex-shrink: 0;
  margin-left: 24px;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--vf-gold);
  line-height: 1;
  text-align: center;
  transition: transform 0.3s;
}
.faq-item.open .faq-q .ico { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  color: var(--vf-stone);
  font-size: 1rem;
  line-height: 1.75;
  font-family: var(--font-sans);
  padding-left: 0;
  border-left: 3px solid transparent;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding: 4px 0 32px 22px;
  margin-bottom: 12px;
  border-left-color: var(--vf-gold);
}
.faq-a p:last-child { margin-bottom: 0; }

/* CONTACT FORM */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.info-block { margin-bottom: 36px; }
.info-block h4 { color: var(--vf-navy); margin-bottom: 6px; font-size: 0.8rem; letter-spacing: 0.18em; }
.info-block p { color: var(--vf-stone); margin: 0; font-size: 0.98rem; }
.form-card {
  background: #fff;
  border: 1px solid var(--vf-line);
  padding: 48px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vf-stone);
}
.field input, .field textarea, .field select {
  font: inherit;
  font-size: 1rem;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--vf-line-strong);
  background: transparent;
  color: var(--vf-ink);
  transition: border-color 0.15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-bottom-color: var(--vf-gold);
}
.field textarea { resize: vertical; min-height: 120px; }

/* NEWSLETTER inline */
.newsletter-inline {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
  max-width: 460px;
}
.newsletter-inline input[type=email] {
  flex: 1;
  min-width: 200px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--vf-line-strong);
  background: transparent;
  font: inherit;
  color: var(--vf-ink);
}
.bg-navy .newsletter-inline input[type=email] {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.3);
}
.newsletter-inline input[type=email]:focus { outline: none; border-bottom-color: var(--vf-gold); }
.newsletter-inline button {
  background: transparent;
  color: var(--vf-gold);
  border: 0;
  font-weight: 500;
  padding: 14px 0;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--vf-gold);
}
.newsletter-inline button:hover { color: #fff; border-color: #fff; }
.form-msg { font-size: 0.85rem; color: var(--vf-stone); margin-top: 8px; }
.bg-navy .form-msg { color: rgba(255,255,255,0.6); }

/* QUIZ CTA (homepage) */
.quiz-cta {
  background: linear-gradient(165deg, var(--vf-navy) 0%, var(--vf-navy-deep) 65%, #102745 100%);
  color: #fff;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.quiz-cta::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at top right, rgba(232, 156, 42, 0.18), transparent 60%);
  pointer-events: none;
}
.quiz-cta .inner { position: relative; }
.quiz-cta h2 { color: #fff; font-size: clamp(2rem, 3.4vw, 3rem); }
.quiz-cta p {
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  max-width: 520px;
}
.quiz-cta .meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vf-gold);
  margin-top: 18px;
}
.quiz-cta .meta::before {
  content: "";
  width: 22px; height: 1.5px;
  background: var(--vf-gold);
}

/* LEGAL PAGES */
.legal { max-width: 760px; margin: 0 auto; }
.legal h2 { font-size: 1.5rem; margin: 48px 0 12px; color: var(--vf-navy); }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 1.1rem; margin: 24px 0 8px; color: var(--vf-navy); }
.legal p, .legal li { color: #2c3038; line-height: 1.7; font-size: 1rem; }
.legal ul, .legal ol { padding-left: 24px; margin: 8px 0 16px; }
.legal li { margin-bottom: 8px; }
.legal .meta {
  font-size: 0.85rem;
  color: var(--vf-stone);
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.legal .draft-note {
  background: rgba(232, 156, 42, 0.08);
  border-left: 3px solid var(--vf-gold);
  padding: 16px 22px;
  margin-bottom: 36px;
  font-size: 0.92rem;
  color: var(--vf-stone);
  font-style: italic;
}

/* FOOTER */
footer {
  background: var(--vf-navy-deep);
  color: rgba(255,255,255,0.78);
  padding: 80px 0 36px;
  text-align: center;
}
footer a { color: rgba(255,255,255,0.8); transition: color 0.15s; }
footer a:hover { color: var(--vf-gold); }
.footer-mark { margin-bottom: 28px; }
.footer-mark img { height: 56px; margin: 0 auto; opacity: 0.95; }
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
  margin: 0 0 36px;
}
.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 28px;
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-nav a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 6px 0;
}
.footer-bottom {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}
.footer-bottom .dot {
  display: inline-block;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  vertical-align: middle;
  margin: 0 10px 2px;
}
@media (max-width: 600px) {
  .footer-nav { gap: 6px 16px; }
  .footer-nav a { font-size: 0.74rem; }
}

/* REVEAL */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s, transform 0.7s; }
.reveal.in { opacity: 1; transform: translateY(0); }
