:root {
  --ink: #15212b;
  --muted: #5d6b75;
  --line: #d9e1e7;
  --paper: #f8faf9;
  --white: #ffffff;
  --navy: #18344a;
  --blue: #245b75;
  --teal: #0f766e;
  --amber: #d99b2b;
  --rust: #a64b2a;
  --shadow: 0 22px 60px rgba(21, 33, 43, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.notice {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 9px 20px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.88rem;
}

.notice span {
  color: #a6d4cc;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 250, 249, 0.92);
  border-bottom: 1px solid rgba(21, 33, 43, 0.1);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: conic-gradient(from 35deg, var(--amber), var(--rust), var(--teal), var(--amber));
  box-shadow: inset 0 0 0 5px var(--white), 0 0 0 1px rgba(21, 33, 43, 0.16);
}

.nav-links {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a,
.nav-cta {
  text-decoration: none;
}

.nav-cta {
  border: 1px solid var(--ink);
  border-radius: 4px;
  padding: 10px 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-response-team.jpg");
  background-size: cover;
  background-position: center right;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 27, 39, 0.92) 0%, rgba(13, 27, 39, 0.74) 34%, rgba(13, 27, 39, 0.18) 64%, rgba(13, 27, 39, 0.04) 100%),
    linear-gradient(0deg, rgba(13, 27, 39, 0.52), rgba(13, 27, 39, 0));
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  color: var(--white);
  padding: 86px 0 126px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #91d8ce;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

h1 {
  max-width: 720px;
  font-size: clamp(3.2rem, 6vw, 6.4rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.75rem);
}

h3 {
  margin: 0;
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.22rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 4px;
  padding: 13px 18px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  background: var(--amber);
  color: #15110a;
}

.button.secondary {
  border: 1px solid currentColor;
  color: inherit;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  margin: 48px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.trust-row div {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.trust-row div:last-child {
  border-right: 0;
}

.trust-row dt {
  font-size: 1.32rem;
  font-weight: 900;
}

.trust-row dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.section-inner {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.section-band {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 70px;
  padding: 84px 0;
}

.split > p,
.coverage p,
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.services,
.coverage,
.contact {
  padding: 96px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 720px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 210px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(21, 33, 43, 0.06);
}

.service-card p,
.steps p,
.faq-list p {
  color: var(--muted);
}

.icon-dot {
  display: block;
  width: 14px;
  height: 14px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 18px 0 0 var(--amber), 36px 0 0 var(--rust);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  background: var(--white);
}

.steps li {
  padding: 30px;
  border-right: 1px solid var(--line);
}

.steps li:last-child {
  border-right: 0;
}

.steps span {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--rust);
  font-weight: 900;
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
  align-items: start;
}

.coverage-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coverage-list li {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  font-weight: 800;
}

.faq {
  padding: 96px 0;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
  align-items: center;
  padding: 42px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.9), rgba(21, 33, 43, 0.98)),
    var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-panel .eyebrow,
.contact-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer span:first-child {
  color: var(--white);
  font-weight: 900;
}

@media (max-width: 900px) {
  .notice,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .notice {
    align-items: center;
    gap: 6px;
    padding: 7px 15px;
    font-size: 0.78rem;
    line-height: 1.2;
    text-align: center;
  }

  .nav {
    gap: 12px;
    padding: 10px 15px;
  }

  .brand {
    min-width: 0;
    white-space: normal;
  }

  .brand span:last-child {
    font-size: 0.98rem;
    line-height: 1.05;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    flex: 0 0 auto;
    padding: 9px 10px;
    font-size: 0.92rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    opacity: 0.38;
    background-position: 62% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(13, 27, 39, 0.94), rgba(13, 27, 39, 0.7));
  }

  .hero-content {
    padding: 72px 0 92px;
  }

  .trust-row,
  .split,
  .service-grid,
  .steps,
  .coverage-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .trust-row div,
  .steps li {
    border-right: 0;
    border-bottom: 1px solid rgba(21, 33, 43, 0.12);
  }

  .trust-row div:last-child,
  .steps li:last-child {
    border-bottom: 0;
  }

  .split,
  .services,
  .coverage,
  .faq,
  .contact {
    padding: 64px 0;
  }

  .contact-panel {
    padding: 30px;
  }
}

@media (max-width: 560px) {
  .section-inner,
  .hero-content {
    width: min(100% - 30px, 1180px);
  }

  .notice strong {
    display: none;
  }

  .brand-mark {
    width: 18px;
    height: 18px;
    box-shadow: inset 0 0 0 4px var(--white), 0 0 0 1px rgba(21, 33, 43, 0.16);
  }

  .nav {
    align-items: center;
  }

  .nav-cta {
    font-size: 0.88rem;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .coverage-list {
    grid-template-columns: 1fr;
  }
}
