:root {
  --navy: #0d1b2a;
  --red: #c81d25;
  --gray: #6b7280;
  --soft: #f2f4f7;
  --white: #ffffff;
  --ink: #222b36;
  --line: #dfe4ea;
  --shadow: 0 24px 70px rgba(13, 27, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  background: var(--white);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  width: 58px;
  height: 44px;
  flex: 0 0 auto;
}

.brand strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.brand strong span {
  color: var(--gray);
  font-weight: 600;
}

.brand small {
  display: block;
  max-width: 300px;
  color: var(--gray);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a {
  padding: 10px 12px;
}

.nav-cta {
  color: var(--white);
  background: var(--red);
  border-radius: 6px;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.58fr);
  align-items: end;
  gap: 36px;
  padding: clamp(78px, 9vw, 130px) clamp(20px, 5vw, 72px) 48px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 27, 42, 0.92), rgba(13, 27, 42, 0.62) 54%, rgba(13, 27, 42, 0.34)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1800&q=80") center / cover;
}

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

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

.hero h1,
.section h2,
.contact h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(2.6rem, 7vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 2vw, 1.32rem);
  font-weight: 500;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--red);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.62);
}

.hero-panel {
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 390px;
  justify-self: end;
}

.metric {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.metric strong,
.metric span {
  display: block;
}

.metric strong {
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1;
}

.metric span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  color: var(--white);
  padding: 28px clamp(20px, 5vw, 72px);
}

.trust-strip article {
  min-height: 145px;
  padding: 10px clamp(16px, 2vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.trust-strip article:last-child {
  border-right: 0;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  border: 2px solid var(--red);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 800;
}

.trust-strip h2,
.service-grid h3,
.steps h3 {
  margin: 10px 0 4px;
  font-size: 1rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.trust-strip p,
.service-grid p,
.steps p,
.section p,
.contact p {
  margin: 0;
}

.trust-strip p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.section {
  padding: clamp(70px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.section h2,
.contact h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.9rem);
}

.section p,
.contact p {
  margin-top: 20px;
  color: #485360;
  font-weight: 500;
}

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

.service-grid article,
.steps article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 34px rgba(13, 27, 42, 0.07);
}

.service-grid h3,
.steps h3 {
  color: var(--navy);
}

.coverage {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: clamp(30px, 5vw, 64px);
  background: var(--soft);
}

.region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.region-list li {
  padding: 9px 12px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
}

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

.map-card img {
  display: block;
  width: 100%;
  height: auto;
}

.method {
  text-align: center;
}

.method > p,
.method > h2 {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
  text-align: left;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  border-radius: 50%;
  background: var(--navy);
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(300px, 0.7fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
  padding: clamp(72px, 8vw, 110px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(200, 29, 37, 0.96), rgba(13, 27, 42, 0.98)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 34%);
}

.contact h2,
.contact p,
.contact .eyebrow {
  color: var(--white);
}

.email-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--white);
  border-bottom: 2px solid rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #222b36;
  font-size: 0.88rem;
  font-weight: 600;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .split,
  .coverage,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    justify-self: start;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip article:nth-child(2) {
    border-right: 0;
  }

  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 86px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .trust-strip article,
  .trust-strip article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .trust-strip article:last-child {
    border-bottom: 0;
  }

  .map-card {
    border-radius: 6px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
