:root {
  --navy-950: #061a33;
  --navy-900: #082a52;
  --navy-800: #0d3a6c;
  --navy-700: #15528f;
  --navy-100: #e7f0f9;
  --navy-50: #f4f8fc;
  --orange: #f26a10;
  --orange-dark: #d94f00;
  --orange-soft: #fff1e7;
  --ink: #102943;
  --muted: #5c7187;
  --line: #dce6f0;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(6, 26, 51, 0.08);
  --shadow-md: 0 18px 50px rgba(6, 26, 51, 0.13);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--navy-900);
  color: white;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220,230,240,.8);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { width: 210px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 5px; }
.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--navy-900);
  font-weight: 700;
  font-size: .94rem;
  transition: background .2s ease, color .2s ease;
}
.main-nav a:hover,
.main-nav a.active { background: var(--navy-100); color: var(--navy-800); }
.main-nav .nav-cta {
  margin-left: 5px;
  background: var(--orange);
  color: white;
}
.main-nav .nav-cta:hover,
.main-nav .nav-cta.active { background: var(--orange-dark); color: white; }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: white;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--navy-900);
  position: relative;
  transition: .2s ease;
}
.nav-toggle span::before,
.nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 17px;
  color: var(--navy-700);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 99px;
  background: var(--orange);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 78px;
  background:
    radial-gradient(circle at 90% 15%, rgba(242,106,16,.10), transparent 25%),
    linear-gradient(135deg, #fff 0%, var(--navy-50) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(21,82,143,.12);
  border-radius: 50%;
  top: -300px;
  right: -110px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -125px 34%;
  height: 245px;
  border-radius: 50% 0 0 0;
  border-top: 2px dashed rgba(21,82,143,.16);
  transform: rotate(-5deg);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 58px;
  align-items: center;
}
h1, h2, h3 { line-height: 1.14; margin-top: 0; color: var(--navy-950); }
h1 { font-size: clamp(2.65rem, 5.2vw, 4.8rem); letter-spacing: -.055em; margin-bottom: 24px; }
.page-hero h1 { font-size: clamp(2.45rem, 4.6vw, 4rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3.25rem); letter-spacing: -.04em; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
.lead { font-size: clamp(1.06rem, 1.8vw, 1.23rem); color: var(--muted); max-width: 680px; margin: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: white; box-shadow: 0 12px 25px rgba(242,106,16,.22); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-secondary { background: white; color: var(--navy-900); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { border-color: var(--navy-700); }
.btn-dark { background: var(--navy-900); color: white; }
.btn svg { width: 18px; height: 18px; }

.hero-panel {
  position: relative;
  min-height: 450px;
  border-radius: var(--radius-lg);
  padding: 30px;
  background: linear-gradient(145deg, var(--navy-950), var(--navy-700));
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.hero-panel::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  right: -160px;
  top: -145px;
  border: 42px solid rgba(255,255,255,.06);
}
.hero-panel::after {
  content: "";
  position: absolute;
  width: 170%;
  height: 165px;
  left: -25%;
  bottom: -68px;
  border-radius: 50%;
  border-top: 8px solid var(--orange);
  transform: rotate(-7deg);
  opacity: .95;
}
.route-line {
  height: 145px;
  position: relative;
  margin-bottom: 10px;
}
.route-line svg { width: 100%; height: 100%; overflow: visible; }
.route-line .pin { fill: white; opacity: .92; }
.route-line .path { stroke: rgba(255,255,255,.56); stroke-width: 3; fill: none; stroke-dasharray: 7 8; }
.panel-title { position: relative; z-index: 2; color: white; font-size: 1.05rem; font-weight: 800; margin-bottom: 16px; }
.hero-service-grid { position: relative; z-index: 2; display: grid; gap: 12px; }
.hero-service-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 17px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  color: white;
  backdrop-filter: blur(8px);
}
.hero-service-card .number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--orange);
  font-weight: 900;
}
.hero-service-card strong { display: block; font-size: 1.02rem; }
.hero-service-card span { display: block; color: rgba(255,255,255,.72); font-size: .91rem; margin-top: 3px; }

.page-hero { padding: 74px 0 68px; }
.page-hero .hero-grid { grid-template-columns: 1fr .62fr; }
.page-hero-card {
  border-radius: var(--radius-md);
  background: var(--navy-900);
  color: white;
  padding: 30px;
  box-shadow: var(--shadow-md);
}
.page-hero-card .mini-label { color: #b9d3ee; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; font-size: .72rem; }
.page-hero-card h3 { color: white; font-size: 1.45rem; margin: 9px 0 10px; }
.page-hero-card p { margin: 0; color: rgba(255,255,255,.76); }

.section { padding: 90px 0; }
.section-sm { padding: 70px 0; }
.section-soft { background: var(--navy-50); }
.section-dark { background: var(--navy-950); color: white; }
.section-dark h2,
.section-dark h3 { color: white; }
.section-dark .lead,
.section-dark p { color: rgba(255,255,255,.72); }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading.center .eyebrow { justify-content: center; }

.division-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.division-card {
  position: relative;
  padding: 34px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.division-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  right: -105px;
  bottom: -105px;
  background: var(--navy-100);
}
.division-card.orange::after { background: var(--orange-soft); }
.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--navy-100);
  color: var(--navy-800);
  margin-bottom: 23px;
}
.orange .card-icon { background: var(--orange-soft); color: var(--orange-dark); }
.card-icon svg { width: 27px; height: 27px; }
.card-kicker { color: var(--navy-700); font-weight: 900; font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; }
.orange .card-kicker { color: var(--orange-dark); }
.division-card h3 { font-size: 1.55rem; margin: 7px 0 11px; }
.division-card p { color: var(--muted); margin: 0 0 20px; }
.text-link { color: var(--navy-800); font-weight: 850; display: inline-flex; align-items: center; gap: 8px; position: relative; z-index: 2; }
.orange .text-link { color: var(--orange-dark); }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.check-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 11px; }
.check-list li { position: relative; padding-left: 29px; color: var(--muted); }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy-100);
  color: var(--navy-800);
  font-size: .76rem;
  font-weight: 900;
}
.orange .check-list li::before { background: var(--orange-soft); color: var(--orange-dark); }

.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.feature-card {
  padding: 27px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: white;
}
.feature-card .feature-number { color: var(--orange); font-weight: 900; font-size: .78rem; letter-spacing: .12em; }
.feature-card h3 { margin-top: 10px; }
.feature-card p { color: var(--muted); margin: 0; }
.section-dark .feature-card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.11); }
.section-dark .feature-card p { color: rgba(255,255,255,.68); }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.split.reverse { grid-template-columns: 1.1fr .9fr; }
.visual-card {
  min-height: 430px;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, var(--navy-900), var(--navy-700));
  position: relative;
  overflow: hidden;
  padding: 34px;
  box-shadow: var(--shadow-md);
}
.visual-card.orange-visual { background: linear-gradient(140deg, #fff7f1, #fff); border: 1px solid #ffd7bd; box-shadow: var(--shadow-sm); }
.visual-card::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  top: -150px;
  right: -120px;
}
.visual-card.orange-visual::before { border-color: rgba(242,106,16,.17); }
.visual-stack { position: relative; z-index: 2; display: grid; gap: 14px; margin-top: 78px; }
.visual-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 17px;
  border-radius: 16px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  color: white;
}
.orange-visual .visual-row { background: white; border-color: #fee0cc; color: var(--ink); box-shadow: var(--shadow-sm); }
.visual-row .dot { width: 46px; height: 46px; border-radius: 14px; background: var(--orange); display: grid; place-items: center; font-weight: 900; color: white; }
.visual-row strong { display: block; }
.visual-row small { display: block; color: rgba(255,255,255,.64); margin-top: 2px; }
.orange-visual .visual-row small { color: var(--muted); }

.process-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 17px; counter-reset: process; }
.process-step { counter-increment: process; padding: 26px; border-radius: 18px; background: white; border: 1px solid var(--line); }
.process-step::before {
  content: "0" counter(process);
  display: block;
  font-weight: 900;
  font-size: .8rem;
  letter-spacing: .1em;
  color: var(--orange);
  margin-bottom: 15px;
}
.process-step p { margin: 0; color: var(--muted); }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: white;
}
.stat-item { padding: 28px 26px; text-align: center; border-right: 1px solid var(--line); }
.stat-item:last-child { border-right: 0; }
.stat-item strong { display: block; color: var(--navy-900); font-size: 1.45rem; margin-bottom: 4px; }
.stat-item span { color: var(--muted); font-size: .94rem; }

.value-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
.value-card { padding: 28px; border-radius: 18px; border: 1px solid var(--line); background: white; }
.value-card h3 { display: flex; align-items: center; gap: 12px; }
.value-card h3 span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: var(--orange-soft); color: var(--orange-dark); font-size: .86rem; }
.value-card p { color: var(--muted); margin: 0; }

.service-section { padding: 36px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow-sm); }
.service-section + .service-section { margin-top: 28px; }
.service-top { display: grid; grid-template-columns: .7fr 1.3fr; gap: 45px; align-items: start; }
.service-badge { display: inline-flex; padding: 8px 12px; border-radius: 999px; background: var(--navy-100); color: var(--navy-800); font-size: .75rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.service-section.dispatch .service-badge { background: var(--orange-soft); color: var(--orange-dark); }
.service-section h2 { font-size: clamp(1.85rem,3vw,2.7rem); margin: 15px 0 12px; }
.service-section .service-intro { color: var(--muted); margin: 0; }
.service-detail-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.service-detail { padding: 18px; border-radius: 15px; background: var(--navy-50); }
.dispatch .service-detail { background: #fff8f3; }
.service-detail strong { display: block; margin-bottom: 4px; }
.service-detail span { color: var(--muted); font-size: .93rem; }
.audience-box { margin-top: 28px; padding: 18px 20px; border-left: 4px solid var(--navy-700); background: var(--navy-50); border-radius: 0 14px 14px 0; color: var(--muted); }
.dispatch .audience-box { border-left-color: var(--orange); background: #fff8f3; }
.audience-box strong { color: var(--ink); }

.reason-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
.reason-card { display: grid; grid-template-columns: 52px 1fr; gap: 17px; padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.reason-card .reason-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 15px; background: var(--navy-100); color: var(--navy-800); font-weight: 900; }
.reason-card:nth-child(even) .reason-icon { background: var(--orange-soft); color: var(--orange-dark); }
.reason-card p { margin: 0; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; }
.contact-card { padding: 32px; border-radius: var(--radius-md); border: 1px solid var(--line); background: white; box-shadow: var(--shadow-sm); }
.contact-card h3 { font-size: 1.45rem; }
.contact-card p { color: var(--muted); }
.contact-links { display: grid; gap: 13px; margin-top: 22px; }
.contact-link {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 13px;
  align-items: center;
  padding: 14px;
  border-radius: 14px;
  background: var(--navy-50);
  transition: transform .2s ease, background .2s ease;
}
.contact-link:hover { transform: translateX(3px); background: var(--navy-100); }
.contact-link .contact-icon { width: 43px; height: 43px; border-radius: 13px; display: grid; place-items: center; background: white; color: var(--navy-800); }
.contact-link strong { display: block; font-size: .88rem; }
.contact-link span { color: var(--muted); font-size: .91rem; word-break: break-word; }
.contact-link svg { width: 21px; height: 21px; }

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-700));
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  right: -135px;
  top: -180px;
  border: 45px solid rgba(255,255,255,.06);
}
.cta-band h2 { color: white; font-size: clamp(1.8rem,3vw,2.55rem); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.72); margin: 0; max-width: 680px; }
.cta-band .hero-actions { margin: 0; flex-shrink: 0; position: relative; z-index: 2; }

.site-footer { background: var(--navy-950); color: white; padding: 62px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .7fr .8fr; gap: 58px; }
.footer-brand img { width: 220px; filter: brightness(0) invert(1); opacity: .96; }
.footer-brand p { color: rgba(255,255,255,.65); max-width: 440px; margin: 18px 0 0; }
.footer-heading { font-size: .78rem; text-transform: uppercase; letter-spacing: .13em; color: #aac5e1; font-weight: 900; margin-bottom: 17px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.74); }
.footer-links a:hover { color: white; text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.11); color: rgba(255,255,255,.5); font-size: .86rem; }

.reveal { opacity: 1; transform: none; }
.reveal.animate-ready { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.animate-ready.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal, .reveal.animate-ready { opacity: 1; transform: none; }
}

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: white;
    padding: 16px 20px 22px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
  }
  .main-nav.open { display: flex; }
  .main-nav a { border-radius: 12px; }
  .main-nav .nav-cta { margin-left: 0; text-align: center; }
  .hero-grid,
  .page-hero .hero-grid,
  .split,
  .split.reverse,
  .service-top { grid-template-columns: 1fr; }
  .hero-panel { min-height: 410px; }
  .page-hero-card { max-width: 620px; }
  .feature-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .process-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .cta-band { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand img { width: 180px; }
  .nav-wrap { min-height: 74px; }
  .hero, .page-hero { padding: 60px 0 56px; }
  .hero-grid { gap: 38px; }
  h1 { font-size: clamp(2.35rem, 12.5vw, 3.45rem); }
  .section { padding: 68px 0; }
  .section-sm { padding: 54px 0; }
  .division-grid,
  .feature-grid,
  .process-grid,
  .value-grid,
  .service-detail-grid,
  .reason-grid,
  .contact-grid,
  .stat-strip { grid-template-columns: 1fr; }
  .division-card,
  .service-section,
  .contact-card { padding: 25px; }
  .stat-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat-item:last-child { border-bottom: 0; }
  .reason-card { grid-template-columns: 44px 1fr; padding: 22px; }
  .reason-card .reason-icon { width: 44px; height: 44px; }
  .hero-panel { min-height: 0; padding: 23px; }
  .route-line { height: 110px; }
  .hero-service-card { grid-template-columns: 36px 1fr; }
  .hero-service-card .number { width: 36px; height: 36px; }
  .visual-card { min-height: 390px; padding: 22px; }
  .cta-band { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

.check-list.orange li::before { background: var(--orange-soft); color: var(--orange-dark); }
