/* ============================================================
   ShipGlobal, revamped design system
   Palette: white / off-white / blue / black / orange
   Type: DM Sans only. No editorial fonts. No wide tracking.
   No dark full-bleed sections.
   ============================================================ */
:root{
  --blue:#003087;
  --blue-2:#0044C8;
  --blue-tint:#EEF4FF;
  --orange:#FF6B00;
  --orange-light:#FFF3EB;
  --orange-dark:#B34700;
  --white:#ffffff;
  --off:#F7F9FC;
  --border:#E4EDF6;
  --text:#0A0A1A;
  --ink:#0A0A1A;
  --muted:#6B7897;
  --green:#16A34A;
  --green-light:#F0FDF4;
  --font:'DM Sans',system-ui,-apple-system,sans-serif;
  --maxw:1200px;
  --radius:16px;
  --shadow:0 8px 32px rgba(0,48,135,.07);
  --shadow-lg:0 16px 56px rgba(0,48,135,.1);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:72px}
body{
  font-family:var(--font);
  background:var(--white);
  color:var(--text);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 40px;width:100%}

/* ─── Scroll progress ─── */
.sg-progress{position:fixed;top:0;left:0;height:3px;background:var(--orange);z-index:3000;width:0%;transition:width .1s linear}

/* ─── NAV ─── */
.sg-nav{
  position:sticky;top:0;z-index:1000;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(228,237,246,.9);
  transition:box-shadow .3s;
}
.sg-nav.is-scrolled{box-shadow:0 2px 24px rgba(0,0,0,.06)}
.sg-nav__inner{
  max-width:var(--maxw);margin:0 auto;padding:13px 40px;
  display:flex;align-items:center;justify-content:space-between;gap:24px;
}
.sg-logo{display:flex;align-items:center;gap:9px;font-size:19px;font-weight:800;letter-spacing:-.4px;color:var(--text)}
.sg-logo__img{height:30px;width:auto;display:block}
.sg-logo__mark{
  width:26px;height:26px;border-radius:7px;
  background:var(--blue);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:14px;font-weight:800;
}
.sg-logo em{color:var(--orange);font-style:normal}
.sg-navlinks{display:flex;gap:26px;align-items:center}
.sg-navlink{font-size:13.5px;color:var(--muted);font-weight:600;transition:color .2s;cursor:pointer}
.sg-navlink:hover,.sg-navlink.is-active{color:var(--blue)}
.sg-navactions{display:flex;gap:10px;align-items:center}
.sg-hamburger{display:none;background:none;border:none;color:var(--text);cursor:pointer;padding:6px}

/* ─── Buttons ─── */
.btn{
  display:inline-flex;align-items:center;gap:7px;
  font-family:var(--font);font-weight:700;font-size:13.5px;
  border-radius:10px;cursor:pointer;border:none;
  transition:transform .2s,box-shadow .2s,opacity .2s,background .2s,color .2s;
  white-space:nowrap;line-height:1;
}
.btn .arr{font-weight:600}
.btn-primary{background:var(--orange);color:#fff;padding:12px 22px;box-shadow:0 4px 18px rgba(255,107,0,.26)}
.btn-primary:hover{transform:translateY(-1px);box-shadow:0 6px 24px rgba(255,107,0,.32)}
.btn-blue{background:var(--blue);color:#fff;padding:12px 22px;box-shadow:0 4px 18px rgba(0,48,135,.2)}
.btn-blue:hover{transform:translateY(-1px);background:#00256a}
.btn-outline{background:#fff;color:var(--blue);padding:11px 20px;border:1.5px solid var(--blue)}
.btn-outline:hover{background:var(--blue);color:#fff}
.btn-ghost{background:var(--off);color:var(--text);padding:11px 20px;border:1px solid var(--border)}
.btn-ghost:hover{border-color:var(--blue);color:var(--blue)}
.btn-lg{font-size:14.5px;padding:14px 28px}
.btn-sm{font-size:12.5px;padding:9px 16px}

/* ─── Section scaffolding ─── */
.sec{padding:72px 0;position:relative}
.sec--off{background:var(--off)}
.sec--tint{background:var(--blue-tint)}
.sec--fit{min-height:100vh;display:flex;flex-direction:column;justify-content:center}
.eyebrow{
  display:inline-flex;align-items:center;gap:7px;
  font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;
  color:var(--orange);margin-bottom:12px;
}
.sec-title{font-size:34px;font-weight:800;letter-spacing:-1px;line-height:1.12;color:var(--text)}
.sec-title .b{color:var(--blue)}
.sec-title .o{color:var(--orange)}
.sec-sub{font-size:15px;color:var(--muted);line-height:1.65;max-width:540px;font-weight:400}
.sec-head{margin-bottom:40px}
.sec-head--split{display:flex;justify-content:space-between;align-items:flex-end;gap:40px;flex-wrap:wrap}
.sec-head--split .sec-sub{margin-bottom:4px}
.sec-head--center{text-align:center}
.sec-head--center .sec-sub{margin-left:auto;margin-right:auto}
.sec-head--center .eyebrow{justify-content:center}

/* ─── Reveal ─── */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .6s ease,transform .6s ease}
.reveal.is-visible{opacity:1;transform:translateY(0)}
.reveal.d1{transition-delay:.08s}
.reveal.d2{transition-delay:.16s}
.reveal.d3{transition-delay:.24s}
.reveal.d4{transition-delay:.32s}
@media (prefers-reduced-motion:reduce){
  .reveal{opacity:1;transform:none;transition:none}
}

/* ─── FOOTER (light) ─── */
.sg-footer{background:var(--off);border-top:1px solid var(--border);padding:56px 0 26px}
.sg-footer__grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr 1fr 1fr;gap:28px;margin-bottom:40px}
.sg-footer__brand{display:flex;align-items:center;gap:9px;font-size:19px;font-weight:800;letter-spacing:-.4px;color:var(--text);margin-bottom:12px}
.sg-footer__brand em{color:var(--orange);font-style:normal}
.sg-footer__about{font-size:13px;color:var(--muted);line-height:1.65;max-width:300px}
.sg-footer__addr{margin-top:16px;max-width:300px}
.sg-footer__addr-head{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--text);margin-bottom:6px}
.sg-footer__addr a{font-size:13px;color:var(--muted);line-height:1.65;transition:color .2s}
.sg-footer__addr a:hover{color:var(--blue)}
.sg-footer__socials{display:flex;gap:8px;margin-top:16px}
.sg-footer__socials a{width:32px;height:32px;border-radius:8px;background:#fff;border:1px solid var(--border);display:flex;align-items:center;justify-content:center;color:var(--muted);transition:all .2s}
.sg-footer__socials a:hover{color:var(--blue);border-color:var(--blue)}
.fcol__head{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--text);margin-bottom:14px}
.fcol__list{display:flex;flex-direction:column;gap:9px}
.fcol__list a{font-size:13px;color:var(--muted);transition:color .2s}
.fcol__list a:hover{color:var(--blue)}
.sg-footer__bottom{
  border-top:1px solid var(--border);padding-top:20px;
  display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap;
}
.sg-footer__bottom small{font-size:12px;color:var(--muted)}
.sg-footer__legal{display:flex;gap:16px;flex-wrap:wrap}
.sg-footer__legal a{font-size:12px;color:var(--muted);transition:color .2s}
.sg-footer__legal a:hover{color:var(--blue)}
.sg-footer__badges{display:flex;gap:8px;flex-wrap:wrap}
.sg-badge{display:inline-flex;align-items:center;gap:5px;font-size:11px;font-weight:600;color:var(--muted);background:#fff;border:1px solid var(--border);border-radius:7px;padding:5px 11px}

/* ─── Responsive base ─── */
@media (max-width:980px){
  .wrap,.sg-nav__inner{padding-left:22px;padding-right:22px}
  .sg-navlinks{display:none}
  .sg-hamburger{display:inline-flex}
  .sec{padding:52px 0}
  .sec-title{font-size:26px}
  .sg-footer__grid{grid-template-columns:1fr 1fr;gap:26px}
  .sec--fit{min-height:auto}
}
@media (max-width:560px){
  .sg-footer__grid{grid-template-columns:1fr 1fr}
  .sec-title{font-size:23px}
}
