@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/inter-latin-wght-normal.woff2") format("woff2");
}

:root {
  --ink: #2b2b2b;
  --ink-soft: #4a4a4a;
  --grey: #8a8a8a;
  --grey-soft: #f5f5f4;
  --border: #e3e3e3;
  --steel: #5d6770;
  --steel-deep: #3f474e;
  --orange: #f08a1c;
  --orange-deep: #d9760d;
  --orange-soft: #fdecd6;
  --money: #1f7a4d;
  --danger: #c0392b;
  --radius: 14px;
  --shadow: 0 8px 28px rgba(43, 43, 43, 0.08);
  --font: "Inter", "Helvetica Neue", Arial, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: #fff;
  font-feature-settings: "tnum";
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 0.5em; color: var(--steel-deep); letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 5.2vw, 3.1rem); font-weight: 800; }
h2 { font-size: clamp(1.55rem, 3.4vw, 2.1rem); font-weight: 750; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1em; }
.muted { color: var(--grey); }
.small { font-size: 0.92rem; }
.center { text-align: center; }
.accent { color: var(--orange); }

.wrap { width: min(1080px, 100% - 2.5rem); margin: 0 auto; }
.wrap.narrow { width: min(760px, 100% - 2.5rem); }
section { padding: clamp(2.6rem, 6vw, 4.5rem) 0; }
.band { background: var(--grey-soft); }
.intro { font-size: 1.08rem; color: var(--ink-soft); max-width: 62ch; }

/* header */
.top {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.top-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 66px; }
.brand img { height: 42px; width: auto; }
.top-call .ico { width: 18px; height: 18px; fill: currentColor; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.7rem 1.2rem; border-radius: 999px; font-weight: 700; font-size: 1rem;
  border: 2px solid transparent; cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform 0.08s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn.primary { background: var(--orange); color: #fff; box-shadow: 0 6px 18px rgba(240, 138, 28, 0.35); }
.btn.primary:hover { background: var(--orange-deep); }
.btn.secondary { background: #fff; color: var(--steel-deep); border-color: var(--steel); }
.btn.secondary:hover { background: var(--grey-soft); }
.btn.big { padding: 0.95rem 1.6rem; font-size: 1.08rem; }
.btn[disabled] { opacity: 0.6; cursor: wait; transform: none; }

/* hero */
.hero { background: linear-gradient(180deg, var(--orange-soft) 0%, #fff 78%); padding-top: clamp(2.2rem, 5vw, 4rem); }
.hero-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 2.5rem; align-items: start; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.8rem; font-weight: 700; color: var(--steel); margin-bottom: 0.9rem; }
.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 56ch; }
.price-line { font-size: 1.12rem; margin: 0.4rem 0 1.4rem; }
.price-line strong { color: var(--money); font-size: 1.25rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.4rem; }
.trust { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.35rem; font-size: 0.98rem; color: var(--ink-soft); }
.tick { color: var(--money); font-weight: 800; margin-right: 0.3rem; }
.star { color: var(--orange); font-weight: 800; margin-right: 0.3rem; }
.hero-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.5rem 1.6rem; border-top: 5px solid var(--orange);
}
.hero-card h2 { font-size: 1.2rem; margin-bottom: 0.9rem; }
.checks { list-style: none; padding: 0; margin: 0 0 1rem; display: grid; gap: 0.55rem; }
.checks li { padding-left: 1.7rem; position: relative; }
.checks li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--money); font-weight: 800; }

/* cards + grids */
.grid { display: grid; gap: 1.1rem; margin: 1.4rem 0; }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.35rem 1.4rem;
  border-left: 4px solid var(--orange);
}
.card.slim { border-left-color: var(--steel); }
.card h3 { margin-bottom: 0.4rem; }
.card p:last-child { margin-bottom: 0; }
.big-num { font-size: 1.5rem; font-weight: 800; color: var(--money); margin: 0 0 0.5rem; }

/* steps */
.steps { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.steps li { display: flex; gap: 0.9rem; align-items: flex-start; }
.num {
  flex: 0 0 40px; width: 40px; height: 40px; border-radius: 50%; background: var(--orange); color: #fff;
  font-weight: 800; display: grid; place-items: center; font-size: 1.05rem;
}
.steps h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.steps p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }

/* suburbs + chips */
.suburbs-head { margin-top: 2rem; }
.suburbs { color: var(--ink-soft); line-height: 1.9; }
.chips { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 1rem 0 1.2rem; }
.chips span { background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 0.4rem 0.9rem; font-weight: 600; font-size: 0.95rem; color: var(--steel-deep); }

/* reviews */
.review { border-left-color: var(--orange); }
.review .who { font-weight: 700; color: var(--steel-deep); margin: 0.6rem 0 0; font-size: 0.95rem; }
.review .stars { color: var(--orange); letter-spacing: 0.1em; }

/* faq */
details { border-bottom: 1px solid var(--border); padding: 0.85rem 0; }
details summary { cursor: pointer; font-weight: 700; color: var(--steel-deep); font-size: 1.05rem; list-style: none; position: relative; padding-right: 2rem; }
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; position: absolute; right: 0.2rem; top: -0.1rem; color: var(--orange); font-size: 1.5rem; font-weight: 700; }
details[open] summary::after { content: "–"; }
details p { margin: 0.7rem 0 0; color: var(--ink-soft); }

/* form */
.quote { background: linear-gradient(180deg, #fff 0%, var(--orange-soft) 100%); }
form { display: grid; gap: 1.1rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); }
.field { display: grid; gap: 0.4rem; margin: 0; padding: 0; border: 0; min-width: 0; }
label, legend { font-weight: 700; color: var(--steel-deep); font-size: 0.98rem; }
input[type="text"], input[type="tel"], input[type="email"], textarea {
  width: 100%; font: inherit; padding: 0.8rem 0.9rem; border: 1.5px solid var(--border); border-radius: 10px; background: #fff; color: var(--ink);
}
input:focus, textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(240, 138, 28, 0.2); }
input.invalid, textarea.invalid { border-color: var(--danger); }
.choice-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.choice-row label { position: relative; font-weight: 600; }
.choice-row input { position: absolute; opacity: 0; width: 0; height: 0; }
.choice-row span { display: inline-block; padding: 0.5rem 0.95rem; border: 1.5px solid var(--border); border-radius: 999px; background: #fff; cursor: pointer; }
.choice-row input:checked + span { background: var(--steel-deep); color: #fff; border-color: var(--steel-deep); }
.choice-row input:focus-visible + span { box-shadow: 0 0 0 3px rgba(240, 138, 28, 0.35); }
.hp { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }
.form-error { color: var(--danger); font-weight: 600; margin: 0; }
form .btn { justify-self: start; }

/* footer */
.foot { background: var(--steel-deep); color: #e8e9ea; padding: 2.5rem 0 6rem; font-size: 0.95rem; }
.foot a { color: #fff; }
.foot-logo { height: 44px; width: auto; background: #fff; padding: 6px 10px; border-radius: 8px; margin-bottom: 1.1rem; }
.foot p { margin-bottom: 0.4rem; }

/* sticky mobile bar */
.stickybar { display: none; }

/* responsive */
@media (max-width: 900px) {
  .grid.three { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .hero-grid, .grid.three, .grid.two, .steps { grid-template-columns: 1fr; }
  .top-row { height: 58px; }
  .brand img { height: 34px; }
  .top-call span { display: none; }
  .top-call { padding: 0.6rem; width: 42px; height: 42px; }
  .cta-row .btn { flex: 1 1 100%; }
  form { padding: 1.2rem; }
  form .btn { justify-self: stretch; }
  .stickybar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
    padding: 0.6rem 0.8rem calc(0.6rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96); border-top: 1px solid var(--border);
    backdrop-filter: blur(8px);
  }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
