:root {
  --navy: #0b1732;
  --navy-2: #14264d;
  --wine: #8b1738;
  --wine-dark: #72122d;
  --cream: #f7f4f1;
  --paper: #ffffff;
  --ink: #111a2f;
  --muted: #687188;
  --line: #e5e7ed;
  --soft: #f3f5f8;
  --radius-lg: 30px;
  --radius-md: 20px;
  --shadow: 0 25px 70px rgba(11, 23, 50, .12);
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 100; padding: 10px 14px; border-radius: 10px; background: white; }
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled { background: rgba(255,255,255,.9); box-shadow: 0 1px 0 rgba(11,23,50,.08); backdrop-filter: blur(18px); }
.nav-wrap { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { position: relative; z-index: 2; }
.site-nav { display: flex; align-items: center; gap: 31px; font-size: 14px; font-weight: 700; color: #33405c; }
.site-nav > a:not(.button) { position: relative; }
.site-nav > a:not(.button)::after { content: ""; position: absolute; height: 2px; left: 0; right: 100%; bottom: -8px; background: var(--wine); transition: right .2s ease; }
.site-nav > a:not(.button):hover::after { right: 0; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: var(--soft); position: relative; z-index: 2; }
.menu-toggle span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--navy); transition: .25s ease; }
.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 25px; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.button { min-height: 54px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; border-radius: 14px; font-size: 14px; font-weight: 800; letter-spacing: -.01em; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--wine); color: white; box-shadow: 0 12px 30px rgba(139,23,56,.23); }
.button-primary:hover { background: var(--wine-dark); box-shadow: 0 17px 35px rgba(139,23,56,.27); }
.button-small { min-height: 43px; padding-inline: 18px; border-radius: 11px; }
.button-ghost { border-color: rgba(11,23,50,.14); background: rgba(255,255,255,.55); color: var(--navy); }
.button-ghost:hover { background: white; box-shadow: 0 10px 25px rgba(11,23,50,.08); }
.button-white { background: white; color: var(--navy); }
.button-dark-outline { border-color: rgba(11,23,50,.22); color: var(--navy); }

.hero { min-height: 820px; padding: 154px 0 92px; overflow: hidden; position: relative; background: linear-gradient(150deg, #fbfaf9 0%, #f5f6f9 48%, #eff3f7 100%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .4; background-image: radial-gradient(rgba(11,23,50,.09) .7px, transparent .7px); background-size: 24px 24px; mask-image: linear-gradient(90deg, #000, transparent 42%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(3px); }
.hero-glow-one { width: 470px; height: 470px; background: rgba(139,23,56,.12); right: -180px; top: 110px; }
.hero-glow-two { width: 360px; height: 360px; background: rgba(35,77,140,.1); right: 220px; bottom: -190px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 76px; align-items: center; position: relative; z-index: 1; }
.eyebrow, .kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--wine); font-size: 12px; text-transform: uppercase; letter-spacing: .15em; font-weight: 800; }
.eyebrow span { width: 27px; height: 2px; background: var(--wine); }
.hero h1 { margin: 22px 0 22px; max-width: 690px; font-size: clamp(52px, 6vw, 82px); line-height: .99; letter-spacing: -.055em; font-weight: 800; color: var(--navy); }
.hero h1 em { font-style: normal; color: var(--wine); }
.hero-lead { max-width: 620px; margin: 0; color: #566178; font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; gap: 13px; margin-top: 34px; }
.hero-points { margin-top: 31px; display: flex; flex-wrap: wrap; gap: 21px; color: #4e5a71; font-size: 12px; font-weight: 700; }
.hero-points span { display: flex; align-items: center; gap: 8px; }
.hero-points i { width: 7px; height: 7px; border-radius: 50%; background: var(--wine); box-shadow: 0 0 0 4px rgba(139,23,56,.1); }

.hero-visual { min-height: 540px; position: relative; display: grid; place-items: center; }
.status-card { width: min(100%, 470px); min-height: 470px; position: relative; z-index: 3; padding: 29px; border: 1px solid rgba(255,255,255,.72); border-radius: 29px; background: rgba(255,255,255,.86); box-shadow: 0 38px 85px rgba(11,23,50,.17); backdrop-filter: blur(16px); transform: rotate(1.5deg); }
.status-top { display: flex; justify-content: space-between; align-items: start; gap: 20px; }
.micro-label { display: block; color: #8a92a3; text-transform: uppercase; letter-spacing: .12em; font-size: 9px; font-weight: 800; margin-bottom: 7px; }
.status-top strong { font-size: 19px; color: var(--navy); }
.status-badge { display: inline-flex; padding: 8px 11px; border-radius: 999px; background: #e8f4ef; color: #247052; font-size: 10px; font-weight: 800; }
.shipment-meta { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6px 20px; margin: 25px 0; padding: 17px 18px; border-radius: 14px; background: #f6f7f9; font-size: 11px; }
.shipment-meta span { color: #8a92a3; }
.shipment-meta strong { color: #293550; text-align: right; }
.timeline { padding: 3px 0; }
.timeline-item { min-height: 72px; display: grid; grid-template-columns: 27px 1fr; gap: 14px; position: relative; }
.timeline-item:not(:last-child)::before { content: ""; position: absolute; left: 13px; top: 26px; bottom: -4px; width: 1px; background: #dfe2e8; }
.timeline-dot { width: 27px; height: 27px; display: grid; place-items: center; border: 2px solid #dfe2e8; border-radius: 50%; background: white; z-index: 1; }
.timeline-dot svg { width: 15px; }
.timeline-item.complete .timeline-dot { border-color: var(--wine); background: var(--wine); color: white; }
.timeline-item.active .timeline-dot { border: 6px solid rgba(139,23,56,.14); background: var(--wine); box-shadow: inset 0 0 0 5px white; }
.timeline-item strong { display: block; color: #26324b; font-size: 13px; line-height: 1.3; }
.timeline-item small { display: block; color: #9198a8; margin-top: 5px; font-size: 10px; }
.timeline-item.active strong { color: var(--wine); }
.route-line { position: absolute; border: 1px dashed rgba(139,23,56,.23); border-radius: 50%; }
.route-line-one { inset: 24px -40px 3px 30px; transform: rotate(-12deg); }
.route-line-two { width: 360px; height: 360px; left: -10px; top: 40px; border-color: rgba(11,23,50,.14); }
.floating-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 12px; padding: 13px 16px; border: 1px solid rgba(255,255,255,.75); border-radius: 16px; background: rgba(255,255,255,.9); box-shadow: 0 20px 45px rgba(11,23,50,.14); backdrop-filter: blur(10px); }
.floating-card small, .floating-card strong { display: block; }
.floating-card small { color: #9299a9; font-size: 9px; margin-bottom: 4px; }
.floating-card strong { color: var(--navy); font-size: 11px; }
.floating-air { right: -27px; top: 84px; animation: float 4.5s ease-in-out infinite; }
.floating-doc { left: -33px; bottom: 57px; animation: float 5.2s ease-in-out infinite reverse; }
.mode-icon { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 12px; color: white; background: var(--wine); }
.mode-icon.light { color: var(--navy); background: #e9edf3; }
.mode-icon svg { width: 19px; }
@keyframes float { 50% { transform: translateY(-9px); } }

.trust-strip { position: relative; z-index: 2; margin-top: -2px; border-top: 1px solid rgba(11,23,50,.06); border-bottom: 1px solid var(--line); background: white; }
.trust-grid { min-height: 125px; display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-grid > div { display: flex; align-items: center; justify-content: center; gap: 15px; padding: 25px; }
.trust-grid > div:not(:last-child) { border-right: 1px solid var(--line); }
.trust-icon { width: 46px; height: 46px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 14px; color: var(--wine); background: rgba(139,23,56,.08); }
.trust-icon svg { width: 22px; }
.trust-grid strong, .trust-grid small { display: block; }
.trust-grid strong { color: var(--navy); font-size: 13px; }
.trust-grid small { color: #8a92a3; font-size: 10px; margin-top: 4px; }

.section { padding: 120px 0; }
.section-heading { display: grid; grid-template-columns: 1.05fr .65fr; gap: 100px; align-items: end; margin-bottom: 55px; }
h2 { margin: 15px 0 0; color: var(--navy); font-size: clamp(38px, 5vw, 57px); line-height: 1.08; letter-spacing: -.045em; }
.section-heading p, .why-copy > p, .process-copy > p { margin: 0; color: var(--muted); line-height: 1.8; font-size: 15px; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-card { min-height: 360px; position: relative; overflow: hidden; padding: 33px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(139,23,56,.25); box-shadow: var(--shadow); }
.service-card.featured { grid-row: span 2; min-height: 740px; color: white; border: 0; background: linear-gradient(145deg, var(--navy), #1c315d); }
.service-card.featured::after { content: ""; width: 390px; height: 390px; position: absolute; right: -170px; bottom: -150px; border: 70px solid rgba(255,255,255,.04); border-radius: 50%; }
.card-number { position: absolute; right: 27px; top: 24px; color: #b8bdc8; font-size: 11px; font-weight: 800; }
.featured .card-number { color: rgba(255,255,255,.42); }
.service-icon { width: 60px; height: 60px; display: grid; place-items: center; margin-bottom: 68px; border-radius: 17px; color: var(--wine); background: rgba(139,23,56,.09); }
.service-icon svg { width: 27px; }
.featured .service-icon { margin-bottom: 160px; color: white; background: rgba(255,255,255,.1); }
.service-card h3 { margin: 0 0 12px; color: var(--navy); font-size: 24px; letter-spacing: -.03em; }
.featured h3 { color: white; font-size: 36px; }
.service-card p { margin: 0; color: var(--muted); line-height: 1.75; font-size: 13px; }
.featured p { max-width: 520px; color: rgba(255,255,255,.68); font-size: 15px; }
.service-card ul { list-style: none; padding: 0; margin: 35px 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.service-card li { padding: 9px 12px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; color: rgba(255,255,255,.84); font-size: 10px; }
.service-card > a { position: absolute; left: 33px; bottom: 31px; color: var(--wine); font-size: 12px; font-weight: 800; }
.service-card > a span { margin-left: 4px; transition: margin .2s ease; }
.service-card > a:hover span { margin-left: 9px; }

.process-section { color: white; background: var(--navy); overflow: hidden; position: relative; }
.process-section::before { content: ""; width: 680px; height: 680px; position: absolute; left: -420px; top: -270px; border: 100px solid rgba(255,255,255,.03); border-radius: 50%; }
.process-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 110px; position: relative; z-index: 1; }
.light-kicker { color: #d396a6; }
.process-copy { position: sticky; top: 140px; align-self: start; }
.process-copy h2 { color: white; }
.process-copy > p { color: rgba(255,255,255,.62); margin: 26px 0 34px; }
.steps { display: grid; gap: 13px; }
.step { min-height: 155px; display: grid; grid-template-columns: 66px 1fr; gap: 24px; align-items: center; padding: 27px; border: 1px solid rgba(255,255,255,.1); border-radius: 19px; background: rgba(255,255,255,.045); }
.step > span { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 16px; color: #e0afbb; background: rgba(139,23,56,.35); font-weight: 800; }
.step h3 { margin: 0 0 7px; font-size: 17px; }
.step p { margin: 0; color: rgba(255,255,255,.57); font-size: 12px; line-height: 1.65; }

.why { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 110px; align-items: center; }
.why-visual { min-height: 590px; position: relative; display: grid; place-items: center; }
.port-scene { width: min(100%, 510px); height: 510px; overflow: hidden; position: relative; border-radius: 38px; background: linear-gradient(#dce6ee 0 55%, #a8c7d6 55% 100%); box-shadow: var(--shadow); }
.sun { width: 72px; height: 72px; position: absolute; right: 62px; top: 66px; border-radius: 50%; background: rgba(255,255,255,.65); box-shadow: 0 0 0 18px rgba(255,255,255,.18); }
.island { position: absolute; height: 38px; border-radius: 50% 50% 0 0; background: #3e6b65; bottom: 214px; }
.island-one { width: 200px; left: -40px; }
.island-two { width: 130px; right: -15px; bottom: 218px; opacity: .8; }
.ship { width: 310px; height: 154px; position: absolute; left: 102px; bottom: 131px; }
.ship-body { width: 100%; height: 73px; position: absolute; bottom: 0; clip-path: polygon(0 0, 100% 0, 84% 100%, 14% 100%); background: var(--navy); }
.ship-body::after { content: "SMART CARGO"; position: absolute; left: 92px; top: 30px; color: rgba(255,255,255,.8); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.ship-load { width: 220px; position: absolute; left: 42px; bottom: 65px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.ship-load i { height: 32px; background: var(--wine); box-shadow: inset 0 0 0 1px rgba(255,255,255,.22); }
.ship-load i:nth-child(even) { background: #d5a45c; }
.water-line { height: 2px; position: absolute; border-radius: 10px; background: rgba(255,255,255,.43); }
.w1 { width: 160px; left: 30px; bottom: 88px; }.w2 { width: 210px; right: 22px; bottom: 54px; }.w3 { width: 110px; left: 70px; bottom: 27px; }
.local-card { position: absolute; right: -12px; bottom: 16px; display: flex; align-items: center; gap: 13px; padding: 15px 18px; border-radius: 17px; background: white; box-shadow: 0 20px 50px rgba(11,23,50,.17); }
.local-card > span { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 12px; color: white; background: var(--wine); font-size: 12px; font-weight: 800; }
.local-card small, .local-card strong { display: block; }
.local-card small { color: #9299a9; font-size: 9px; margin-bottom: 4px; }
.local-card strong { color: var(--navy); font-size: 11px; }
.why-copy h2 { margin-bottom: 24px; }
.benefit-list { display: grid; gap: 24px; margin-top: 38px; }
.benefit-list > div { display: grid; grid-template-columns: 46px 1fr; gap: 16px; align-items: start; }
.benefit-list > div > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: white; background: var(--wine); }
.benefit-list svg { width: 20px; }
.benefit-list strong, .benefit-list small { display: block; }
.benefit-list strong { color: var(--navy); font-size: 14px; margin-bottom: 5px; }
.benefit-list small { color: var(--muted); font-size: 11px; line-height: 1.6; }

.quote-section { color: white; background: linear-gradient(135deg, var(--navy), #172c57); }
.quote-wrap { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; align-items: start; }
.quote-copy { padding-top: 24px; }
.quote-copy h2 { color: white; }
.quote-copy > p { color: rgba(255,255,255,.62); line-height: 1.75; margin: 24px 0 35px; }
.quote-contact { display: flex; align-items: center; gap: 14px; }
.contact-icon { width: 47px; height: 47px; display: grid; place-items: center; border-radius: 14px; background: rgba(255,255,255,.1); }
.contact-icon svg { width: 21px; }
.quote-contact small, .quote-contact a { display: block; }
.quote-contact small { color: rgba(255,255,255,.48); font-size: 10px; margin-bottom: 5px; }
.quote-contact a { font-size: 13px; font-weight: 700; }
.quote-form { padding: 31px; border: 1px solid rgba(255,255,255,.12); border-radius: 25px; background: rgba(255,255,255,.07); box-shadow: 0 28px 70px rgba(0,0,0,.16); backdrop-filter: blur(15px); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form label { display: grid; gap: 8px; margin-bottom: 16px; color: rgba(255,255,255,.73); font-size: 10px; font-weight: 700; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; min-height: 49px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 11px; outline: 0; color: white; background: rgba(255,255,255,.08); transition: border .2s ease, background .2s ease; }
.quote-form textarea { resize: vertical; }
.quote-form input::placeholder, .quote-form textarea::placeholder { color: rgba(255,255,255,.35); }
.quote-form select { color-scheme: dark; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: #d496a6; background: rgba(255,255,255,.11); }
.form-button { width: 100%; border: 0; margin-top: 5px; }
.form-note { margin: 13px 0 0; text-align: center; color: rgba(255,255,255,.35); font-size: 9px; }

.final-cta { padding: 90px 0; }
.final-cta-inner { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.final-cta h2 { font-size: clamp(36px, 5vw, 54px); }
.final-actions { display: flex; gap: 12px; flex: 0 0 auto; }

.site-footer { padding: 74px 0 25px; color: white; background: #081329; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; padding-bottom: 58px; }
.footer-brand p { max-width: 390px; color: rgba(255,255,255,.48); font-size: 12px; line-height: 1.75; margin-top: 22px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.footer-links > div { display: grid; align-content: start; gap: 12px; }
.footer-links strong { margin-bottom: 6px; font-size: 12px; }
.footer-links a { color: rgba(255,255,255,.5); font-size: 11px; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.38); font-size: 9px; }
.toast { position: fixed; left: 50%; bottom: 25px; z-index: 100; transform: translate(-50%, 40px); opacity: 0; pointer-events: none; padding: 12px 18px; border-radius: 12px; color: white; background: var(--navy); box-shadow: 0 12px 35px rgba(0,0,0,.22); font-size: 12px; transition: .3s ease; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }

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

@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-points { justify-content: center; }
  .hero-visual { min-height: 570px; max-width: 650px; width: 100%; margin: auto; }
  .section-heading { gap: 45px; }
  .process-grid, .quote-wrap { gap: 60px; }
  .why-grid { gap: 65px; }
}

@media (max-width: 800px) {
  :root { --shell: min(100% - 30px, 650px); }
  .site-header { background: rgba(255,255,255,.9); backdrop-filter: blur(16px); }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 153px; }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; inset: 0; padding: 115px 25px 30px; display: flex; flex-direction: column; align-items: stretch; gap: 9px; background: white; transform: translateY(-105%); opacity: 0; transition: transform .32s ease, opacity .25s ease; }
  .site-nav.open { transform: translateY(0); opacity: 1; }
  .site-nav a { padding: 13px 8px; font-size: 18px; }
  .site-nav .button { margin-top: 15px; font-size: 14px; }
  .hero { min-height: auto; padding-top: 125px; }
  .hero h1 { font-size: clamp(48px, 13vw, 70px); }
  .hero-lead { font-size: 16px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { justify-content: flex-start; }
  .trust-grid > div:not(:last-child) { border-right: 0; border-bottom: 1px solid var(--line); }
  .section { padding: 88px 0; }
  .section-heading, .process-grid, .why-grid, .quote-wrap, .footer-grid { grid-template-columns: 1fr; }
  .section-heading { gap: 25px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-row: auto; min-height: 590px; }
  .featured .service-icon { margin-bottom: 120px; }
  .process-copy { position: static; }
  .why-grid { gap: 50px; }
  .why-visual { order: 2; min-height: auto; }
  .port-scene { height: 480px; }
  .quote-wrap { gap: 48px; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { gap: 45px; }
}

@media (max-width: 560px) {
  .hero { padding-bottom: 64px; }
  .hero h1 { font-size: 48px; }
  .hero-actions { flex-direction: column; }
  .hero-points { display: grid; grid-template-columns: 1fr; justify-items: start; width: max-content; max-width: 100%; margin-inline: auto; }
  .hero-visual { min-height: 485px; }
  .status-card { min-height: 430px; padding: 21px; transform: none; }
  .floating-air { right: -8px; top: 42px; }
  .floating-doc { left: -8px; bottom: 8px; }
  .shipment-meta { margin: 20px 0; }
  .timeline-item { min-height: 65px; }
  .route-line-one { inset: 5px -30px; }
  .service-card { min-height: 385px; padding: 27px; }
  .service-card.featured { min-height: 560px; }
  .service-card > a { left: 27px; }
  .step { grid-template-columns: 50px 1fr; padding: 21px; }
  .step > span { width: 47px; height: 47px; }
  .port-scene { height: 390px; }
  .ship { transform: scale(.75); transform-origin: left bottom; left: 52px; bottom: 92px; }
  .island { bottom: 160px; }
  .sun { right: 38px; top: 48px; }
  .local-card { right: 7px; bottom: -15px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 22px; }
  .final-actions { width: 100%; flex-direction: column; }
  .footer-links { gap: 25px; }
  .footer-bottom { flex-direction: column; }
}

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

/* Updated Smart Cargo brand assets */
.brand img {
  width: 82px;
  height: auto;
  object-fit: contain;
}
.footer-brand img {
  width: 128px;
  height: auto;
  object-fit: contain;
}
.footer-email {
  display: inline-flex;
  margin-top: 14px;
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 700;
  transition: color .2s ease;
}
.footer-email:hover { color: white; }

@media (max-width: 800px) {
  .brand img { width: 68px; }
  .footer-brand img { width: 112px; }
}
