:root {
  --navy: #061b36;
  --navy-soft: #0d2a50;
  --blue: #0e72ec;
  --blue-bright: #249cff;
  --blue-pale: #edf6ff;
  --ink: #0a2345;
  --text: #52627a;
  --line: #dce7f2;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site-header {
  height: 82px;
  padding: 0 clamp(24px, 5vw, 78px);
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 8px 28px rgba(6, 27, 54, .16);
}

.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 27px; font-weight: 750; letter-spacing: -1px; }
.brand-mark { display: inline-flex; width: 42px; height: 42px; color: var(--blue-bright); }
.brand-mark svg { width: 100%; height: 100%; }
.nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 46px); font-size: 15px; font-weight: 600; }
.nav > a:not(.header-cta) { position: relative; padding: 29px 0; }
.nav > a:not(.header-cta)::after { content: ""; position: absolute; height: 2px; left: 0; right: 100%; bottom: 20px; background: var(--blue-bright); transition: right .2s ease; }
.nav > a:not(.header-cta):hover::after { right: 0; }
.header-cta { background: var(--blue); padding: 14px 21px; border-radius: 10px; box-shadow: 0 8px 22px rgba(14, 114, 236, .2); transition: transform .2s ease, background .2s ease; }
.header-cta:hover { background: #0864d5; transform: translateY(-2px); }
.menu-button { display: none; border: 0; background: transparent; padding: 8px; }
.menu-button span { display: block; width: 25px; height: 2px; background: white; margin: 5px 0; }

.hero {
  max-width: 1480px;
  margin: auto;
  padding: clamp(52px, 6vw, 86px) clamp(24px, 5vw, 78px) 52px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.35fr);
  gap: clamp(42px, 5vw, 72px);
  align-items: center;
  background: radial-gradient(circle at 20% 20%, #f3f9ff 0, transparent 38%);
}

.eyebrow { color: var(--blue); text-transform: uppercase; letter-spacing: .13em; font-size: 14px; font-weight: 800; margin: 0 0 20px; }
.hero h1 { font-size: clamp(48px, 5.3vw, 76px); line-height: 1.04; letter-spacing: -.048em; margin: 0; max-width: 620px; }
.hero h1 span { color: var(--blue); }
.hero-text { color: var(--text); font-size: clamp(18px, 1.6vw, 23px); line-height: 1.6; max-width: 620px; margin: 28px 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; border-radius: 11px; padding: 0 27px; font-weight: 750; border: 2px solid transparent; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: linear-gradient(135deg, var(--blue), #1688fa); color: white; box-shadow: 0 12px 26px rgba(14, 114, 236, .22); }
.button.primary:hover { box-shadow: 0 16px 32px rgba(14, 114, 236, .3); }
.button.secondary { color: var(--blue); border-color: var(--blue); background: white; }
.button.secondary:hover { background: var(--blue-pale); }
.button.white { background: white; color: var(--navy); }
.button.full { width: 100%; border: none; }
.trust-row { display: flex; align-items: center; gap: 0; margin-top: 42px; color: #3f526e; font-size: 12px; font-weight: 650; }
.trust-row span { display: flex; align-items: center; gap: 8px; padding: 0 19px; border-right: 1px solid var(--line); }
.trust-row span:first-child { padding-left: 0; }
.trust-row span:last-child { border: none; }
.trust-row b { color: var(--blue); background: var(--blue-pale); width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; font-size: 15px; }

.hero-visual { position: relative; min-height: 590px; }
.hero-visual > img { width: 100%; height: 590px; display: block; object-fit: cover; object-position: center; border-radius: 22px; box-shadow: 0 24px 60px rgba(10, 35, 69, .14); }
.status-card { position: absolute; right: -20px; bottom: 50px; background: white; border-radius: 16px; padding: 19px 24px; min-width: 260px; display: flex; align-items: center; gap: 14px; box-shadow: 0 18px 45px rgba(6, 27, 54, .18); animation: rise .7s ease both; }
.status-card small, .status-card strong { display: block; }
.status-card small { color: var(--text); margin-bottom: 4px; }
.status-card strong { font-size: 16px; }
.status-icon { display: grid; place-items: center; width: 40px; height: 40px; background: #e4fbf4; color: #078c70; border-radius: 50%; font-weight: 900; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.proof-strip { max-width: 1480px; margin: 0 auto 40px; padding: 30px clamp(24px, 5vw, 78px); display: grid; grid-template-columns: repeat(4, 1fr); background: linear-gradient(100deg, #eaf5ff, #f8fbff); border-radius: 22px; }
.proof-strip div { padding: 6px 30px; border-right: 1px solid #cddff1; }
.proof-strip div:first-child { padding-left: 0; }
.proof-strip div:last-child { border: none; }
.proof-strip strong, .proof-strip span { display: block; }
.proof-strip strong { color: var(--blue); font-size: 21px; margin-bottom: 5px; }
.proof-strip span { color: var(--text); font-size: 13px; }

.section { max-width: 1280px; margin: auto; padding: 110px 40px; }
.section-heading { max-width: 680px; }
.section-heading h2, .request-copy h2, .business h2 { font-size: clamp(36px, 4vw, 55px); line-height: 1.1; letter-spacing: -.035em; margin: 0 0 20px; }
.section-heading > p:last-child, .business-panel > div > p, .request-copy > p { color: var(--text); font-size: 18px; line-height: 1.65; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.service-card { padding: 34px; border: 1px solid var(--line); border-radius: 20px; transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 22px 55px rgba(10, 35, 69, .1); }
.service-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 14px; background: var(--blue-pale); color: var(--blue); font-size: 24px; }
.service-card h3 { font-size: 23px; margin: 26px 0 12px; }
.service-card p { color: var(--text); line-height: 1.65; min-height: 80px; }
.service-card a { color: var(--blue); font-weight: 750; display: inline-flex; gap: 10px; margin-top: 12px; }

.how-section { background: var(--navy); color: white; }
.how-inner { max-width: 1280px; margin: auto; padding: 110px 40px; }
.section-heading.light > p:last-child { color: #acc0d8; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 55px; }
.step { border-top: 1px solid #38506d; padding: 30px 8px 0 0; }
.step > span { color: var(--blue-bright); font-weight: 800; letter-spacing: .08em; }
.step h3 { font-size: 27px; margin: 25px 0 12px; }
.step p { color: #afc0d4; line-height: 1.7; max-width: 310px; }

.business-panel { background: #f1f7fd; border-radius: 28px; padding: clamp(36px, 6vw, 78px); display: grid; grid-template-columns: 1fr .85fr; gap: 70px; align-items: center; }
.business-panel ul { list-style: none; padding: 0; margin: 28px 0 34px; }
.business-panel li { margin: 15px 0; color: #2f4662; }
.business-panel li::before { content: "✓"; color: var(--blue); font-weight: 900; margin-right: 12px; }
.business-graphic { min-height: 400px; display: grid; place-items: center; background: radial-gradient(circle, #dceeff, transparent 65%); }
.route-card { width: min(380px, 100%); height: 300px; background: white; border-radius: 24px; position: relative; box-shadow: 0 26px 65px rgba(10, 35, 69, .12); }
.route-line { position: absolute; left: 69px; top: 75px; width: 3px; height: 144px; background: linear-gradient(var(--blue), #17a48d); }
.route-dot { position: absolute; left: 54px; width: 33px; height: 33px; border: 8px solid white; border-radius: 50%; box-shadow: 0 0 0 2px currentColor; }
.route-dot.start { top: 58px; color: var(--blue); background: var(--blue); }
.route-dot.end { top: 208px; color: #17a48d; background: #17a48d; }
.route-copy { position: absolute; left: 110px; }
.route-copy.top { top: 52px; }
.route-copy.bottom { top: 200px; }
.route-copy small, .route-copy strong { display: block; }
.route-copy small { color: var(--text); margin-bottom: 5px; }

.courier-section { padding: 72px max(7vw, 24px); background: linear-gradient(120deg, var(--blue), #0758c7); color: white; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.courier-section .eyebrow { color: #c8e7ff; }
.courier-section h2 { font-size: clamp(34px, 4vw, 52px); margin: 0 0 14px; letter-spacing: -.03em; }
.courier-section p:last-child { color: #d9ecff; font-size: 18px; max-width: 700px; line-height: 1.6; }

.request-section { max-width: 1200px; margin: auto; padding: 110px 40px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.request-note { display: flex; gap: 14px; margin-top: 30px; color: var(--text); }
.request-note > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; color: #078c70; background: #e5faf4; flex: none; }
.request-note p { margin: 0; line-height: 1.5; }
.request-form { background: white; border: 1px solid var(--line); border-radius: 22px; padding: 34px; box-shadow: 0 24px 65px rgba(10, 35, 69, .1); display: grid; gap: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.request-form label { display: grid; gap: 8px; color: #263d59; font-size: 13px; font-weight: 750; }
.request-form input, .request-form select, .request-form textarea { width: 100%; border: 1px solid #cfddea; border-radius: 10px; padding: 14px 15px; color: var(--ink); background: #fbfdff; outline: none; }
.request-form input:focus, .request-form select:focus, .request-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(14, 114, 236, .1); }
.request-form textarea { resize: vertical; }
.form-message { margin: 0; background: #e8f8f3; color: #08745f; padding: 13px; border-radius: 9px; font-size: 13px; line-height: 1.5; }

.courier-interest { max-width: 1200px; margin: 0 auto 90px; border: 1px solid var(--line); border-radius: 18px; padding: 28px 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.courier-interest p { font-weight: 750; font-size: 18px; margin: 0; }
.courier-interest a { color: var(--blue); font-weight: 750; }

footer { background: var(--navy); color: white; padding: 55px max(6vw, 28px) 32px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; }
.footer-brand { font-size: 23px; }
footer > p { color: #aebfd2; }
footer nav { display: flex; gap: 25px; color: #c5d4e4; font-size: 14px; }
footer small { grid-column: 1 / -1; color: #7990aa; padding-top: 26px; border-top: 1px solid #29425e; }

@media (max-width: 1000px) {
  .menu-button { display: block; }
  .nav { display: none; position: absolute; top: 82px; left: 0; right: 0; background: var(--navy); padding: 20px 28px 30px; flex-direction: column; align-items: stretch; gap: 4px; border-top: 1px solid #284463; }
  .nav.open { display: flex; }
  .nav > a:not(.header-cta) { padding: 14px 0; }
  .nav > a:not(.header-cta)::after { display: none; }
  .header-cta { text-align: center; margin-top: 10px; }
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 470px; }
  .hero-visual > img { height: 470px; }
  .proof-strip { grid-template-columns: 1fr 1fr; }
  .proof-strip div { border-bottom: 1px solid #cddff1; }
  .proof-strip div:nth-child(2) { border-right: 0; }
  .proof-strip div:nth-child(3), .proof-strip div:nth-child(4) { border-bottom: 0; }
  .business-panel, .request-section { grid-template-columns: 1fr; }
  .business-graphic { min-height: 330px; }
  footer { grid-template-columns: 1fr; }
  footer small { grid-column: auto; }
}

@media (max-width: 700px) {
  .site-header { height: 70px; }
  .brand { font-size: 23px; }
  .brand-mark { width: 36px; height: 36px; }
  .nav { top: 70px; }
  .hero { padding-top: 45px; }
  .hero h1 { font-size: 46px; }
  .hero-actions .button { width: 100%; }
  .trust-row { display: grid; gap: 12px; }
  .trust-row span { border: 0; padding: 0; }
  .hero-visual, .hero-visual > img { min-height: 390px; height: 390px; }
  .status-card { right: 12px; left: 12px; bottom: 15px; min-width: 0; }
  .proof-strip { margin: 0 16px 20px; padding: 20px; }
  .proof-strip div { padding: 16px 12px !important; }
  .section, .how-inner, .request-section { padding: 75px 22px; }
  .service-grid, .steps { grid-template-columns: 1fr; }
  .service-card p { min-height: auto; }
  .business-panel { padding: 34px 22px; }
  .courier-section { flex-direction: column; align-items: flex-start; }
  .field-row { grid-template-columns: 1fr; }
  .request-form { padding: 23px; }
  .courier-interest { margin: 0 18px 70px; flex-direction: column; align-items: flex-start; }
  footer nav { flex-wrap: wrap; }
}

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