:root {
  --navy: #0a2e5d;
  --deep: #071e33;
  --blue: #0e6fbe;
  --teal: #12b8a6;
  --sky: #5bc0eb;
  --orange: #f4a62a;
  --ink: #23364d;
  --muted: #62748a;
  --line: #d4e1e9;
  --light: #f3f7fa;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(7, 30, 51, .12);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 102px 0; position: relative; }
.section--light { background: var(--light); }
.section--dark { background: var(--deep); color: var(--white); overflow: hidden; }
.section--dark::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 25%, rgba(18,184,166,.18), transparent 30%),
              radial-gradient(circle at 90% 75%, rgba(91,192,235,.15), transparent 28%);
  pointer-events: none;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal);
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: currentColor; border-radius: 999px; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(46px, 6vw, 78px); line-height: 1.02; letter-spacing: -.045em; margin-bottom: 26px; }
h2 { font-size: clamp(34px, 4vw, 54px); line-height: 1.08; letter-spacing: -.035em; color: var(--navy); margin-bottom: 20px; }
.section--dark h2 { color: var(--white); }
h3 { font-size: 21px; line-height: 1.25; color: var(--navy); margin-bottom: 10px; }
.lead { font-size: clamp(18px, 2vw, 21px); line-height: 1.65; color: var(--muted); max-width: 760px; }
.section--dark .lead { color: #c8d7e4; }
.section-heading { margin-bottom: 52px; max-width: 820px; }
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading.center .eyebrow { justify-content: center; }

.skip-link { position: fixed; left: 18px; top: -70px; z-index: 9999; padding: 12px 16px; background: var(--teal); color: var(--deep); font-weight: 800; border-radius: 9px; transition: top .2s; }
.skip-link:focus { top: 18px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  background: rgba(255,255,255,.93); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,225,233,.82);
}
.nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { width: 275px; flex: 0 0 auto; }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink); font-size: 14px; font-weight: 700; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-toggle { display: none; border: 0; background: none; padding: 8px; color: var(--navy); }
.nav-toggle span { display: block; width: 26px; height: 2px; margin: 5px; background: currentColor; transition: .25s; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 22px; border-radius: 999px;
  font-size: 14px; font-weight: 800; border: 1px solid transparent;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { color: var(--white); background: linear-gradient(135deg, var(--blue), var(--teal)); box-shadow: 0 14px 35px rgba(14,111,190,.25); }
.btn--primary:hover { box-shadow: 0 18px 42px rgba(14,111,190,.34); }
.btn--outline { color: var(--white); border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.05); }
.btn--outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }
.btn--light { color: var(--navy); background: var(--white); }

.hero {
  min-height: 100svh; padding: 156px 0 82px;
  color: var(--white); background: var(--deep); position: relative; overflow: hidden; display: grid; align-items: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 84% 22%, rgba(91,192,235,.19), transparent 28%),
              radial-gradient(circle at 70% 80%, rgba(18,184,166,.18), transparent 25%),
              linear-gradient(112deg, transparent 44%, rgba(14,111,190,.09));
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; position: relative; z-index: 1; }
.hero h1 span { display: block; color: var(--teal); }
.hero-copy > p { font-size: 19px; color: #cbd9e5; max-width: 690px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 36px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; color: #9fb6c8; font-size: 13px; font-weight: 700; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust i { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }

.route-card {
  position: relative; min-height: 530px; border-radius: 34px; padding: 38px;
  background: linear-gradient(155deg, rgba(19,61,93,.95), rgba(7,30,51,.78));
  border: 1px solid rgba(142,189,218,.2); box-shadow: 0 38px 100px rgba(0,0,0,.32); overflow: hidden;
}
.route-card::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(117,158,184,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(117,158,184,.09) 1px, transparent 1px); background-size: 42px 42px; }
.route-card::after { content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%; border: 1px solid rgba(91,192,235,.14); right: -140px; top: -130px; box-shadow: 0 0 0 42px rgba(91,192,235,.035), 0 0 0 84px rgba(91,192,235,.025); }
.route-title { position: relative; z-index: 2; font-size: 13px; text-transform: uppercase; letter-spacing: .16em; color: var(--sky); font-weight: 800; }
.route-line { position: absolute; left: 48px; right: 48px; top: 250px; height: 3px; background: linear-gradient(90deg, var(--teal), var(--sky), var(--orange), var(--teal)); border-radius: 99px; transform: rotate(-7deg); transform-origin: center; }
.route-node { position: absolute; z-index: 3; width: 88px; text-align: center; }
.route-node .icon-bubble { width: 60px; height: 60px; margin: 0 auto 12px; border-radius: 18px; display: grid; place-items: center; color: var(--white); box-shadow: 0 14px 28px rgba(0,0,0,.24); }
.route-node svg { width: 29px; height: 29px; }
.route-node strong { display: block; font-size: 12px; color: var(--white); }
.route-node small { display: block; font-size: 10px; color: #9fb6c8; margin-top: 4px; }
.route-node--1 { left: 24px; top: 315px; }
.route-node--2 { left: 32%; top: 225px; }
.route-node--3 { right: 27%; top: 130px; }
.route-node--4 { right: 22px; top: 72px; }
.bg-teal { background: var(--teal); } .bg-blue { background: var(--blue); } .bg-orange { background: var(--orange); }
.route-stat { position: absolute; z-index: 3; left: 36px; bottom: 34px; right: 36px; display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.route-stat div { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 15px 12px; text-align: center; }
.route-stat strong { display: block; font-size: 15px; color: var(--white); }
.route-stat span { font-size: 10px; color: #a8bdcc; text-transform: uppercase; letter-spacing: .1em; }

.about-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 60px; align-items: center; }
.about-copy { padding-right: 30px; }
.about-copy p { color: var(--muted); font-size: 17px; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.highlight { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: 0 12px 35px rgba(10,46,93,.06); }
.highlight .mini-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; margin-bottom: 18px; color: var(--white); }
.highlight .mini-icon svg { width: 23px; }
.highlight h3 { font-size: 17px; margin: 0 0 5px; }
.highlight p { margin: 0; font-size: 13px; color: var(--muted); }
.mission-vision { margin-top: 36px; display: grid; grid-template-columns: 1fr 1fr; background: var(--navy); border-radius: 24px; overflow: hidden; color: var(--white); }
.mission-vision article { padding: 30px; }
.mission-vision article + article { border-left: 1px solid rgba(255,255,255,.14); }
.mission-vision h3 { color: var(--teal); font-size: 14px; text-transform: uppercase; letter-spacing: .12em; }
.mission-vision p { color: #cbd9e5; margin: 0; font-size: 14px; }

.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.service-card { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; min-height: 290px; transition: transform .25s, box-shadow .25s, border-color .25s; overflow: hidden; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: rgba(18,184,166,.42); }
.service-card::after { content: ""; position: absolute; width: 90px; height: 90px; border-radius: 50%; right: -40px; bottom: -40px; background: rgba(18,184,166,.08); }
.service-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px; margin-bottom: 24px; color: var(--white); }
.service-icon svg { width: 29px; height: 29px; }
.service-card h3 { font-size: 20px; }
.service-card p { color: var(--muted); font-size: 14px; }
.service-card a { display: inline-flex; gap: 7px; align-items: center; color: var(--blue); font-size: 13px; font-weight: 800; margin-top: 9px; }

.freight-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; }
.freight-main { min-height: 530px; padding: 42px; border-radius: 28px; color: var(--white); background: linear-gradient(145deg,var(--navy),var(--deep)); position: relative; overflow: hidden; }
.freight-main::before { content: ""; position: absolute; width: 340px; height: 340px; border: 1px solid rgba(91,192,235,.18); border-radius: 50%; right: -140px; bottom: -150px; box-shadow: 0 0 0 55px rgba(91,192,235,.035),0 0 0 110px rgba(91,192,235,.025); }
.freight-main h3 { color: var(--white); font-size: 31px; margin-top: 78px; }
.freight-main p { color: #c4d5e2; }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; }
.check-list li { position: relative; padding-left: 28px; margin: 13px 0; color: #d8e5ee; font-size: 14px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--teal); font-weight: 900; }
.freight-side { display: grid; gap: 24px; }
.freight-card { border-radius: 28px; padding: 34px; background: var(--white); border: 1px solid var(--line); min-height: 253px; }
.freight-card h3 { margin-top: 28px; }
.freight-card p { color: var(--muted); }

.process { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; counter-reset: process; }
.process-step { counter-increment: process; position: relative; padding: 34px 25px 27px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
.process-step::before { content: counter(process, decimal-leading-zero); display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--teal); color: var(--white); font-size: 13px; font-weight: 900; margin-bottom: 24px; }
.process-step:not(:last-child)::after { content: ""; position: absolute; width: 18px; height: 2px; top: 55px; right: -19px; background: var(--line); }
.process-step p { color: var(--muted); font-size: 13px; margin: 0; }
.document-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 36px; }
.document-cloud span { padding: 10px 14px; border-radius: 999px; background: var(--navy); color: var(--white); font-size: 12px; font-weight: 700; }

.project-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 58px; align-items: center; position: relative; }
.project-flow { position: relative; min-height: 480px; border-radius: 30px; background: rgba(14,49,80,.75); border: 1px solid rgba(101,159,193,.26); overflow: hidden; }
.project-flow::before { content: ""; position: absolute; left: 12%; right: 12%; top: 50%; height: 3px; background: linear-gradient(90deg,var(--teal),var(--sky),var(--orange),var(--teal)); }
.project-nodes { position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-around; padding: 0 28px; }
.project-node { width: 92px; text-align: center; transform: translateY(-34px); }
.project-node:nth-child(even) { transform: translateY(34px); }
.project-node .bubble { width: 67px; height: 67px; display: grid; place-items: center; border-radius: 21px; margin: 0 auto 13px; color: var(--white); box-shadow: 0 16px 34px rgba(0,0,0,.25); }
.project-node svg { width: 32px; }
.project-node strong { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.project-copy h2 { margin-bottom: 25px; }
.project-copy > p { color: #c5d5e2; }
.project-list { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px; margin-top: 38px; }
.project-list article { padding-left: 18px; border-left: 3px solid var(--teal); }
.project-list h3 { color: var(--white); font-size: 16px; }
.project-list p { color: #aebfcd; font-size: 13px; margin: 0; }

.fulfillment-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.fulfillment-card { background: var(--white); border-radius: 26px; border: 1px solid var(--line); overflow: hidden; }
.fulfillment-card header { padding: 28px; color: var(--white); }
.fulfillment-card header h3 { color: var(--white); margin: 14px 0 0; }
.fulfillment-card .body { padding: 28px; }
.fulfillment-card ul { margin: 0; padding: 0; list-style: none; }
.fulfillment-card li { padding: 10px 0 10px 24px; border-bottom: 1px solid var(--line); position: relative; color: var(--muted); font-size: 14px; }
.fulfillment-card li:last-child { border-bottom: 0; }
.fulfillment-card li::before { content: ""; position: absolute; left: 0; top: 18px; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.model-note { margin-top: 30px; border-radius: 22px; padding: 28px 30px; background: var(--navy); color: var(--white); display: flex; gap: 25px; align-items: center; }
.model-note strong { color: var(--teal); text-transform: uppercase; letter-spacing: .1em; font-size: 12px; white-space: nowrap; }
.model-note p { margin: 0; color: #d4e1ea; font-size: 14px; }

.delivery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.delivery-map { min-height: 470px; border-radius: 30px; background: var(--light); border: 1px solid var(--line); position: relative; overflow: hidden; }
.delivery-map::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg,var(--line) 1px,transparent 1px); background-size: 52px 52px; opacity: .45; }
.delivery-path { position: absolute; left: 13%; right: 13%; top: 49%; height: 4px; border-radius: 99px; background: linear-gradient(90deg,var(--teal),var(--blue),var(--orange)); transform: rotate(-18deg); box-shadow: 0 5px 15px rgba(14,111,190,.2); }
.delivery-dot { position: absolute; width: 26px; height: 26px; border: 7px solid var(--white); border-radius: 50%; box-shadow: 0 6px 18px rgba(0,0,0,.15); }
.delivery-dot.one { left: 13%; bottom: 20%; background: var(--teal); }
.delivery-dot.two { left: 50%; top: 43%; background: var(--orange); }
.delivery-dot.three { right: 15%; top: 18%; background: var(--blue); }
.delivery-map .map-label { position: absolute; background: var(--white); color: var(--navy); border-radius: 12px; padding: 9px 12px; font-size: 11px; font-weight: 800; box-shadow: 0 10px 26px rgba(0,0,0,.12); }
.map-label.one { left: 8%; bottom: 10%; } .map-label.two { left: 42%; top: 32%; } .map-label.three { right: 5%; top: 9%; }
.capability-list { display: grid; gap: 13px; margin: 30px 0; }
.capability-list div { display: flex; align-items: center; gap: 13px; padding: 15px 17px; border: 1px solid var(--line); border-radius: 15px; color: var(--ink); font-size: 14px; font-weight: 700; }
.capability-list div span { width: 30px; height: 30px; border-radius: 10px; display: grid; place-items: center; background: rgba(18,184,166,.12); color: var(--teal); }
.delivery-flow { display: grid; grid-template-columns: repeat(5,1fr); overflow: hidden; border-radius: 13px; }
.delivery-flow span { padding: 11px 5px; text-align: center; color: var(--white); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.delivery-flow span:nth-child(1) { background: var(--blue); } .delivery-flow span:nth-child(2) { background: var(--sky); } .delivery-flow span:nth-child(3) { background: var(--teal); } .delivery-flow span:nth-child(4) { background: var(--orange); } .delivery-flow span:nth-child(5) { background: var(--navy); }

.industries-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.industry-card { min-height: 190px; padding: 26px; border-radius: 22px; background: var(--white); border: 1px solid var(--line); position: relative; overflow: hidden; transition: transform .25s, box-shadow .25s; }
.industry-card:hover { transform: translateY(-5px); box-shadow: 0 18px 45px rgba(10,46,93,.1); }
.industry-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 5px; background: var(--teal); }
.industry-card:nth-child(3n+2)::before { background: var(--blue); }
.industry-card:nth-child(3n+3)::before { background: var(--orange); }
.industry-card h3 { font-size: 17px; margin-bottom: 8px; }
.industry-card p { color: var(--muted); font-size: 13px; margin: 0; }
.why-bar { margin-top: 34px; border-radius: 25px; background: var(--navy); padding: 30px; color: var(--white); }
.why-bar h3 { color: var(--white); margin-bottom: 19px; }
.why-items { display: flex; flex-wrap: wrap; gap: 12px; }
.why-items span { padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.1); font-size: 12px; font-weight: 700; }
.why-items span::before { content: "•"; color: var(--teal); margin-right: 8px; }

.contact { background: var(--deep); color: var(--white); position: relative; overflow: hidden; }
.contact::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 20%, rgba(18,184,166,.19),transparent 28%), radial-gradient(circle at 90% 80%,rgba(14,111,190,.2),transparent 30%); }
.contact-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 60px; align-items: center; position: relative; }
.contact h2 { color: var(--white); }
.contact-copy > p { color: #bcd0df; font-size: 17px; }
.contact-details { display: grid; gap: 15px; margin-top: 34px; }
.contact-details a, .contact-details div { display: flex; gap: 13px; align-items: center; color: #d7e4ec; font-size: 14px; }
.contact-details span { width: 39px; height: 39px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: var(--teal); flex: 0 0 auto; }
.quote-form { background: var(--white); color: var(--ink); padding: 34px; border-radius: 30px; box-shadow: 0 28px 80px rgba(0,0,0,.28); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 12px; font-weight: 800; color: var(--navy); }
.form-field input, .form-field textarea { width: 100%; border: 1px solid var(--line); border-radius: 13px; padding: 13px 14px; color: var(--ink); background: #fbfdfe; outline: none; transition: border .2s, box-shadow .2s; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(18,184,166,.12); }
.form-field textarea { min-height: 120px; resize: vertical; }
.form-note { color: var(--muted); font-size: 11px; margin: 12px 0 0; }

.site-footer { background: #041522; color: #a9bdca; padding: 29px 0; }
.footer-row { display: flex; justify-content: space-between; gap: 20px; align-items: center; font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a:hover { color: var(--white); }
.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: #25d366; color: var(--white); box-shadow: 0 14px 34px rgba(0,0,0,.23); z-index: 900; transition: transform .2s; }
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.03); }
.floating-whatsapp svg { width: 27px; }

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

@media (max-width: 1020px) {
  .nav-links { gap: 16px; } .nav-links a { font-size: 13px; }
  .hero-grid, .about-grid, .freight-grid, .project-grid, .delivery-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 135px; }
  .route-card { min-height: 500px; max-width: 670px; width: 100%; margin-inline: auto; }
  .service-grid, .fulfillment-grid { grid-template-columns: repeat(2,1fr); }
  .industries-grid { grid-template-columns: repeat(2,1fr); }
  .process { grid-template-columns: repeat(2,1fr); }
  .process-step:nth-child(2)::after { display: none; }
  .about-copy { padding-right: 0; }
}
@media (max-width: 820px) {
  .nav-toggle { display: block; z-index: 2; }
  .nav-links { position: fixed; inset: 82px 0 auto; height: calc(100vh - 82px); background: var(--white); padding: 34px 26px; display: flex; flex-direction: column; align-items: flex-start; gap: 22px; transform: translateX(100%); transition: transform .25s; }
  .nav-links.open { transform: none; }
  .nav-links .btn { width: 100%; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .brand { width: 225px; }
  .hero-grid { gap: 48px; }
  .section { padding: 82px 0; }
  .mission-vision { grid-template-columns: 1fr; }
  .mission-vision article + article { border-left: 0; border-top: 1px solid rgba(255,255,255,.14); }
  .project-list { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--container)); }
  h1 { font-size: 44px; }
  h2 { font-size: 35px; }
  .section { padding: 70px 0; }
  .service-grid, .fulfillment-grid, .industries-grid, .process, .about-highlights, .form-grid { grid-template-columns: 1fr; }
  .process-step::after { display: none; }
  .route-card { min-height: 545px; padding: 24px; }
  .route-line { left: 40px; right: 40px; top: 250px; }
  .route-node--1 { left: 4px; top: 326px; }
  .route-node--2 { left: 23%; top: 237px; }
  .route-node--3 { right: 19%; top: 141px; }
  .route-node--4 { right: 3px; top: 76px; }
  .route-stat { grid-template-columns: 1fr; left: 24px; right: 24px; bottom: 20px; gap: 7px; }
  .route-stat div { padding: 8px; }
  .project-flow { min-height: 570px; }
  .project-flow::before { left: 50%; top: 12%; bottom: 12%; width: 3px; height: auto; }
  .project-nodes { flex-direction: column; padding: 26px; }
  .project-node, .project-node:nth-child(even) { transform: none; }
  .model-note { display: block; }
  .model-note strong { display: block; margin-bottom: 8px; }
  .delivery-flow { grid-template-columns: 1fr; }
  .footer-row { flex-direction: column; align-items: flex-start; }
  .quote-form { padding: 25px; }
  .form-field.full { grid-column: auto; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } .reveal { opacity: 1; transform: none; } }
