:root {
  --brand-blue: #005ca1;
  --brand-blue-2: #0a73bd;
  --brand-blue-dark: #003b68;
  --brand-orange: #df841b;
  --brand-orange-2: #f29a2e;
  --ink: #0b1f33;
  --muted: #5d6b7a;
  --line: #dbe3ea;
  --surface: #ffffff;
  --surface-soft: #f5f8fb;
  --surface-blue: #edf6fc;
  --surface-orange: #fff6ea;
  --success: #14845f;
  --warning: #b86a0b;
  --danger: #c63f3f;
  --shadow-sm: 0 10px 30px rgba(13, 42, 69, 0.08);
  --shadow-md: 0 24px 70px rgba(13, 42, 69, 0.14);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-height: 78px;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3, h4 { margin: 0; line-height: 1.12; letter-spacing: -0.035em; }
h1 { font-size: clamp(2.6rem, 6vw, 5.4rem); font-weight: 640; }
h2 { font-size: clamp(2rem, 4vw, 3.55rem); font-weight: 620; }
h3 { font-size: clamp(1.18rem, 2vw, 1.55rem); font-weight: 610; letter-spacing: -0.02em; }

.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 9999;
  padding: .7rem 1rem; color: #fff; background: var(--brand-blue-dark);
}
.skip-link:focus { top: 1rem; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 104px 0; }
.section-sm { padding: 68px 0; }
.section-soft { background: var(--surface-soft); }
.section-blue { background: var(--brand-blue-dark); color: #fff; }
.section-orange { background: var(--surface-orange); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  margin-bottom: 1rem; color: var(--brand-blue); font-size: .76rem;
  font-weight: 760; letter-spacing: .14em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--brand-orange); }
.section-blue .eyebrow { color: #a9daf9; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(270px, .75fr); gap: 40px; align-items: end; margin-bottom: 48px; }
.section-heading p { max-width: 570px; margin: 0 0 .2rem auto; }
.lead { font-size: clamp(1.05rem, 2vw, 1.27rem); line-height: 1.7; }
.kicker { color: var(--brand-orange); font-weight: 680; }
.text-link { display: inline-flex; gap: .55rem; align-items: center; color: var(--brand-blue); font-weight: 700; }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

.topbar { background: var(--brand-blue-dark); color: rgba(255,255,255,.82); font-size: .78rem; }
.topbar-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-links { display: flex; align-items: center; gap: 18px; }
.topbar a:hover { color: #fff; }
.site-header {
  position: sticky; top: 0; z-index: 1000; height: var(--header-height);
  background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(219,227,234,.88);
  backdrop-filter: blur(16px); transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 34px rgba(13,42,69,.08); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-logo { width: 54px; height: 54px; object-fit: contain; }
.brand-copy { display: grid; gap: 0; line-height: 1; }
.brand-name { color: var(--brand-blue-dark); font-size: 1.05rem; font-weight: 760; letter-spacing: -.02em; }
.brand-sub { margin-top: .28rem; color: var(--brand-orange); font-size: .62rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.nav-wrap { display: flex; align-items: center; gap: 18px; }
.nav-list { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.nav-link { display: inline-flex; align-items: center; padding: .74rem .76rem; color: #33465a; font-size: .88rem; font-weight: 620; border-bottom: 2px solid transparent; }
.nav-link:hover, .nav-link.active { color: var(--brand-blue); border-color: var(--brand-orange); }
.header-cta { padding: .72rem 1rem; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: #fff; align-items: center; justify-content: center; }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after { display: block; width: 20px; height: 2px; background: var(--ink); transition: .2s; }
.menu-toggle span { position: relative; }
.menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-open .menu-toggle span { background: transparent; }
.menu-open .menu-toggle span::before { top: 0; transform: rotate(45deg); }
.menu-open .menu-toggle span::after { top: 0; transform: rotate(-45deg); }

.btn {
  display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: .65rem;
  padding: .8rem 1.2rem; border: 1px solid transparent; border-radius: var(--radius-sm);
  font-size: .91rem; font-weight: 730; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--brand-blue); box-shadow: 0 10px 26px rgba(0,92,161,.20); }
.btn-primary:hover { background: var(--brand-blue-dark); }
.btn-orange { color: #fff; background: var(--brand-orange); box-shadow: 0 10px 26px rgba(223,132,27,.22); }
.btn-orange:hover { background: #c9720e; }
.btn-light { color: var(--brand-blue-dark); background: #fff; }
.btn-outline { color: var(--brand-blue); border-color: #a9c9df; background: transparent; }
.btn-outline:hover { background: var(--surface-blue); }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; }
.icon-btn { width: 38px; height: 38px; border: 1px solid var(--line); background: #fff; display: inline-flex; align-items: center; justify-content: center; }

.hero { position: relative; overflow: hidden; padding: 72px 0 84px; background: linear-gradient(125deg, #fff 0%, #f7fbfe 54%, #eef7fc 100%); }
.hero::before { content: ""; position: absolute; width: 550px; height: 550px; right: -210px; top: -240px; border: 72px solid rgba(223,132,27,.10); border-radius: 50%; }
.hero::after { content: ""; position: absolute; width: 560px; height: 560px; left: -390px; bottom: -430px; border: 80px solid rgba(0,92,161,.08); border-radius: 50%; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(430px, .96fr); gap: 70px; align-items: center; min-height: 590px; }
.hero-copy h1 span { color: var(--brand-blue); }
.hero-copy h1 em { color: var(--brand-orange); font-style: normal; }
.hero-copy .lead { max-width: 680px; margin: 24px 0 30px; }
.hero-note { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; color: #46586b; font-size: .84rem; font-weight: 650; }
.hero-note span { display: flex; align-items: center; gap: .45rem; }
.hero-note span::before { content: "✓"; color: var(--success); font-weight: 800; }
.hero-visual { position: relative; min-height: 540px; }
.visual-panel { position: absolute; inset: 18px 0 20px 30px; border: 1px solid rgba(0,92,161,.18); background: rgba(255,255,255,.78); box-shadow: var(--shadow-md); backdrop-filter: blur(12px); overflow: hidden; }
.visual-panel::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(0,92,161,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(0,92,161,.055) 1px, transparent 1px); background-size: 32px 32px; }
.globe-art { position: absolute; width: 330px; height: 330px; left: 50%; top: 50%; transform: translate(-50%, -50%); border: 36px solid rgba(0,92,161,.12); border-radius: 50%; }
.globe-art::before, .globe-art::after { content: ""; position: absolute; border: 2px solid rgba(0,92,161,.28); border-radius: 50%; }
.globe-art::before { inset: 40px -32px; }
.globe-art::after { inset: -34px 80px; }
.route-line { position: absolute; width: 310px; height: 130px; left: calc(50% - 155px); top: calc(50% - 88px); border-top: 4px solid var(--brand-orange); border-radius: 50%; transform: rotate(-12deg); }
.route-line::before, .route-line::after { content: ""; position: absolute; width: 10px; height: 10px; background: var(--brand-orange); border: 4px solid #fff; border-radius: 50%; box-shadow: 0 3px 10px rgba(0,0,0,.15); }
.route-line::before { left: 12px; top: -8px; }
.route-line::after { right: 18px; top: 8px; }
.transport-chip { position: absolute; display: flex; gap: 10px; align-items: center; min-width: 155px; padding: 12px 14px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.transport-chip strong { display: block; font-size: .84rem; }
.transport-chip small { display: block; color: var(--muted); font-size: .68rem; }
.transport-chip svg { width: 26px; height: 26px; color: var(--brand-blue); }
.chip-air { left: -4px; top: 78px; }
.chip-sea { right: -10px; top: 185px; }
.chip-road { left: 25px; bottom: 52px; }
.visual-status { position: absolute; right: 25px; bottom: 34px; width: 205px; padding: 18px; color: #fff; background: var(--brand-blue-dark); box-shadow: var(--shadow-sm); }
.visual-status-label { color: #9dd1f1; font-size: .68rem; font-weight: 730; letter-spacing: .1em; text-transform: uppercase; }
.visual-status strong { display: block; margin: .5rem 0 .25rem; font-size: 1.18rem; }
.visual-status small { color: rgba(255,255,255,.68); }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { min-height: 110px; padding: 24px; border-right: 1px solid var(--line); display: flex; align-items: center; gap: 14px; }
.trust-item:last-child { border-right: 0; }
.trust-icon { width: 42px; height: 42px; display: grid; place-items: center; background: var(--surface-blue); color: var(--brand-blue); }
.trust-item strong { display: block; font-size: .94rem; }
.trust-item span { color: var(--muted); font-size: .78rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { position: relative; min-height: 290px; padding: 28px; border: 1px solid var(--line); background: #fff; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; overflow: hidden; }
.service-card::after { content: ""; position: absolute; right: -50px; bottom: -70px; width: 140px; height: 140px; border: 24px solid rgba(223,132,27,.10); border-radius: 50%; }
.service-card:hover { transform: translateY(-5px); border-color: #a7c7dc; box-shadow: var(--shadow-sm); }
.service-icon { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 36px; background: var(--surface-blue); color: var(--brand-blue); }
.service-icon.orange { color: var(--brand-orange); background: var(--surface-orange); }
.service-icon svg { width: 27px; height: 27px; }
.service-card p { font-size: .92rem; }
.service-number { position: absolute; right: 24px; top: 21px; color: #aec2d1; font-size: .74rem; font-weight: 800; letter-spacing: .1em; }
.service-card .text-link { position: relative; z-index: 1; margin-top: 12px; font-size: .82rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.media-frame { position: relative; min-height: 520px; overflow: hidden; background: linear-gradient(150deg, var(--brand-blue-dark), var(--brand-blue)); box-shadow: var(--shadow-md); }
.media-frame::before { content: ""; position: absolute; width: 380px; height: 380px; top: -130px; right: -110px; border: 65px solid rgba(255,255,255,.10); border-radius: 50%; }
.media-frame::after { content: ""; position: absolute; width: 300px; height: 300px; bottom: -130px; left: -80px; border: 45px solid rgba(223,132,27,.35); border-radius: 50%; }
.media-logo { position: absolute; width: 220px; height: 220px; left: 50%; top: 46%; transform: translate(-50%, -50%); background: #fff; padding: 18px; box-shadow: var(--shadow-md); }
.media-logo img { width: 100%; height: 100%; object-fit: contain; }
.media-caption { position: absolute; left: 32px; right: 32px; bottom: 30px; display: flex; align-items: end; justify-content: space-between; gap: 20px; color: #fff; z-index: 1; }
.media-caption strong { max-width: 300px; font-size: 1.35rem; line-height: 1.25; }
.media-caption span { color: #9dd1f1; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }
.check-list { display: grid; gap: 15px; margin: 28px 0 32px; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; color: #33465a; }
.check-list li::before { content: "✓"; display: grid; place-items: center; width: 22px; height: 22px; margin-top: 2px; color: #fff; background: var(--brand-orange); font-size: .72rem; font-weight: 900; }

.feature-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.feature-item { min-height: 250px; padding: 28px 24px; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.feature-item .feature-index { color: var(--brand-orange-2); font-size: .75rem; font-weight: 780; letter-spacing: .12em; }
.feature-item h3 { margin: 44px 0 15px; color: #fff; font-size: 1.18rem; }
.feature-item p { color: rgba(255,255,255,.65); font-size: .85rem; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.process-step { position: relative; padding: 18px 28px 24px 0; }
.process-step:not(:last-child)::after { content: ""; position: absolute; height: 1px; left: 64px; right: 18px; top: 31px; background: #bfcbd5; }
.step-num { position: relative; z-index: 1; width: 28px; height: 28px; display: grid; place-items: center; margin-bottom: 24px; border: 1px solid var(--brand-blue); color: var(--brand-blue); background: #fff; font-size: .72rem; font-weight: 780; }
.process-step h3 { font-size: 1.08rem; }
.process-step p { font-size: .85rem; }

.cta-band { position: relative; overflow: hidden; padding: 66px; color: #fff; background: linear-gradient(110deg, var(--brand-blue-dark), var(--brand-blue)); }
.cta-band::after { content: ""; position: absolute; right: -75px; top: -110px; width: 340px; height: 340px; border: 60px solid rgba(223,132,27,.44); border-radius: 50%; }
.cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.cta-band h2 { max-width: 760px; font-size: clamp(2rem, 4.2vw, 3.4rem); }
.cta-band p { max-width: 720px; color: rgba(255,255,255,.72); margin-top: 14px; }

.page-hero { position: relative; overflow: hidden; padding: 90px 0 78px; background: linear-gradient(125deg, #f9fcfe, #edf6fc); border-bottom: 1px solid var(--line); }
.page-hero::after { content: ""; position: absolute; width: 390px; height: 390px; right: -130px; top: -225px; border: 60px solid rgba(223,132,27,.15); border-radius: 50%; }
.page-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .55fr; gap: 55px; align-items: end; }
.page-hero h1 { font-size: clamp(2.7rem, 5.5vw, 4.9rem); }
.page-hero p { margin: 22px 0 0; max-width: 720px; font-size: 1.12rem; }
.breadcrumb { display: flex; flex-wrap: wrap; justify-content: flex-end; align-items: center; gap: 9px; color: var(--muted); font-size: .78rem; }
.breadcrumb a { color: var(--brand-blue); }

.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.metric-card { padding: 28px; border-left: 4px solid var(--brand-orange); background: #fff; box-shadow: var(--shadow-sm); }
.metric-card strong { display: block; color: var(--brand-blue); font-size: clamp(1.55rem, 3vw, 2.25rem); font-weight: 690; letter-spacing: -.04em; }
.metric-card span { color: var(--muted); font-size: .82rem; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { padding: 30px; border: 1px solid var(--line); background: #fff; }
.value-card .value-line { width: 42px; height: 3px; margin-bottom: 34px; background: var(--brand-orange); }
.value-card p { font-size: .9rem; }

.timeline { position: relative; display: grid; gap: 0; }
.timeline::before { content: ""; position: absolute; left: 24px; top: 0; bottom: 0; width: 1px; background: var(--line); }
.timeline-item { position: relative; display: grid; grid-template-columns: 50px 1fr; gap: 25px; padding-bottom: 30px; }
.timeline-dot { position: relative; z-index: 1; width: 49px; height: 49px; display: grid; place-items: center; border: 1px solid var(--brand-blue); background: #fff; color: var(--brand-blue); font-weight: 800; font-size: .72rem; }
.timeline-content { padding: 8px 0 0; }
.timeline-content p { font-size: .9rem; }

.service-detail-list { display: grid; gap: 22px; }
.service-detail { display: grid; grid-template-columns: 120px 1fr 270px; gap: 30px; align-items: start; padding: 34px 0; border-top: 1px solid var(--line); }
.service-detail:last-child { border-bottom: 1px solid var(--line); }
.service-detail-icon { width: 70px; height: 70px; display: grid; place-items: center; color: var(--brand-blue); background: var(--surface-blue); }
.service-detail-icon svg { width: 34px; height: 34px; }
.service-detail-copy p { max-width: 640px; font-size: .92rem; }
.service-detail-meta { padding: 20px; background: var(--surface-soft); }
.service-detail-meta strong { display: block; margin-bottom: 8px; font-size: .82rem; }
.service-detail-meta span { display: block; color: var(--muted); font-size: .78rem; }

.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.industry-card { min-height: 235px; padding: 26px; border: 1px solid var(--line); background: #fff; }
.industry-card .service-icon { margin-bottom: 30px; }
.industry-card p { font-size: .84rem; }

.map-panel { position: relative; min-height: 520px; overflow: hidden; border: 1px solid var(--line); background: #f1f7fb; }
.map-panel svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-caption { position: absolute; left: 30px; bottom: 30px; max-width: 300px; padding: 20px; color: #fff; background: rgba(0,59,104,.92); }
.map-caption strong { display: block; font-size: 1.1rem; }
.map-caption span { color: rgba(255,255,255,.7); font-size: .77rem; }
.lane-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lane-card { padding: 26px; border-top: 3px solid var(--brand-blue); background: #fff; box-shadow: var(--shadow-sm); }
.lane-card:nth-child(2n) { border-top-color: var(--brand-orange); }
.lane-card small { color: var(--brand-orange); font-weight: 770; text-transform: uppercase; letter-spacing: .08em; }
.lane-card h3 { margin: 18px 0 10px; }
.lane-card p { font-size: .84rem; }

.tracking-shell { display: grid; grid-template-columns: .84fr 1.16fr; gap: 28px; align-items: start; }
.panel { border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); }
.panel-head { padding: 26px 28px; border-bottom: 1px solid var(--line); }
.panel-body { padding: 28px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-group { display: grid; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
label { color: #2e4256; font-size: .78rem; font-weight: 700; }
input, select, textarea {
  width: 100%; min-height: 49px; padding: .78rem .85rem; color: var(--ink); background: #fff;
  border: 1px solid #cbd6df; border-radius: 7px; outline: none; transition: border-color .2s, box-shadow .2s;
}
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--brand-blue); box-shadow: 0 0 0 3px rgba(0,92,161,.11); }
.input-row { display: flex; gap: 10px; }
.input-row input { flex: 1; }
.form-note { margin-top: 12px; color: var(--muted); font-size: .74rem; }
.form-message { display: none; margin-top: 18px; padding: 14px; color: #0f674c; background: #edf9f5; border: 1px solid #b6e2d2; font-size: .84rem; }
.form-message.show { display: block; }
.tracking-result { min-height: 350px; }
.empty-state { min-height: 310px; display: grid; place-items: center; text-align: center; padding: 50px; color: var(--muted); }
.empty-state svg { width: 58px; height: 58px; margin: 0 auto 18px; color: #a2b5c4; }
.shipment-summary { display: none; }
.shipment-summary.show { display: block; }
.shipment-status { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.status-pill { display: inline-flex; align-items: center; gap: .5rem; padding: .45rem .65rem; color: #0f674c; background: #eaf8f3; font-size: .75rem; font-weight: 760; }
.status-pill::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--success); }
.shipment-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 22px 0; }
.meta-box { padding: 14px; background: var(--surface-soft); }
.meta-box span { display: block; color: var(--muted); font-size: .7rem; }
.meta-box strong { display: block; margin-top: 3px; font-size: .86rem; }
.track-timeline { display: grid; gap: 0; }
.track-step { position: relative; display: grid; grid-template-columns: 30px 1fr; gap: 14px; padding-bottom: 20px; }
.track-step:not(:last-child)::after { content: ""; position: absolute; left: 8px; top: 17px; bottom: -2px; width: 2px; background: #d4dee6; }
.track-dot { position: relative; z-index: 1; width: 18px; height: 18px; margin-top: 2px; border: 4px solid #fff; border-radius: 50%; background: #bac8d3; box-shadow: 0 0 0 1px #bac8d3; }
.track-step.done .track-dot { background: var(--brand-blue); box-shadow: 0 0 0 1px var(--brand-blue); }
.track-step.current .track-dot { background: var(--brand-orange); box-shadow: 0 0 0 1px var(--brand-orange); }
.track-step strong { display: block; font-size: .85rem; }
.track-step span { display: block; color: var(--muted); font-size: .73rem; }
.demo-badge { display: inline-block; margin-top: 14px; color: var(--warning); font-size: .72rem; font-weight: 720; }

.quote-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 28px; align-items: start; }
.quote-aside { position: sticky; top: 105px; }
.quote-feature { padding: 24px; border-bottom: 1px solid var(--line); }
.quote-feature:last-child { border-bottom: 0; }
.quote-feature strong { display: block; margin-bottom: 6px; font-size: .9rem; }
.quote-feature p { margin: 0; font-size: .79rem; }
.progress-bar { height: 4px; background: #e8eef3; }
.progress-bar span { display: block; height: 100%; width: 32%; background: var(--brand-orange); transition: width .25s ease; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; padding: 22px 0; display: flex; justify-content: space-between; gap: 20px; border: 0; color: var(--ink); background: transparent; text-align: left; font-weight: 700; }
.faq-question::after { content: "+"; color: var(--brand-blue); font-size: 1.4rem; font-weight: 400; }
.faq-item.open .faq-question::after { content: "−"; }
.faq-answer { display: none; max-width: 850px; padding: 0 0 22px; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { margin: 0; font-size: .88rem; }

.contact-grid { display: grid; grid-template-columns: .76fr 1.24fr; gap: 28px; }
.contact-card { padding: 26px; border: 1px solid var(--line); background: #fff; }
.contact-card + .contact-card { margin-top: 14px; }
.contact-card small { color: var(--brand-orange); font-weight: 760; letter-spacing: .08em; text-transform: uppercase; }
.contact-card h3 { margin: 18px 0 9px; }
.contact-card p { margin: 0; font-size: .86rem; }
.contact-card a { color: var(--brand-blue); font-weight: 700; }

.site-footer { color: rgba(255,255,255,.76); background: #062a47; }
.footer-main { padding: 70px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .75fr .75fr 1fr; gap: 50px; }
.footer-brand { max-width: 340px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { margin-top: 20px; color: rgba(255,255,255,.62); font-size: .85rem; }
.footer-title { margin-bottom: 19px; color: #fff; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { font-size: .82rem; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: grid; gap: 12px; font-size: .82rem; }
.footer-contact a { color: #fff; }
.footer-bottom { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 22px; font-size: .72rem; }
.footer-legal { display: flex; gap: 16px; }

.floating-quote { position: fixed; right: 22px; bottom: 22px; z-index: 900; display: flex; align-items: center; gap: .55rem; padding: .75rem .95rem; color: #fff; background: var(--brand-orange); box-shadow: 0 14px 34px rgba(99,57,8,.26); font-size: .82rem; font-weight: 760; }
.install-toast { position: fixed; left: 20px; bottom: 20px; z-index: 1001; display: none; width: min(390px, calc(100% - 40px)); padding: 16px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.install-toast.show { display: flex; gap: 12px; align-items: center; }
.install-toast p { margin: 0; font-size: .75rem; }
.install-actions { margin-left: auto; display: flex; gap: 8px; }
.install-actions button { padding: .5rem .65rem; border: 0; font-size: .72rem; font-weight: 750; }
.install-yes { color: #fff; background: var(--brand-blue); }
.install-no { color: var(--muted); background: #f0f3f5; }

.not-found { min-height: 72vh; display: grid; place-items: center; padding: 60px 20px; text-align: center; }
.not-found-mark { color: var(--brand-blue); font-size: clamp(6rem, 20vw, 13rem); font-weight: 760; letter-spacing: -.08em; line-height: .8; opacity: .12; }
.not-found h1 { margin-top: -20px; font-size: clamp(2rem, 5vw, 4rem); }
.not-found p { max-width: 570px; margin: 20px auto 28px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  :root { --container: 940px; }
  .topbar { display: none; }
  .hero-grid { grid-template-columns: 1fr 420px; gap: 38px; }
  .nav-link { padding-inline: .5rem; font-size: .82rem; }
  .header-cta { display: none; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 2 / 4; }
}

@media (max-width: 840px) {
  :root { --header-height: 70px; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 76px 0; }
  .section-sm { padding: 52px 0; }
  .brand-logo { width: 47px; height: 47px; }
  .brand-name { font-size: .93rem; }
  .brand-sub { font-size: .54rem; }
  .menu-toggle { display: inline-flex; }
  .nav-list { align-items: stretch; }
  .hero { padding: 52px 0 68px; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { min-height: 480px; }
  .visual-panel { inset: 10px 10px 10px; }
  .section-heading, .split, .page-hero-grid, .tracking-shell, .quote-layout, .contact-grid { grid-template-columns: 1fr; }
  .section-heading p { margin-left: 0; }
  .breadcrumb { justify-content: flex-start; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .card-grid, .value-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .process-step:nth-child(2)::after { display: none; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail { grid-template-columns: 85px 1fr; }
  .service-detail-meta { grid-column: 2; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .lane-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-band { padding: 45px 34px; }
  .quote-aside { position: static; }
  .footer-grid { grid-template-columns: 1.2fr 1fr; }
  .footer-grid > :last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section { padding: 62px 0; }
  .hero { padding-top: 38px; }
  .hero-grid { gap: 30px; }
  .hero-visual { min-height: 405px; }
  .visual-panel { inset: 0; }
  .globe-art { width: 240px; height: 240px; border-width: 26px; }
  .route-line { width: 220px; left: calc(50% - 110px); }
  .transport-chip { min-width: 125px; padding: 9px; }
  .transport-chip svg { width: 21px; height: 21px; }
  .transport-chip strong { font-size: .72rem; }
  .transport-chip small { font-size: .58rem; }
  .chip-air { left: 8px; top: 43px; }
  .chip-sea { right: 6px; top: 145px; }
  .chip-road { left: 16px; bottom: 38px; }
  .visual-status { width: 162px; right: 12px; bottom: 14px; padding: 13px; }
  .visual-status strong { font-size: .92rem; }
  .hero-note { gap: 9px 14px; }
  .trust-grid, .card-grid, .value-grid, .feature-grid, .process-grid, .metric-grid, .industry-grid, .form-grid, .shipment-meta, .footer-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 92px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .service-card { min-height: 250px; }
  .media-frame { min-height: 430px; }
  .media-logo { width: 185px; height: 185px; }
  .feature-item { min-height: 210px; }
  .process-step:not(:last-child)::after { display: none; }
  .service-detail { grid-template-columns: 1fr; padding: 28px 0; }
  .service-detail-meta { grid-column: auto; }
  .page-hero { padding: 64px 0 55px; }
  .panel-head, .panel-body { padding: 21px; }
  .input-row { display: grid; }
  .cta-band { padding: 34px 24px; }
  .footer-main { padding: 52px 0 38px; }
  .footer-bottom-inner { flex-direction: column; }
  .floating-quote { right: 12px; bottom: 12px; }
  .floating-quote span { display: none; }
}



/* Exact reference header and photographic home hero */
.site-header {
  height: 104px;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid #dfe5eb;
  box-shadow: 0 3px 12px rgba(13,42,69,.05);
}
.site-header .container,
.hero-modern .container {
  width: min(calc(100% - 72px), 1540px);
}
.header-inner { gap: 34px; }
.brand-horizontal { gap: 13px; }
.brand-horizontal .brand-logo {
  width: 68px;
  height: 68px;
}
.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  color: #0b4d88;
  font-size: clamp(1.3rem, 1.85vw, 2rem);
  font-weight: 760;
  line-height: 1;
  letter-spacing: -.045em;
  white-space: nowrap;
}
.brand-wordmark b { color: var(--brand-orange); font-weight: 760; }
.brand-wordmark small { color: #0b4d88; font-size: .62em; font-weight: 760; }
.nav-wrap { gap: 25px; }
.nav-list { gap: 17px; }
.nav-link {
  padding: 1rem .2rem .92rem;
  color: #121b25;
  font-size: 1rem;
  font-weight: 610;
}
.header-cta {
  min-height: 52px;
  padding: .8rem 1.22rem;
  border-radius: 11px;
  font-size: .97rem;
}

.hero-modern {
  position: relative;
  overflow: hidden;
  min-height: 810px;
  padding: 0;
  border-bottom: 1px solid #dce4ea;
  background: linear-gradient(96deg, #fff 0%, #fff 40%, #f5f9fc 58%, #eef6fb 100%);
}
.hero-modern::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 630px;
  height: 630px;
  left: -360px;
  top: -270px;
  border: 70px solid rgba(0,92,161,.055);
  border-radius: 50%;
}
.hero-modern::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 520px;
  height: 520px;
  left: -300px;
  top: -220px;
  border: 54px solid rgba(223,132,27,.05);
  border-radius: 50%;
}
.hero-modern .hero-grid {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 810px;
}
.hero-modern .hero-copy {
  width: 47%;
  max-width: 710px;
  padding: 44px 36px 42px 0;
}
.hero-modern .eyebrow {
  margin-bottom: 1.7rem;
  color: var(--brand-orange);
  font-size: .78rem;
  letter-spacing: .12em;
}
.hero-modern .eyebrow::before {
  width: 30px;
  background: var(--brand-blue);
}
.hero-modern h1 {
  max-width: none;
  color: #0a4c86;
  font-size: clamp(3.6rem, 5.2vw, 5.7rem);
  font-weight: 690;
  line-height: 1.01;
  letter-spacing: -.065em;
  white-space: nowrap;
}
.hero-modern .hero-copy h1 span { color: #0a4c86; }
.hero-modern .hero-copy h1 em { color: var(--brand-orange); font-style: normal; }
.hero-modern .lead {
  max-width: 640px;
  margin: 34px 0 38px;
  color: #43566a;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.72;
}
.hero-actions { gap: 34px; }
.hero-actions .btn {
  min-width: 265px;
  min-height: 66px;
  padding: .9rem 1.55rem;
  border-radius: 11px;
  font-size: 1.02rem;
}
.hero-actions .btn svg { width: 22px; height: 22px; }
.hero-actions .btn span:last-child { margin-left: auto; font-size: 1.25rem; font-weight: 400; }
.hero-actions .btn-outline {
  color: #075799;
  border-color: #82afd0;
  background: rgba(255,255,255,.74);
  box-shadow: none;
}
.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 58px;
  padding-top: 25px;
  border-top: 1px solid #d2dce5;
}
.hero-benefit {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding-right: 22px;
}
.hero-benefit + .hero-benefit {
  padding-left: 30px;
  border-left: 1px solid #d2dce5;
}
.hero-benefit-icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #075ea4;
  background: rgba(255,255,255,.52);
  border: 1px solid #b6d0e3;
  border-radius: 13px;
}
.hero-benefit-icon.orange {
  color: var(--brand-orange);
  border-color: #e9c796;
  background: rgba(255,255,255,.52);
}
.hero-benefit-icon svg { width: 27px; height: 27px; }
.hero-benefit strong {
  display: block;
  color: #111922;
  font-size: .98rem;
  line-height: 1.25;
}
.hero-benefit small {
  display: block;
  margin-top: 4px;
  color: #5c6a78;
  font-size: .94rem;
  line-height: 1.3;
}
.hero-image-panel {
  position: absolute;
  z-index: 1;
  inset: 0 0 0 auto;
  width: 55.5%;
  overflow: hidden;
  background: #0d4c7d;
}
.hero-image-panel::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,45,78,.12), transparent 32%), linear-gradient(0deg, rgba(4,36,60,.14), transparent 40%);
  pointer-events: none;
}
.hero-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
}
.hero-swoop {
  position: absolute;
  z-index: 2;
  display: block;
  border-radius: 50%;
  pointer-events: none;
}
.hero-swoop-blue {
  width: 620px;
  height: 1080px;
  left: -420px;
  top: -475px;
  border: 72px solid rgba(0,62,111,.88);
  box-shadow: 50px 0 0 rgba(17,89,146,.55);
}
.hero-swoop-orange {
  width: 810px;
  height: 940px;
  left: -520px;
  bottom: -610px;
  border: 98px solid rgba(223,132,27,.76);
  box-shadow: 52px 0 0 rgba(242,154,46,.42);
}

/* Split section matching the selected reference */
.home-split-section { padding: 94px 0; }
.home-story-split {
  grid-template-columns: minmax(400px, .92fr) minmax(0, 1.08fr);
  gap: 68px;
  align-items: center;
}
.media-frame-logo { min-height: 540px; }
.media-frame-logo .media-logo { width: 215px; height: 215px; top: 45%; }
.home-story-split .split-copy h2 {
  max-width: 680px;
  font-size: clamp(2.65rem, 4.8vw, 4.25rem);
  line-height: 1.03;
}
.home-story-split .split-copy .lead { margin: 18px 0 28px; }
.check-list-detail { gap: 18px; margin: 28px 0 34px; }
.check-list-detail strong { display: block; margin-bottom: 2px; color: var(--ink); }
.check-list-detail span { display: block; color: var(--muted); font-size: .93rem; }

@media (max-width: 1320px) {
  .site-header .container,
  .hero-modern .container { width: min(calc(100% - 48px), 1240px); }
  .brand-horizontal .brand-logo { width: 58px; height: 58px; }
  .brand-wordmark { font-size: 1.55rem; }
  .nav-list { gap: 10px; }
  .nav-link { font-size: .9rem; }
  .header-cta { padding-inline: 1rem; }
  .hero-modern,
  .hero-modern .hero-grid { min-height: 720px; }
  .hero-modern .hero-copy { width: 49%; max-width: 610px; }
  .hero-modern h1 { font-size: clamp(3.2rem, 5vw, 4.7rem); }
  .hero-actions { gap: 16px; }
  .hero-actions .btn { min-width: 210px; }
  .hero-benefit + .hero-benefit { padding-left: 18px; }
  .hero-benefit-icon { flex-basis: 46px; width: 46px; height: 46px; }
  .hero-benefit strong { font-size: .84rem; }
  .hero-benefit small { font-size: .8rem; }
}
@media (max-width: 1020px) {
  :root { --header-height: 82px; }
  .site-header { height: var(--header-height); }
  .site-header .container,
  .hero-modern .container { width: min(calc(100% - 40px), var(--container)); }
  .brand-horizontal .brand-logo { width: 52px; height: 52px; }
  .brand-wordmark { font-size: 1.35rem; }
  .menu-toggle { display: inline-flex; position: relative; z-index: 2; }
  .nav-wrap {
    position: fixed;
    inset: var(--header-height) 0 0;
    display: block;
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    padding: 22px 20px 30px;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .22s ease, opacity .22s ease, visibility 0s linear .22s;
  }
  .menu-open .nav-wrap {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }
  .nav-list { display: grid; gap: 0; }
  .nav-link { width: 100%; padding: .95rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav-link.active { color: var(--brand-blue); border-color: var(--line); }
  .nav-wrap .header-cta { display: inline-flex; width: 100%; margin-top: 18px; }
  .hero-modern { min-height: auto; padding: 58px 0 0; }
  .hero-modern .hero-grid { min-height: auto; }
  .hero-modern .hero-copy { width: 100%; max-width: 760px; padding: 0 0 54px; }
  .hero-modern h1 { white-space: normal; }
  .hero-image-panel {
    position: relative;
    width: 100%;
    height: 560px;
  }
  .hero-swoop-blue { left: -400px; }
  .hero-swoop-orange { left: -500px; }
  .hero-benefits { max-width: 690px; }
  .home-story-split { grid-template-columns: 1fr; gap: 42px; }
}
@media (max-width: 620px) {
  .site-header .container,
  .hero-modern .container { width: min(calc(100% - 28px), var(--container)); }
  .brand-horizontal { gap: 8px; }
  .brand-horizontal .brand-logo { width: 46px; height: 46px; }
  .brand-wordmark { font-size: clamp(.95rem, 4.6vw, 1.08rem); }
  .hero-modern { padding-top: 40px; }
  .hero-modern h1 { font-size: clamp(2.75rem, 14vw, 4rem); }
  .hero-modern .lead { margin: 24px 0 28px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .hero-actions .btn { width: 100%; min-width: 0; min-height: 56px; }
  .hero-benefits { grid-template-columns: 1fr; gap: 14px; margin-top: 38px; }
  .hero-benefit { padding-right: 0; }
  .hero-benefit + .hero-benefit { padding-left: 0; border-left: 0; }
  .hero-image-panel { height: 420px; }
  .hero-swoop-blue { width: 440px; height: 720px; left: -330px; top: -320px; border-width: 52px; }
  .hero-swoop-orange { width: 560px; height: 650px; left: -410px; bottom: -430px; border-width: 70px; }
  .home-split-section { padding: 72px 0; }
  .media-frame-logo { min-height: 390px; }
  .media-frame-logo .media-logo { width: 160px; height: 160px; }
}

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

/* Final alignment and readability refinement */
body[data-page="home"] .section > .container,
body[data-page="home"] .trust-strip > .container {
  width: min(calc(100% - 64px), 1320px);
}

.hero-modern {
  min-height: 760px;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 50%, #eef6fb 50%, #eef6fb 100%);
}
.hero-modern .hero-grid {
  min-height: 760px;
}
.hero-modern .hero-copy {
  width: 49%;
  max-width: 720px;
  padding: 48px 64px 48px 0;
}
.hero-modern h1 {
  max-width: 100%;
  font-size: clamp(3.55rem, 4.35vw, 5.25rem);
  line-height: .98;
  white-space: normal;
}
.hero-line-one,
.hero-line-two {
  display: block;
  white-space: nowrap;
}
.hero-line-two b {
  color: #0a4c86;
  font-weight: 690;
}
.hero-modern .lead {
  max-width: 610px;
  margin: 30px 0 34px;
  font-size: clamp(1.02rem, 1.16vw, 1.15rem);
}
.hero-actions {
  gap: 16px;
}
.hero-actions .btn {
  min-width: 225px;
  min-height: 60px;
}
.hero-benefits {
  margin-top: 44px;
}
.hero-benefit {
  gap: 13px;
  padding-right: 16px;
}
.hero-benefit + .hero-benefit {
  padding-left: 18px;
}
.hero-benefit-icon {
  flex-basis: 50px;
  width: 50px;
  height: 50px;
}
.hero-benefit strong {
  font-size: .9rem;
}
.hero-benefit small {
  font-size: .82rem;
}
.hero-image-panel {
  width: 50%;
}
.hero-image-panel img {
  object-position: 50% center;
}
.hero-swoop-blue {
  width: 580px;
  height: 1030px;
  left: -410px;
  top: -450px;
  border-width: 66px;
  opacity: .92;
}
.hero-swoop-orange {
  width: 750px;
  height: 880px;
  left: -500px;
  bottom: -575px;
  border-width: 88px;
  opacity: .9;
}

.home-split-section {
  padding: 108px 0;
}
.home-story-split {
  grid-template-columns: minmax(480px, .94fr) minmax(0, 1.06fr);
  gap: 88px;
}
.media-frame-logo {
  min-height: 590px;
}
.media-frame-logo .media-logo {
  width: 270px;
  height: 270px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}
.media-frame-logo .media-logo img {
  object-fit: contain;
}
.media-frame-logo .media-caption {
  left: 38px;
  right: 38px;
  bottom: 36px;
}
.media-frame-logo .media-caption strong {
  font-size: 1.45rem;
}
.home-story-split .split-copy h2 {
  font-size: clamp(3rem, 4.25vw, 4.6rem);
  line-height: 1.02;
}
.home-story-split .split-copy .lead {
  font-size: 1.15rem;
  line-height: 1.7;
}
.check-list-detail strong {
  font-size: 1.02rem;
}
.check-list-detail span {
  font-size: .96rem;
}

.trust-item {
  min-height: 126px;
  padding: 28px 24px;
}
.trust-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}
.trust-item strong {
  font-size: .98rem;
}
.trust-item span {
  font-size: .82rem;
}

body[data-page="home"] .section-heading {
  margin-bottom: 58px;
}
body[data-page="home"] .section-heading p {
  font-size: .98rem;
  line-height: 1.7;
}
body[data-page="home"] .card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
body[data-page="home"] .service-card {
  min-height: 330px;
  padding: 32px;
}
body[data-page="home"] .service-card:last-child {
  grid-column: 2;
}
body[data-page="home"] .service-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 42px;
}
body[data-page="home"] .service-card h3 {
  font-size: 1.35rem;
}
body[data-page="home"] .service-card p {
  font-size: .96rem;
  line-height: 1.65;
}
body[data-page="home"] .service-card .text-link {
  margin-top: 18px;
  font-size: .88rem;
}

body[data-page="home"] .feature-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
body[data-page="home"] .feature-item {
  grid-column: span 2;
  min-height: 270px;
  padding: 34px 30px;
}
body[data-page="home"] .feature-item:nth-last-child(-n+2) {
  grid-column: span 3;
}
body[data-page="home"] .feature-item h3 {
  margin-top: 50px;
  font-size: 1.3rem;
}
body[data-page="home"] .feature-item p {
  font-size: .92rem;
  line-height: 1.65;
}

body[data-page="home"] .process-grid {
  gap: 14px;
}
body[data-page="home"] .process-step {
  padding: 22px 32px 28px 0;
}
body[data-page="home"] .step-num {
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
}
body[data-page="home"] .process-step h3 {
  font-size: 1.15rem;
}
body[data-page="home"] .process-step p {
  font-size: .9rem;
  line-height: 1.6;
}

body[data-page="home"] .cta-band {
  min-height: 270px;
  display: flex;
  align-items: center;
  padding: 72px 76px;
}
body[data-page="home"] .cta-inner {
  width: 100%;
}
body[data-page="home"] .cta-band h2 {
  font-size: clamp(2.45rem, 4vw, 3.9rem);
}
body[data-page="home"] .cta-band p {
  font-size: 1rem;
}
body[data-page="home"] .cta-band .btn {
  min-height: 56px;
}

body[data-page="home"] .footer-main {
  padding-top: 78px;
}
body[data-page="home"] .footer-grid {
  gap: 58px;
}
body[data-page="home"] .footer-brand p,
body[data-page="home"] .footer-links a,
body[data-page="home"] .footer-contact {
  font-size: .87rem;
}

@media (max-width: 1320px) {
  .hero-modern .hero-copy {
    width: 50%;
    max-width: 650px;
    padding-right: 42px;
  }
  .hero-modern h1 {
    font-size: clamp(3.15rem, 4.4vw, 4.4rem);
  }
  .hero-actions .btn {
    min-width: 195px;
  }
  .hero-benefit-icon {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }
  .hero-benefit strong { font-size: .82rem; }
  .hero-benefit small { font-size: .76rem; }
  .home-story-split {
    grid-template-columns: minmax(420px, .92fr) minmax(0, 1.08fr);
    gap: 58px;
  }
}

@media (max-width: 1020px) {
  body[data-page="home"] .section > .container,
  body[data-page="home"] .trust-strip > .container {
    width: min(calc(100% - 40px), var(--container));
  }
  .hero-modern {
    background: #fff;
  }
  .hero-modern .hero-copy {
    width: 100%;
    max-width: 780px;
    padding-right: 0;
  }
  .hero-line-one,
  .hero-line-two {
    white-space: normal;
  }
  .hero-image-panel {
    width: 100%;
  }
  .home-story-split {
    grid-template-columns: 1fr;
  }
  body[data-page="home"] .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body[data-page="home"] .feature-item,
  body[data-page="home"] .feature-item:nth-last-child(-n+2) {
    grid-column: span 1;
  }
  body[data-page="home"] .feature-item:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .card-grid {
    grid-template-columns: 1fr;
  }
  body[data-page="home"] .service-card:last-child {
    grid-column: auto;
  }
  body[data-page="home"] .feature-grid,
  body[data-page="home"] .process-grid {
    grid-template-columns: 1fr;
  }
  body[data-page="home"] .feature-item:last-child {
    grid-column: auto;
  }
  body[data-page="home"] .cta-band {
    min-height: 0;
    padding: 48px 30px;
  }
}

@media (max-width: 620px) {
  body[data-page="home"] .section > .container,
  body[data-page="home"] .trust-strip > .container {
    width: min(calc(100% - 28px), var(--container));
  }
  .hero-modern h1 {
    font-size: clamp(2.7rem, 13.4vw, 3.75rem);
  }
  .hero-actions .btn {
    min-width: 0;
  }
  .media-frame-logo {
    min-height: 420px;
  }
  .media-frame-logo .media-logo {
    width: 190px;
    height: 190px;
  }
}


/* Unified solid-background hero refinement */
.hero-unified {
  min-height: auto;
  padding: 78px 0 86px;
  background: #edf3f7;
  border-bottom: 1px solid #d8e2ea;
}
.hero-unified::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -320px;
  top: -180px;
  border: 64px solid rgba(0,92,161,.06);
  border-radius: 50%;
}
.hero-unified::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: -190px;
  top: -65px;
  border: 44px solid rgba(223,132,27,.06);
  border-radius: 50%;
}
.hero-unified .hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .96fr);
  gap: 54px;
  align-items: center;
  min-height: 620px;
}
.hero-unified .hero-copy {
  width: auto;
  max-width: 620px;
  padding: 0;
}
.hero-unified h1 {
  max-width: none;
  color: #0a4c86;
  font-size: clamp(3.35rem, 5.2vw, 5.35rem);
  font-weight: 700;
  line-height: .96;
  letter-spacing: -.06em;
  white-space: normal;
}
.hero-unified .hero-line-one,
.hero-unified .hero-line-two {
  display: block;
}
.hero-unified .hero-line-two b {
  color: #0a4c86;
  font-weight: 700;
}
.hero-unified .hero-copy h1 em {
  color: var(--brand-orange);
  font-style: normal;
}
.hero-unified .lead {
  max-width: 580px;
  margin: 28px 0 34px;
  color: #475b6f;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.72;
}
.hero-unified .hero-actions {
  gap: 16px;
}
.hero-unified .hero-actions .btn {
  min-width: 220px;
  min-height: 60px;
  padding: .9rem 1.35rem;
}
.hero-unified .hero-actions .btn-outline {
  background: rgba(255,255,255,.72);
}
.hero-unified .hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
  padding-top: 0;
  border-top: 0;
}
.hero-unified .hero-benefit {
  align-items: center;
  gap: 13px;
  padding: 16px 14px;
  border: 1px solid #d5dfe7;
  border-radius: 14px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 28px rgba(13,42,69,.04);
}
.hero-unified .hero-benefit + .hero-benefit {
  padding-left: 14px;
  border-left: 0;
}
.hero-unified .hero-benefit-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid #bdd0df;
  background: #f3f8fc;
}
.hero-unified .hero-benefit-icon.orange {
  border-color: #ebcc9d;
  background: #fff8ef;
}
.hero-unified .hero-benefit strong {
  font-size: .92rem;
}
.hero-unified .hero-benefit small {
  margin-top: 2px;
  font-size: .82rem;
}
.hero-unified .hero-visual {
  position: relative;
  min-height: 560px;
}
.hero-unified .hero-visual-shell {
  position: relative;
  min-height: 560px;
}
.hero-unified .hero-orbit {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.hero-unified .hero-orbit-blue {
  width: 300px;
  height: 620px;
  left: 12px;
  top: -18px;
  border: 42px solid rgba(0,92,161,.88);
  opacity: .9;
}
.hero-unified .hero-orbit-orange {
  width: 340px;
  height: 520px;
  left: 36px;
  bottom: -36px;
  border: 52px solid rgba(223,132,27,.78);
  opacity: .9;
}
.hero-unified .hero-photo-card {
  position: absolute;
  inset: 24px 0 0 92px;
  margin: 0;
  height: calc(100% - 24px);
  border-radius: 28px;
  overflow: hidden;
  background: #0d4c7d;
  box-shadow: 0 28px 74px rgba(8,45,73,.16);
}
.hero-unified .hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,37,60,.06), transparent 28%), linear-gradient(0deg, rgba(5,37,60,.14), transparent 34%);
}
.hero-unified .hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}
.hero-unified .hero-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 16px 34px rgba(5,40,67,.10);
}
.hero-unified .hero-badge small {
  display: block;
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero-unified .hero-badge strong {
  display: block;
  color: var(--brand-blue-dark);
  font-size: 1rem;
  line-height: 1.2;
}
.hero-unified .hero-badge-top {
  top: 52px;
  left: 0;
}
.hero-unified .hero-badge-bottom {
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 4px;
  min-width: 240px;
  padding: 18px 20px;
  color: #fff;
  background: rgba(0,59,104,.94);
}
.hero-unified .hero-badge-bottom small {
  color: rgba(255,255,255,.78);
}
.hero-unified .hero-badge-bottom strong {
  color: #fff;
  font-size: 1.2rem;
}
.hero-unified .badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: 0 0 0 6px rgba(223,132,27,.14);
}

@media (max-width: 1180px) {
  .hero-unified .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(380px, .92fr);
    gap: 40px;
    min-height: 580px;
  }
  .hero-unified .hero-visual,
  .hero-unified .hero-visual-shell {
    min-height: 520px;
  }
  .hero-unified .hero-photo-card {
    left: 72px;
  }
  .hero-unified .hero-benefits {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1020px) {
  .hero-unified {
    padding: 54px 0 60px;
    background: #edf3f7;
  }
  .hero-unified .hero-layout {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
  }
  .hero-unified .hero-copy {
    max-width: 740px;
  }
  .hero-unified .hero-visual,
  .hero-unified .hero-visual-shell {
    min-height: 500px;
  }
  .hero-unified .hero-photo-card {
    inset: 24px 0 0 82px;
  }
  .hero-unified .hero-badge-top {
    left: 10px;
  }
}
@media (max-width: 620px) {
  .hero-unified {
    padding: 36px 0 44px;
  }
  .hero-unified h1 {
    font-size: clamp(2.75rem, 13.8vw, 4rem);
  }
  .hero-unified .lead {
    margin: 22px 0 26px;
  }
  .hero-unified .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-unified .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }
  .hero-unified .hero-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }
  .hero-unified .hero-benefit + .hero-benefit {
    padding-left: 14px;
  }
  .hero-unified .hero-visual,
  .hero-unified .hero-visual-shell {
    min-height: 390px;
  }
  .hero-unified .hero-orbit-blue {
    width: 220px;
    height: 420px;
    left: -10px;
    top: 0;
    border-width: 30px;
  }
  .hero-unified .hero-orbit-orange {
    width: 230px;
    height: 360px;
    left: 8px;
    bottom: -20px;
    border-width: 34px;
  }
  .hero-unified .hero-photo-card {
    inset: 18px 0 0 46px;
    border-radius: 22px;
  }
  .hero-unified .hero-badge-top {
    top: 8px;
    left: 0;
    padding: 10px 12px;
  }
  .hero-unified .hero-badge-bottom {
    right: 12px;
    bottom: 12px;
    min-width: 180px;
    padding: 12px 14px;
  }
  .hero-unified .hero-badge-bottom strong {
    font-size: 1rem;
  }
}
