/* ===========================================================
   VIP Logistic — Static landing page styles
   Fonts: Outfit (display) + IBM Plex Sans (body)
   Theme: White base · Red #FF3B30 accent · Zinc-950 dark blocks
   =========================================================== */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  background: #ffffff;
  color: #0a0a0a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: #ff3b30; color: #fff; }

h1,h2,h3,h4 { font-family: "Outfit", system-ui, sans-serif; letter-spacing: -0.02em; margin: 0; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* ---------- Typography helpers ---------- */
.h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
  color: #0a0a0a;
}
.h2 {
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #0a0a0a;
}
.h2.light { color: #fff; }
.h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 24px;
}
.h3-big { font-size: clamp(1.5rem, 2.4vw, 2.25rem); font-weight: 900; line-height: 1.15; color: #fff; margin: 12px 0 0; }
.lead {
  margin: 28px 0 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #52525b;
  max-width: 640px;
}
.red { color: #ff3b30; }
.zinc-500 { color: #71717a; }
.muted-text { color: #a1a1aa; font-size: 0.95rem; line-height: 1.7; margin-top: 16px; }

.overline {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: #ff3b30;
}
.overline.red-400 { color: #f87171; }
.overline .bar { display: inline-block; width: 36px; height: 1px; background: #ff3b30; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-weight: 700;
  border: 0; cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.btn i { font-size: 1.15em; }
.btn-lg { padding: 16px 26px; font-size: 1rem; }
.btn-primary {
  background: #ff3b30; color: #fff;
  box-shadow: 0 10px 30px -10px rgba(255,59,48,0.6);
}
.btn-primary:hover { background: #d32f2f; transform: translateY(-2px); }
.btn-primary .arrow { transition: transform .25s ease; }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-outline {
  background: transparent; color: #0a0a0a; border: 2px solid #0a0a0a;
}
.btn-outline:hover { background: #0a0a0a; color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(18px);
  border-bottom-color: #e4e4e7;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; background: #ff3b30; color: #fff;
  font-family: "Outfit"; font-weight: 900; font-size: 1.05rem;
  transition: background .25s ease;
}
.brand:hover .brand-badge { background: #d32f2f; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: "Outfit"; font-weight: 900; font-size: 1.05rem; letter-spacing: -0.02em; }
.brand-sub { font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: #71717a; margin-top: 4px; }

.nav-desktop { display: none; gap: 40px; }
.nav-link { font-size: 0.9rem; font-weight: 500; color: #3f3f46; transition: color .2s; }
.nav-link:hover { color: #ff3b30; }
.header-cta { display: none; }
@media (min-width: 900px) {
  .nav-desktop, .header-cta { display: inline-flex; }
}

.menu-toggle {
  background: transparent; border: 0; padding: 8px; cursor: pointer; font-size: 1.4rem;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }

.mobile-menu {
  display: none;
  flex-direction: column; gap: 4px;
  padding: 12px 24px 24px;
  border-top: 1px solid #e4e4e7;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 12px 8px; font-weight: 500; color: #3f3f46;
  transition: color .2s, background .2s;
}
.mobile-link:hover { color: #ff3b30; background: #fafafa; }
.mobile-cta { margin-top: 12px; justify-content: center; }

/* ---------- Grid background ---------- */
.grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}
.grid-bg.dark {
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: #fff; }
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1fr;
  gap: 48px;
  padding: 64px 24px 80px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.35fr 1fr;
    gap: 64px;
    padding: 96px 40px 112px;
  }
}

.cta-row { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }

.stats {
  margin-top: 48px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 560px;
}
.stat-n { font-family: "Outfit"; font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 900; color: #0a0a0a; line-height: 1; }
.stat-l { margin-top: 6px; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: #71717a; }
.stat.sep { border-left: 1px solid #e4e4e7; padding-left: 20px; }

/* Hero image */
.hero-image-wrap { position: relative; }
.hero-image {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  background: #f4f4f5;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent 60%);
  pointer-events: none;
}
.hero-chip {
  position: absolute; left: 24px; right: 24px; bottom: 24px;
  background: #fff; padding: 20px;
  border-left: 4px solid #ff3b30;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.25);
}
.chip-over { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: #ff3b30; }
.chip-title { margin-top: 8px; font-family: "Outfit"; font-size: 1.25rem; font-weight: 800; }
.chip-sub { font-size: 0.9rem; color: #52525b; line-height: 1.5; }
.hero-sticker {
  position: absolute; top: -20px; left: -20px; z-index: 2;
  width: 96px; height: 96px;
  display: none; align-items: center; justify-content: center;
  background: #ff3b30; color: #fff;
  font-family: "Outfit"; font-weight: 900; font-size: 0.72rem;
  text-transform: uppercase; text-align: center; line-height: 1.25;
  transform: rotate(-8deg);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.4);
}
@media (min-width: 768px) { .hero-sticker { display: flex; } }

/* Marquee */
.marquee {
  border-top: 1px solid #e4e4e7; border-bottom: 1px solid #e4e4e7;
  background: #fafafa; overflow: hidden;
}
.marquee-track {
  display: inline-flex; align-items: center; gap: 0;
  white-space: nowrap;
  padding: 20px 0;
  animation: marqueeMove 40s linear infinite;
}
.marquee-track span {
  font-family: "Outfit"; font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 900; letter-spacing: -0.03em; padding: 0 24px;
}
.marquee-track span.dot {
  width: 8px; height: 8px; padding: 0; background: #ff3b30; flex-shrink: 0;
}
@keyframes marqueeMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section { padding: 96px 0; border-top: 1px solid #e4e4e7; background: #fff; }
.section-muted { background: #fafafa; }
@media (min-width: 768px) { .section { padding: 128px 0; } }

.section-head {
  display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .section-head { grid-template-columns: 5fr 6fr; gap: 40px; align-items: end; }
}
.head-left .overline { margin-bottom: 20px; }
.head-right { font-size: 1.05rem; line-height: 1.7; color: #52525b; max-width: 560px; }

/* ---------- Services ---------- */
.services-grid {
  display: grid; grid-template-columns: 1fr;
  border-left: 1px solid #e4e4e7; border-top: 1px solid #e4e4e7;
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service {
  border-right: 1px solid #e4e4e7; border-bottom: 1px solid #e4e4e7;
  padding: 36px;
  background: #fff; color: #0a0a0a;
  transition: background .3s ease, color .3s ease;
  cursor: default;
}
.service:hover { background: #0a0a0a; color: #fff; }
.service:hover p { color: #d4d4d8; }
.service-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 48px;
}
.num { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: #ff3b30; }
.service-top i { color: #a1a1aa; font-size: 1.25rem; transform: rotate(-45deg); transition: transform .3s, color .3s; }
.service:hover .service-top i { color: #fff; transform: rotate(0); }
.service-icon { font-size: 3rem; color: #ff3b30; }
.service p { margin-top: 12px; font-size: 0.92rem; color: #52525b; line-height: 1.65; transition: color .3s; }

/* ---------- Bento (Why Choose Us) ---------- */
.bento {
  display: grid; grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .bento { grid-template-columns: repeat(12, 1fr); gap: 20px; grid-auto-rows: minmax(180px, auto); }
}

.bento-item { position: relative; padding: 32px; background: #fff; border: 1px solid #e4e4e7; transition: border-color .3s; }
.bento-item:hover { border-color: #ff3b30; }
.bento-item i { font-size: 2.25rem; color: #ff3b30; }

.bento-big {
  grid-column: span 1; background: #0a0a0a; color: #fff;
  padding: 36px; overflow: hidden; border: 0;
  min-height: 340px; display: flex; flex-direction: column; justify-content: space-between;
}
@media (min-width: 768px) { .bento-big { grid-column: span 7; grid-row: span 2; } }
.bento-big:hover { border-color: transparent; }
.bento-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0.4; transition: transform .7s ease, opacity .5s ease;
}
.bento-big:hover .bento-img { opacity: 0.5; transform: scale(1.05); }
.bento-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top right, rgba(10,10,10,1), rgba(10,10,10,0.85) 50%, transparent);
}
.bento-big-content { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: space-between; height: 100%; gap: 32px; }
.big-icon { font-size: 3rem; color: #ff3b30; }

.bento-card { grid-column: span 1; }
@media (min-width: 768px) { .bento-card { grid-column: span 5; } .bento-card.small { grid-column: span 4; } }
.bento-card h3 { font-size: 1.15rem; margin-top: 20px; }
.bento-card p  { font-size: 0.9rem; color: #52525b; margin-top: 8px; line-height: 1.65; }

.bento-dark { background: #0a0a0a; color: #fff; border: 0; transition: background .3s; }
.bento-dark:hover { background: #ff3b30; }
.bento-dark p { color: #d4d4d8; }
.bento-dark:hover p { color: #fff5f5; }
.bento-dark:hover i { color: #fff; }

/* ---------- Mission & Vision ---------- */
.section-dark {
  position: relative; background: #0a0a0a; color: #fff; overflow: hidden;
  padding: 96px 0; border-top: 0;
}
@media (min-width: 768px) { .section-dark { padding: 128px 0; } }
.mission-bg {
  position: absolute; right: 0; top: 0; height: 100%; width: 50%;
  object-fit: cover; opacity: 0.3; mix-blend-mode: screen; pointer-events: none;
}
.mission-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to right, #0a0a0a, rgba(10,10,10,0.95) 50%, rgba(10,10,10,0.4));
  pointer-events: none;
}
.mission-container { position: relative; z-index: 1; }

.mv-grid {
  margin-top: 80px;
  display: grid; grid-template-columns: 1fr; gap: 48px;
}
@media (min-width: 1024px) { .mv-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }

.mv-head { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.mv-icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.mv-icon.solid { background: #ff3b30; color: #fff; }
.mv-icon.outline { border: 2px solid #ff3b30; color: #ff3b30; }

.mv-block.right { padding-top: 0; }
@media (min-width: 1024px) {
  .mv-block.right { border-left: 1px solid #27272a; padding-left: 48px; }
}
.mv-lead {
  font-family: "Outfit"; font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; color: #fff;
  margin: 0;
}

/* ---------- Footer ---------- */
.footer { position: relative; background: #0a0a0a; color: #fff; overflow: hidden; padding: 96px 0 40px; }
@media (min-width: 768px) { .footer { padding: 128px 0 40px; } }

.footer-grid {
  margin-top: 64px;
  display: grid; grid-template-columns: 1fr; gap: 40px;
}
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 5fr 4fr 3fr; gap: 48px; } }

.f-row { display: flex; gap: 16px; align-items: flex-start; }
.f-addr { margin-top: 8px; font-family: "Outfit"; font-size: 1.3rem; font-weight: 700; line-height: 1.4; }

.footer-col .overline { margin-bottom: 16px; }

.f-phone {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 12px; margin-bottom: 12px;
  border-bottom: 1px solid #27272a;
  transition: border-color .25s ease;
}
.f-phone span { font-family: "Outfit"; font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 800; letter-spacing: -0.02em; }
.f-phone i { color: #ff3b30; font-size: 1.2rem; transition: transform .25s; }
.f-phone:hover { border-bottom-color: #ff3b30; }
.f-phone:hover i { transform: scale(1.15); }

.f-wa {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 12px; color: #4ade80; font-weight: 600; font-size: 0.9rem;
}
.f-wa:hover { color: #86efac; }

.f-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.f-links a { display: inline-flex; align-items: center; gap: 10px; color: #d4d4d8; transition: color .2s; }
.f-links a:hover { color: #fff; }
.dash { display: inline-block; width: 16px; height: 1px; background: #ff3b30; }

.brand-massive {
  margin: 96px -24px 0;
  font-family: "Outfit"; font-weight: 900; letter-spacing: -0.04em;
  font-size: 22vw; line-height: 0.9;
  color: rgba(255,255,255,0.05);
  white-space: nowrap; user-select: none; overflow: hidden;
  padding: 0 24px;
}
@media (min-width: 768px) { .brand-massive { margin-left: -40px; margin-right: -40px; padding: 0 40px; } }

.footer-bottom {
  margin-top: 40px; padding-top: 32px;
  border-top: 1px solid #27272a;
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-start; justify-content: space-between;
  font-size: 0.85rem; color: #71717a;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; align-items: center; } }
.fb-right { font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: #52525b; }

/* ---------- Floating actions ---------- */
.floating {
  position: fixed; right: 24px; bottom: 24px; z-index: 50;
  display: flex; flex-direction: column; gap: 12px;
}
.fab {
  position: relative;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; border-radius: 9999px;
  box-shadow: 0 20px 30px -10px rgba(0,0,0,0.35);
  transition: transform .25s ease, background .25s ease;
  font-size: 1.5rem;
}
.fab:hover { transform: scale(1.1); }
.fab-wa   { background: #22c55e; }
.fab-wa:hover { background: #16a34a; }
.fab-call { background: #ff3b30; }
.fab-call:hover { background: #d32f2f; }

.ping {
  position: absolute; inset: 0; border-radius: 9999px;
  background: #22c55e; opacity: 0.35;
  animation: pingPulse 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes pingPulse {
  75%, 100% { transform: scale(1.6); opacity: 0; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .ping { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
