:root {
  --ink: #172027;
  --muted: #596772;
  --line: #d8e1e7;
  --paper: #f7fafb;
  --white: #ffffff;
  --teal: #007c89;
  --teal-dark: #005d67;
  --amber: #f2b642;
  --navy: #233b53;
  --shadow: 0 18px 50px rgba(18, 34, 45, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(18, 32, 42, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: #10242b;
  background: var(--amber);
  font-weight: 800;
}

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

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 15px;
}

nav a {
  color: rgba(255, 255, 255, 0.86);
}

.header-call {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #16252d;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 26, 34, 0.9) 0%, rgba(10, 26, 34, 0.72) 42%, rgba(10, 26, 34, 0.18) 100%),
    linear-gradient(0deg, rgba(10, 26, 34, 0.55), rgba(10, 26, 34, 0.05));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 78px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 22px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 800;
  border: 1px solid transparent;
}

.btn-primary {
  color: #10242b;
  background: var(--amber);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-stats span {
  padding: 9px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1120px, calc(100% - 36px));
  margin: -42px auto 0;
  position: relative;
  z-index: 4;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--line);
}

.trust-band div {
  padding: 24px;
  background: var(--white);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  font-size: 21px;
}

.trust-band span {
  margin-top: 5px;
  color: var(--muted);
}

.section,
.process,
.contact {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 92px 0 72px;
}

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

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

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

.service-card,
.step,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(25, 43, 56, 0.06);
}

.service-card {
  min-height: 212px;
  padding: 24px;
}

.service-card .icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal);
  font-weight: 800;
}

.service-card p,
.step p {
  margin: 12px 0 0;
  color: var(--muted);
}

.service-card.highlight {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.service-card.highlight p {
  color: rgba(255, 255, 255, 0.78);
}

.service-card.highlight .icon {
  color: #10242b;
  background: var(--amber);
}

.process {
  padding: 74px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.compact {
  margin-bottom: 26px;
}

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

.step {
  padding: 24px;
}

.step span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal-dark);
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: 32px;
  padding: 82px 0 96px;
}

.contact p {
  color: var(--muted);
  font-size: 18px;
}

.contact-panel {
  padding: 28px;
}

.contact-panel span {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.contact-panel > a {
  display: block;
  margin-top: 6px;
  color: var(--teal-dark);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 900;
}

.contact-panel .btn-secondary {
  color: var(--teal-dark);
  border-color: var(--line);
  background: var(--paper);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.72);
  background: #172027;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.mobile-actions {
  display: none;
}

@media (max-width: 880px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

  .hero img {
    object-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(10, 26, 34, 0.92) 0%, rgba(10, 26, 34, 0.76) 58%, rgba(10, 26, 34, 0.3) 100%);
  }

  .hero-content {
    width: min(620px, calc(100% - 36px));
    margin: 0 auto;
  }

  .trust-band,
  .service-grid,
  .steps,
  .contact {
    grid-template-columns: 1fr;
  }

  .trust-band {
    margin-top: 18px;
  }

  .section {
    padding-top: 70px;
  }

  .contact {
    padding-bottom: 112px;
  }

  .site-footer {
    display: block;
    padding-bottom: 92px;
  }

  .site-footer p + p {
    margin-top: 8px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 30;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(23, 32, 39, 0.92);
    box-shadow: var(--shadow);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    min-height: 48px;
    border-radius: 8px;
    color: #10242b;
    background: var(--amber);
    font-weight: 900;
  }

  .mobile-actions a + a {
    color: var(--white);
    background: var(--teal);
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 14px;
  }

  .hero {
    min-height: 88vh;
  }

  h1 {
    font-size: 39px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .btn {
    width: 100%;
  }

  .hero-stats span {
    width: 100%;
  }

  .trust-band div,
  .service-card,
  .step,
  .contact-panel {
    padding: 20px;
  }
}
