/* ============================================================
   MINI — HVAC Lead Generation  |  styles.css
   ============================================================ */

:root {
  --brand:   #3b5bff;
  --brand-2: #6d6bff;
  --heat:    #EA580C;
  --heat-light: #FED7AA;
  --cool:    #0EA5E9;
  --cool-light: #BAE6FD;
  --dark:    #0D1117;
  --dark-2:  #161c27;
  --ink:     #0b1020;
  --ink-soft:#3b4256;
  --muted:   #7a8194;
  --bg:      #ffffff;
  --bg-alt:  #f6f7fb;
  --line:    #e8eaf2;
  --accent:  #15d6a6;
  --logo-blue: #3b5bff;
  --radius:  18px;
  --shadow:  0 18px 50px -20px rgba(40,40,120,.22);
  --maxw:    1100px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 {
  font-family: 'Sora', sans-serif;
  letter-spacing: -.02em;
  line-height: 1.15;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ---- ANIMATED WORDMARK ---- */
.wordmark {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  letter-spacing: -.03em;
  user-select: none;
}
.wm-row { display: inline-flex; align-items: flex-end; }
.wm-l, .wm-i { display: inline-block; }
.wm-i { position: relative; }
.wm-dot {
  position: absolute;
  left: 50%;
  top: .01em;
  transform: translateX(-50%);
  width: .20em;
  height: .20em;
  border-radius: .05em;
  background: var(--logo-blue);
}
.wm-period {
  display: inline-block;
  width: .20em;
  height: .20em;
  border-radius: .05em;
  background: var(--logo-blue);
  margin-left: .07em;
  margin-bottom: .02em;
  align-self: flex-end;
}
.nav .wm-period,
.hero-hvac .wm-period,
.footer .wm-period {
  width: .12em;
  height: .12em;
  background: var(--ink);
  margin-left: .05em;
  margin-bottom: .04em;
  animation: none;
}
/* On dark bg the period should be white */
.footer .wm-period { background: rgba(255,255,255,.6); }

.wm-ball {
  position: absolute;
  left: 0; top: 0;
  width: .20em; height: .20em;
  border-radius: .05em;
  background: var(--logo-blue);
  transform: translate(-9999px, 0);
  will-change: transform;
  pointer-events: none;
}
.wordmark.wm-lg { font-size: clamp(66px, 12vw, 128px); margin-bottom: 18px; }

.nav .wm-ball,
.hero-hvac .wm-ball,
.footer .wm-ball { display: none; }

@keyframes dotShimmer {
  0%,100% { background-color: var(--logo-blue); opacity: .78; box-shadow: 0 0 0 rgba(59,91,255,0); }
  50%      { background-color: #5fb0ff; opacity: 1; box-shadow: 0 0 10px rgba(95,176,255,.6); }
}
.nav .wm-dot, .footer .wm-dot { animation: dotShimmer 3.2s ease-in-out infinite; }

/* intro splash */
.intro {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  background: radial-gradient(120% 120% at 50% 40%, #fff 0%, #f4f6fc 70%, #eef1fb 100%);
  transition: opacity .6s ease;
  animation: introFailsafe .1s linear 4.5s forwards;
}
@keyframes introFailsafe { to { opacity: 0; visibility: hidden; pointer-events: none; } }
.intro.is-hiding { opacity: 0; pointer-events: none; }
.intro-stage { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.wm-intro { font-size: clamp(72px, 15vw, 150px); }
.wm-intro .wm-dot, .wm-intro .wm-period { opacity: 0; }
.wm-intro .wm-ball { display: block; }
.intro-slogan {
  font-style: italic; font-size: 14px; color: var(--muted);
  opacity: 0; transform: translateY(6px);
  transition: opacity .5s ease, transform .5s ease;
}
.intro-slogan.show { opacity: 1; transform: none; }
.spark {
  position: absolute; width: .12em; height: .12em;
  border-radius: .04em; background: var(--logo-blue); pointer-events: none;
}
.burst-ring {
  position: absolute; width: .5em; height: .5em;
  border: .05em solid var(--logo-blue); border-radius: 50%; pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .intro { display: none; }
  .wm-ball { display: none !important; }
}

/* ---- CONTAINER ---- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 48px);
}

/* ---- NAV ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(18px, 5vw, 48px);
  background: rgba(13,17,23,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.brand { display: flex; align-items: center; }
.nav .wordmark { color: #fff; }
.nav .wm-dot { animation: dotShimmer 3.2s ease-in-out infinite; }
.nav .wm-period { background: rgba(255,255,255,.5) !important; }

.nav-links {
  display: flex; align-items: center; gap: 28px; font-weight: 500; font-size: 15px;
}
.nav-links a:not(.btn) { color: rgba(255,255,255,.72); transition: color .15s; }
.nav-links a:not(.btn):hover { color: #fff; }
.nav-hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.8); font-size: 22px;
  padding: 4px 8px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 15px;
  padding: 12px 24px; border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer; transition: .18s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: 0 10px 28px -8px rgba(59,91,255,.55);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -8px rgba(59,91,255,.7);
}
.btn-heat {
  background: var(--heat);
  color: #fff;
  box-shadow: 0 10px 28px -8px rgba(234,88,12,.5);
}
.btn-heat:hover {
  background: #d14f0a;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -8px rgba(234,88,12,.65);
}
.btn-ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-ghost-light {
  background: transparent;
  border-color: rgba(255,255,255,.3);
  color: rgba(255,255,255,.9);
}
.btn-ghost-light:hover {
  border-color: rgba(255,255,255,.7);
  color: #fff;
  background: rgba(255,255,255,.06);
}
.btn-block { width: 100%; justify-content: center; font-size: 16px; padding: 15px; }

/* ---- HERO (DARK) ---- */
.hero-hvac {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  padding: clamp(70px, 10vw, 130px) clamp(18px, 5vw, 48px) clamp(60px, 8vw, 100px);
}
.hero-hvac canvas#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-hvac-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cool);
  background: rgba(14,165,233,.12);
  border: 1px solid rgba(14,165,233,.25);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero-h1 {
  font-size: clamp(40px, 8vw, 84px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
}
.hero-h2 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  color: var(--heat);
  margin-top: 10px;
}
.hero-lede {
  max-width: 620px;
  margin: 26px auto 0;
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(255,255,255,.65);
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 36px 0 32px;
}
.trust-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.8);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 999px;
}
.badge-check {
  color: var(--accent);
  font-weight: 800;
  font-size: 12px;
}

/* phone feed */
.phone-feed-wrap {
  display: flex;
  justify-content: center;
  min-height: 88px;
}
.phone-card {
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  width: 320px;
  box-shadow: 0 24px 60px -12px rgba(0,0,0,.55);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  animation-fill-mode: both;
}
.phone-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.phone-card-content { flex: 1; min-width: 0; }
.phone-card-title { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.phone-card-name { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; color: var(--ink); margin-top: 2px; }
.phone-card-service { font-size: 13px; color: var(--ink-soft); margin-top: 1px; }
.phone-card-meta { font-size: 12px; color: var(--muted); margin-top: 4px; }
.phone-card-ago { float: right; color: var(--cool); font-weight: 600; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-12px); }
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 36px clamp(18px, 5vw, 48px);
}
.stats-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: space-between;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1 1 180px;
  padding: 12px 16px;
  text-align: center;
}
.stat-num {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
  max-width: 160px;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--line);
  flex-shrink: 0;
  align-self: center;
}
.heat-text  { color: var(--heat); }
.cool-text  { color: var(--cool); }
.brand-text { color: var(--brand); }

/* ---- PROBLEM SECTION ---- */
.problem-section {
  background: var(--dark);
  padding: clamp(64px, 8vw, 100px) clamp(18px, 5vw, 48px);
}
.light-title { color: #fff; }
.problem-section .section-title { margin-bottom: 48px; }
.compare-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.compare-col {
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid transparent;
}
.compare-bad  { background: rgba(234,88,12,.08); border-color: rgba(234,88,12,.22); }
.compare-meh  { background: rgba(234,179,8,.07); border-color: rgba(234,179,8,.22); }
.compare-good { background: rgba(59,91,255,.10); border-color: rgba(59,91,255,.35); }

.compare-head {
  padding: 20px 22px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.compare-bad  .compare-head { border-bottom: 1px solid rgba(234,88,12,.22); }
.compare-meh  .compare-head { border-bottom: 1px solid rgba(234,179,8,.22); }
.compare-good .compare-head { border-bottom: 1px solid rgba(59,91,255,.3); }

.compare-platform {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.compare-verdict {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.verdict-bad  { background: rgba(234,88,12,.25);  color: #f97316; }
.verdict-meh  { background: rgba(234,179,8,.20);  color: #fbbf24; }
.verdict-good { background: rgba(59,91,255,.25);  color: #818cf8; }

.compare-list {
  list-style: none;
  padding: 18px 22px 22px;
  display: grid;
  gap: 14px;
}
.compare-list li {
  font-size: 14px;
  color: rgba(255,255,255,.72);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}
.x-icon    { color: #f87171; font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.warn-icon { color: #fbbf24; font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.ok-icon   { color: var(--accent); font-size: 15px; font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.compare-good .compare-list li { color: rgba(255,255,255,.88); }

/* ---- HOW IT WORKS ---- */
.how-section {
  background: var(--bg);
  padding: clamp(64px, 8vw, 100px) 0;
}
.how-section .section-title { text-align: center; margin-bottom: 56px; }
.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.how-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}
.how-step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 10px 28px -8px rgba(59,91,255,.5);
}
.how-step-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}
.how-step-body p { font-size: 15px; color: var(--ink-soft); line-height: 1.7; }
.how-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  align-self: center;
  flex-shrink: 0;
  margin-bottom: 40px;
  opacity: .35;
}

/* ---- URGENCY SECTION ---- */
.urgency-section {
  background: var(--dark-2);
  padding: clamp(64px, 8vw, 100px) clamp(18px, 5vw, 48px);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.urgency-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: center;
}
.urgency-copy .section-title {
  font-size: clamp(26px, 3.8vw, 40px);
  margin-bottom: 24px;
}
.urgency-body {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 28px;
}
.speed-stat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(234,88,12,.1);
  border: 1px solid rgba(234,88,12,.25);
  border-radius: 14px;
  padding: 18px 20px;
}
.speed-icon { font-size: 24px; flex-shrink: 0; margin-top: 1px; }
.speed-stat p { font-size: 15px; color: rgba(255,255,255,.78); line-height: 1.6; }
.speed-stat strong { color: #fff; }
.urgency-widget { display: flex; justify-content: center; align-items: center; }

/* thermostat SVG styles */
#thermostatWidget svg { display: block; }
.thermo-label {
  font-family: 'Sora', sans-serif;
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  transition: color .4s;
}
.thermo-label.cool-state { color: var(--cool); }
.thermo-label.hot-state  { color: var(--heat); }

/* ---- PRICING ---- */
.pricing-section {
  background: var(--bg);
  padding: clamp(64px, 8vw, 100px) 0;
}
.pricing-section .section-title { text-align: center; margin-bottom: 48px; }
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--bg-alt);
  border: 1.5px solid var(--line);
  border-radius: 24px;
  padding: 36px 32px;
  transition: .2s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.pricing-card-featured {
  background: #fff;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(59,91,255,.08), var(--shadow);
}
.pricing-amount {
  font-family: 'Sora', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card-featured .pricing-amount { color: var(--brand); }
.pricing-name {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}
.pricing-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 20px;
}
.pricing-includes {
  list-style: none;
  display: grid;
  gap: 9px;
}
.pricing-includes li {
  font-size: 13px;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
}
.pricing-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.guarantee-box {
  max-width: 780px;
  margin: 32px auto 0;
  background: linear-gradient(135deg, #0b1020, #131829);
  border: 1px solid rgba(59,91,255,.3);
  border-radius: 20px;
  padding: 28px 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.guarantee-icon { font-size: 32px; flex-shrink: 0; }
.guarantee-copy strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  color: #fff;
  margin-bottom: 8px;
}
.guarantee-copy p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.65; }

/* revenue calculator */
.revenue-calc {
  max-width: 780px;
  margin: 40px auto 0;
  background: var(--bg-alt);
  border: 1.5px solid var(--line);
  border-radius: 24px;
  padding: 32px 32px 28px;
}
.calc-title {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}
.calc-sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.calc-slider-label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.calc-slider-val {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--brand);
}
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--brand) var(--pct, 20%), var(--line) var(--pct, 20%));
  outline: none;
  cursor: pointer;
  margin-bottom: 28px;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 4px 12px rgba(59,91,255,.4);
  border: 2px solid #fff;
  cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 4px 12px rgba(59,91,255,.4);
  border: 2px solid #fff;
  cursor: pointer;
}
.calc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.calc-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
  text-align: center;
}
.calc-card-val {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.calc-card-label { font-size: 12px; color: var(--muted); }
.calc-profit {
  text-align: center;
  padding: 16px;
  background: rgba(21,214,166,.08);
  border: 1px solid rgba(21,214,166,.25);
  border-radius: 14px;
}
.calc-profit-val {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
}
.calc-profit-label { font-size: 13px; color: var(--muted); margin-top: 3px; }

/* ---- BOOK A CALL ---- */
.book-section {
  background: var(--bg-alt);
  padding: clamp(64px, 8vw, 100px) 0;
  border-top: 1px solid var(--line);
}
.book-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.book-copy h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.2;
}
.book-copy > p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 28px;
}
.book-bullets {
  list-style: none;
  display: grid;
  gap: 12px;
}
.book-bullets li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--ink-soft);
}
.book-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: #062e23;
  font-size: 10px;
  font-weight: 800;
  top: 2px;
}

/* booking form */
.book-form-wrap {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow);
}
.booking-form {
  display: grid;
  gap: 18px;
}
.bform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.booking-form label,
.lead-form-standalone label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}
.booking-form input,
.booking-form select,
.booking-form textarea,
.lead-form-standalone input,
.lead-form-standalone select,
.lead-form-standalone textarea {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fbfbfe;
  transition: .15s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.booking-form select,
.lead-form-standalone select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' fill='none'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%237a8194' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.lead-form-standalone input:focus,
.lead-form-standalone select:focus,
.lead-form-standalone textarea:focus {
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(59,91,255,.1);
}
.form-msg { font-weight: 600; font-size: 15px; min-height: 1.4em; margin-top: 4px; }
.form-msg.ok  { color: #0a9e78; }
.form-msg.err { color: #d3406a; }

/* lead form (old, kept for compat) */
.lead-form { padding: clamp(28px, 4vw, 48px); display: grid; gap: 16px; }
.lead-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lead-form label { display: grid; gap: 7px; font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.lead-form input, .lead-form select, .lead-form textarea {
  font: inherit; font-weight: 500; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line);
  border-radius: 11px; background: #fbfbfe; transition: .15s;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline: none; border-color: var(--brand); background: #fff;
  box-shadow: 0 0 0 4px #eceaff;
}
.form-note { font-size: 12px; color: var(--muted); }

/* section title shared */
.section-title {
  text-align: center;
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 800;
  color: var(--ink);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--dark);
  text-align: center;
  padding: 56px 20px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer .wordmark { color: #fff; }
.footer .wm-dot { animation: dotShimmer 3.2s ease-in-out infinite; }
.footer-tag {
  font-style: italic;
  color: rgba(255,255,255,.45);
  font-size: 14px;
  margin-top: 10px;
}
.footer-contact {
  margin-top: 10px;
  font-size: 14px;
}
.footer-contact a {
  color: var(--cool);
  text-decoration: none;
}
.footer-contact a:hover { text-decoration: underline; }
.footer-copy {
  color: rgba(255,255,255,.3);
  font-size: 12px;
  margin-top: 10px;
}

/* ---- STANDALONE BOOKING PAGE ---- */
.booking-page-hero {
  background: var(--dark);
  padding: clamp(56px, 7vw, 88px) clamp(18px, 5vw, 48px);
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.booking-page-hero h1 {
  font-size: clamp(30px, 5vw, 52px);
  color: #fff;
  margin-bottom: 14px;
}
.booking-page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,.6);
  max-width: 540px;
  margin: 0 auto;
}
.booking-page-body {
  background: var(--bg-alt);
  padding: clamp(48px, 6vw, 80px) clamp(18px, 5vw, 48px);
  min-height: calc(100vh - 280px);
}
.booking-page-inner {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.booking-trust-list {
  list-style: none;
  display: grid;
  gap: 14px;
}
.booking-trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-soft);
}
.btrust-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(59,91,255,.1);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .compare-table { grid-template-columns: 1fr; }
  .how-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .how-step { max-width: 440px; margin-bottom: 32px; }
  .how-connector { width: 2px; height: 40px; }
  .urgency-inner { grid-template-columns: 1fr; }
  .urgency-widget { margin-top: 8px; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 420px; }
  .book-inner { grid-template-columns: 1fr; }
  .booking-page-inner { grid-template-columns: 1fr; }
  .calc-cards { grid-template-columns: 1fr; }
  .stat-divider { display: none; }
  .stats-inner { gap: 4px; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(13,17,23,.97);
    padding: 20px 24px 28px;
    gap: 18px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    z-index: 100;
  }
  .nav { position: relative; flex-wrap: wrap; }
  .nav-hamburger { display: block; }
  .bform-row { grid-template-columns: 1fr; }
  .trust-badges { gap: 8px; }
  .trust-badge { font-size: 12px; padding: 7px 12px; }
  .hero-h1 { font-size: clamp(34px, 8vw, 56px); }
  .hero-h2 { font-size: clamp(22px, 5vw, 36px); }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: 100px 0;
  background: var(--dark);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
  border: 1px solid #1f2937;
  border-radius: 16px;
  overflow: hidden;
}
.faq-item {
  padding: 28px 32px;
  background: #0d1117;
  border: 1px solid #1f2937;
  transition: background .15s;
}
.faq-item:hover { background: #111827; }
.faq-q {
  font-size: 16px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 10px;
  line-height: 1.4;
}
.faq-a {
  font-size: 14px;
  line-height: 1.7;
  color: #94a3b8;
}
@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
}
