:root {
  --bg: #f2f7fc;
  --surface: #ffffff;
  --surface-alt: #e8f2fb;
  --ink: #15263a;
  --muted: #5b6f84;
  --brand: #0b66c2;
  --brand-dark: #084f96;
  --accent: #e54c2e;
  --ok: #067a46;
  --border: #d4e2f1;
  --shadow: 0 20px 45px rgba(13, 40, 70, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #0a1f35;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  text-decoration: none;
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 5px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(17, 42, 69, 0.2);
  box-shadow: 0 6px 18px rgba(5, 16, 30, 0.35);
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 9px;
}

.brand strong {
  display: block;
  font-size: 1.05rem;
}

.brand span {
  display: block;
  font-size: 0.83rem;
  color: #d8e6f7;
}

.topbar-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.response {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(6, 122, 70, 0.24);
  color: #d4fae8;
  font-size: 0.82rem;
}

.topbar-cta a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  background: var(--accent);
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
}

.hero {
  background: linear-gradient(165deg, #0d355f, #092541 60%, #0f2e52);
  color: #fff;
  padding: 3.3rem 0 2.6rem;
}

.hero-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.kicker {
  margin: 0;
  color: #89cffd;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  margin: 0.55rem 0 0.9rem;
  max-width: 20ch;
}

.hero-copy > p {
  max-width: 58ch;
  color: #d5e7f9;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1.35rem 0;
}

.btn {
  text-decoration: none;
  font-weight: 700;
  border-radius: 10px;
  padding: 0.8rem 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

.tick-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.tick-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #dbeaf8;
}

.tick-list li::before {
  content: "✓";
  width: 1.4rem;
  height: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(6, 122, 70, 0.9);
  font-weight: 800;
}

.quote-card {
  background: #fff;
  color: var(--ink);
  border-radius: 16px;
  padding: 1.3rem;
  box-shadow: var(--shadow);
}

.catchment-card {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border-radius: 16px;
  padding: 1.3rem;
  box-shadow: var(--shadow);
}

.catchment-card h2 {
  font-size: 1.45rem;
}

.catchment-card p {
  margin: 0.75rem 0 1rem;
  color: var(--muted);
}

.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}

.map-wrap iframe {
  display: block;
}

.quote-card h2 {
  font-size: 1.45rem;
}

.quote-card p {
  margin: 0.75rem 0 1rem;
  color: var(--muted);
}

.call-pill {
  text-decoration: none;
  color: #fff;
  background: linear-gradient(140deg, var(--brand), var(--brand-dark));
  border-radius: 12px;
  padding: 0.9rem 1rem;
  display: block;
  margin-bottom: 1rem;
}

.call-pill strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.3rem;
}

.quote-card dl {
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.quote-card dt {
  color: var(--muted);
  font-size: 0.85rem;
}

.quote-card dd {
  margin: 0.2rem 0 0;
  font-size: 1.25rem;
  font-weight: 800;
}

.proof {
  margin-top: -1.2rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.proof article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(13, 40, 70, 0.08);
  padding: 1rem;
}

.proof h3 {
  font-size: 1.02rem;
}

.proof p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.testimonials {
  padding: 3rem 0;
}

.carousel-window {
  margin-top: 1.4rem;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-track {
  display: flex;
  width: 200%;
  gap: 0.9rem;
  animation: testimonial-slide 20s ease-in-out infinite;
}

.testimonial {
  flex: 0 0 calc(100% / 6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(13, 40, 70, 0.08);
  padding: 1rem;
}

.testimonial p {
  margin: 0;
  color: var(--muted);
}

.testimonial strong {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.92rem;
}

.services,
.process,
.coverage {
  padding: 3rem 0;
}

.section-heading h2 {
  margin-top: 0.4rem;
  font-size: clamp(1.55rem, 3.3vw, 2.2rem);
}

.services-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.services article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
}

.services h3 {
  font-size: 1.08rem;
}

.services p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.process {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  align-items: start;
}

.process ol {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.8rem;
}

.process li {
  padding: 0.55rem 0;
}

.process span {
  display: block;
  color: var(--muted);
  margin-top: 0.2rem;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1rem;
}

.coverage p {
  color: var(--muted);
}

.coverage ul {
  margin: 0;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.coverage li {
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  background: #f7fbff;
  border: 1px solid #e4effa;
}

footer {
  background: #0a1f35;
  color: #eaf2fb;
  padding: 1.1rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

footer p {
  margin: 0;
}

footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

@keyframes testimonial-slide {
  0%,
  16% {
    transform: translateX(0);
  }
  20%,
  36% {
    transform: translateX(-16.666%);
  }
  40%,
  56% {
    transform: translateX(-33.333%);
  }
  60%,
  76% {
    transform: translateX(-50%);
  }
  80%,
  100% {
    transform: translateX(0);
  }
}

@media (max-width: 1000px) {
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial {
    flex-basis: calc(100% / 3);
  }
}

@media (max-width: 760px) {
  .topbar {
    position: static;
  }

  .topbar-inner,
  .hero-grid,
  .process-grid,
  .coverage-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .topbar-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-cta {
    justify-content: flex-start;
  }

  .proof {
    margin-top: 0;
    padding-top: 1rem;
  }

  .proof-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .carousel-track {
    width: 600%;
    animation-duration: 24s;
  }

  .testimonial {
    flex-basis: calc(100% / 6);
  }


}

@media (prefers-reduced-motion: reduce) {
  .carousel-track {
    animation: none;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonial {
    flex-basis: auto;
  }
}
