/* ============================================================
   ADRESSOPOST — PREMIUM LOGISTICS SITE
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #E63329;
  --red-dark:  #C0281F;
  --black:     #111111;
  --text:      #1C1C1C;
  --muted:     #6B6B6B;
  --border:    #E8E8E8;
  --surface:   #F7F7F7;
  --white:     #FFFFFF;
  --dark:      #111111;
  --dark-2:    #1A1A1A;
  --header-h:  68px;
  --max-w:     1160px;
  --radius:    12px;
  --radius-lg: 20px;
  --expo:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease:      cubic-bezier(0.25, 0.1, 0.25, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Shared ─────────────────────────────────────────────────────────────────── */

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.section { padding: 112px 24px; }
.section--surface { background: var(--surface); }
.section--dark { background: var(--dark); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  opacity: 0.75;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.eyebrow--light { color: rgba(255,255,255,0.5); }

.section-head { max-width: 640px; margin-bottom: 60px; }
.section-head.centered { text-align: center; max-width: 580px; margin-inline: auto; }

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title--light { color: white; }

.section-intro {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 600px;
}

.body-lead {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

/* ── Buttons ─────────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 26px;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 0.005em;
  transition: background 0.18s var(--ease), color 0.18s var(--ease),
              border-color 0.18s var(--ease), transform 0.15s var(--ease),
              box-shadow 0.18s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

.btn--red {
  background: var(--red);
  color: white;
  border-color: var(--red);
  box-shadow: 0 4px 14px rgba(230,51,41,0.25);
}
.btn--red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 6px 20px rgba(230,51,41,0.35);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--outline:hover {
  background: var(--surface);
  border-color: #ccc;
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--ghost:hover { background: var(--surface); }

.btn--sm { padding: 9px 18px; font-size: 0.875rem; }
.btn--full { width: 100%; justify-content: center; }

.btn__arrow {
  display: inline-block;
  transition: transform 0.18s var(--ease);
}
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ── Header ─────────────────────────────────────────────────────────────────── */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.header.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}
.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.header__logo { flex-shrink: 0; display: flex; align-items: center; }
.header__logo-img { height: 32px; width: auto; display: block; }

.nav { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s var(--ease), background 0.15s var(--ease), border-color 0.15s var(--ease);
  white-space: nowrap;
}
.nav__link:hover { color: var(--text); background: var(--surface); }
.nav__link.active { color: var(--text); border-bottom-color: var(--red); border-radius: 8px 8px 0 0; }

.header__actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; border-radius: 8px; }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.25s var(--expo), opacity 0.2s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────────────────────────── */

.hero {
  min-height: 100svh;
  padding: calc(var(--header-h) + 72px) 24px 80px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, rgba(230,51,41,0.03) 0%, rgba(230,51,41,0.06) 100%);
  border-radius: 0 0 0 120px;
  pointer-events: none;
}

.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__content { position: relative; z-index: 1; }

.hero__content .eyebrow {
  animation: fadeUp 0.6s var(--expo) 0.1s both;
}

.hero__headline {
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
  animation: fadeUp 0.6s var(--expo) 0.18s both;
}

.hero__sub {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 480px;
  animation: fadeUp 0.6s var(--expo) 0.26s both;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s var(--expo) 0.34s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Dashboard card ──────────────────────────────────────────────────────────── */

.hero__dashboard {
  position: relative;
  z-index: 1;
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  filter: blur(4px);
  transition: opacity 0.7s var(--expo) 0.4s, transform 0.7s var(--expo) 0.4s, filter 0.7s var(--expo) 0.4s;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); filter: blur(0); }

.dashboard {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
}

.dashboard__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.dashboard__title { font-size: 0.875rem; font-weight: 700; color: var(--text); }
.dashboard__demo {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.dashboard__stats { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }

.dashboard__stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background 0.15s var(--ease);
}
.dashboard__stat:hover { background: var(--surface); }

.dashboard__stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dashboard__stat-icon svg { width: 18px; height: 18px; }
.dashboard__stat-icon--blue  { background: #EFF6FF; color: #3B82F6; }
.dashboard__stat-icon--red   { background: #FEF2F2; color: var(--red); }
.dashboard__stat-icon--green { background: #F0FDF4; color: #16a34a; }
.dashboard__stat-icon--gray  { background: var(--surface); color: var(--muted); }

.dashboard__stat-info { flex: 1; }
.dashboard__stat-label { display: block; font-size: 0.75rem; color: var(--muted); margin-bottom: 2px; }
.dashboard__stat-value { font-size: 1.125rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.dashboard__stat-unit { font-size: 0.8rem; font-weight: 500; color: var(--muted); }

.dashboard__stat-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  white-space: nowrap;
}
.dashboard__stat-badge--green  { background: #dcfce7; color: #16a34a; }
.dashboard__stat-badge--yellow { background: #fef9c3; color: #ca8a04; }
.dashboard__stat-badge--gray   { background: var(--surface); color: var(--muted); }

.dashboard__footer { border-top: 1px solid var(--border); padding-top: 16px; }
.dashboard__footer-label { display: block; font-size: 0.6875rem; color: var(--muted); margin-bottom: 10px; }
.dashboard__bars { display: flex; align-items: flex-end; gap: 4px; height: 40px; }
.dashboard__bar {
  flex: 1;
  height: var(--h);
  background: var(--border);
  border-radius: 3px;
  transition: background 0.15s;
}
.dashboard__bar--today { background: var(--red); opacity: 0.7; }
.dashboard__bar:hover { background: var(--muted); }

/* ── Stats bar ────────────────────────────────────────────────────────────────── */

.stats-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.stats-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.stat {
  padding: 32px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.stat__number {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}
.stat__label { font-size: 0.8125rem; font-weight: 500; color: var(--muted); }
.stat__div { width: 1px; height: 44px; background: var(--border); flex-shrink: 0; }

/* ── Marquee ─────────────────────────────────────────────────────────────────── */

.marquee-section { background: var(--dark); padding: 36px 0; overflow: hidden; }
.marquee-section__label {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

.marquee-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

.m-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 24px;
  min-width: 140px;
  height: 60px;
  flex-shrink: 0;
  transition: box-shadow 0.18s var(--ease), transform 0.18s var(--ease);
  cursor: default;
}
.m-logo:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.15); transform: translateY(-1px); }
.m-logo img { max-height: 30px; max-width: 110px; object-fit: contain; display: block; }
.m-logo span { font-size: 0.8125rem; font-weight: 600; color: rgba(255,255,255,0.65); white-space: nowrap; display: none; }
.m-logo.has-logo span { display: none; }
.m-logo:not(.has-logo) img { display: none; }
.m-logo:not(.has-logo) span { display: block; }

/* ── Process ─────────────────────────────────────────────────────────────────── */

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.process-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.25s var(--expo), box-shadow 0.25s var(--expo), border-color 0.25s var(--expo);
}
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
  border-color: rgba(230,51,41,0.3);
}
.process-card__num {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.85;
}
.process-card__title { font-size: 1.125rem; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.process-card__body { font-size: 0.9375rem; line-height: 1.7; color: var(--muted); }
.process-card__arrow {
  position: absolute;
  top: 36px;
  right: -14px;
  width: 28px;
  height: 28px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--muted);
  z-index: 1;
}
.process-card:last-child .process-card__arrow { display: none; }

/* ── Services ────────────────────────────────────────────────────────────────── */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.25s var(--expo), box-shadow 0.25s var(--expo);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.09);
  border-color: rgba(230,51,41,0.2);
}
.service-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(230,51,41,0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.2s var(--ease);
}
.service-card:hover .service-card__icon { background: rgba(230,51,41,0.13); }
.service-card__icon svg { width: 22px; height: 22px; stroke: var(--red); }
.service-card h3 { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.service-card p { font-size: 0.9rem; line-height: 1.7; color: var(--muted); }

/* ── Portal ──────────────────────────────────────────────────────────────────── */

.portal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.portal-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 28px 0 36px; }
.portal-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}
.portal-list__icon { flex-shrink: 0; width: 20px; height: 20px; }
.portal-list__icon svg { width: 100%; height: 100%; }

.portal-note { font-size: 0.8125rem; color: var(--muted); margin-top: 14px; }

.portal-login-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 20px 56px rgba(0,0,0,0.09);
}
.portal-login-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.portal-login-card__logo { height: 26px; width: auto; }
.portal-login-card__tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #16a34a;
  background: #dcfce7;
  padding: 4px 10px;
  border-radius: 100px;
}
.portal-login-card__form { display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }
.portal-form-field label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.portal-form-input {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 0.9rem;
  color: var(--muted);
}
.portal-form-input svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--muted); }

.portal-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red);
  color: white;
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 13px;
  border-radius: 10px;
  cursor: default;
  margin-top: 8px;
}
.portal-login-btn svg { width: 16px; height: 16px; stroke: white; }
.portal-login-card__help { text-align: center; font-size: 0.8125rem; color: var(--muted); }
.portal-login-card__help a { color: var(--red); text-decoration: none; font-weight: 600; }

/* ── Flexibility ─────────────────────────────────────────────────────────────── */

.flex-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.flex-text p { font-size: 0.9375rem; line-height: 1.75; color: var(--muted); }

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 12px;
  transition: transform 0.22s var(--expo), box-shadow 0.22s var(--expo);
}
.benefit-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.07); }
.benefit-card--highlight {
  border-color: rgba(230,51,41,0.2);
  background: rgba(230,51,41,0.02);
}
.benefit-card__icon {
  width: 36px;
  height: 36px;
  background: rgba(230,51,41,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-card__icon svg { width: 18px; height: 18px; }
.benefit-card strong { display: block; font-size: 0.9375rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.benefit-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.55; }

/* ── Warehouse ───────────────────────────────────────────────────────────────── */

.warehouse-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.warehouse-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.25s var(--expo), box-shadow 0.25s var(--expo), border-color 0.25s;
}
.warehouse-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.09);
  border-color: rgba(230,51,41,0.2);
}
.warehouse-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(230,51,41,0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.warehouse-card__icon svg { width: 22px; height: 22px; stroke: var(--red); }
.warehouse-card h3 { font-size: 0.9375rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.warehouse-card p { font-size: 0.875rem; line-height: 1.7; color: var(--muted); }

/* ── Logistics ───────────────────────────────────────────────────────────────── */

.logistics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.logistics-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: transform 0.25s var(--expo), box-shadow 0.25s var(--expo);
}
.logistics-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.09);
}
.logistics-card__num {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--red);
  opacity: 0.7;
  margin-bottom: 14px;
  display: block;
}
.logistics-card h3 { font-size: 1.125rem; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.logistics-card p { font-size: 0.9375rem; line-height: 1.75; color: var(--muted); }

/* ── References ─────────────────────────────────────────────────────────────── */

.refs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 12px;
}
.ref-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  min-height: 100px;
  transition: transform 0.22s var(--expo), box-shadow 0.22s var(--expo), border-color 0.22s;
}
.ref-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  border-color: rgba(230,51,41,0.2);
}
.ref-card img { max-height: 36px; max-width: 120px; object-fit: contain; display: block; }
.ref-card span { font-size: 0.8125rem; font-weight: 600; color: var(--muted); text-align: center; display: none; }
.ref-card.has-logo span { display: none; }
.ref-card:not(.has-logo) img { display: none; }
.ref-card:not(.has-logo) span { display: block; font-size: 0.875rem; color: var(--text); }

/* ── Contact ─────────────────────────────────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; }
.contact-detail svg { width: 20px; height: 20px; stroke: var(--red); flex-shrink: 0; margin-top: 2px; }
.contact-detail strong { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 2px; }
.contact-detail p { font-size: 0.9375rem; line-height: 1.6; color: rgba(255,255,255,0.75); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.4); }
.form-field input,
.form-field textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 0.9375rem;
  font-family: 'Inter', sans-serif;
  color: white;
  outline: none;
  resize: vertical;
  transition: border-color 0.18s var(--ease), background 0.18s var(--ease);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--red);
  background: rgba(255,255,255,0.09);
}

/* ── Footer ──────────────────────────────────────────────────────────────────── */

.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 24px;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.footer__brand { display: flex; flex-direction: column; gap: 10px; }
.footer__logo {
  height: 32px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  object-fit: contain;
}
.footer__addr { font-size: 0.8125rem; color: rgba(255,255,255,0.35); line-height: 1.65; }
.footer__copy { font-size: 0.8125rem; color: rgba(255,255,255,0.25); }
.footer__powered {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.01em;
}
.footer__sholm {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  transition: color 0.18s var(--ease);
}
.footer__sholm:hover { color: rgba(255,255,255,0.85); }

/* ── Scroll reveal ───────────────────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(4px);
  transition: opacity 0.55s var(--expo), transform 0.55s var(--expo), filter 0.55s var(--expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); filter: blur(0); }

/* ── Responsive ──────────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .warehouse-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav, .header__actions { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: white;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 99;
  }
  .nav.open .nav__link { width: 100%; padding: 12px 16px; font-size: 1rem; }
  .hamburger { display: flex; }

  .hero__inner { grid-template-columns: 1fr; gap: 48px; padding-top: 24px; }
  .hero__dashboard { order: -1; }
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 48px); }

  .process-grid  { grid-template-columns: 1fr; gap: 16px; }
  .process-card__arrow { display: none; }
  .flex-grid, .portal-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .logistics-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .services-grid  { grid-template-columns: 1fr; }
  .warehouse-grid { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .stats-bar__inner { flex-wrap: wrap; }
  .stat { flex: 0 0 50%; padding: 20px 12px; }
  .stat__div { display: none; }
  .refs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { flex-direction: column; text-align: center; align-items: center; }
}
