* { box-sizing: border-box; }

:root {
  --blue: #075fbd;
  --blue-dark: #061d3a;
  --green: #15984b;
  --soft-green: #9ceab3;
  --text: #0b1d39;
  --muted: #5d6a82;
  --line: #dbe4ef;
  --bg: #f6f9fc;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  height: 74px;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid rgba(219,228,239,0.85);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  background: transparent;
  line-height: 0;
}

.nav-wrap {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  height: 42px;
  width: auto;
  display: block;
  background: transparent;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 700;
}

.nav a { color: var(--text); opacity: .92; }
.nav a:hover { color: var(--blue); }

.nav-button {
  color: #fff !important;
  background: var(--blue);
  padding: 14px 20px;
  border-radius: 8px;
  opacity: 1 !important;
  box-shadow: 0 10px 24px rgba(7,95,189,.18);
}

.hero {
  position: relative;
  height: 610px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6,29,58,.72) 0%, rgba(6,29,58,.48) 45%, rgba(6,29,58,.18) 100%),
    url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=2400&q=85") center/cover no-repeat;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 25%, rgba(21,152,75,.24), transparent 28%),
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.10));
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 126px;
  max-width: 640px;
  margin-left: max(64px, calc((100vw - 1280px) / 2 + 0px));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.eyebrow.light { color: var(--soft-green); }

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 22px;
  font-size: clamp(58px, 6vw, 86px);
  line-height: .96;
  letter-spacing: -.065em;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255,255,255,.88);
  font-size: 20px;
  line-height: 1.6;
  font-weight: 520;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
}

.btn.primary {
  background: var(--green);
  color: white;
  box-shadow: 0 12px 28px rgba(21,152,75,.22);
}

.btn.secondary {
  background: rgba(255,255,255,.08);
  color: white;
  border: 1px solid rgba(255,255,255,.48);
}

.btn.blue {
  background: var(--blue);
  color: white;
  margin-top: 10px;
}

/* decorative hero global map effect */
.hero-map {
  position: absolute;
  z-index: 2;
  right: 5vw;
  top: 64px;
  width: min(720px, 50vw);
  height: 420px;
  opacity: .92;
  pointer-events: none;
}

.hero-map:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .45;
  background:
    radial-gradient(circle at 65% 30%, rgba(255,255,255,.9) 1.5px, transparent 2px) 0 0/9px 9px,
    radial-gradient(ellipse at 62% 50%, rgba(255,255,255,.16), transparent 58%);
  mask-image: radial-gradient(ellipse at center, #000 35%, transparent 74%);
}

.map-dot {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--blue);
  background: var(--blue);
}

.map-dot.asia { left: 36%; top: 48%; box-shadow: 0 0 0 3px var(--green); background: var(--green); }
.map-dot.europe { left: 10%; top: 27%; }
.map-dot.north-america { left: 78%; top: 38%; }
.map-dot.south-america { left: 92%; top: 72%; box-shadow: 0 0 0 3px var(--green); background: var(--green); }

.arc {
  position: absolute;
  border: 2px solid rgba(255,255,255,.86);
  border-color: rgba(255,255,255,.86) transparent transparent transparent;
  border-radius: 50%;
  transform: rotate(-5deg);
}
.arc-1 { left: 12%; top: 25%; width: 66%; height: 170px; }
.arc-2 { left: 36%; top: 38%; width: 45%; height: 105px; transform: rotate(-10deg); }
.arc-3 { left: 37%; top: 46%; width: 57%; height: 210px; transform: rotate(22deg); border-style: dashed; border-color: rgba(255,255,255,.65) transparent transparent transparent; }

.map-label {
  position: absolute;
  color: rgba(255,255,255,.92);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: .04em;
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
}
.label-europe { left: 8%; top: 20%; }
.label-asia { left: 39%; top: 40%; }
.label-na { left: 78%; top: 28%; }
.label-sa { right: 0; top: 72%; }

.quick-stats {
  margin-top: -66px;
  position: relative;
  z-index: 8;
}

.stats-card {
  min-height: 126px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(219,228,239,.92);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(6,29,58,.13);
  overflow: hidden;
}

.stat-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 16px;
  padding: 28px 36px;
  border-right: 1px solid var(--line);
}

.stat-item:last-child { border-right: 0; }

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
}
.stat-icon.green { background: var(--green); }

.stat-item strong {
  font-size: 20px;
  display: block;
  margin-bottom: 5px;
}
.stat-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.stat-item small { font-size: 13px; color: var(--muted); }

.section { padding: 88px 0; }

.about-preview {
  padding-top: 72px;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.about-preview-grid,
.services-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 72px;
  align-items: center;
}

.about-copy h2,
.services-copy h2,
.contact h2 {
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1.05;
  letter-spacing: -.055em;
  color: var(--text);
  margin-bottom: 24px;
}

.about-copy p,
.services-copy > p,
.contact p {
  color: var(--muted);
  line-height: 1.74;
  font-size: 17px;
}

.about-visual {
  position: relative;
  min-height: 430px;
}

.warehouse-photo {
  height: 430px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(6,29,58,.04), rgba(6,29,58,.2)),
    url("assets/warehouse.jpg") center/cover no-repeat;
  box-shadow: 0 22px 70px rgba(6,29,58,.12);
}

.dark-feature-card {
  position: absolute;
  right: 0;
  top: 0;
  width: 42%;
  height: 100%;
  min-width: 275px;
  padding: 28px;
  border-radius: 0 24px 24px 0;
  background: rgba(6,29,58,.92);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  backdrop-filter: blur(12px);
}

.dark-feature-card > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}

.dark-feature-card span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 8px;
  color: var(--soft-green);
  font-weight: 900;
}

.dark-feature-card strong { display: block; margin-bottom: 4px; }
.dark-feature-card p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 14px;
  line-height: 1.45;
}

.services { background: #fff; }

.services-grid {
  grid-template-columns: .9fr 1fr;
  align-items: start;
}

.services-photo {
  min-height: 640px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(6,29,58,.03), rgba(6,29,58,.08)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1600&q=85") center/cover no-repeat;
  box-shadow: 0 22px 70px rgba(6,29,58,.12);
}

.service-list {
  margin-top: 30px;
  display: grid;
  gap: 16px;
}

.service-row {
  min-height: 88px;
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: 0 8px 28px rgba(6,29,58,.035);
}

.service-row span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #eef6ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-weight: 900;
  font-size: 24px;
}

.service-row h3 {
  margin: 0 0 4px;
  font-size: 20px;
  color: var(--text);
}
.service-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 15px;
}

.network {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  padding-top: 70px;
}

.network-image-wrap {
  border-radius: 28px;
  overflow: hidden;
  background: #f7fbff;
  box-shadow: 0 26px 76px rgba(6,29,58,.10);
  border: 1px solid rgba(219,228,239,.9);
}

.network-image-wrap img {
  width: 100%;
  display: block;
}

.locations {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.location-card {
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: 0 14px 38px rgba(6,29,58,.045);
}

.location-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--green);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .08em;
}

.location-card h3 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 26px;
  line-height: 1.1;
}

.location-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact {
  background: #fff;
}

.email-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--blue);
  font-size: 26px;
  font-weight: 900;
}

.inquiry-form {
  padding: 34px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(6,29,58,.08);
}

.inquiry-form label {
  display: block;
  color: var(--text);
  font-weight: 800;
  margin-bottom: 18px;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: #fbfdff;
}

.inquiry-form textarea { resize: vertical; }
.inquiry-form .btn { width: 100%; }

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer img { width: 168px; }
.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1080px) {
  .hero-map { opacity: .35; width: 80vw; right: -12vw; }
  .stats-card,
  .locations { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: 0; }
  .stat-item { border-bottom: 1px solid var(--line); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: 0; }
  .about-preview-grid,
  .services-grid,
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 32px, 1280px); }
  .site-header { height: auto; }
  .brand {
  display: inline-flex;
  align-items: center;
  background: transparent;
  line-height: 0;
}

.nav-wrap { height: auto; padding: 14px 0; }
  .brand img {
  height: 42px;
  width: auto;
  display: block;
  background: transparent;
  object-fit: contain;
}
  .nav { gap: 16px; font-size: 14px; flex-wrap: wrap; justify-content: flex-end; }
  .nav-button { padding: 10px 14px; }
  .hero { height: 620px; }
  .hero-content { margin-left: 16px; padding-top: 104px; }
  h1 { font-size: 52px; }
  .hero-map { display: none; }
  .quick-stats { margin-top: 0; }
  .stats-card,
  .locations { grid-template-columns: 1fr; border-radius: 0; }
  .stat-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat-item:last-child { border-bottom: 0; }
  .dark-feature-card { position: static; width: 100%; border-radius: 0 0 24px 24px; }
  .warehouse-photo { border-radius: 24px 24px 0 0; }
  .services-photo { min-height: 420px; }
  .section { padding: 70px 0; }
}

@media (max-width: 540px) {
  .nav a:not(.nav-button) { display: none; }
  .hero-content { margin-left: 0; }
  h1 { font-size: 44px; }
  .hero-text { font-size: 17px; }
  .service-row { grid-template-columns: 1fr; }
  .email-link { font-size: 21px; }
}
