:root {
  --bg: #07111f;
  --bg-soft: #0c1729;
  --panel: rgba(8, 16, 30, 0.72);
  --panel-strong: rgba(12, 22, 39, 0.88);
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f7fb;
  --muted: #93a4be;
  --muted-2: #6d7d97;
  --gold: #f5b942;
  --amber: #ff9f1c;
  --mint: #5fe3c1;
  --rose: #ff7b9c;
  --cyan: #6ad9ff;
  --green: #00d68f;
  --red: #ff4d6d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html[data-theme='light'] {
  --bg: #f3f6fb;
  --bg-soft: #e9eef8;
  --panel: rgba(255, 255, 255, 0.78);
  --panel-strong: rgba(255, 255, 255, 0.92);
  --border: rgba(12, 20, 35, 0.08);
  --border-strong: rgba(12, 20, 35, 0.14);
  --text: #0c1729;
  --muted: #516078;
  --muted-2: #73829b;
  --shadow: 0 20px 55px rgba(20, 30, 55, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.ainna-theme {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(245, 185, 66, 0.16), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 159, 28, 0.16), transparent 30%),
    radial-gradient(circle at bottom left, rgba(106, 217, 255, 0.12), transparent 28%),
    linear-gradient(160deg, var(--bg) 0%, var(--bg-soft) 100%);
  overflow-x: hidden;
}

.aurora-container { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.aurora-blob { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.18; animation: float-orb 18s ease-in-out infinite alternate; }
.aurora-1 { width: 420px; height: 420px; background: var(--gold); top: -12%; left: -8%; }
.aurora-2 { width: 360px; height: 360px; background: var(--amber); top: 10%; right: -6%; animation-delay: -6s; }
.aurora-3 { width: 300px; height: 300px; background: var(--cyan); bottom: 8%; left: 20%; animation-delay: -12s; }
.aurora-4 { width: 260px; height: 260px; background: var(--rose); bottom: -4%; right: 18%; animation-delay: -3s; }

@keyframes float-orb { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(40px, -30px) scale(1.1); } }

.glass-panel { background: var(--panel); border: 1px solid var(--border); border-radius: 16px; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }

.logistics-nav { position: sticky; top: 12px; z-index: 90; margin: 0 24px; padding: 12px 20px; }
.logistics-nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logistics-logo { font-weight: 700; font-size: 1rem; color: var(--text); text-decoration: none; }
.logistics-logo-sub { font-size: 0.72rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-left: 8px; }
.logistics-nav-links { display: flex; gap: 20px; }
.logistics-nav-link { color: var(--muted); text-decoration: none; font-size: 0.84rem; font-weight: 500; transition: color 0.2s; }
.logistics-nav-link:hover { color: var(--text); }

.logistics-hero { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 80px 24px 60px; text-align: center; }
.logistics-hero-badge { display: inline-block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); font-weight: 600; background: rgba(245,185,66,0.12); padding: 6px 16px; border-radius: 999px; margin-bottom: 20px; }
.logistics-hero h1 { margin: 0 0 16px; font-size: 2.4rem; font-weight: 800; line-height: 1.15; }
.logistics-grad { background: linear-gradient(135deg, var(--gold), var(--amber)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.logistics-hero-desc { color: var(--muted); font-size: 1rem; line-height: 1.7; max-width: 640px; margin: 0 auto 28px; }
.logistics-hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.logistics-hero-stats { display: flex; gap: 40px; justify-content: center; }
.logistics-stat { text-align: center; }
.logistics-stat strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--gold); }
.logistics-stat span { font-size: 0.78rem; color: var(--muted); }

.btn { border: none; border-radius: 10px; padding: 10px 22px; font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: all 0.2s var(--ease-out); text-decoration: none; display: inline-block; }
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--amber)); color: #000; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,185,66,0.3); }
.btn-secondary { background: rgba(255,255,255,0.08); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: rgba(255,255,255,0.14); }
.btn-ghost { background: transparent; color: var(--muted); border: 1px solid var(--border); }
.btn-ghost:hover { color: var(--text); border-color: var(--border-strong); }

.logistics-section { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 60px 24px; }
.logistics-section-alt { background: rgba(255,255,255,0.02); border-radius: 24px; }
.logistics-section-header { text-align: center; margin-bottom: 40px; }
.logistics-tag { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 600; }
.logistics-section-header h2 { margin: 8px 0 12px; font-size: 1.8rem; font-weight: 800; }
.logistics-section-header p { color: var(--muted); font-size: 0.94rem; max-width: 600px; margin: 0 auto; }

.logistics-systems-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.logistics-system-card { padding: 24px; transition: transform 0.25s var(--ease-out); }
.logistics-system-card:hover { transform: translateY(-4px); }
.logistics-card-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(245,185,66,0.12); display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 16px; }
.logistics-system-card h3 { margin: 0 0 8px; font-size: 1rem; font-weight: 700; }
.logistics-system-card p { margin: 0 0 12px; font-size: 0.84rem; color: var(--muted); line-height: 1.5; }
.logistics-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.logistics-chip { font-size: 0.7rem; padding: 3px 10px; border-radius: 999px; background: rgba(255,255,255,0.06); color: var(--muted-2); border: 1px solid var(--border); }

.logistics-safety-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.logistics-safety-card { padding: 20px; transition: transform 0.25s var(--ease-out); }
.logistics-safety-card:hover { transform: translateY(-3px); }
.logistics-safety-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,123,156,0.12); display: flex; align-items: center; justify-content: center; color: var(--rose); margin-bottom: 12px; }
.logistics-safety-card h4 { margin: 0 0 6px; font-size: 0.92rem; font-weight: 700; }
.logistics-safety-card p { margin: 0 0 10px; font-size: 0.82rem; color: var(--muted); }

.logistics-usecase-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.logistics-usecase-card { padding: 24px; transition: transform 0.25s var(--ease-out); }
.logistics-usecase-card:hover { transform: translateY(-3px); }
.logistics-usecase-card h4 { margin: 0 0 8px; font-size: 1rem; font-weight: 700; }
.logistics-usecase-card p { margin: 0 0 12px; font-size: 0.84rem; color: var(--muted); line-height: 1.5; }

.logistics-benefits-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.logistics-benefit-card { padding: 28px; text-align: center; transition: transform 0.25s var(--ease-out); }
.logistics-benefit-card:hover { transform: translateY(-3px); }
.logistics-benefit-icon { font-size: 2rem; margin-bottom: 12px; }
.logistics-benefit-card h4 { margin: 0 0 8px; font-size: 1rem; font-weight: 700; }
.logistics-benefit-card p { margin: 0; font-size: 0.84rem; color: var(--muted); line-height: 1.5; }

.logistics-cta { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 60px 24px; }
.logistics-cta-content { padding: 48px; text-align: center; }
.logistics-cta-content h2 { margin: 0 0 12px; font-size: 1.6rem; font-weight: 800; }
.logistics-cta-content p { margin: 0 0 24px; color: var(--muted); font-size: 0.94rem; }
.logistics-cta-actions { display: flex; gap: 12px; justify-content: center; }

.logistics-footer { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 24px; }
.logistics-footer-inner { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; border-top: 1px solid var(--border); }
.logistics-footer p { margin: 0; font-size: 0.82rem; color: var(--muted-2); }
.logistics-footer-links { display: flex; gap: 16px; }
.logistics-footer-links a { color: var(--muted); text-decoration: none; font-size: 0.82rem; }
.logistics-footer-links a:hover { color: var(--text); }

@media (max-width: 768px) {
  .logistics-nav-links { display: none; }
  .logistics-hero h1 { font-size: 1.8rem; }
  .logistics-hero-stats { flex-direction: column; gap: 16px; }
  .logistics-systems-grid, .logistics-safety-grid, .logistics-usecase-grid, .logistics-benefits-grid { grid-template-columns: 1fr; }
  .logistics-cta-content { padding: 28px; }
  .logistics-cta-actions { flex-direction: column; }
}