:root {
  --blue: #1299d7;
  --blue-dark: #064b7c;
  --blue-deep: #083251;
  --orange: #f0642f;
  --lime: #eefe22;
  --ink: #17222c;
  --muted: #5f6d7b;
  --line: #dce8ef;
  --soft: #f4f9fc;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(8, 50, 81, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 232, 239, 0.9);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: clamp(152px, 18vw, 230px);
  height: 48px;
  object-fit: cover;
  object-position: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  padding: 8px 12px;
  color: #253746;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: #edf8fd;
  color: var(--blue-dark);
  outline: none;
}

.nav-menu .nav-cta {
  margin-left: 8px;
  gap: 8px;
  color: var(--white);
  background: var(--blue-dark);
}

.nav-menu .nav-cta:hover,
.nav-menu .nav-cta:focus-visible {
  color: var(--white);
  background: #03395f;
}

.nav-menu svg,
.button svg,
.text-link svg,
.floating-call svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--blue-dark);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.hero {
  position: relative;
  min-height: min(780px, calc(100svh - 56px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  z-index: -3;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 31, 52, 0.94) 0%, rgba(6, 53, 84, 0.78) 42%, rgba(6, 53, 84, 0.22) 72%),
    linear-gradient(0deg, rgba(5, 31, 52, 0.38), rgba(5, 31, 52, 0.1));
}

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

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

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

.hero .eyebrow {
  color: var(--lime);
}

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

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 6.9rem);
  font-weight: 950;
}

h2 {
  margin-bottom: 16px;
  color: var(--blue-deep);
  font-size: clamp(2rem, 3.6vw, 4rem);
  font-weight: 920;
}

h3 {
  margin-bottom: 10px;
  color: var(--blue-deep);
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

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

.hero-actions {
  margin-top: 30px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 18px;
  font-weight: 900;
  line-height: 1.15;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  color: #0c2434;
  background: var(--lime);
  box-shadow: 0 14px 32px rgba(238, 254, 34, 0.26);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #f5ff61;
}

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

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.18);
}

.button-light {
  color: var(--blue-deep);
  background: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  box-shadow: 0 12px 30px rgba(4, 39, 63, 0.18);
}

.hero-stats {
  width: min(680px, 100%);
  margin: 42px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.hero-stats div {
  min-width: 0;
  padding: 18px 18px 0 0;
}

.hero-stats dt {
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 950;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.risk-strip {
  background: var(--blue-deep);
  color: var(--white);
}

.risk-inner {
  min-height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
}

.risk-inner p {
  max-width: 430px;
  margin: 0;
  font-size: 1.18rem;
  font-weight: 850;
}

.risk-inner ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.risk-inner li {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 6px 11px;
  color: #fff7f4;
  background: rgba(240, 100, 47, 0.18);
  font-weight: 800;
}

.section {
  padding: 86px 0;
}

.benefits-section {
  background: var(--soft);
}

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

.section-heading p:last-child,
.service-copy p,
.companies-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

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

.benefit-card {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(8, 50, 81, 0.06);
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
}

.icon-badge {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: var(--radius);
  color: var(--blue-dark);
  background: #e7f8ff;
}

.icon-badge svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-section {
  padding: 88px 0;
  background: var(--white);
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.service-copy {
  position: sticky;
  top: 104px;
}

.text-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  color: var(--blue-dark);
  font-weight: 900;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--orange);
  outline: none;
}

.steps {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  counter-reset: steps;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: linear-gradient(90deg, #ffffff, #f7fcff);
}

.steps span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue);
  font-weight: 950;
}

.steps h3 {
  margin-bottom: 8px;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.companies-section {
  padding: 82px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 50, 81, 0.97), rgba(8, 50, 81, 0.88)),
    linear-gradient(135deg, var(--blue-deep), var(--blue-dark));
}

.companies-layout {
  display: grid;
  grid-template-columns: minmax(210px, 320px) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.logo-panel {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.logo-panel img {
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.companies-copy h2,
.companies-copy h3 {
  color: var(--white);
}

.companies-copy p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.78);
}

.company-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.company-tags span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  padding: 7px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-weight: 850;
}

.contact-section {
  padding: 74px 0;
  color: var(--white);
  background: var(--orange);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
}

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

.contact-section h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.contact-section .button-primary {
  background: var(--lime);
}

.footer {
  padding: 30px 0;
  background: #ffffff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-weight: 700;
}

.footer img {
  width: 180px;
  height: 42px;
  object-fit: cover;
  object-position: center;
}

.footer p {
  margin: 0;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-dark);
  box-shadow: 0 16px 36px rgba(8, 50, 81, 0.28);
}

.floating-call:hover,
.floating-call:focus-visible {
  background: #03395f;
  outline: 3px solid rgba(18, 153, 215, 0.22);
}

@media (max-width: 980px) {
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-layout,
  .companies-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-copy {
    position: static;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: 66px;
    width: min(100% - 24px, 1180px);
  }

  .brand img {
    width: 164px;
    height: 42px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-menu {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    display: grid;
    gap: 6px;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 42px rgba(8, 50, 81, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(-100% - 80px));
    transition: opacity 180ms ease, transform 200ms ease, visibility 200ms ease;
    visibility: hidden;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .nav-menu a {
    min-height: 46px;
    justify-content: flex-start;
  }

  .nav-menu .nav-cta {
    margin-left: 0;
  }

  .hero {
    min-height: calc(100svh - 128px);
  }

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

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 31, 52, 0.95), rgba(6, 53, 84, 0.76)),
      linear-gradient(0deg, rgba(5, 31, 52, 0.28), rgba(5, 31, 52, 0.1));
  }

  .hero-content {
    padding: 46px 0 52px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .button {
    width: 100%;
  }

  .hero-stats div {
    padding-top: 14px;
  }

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

  .section,
  .service-section,
  .companies-section,
  .contact-section {
    padding: 58px 0;
  }

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

  .benefit-card {
    min-height: auto;
  }

  .steps li {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .logo-panel {
    width: min(280px, 100%);
  }

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

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

  h1 {
    font-size: clamp(2.48rem, 17vw, 4.4rem);
  }

  h2 {
    font-size: clamp(1.82rem, 12vw, 2.7rem);
  }

  .floating-call {
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
