:root {
  --white: #ffffff;
  --bg: #f6f9fb;
  --text: #101c2c;
  --muted: #5b6b80;
  --line: #e3e9ef;

  --navy: #0a1f3a;
  --navy-mid: #0f2a4d;
  --navy-deep: #071527;

  --cyan: #3fb6df;
  --cyan-bright: #5fd0ee;
  --cyan-soft: #e7f7fc;

  --green: #7ed321;
  --green-bright: #9ee968;
  --green-dark: #1f7a3d;
  --green-soft: #eef9e4;

  --gradient: linear-gradient(90deg, var(--cyan) 0%, var(--green) 100%);
  --shadow: 0 12px 40px rgba(10, 31, 58, 0.12);
  --radius: 14px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

.container { width: min(1140px, 92%); margin: 0 auto; }

a { color: inherit; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-image {
  width: 170px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover { color: var(--cyan-bright); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  border: 0;
  background: var(--gradient);
  color: #06213a;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
}

.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(63, 182, 223, 0.35); }

.btn-sm { padding: 10px 18px; font-size: 0.92rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-full { width: 100%; }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--cyan);
}

.btn-outline:hover { background: var(--cyan-soft); }

.btn-on-dark {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn-on-dark:hover { background: rgba(255, 255, 255, 0.1); }

/* Hero */
.hero {
  background: var(--white);
  padding: 48px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-copy { max-width: 540px; }

.eyebrow,
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0 0 12px;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtext {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 28px;
  max-width: 48ch;
}

.hero-checks {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.hero-checks li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.92rem;
}

.hero-checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-dark);
  font-weight: 700;
}

/* Hero slider */
.hero-visual {
  margin: 0;
}

.hero-slider {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 520px;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(10, 31, 58, 0.82);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.hero-dots {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.hero-dot.is-active {
  background: var(--cyan-bright);
  transform: scale(1.15);
}

/* Trust strip */
.trust-strip {
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.trust-label {
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0 0 16px;
}

.trust-logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
}

.trust-logos li {
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
}

/* Sections */
.section { padding: 72px 0; }
.section-soft { background: var(--bg); }

.section-title {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.section-title.centered { text-align: center; margin-bottom: 36px; }

.body-copy {
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 24px;
}

/* Feature cards */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.feature-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: box-shadow 0.2s ease;
}

.feature-card:hover { box-shadow: var(--shadow); }

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--navy-deep);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: var(--navy);
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

/* Banner */
.banner-section {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.banner-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 21, 39, 0.94) 0%, rgba(10, 31, 58, 0.78) 55%, rgba(10, 31, 58, 0.4) 100%),
    url('https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.banner-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 520px;
  padding: 64px 0;
}

.banner-content h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
}

.banner-content p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.88);
}

/* State / map */
.state-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.map-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
}

.vic-map { width: 100%; max-width: 280px; margin: 0 auto 12px; }

.map-card p {
  margin: 0;
  font-weight: 600;
  color: var(--navy);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-badge {
  display: inline-block;
  margin: 14px 16px 6px;
  padding: 4px 12px;
  background: var(--green-soft);
  color: var(--green-dark);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.gallery-card p {
  margin: 0;
  padding: 0 16px 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Compare table */
.compare-table {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.compare-head,
.compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 12px;
  padding: 16px 20px;
  align-items: center;
}

.compare-head {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
}

.compare-highlight {
  color: var(--cyan-bright);
}

.compare-row {
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.compare-row span:first-child { font-weight: 600; color: var(--text); }
.compare-row span:nth-child(2) { color: var(--muted); }
.compare-yes { color: var(--green-dark); font-weight: 600; }

/* Steps */
.steps-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: steps;
}

.steps-grid li {
  text-align: center;
  padding: 0 12px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--navy-deep);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.steps-grid h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--navy);
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: #fff;
  padding: 64px 0;
}

.cta-banner-inner {
  text-align: center;
  max-width: 620px;
}

.cta-banner h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
}

.cta-banner p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.88);
}

/* Lead form */
.lead-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.lead-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

form label {
  display: block;
  margin-top: 12px;
  font-weight: 500;
  font-size: 0.92rem;
}

input, select {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--text);
  border-radius: 10px;
  font: inherit;
  transition: border-color 0.15s ease;
}

input:focus, select:focus {
  outline: none;
  border-color: var(--cyan);
}

.form-note {
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 12px;
}

.form-status {
  min-height: 18px;
  font-size: 0.86rem;
  margin-top: 8px;
}

/* FAQ */
.faq-wrap { max-width: 720px; }

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  margin-top: 12px;
}

summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
}

details p {
  color: var(--muted);
  margin: 10px 0 0;
  font-size: 0.94rem;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.88);
  padding: 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
}

.footer-logo {
  width: 150px;
  height: auto;
  object-fit: contain;
  margin-bottom: 12px;
}

.footer-brand p {
  margin: 0;
  font-size: 0.92rem;
  max-width: 32ch;
}

.footer-heading {
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}

.site-footer p { margin: 4px 0; font-size: 0.92rem; }

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  margin: 6px 0;
  font-size: 0.92rem;
}

.site-footer a:hover { color: var(--cyan-bright); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .feature-cards,
  .gallery,
  .steps-grid,
  .state-layout,
  .lead-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-links { display: none; }

  .logo-image { width: 130px; }

  .hero-slider {
    max-height: 420px;
    aspect-ratio: 1 / 1;
  }

  .compare-head,
  .compare-row {
    grid-template-columns: 1fr;
    gap: 6px;
    text-align: left;
  }

  .compare-head span:first-child { display: none; }
  .compare-row span:first-child {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--muted);
  }
}
