@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap");

:root {
  font-synthesis: none;
  --blue: #1556b3;
  --blue-2: #0b66d8;
  --navy: #06275b;
  --deep: #041b3d;
  --green: #5ebd34;
  --ink: #0b1b2f;
  --muted: #5d6878;
  --line: #d9e4ef;
  --soft: #f4f9fd;
  --white: #fff;
  --shadow: 0 20px 50px rgba(6, 39, 91, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.top-strip {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px clamp(18px, 5vw, 72px);
  background: var(--deep);
  color: #fff;
  font-weight: 800;
  font-size: .92rem;
}
.top-strip a { text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand img { width: 230px; height: auto; }
.main-nav {
  display: flex;
  gap: 18px;
  margin-left: auto;
  align-items: center;
}
.main-nav a {
  text-decoration: none;
  font-weight: 800;
  color: #173a69;
}
.main-nav a:hover { color: var(--blue); }
.call-btn,
.primary,
.quote-form button {
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  border: 0;
  border-radius: 6px;
  padding: 12px 17px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(21, 86, 179, .2);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.call-btn:hover,
.primary:hover,
.quote-form button:hover {
  transform: translateY(-1px);
  background: var(--blue-2);
  box-shadow: 0 12px 26px rgba(21, 86, 179, .28);
}
.secondary {
  border: 2px solid var(--blue);
  color: var(--blue);
  text-decoration: none;
  border-radius: 6px;
  padding: 10px 16px;
  font-weight: 900;
  background: #fff;
  transition: transform .18s ease, box-shadow .18s ease;
}
.secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(6, 39, 91, .12);
}
.breadcrumb {
  padding: 10px clamp(18px, 5vw, 72px);
  font-size: .9rem;
  background: #f8fbfe;
  border-bottom: 1px solid var(--line);
  color: #647287;
}
.breadcrumb a {
  font-weight: 900;
  color: var(--blue);
  text-decoration: none;
}
.breadcrumb span:before {
  content: "/";
  margin: 0 9px;
  color: #a0adba;
}

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--soft);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.84) 42%, rgba(255,255,255,.18) 78%),
    linear-gradient(180deg, rgba(6,39,91,.08), rgba(6,39,91,.18));
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 92vw);
  margin-left: clamp(18px, 5vw, 72px);
  padding: 46px 0;
}
.eyebrow,
.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 900;
  color: var(--green);
  font-size: .82rem;
  margin: 0 0 10px;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  background: #eaf7e5;
  border: 1px solid #cae9c1;
  border-radius: 999px;
  padding: 8px 12px;
}
.hero h1,
.page-hero h1,
.service-hero h1 {
  font-size: clamp(2.35rem, 4.6vw, 4.8rem);
  line-height: 1.02;
  margin: 12px 0 18px;
  color: var(--navy);
}
.hero p,
.page-hero p,
.service-hero p,
.intro p {
  font-size: 1.13rem;
  color: #293c52;
  max-width: 790px;
}
.hero p { max-width: 700px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.hero-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 900;
  font-size: .98rem;
  color: #123864;
}
.hero-checks li:before,
.check-list li:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
  vertical-align: -3px;
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.proof-bar div {
  background: #fff;
  padding: 24px clamp(18px, 3vw, 34px);
}
.proof-bar strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.proof-bar span { color: var(--muted); }
.intro,
.section-head,
.page-hero,
.quote-panel,
.content-grid,
.faq,
.split,
.proof,
.cta-band,
.review-section {
  padding: clamp(48px, 7vw, 90px) clamp(18px, 5vw, 72px);
}
.intro h2,
.section-head h2,
.quote-panel h2,
.content-grid h2,
.faq h2,
.split h2,
.proof h2,
.cta-band h2,
.review-section h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
  margin: 0 0 16px;
  color: var(--navy);
}
.intro {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 34px;
  align-items: start;
}
.intro-card {
  border-left: 5px solid var(--green);
  background: var(--soft);
  padding: 24px;
  border-radius: 8px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.trust-grid div {
  background: #fff;
  padding: 26px;
}
.trust-grid strong {
  display: block;
  color: var(--blue);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.trust-grid span { color: var(--muted); }

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(52px, 7vw, 86px);
}
.service-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(12,27,42,.06);
}
.service-card img {
  height: 190px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
}
.service-card div { padding: 18px; }
.service-card h3 {
  font-size: 1.05rem;
  line-height: 1.25;
  margin: 0 0 8px;
  color: #0d3f86;
}
.service-card p {
  color: var(--muted);
  font-size: .94rem;
}
.service-card a {
  font-weight: 900;
  color: var(--blue);
}
.service-card .tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  padding: 6px 10px;
  font-size: .78rem;
  font-weight: 900;
}

.split,
.proof,
.cta-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}
.split { background: var(--soft); }
.split img,
.service-hero img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.proof {
  background: #fff;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.proof-grid div,
.review-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #fff;
}
.proof-grid strong,
.review-card strong {
  display: block;
  color: var(--navy);
  margin-bottom: 8px;
}
.review-section { background: #fbfdff; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-card p { color: var(--muted); margin-bottom: 0; }

.cta-band {
  background: linear-gradient(135deg, var(--navy), #0d4c9a);
  color: #fff;
}
.cta-band h2,
.cta-band p { color: #fff; }
.suburb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.suburb-list a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  text-decoration: none;
  background: #fff;
  font-weight: 800;
  color: #143d72;
}

.quote-panel {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 36px;
  background: var(--navy);
  color: #fff;
  align-items: start;
}
.quote-panel h2,
.quote-panel p { color: #fff; }
.contact-strip {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}
.contact-strip a {
  font-weight: 900;
  color: #fff;
}
.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.quote-form label {
  display: grid;
  gap: 6px;
  font-weight: 900;
  font-size: .92rem;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #c8d5e2;
  border-radius: 6px;
  padding: 12px;
  font: inherit;
}
.quote-form label:has(textarea),
.quote-form button,
.form-note { grid-column: 1 / -1; }
.form-note {
  margin: 0;
  color: #596779;
  font-size: .88rem;
  line-height: 1.5;
}

.page-hero.compact {
  background: linear-gradient(135deg, #f6fbff, #fff);
  border-bottom: 1px solid var(--line);
}
.service-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: clamp(48px, 7vw, 88px) clamp(18px, 5vw, 72px);
  background: var(--soft);
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.check-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  margin: 12px 0;
}
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  margin: 12px 0;
  background: #fff;
}
.faq summary {
  font-weight: 900;
  color: #0d3f86;
  cursor: pointer;
}
.site-footer {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 28px;
  padding: 42px clamp(18px, 5vw, 72px);
  background: #061e42;
  color: #fff;
}
.site-footer img {
  width: 220px;
  background: #fff;
  border-radius: 6px;
  margin-bottom: 12px;
}
.site-footer h2 { font-size: 1rem; }
.site-footer a {
  display: block;
  color: #fff;
  margin: 6px 0;
}
.sticky-actions {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  display: flex;
  gap: 8px;
}
.sticky-actions a {
  background: var(--green);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 900;
  box-shadow: var(--shadow);
}
.sticky-actions a:first-child { background: var(--blue); }

@media (max-width: 1100px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .proof-bar,
  .proof-grid,
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .site-header { flex-wrap: wrap; }
  .main-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
  }
  .quote-panel,
  .service-hero,
  .split,
  .content-grid,
  .site-footer,
  .proof,
  .cta-band,
  .intro { grid-template-columns: 1fr; }
  .hero { min-height: 620px; }
  .hero:after { background: linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.74)); }
}

@media (max-width: 640px) {
  .top-strip {
    flex-direction: column;
    gap: 4px;
  }
  .brand img { width: 190px; }
  .call-btn {
    width: 100%;
    text-align: center;
  }
  .main-nav {
    overflow: auto;
    justify-content: flex-start;
  }
  .main-nav a { white-space: nowrap; }
  .hero h1,
  .page-hero h1,
  .service-hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .hero-checks {
    gap: 6px;
    margin-top: 16px;
    font-size: .92rem;
  }
  .hero-checks,
  .cards,
  .trust-grid,
  .proof-bar,
  .proof-grid,
  .review-grid,
  .quote-form { grid-template-columns: 1fr; }
  .hero { min-height: 560px; }
  .site-header { position: relative; }
  .hero-content { padding: 26px 0; }
  .intro,
  .section-head,
  .page-hero,
  .quote-panel,
  .content-grid,
  .faq,
  .split,
  .service-hero,
  .proof,
  .cta-band,
  .review-section {
    padding-left: 18px;
    padding-right: 18px;
  }
  .sticky-actions {
    left: 12px;
    right: 12px;
  }
  .sticky-actions a {
    flex: 1;
    text-align: center;
  }
}
