:root {
  --orange: #f15a24;
  --deep-orange: #e94b10;
  --blue: #0b5f9e;
  --navy: #05263f;
  --navy-2: #08385d;
  --gray: #8b9497;
  --text: #122033;
  --muted: #5c6773;
  --bg: #f6f8fa;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(5, 38, 63, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(241, 90, 36, 0.10), transparent 34rem),
    radial-gradient(circle at top right, rgba(11, 95, 158, 0.12), transparent 38rem),
    var(--bg);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 68vh;
  display: grid;
  align-items: center;
  padding: 42px 0 26px;
}

.hero-copy {
  display: grid;
  gap: 34px;
  align-items: center;
}

.brand-card {
  width: 100%;
  display: block;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(5, 38, 63, 0.08);
}

.intro {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--deep-orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
}

.eyebrow.light {
  color: #fff4ec;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.25rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.lead {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--deep-orange));
  box-shadow: 0 14px 28px rgba(241, 90, 36, 0.28);
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  border: 2px solid rgba(5, 38, 63, 0.14);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 18px 0 34px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(5, 38, 63, 0.10);
  border: 1px solid rgba(5, 38, 63, 0.08);
}

.service-strip article {
  padding: 28px 22px;
  text-align: center;
  border-right: 1px solid rgba(5, 38, 63, 0.12);
}

.service-strip article:last-child {
  border-right: none;
}

.icon {
  color: var(--orange);
  font-size: 2.2rem;
  line-height: 1;
}

.service-strip h2 {
  margin: 15px 0 8px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: 1.15rem;
}

.service-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.cta-band {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 28px;
  padding: 34px;
  border-radius: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--deep-orange));
  box-shadow: 0 20px 60px rgba(241, 90, 36, 0.25);
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.cta-band p {
  max-width: 660px;
  margin: 10px 0 0;
  font-size: 1.08rem;
  line-height: 1.5;
}

.button.dark {
  flex: 0 0 auto;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 14px 30px rgba(5, 38, 63, 0.28);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  margin-bottom: 32px;
  border-radius: 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: 0 18px 50px rgba(5, 38, 63, 0.16);
}

.trust-bar div {
  padding: 24px 18px;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.trust-bar div:last-child {
  border-right: none;
}

footer {
  padding: 18px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 22px, 1180px);
  }

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

  .brand-card {
    border-radius: 16px;
  }

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

  .service-strip article:nth-child(2) {
    border-right: none;
  }

  .service-strip article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(5, 38, 63, 0.12);
  }

  .cta-band {
    display: block;
    text-align: center;
    padding: 28px 22px;
  }

  .cta-band .button {
    margin-top: 22px;
    width: 100%;
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }

  .trust-bar div {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .trust-bar div:last-child {
    border-bottom: none;
  }
}

@media (max-width: 520px) {
  .actions .button {
    width: 100%;
  }

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

  .service-strip article {
    border-right: none;
    border-bottom: 1px solid rgba(5, 38, 63, 0.12);
  }

  .service-strip article:last-child {
    border-bottom: none;
  }
}
