:root {
  --ink: #11222b;
  --muted: #5c6f78;
  --line: #d8e4e3;
  --mist: #f4f8f6;
  --white: #ffffff;
  --teal: #0a8f93;
  --teal-dark: #05686b;
  --leaf: #77a642;
  --navy: #0c2733;
  --shadow: 0 18px 45px rgba(17, 34, 43, 0.13);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 228, 227, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

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

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 26px);
  margin-left: auto;
  font-size: 0.92rem;
  font-weight: 800;
}

.primary-nav a {
  color: var(--navy);
}

.header-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.header-call {
  padding: 0 18px;
  background: var(--teal);
  color: var(--white);
}

.btn {
  border: 0;
  cursor: pointer;
  padding: 0 22px;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(10, 143, 147, 0.24);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.78);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

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

.hero-media {
  background: url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?q=80&w=1900&auto=format&fit=crop") center / cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(8, 30, 40, 0.88) 0%, rgba(8, 30, 40, 0.66) 48%, rgba(8, 30, 40, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  color: var(--white);
  padding: 80px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--leaf);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #a6d86d;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 5.5vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--navy);
  color: var(--white);
}

.trust-strip span {
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
  font-weight: 850;
}

.section {
  padding: clamp(64px, 8vw, 110px) clamp(18px, 4vw, 56px);
}

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

.section-heading p {
  color: var(--muted);
  font-size: 1.04rem;
}

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

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

.service-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card div {
  padding: 20px;
}

.service-card p,
.split-copy p,
.site-footer p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: var(--mist);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 750;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--teal);
  box-shadow: 6px 6px 0 rgba(119, 166, 66, 0.35);
}

.feature-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mini-grid span,
.area-regions span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: var(--mist);
  font-weight: 800;
}

.area-section {
  background: var(--white);
}

.area-regions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(64px, 8vw, 110px) clamp(18px, 4vw, 56px);
  background: var(--navy);
  color: var(--white);
}

.quote-copy {
  max-width: 440px;
}

.quote-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.quote-copy a {
  color: #a6d86d;
  font-weight: 900;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 34px);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cbdad9;
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(10, 143, 147, 0.2);
  border-color: var(--teal);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer div:last-child {
  display: grid;
  gap: 8px;
  text-align: right;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .primary-nav,
  .header-call {
    display: none;
  }

  .site-header.is-open .primary-nav,
  .site-header.is-open .header-call {
    display: flex;
    width: 100%;
  }

  .site-header.is-open .primary-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .primary-nav a {
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }

  .header-call {
    margin-left: 0;
  }

  .trust-strip,
  .service-grid,
  .split,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .trust-strip span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
  }

  .brand small {
    font-size: 0.62rem;
  }

  .hero {
    min-height: 620px;
  }

  .hero-overlay {
    background: rgba(8, 30, 40, 0.75);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero-actions,
  .hero-actions .btn,
  .quote-form .btn {
    width: 100%;
  }

  .form-row,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }

  .site-footer div:last-child {
    text-align: left;
  }
}
