/* ═══════════════════════════════════════════════════════════════
   SwiftShip Public Pages — Red Theme
   Linked by: home.html, about.html, services.html,
              how-it-works.html, track.html
═══════════════════════════════════════════════════════════════ */

:root {
  --brand:        #dc2626;
  --brand-dark:   #b91c1c;
  --brand-deep:   #991b1b;
  --brand-light:  #fef2f2;
  --brand-mid:    #fee2e2;
  --brand-glow:   rgba(220,38,38,.15);
  --brand-glow2:  rgba(220,38,38,.08);
  --dark-bg:      #0c0f14;
  --dark-mid:     #111827;
  --dark-card:    rgba(255,255,255,.04);
}

/* ── TOP BAR ─────────────────────────────────────────────────── */
.pub-topbar {
  background: #0c0f14;
  padding: 0 40px; height: 38px;
  display: flex; align-items: center;
}
.pub-topbar-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: flex; justify-content: space-between; align-items: center;
}
.pub-topbar-left { display: flex; gap: 24px; }
.pub-topbar-left span,
.pub-topbar-right span,
.pub-topbar-right a {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: #64748b; text-decoration: none;
  transition: color .18s;
}
.pub-topbar-right { display: flex; gap: 20px; align-items: center; }
.pub-topbar-right a:hover,
.pub-topbar-left span:hover { color: #e2e8f0; }

/* ── NAV ─────────────────────────────────────────────────────── */
.pub-nav2 {
  position: sticky; top: 0; z-index: 200;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 0 40px; height: 68px;
  display: flex; align-items: center;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  transition: box-shadow .2s;
}
.pub-nav2.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.pub-nav2-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; gap: 32px;
}
.pub-nav2-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.pub-nav-brand-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--brand);
  display: flex; align-items: center; justify-content: center;
}
.pub-nav-brand-icon svg { width: 20px; height: 20px; color: #fff; }
.pub-nav2-brand-text {
  font-size: 18px; font-weight: 900; color: #0f172a; letter-spacing: -.4px;
}
.pub-nav2-brand-text span { color: var(--brand); }
.pub-nav2-links {
  display: flex; align-items: center; gap: 2px; flex: 1;
}
.pub-nav2-links a {
  color: #475569; text-decoration: none;
  font-size: 14px; font-weight: 500;
  padding: 7px 14px; border-radius: 7px;
  transition: color .18s, background .18s;
}
.pub-nav2-links a:hover { color: #0f172a; background: #f1f5f9; }
.pub-nav2-links a.active { color: var(--brand); font-weight: 700; }
.pub-nav2-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; flex-shrink: 0; }

.btn-brand {
  background: var(--brand); color: #fff !important;
  border-radius: 7px; padding: 7px 16px;
  font-size: 13.5px; font-weight: 700; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background .18s, transform .18s;
  border: none; cursor: pointer; font-family: inherit;
}
.btn-brand:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: #475569;
  border: 1.5px solid #e2e8f0; border-radius: 7px; padding: 6px 14px;
  font-size: 13.5px; font-weight: 600; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all .18s;
}
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  background-color: #0c0f14;
  background-image: url('/images/page-banner.jpg');
  background-size: cover;
  background-position: center;
  padding: 88px 40px 80px;
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,12,20,0.78) 0%, rgba(8,12,20,0.90) 100%);
}
.page-hero-glow { display: none; }
.page-hero-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-glow); border: 1px solid rgba(220,38,38,.35);
  color: #fca5a5; padding: 5px 14px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600; margin-bottom: 20px;
}
.page-hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900; color: #fff; letter-spacing: -2px; line-height: 1.08;
  margin-bottom: 16px;
}
.page-hero-title span { color: #f87171; }
.page-hero-sub {
  font-size: 16px; color: #94a3b8; line-height: 1.75; max-width: 520px; margin: 0 auto;
}

/* ── MAIN HERO (home only) ───────────────────────────────────── */
.dhl-hero {
  min-height: 100vh;
  background-color: #0c0f14;
  background-image: url('/images/hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 80px 40px 100px;
}
.dhl-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(8,10,16,0.88) 0%, rgba(8,10,16,0.72) 55%, rgba(8,10,16,0.55) 100%),
    linear-gradient(to top,   rgba(0,0,0,0.5)    0%, transparent 50%);
  pointer-events: none;
}
.dhl-hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 460px;
  gap: 60px; align-items: center;
}
.dhl-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-glow); border: 1px solid rgba(220,38,38,.3);
  color: #fca5a5; padding: 5px 14px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600; margin-bottom: 24px;
}
.dhl-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #f87171; animation: pulse 2s infinite;
}
.dhl-hero-title {
  font-size: clamp(38px, 5.5vw, 66px);
  font-weight: 900; color: #fff;
  line-height: 1.05; letter-spacing: -2.5px; margin-bottom: 20px;
}
.dhl-accent { color: #f87171; }
.dhl-hero-sub {
  font-size: 17px; color: #94a3b8; line-height: 1.75; max-width: 480px;
}

/* ── TRACKING CARD ───────────────────────────────────────────── */
.dhl-track-card {
  background: #fff; border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
  overflow: hidden;
}
.dhl-track-tabs { display: flex; border-bottom: 2px solid #f1f5f9; }
.dhl-tab {
  flex: 1; padding: 15px 10px;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  font-size: 12.5px; font-weight: 600; color: #64748b;
  background: none; border: none; cursor: pointer;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: color .18s, border-color .18s; font-family: inherit;
}
.dhl-tab.active { color: #0f172a; border-bottom-color: var(--brand); }
.dhl-tab:hover:not(.active) { color: #0f172a; background: #f8fafc; }
.dhl-tab-panel { padding: 26px 28px; }
.dhl-tab-panel.hidden { display: none; }
.dhl-input-label {
  display: block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  color: #64748b; margin-bottom: 8px;
}
.dhl-input-row { display: flex; gap: 10px; }
.dhl-input {
  flex: 1; height: 50px; padding: 0 16px;
  border: 2px solid #e2e8f0; border-radius: 8px;
  font-size: 14.5px; font-family: inherit; color: #0f172a;
  outline: none; transition: border-color .18s, box-shadow .18s;
  background: #fff; width: 100%;
}
.dhl-input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-glow); }
.dhl-input::placeholder { color: #94a3b8; }
select.dhl-input { cursor: pointer; }
.btn-red {
  display: inline-flex; align-items: center; gap: 8px;
  height: 50px; padding: 0 24px; border-radius: 8px;
  background: var(--brand); color: #fff;
  border: none; cursor: pointer;
  font-size: 15px; font-weight: 800; font-family: inherit; white-space: nowrap;
  transition: background .18s, transform .18s, box-shadow .18s;
  box-shadow: 0 4px 16px rgba(220,38,38,.4);
}
.btn-red:hover {
  background: var(--brand-dark); transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(220,38,38,.5);
}
.dhl-input-hint { font-size: 12px; color: #94a3b8; margin-top: 12px; }
.dhl-ship-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ── TICKER ──────────────────────────────────────────────────── */
.dhl-ticker {
  background: var(--brand); display: flex; align-items: center;
  overflow: hidden; border-top: 3px solid var(--brand-dark);
}
.dhl-ticker-label {
  padding: 0 20px; font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em; color: #fecaca;
  white-space: nowrap; border-right: 2px solid rgba(0,0,0,.15);
  height: 44px; display: flex; align-items: center; flex-shrink: 0;
}
.dhl-ticker-wrap { flex: 1; overflow: hidden; height: 44px; display: flex; align-items: center; }
.dhl-ticker-track {
  display: flex; align-items: center; gap: 20px;
  white-space: nowrap; animation: marqueeScroll 30s linear infinite;
}
.dhl-ticker-track span { font-size: 13px; font-weight: 600; color: #fff; }
.dhl-sep { color: rgba(255,255,255,.35) !important; font-weight: 300 !important; }

/* ── QUICK LINKS ─────────────────────────────────────────────── */
.dhl-quick { background: #fff; border-bottom: 1px solid #e2e8f0; }
.dhl-quick-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.dhl-quick-card {
  display: flex; align-items: center; gap: 16px;
  padding: 26px 22px; text-decoration: none;
  border-right: 1px solid #e2e8f0; transition: background .18s;
}
.dhl-quick-card:last-child { border-right: none; }
.dhl-quick-card:hover { background: #fef2f2; }
.dhl-quick-icon {
  width: 50px; height: 50px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dhl-quick-text strong { display: block; font-size: 14px; font-weight: 700; color: #0f172a; margin-bottom: 3px; }
.dhl-quick-text span  { font-size: 12.5px; color: #64748b; }
.dhl-quick-arrow { color: #cbd5e1; flex-shrink: 0; transition: transform .18s, color .18s; }
.dhl-quick-card:hover .dhl-quick-arrow { transform: translateX(4px); color: var(--brand); }

/* ── STATS BAND ──────────────────────────────────────────────── */
.dhl-stats-band { background: #0c0f14; padding: 52px 40px; }
.dhl-stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
}
.dhl-stat { text-align: center; flex: 1; padding: 0 20px; }
.dhl-stat-num {
  font-size: 54px; font-weight: 900; color: var(--brand);
  letter-spacing: -3px; line-height: 1;
}
.dhl-stat-num span { font-size: 34px; letter-spacing: -1px; }
.dhl-stat-label { font-size: 13px; color: #475569; margin-top: 8px; font-weight: 500; }
.dhl-stat-line { width: 1px; height: 72px; background: rgba(255,255,255,.07); flex-shrink: 0; }

/* ── SECTIONS ────────────────────────────────────────────────── */
.dhl-sec { padding: 88px 40px; }
.dhl-sec--white { background: #fff; }
.dhl-sec--gray  { background: #f8fafc; }
.dhl-sec--dark  { background: #0c0f14; }
.dhl-sec-inner  { max-width: 1200px; margin: 0 auto; }
.dhl-sec-hd {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; flex-wrap: wrap; gap: 16px;
}
.dhl-label {
  font-size: 11.5px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: var(--brand); margin-bottom: 10px; display: block;
}
.dhl-h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900; color: #0f172a; letter-spacing: -1.2px; line-height: 1.1;
}
.dhl-h2--light { color: #fff; }
.dhl-text-link {
  font-size: 14px; font-weight: 700; color: var(--brand);
  text-decoration: none; white-space: nowrap; transition: color .18s;
}
.dhl-text-link:hover { color: var(--brand-dark); }

/* ── SERVICE CARDS ───────────────────────────────────────────── */
.dhl-svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.dhl-svc-card {
  border: 1.5px solid #e2e8f0; border-radius: 16px;
  padding: 28px; background: #fff;
  transition: transform .18s, box-shadow .18s, border-color .18s;
  display: flex; flex-direction: column;
}
.dhl-svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(220,38,38,.1);
  border-color: #fca5a5;
}
.dhl-svc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.dhl-svc-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.dhl-svc-badge {
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px; letter-spacing: .04em;
}
.dhl-svc-card h3 { font-size: 16px; font-weight: 800; color: #0f172a; margin-bottom: 10px; }
.dhl-svc-card p  { font-size: 13.5px; color: #64748b; line-height: 1.65; flex: 1; }
.dhl-svc-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13.5px; font-weight: 700; color: var(--brand);
  text-decoration: none; margin-top: 18px; transition: gap .18s;
}
.dhl-svc-link:hover { gap: 9px; }

/* ── SPLIT SECTION ───────────────────────────────────────────── */
.dhl-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 540px; }
.dhl-split-left {
  background: #0c0f14; padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.dhl-split-right {
  background: #fff; padding: 72px 60px;
  display: flex; align-items: center;
}
.dhl-split-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.dhl-chip {
  padding: 6px 16px; border-radius: 999px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  color: #94a3b8; font-size: 13px; font-weight: 600; transition: all .18s;
}
.dhl-chip:hover { background: var(--brand-glow); border-color: rgba(220,38,38,.4); color: #fca5a5; }

/* ── FEATURE LIST ────────────────────────────────────────────── */
.dhl-feat-list { display: flex; flex-direction: column; gap: 26px; width: 100%; }
.dhl-feat { display: flex; gap: 18px; align-items: flex-start; }
.dhl-feat-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: var(--brand-light); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(220,38,38,.15);
}
.dhl-feat h4 { font-size: 15px; font-weight: 800; color: #0f172a; margin-bottom: 6px; }
.dhl-feat p  { font-size: 13.5px; color: #64748b; line-height: 1.65; }

/* ── HOW IT WORKS STEPS ──────────────────────────────────────── */
.dhl-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.dhl-step  { text-align: center; padding: 0 20px; position: relative; }
.dhl-step-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--brand); color: #fff;
  font-size: 16px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(220,38,38,.4);
}
.dhl-step-connector {
  position: absolute; top: 26px;
  left: calc(50% + 26px); right: calc(-50% + 26px);
  height: 2px;
  background: repeating-linear-gradient(90deg,#e2e8f0 0,#e2e8f0 8px,transparent 8px,transparent 16px);
}
.dhl-step-connector--hidden { display: none; }
.dhl-step-icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: #fff; border: 2px solid var(--brand-mid);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(220,38,38,.1);
}
.dhl-step h4 { font-size: 15px; font-weight: 800; color: #0f172a; margin-bottom: 8px; }
.dhl-step p  { font-size: 13px; color: #64748b; line-height: 1.65; }

/* ── CTA BANNER ──────────────────────────────────────────────── */
.dhl-cta {
  background: linear-gradient(135deg, #1a0505 0%, #0c0f14 100%);
  padding: 72px 40px;
  border-top: 4px solid var(--brand);
}
.dhl-cta-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.dhl-cta-left h2 {
  font-size: clamp(22px,3vw,36px); font-weight: 900;
  color: #fff; letter-spacing: -1px; margin-bottom: 10px;
}
.dhl-cta-left p  { font-size: 16px; color: #64748b; }
.dhl-cta-right   { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-outline-light {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 8px;
  background: rgba(255,255,255,.07); color: #fff;
  border: 1px solid rgba(255,255,255,.18); text-decoration: none;
  font-size: 15px; font-weight: 600; transition: background .18s;
}
.btn-outline-light:hover { background: rgba(255,255,255,.13); }

/* ── FOOTER ──────────────────────────────────────────────────── */
.dhl-footer { background: #f8fafc; border-top: 1px solid #e2e8f0; padding: 64px 40px 0; }
.dhl-footer-inner { max-width: 1200px; margin: 0 auto; }
.dhl-footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 48px; padding-bottom: 48px; border-bottom: 1px solid #e2e8f0;
}
.dhl-footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.dhl-footer-logo-text { font-size: 18px; font-weight: 900; color: #0f172a; }
.dhl-footer-logo-text span { color: var(--brand); }
.dhl-footer-brand-col p { font-size: 13.5px; color: #64748b; line-height: 1.7; margin-bottom: 14px; }
.dhl-footer-contact { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.dhl-footer-ci { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: #64748b; line-height: 1.5; }
.dhl-footer-ci svg { flex-shrink: 0; margin-top: 1px; color: #94a3b8; }
.dhl-footer h5 {
  font-size: 11.5px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em; color: #0f172a; margin-bottom: 16px;
}
.dhl-footer a {
  display: block; color: #64748b; text-decoration: none;
  font-size: 13.5px; margin-bottom: 10px; transition: color .18s;
}
.dhl-footer a:hover { color: var(--brand); }
.dhl-footer-socials { display: flex; gap: 10px; }
.dhl-footer-socials a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: #fff; border: 1px solid #e2e8f0;
  color: #64748b; margin-bottom: 0; transition: all .18s;
}
.dhl-footer-socials a:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.dhl-newsletter {
  display: flex; border: 1.5px solid #e2e8f0;
  border-radius: 8px; overflow: hidden; background: #fff;
}
.dhl-newsletter input {
  flex: 1; padding: 10px 14px; border: none; outline: none;
  font-size: 13px; font-family: inherit; color: #0f172a;
}
.dhl-newsletter input::placeholder { color: #94a3b8; }
.dhl-newsletter button {
  padding: 10px 16px; background: var(--brand); color: #fff;
  border: none; cursor: pointer; font-size: 16px; font-weight: 800;
  font-family: inherit; transition: background .18s;
}
.dhl-newsletter button:hover { background: var(--brand-dark); }
.pay-badge {
  display: inline-block; padding: 4px 10px; border-radius: 6px;
  background: #fff; border: 1px solid #e2e8f0;
  font-size: 11px; font-weight: 700; color: #64748b;
}
.dhl-footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 12.5px; color: #94a3b8;
  flex-wrap: wrap; gap: 12px;
}
.dhl-footer-legal { display: flex; gap: 20px; }
.dhl-footer-legal a { color: #94a3b8; text-decoration: none; font-size: 12.5px; margin-bottom: 0; }
.dhl-footer-legal a:hover { color: var(--brand); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-item { border: 1.5px solid #e2e8f0; border-radius: 12px; overflow: hidden; background: #fff; }
.faq-item + .faq-item { margin-top: 8px; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; background: none; border: none; cursor: pointer;
  font-size: 14.5px; font-weight: 600; color: #0f172a;
  text-align: left; font-family: inherit; gap: 12px; transition: background .18s;
}
.faq-q:hover { background: #f8fafc; }
.faq-q.open  { color: var(--brand); background: var(--brand-light); }
.faq-chevron { flex-shrink: 0; transition: transform .2s ease; }
.faq-q.open .faq-chevron { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 22px 18px; font-size: 13.5px; color: #64748b; line-height: 1.7; }
.faq-a.open { display: block; animation: fadeIn .15s ease; }
.faq-item:has(.faq-q.open) { border-color: #fca5a5; }

/* ── VALUES / INFO CARDS ─────────────────────────────────────── */
.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.info-card {
  background: #fff; border: 1.5px solid #e2e8f0; border-radius: 16px;
  padding: 32px 28px; text-align: center;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.info-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(220,38,38,.09); border-color: #fca5a5; }
.info-card-icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: var(--brand-light); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 18px;
  color: var(--brand);
}
.info-card h4 { font-size: 16px; font-weight: 800; color: #0f172a; margin-bottom: 10px; }
.info-card p  { font-size: 14px; color: #64748b; line-height: 1.65; }

/* ── SHARED ANIMATIONS ───────────────────────────────────────── */
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.3)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes slideUp { from{transform:translateY(16px);opacity:0} to{transform:none;opacity:1} }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .dhl-hero-inner { grid-template-columns: 1fr; max-width: 620px; }
  .dhl-svc-grid { grid-template-columns: 1fr 1fr; }
  .dhl-split { grid-template-columns: 1fr; }
  .dhl-split-left,.dhl-split-right { padding: 60px 40px; }
  .dhl-quick-inner { grid-template-columns: 1fr 1fr; }
  .dhl-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .dhl-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .dhl-step-connector { display: none; }
  .info-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .pub-topbar { display: none; }
  .pub-nav2 { padding: 0 20px; }
  .pub-nav2-links { display: none; }
  .dhl-hero { padding: 56px 20px 72px; }
  .dhl-ticker-label { display: none; }
  .dhl-quick-inner { grid-template-columns: 1fr 1fr; }
  .dhl-stats-band { padding: 40px 20px; }
  .dhl-stat-num { font-size: 40px; }
  .dhl-sec { padding: 60px 20px; }
  .dhl-svc-grid, .info-grid { grid-template-columns: 1fr; }
  .dhl-steps { grid-template-columns: 1fr; }
  .page-hero { padding: 72px 20px 64px; }
  .dhl-cta { padding: 52px 20px; }
  .dhl-cta-inner { flex-direction: column; text-align: center; }
  .dhl-footer { padding: 48px 20px 0; }
  .dhl-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .dhl-ship-grid { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .dhl-quick-inner { grid-template-columns: 1fr; }
}
