/* ============================================================
   FONTS (self-hosted)
============================================================ */
@font-face { font-family:'Manrope'; font-style:normal; font-weight:600 800; font-display:optional; src:url('fonts/manrope.woff2') format('woff2'); unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; }
@font-face { font-family:'DM Sans'; font-style:normal; font-weight:300 600; font-display:optional; src:url('fonts/dm-sans.woff2') format('woff2'); unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; }
@font-face { font-family:'DM Sans'; font-style:italic; font-weight:400; font-display:optional; src:url('fonts/dm-sans-italic.woff2') format('woff2'); unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; }

/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --navy:       #060F22;
  --navy-mid:   #0C1E3E;
  --blue:       #1D6FFF;
  --blue-dark:  #1558D6;
  --blue-mid:   #4B8BF5;
  --blue-light: #EBF2FF;
  --teal:       #00C9B1;
  --green:      #22C55E;
  --white:      #FFFFFF;
  --off-white:  #F6F9FF;
  --text:       #0D1B33;
  --muted:      #637799;
  --border:     #DDE6F5;
  --r:          16px;
  --r-sm:       10px;
  --shadow-sm:  0 1px 4px rgba(13,27,51,.06), 0 2px 12px rgba(13,27,51,.04);
  --shadow-md:  0 4px 16px rgba(13,27,51,.08), 0 12px 40px rgba(13,27,51,.06);
  --shadow-lg:  0 8px 32px rgba(13,27,51,.12), 0 24px 64px rgba(13,27,51,.08);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 {
  font-family: 'Manrope', sans-serif;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

/* ============================================================
   LAYOUT
============================================================ */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: #1760F0;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(29,111,255,.3);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(29,111,255,.4);
}
.btn-ghost {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.2);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.35);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ============================================================
   SECTION LABEL
============================================================ */
.label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.label::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  flex-shrink: 0;
}
.label--light { color: rgba(255,255,255,.72); }
.label--light::before { background: rgba(255,255,255,.55); }

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.d1 { transition-delay: .10s; }
.d2 { transition-delay: .20s; }
.d3 { transition-delay: .30s; }
.d4 { transition-delay: .40s; }
.d5 { transition-delay: .50s; }

/* ============================================================
   SHARED KEYFRAMES
============================================================ */
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.75); }
}

/* ============================================================
   MOBILE MENU
============================================================ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Manrope', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--blue-mid); }
.mobile-close {
  position: absolute;
  top: 22px; right: 22px;
  color: rgba(255,255,255,.6);
  font-size: 28px;
  padding: 8px;
  line-height: 1;
  cursor: pointer;
  transition: color .2s;
}
.mobile-close:hover { color: var(--white); }

/* ============================================================
   NAV
============================================================ */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
#mainNav.scrolled {
  background: rgba(6,15,34,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 13px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  font-family: 'Manrope', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--blue-mid); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.65);
  font-size: 14.5px;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.nav-active { color: var(--white); font-weight: 600; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: #020810;
  border-top: 1px solid rgba(255,255,255,.04);
  padding: 60px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.foot-logo { font-family: 'Manrope', sans-serif; font-size: 18px; font-weight: 800; color: var(--white); display: block; margin-bottom: 12px; }
.foot-logo span { color: var(--blue-mid); }
.foot-tag { font-size: 14px; color: rgba(255,255,255,.32); line-height: 1.6; max-width: 210px; }
.foot-col-title { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 16px; }
.foot-col-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col-links a { font-size: 14px; color: rgba(255,255,255,.48); transition: color .2s; }
.foot-col-links a:hover { color: rgba(255,255,255,.88); }
.footer-bot {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.foot-copy { font-size: 13px; color: rgba(255,255,255,.50); }
.foot-legal { display: flex; gap: 22px; }
.foot-legal a { font-size: 13px; color: rgba(255,255,255,.60); transition: color .2s; }
.foot-legal a:hover { color: rgba(255,255,255,.88); }
.foot-book-btn { display: inline-flex; margin-top: 18px; font-size: 14px; padding: 11px 22px; }

/* ============================================================
   GHL BOOKING MODAL
============================================================ */
#bookingOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6,15,34,.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 149;
}
#bookingModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
}
#bookingClose {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(0,0,0,.12);
  border: 1px solid rgba(0,0,0,.12);
  color: #444;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  pointer-events: auto;
  z-index: 2;
  transition: background .2s;
}
#bookingClose:hover { background: rgba(0,0,0,.2); }
#ghl-booking-container {
  position: relative;
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
  pointer-events: auto;
  min-height: 600px;
}
#ghl-booking-container iframe {
  width: 100%;
  display: block;
  border: none;
  min-height: 600px;
}
@media (max-width: 480px) {
  #bookingModal { padding: 0; align-items: flex-end; }
  #ghl-booking-container {
    border-radius: 16px 16px 0 0;
    max-height: 95vh;
    min-height: 500px;
  }
}

/* ============================================================
   RESPONSIVE — NAV / FOOTER (shared breakpoints)
============================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bot { flex-direction: column; text-align: center; }
  .foot-legal { flex-wrap: wrap; justify-content: center; }
}

/* ============================================================
   CARD BULLETS — scannable lists inside prob/what/how cards
============================================================ */
.card-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.card-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted, #637799);
}
.card-bullets li::before {
  content: '→';
  flex-shrink: 0;
  color: var(--blue, #1D6FFF);
  font-size: .8rem;
  margin-top: 3px;
}
