*, *::before, *::after { box-sizing: border-box; }
:root {
  --navy: #001f49;
  --blue: #06366d;
  --cyan: #00adef;
  --cyan-dark: #008fc6;
  --ink: #10233d;
  --muted: #5f6f84;
  --line: #dce5ee;
  --soft: #f4f8fb;
  --mint: #dff7ed;
  --mint-ink: #0c6b49;
  --amber: #fff2d6;
  --amber-ink: #815400;
  --coral: #ffe6df;
  --coral-ink: #9b3a22;
  --white: #fff;
  --shadow: 0 18px 55px rgba(0, 31, 73, .13);
  --font: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.lp-container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,31,73,.08);
}
.lp-nav-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.lp-logo { display: flex; align-items: center; gap: 12px; font-weight: 900; color: var(--navy); }
.lp-logo img { width: 44px; height: 44px; object-fit: contain; }
.lp-logo small { display: block; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.lp-nav-links { display: flex; align-items: center; gap: 18px; color: var(--muted); font-size: 15px; font-weight: 700; }
.lp-nav-links a:hover { color: var(--navy); }
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 900;
  font-size: 15px;
  cursor: pointer;
  text-align: center;
  font-family: var(--font);
}
.lp-btn-primary { background: var(--cyan); color: var(--white); }
.lp-btn-primary:hover { background: var(--cyan-dark); }
.lp-btn-secondary { background: var(--white); color: var(--navy); border-color: rgba(0,31,73,.16); }
.lp-btn-secondary:hover { border-color: var(--cyan); color: var(--cyan-dark); }
.lp-btn-dark { background: var(--navy); color: var(--white); }
.lp-btn-dark:hover { background: var(--blue); }
.lp-hero {
  background:
    linear-gradient(135deg, rgba(0,31,73,.98), rgba(6,54,109,.95)),
    url('../images/leanne-stewart-south-auckland-hero.webp') center/cover;
  color: var(--white);
  padding: 84px 0 54px;
}
.lp-hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .72fr); gap: 48px; align-items: center; }
.lp-eyebrow {
  color: #8adeff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.lp-hero h1 {
  font-size: clamp(40px, 6vw, 74px);
  line-height: .96;
  letter-spacing: 0;
  margin: 0 0 20px;
  max-width: 780px;
}
.lp-hero p { font-size: 20px; color: rgba(255,255,255,.84); max-width: 720px; margin: 0 0 26px; }
.lp-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 0; }
.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255,255,255,.9);
  font-size: 13px;
  font-weight: 800;
}
.lp-badge i { color: #8adeff; }
.lp-card {
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(0,31,73,.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.lp-form-card { padding: 24px; }
.lp-form-card h2 { margin: 0 0 6px; color: var(--navy); font-size: 28px; line-height: 1.08; }
.lp-form-card p { color: var(--muted); font-size: 15px; margin: 0 0 18px; }
.lp-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lp-field { display: flex; flex-direction: column; gap: 6px; }
.lp-field-full { grid-column: 1 / -1; }
.lp-field label { font-size: 12px; font-weight: 900; color: var(--navy); letter-spacing: .08em; text-transform: uppercase; }
.lp-field input, .lp-field select, .lp-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  min-height: 46px;
  padding: 11px 12px;
  font: 16px var(--font);
  color: var(--ink);
  background: var(--white);
}
.lp-field textarea { min-height: 96px; resize: vertical; }
.lp-field input:focus, .lp-field select:focus, .lp-field textarea:focus {
  outline: 0;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,173,239,.13);
}
.lp-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.lp-status { display: none; margin-top: 12px; padding: 12px; border-radius: 6px; font-size: 15px; font-weight: 700; }
.lp-status.is-ok { display: block; background: var(--mint); color: var(--mint-ink); }
.lp-status.is-error { display: block; background: var(--coral); color: var(--coral-ink); }
.lp-section { padding: 72px 0; }
.lp-section-soft { background: var(--soft); }
.lp-section-head { max-width: 820px; margin-bottom: 34px; }
.lp-section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.lp-section h2 { color: var(--navy); font-size: clamp(30px, 4vw, 48px); line-height: 1.05; margin: 0 0 14px; }
.lp-section p { color: var(--muted); font-size: 18px; }
.lp-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lp-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.lp-feature {
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(0,31,73,.08);
  border-radius: 8px;
}
.lp-feature i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--cyan-dark);
  border-radius: 8px;
  margin-bottom: 14px;
  font-size: 18px;
}
.lp-feature h3 { margin: 0 0 8px; color: var(--navy); font-size: 22px; line-height: 1.15; }
.lp-feature p { margin: 0; font-size: 16px; }
.lp-feature ul, .lp-panel-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 16px;
}
.lp-feature li, .lp-panel-list li {
  position: relative;
  padding-left: 24px;
}
.lp-feature li::before, .lp-panel-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .58em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
}
.lp-kicker { color: var(--cyan-dark); font-size: 13px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 8px; }
.lp-estimator {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}
.lp-estimator-panel { padding: 24px; }
.lp-estimate-result {
  min-height: 100%;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  padding: 28px;
}
.lp-estimate-result h3 { margin: 0 0 10px; font-size: 18px; color: #8adeff; text-transform: uppercase; letter-spacing: .1em; }
.lp-estimate-price { font-size: clamp(36px, 6vw, 62px); line-height: 1; font-weight: 900; margin: 8px 0 10px; }
.lp-range { height: 10px; background: rgba(255,255,255,.14); border-radius: 99px; overflow: hidden; margin: 18px 0 10px; }
.lp-range span { display: block; height: 100%; width: 52%; background: var(--cyan); border-radius: inherit; }
.lp-estimate-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.lp-meta-box { background: rgba(255,255,255,.08); border-radius: 6px; padding: 10px; }
.lp-meta-box strong { display: block; font-size: 20px; }
.lp-meta-box span { color: rgba(255,255,255,.68); font-size: 13px; }
.lp-note { font-size: 13px !important; color: rgba(255,255,255,.68) !important; margin-top: 14px !important; }
.lp-proof-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.lp-proof { background: var(--white); border: 1px solid rgba(0,31,73,.08); border-radius: 8px; padding: 20px; }
.lp-proof strong { display: block; color: var(--navy); font-size: 30px; line-height: 1; }
.lp-proof span { color: var(--muted); font-size: 14px; }
.lp-split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 36px; align-items: center; }
.lp-comparison { display: grid; gap: 14px; }
.lp-comparison-row {
  display: grid;
  grid-template-columns: 190px 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(0,31,73,.08);
  border-radius: 8px;
  background: rgba(0,31,73,.08);
}
.lp-comparison-row > div { background: var(--white); padding: 16px; }
.lp-comparison-row strong { color: var(--navy); }
.lp-comparison-head > div { background: var(--navy); color: var(--white); font-weight: 900; }
.lp-comparison-head strong { color: var(--white); }
.lp-person {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
}
.lp-person img { width: 92px; height: 116px; object-fit: cover; border-radius: 8px; }
.lp-person h3 { margin: 0 0 4px; color: var(--navy); font-size: 24px; }
.lp-person p { margin: 0; font-size: 16px; }
.lp-faq { display: grid; gap: 12px; }
.lp-faq details {
  background: var(--white);
  border: 1px solid rgba(0,31,73,.09);
  border-radius: 8px;
  padding: 18px 20px;
}
.lp-faq summary { cursor: pointer; color: var(--navy); font-size: 18px; font-weight: 900; }
.lp-faq p { margin: 12px 0 0; font-size: 16px; }
.lp-cta-band {
  background: var(--navy);
  color: var(--white);
  padding: 52px 0;
}
.lp-cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 26px; align-items: center; }
.lp-cta-band h2 { margin: 0 0 8px; color: var(--white); font-size: clamp(28px, 4vw, 44px); line-height: 1.08; }
.lp-cta-band p { margin: 0; color: rgba(255,255,255,.76); font-size: 18px; max-width: 760px; }
.lp-footer { background: #07162a; color: rgba(255,255,255,.72); padding: 42px 0; }
.lp-footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: start; }
.lp-footer strong { color: var(--white); }
.lp-footer a { color: #8adeff; font-weight: 800; }
@media (max-width: 920px) {
  .lp-nav-links { display: none; }
  .lp-hero-grid, .lp-estimator, .lp-split, .lp-cta-grid, .lp-footer-grid { grid-template-columns: 1fr; }
  .lp-hero { padding: 58px 0 44px; }
  .lp-grid-3, .lp-grid-2, .lp-proof-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .lp-container { width: min(100% - 28px, 1180px); }
  .lp-nav-inner { min-height: 64px; }
  .lp-logo img { width: 38px; height: 38px; }
  .lp-logo small { display: none; }
  .lp-nav-inner .lp-btn-secondary { display: none; }
  .lp-hero h1 { font-size: clamp(36px, 11vw, 52px); }
  .lp-hero p { font-size: 18px; }
  .lp-form-grid, .lp-grid-3, .lp-grid-2, .lp-proof-strip, .lp-estimate-meta { grid-template-columns: 1fr; }
  .lp-comparison-row { grid-template-columns: 1fr; }
  .lp-section { padding: 52px 0; }
  .lp-form-card, .lp-estimator-panel, .lp-estimate-result { padding: 20px; }
  .lp-person { grid-template-columns: 72px 1fr; }
  .lp-person img { width: 72px; height: 92px; }
}
