:root {
  --navy: #0b1f36;
  --navy-2: #102b4b;
  --blue: #256be5;
  --blue-soft: #eaf2ff;
  --amber: #f2a63b;
  --ink: #122036;
  --muted: #59677a;
  --line: #dce4ee;
  --paper: #f6f8fb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(12, 32, 55, 0.14);
  --radius: 22px;
  --shell: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  background: var(--white);
  padding: 10px 16px;
  border-radius: 8px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(11, 31, 54, 0.95);
  color: var(--white);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.18));
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 5px;
  color: #9fb3c9;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: #d9e4f1;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav .nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: transparent;
  padding: 11px;
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  padding: 76px 0 86px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -290px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(242, 166, 59, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.025), 0 0 0 120px rgba(255, 255, 255, 0.018);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 72px;
}

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

.eyebrow.light {
  color: var(--amber);
}

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

h1,
h2,
h3 {
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.1;
}

h1 {
  max-width: 640px;
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 5.6vw, 4.9rem);
  letter-spacing: -0.055em;
}

.hero-intro {
  max-width: 590px;
  margin-bottom: 32px;
  color: #c7d5e5;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  padding: 13px 20px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(37, 107, 229, 0.28);
}

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

.text-link {
  color: var(--white);
  font-weight: 700;
  text-underline-offset: 5px;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.photo-card {
  margin: 0;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(1.25deg);
}

.photo-card img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

.photo-card figcaption {
  padding: 11px 13px 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.route-card {
  position: absolute;
  right: -22px;
  bottom: -26px;
  width: 220px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 7px;
  border-radius: 15px;
  padding: 17px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.route-dot {
  width: 10px;
  height: 10px;
  border: 3px solid var(--blue);
  border-radius: 50%;
}

.route-dot:last-of-type {
  border-color: var(--amber);
}

.route-line {
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line), var(--line) 8px, transparent 8px, transparent 13px);
}

.route-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.route-card p:last-child {
  grid-column: 3;
}

.credibility {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.credibility-grid div {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-right: 1px solid var(--line);
}

.credibility-grid div:last-child {
  border-right: 0;
}

.credibility-grid span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.credibility-grid p {
  margin: 0;
  font-weight: 700;
}

.section {
  padding: 102px 0;
  scroll-margin-top: 78px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 42px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: -0.045em;
}

.section-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
}

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

.service-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--white);
}

.service-card.featured {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-14px);
  box-shadow: 0 18px 42px rgba(37, 107, 229, 0.22);
}

.service-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: auto;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 800;
}

.featured .service-number {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.service-card h3 {
  margin: 36px 0 12px;
  font-size: 22px;
}

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

.featured p {
  color: #dbe7fb;
}

.process-section {
  position: relative;
  overflow: hidden;
  background: var(--navy-2);
  color: var(--white);
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: linear-gradient(135deg, transparent 45%, var(--amber) 45%, var(--amber) 46%, transparent 46%);
  background-size: 54px 54px;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
}

.process-intro > p:last-child {
  margin-top: 24px;
  color: #b7c8da;
}

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

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 17px;
  padding: 21px;
  background: rgba(255, 255, 255, 0.055);
}

.steps > li > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--amber);
  color: var(--navy);
  font-weight: 800;
}

.steps h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.steps p {
  margin-bottom: 0;
  color: #b7c8da;
  font-size: 15px;
}

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

.company-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 90px;
  align-items: center;
}

.company-lead {
  margin-top: 24px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
}

.company-grid > div > p:last-child {
  color: var(--muted);
}

.company-facts {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}

.company-facts div {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 22px;
  padding: 19px 22px;
  border-bottom: 1px solid var(--line);
}

.company-facts div:last-child {
  border-bottom: 0;
}

.company-facts dt {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.company-facts dd {
  margin: 0;
  font-weight: 700;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 72px;
  align-items: start;
}

.contact-grid > div > p:last-child {
  margin-top: 24px;
  color: var(--muted);
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
  border-radius: var(--radius);
  padding: 28px;
  background: var(--white);
  box-shadow: 0 16px 48px rgba(12, 32, 55, 0.1);
}

.field {
  display: grid;
  gap: 7px;
}

.field.full,
.quote-form .full {
  grid-column: 1 / -1;
}

label {
  font-size: 14px;
  font-weight: 700;
}

input {
  width: 100%;
  min-height: 49px;
  border: 1px solid #cbd6e2;
  border-radius: 11px;
  padding: 11px 13px;
  background: #fbfcfe;
  color: var(--ink);
  font: inherit;
}

input:focus {
  outline: 3px solid rgba(37, 107, 229, 0.16);
  border-color: var(--blue);
}

.form-status {
  min-height: 24px;
  margin: -3px 0 0;
  color: var(--blue);
  font-weight: 700;
}

.site-footer {
  background: #07182a;
  color: #9fb2c7;
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.45fr 1.2fr auto;
  align-items: center;
  gap: 38px;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

.copyright {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero-grid,
  .process-grid,
  .company-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-grid {
    gap: 64px;
  }

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

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .service-card {
    min-height: 230px;
  }

  .service-card.featured {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 28px, 1160px);
  }

  .header-inner {
    min-height: 70px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 70px 0 auto;
    display: none;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px;
    background: var(--navy);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    padding: 14px;
  }

  .site-nav .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .hero {
    padding: 58px 0 72px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .hero-visual {
    padding-right: 8px;
  }

  .route-card {
    right: 0;
    bottom: -34px;
  }

  .credibility-grid {
    grid-template-columns: 1fr;
    padding: 10px 0;
  }

  .credibility-grid div {
    min-height: 62px;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .credibility-grid div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 78px 0;
    scroll-margin-top: 70px;
  }

  .company-facts div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .quote-form {
    grid-template-columns: 1fr;
    padding: 21px;
  }

  .field,
  .field.full,
  .quote-form .full {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
