/*
  Forte homepage, July 2026 rebuild.

  This stylesheet is intentionally independent of the site's shared Webflow
  stylesheet (forte-fitness.webflow.shared.*.css). The rest of the site keeps
  using that file untouched; this page does not load it at all, so it can
  look and feel meaningfully different without fighting existing utility
  classes, and without shipping CSS this page doesn't use.

  Visual direction: dark base throughout (not alternating light/dark
  blocks), a warm gold/ember gradient "glow" as the recurring dramatic
  accent, tracked-out monospace eyebrow labels with divider rules, and big,
  confident display type. The "ink" family below is the actual brand dark
  green (#243523), not a near-black - it was originally a bolder, less
  "corporate SaaS" near-black departure from brand, but that read as
  off-brand rather than intentional, so it's built from the real primary
  color now, shifted by the same amount at each step to preserve the
  original palette's relative contrast between surfaces.
*/

:root {
  --ink: #243523;
  --ink-soft: #2c3e2b;
  --ink-softer: #344934;
  --ink-card: #2e402c;
  --gold: #d6af0b;
  --gold-bright: #f0c93d;
  --ember: #c9622a;
  --cream: #f9f5e4;
  --cream-dim: #efe8d2;
  --white: #ffffff;

  --text-hi: var(--cream);
  --text-muted: #9aa599;
  --text-dim: #6d766c;

  --font-display: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'SFMono-Regular', Consolas, monospace;

  --container: min(1180px, 100% - 3rem);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --space-section: clamp(4.5rem, 10vw, 9rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-hi);
  background: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; margin: 0; line-height: 1.05; letter-spacing: -0.01em; text-wrap: balance; }
p { margin: 0; color: var(--text-muted); text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

.u-container { width: var(--container); margin-inline: auto; position: relative; z-index: 1; }
.u-visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Skip link */
.skip-link {
  position: absolute; left: 1rem; top: -3rem;
  background: var(--gold); color: var(--ink);
  padding: 0.75rem 1.25rem; border-radius: var(--radius-sm);
  z-index: 200; transition: top 0.2s ease; font-weight: 700;
}
.skip-link:focus { top: 1rem; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.95rem 1.85rem; border-radius: 999px; font-weight: 600; font-size: 1rem;
  text-decoration: none; border: 1px solid transparent; transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-bright); }
.btn-secondary { background: var(--cream); color: var(--ink); }
.btn-secondary:hover { background: var(--white); }
.btn-ghost-dark { border-color: rgba(249,245,228,0.22); color: var(--text-hi); }
.btn-ghost-dark:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn-text {
  background: none; border: none; padding: 0; color: var(--text-hi); font-weight: 600;
  text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--gold);
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(36,53,35,0.82); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(249,245,228,0.08);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; padding-block: 0.9rem; }
.site-header__logo { display: flex; align-items: center; gap: 0.6rem; color: var(--cream); text-decoration: none; font-weight: 700; letter-spacing: 0.02em; }
.site-header__logo-svg { height: 15px; width: auto; color: var(--cream); }
.site-header__logo-icon { height: 15px; width: auto; color: var(--cream); }
.site-footer__logo-svg { height: 15px; width: auto; }
.site-footer__logo-icon { height: 15px; width: auto; color: var(--cream); margin-left: 0.5rem; }
.site-nav { display: none; }
.site-nav ul { display: flex; align-items: center; gap: 1.75rem; }
.site-nav a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; font-weight: 500; }
.site-nav a:hover { color: var(--cream); }
.site-header__cta { display: none; }
.nav-toggle {
  background: none; border: 1px solid rgba(249,245,228,0.25); color: var(--cream);
  border-radius: var(--radius-sm); padding: 0.5rem 0.75rem; font-size: 0.9rem;
}
@media (min-width: 900px) {
  .site-nav { display: block; }
  .site-header__cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 150;
  background: var(--ink); color: var(--cream);
  padding: 1.5rem; overflow-y: auto;
}
.mobile-nav[data-open="true"] { display: block; }
.mobile-nav__close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: var(--cream); font-size: 1.75rem; line-height: 1; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 4rem; }
.mobile-nav a { color: var(--cream); text-decoration: none; font-size: 1.5rem; font-family: var(--font-display); }

/* ---------- Decorative glow ---------- */
.glow {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
}
.glow::before {
  content: ""; position: absolute; width: 140%; max-width: 1400px; aspect-ratio: 1;
  left: 50%; top: -40%; transform: translateX(-50%);
  background: conic-gradient(from 200deg at 50% 50%, transparent 0deg, var(--ember) 40deg, var(--gold) 110deg, transparent 200deg, transparent 360deg);
  filter: blur(90px); opacity: 0.35;
}
.glow--small::before { width: 90%; opacity: 0.22; }

/* ---------- Section scaffolding ---------- */
.section { padding-block: var(--space-section); position: relative; }
.section--edge-top { border-top: 1px solid rgba(249,245,228,0.08); }
.section--band {
  background: var(--gold); color: var(--ink);
}
.section--band p { color: rgba(36,53,35,0.75); }
.section--band .eyebrow { color: var(--ink); }
.section--band .eyebrow::before, .section--band .eyebrow::after { background: rgba(36,53,35,0.3); }

.eyebrow {
  display: flex; align-items: center; gap: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.16em;
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500;
  color: var(--gold-bright); margin-bottom: 1.25rem;
}
.eyebrow::before { content: ""; width: 1.5rem; height: 1px; background: rgba(249,245,228,0.35); flex-shrink: 0; }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 1.5rem; height: 1px; background: rgba(249,245,228,0.35); flex-shrink: 0; }

.section-head { max-width: 46rem; margin-bottom: 3.5rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(2.1rem, 4.2vw, 3.2rem); margin-bottom: 1.1rem; color: var(--text-hi); }
.section-head p { font-size: 1.15rem; }

[data-reveal] { opacity: 1; transform: none; }
.js-reveal-ready [data-reveal] {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-reveal-ready [data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(3.5rem, 9vw, 7rem); padding-bottom: clamp(3.5rem, 9vw, 7rem); overflow: hidden; }
.hero__grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1000px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; }
}
.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  margin-bottom: 1.5rem; color: var(--text-hi);
}
.hero h1 em { font-style: italic; color: var(--gold-bright); }
.hero__lede { font-size: 1.2rem; max-width: 38rem; margin-bottom: 2rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.trust-strip {
  margin-top: clamp(3rem, 6vw, 5rem); padding-top: 2rem;
  border-top: 1px solid rgba(249,245,228,0.1);
  display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; justify-content: space-between;
}
.trust-strip__label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); }
.trust-strip__stats { display: flex; flex-wrap: wrap; gap: 2.5rem; }
.trust-strip__stat { display: flex; align-items: baseline; gap: 0.5rem; }
.trust-strip__num { font-family: var(--font-display); font-size: 1.9rem; color: var(--gold-bright); }
.trust-strip__unit { font-size: 0.85rem; color: var(--text-muted); }

.video-placeholder {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-lg);
  overflow: hidden; background: linear-gradient(155deg, #0a0f0b, var(--ink-soft));
  border: 1px solid rgba(249,245,228,0.12);
  display: flex; align-items: center; justify-content: center; text-align: center;
  box-shadow: 0 40px 100px -40px rgba(214,175,11,0.25);
}
.video-placeholder__inner { padding: 2rem; position: relative; z-index: 1; }
.video-placeholder__play {
  width: 76px; height: 76px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
  color: var(--ink); font-size: 1.5rem;
}
.video-placeholder__label {
  font-family: var(--font-mono); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  font-size: 0.75rem; color: var(--gold-bright); margin-bottom: 0.75rem;
}
.video-placeholder__note { color: var(--text-muted); font-size: 0.95rem; max-width: 22rem; margin-inline: auto; }

/* ---------- Clarify ---------- */
.clarify-grid { display: grid; gap: 1.5rem; }
@media (min-width: 800px) { .clarify-grid { grid-template-columns: repeat(2, 1fr); } }
.clarify-item { padding: 1.85rem; background: var(--ink-card); border-radius: var(--radius-md); border: 1px solid rgba(249,245,228,0.08); }
.clarify-item h3 { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--text-hi); }
.clarify-item p { font-size: 1rem; }
.definition-note {
  margin-top: 2.5rem; padding: 1.25rem 1.5rem; border-left: 2px solid var(--gold);
  background: var(--ink-soft); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: 0.98rem;
  color: var(--text-muted);
}
.definition-note strong { color: var(--text-hi); }

/* ---------- Problem ---------- */
.problem-heading { font-size: clamp(2rem, 4.2vw, 3rem); color: var(--text-hi); max-width: 34rem; }
.problem-sub { font-size: 1.2rem; margin-top: 0.75rem; margin-bottom: 2.5rem; }
.problem-scenarios { display: grid; gap: 1.5rem; }
@media (min-width: 800px) { .problem-scenarios { grid-template-columns: repeat(3, 1fr); } }
.problem-scenario { margin: 0; }
.problem-scenario img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-md);
  border: 1px solid rgba(249,245,228,0.1); margin-bottom: 1rem;
}
.problem-scenario figcaption { font-size: 1rem; color: var(--text-muted); }
.problem-closing { font-size: 1.3rem; margin-top: 2.75rem; color: var(--text-hi); font-family: var(--font-display); }
.problem-closing strong { color: var(--gold-bright); font-weight: 400; }

/* ---------- How it works ---------- */
.steps { display: grid; gap: 2rem; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; padding-top: 1rem; border-top: 1px solid rgba(249,245,228,0.12); }
.step__num {
  font-family: var(--font-mono); font-size: 0.85rem; color: var(--gold); margin-bottom: 0.9rem; display: block; letter-spacing: 0.1em;
}
.step h3 { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--text-hi); }
.step p { font-size: 1rem; }

/* ---------- Testimonials ---------- */
/* Every tile (quote or photo) is the same fixed height so the wall lines up
   into clean, even rows regardless of quote length; long quotes clamp with
   an ellipsis rather than growing the card. */
.testimonial-wall { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .testimonial-wall { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .testimonial-wall { grid-template-columns: repeat(3, 1fr); } }
.t-card {
  height: 260px; background: var(--ink-card); border-radius: var(--radius-md); padding: 1.6rem;
  display: flex; flex-direction: column; gap: 1rem; border: 1px solid rgba(249,245,228,0.08);
}
.t-card__quote {
  font-size: 1.02rem; color: var(--text-hi); overflow: hidden;
  display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical;
}
.t-card__meta { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.t-avatar {
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--ink); font-weight: 700; font-family: var(--font-display); font-size: 1.1rem; flex-shrink: 0;
}
.t-card__name { font-weight: 600; font-size: 0.95rem; color: var(--cream); }
.t-card__role { font-size: 0.85rem; color: var(--text-dim); }

/* ---------- Results / business relevance ---------- */
.results-grid { display: grid; gap: 1.5rem; }
@media (min-width: 700px) { .results-grid { grid-template-columns: repeat(3, 1fr); } }
.result-stat { padding: 2.2rem 1.6rem; background: var(--ink-card); border-radius: var(--radius-md); text-align: left; border: 1px solid rgba(249,245,228,0.08); }
.result-stat__num { font-family: var(--font-display); font-size: 3.2rem; color: var(--gold-bright); display: block; }
.result-stat__label { font-size: 1rem; margin-top: 0.5rem; }

/* ---------- Access / affordability band ---------- */
.access-inner { max-width: 42rem; }
.access-inner h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 1.25rem; color: var(--ink); }

/* ---------- Industries ---------- */
.industry-grid { display: grid; gap: 1.5rem; }
@media (min-width: 700px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .industry-grid { grid-template-columns: repeat(3, 1fr); } }
.industry-card {
  padding: 1.85rem; border-radius: var(--radius-md); background: var(--ink-card);
  color: var(--text-hi); border: 1px solid rgba(249,245,228,0.08);
}
.industry-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--text-hi); }
.industry-card p { font-size: 0.95rem; }

/* ---------- Founder ---------- */
.founder-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 900px) { .founder-grid { grid-template-columns: 0.85fr 1.15fr; } }
.founder-photo { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(249,245,228,0.1); }
.founder-quote { font-family: var(--font-display); font-size: clamp(1.5rem, 3.2vw, 2.1rem); line-height: 1.3; margin-bottom: 1.5rem; color: var(--text-hi); }
.founder-bio p { margin-bottom: 1rem; font-size: 1.05rem; }
.founder-belief-list { margin-top: 1.5rem; display: grid; gap: 0.75rem; }
.founder-belief-list li { padding-left: 1.5rem; position: relative; font-size: 0.98rem; color: var(--text-muted); }
.founder-belief-list li::before { content: "•"; position: absolute; left: 0; color: var(--gold); }

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; }
.final-cta__inner { max-width: 40rem; margin-inline: auto; }
.final-cta h2 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); margin-bottom: 1.25rem; color: var(--text-hi); }
.final-cta p { font-size: 1.15rem; margin-bottom: 2rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--text-dim); padding-block: 3.5rem 2rem; font-size: 0.92rem; border-top: 1px solid rgba(249,245,228,0.08); }
.site-footer a { color: var(--text-muted); text-decoration: none; }
.site-footer a:hover { color: var(--cream); }

.site-footer__grid {
  display: grid; gap: 2.5rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(249,245,228,0.1);
}
@media (min-width: 700px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .site-footer__grid { grid-template-columns: 1.6fr 0.8fr 0.8fr 1fr; } }

.site-footer__brand { max-width: 22rem; }
.site-footer__logo { display: block; color: var(--cream); font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 0.9rem; }
.site-footer__social { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; margin-top: 1.5rem; }

.site-footer__col { display: flex; flex-direction: column; gap: 0.85rem; align-items: flex-start; }
.site-footer__col-title {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-hi); margin-bottom: 0.25rem;
}

.site-footer__bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; padding-top: 1.75rem;
  font-size: 0.85rem;
}
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 1.5rem; }

/* ---------- Sitewide HubSpot newsletter form embed ---------- */
/* Minimal styling only. HubSpot renders its own field markup client-side,
   so this targets the stable class names its embed script outputs rather
   than anything we control directly. */
.site-footer__newsletter { max-width: 20rem; }
.hs-form-field { margin-bottom: 0.75rem; }
.hs-form-field label { display: block; font-size: 0.8rem; color: var(--text-dim); margin-bottom: 0.35rem; }
.hs-input {
  width: 100%; padding: 0.7rem 0.9rem; border-radius: var(--radius-sm);
  border: 1px solid rgba(249,245,228,0.18); background: var(--ink-card); color: var(--text-hi);
  font-family: var(--font-body); font-size: 0.95rem;
}
.hs-input:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.hs-button {
  margin-top: 0.5rem; padding: 0.7rem 1.5rem; border-radius: 999px; border: none;
  background: var(--gold); color: var(--ink); font-weight: 600; font-family: var(--font-body); font-size: 0.95rem;
  cursor: pointer;
}
.hs-button:hover { background: var(--gold-bright); }
.hs-error-msgs { color: var(--ember); font-size: 0.8rem; padding: 0; margin-top: 0.25rem; list-style: none; }
.submitted-message { color: var(--gold-bright); font-size: 0.95rem; }

/* ---------- Photo strip (hero follow-up) ---------- */
.photo-strip-section { padding-block: clamp(2.5rem, 5vw, 4rem); }
.photo-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 700px) { .photo-strip { grid-template-columns: repeat(4, 1fr); } }
.photo-tile {
  margin: 0; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 3 / 4;
  border: 1px solid rgba(249,245,228,0.1);
}
.photo-tile img { width: 100%; height: 100%; object-fit: cover; }
.photo-tile--tall { aspect-ratio: 3 / 4.6; }
@media (min-width: 700px) {
  .photo-tile--tall { transform: translateY(-1.25rem); }
}
.photo-strip__caption { margin-top: 1.5rem; text-align: center; font-size: 0.95rem; color: var(--text-dim); }

/* ---------- How it works photo ---------- */
.how-grid { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 1000px) { .how-grid { grid-template-columns: 1.2fr 0.8fr; gap: 3.5rem; } }
.how-photo { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(249,245,228,0.1); }
.how-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Testimonial photo tiles ---------- */
.t-photo-card { padding: 0; overflow: hidden; }
.t-photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Access section photo ---------- */
.access-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .access-grid { grid-template-columns: 1.3fr 0.7fr; } }
.access-photo { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3; }
.access-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 899px) { .access-photo { order: -1; } }

/* ---------- Booking modal ---------- */
.booking-modal { position: fixed; inset: 0; z-index: 300; display: none; }
.booking-modal[data-open="true"] { display: block; }
.booking-modal__backdrop {
  position: absolute; inset: 0; background: rgba(6,10,7,0.78); backdrop-filter: blur(4px);
}
.booking-modal__panel {
  position: relative; margin: 4vh auto; width: min(640px, 92vw); max-height: 92vh;
  overflow-y: auto; background: var(--ink-card); border: 1px solid rgba(249,245,228,0.12);
  border-radius: var(--radius-lg); box-shadow: 0 40px 100px -30px rgba(0,0,0,0.6);
  padding: 2.5rem;
}
.booking-modal__close {
  position: absolute; top: 1.25rem; right: 1.25rem; width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink-soft); border: 1px solid rgba(249,245,228,0.15); color: var(--text-hi);
  font-size: 1.4rem; line-height: 1; display: flex; align-items: center; justify-content: center;
}
.booking-modal__close:hover { border-color: var(--gold); color: var(--gold-bright); }
.booking-modal__header { max-width: 26rem; margin-bottom: 1.5rem; }
.booking-modal__header h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--text-hi); margin-bottom: 0.5rem; }
.booking-modal__sub { font-size: 1rem; }
.booking-modal__body .meetings-iframe-container { min-height: 480px; }
@media (max-width: 600px) {
  .booking-modal__panel { padding: 1.75rem 1.25rem; margin-top: 2vh; }
}

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; gap: 1.5rem; }
@media (min-width: 700px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); } }
.pricing-card {
  position: relative; display: flex; flex-direction: column;
  padding: 2rem 1.75rem; border-radius: var(--radius-md); background: var(--ink-card);
  border: 1px solid rgba(249,245,228,0.1);
}
.pricing-card--popular { background: var(--ink-softer); border-color: var(--gold); box-shadow: 0 30px 80px -50px rgba(214,175,11,0.5); }
.pricing-card--enterprise { background: var(--ink-soft); border-style: dashed; }
.pricing-card__badge {
  position: absolute; top: -0.9rem; left: 1.75rem; background: var(--gold); color: var(--ink);
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 700; padding: 0.35rem 0.75rem; border-radius: 999px;
}
.pricing-card__name { font-family: var(--font-display); font-size: 1.4rem; color: var(--text-hi); margin-bottom: 0.4rem; }
.pricing-card__tagline { font-size: 0.92rem; min-height: 2.5rem; }
.pricing-card__price { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid rgba(249,245,228,0.1); color: var(--text-hi); }
.pricing-card__amount { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold-bright); }
.pricing-card__billed { font-size: 0.82rem; color: var(--text-dim); margin-top: 0.25rem; }
.pricing-card__features { margin-top: 1.5rem; margin-bottom: 1.75rem; display: grid; gap: 0.65rem; flex-grow: 1; }
.pricing-card__features li { padding-left: 1.4rem; position: relative; font-size: 0.92rem; }
.pricing-card__features li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); }
.pricing-card__cta { margin-top: auto; width: 100%; padding-inline: 1rem; white-space: nowrap; }
