@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@600;700;800&display=swap');

:root {
  --navy: #0b2f4c;
  --navy-deep: #08233a;
  --navy-soft: #eaf1f5;
  --orange: #f2653a;
  --orange-dark: #d94e27;
  --paper: #f6f8fa;
  --white: #ffffff;
  --ink: #102d46;
  --muted: #607181;
  --line: #dce5eb;
  --success: #23784f;
  --shadow-sm: 0 8px 22px rgba(9, 39, 63, 0.06);
  --shadow-md: 0 18px 42px rgba(9, 39, 63, 0.12);
  --container: 1240px;
  --font-display: 'Manrope', 'Aptos Display', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Aptos', 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; }

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

h1, h2, h3, h4 {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
}
h1 { font-size: clamp(2.5rem, 4.8vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.1vw, 3rem); }
h3 { font-size: clamp(1.16rem, 1.5vw, 1.35rem); }
h4 { font-size: 1rem; }
p { margin: 0 0 16px; color: var(--muted); }

.section { padding: 92px 0; }
.section--tight { padding: 56px 0; }
.section--soft { background: var(--paper); }
.section--navy { background: var(--navy); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: #c7d6e0; }
.section-head { max-width: 710px; margin-bottom: 44px; }
.section-head.center { margin-right: auto; margin-left: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: '';
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}
.btn-primary { color: var(--white); background: var(--orange); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); box-shadow: 0 9px 18px rgba(217, 78, 39, 0.22); transform: translateY(-2px); }
.btn-outline { color: var(--navy); background: transparent; border-color: #aab9c5; }
.btn-outline:hover { color: var(--white); background: var(--navy); border-color: var(--navy); transform: translateY(-2px); }
.btn-outline-light { color: var(--white); background: transparent; border-color: rgba(255,255,255,.58); }
.btn-outline-light:hover { color: var(--navy); background: var(--white); border-color: var(--white); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid #e3eaee;
  box-shadow: 0 3px 16px rgba(12, 42, 66, .05);
}
.header-bar {
  display: grid;
  grid-template-columns: 196px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 84px;
}
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand img { width: 194px; height: 56px; object-fit: contain; object-position: left center; }
.site-nav { min-width: 0; justify-self: center; }
.site-nav ul { display: flex; align-items: center; gap: 22px; }
.site-nav a {
  position: relative;
  display: block;
  padding: 30px 0 27px;
  color: #27475e;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  transition: color 160ms ease;
}
.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  width: 0;
  height: 2px;
  margin: auto;
  border-radius: 99px;
  background: var(--orange);
  content: '';
  transition: width 180ms ease;
}
.site-nav a:hover, .site-nav a.is-active { color: var(--navy); }
.site-nav a:hover::after, .site-nav a.is-active::after { width: 100%; }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 17px; }
.header-actions .phone-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}
.header-actions .phone-link:hover { color: var(--orange-dark); }
.header-phone-icon { width: 17px; height: 17px; flex: 0 0 17px; color: var(--orange); stroke: currentColor; }
.header-actions .btn { min-height: 42px; padding: 11px 17px; font-size: .8rem; }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  cursor: pointer;
}
.nav-toggle span { display: block; width: 19px; height: 2px; margin: 4px auto; border-radius: 2px; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Hero */
.hero, .page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 68%, #18506d 100%);
}
.hero::before, .page-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(112deg, transparent 0 46%, rgba(255,255,255,.045) 46% 47%, transparent 47% 100%), repeating-linear-gradient(112deg, rgba(255,255,255,.028) 0 1px, transparent 1px 52px);
  content: '';
  pointer-events: none;
}
.hero .container, .page-hero .container { position: relative; }
.hero .container { padding-top: 90px; padding-bottom: 90px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr); gap: 62px; align-items: center; }
.hero-copy .eyebrow { color: #ff916b; }
.hero-copy h1, .page-hero h1 { color: var(--white); }
.hero-copy p { max-width: 605px; color: #cad9e4; font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 28px; }
.hero-media { position: relative; min-height: 405px; overflow: hidden; border: 8px solid rgba(255,255,255,.07); border-radius: 14px; box-shadow: 0 24px 54px rgba(4, 24, 39, .28); }
.hero-media img { width: 100%; height: 100%; min-height: 405px; object-fit: cover; }
.waybill-tag { position: absolute; bottom: 18px; left: 18px; padding: 9px 12px; border-radius: 6px; background: var(--white); color: var(--navy); font-size: .72rem; font-weight: 800; letter-spacing: .1em; box-shadow: var(--shadow-sm); }
.waybill-tag span { color: var(--orange-dark); }
.page-hero { padding: 74px 0 70px; }
.page-hero .breadcrumb { margin-bottom: 15px; color: #a9bfce; font-size: .78rem; font-weight: 600; }
.breadcrumb a { color: #c7d7e2; }
.breadcrumb a:hover { color: #ff9a77; }
.page-hero .lead { max-width: 710px; margin-bottom: 0; color: #cad9e4; font-size: 1.03rem; }

/* Cards and content grids */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card, .side-panel, .faq-item, .contact-form-panel, .contact-detail-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.card { display: flex; flex-direction: column; height: 100%; padding: 28px; box-shadow: var(--shadow-sm); transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.card:hover { border-color: #bfced9; box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card { border-top: 4px solid var(--orange); }
.icon-mark, .mark {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 9px;
  background: #edf3f7;
  color: var(--navy);
}
.icon-mark svg, .mark svg { display: block; width: 21px; height: 21px; stroke: currentColor; }
.service-card h3 { margin-top: 22px; }
.service-card p { font-size: .94rem; }
.card-link { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 18px; color: var(--navy); font-size: .87rem; font-weight: 800; }
.card-link:hover { color: var(--orange-dark); }
.card-link svg { width: 17px; height: 17px; }

.reasons-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.reason-item { display: grid; grid-template-columns: 44px minmax(0,1fr); gap: 16px; align-items: start; padding: 25px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); box-shadow: var(--shadow-sm); }
.reason-item .mark { background: #fff1ec; color: var(--orange-dark); }
.reason-item h4 { margin-top: 2px; margin-bottom: 6px; }
.reason-item p { margin: 0; font-size: .94rem; }

.mode-strip { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.mode-strip a { display: block; min-height: 190px; padding: 28px 24px; border-right: 1px solid var(--line); transition: background .18s ease, transform .18s ease; }
.mode-strip a:last-child { border-right: 0; }
.mode-strip a:hover { background: #f9fbfc; transform: translateY(-3px); }
.mode-strip .num { display: block; margin-bottom: 26px; color: var(--orange); font-size: .76rem; font-weight: 800; letter-spacing: .13em; }
.mode-strip h4 { margin-bottom: 7px; }
.mode-strip p { margin: 0; font-size: .9rem; }

.industry-card { position: relative; min-height: 255px; overflow: hidden; border-radius: 12px; background: var(--navy); box-shadow: var(--shadow-sm); }
.industry-card::after { position: absolute; z-index: 1; inset: auto 0 0; height: 55%; background: linear-gradient(180deg, transparent 0%, rgba(5,29,47,.1) 10%, rgba(5,29,47,.94) 100%); content: ''; pointer-events: none; }
.industry-card img { width: 100%; height: 100%; min-height: 255px; object-fit: cover; transition: transform .45s ease; }
.industry-card:hover img { transform: scale(1.05); }
.industry-card .label { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 21px 20px; color: var(--white); font-family: var(--font-display); font-size: 1rem; font-weight: 800; letter-spacing: -.015em; opacity: 1; visibility: visible; }

.manifest { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.manifest-step { position: relative; min-height: 170px; padding: 24px 22px 22px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); box-shadow: var(--shadow-sm); }
.manifest-step::before { display: block; margin-bottom: 18px; color: var(--orange); font-family: var(--font-display); font-size: .78rem; font-weight: 800; letter-spacing: .12em; content: 'STEP'; }
.manifest-step h4 { margin-bottom: 8px; }
.manifest-step p { margin: 0; font-size: .92rem; }

/* Service detail pages */
.service-detail-grid { display: grid; grid-template-columns: minmax(0,1fr) 318px; gap: 64px; align-items: start; }
.service-detail-grid > div > img { width: 100%; border-radius: 12px !important; box-shadow: var(--shadow-sm); }
.side-panel { position: sticky; top: 108px; padding: 28px; box-shadow: var(--shadow-sm); }
.side-panel h4 { padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.side-panel li { border-bottom: 1px solid #edf1f4; }
.side-panel li:last-child { border-bottom: 0; }
.side-panel li a { display: block; padding: 11px 0; color: var(--navy); font-size: .93rem; font-weight: 700; }
.side-panel li a:hover { color: var(--orange-dark); }
.side-panel .btn { margin-top: 8px; }
.include-list, .use-case-list { display: grid; gap: 12px; margin-bottom: 30px; }
.include-list li, .use-case-list li { display: grid; grid-template-columns: 22px minmax(0,1fr); gap: 12px; align-items: start; color: var(--muted); }
.include-list svg, .use-case-list svg { width: 20px; height: 20px; margin-top: 3px; color: var(--orange); stroke: currentColor; }
.use-case-list svg { color: var(--navy); }

/* CTA */
.cta-band { background: var(--navy); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-top: 55px; padding-bottom: 55px; }
.cta-band h2 { margin-bottom: 7px; color: var(--white); font-size: clamp(1.55rem, 2.4vw, 2.3rem); }
.cta-band p { margin: 0; color: #c7d5df; }

/* FAQ */
.faq-item { overflow: hidden; margin-bottom: 12px; box-shadow: var(--shadow-sm); }
.faq-question { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 21px 24px; border: 0; background: var(--white); color: var(--navy); font-family: var(--font-display); font-size: 1rem; font-weight: 800; text-align: left; cursor: pointer; }
.faq-question .icon { width: 21px; height: 21px; flex: 0 0 21px; color: var(--orange); transition: transform .2s ease; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .2s ease; }
.faq-answer > * { overflow: hidden; }
.faq-answer p { margin: 0; padding: 0 24px 22px; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-question .icon { transform: rotate(45deg); }

/* Contact page */
.contact-page-section { padding: 84px 0 72px; background: var(--white); }
.contact-intro-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(460px,.92fr); gap: 68px; align-items: start; }
.contact-story { padding-top: 4px; }
.contact-story-image { height: 340px; margin-bottom: 30px; overflow: hidden; border-radius: 12px; background: #edf2f5; box-shadow: var(--shadow-sm); }
.contact-story-image img { width: 100%; height: 100%; object-fit: cover; }
.contact-story h2 { max-width: 590px; }
.contact-story > p:not(.eyebrow) { max-width: 610px; font-size: 1rem; }
.contact-form-panel { padding: 32px; border-top: 4px solid var(--orange); box-shadow: var(--shadow-sm); }
.contact-form-panel h2 { font-size: clamp(1.8rem,2.4vw,2.25rem); }
.contact-form-panel > p { margin-bottom: 25px; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.form-field { min-width: 0; }
.form-field.full { grid-column: 1 / -1; }
label { display: block; margin-bottom: 7px; color: var(--navy); font-size: .78rem; font-weight: 800; }
input, select, textarea { width: 100%; min-height: 46px; padding: 12px 13px; border: 1px solid #cbd8e1; border-radius: 7px; outline: 0; background: var(--white); color: var(--ink); font-size: .92rem; transition: border-color .16s ease, box-shadow .16s ease; }
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242,101,58,.12); }
.field-error { display: block; min-height: 0; color: #bb3333; font-size: .75rem; }
.form-status { display: none; margin-top: 17px; padding: 12px 14px; border-radius: 7px; font-size: .9rem; font-weight: 700; }
.form-status:not(:empty) { display: block; }
.form-status--success { color: #155d3b; border: 1px solid #bfe2cf; background: #effaf4; }
.contact-details-section { padding: 76px 0 90px; background: var(--paper); }
.contact-cards { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.contact-detail-card { display: flex; gap: 14px; align-items: flex-start; min-height: 164px; padding: 22px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
a.contact-detail-card:hover { border-color: #b8c8d3; box-shadow: var(--shadow-md); transform: translateY(-3px); }
.contact-detail-card .icon-mark { width: 40px; height: 40px; flex-basis: 40px; border-radius: 8px; }
.contact-detail-card .icon-mark svg { width: 19px; height: 19px; }
.contact-detail-card span { display: block; margin-bottom: 5px; color: var(--muted); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.contact-detail-card strong { display: block; color: var(--navy); font-size: .92rem; line-height: 1.5; overflow-wrap: anywhere; }

/* Legal */
.legal-content { max-width: 850px; }
.legal-content h2 { margin-top: 38px; font-size: 1.55rem; }
.legal-content ul { margin: 0 0 20px 18px; list-style: disc; color: var(--muted); }
.legal-content li { margin-bottom: 8px; }
.updated-note { display: inline-block; padding: 7px 10px; border-radius: 6px; background: #edf3f7; color: var(--navy); font-size: .84rem; font-weight: 700; }

/* Footer */
.site-footer { padding: 66px 0 24px; border-top: 4px solid var(--orange); background: var(--navy-deep); }
.footer-grid { display: grid; grid-template-columns: 1.55fr repeat(3, minmax(0,1fr)); gap: 48px; }
.footer-brand { padding-right: 28px; }
.footer-brand img { width: 222px; height: 86px; padding: 0; border-radius: 0; background: transparent; object-fit: contain; object-position: left center; margin-bottom: 22px; }
.footer-brand p, .footer-col p, .footer-col a { color: #bbcad6; }
.footer-brand p { font-size: .92rem; }
.footer-col h4 { margin-bottom: 17px; color: var(--white); font-family: var(--font-body); font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: .9rem; transition: color .15s ease; }
.footer-col a:hover { color: var(--white); }
.footer-col p { margin-bottom: 10px; font-size: .88rem; line-height: 1.52; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.15); }
.footer-bottom p, .footer-bottom a { margin: 0; color: #90a7b9; font-size: .78rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-bottom a:hover { color: var(--white); }

/* Responsive */
@media (max-width: 1180px) {
  .container { width: min(var(--container), calc(100% - 48px)); }
  .header-bar { grid-template-columns: 180px minmax(0,1fr) auto; gap: 20px; }
  .brand img { width: 174px; height: 52px; }
  .site-nav ul { gap: 15px; }
  .site-nav a { font-size: .78rem; }
  .header-actions .phone-link { display: none; }
  .hero-grid { gap: 46px; }
  .contact-intro-grid { gap: 48px; }
  .footer-grid { gap: 34px; }
}

@media (max-width: 980px) {
  .header-bar { display: flex; justify-content: space-between; min-height: 76px; }
  .site-nav { position: absolute; top: 76px; right: 0; left: 0; display: none; padding: 12px 24px 20px; border-bottom: 1px solid var(--line); background: var(--white); box-shadow: 0 12px 24px rgba(9,39,63,.10); }
  .site-nav.is-open { display: block; }
  .site-nav ul { display: grid; gap: 2px; }
  .site-nav a { padding: 12px 4px; font-size: .9rem; }
  .site-nav a::after { display: none; }
  .nav-toggle { display: block; }
  .header-actions .btn { display: none; }
  .hero-grid, .contact-intro-grid, .service-detail-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 340px; }
  .hero-media img { min-height: 340px; }
  .contact-story-image { height: 330px; }
  .side-panel { position: static; }
  .grid-3 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .grid-4 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .manifest { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 700px) {
  .container { width: min(var(--container), calc(100% - 36px)); }
  .section { padding: 68px 0; }
  .hero .container { padding-top: 68px; padding-bottom: 68px; }
  .hero-media, .hero-media img { min-height: 260px; }
  .page-hero { padding: 60px 0 56px; }
  .grid-2, .grid-3, .grid-4, .reasons-list, .contact-cards, .footer-grid { grid-template-columns: 1fr; }
  .mode-strip { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .mode-strip a:nth-child(2) { border-right: 0; }
  .mode-strip a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .contact-form-panel { padding: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .contact-story-image { height: 260px; }
  .cta-band-inner, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-brand { padding-right: 0; }
}

@media (max-width: 430px) {
  .header-bar { min-height: 70px; }
  .brand img { width: 154px; height: 44px; }
  .site-nav { top: 70px; padding-right: 18px; padding-left: 18px; }
  h1 { font-size: 2.32rem; }
  h2 { font-size: 1.9rem; }
  .hero-media, .hero-media img { min-height: 230px; }
  .mode-strip { grid-template-columns: 1fr; }
  .mode-strip a { min-height: 155px; border-right: 0; border-bottom: 1px solid var(--line); }
  .mode-strip a:last-child { border-bottom: 0; }
  .mode-strip a:nth-child(2) { border-right: 0; }
  .mode-strip a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .manifest { grid-template-columns: 1fr; }
}
