/* ============================================================
   Booked & Polished — Shared Stylesheet
   Light, crafted aesthetic in the Stripe design language:
   pure-white surfaces, deep-navy text at light (300) weight,
   a single confident blue accent, blue-tinted layered shadows,
   conservative radii, and indigo dark-section cadence.
   Reskinned from the source token templates in /bmw and the
   Stripe system (awesome-design-md).
   ============================================================ */

:root {
  /* Surfaces */
  --bg:            #ffffff;   /* page background */
  --surface:       #ffffff;   /* cards */
  --surface-alt:   #f6f9fc;   /* alternating light blue-gray sections */
  --ink:           #1c1e54;   /* indigo dark band — CTA & footer */

  /* Text */
  --text:          #0a2540;   /* headings — deep navy, never black */
  --text-muted:    #425466;   /* body — slate */
  --text-dim:      #8792a2;   /* captions / labels */
  --on-ink:        #ffffff;   /* text on indigo bands */
  --on-ink-dim:    rgba(255, 255, 255, 0.66);

  /* Accent — a single confident blue (matched to the logo) */
  --accent:        #2f54eb;
  --accent-hover:  #1d3fd0;
  --accent-soft:   #eef1fe;   /* tinted accent surface */
  --accent-border: #c9d4fb;

  /* Lines */
  --border:        #e6e9ee;
  --border-strong: #d5dbe5;

  /* Stripe-style blue-tinted layered shadows */
  --shadow-sm:  0 2px 5px rgba(60, 66, 87, 0.08), 0 1px 1px rgba(0, 0, 0, 0.04);
  --shadow:     0 13px 27px -5px rgba(50, 50, 93, 0.12), 0 8px 16px -8px rgba(0, 0, 0, 0.10);
  --shadow-lg:  0 30px 45px -30px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.10);

  --font: 'Inter', -apple-system, 'SF Pro Display', Helvetica, Arial, sans-serif;
  --radius: 8px;
  --radius-btn: 6px;
  --maxw: 1080px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section--tight { padding: 60px 0; }
.section-alt { background: var(--surface-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.3px;
  text-transform: none; color: var(--accent); margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 4vw, 38px); font-weight: 300; line-height: 1.12;
  letter-spacing: -0.9px; margin-bottom: 16px; color: var(--text);
}
.section-sub { color: var(--text-muted); font-size: 18px; font-weight: 400; line-height: 1.5; max-width: 620px; }
.center { text-align: center; }
.center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-brand img { height: 38px; width: auto; }
.nav-brand-text { font-size: 16px; font-weight: 600; letter-spacing: -0.2px; color: var(--text); }
.nav-brand-text span { color: var(--accent); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: 15px; font-weight: 400; color: var(--text-muted); text-decoration: none; transition: color 0.15s; }
.nav-links a:hover { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 11px 20px; font-family: var(--font);
  font-size: 15px; font-weight: 500; text-decoration: none; cursor: pointer;
  border-radius: var(--radius-btn); border: 1px solid transparent;
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 1px 2px rgba(10, 37, 64, 0.18); }
.btn-primary:hover { background: var(--accent-hover); box-shadow: 0 4px 12px rgba(47, 84, 235, 0.30); transform: translateY(-1px); }
.btn-outline { background: #fff; color: var(--text); border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-light { background: #fff; color: var(--accent); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12); }
.btn-light:hover { background: #f3f5ff; transform: translateY(-1px); }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-lg { padding: 14px 26px; font-size: 16px; }

/* ---------- Scarcity pill ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
  color: var(--accent); background: var(--accent-soft); border: 1px solid var(--accent-border);
  border-radius: 999px; padding: 6px 14px; margin-bottom: 20px;
}
.pill .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--accent); box-shadow: 0 0 0 3px rgba(47,84,235,0.15); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; padding: 116px 0 96px;
  background:
    radial-gradient(900px 380px at 88% -8%, rgba(47, 84, 235, 0.07), transparent 62%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.hero-inner { max-width: 720px; }
.hero h1 {
  font-size: clamp(40px, 6vw, 60px); font-weight: 300; line-height: 1.06;
  letter-spacing: -1.6px; margin-bottom: 22px; color: var(--text);
}
.hero h1 strong { font-weight: 400; color: var(--accent); }
.hero p { font-size: 19px; font-weight: 400; color: var(--text-muted); line-height: 1.5; margin-bottom: 34px; max-width: 580px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-note { margin-top: 24px; font-size: 14px; color: var(--text-dim); }

/* ---------- Social proof (hidden for now; kept for restore) ---------- */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 12px; }
.proof-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.proof-stat { font-size: 40px; font-weight: 300; letter-spacing: -1.6px; line-height: 1; color: var(--text); margin-bottom: 10px; }
.proof-card p { color: var(--text-muted); font-size: 15px; }
.proof-quote { grid-column: span 3; }
.placeholder-tag {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.4px;
  text-transform: uppercase; color: var(--accent); background: var(--accent-soft);
  border: 1px solid var(--accent-border); border-radius: 4px; padding: 3px 8px; margin-bottom: 14px;
}

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.service-icon {
  width: 40px; height: 40px; border-radius: 9px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent);
}
.service-icon svg { width: 21px; height: 21px; display: block; }
.service-num { font-size: 13px; font-weight: 500; letter-spacing: 0.3px; color: var(--accent); margin-bottom: 6px; }
.service-card h3 { font-size: 20px; font-weight: 400; margin-bottom: 9px; letter-spacing: -0.3px; color: var(--text); }
.service-card p { color: var(--text-muted); font-size: 15px; line-height: 1.55; }

/* ---------- Guarantee ---------- */
.guarantee {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 56px 44px; text-align: center; box-shadow: var(--shadow-lg);
}
.guarantee .badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.4px; text-transform: uppercase;
  color: var(--accent); background: var(--accent-soft); border: 1px solid var(--accent-border);
  border-radius: 999px; padding: 6px 14px; margin-bottom: 22px;
}
.guarantee .badge svg { width: 14px; height: 14px; }
.guarantee h2 { font-size: clamp(26px, 4vw, 36px); font-weight: 300; letter-spacing: -0.8px; margin-bottom: 16px; color: var(--text); }
.guarantee h2 strong { font-weight: 400; color: var(--accent); }
.guarantee p { color: var(--text-muted); font-size: 18px; max-width: 600px; margin: 0 auto; line-height: 1.55; }

/* ---------- CTA band (indigo anchor) ---------- */
.cta-band { background: var(--ink); padding: 92px 0; text-align: center; }
.cta-band h2 { font-size: clamp(30px, 5vw, 44px); font-weight: 300; letter-spacing: -1.1px; margin-bottom: 16px; line-height: 1.1; color: #fff; }
.cta-band h2 strong { font-weight: 400; color: #9db4ff; }
.cta-band p { color: var(--on-ink-dim); font-size: 18px; max-width: 540px; margin: 0 auto 32px; line-height: 1.5; }

/* ---------- Booking / calendar embed ---------- */
.booking-wrap { max-width: 820px; margin: 0 auto; }
.calendar-embed {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px; margin-top: 38px; min-height: 600px;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg);
}
#ghl-calendar-embed { width: 100%; min-height: 580px; }
.embed-placeholder {
  width: 100%; min-height: 560px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  border: 1px dashed var(--border-strong); border-radius: var(--radius);
  color: var(--text-dim); gap: 14px; padding: 40px; background: var(--surface-alt);
}
.embed-placeholder .icon { color: var(--accent); opacity: 0.85; }
.embed-placeholder .icon svg { width: 34px; height: 34px; display: block; }
.embed-placeholder strong { color: var(--text-muted); font-size: 16px; font-weight: 500; }
.embed-placeholder span { font-size: 14px; max-width: 340px; }
.embed-note { text-align: center; color: var(--text-dim); font-size: 14px; margin-top: 22px; }

/* ---------- Video embed ---------- */
.video-embed {
  position: relative; width: 100%; aspect-ratio: 16 / 9; margin-top: 38px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
}
.video-embed .embed-placeholder { border: none; min-height: 0; height: 100%; background: var(--surface-alt); }
.video-embed .play {
  width: 72px; height: 72px; border-radius: 999px; border: 1px solid var(--accent-border);
  background: #fff; box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 2px;
}
.video-embed .play svg { width: 24px; height: 24px; margin-left: 3px; }

/* ---------- Stepper (pre-call) ---------- */
.steps { display: flex; gap: 8px; justify-content: center; margin-bottom: 16px; flex-wrap: wrap; }
.step-dot { font-size: 12px; font-weight: 500; letter-spacing: 0.2px; color: var(--text-dim); border: 1px solid var(--border-strong); border-radius: 999px; padding: 6px 14px; }
.step-dot.done { color: var(--accent); border-color: var(--accent-border); background: var(--accent-soft); }
.step-dot.active { color: #fff; background: var(--accent); border-color: var(--accent); }

/* ---------- VSL landing page ---------- */
.vsl-cta-micro { margin-top: 14px; font-size: 14px; color: var(--text-dim); }
.trust-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 8px 16px; margin-top: 26px; color: var(--text-dim); font-size: 14px; font-weight: 500;
}
.trust-row .sep { color: var(--border-strong); }

/* ---------- Prep checklist (pre-call) ---------- */
.prep {
  max-width: 600px; margin: 44px auto 0; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 32px 34px;
}
.prep h2 { font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 20px; letter-spacing: -0.2px; }
.prep ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.prep li { display: flex; gap: 13px; align-items: flex-start; color: var(--text-muted); font-size: 15px; line-height: 1.5; }
.prep li svg { flex: none; width: 20px; height: 20px; color: var(--accent); margin-top: 1px; }

/* ---------- Callout (pre-call show-up note) ---------- */
.callout {
  max-width: 680px; margin: 0 auto; text-align: center;
  background: var(--accent-soft); border: 1px solid var(--accent-border);
  border-radius: var(--radius); padding: 28px 32px;
}
.callout h3 { font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.callout p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

/* ---------- Legal pages ---------- */
.legal { max-width: 760px; margin: 0 auto; }
.legal .updated { color: var(--text-dim); font-size: 14px; margin-bottom: 28px; }
.legal-disclaimer {
  background: var(--accent-soft); border: 1px solid var(--accent-border);
  border-radius: var(--radius); padding: 16px 20px; margin-bottom: 36px;
  color: var(--text-muted); font-size: 14px; line-height: 1.55;
}
.legal h2 { font-size: 22px; font-weight: 400; letter-spacing: -0.3px; color: var(--text); margin: 38px 0 12px; padding-top: 8px; }
.legal h2:first-of-type { margin-top: 8px; }
.legal h3 { font-size: 17px; font-weight: 500; margin: 22px 0 8px; color: var(--text); }
.legal p { color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.legal ul { color: var(--text-muted); line-height: 1.65; margin: 0 0 16px 22px; }
.legal li { margin-bottom: 7px; }
.legal a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Footer (indigo anchor) ---------- */
.footer { background: var(--ink); padding: 48px 0 40px; color: var(--on-ink-dim); font-size: 14px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { height: 30px; border-radius: 5px; }
.footer-brand strong { color: var(--on-ink); font-weight: 500; }
.footer a { color: var(--on-ink-dim); text-decoration: none; }
.footer a:hover { color: #fff; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-quote { grid-column: span 1; }
}
@media (max-width: 760px) {
  .container { padding: 0 20px; }
  .section { padding: 68px 0; }
  .hero { padding: 76px 0 60px; }
  .nav { padding: 12px 20px; }
  .nav-links { display: none; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1 1 auto; text-align: center; }
  .cta-band { padding: 72px 0; }
  .guarantee { padding: 40px 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 420px) {
  .nav-brand-text { display: none; }
}
@media (max-width: 380px) {
  .hero h1 { letter-spacing: -1px; }
  .btn { padding: 12px 18px; }
}
