@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,500&display=swap");

:root {
  --lime: #bdd42c;
  --lime-600: #a6bc1f;
  --lime-200: #e7efb4;
  --navy: #0a0d31;
  --navy-2: #12163f;
  --charcoal: #242627;
  --slate: #7a828d;
  --body: #3f444b;
  --line: #e4e6ee;
  --peri: #dee0ff;
  --white: #fff;
  --font: "Inter Tight", "Helvetica Neue", Arial, sans-serif;
  --shadow-form: 0 24px 60px rgba(10, 13, 49, 0.28);
  --shadow-card: 0 10px 30px rgba(10, 13, 49, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.preview-banner {
  background: #fff8db;
  border-bottom: 1px solid #f0e2a0;
  color: #5c4b00;
  font-size: 13px;
  padding: 10px 16px;
  text-align: center;
}
.preview-banner strong { color: #3d3200; }

.lp-hdr {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.lp-hdr .row {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
}
.logo { height: 36px; width: auto; }
.lp-hdr .sp { flex: 1; }
.lp-hdr .call {
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}
.lp-hdr .hdr-cta { display: none; }

.proof-bar {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.proof-bar .row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
  padding: 10px 0;
}
.proof-bar span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  margin-right: 8px;
  vertical-align: middle;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 10px;
  padding: 15px 22px;
  font-family: var(--font);
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--lime);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(189, 212, 44, 0.45);
}
.btn-primary:hover { background: var(--lime-600); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-ghost {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
}
.btn-block { width: 100%; }

.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.hero .mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(189, 212, 44, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(222, 224, 255, 0.12), transparent 50%),
    linear-gradient(135deg, #070a26 0%, #0a0d31 45%, #161a45 100%);
}
.hero .inner { position: relative; padding: 56px 0 64px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 14px;
}
.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 5.8vw, 72px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
}
.hero h1 .hl {
  color: var(--lime);
  display: inline;
}
.hero .sub {
  margin: 0 0 22px;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  max-width: 34ch;
  font-weight: 500;
}
.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}
.metric {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
}
.metric b { color: var(--lime); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-cta .call-link {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-shell { position: relative; }
.form-shell.sticky { position: sticky; top: 96px; }
.formcard {
  background: #fff;
  color: var(--body);
  border-radius: 18px;
  padding: 24px 22px 22px;
  box-shadow: var(--shadow-form);
  border-top: 5px solid var(--lime);
}
.formcard h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-align: center;
}
.form-sub {
  text-align: center;
  font-size: 13px;
  color: var(--slate);
  margin: 0 0 16px;
  font-weight: 600;
}
.field { margin-bottom: 12px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 12px;
  font: inherit;
  font-size: 16px;
}
.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(189, 212, 44, 0.55);
  border-color: var(--lime);
}
.field.err input,
.field.err textarea {
  border-color: #d98b8b;
  box-shadow: 0 0 0 3px rgba(217, 57, 57, 0.12);
}
.field .msg { color: #c0392b; font-size: 12px; margin-top: 5px; }
.req { color: #c0392b; }
.opt { color: var(--slate); font-weight: 500; }
.form-trust {
  text-align: center;
  font-size: 12px;
  color: var(--slate);
  margin-top: 10px;
  font-weight: 600;
}
.reassure {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  justify-content: center;
  font-size: 12px;
  color: var(--slate);
  margin-top: 10px;
}
.formstatus { text-align: center; font-size: 12px; min-height: 1.2em; margin-top: 8px; }
.formstatus.err { color: #c0392b; }
.form-success { text-align: center; padding: 20px 6px; }
.form-success .check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--navy);
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  font-size: 28px;
  font-weight: 900;
}

.section { padding: 72px 0; }
.section h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.section .lead {
  margin: 0 0 28px;
  color: var(--slate);
  font-size: 17px;
  max-width: 58ch;
}
.statbar { background: var(--peri); }
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.stat {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid rgba(10, 13, 49, 0.06);
  text-align: center;
}
.stat .n {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.stat .c { font-size: 13px; color: var(--slate); margin-top: 6px; font-weight: 600; }

.problem { background: #f5f6fb; }
.pcards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.pcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow-card);
}
.pcard .num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--lime-200);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 12px;
}
.pcard p {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.45;
}

.steps { display: grid; gap: 14px; margin: 24px 0 28px; }
.lstep {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.lstep .num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--lime);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 20px;
}
.lstep h3 { margin: 0 0 6px; color: var(--navy); font-size: 20px; font-weight: 800; }
.lstep p { margin: 0; color: var(--slate); font-size: 15px; }

.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.tile {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  background: #fff;
}
.tile h3 { margin: 0 0 8px; color: var(--navy); font-size: 18px; font-weight: 800; }
.tile p { margin: 0; color: var(--slate); font-size: 14px; line-height: 1.55; }

.creds { background: var(--navy); color: #fff; }
.creds .lbl {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9aa0c0;
  font-weight: 800;
  margin-bottom: 18px;
}
.cred-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.cred {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
}

.cta-band { background: var(--lime); }
.cta-band .cb-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 40px 0;
}
.cta-band h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.cta-band p { margin: 0; color: #3a4a12; font-weight: 600; }
.cb-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.cb-call { font-weight: 900; color: var(--navy); }

.tsts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 24px; }
.tst {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  background: #fff;
}
.tst .stars { color: #f5a623; letter-spacing: 2px; font-weight: 800; margin-bottom: 10px; }
.tst .q { margin: 0 0 14px; color: var(--navy); font-weight: 700; font-size: 15px; line-height: 1.5; }
.who { display: flex; gap: 10px; align-items: center; }
.ava {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--peri);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 900;
}
.nm { font-weight: 800; color: var(--navy); }
.tt { font-size: 12px; color: var(--slate); }

.faqs { display: grid; gap: 10px; max-width: 800px; margin: 0 auto; }
.faq {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.faq button {
  width: 100%;
  text-align: left;
  background: #fff;
  border: 0;
  padding: 18px 20px;
  font: inherit;
  font-weight: 800;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}
.faq .ans { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq.open .ans { max-height: 320px; }
.faq .ans p { margin: 0; padding: 0 20px 18px; color: var(--slate); font-size: 15px; }

.contact { background: var(--charcoal); color: #fff; }
.contact .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.contact h2 { color: #fff; }
.contact .lead { color: #c7cad3; }
.next .row { display: flex; gap: 12px; align-items: flex-start; margin: 10px 0; }
.next .n {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 13px;
  flex: none;
}
.contact .phone { display: inline-block; margin-top: 14px; font-weight: 900; color: #fff; }

.lp-ftr { background: var(--navy); color: rgba(255, 255, 255, 0.85); padding: 48px 0 28px; font-size: 14px; }
.lp-ftr .top { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 24px; }
.lp-ftr a:hover { color: var(--lime); }
.lp-ftr .bot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 28px;
  padding-top: 16px;
  font-size: 13px;
}

.mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(10, 13, 49, 0.12);
}
.mobile-bar a {
  text-align: center;
  padding: 15px 10px;
  font-weight: 900;
  font-size: 15px;
}
.mobile-bar .call { color: var(--navy); }
.mobile-bar .book { background: var(--lime); color: var(--navy); }

/* Variant B overrides - editorial light hero */
body.variant-b .hero .mesh {
  background:
    linear-gradient(180deg, #f7f8fc 0%, #eef0f8 100%);
}
body.variant-b .hero { color: var(--navy); }
body.variant-b .hero h1 { color: var(--navy); }
body.variant-b .hero .sub { color: var(--body); }
body.variant-b .hero-grid {
  grid-template-columns: 1fr 420px;
  align-items: center;
}
body.variant-b .hero-copy {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
}
body.variant-b .metric {
  background: var(--peri);
  border-color: transparent;
  color: var(--navy);
}
body.variant-b .metric b { color: var(--navy-2); }
body.variant-b .hero-cta .call-link { color: var(--navy); }
body.variant-b .btn-ghost {
  color: var(--navy);
  box-shadow: inset 0 0 0 2px var(--line);
}

@media (max-width: 900px) {
  .lp-hdr .call { display: none; }
  .lp-hdr .hdr-cta { display: inline-flex; padding: 11px 14px; font-size: 13px; }
  .hero-grid,
  body.variant-b .hero-grid,
  .stats,
  .pcards,
  .tiles,
  .tsts,
  .contact .grid,
  .lp-ftr .top,
  .cta-band .cb-inner { grid-template-columns: 1fr; display: grid; }
  .form-shell.sticky { position: static; }
  .mobile-bar { display: grid; }
  body { padding-bottom: 58px; }
  .hero .inner { padding: 36px 0 44px; }
  .section { padding: 52px 0; }
}

@media (min-width: 901px) {
  .lp-hdr .hdr-cta { display: inline-flex; }
}
