@font-face {
  font-family: 'Montserrat';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('./assets/fonts/montserrat-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('./assets/fonts/montserrat-semibold.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url('./assets/fonts/montserrat-black.woff2') format('woff2');
}

:root {
  --ocean: #0063A3;
  --ocean-deep: #00507f;
  --navy: #03172F;
  --deep: #445c90;
  --mid: #6598C8;
  --pale: #c2d1e9;
  --tint: #eef3f9;
  --yellow: #F3C125;
  --yellow-deep: #d9a80f;
  --white: #FFFFFF;
  --line: #d7e2ef;
  --radius: 10px;
  --gutter: 20px;
  --maxw: 1080px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--white);
  color: var(--navy);
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin: 0;
}
.eyebrow, .cap {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
}

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

/* ---------- hero ---------- */
.hero { background: linear-gradient(180deg, var(--ocean) 0%, var(--ocean-deep) 100%); color: var(--white); padding: 24px 0 30px; }
.hero .wrap { display: flex; flex-direction: column; gap: 14px; }
.hero .eyebrow { color: var(--yellow); font-size: 0.95rem; letter-spacing: 0.04em; white-space: nowrap; }
@media (max-width: 480px) {
  .hero .eyebrow { font-size: 0.78rem; letter-spacing: 0.01em; }
}
.hero h1 { font-size: clamp(1.4rem, 6vw, 2.1rem); line-height: 1.1; color: var(--white); margin-top: 6px; }
.hero h1 .em { color: var(--yellow); }
.hero-hosts { margin-top: 8px; display: flex; align-items: center; gap: 10px; }
.hero-hosts__faces { display: flex; flex: none; }
.hero-face {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  object-fit: cover; border: 2px solid rgba(255,255,255,0.6);
}
.hero-hosts__faces .hero-face + .hero-face { margin-left: -12px; }
.hero-hosts__text { margin: 0; font-size: 0.8rem; line-height: 1.35; color: var(--tint); max-width: 34ch; }
.hero-hosts__text strong { color: var(--white); font-weight: 800; }

.form-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 14px 34px rgba(3,23,47,0.28);
}
.form-banner {
  background: var(--pale); color: var(--navy); text-align: center;
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.95rem;
  padding: 12px 16px; letter-spacing: 0.01em;
}
.form-card .risk-reversal { margin: 10px 0 14px; padding: 0 22px; font-size: 0.82rem; color: var(--deep); text-align: center; line-height: 1.4; }

/* ---------- GHL iframe embed (Phase 1 launch; native form parked, see README) ---------- */
.ghl-form { width: 100%; min-height: 450px; border: none; border-radius: 6px; overflow: hidden; display: block; padding: 8px 8px 0; }

.btn-cta {
  display: block; width: 100%; text-align: center; background: var(--yellow); color: var(--navy);
  font-weight: 900; text-transform: uppercase; letter-spacing: 0.02em; font-size: 0.95rem;
  padding: 15px 18px; border: none; border-radius: 8px; cursor: pointer; text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-shadow: 0 6px 18px rgba(243,193,37,0.35);
}
.btn-cta:hover { background: var(--yellow-deep); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(243,193,37,0.45); }
.btn-cta:focus-visible { outline: 3px solid var(--ocean); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { .btn-cta { transition: none; } }

/* ---------- generic section ---------- */
section { padding: 38px 0; }
section.tint { background: var(--tint); }
.section-head { margin-bottom: 20px; text-align: center; }
.section-head .eyebrow { color: var(--ocean); }
.section-head h2 { font-size: clamp(1.25rem, 5vw, 1.6rem); color: var(--navy); margin-top: 8px; }

/* ---------- three things ---------- */
.things { display: grid; grid-template-columns: 1fr; gap: 18px; }
.thing { display: flex; gap: 18px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; }
.thing .icon { flex: none; width: 58px; height: 58px; border-radius: 50%; background: var(--tint); display: flex; align-items: center; justify-content: center; }
.thing .icon svg { width: 28px; height: 28px; stroke: var(--ocean); }
.thing h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 6px; }
.thing p { margin: 0; font-size: 0.96rem; color: var(--deep); line-height: 1.5; }

/* ---------- walkaway checklist ---------- */
.walkaway-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.walkaway-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px;
}
.walkaway-item .num {
  flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--ocean);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1rem; color: var(--white);
}
.walkaway-item p { margin: 0; font-size: 1rem; font-weight: 600; color: var(--navy); line-height: 1.5; padding-top: 4px; }

/* ---------- hosted by ---------- */
.host-photo-row { width: 100%; }
.host-band { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.host-authority { width: 100%; }
.host-bio { font-size: 0.95rem; font-weight: 600; color: var(--navy); text-align: center; max-width: 62ch; line-height: 1.55; margin: 0 auto; }
.host-bio + .host-bio { margin-top: 12px; }
.host-stats { margin-top: 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.host-stats .stat { text-align: center; padding: 16px 6px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--line); }
.host-stats .stat .n { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.75rem; color: var(--ocean); display: block; }
.host-stats .stat .l { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; color: var(--deep); }

/* ---------- testimonials ---------- */
.stars { color: var(--mid); font-size: 1rem; letter-spacing: 2px; margin-top: 6px; }

.video-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 26px; }
.yt-facade {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; cursor: pointer; background: var(--navy);
}
.yt-facade img.thumb { width: 100%; height: 100%; object-fit: cover; opacity: 0.82; }
.yt-facade .play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.yt-facade .play-btn span { width: 52px; height: 52px; border-radius: 50%; background: rgba(3,23,47,0.6); display: flex; align-items: center; justify-content: center; }
.yt-facade .play-btn svg { width: 20px; height: 20px; fill: var(--white); margin-left: 3px; }
.yt-facade .yt-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 10px 12px 8px;
  background: linear-gradient(0deg, rgba(3,23,47,0.9), transparent); color: var(--white); font-size: 0.82rem; font-weight: 700;
}
.yt-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.video-slot {
  position: relative; background: var(--navy); border: 1px dashed var(--mid); color: var(--tint);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-size: 0.76rem; font-weight: 600; line-height: 1.4; padding: 16px; border-radius: var(--radius);
  aspect-ratio: 16 / 9;
}
.video-slot .play { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.14); display: flex; align-items: center; justify-content: center; }
.video-slot .play svg { width: 14px; height: 14px; fill: var(--white); }
.video-slot .cap-text { margin-top: 30px; }
.pending-tag {
  display: inline-block; margin-top: 8px; font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--yellow); background: rgba(243,193,37,0.14); padding: 2px 7px; border-radius: 4px;
}

.testimonials { display: grid; grid-template-columns: 1fr; gap: 12px; }
.t-card { background: var(--white); color: var(--navy); border-radius: var(--radius); padding: 18px 16px; border: 1px solid var(--line); }
.t-card .t-stars { color: var(--mid); font-size: 0.8rem; letter-spacing: 1.5px; margin-bottom: 8px; }
.t-card .quote { font-size: 0.95rem; font-weight: 700; line-height: 1.35; color: var(--navy); }
.t-card .tag { margin-top: 8px; font-size: 0.7rem; color: var(--ocean); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
@media (max-width: 767px) {
  .t-card.mobile-hide { display: none; }
}

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--line); }
details.faq { border-bottom: 1px solid var(--line); padding: 14px 0; }
details.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; font-weight: 700; font-size: 0.9rem; color: var(--navy); }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary .plus {
  flex: none; width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid var(--ocean); color: var(--ocean);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem;
  transition: transform 0.15s ease;
}
details.faq[open] summary .plus { transform: rotate(45deg); }
details.faq p { margin: 10px 0 0; font-size: 0.95rem; color: var(--deep); line-height: 1.5; }
@media (prefers-reduced-motion: reduce) { details.faq summary .plus { transition: none; } }

/* ---------- final cta ---------- */
.final-cta { background: var(--ocean); color: var(--white); text-align: center; }
.final-cta h2 { color: var(--white); font-size: clamp(1.2rem, 5.5vw, 1.6rem); }
.final-cta p { margin-top: 10px; color: var(--tint); font-size: 0.9rem; max-width: 44ch; margin-left: auto; margin-right: auto; }
.final-cta .btn-cta { max-width: 320px; margin: 18px auto 0; }

/* ---------- footer (standard pattern shared across BWC landing pages) ---------- */
.site-footer { background: var(--white); padding: 30px 0 96px; border-top: 1px solid var(--line); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-logo { height: 52px; width: auto; max-width: 60%; }
.footer-right { text-align: right; font-size: 0.8rem; color: var(--navy); line-height: 1.6; }
.footer-right a { color: var(--ocean); text-decoration: none; }
.footer-right a:hover { text-decoration: underline; }
@media (max-width: 760px) {
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-right { text-align: center; }
}

/* ---------- sticky mobile CTA ---------- */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(3,23,47,0.12);
  padding: 10px var(--gutter);
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  display: flex; align-items: center; gap: 12px;
  z-index: 50;
  transform: translateY(110%);
  transition: transform 0.25s ease;
}
.sticky-bar.show { transform: translateY(0); }
.sticky-bar .info { flex: 1; min-width: 0; }
.sticky-bar .info .p { font-weight: 900; color: var(--ocean); font-size: 1rem; }
.sticky-bar .info .d { font-size: 0.7rem; color: var(--deep); font-weight: 600; text-transform: uppercase; }
.sticky-bar .btn-cta { width: auto; padding: 12px 18px; font-size: 0.82rem; white-space: nowrap; }
@media (prefers-reduced-motion: reduce) { .sticky-bar { transition: none; } }

/* ---------- registration modal (secondary CTA, lazy-loaded iframe) ---------- */
.cc-modal { position: fixed; inset: 0; z-index: 100; display: none; }
.cc-modal.show { display: block; }
.cc-modal__backdrop { position: absolute; inset: 0; background: rgba(3,23,47,0.62); }
.cc-modal__panel {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: calc(100% - 20px); max-width: 480px; max-height: 88vh; overflow-y: auto;
  background: var(--white); border-radius: var(--radius); box-shadow: 0 20px 50px rgba(3,23,47,0.4);
}
.cc-modal__close {
  position: absolute; top: 8px; right: 10px; z-index: 1;
  width: 32px; height: 32px; border-radius: 50%; border: none; background: var(--tint); color: var(--navy);
  font-size: 1.3rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.cc-modal__body .form-banner { border-radius: var(--radius) var(--radius) 0 0; padding-right: 46px; white-space: nowrap; font-size: 0.88rem; }
.cc-modal__body .ghl-form { padding-top: 14px; }
body.modal-open { overflow: hidden; }

/* ---------- desktop enhancement ---------- */
@media (min-width: 768px) {
  :root { --gutter: 32px; }
  .hero {
    padding-top: 56px;
    background:
      linear-gradient(180deg, rgba(0,99,163,0.52) 0%, rgba(0,80,127,0.7) 100%),
      url('./assets/hero-desktop.webp') center 62% / cover no-repeat;
  }
  .hero .wrap { flex-direction: row; align-items: flex-start; gap: 48px; }
  .hero .copy { flex: 1.15; }
  .hero .form-wrap { flex: 1; max-width: 460px; }
  .hero h1 { font-size: 2.3rem; }
  .hero-hosts { flex-direction: column; align-items: flex-start; gap: 16px; margin-top: 28px; }
  .hero-face { width: 92px; height: 92px; border-width: 3px; }
  .hero-hosts__faces .hero-face + .hero-face { margin-left: -8px; }
  .hero-hosts__text { font-size: 1.15rem; line-height: 1.5; max-width: 46ch; }

  .things { grid-template-columns: repeat(3, 1fr); }
  .walkaway-grid { grid-template-columns: repeat(2, 1fr); column-gap: 32px; }
  .host-band { flex-direction: row; align-items: center; gap: 40px; }
  .host-authority { flex: 1; order: 1; }
  .host-photo-row { flex: 0 0 380px; order: 2; }
  .host-bio { text-align: left; margin: 0; max-width: none; }
  .host-stats { max-width: 480px; }

  .final-cta {
    background:
      linear-gradient(180deg, rgba(0,99,163,0.6) 0%, rgba(0,80,127,0.78) 100%),
      url('./assets/hero-desktop.webp') center 60% / cover no-repeat;
  }
  .video-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials { grid-template-columns: repeat(4, 1fr); }

  section.testi-section {
    background:
      linear-gradient(180deg, rgba(3,23,47,0.74) 0%, rgba(3,23,47,0.84) 100%),
      url('./assets/testimonials-bg.webp') center 45% / cover no-repeat;
  }
  section.testi-section .eyebrow { color: var(--pale); }
  section.testi-section .section-head h2 { color: var(--white); }

  .sticky-bar { display: none; }
  .site-footer { padding-bottom: 30px; }
}
