html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 2px; }

/* ===================== NAVBAR ===================== */


/* ===================== HERO ===================== */
.hero {
  margin-top: var(--nav-h);
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--bg);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(29,78,216,0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(29,78,216,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  animation: gridDrift 20s ease-in-out infinite alternate;
}
@keyframes gridDrift { from { transform: translate(0,0); } to { transform: translate(-30px,-20px); } }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; }
.glow-1 { width: 600px; height: 600px; background: rgba(29,78,216,0.07); top: -200px; right: -100px; animation: glowFloat 8s ease-in-out infinite; }
.glow-2 { width: 500px; height: 500px; background: rgba(22,101,52,0.06); bottom: 0; left: -150px; animation: glowFloat 10s ease-in-out infinite reverse; }
@keyframes glowFloat { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(20px,-30px) scale(1.05); } }
.hero-img-wrap { position: absolute; right: 0; bottom: 0; width: 65%; height: 100%; overflow: hidden; }
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center center;
  opacity: 0;
  transition: opacity 0.7s ease;
  mask-image: linear-gradient(to right, transparent 0%, black 35%, black 70%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 30%, black 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 35%, black 70%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 30%, black 100%);
  -webkit-mask-composite: source-in; mask-composite: intersect;
}
.hero-img.active { opacity: 0.5; z-index: 1; }
.hero-route {
  position: absolute;
  top: 50%;
  left: 60px;
  right: 60px;
  display: flex;
  align-items: center;
  pointer-events: none;
  opacity: 0.18;
}

.route-dot {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.route-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--blue), var(--green));
  position: relative;
  overflow: visible;
}

/* 🔥 UPDATED */
.route-plane {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  fill: currentColor; /* matches text color */
  color: var(--blue); /* or white / whatever fits */
  animation: flyRoute 6s linear infinite;
  pointer-events: none;
}

/* animation unchanged */
@keyframes flyRoute {
  from {
    left: -20px;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  to {
    left: 100%;
    opacity: 0;
  }
}
.hero-body { position: relative; z-index: 2; display: flex; align-items: flex-end; justify-content: space-between; padding: 0 64px 64px; gap: 40px; }
.hero-content { max-width: 720px; flex-shrink: 0; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--blue-light); border: 1px solid var(--blue-mid); padding: 6px 14px; border-radius: 2px; font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue); margin-bottom: 32px; animation: fadeUp 0.8s ease both; }
.hero-tag-dot { width: 5px; height: 5px; background: var(--blue); border-radius: 50%; }
.hero-content h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(56px, 7vw, 120px); line-height: 0.92; letter-spacing: 1px; color: var(--text); margin-bottom: 24px; animation: fadeUp 0.8s ease 0.1s both; }
.hero-content h1 .accent { color: var(--blue); }
.hero-content h1 .stroke { -webkit-text-stroke: 1.5px rgba(29,78,216,0.35); color: transparent; }
.hero-content p { font-size: 15px; font-weight: 300; color: var(--muted); max-width: 420px; line-height: 1.75; margin-bottom: 36px; animation: fadeUp 0.8s ease 0.2s both; }
.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; animation: fadeUp 0.8s ease 0.3s both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-stats { flex-shrink: 0; display: flex; align-items: stretch; background: rgba(255,255,255,0.78); backdrop-filter: blur(16px); border: 1px solid var(--border2); border-radius: 4px; overflow: hidden; animation: fadeUp 0.8s ease 0.4s both; align-self: flex-end; }
.hero-stat { padding: 20px 28px; text-align: center; }
.hero-stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 34px; color: var(--blue); letter-spacing: 1px; line-height: 1; margin-bottom: 4px; }
.hero-stat-label { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted2); white-space: nowrap; }
.hero-stat-sep { width: 1px; background: var(--border2); flex-shrink: 0; align-self: stretch; margin: 14px 0; }
.scroll-hint { position: absolute; bottom: 32px; right: 64px; display: flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted2); z-index: 2; animation: fadeUp 1s ease 0.6s both; }
.scroll-line { width: 40px; height: 1px; background: var(--border2); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: var(--blue); animation: scrollPing 2s ease-in-out infinite; }
@keyframes scrollPing { 0% { left: -100%; } 50%,100% { left: 100%; } }

.btn-blue { background: var(--blue); color: #fff; padding: 13px 28px; border: none; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; border-radius: 2px; cursor: pointer; transition: background .2s, transform .15s, box-shadow .2s; display: inline-block; }
.btn-blue:hover { background: var(--blue2); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(29,78,216,0.22); }
.btn-ghost { background: transparent; color: var(--muted); padding: 12px 24px; border: 1px solid var(--border2); font-family: 'Outfit', sans-serif; font-weight: 500; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: border-color .2s, color .2s, background .2s; display: inline-flex; align-items: center; }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }

/* ===================== SECTION SHARED ===================== */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; }
.eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--blue); }
h2.big-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 72px); letter-spacing: 1.5px; line-height: 1.0; color: var(--text); margin-bottom: 20px; }

/* ===================== ABOUT ===================== */
#about { padding: 120px 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1300px; margin: 0 auto; align-items: center; }
.about-body p { font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }
.about-body p strong { color: var(--text2); font-weight: 500; }
.about-body .divider { width: 40px; height: 2px; background: var(--blue); margin: 32px 0; }
.about-visual { position: relative; }
.about-img { width: 100%; height: 480px; object-fit: cover; display: block; filter: grayscale(10%) brightness(0.95); transition: filter .4s; }
.about-img:hover { filter: grayscale(0%) brightness(1); }
.about-badge { position: absolute; bottom: -16px; left: -16px; background: var(--blue); color: #fff; padding: 20px 24px; font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: 1px; line-height: 1.4; }
.about-badge strong { font-size: 28px; display: block; }
.corner-tl, .corner-br { position: absolute; width: 20px; height: 20px; border-color: var(--blue); border-style: solid; }
.corner-tl { top: -8px; left: -8px; border-width: 2px 0 0 2px; }
.corner-br { bottom: -8px; right: -8px; border-width: 0 2px 2px 0; }

/* ===================== SERVICES ===================== */
#services { background: var(--surface2); padding: 120px 64px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
#services .section-header { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 64px; gap: 16px; max-width: 640px; margin-left: auto; margin-right: auto; }
#services .section-header p { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.75; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.service-card { background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 40px 32px 44px; position: relative; overflow: hidden; cursor: default; transition: background .3s, border-color .3s, box-shadow .3s, transform .3s; display: flex; flex-direction: column; min-height: 300px; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, var(--blue), var(--blue2)); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.service-card:hover { background: #fff; border-color: var(--blue-mid); box-shadow: 0 12px 40px rgba(29,78,216,0.10); transform: translateY(-4px); }
.service-card:hover::after { transform: scaleX(1); }
.service-num { font-family: 'Bebas Neue', sans-serif; font-size: 80px; color: rgba(29,78,216,0.1); line-height: 1; position: absolute; top: 16px; right: 20px; pointer-events: none; transition: color .3s; }
.service-card:hover .service-num { color: rgba(29,78,216,0.15); }
.service-icon { width: 52px; height: 52px; background: var(--blue-light); border: 1px solid var(--blue-mid); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 28px; border-radius: 4px; transition: background .3s, border-color .3s, transform .3s; }
.service-icon img { width: 28px; height: 28px; object-fit: contain; display: block; }
.service-card:hover .service-icon { background: var(--blue-mid); border-color: var(--blue); transform: scale(1.08); }
.service-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.5px; color: var(--text); margin-bottom: 14px; }
.service-card p { font-size: 13.5px; font-weight: 300; line-height: 1.7; color: var(--muted); }

/* ===================== PROCESS ===================== */
.process-wrap { max-width: 1200px; margin: 80px auto 0; padding-top: 64px; border-top: 1px solid var(--border); }
.process-wrap .eyebrow { margin-bottom: 12px; }
.process-wrap h3.process-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px, 3.5vw, 48px); letter-spacing: 1.5px; color: var(--text); margin-bottom: 48px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-grid::after { content: ''; position: absolute; top: 22px; left: calc(12.5% + 10px); right: calc(12.5% + 10px); height: 1px; background: linear-gradient(90deg, var(--blue), var(--green)); }
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-circle { width: 44px; height: 44px; background: var(--surface2); border: 1.5px solid var(--border2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 15px; color: var(--blue); margin-bottom: 28px; transition: background .3s, border-color .3s, box-shadow .3s, color .3s; }
.process-step:hover .step-circle { background: var(--blue); color: #fff; border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-light); }
.process-step h3 { font-weight: 600; font-size: 15px; color: var(--text); margin-bottom: 10px; }
.process-step p { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.65; }

/* ===================== FAQ ===================== */
#faq { padding: 120px 64px; background: var(--bg); border-top: 1px solid var(--border); }
.faq-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 340px 1fr; gap: 80px; align-items: start; }
.faq-header { position: relative; }
.faq-header h2.big-title { margin-bottom: 0; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border2); }
.faq-item:first-child { border-top: 1px solid var(--border2); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; background: none; border: none; cursor: pointer; text-align: left; font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 500; color: var(--text); transition: color .2s; }
.faq-q:hover { color: var(--blue); }
.faq-q[aria-expanded="true"] { color: var(--blue); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; transition: transform .3s ease; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .4s ease, padding .3s ease; }
.faq-a.open { max-height: 300px; }
.faq-a p { padding-bottom: 22px; font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.8; }

/* ===================== REVIEWS (Trustpilot) ===================== */
#reviews {
  background: var(--surface2);
  border-top: 1px solid var(--border);
  padding: 80px 64px;
  overflow: hidden;    /* prevents any child from leaking outside */
}
.reviews-inner {
  max-width: 1200px;
  margin: 0 auto;
  /* no overflow:hidden here — we want the inner to size naturally */
}

.tp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
}
.tp-left { display: flex; flex-direction: column; gap: 6px; }
.tp-brand { display: flex; align-items: center; gap: 10px; }
.tp-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.tp-star-icon {
  width: 28px; height: 28px;
  background: #00b67a;
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tp-star-icon svg { width: 16px; height: 16px; fill: #fff; }
.tp-score {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  letter-spacing: 1px;
  color: var(--text);
  line-height: 1;
}
.tp-meta { font-size: 13px; font-weight: 300; color: var(--muted2); }
.tp-stars-row { display: flex; align-items: center; gap: 4px; }
.tp-star {
  width: 28px; height: 28px;
  background: #00b67a;
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.tp-no-star {
  background: var(--border2) !important;
}
.tp-star svg { width: 16px; height: 16px; fill: #fff; }
.tp-star.half { background: linear-gradient(to right, #00b67a 50%, var(--border2) 50%); }
.tp-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--text);
  margin-left: 8px;
}

/* Grid: 4 cols desktop → 2 cols tablet → 1 col mobile */
.tp-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.tp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 22px 20px;
  min-width: 0;          /* critical: allows grid cells to shrink below content width */
  box-sizing: border-box;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.tp-card:hover { border-color: var(--border2); box-shadow: 0 6px 24px rgba(15,23,42,0.07); transform: translateY(-2px); }
.tp-card-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.tp-card-star { width: 18px; height: 18px; background: #00b67a; border-radius: 2px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tp-card-star svg { width: 10px; height: 10px; fill: #fff; }
.tp-card-text { font-size: 13px; font-weight: 400; color: var(--text2); line-height: 1.7; margin-bottom: 16px; word-break: break-word; }
.tp-card-author { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; color: var(--muted2); text-transform: uppercase; }
.tp-card-date { font-size: 11px; font-weight: 300; color: var(--muted2); margin-top: 2px; }

/* ===================== WAREHOUSES ===================== */
#warehouses { padding: 120px 64px; max-width: 1300px; margin: 0 auto; }
.warehouses-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 64px; }
.warehouses-header-right { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.8; }
.warehouses-header-right strong { color: var(--text); font-weight: 500; }
.warehouses-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px; }
.warehouse-card { background: var(--surface); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; transition: border-color .3s, box-shadow .3s, transform .3s; cursor: default; }
.warehouse-card:hover { border-color: var(--blue-mid); box-shadow: 0 12px 40px rgba(29,78,216,0.09); transform: translateY(-4px); }
.warehouse-img { width: 100%; height: 250px; object-fit: cover; display: block; filter: grayscale(20%) brightness(0.92); transition: filter .4s; }
.warehouse-card:hover .warehouse-img { filter: grayscale(0%) brightness(1); }
.warehouse-body { padding: 28px 28px 32px; }
.warehouse-flag { font-size: 22px; margin-bottom: 10px; display: block; }
.warehouse-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.5px; color: var(--text); margin-bottom: 6px; }
.warehouse-location { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }
.warehouse-location::before { content: ''; width: 14px; height: 1px; background: var(--blue); }
.warehouse-desc { font-size: 13px; font-weight: 300; line-height: 1.75; color: var(--muted); margin-bottom: 20px; }
.warehouse-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.warehouse-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; background: var(--blue-light); color: var(--blue); border: 1px solid var(--blue-mid); }

/* ===================== PARTNERS ===================== */
#partners {
  background: var(--surface2);
  padding: 56px 64px 40px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.partners-inner { max-width: 1200px; margin: 0 auto; }
.partners-top { text-align: center; max-width: 760px; margin: 0 auto 18px; }
.partners-top .eyebrow { color: var(--blue); justify-content: center; }
.partners-top .eyebrow::before { background: var(--blue); }
.partners-top h2.big-title { margin-bottom: 10px; }

.partners-marquee {
  overflow: hidden;
  padding: 48px 0 32px 0;
}
.partners-marquee-track {
  display: flex;
  gap: 56px;
  align-items: center;
  width: max-content;
  animation: partnersMarquee 26s linear infinite;
  padding: 0;
}
@keyframes partnersMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.partner-logo {
  height: 44px;
  width: auto;
  display: block;
  flex: 0 0 auto;
  user-select: none;
  -webkit-user-drag: none;
  opacity: 1;
  filter: none;
}

/* MARQUEE */
.marquee-wrap { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface2); padding: 14px 0; }
.marquee-track { display: flex; white-space: nowrap; animation: marquee 24s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { display: inline-flex; align-items: center; gap: 16px; padding: 0 28px; font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: 2px; color: var(--muted); }
.marquee-sep { width: 4px; height: 4px; background: var(--blue); border-radius: 50%; flex-shrink: 0; }

/* ===================== CONTACT ===================== */
#contacts { padding: 120px 64px; border-top: 1px solid var(--border); position: relative; overflow: hidden; }
#contacts::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(29,78,216,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(29,78,216,0.06) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse 70% 80% at 80% 50%, black 10%, transparent 80%); pointer-events: none; }
.contact-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.15fr; gap: 80px; align-items: start; position: relative; z-index: 1; }
.contact-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(42px, 5.5vw, 80px); line-height: 0.95; letter-spacing: 1.5px; color: var(--text); margin-bottom: 24px; }
.contact-title .accent { color: var(--blue); }
.contact-lead { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.8; max-width: 380px; margin-bottom: 48px; }
.contact-info-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border2); border-radius: 6px; overflow: hidden; background: var(--surface); }
.contact-info-item { display: flex; align-items: center; gap: 18px; padding: 20px 24px; border-bottom: 1px solid var(--border); transition: background .2s; text-decoration: none; color: inherit; cursor: pointer; }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item:hover { background: var(--blue-light); }
.info-icon { width: 40px; height: 40px; background: var(--blue-light); border: 1px solid var(--blue-mid); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s, border-color .2s, transform .2s; }
.contact-info-item:hover .info-icon { background: var(--blue); border-color: var(--blue); transform: scale(1.08); }
.info-icon svg { width: 18px; height: 18px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke .2s; }
.contact-info-item:hover .info-icon svg { stroke: #fff; }
.info-label { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted2); margin-bottom: 3px; }
.info-value { font-size: 14px; font-weight: 500; color: var(--text); }
.contact-badge { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; padding: 8px 16px; background: var(--green-light); border: 1px solid var(--green-mid); border-radius: 2px; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); }
.badge-dot { width: 6px; height: 6px; background: var(--green2); border-radius: 50%; animation: badgePulse 2s ease-in-out infinite; }
@keyframes badgePulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.8); } }
.contact-form-wrap { background: var(--surface); border: 1px solid var(--border2); border-radius: 6px; overflow: hidden; }
.form-header { padding: 24px 32px 20px; border-bottom: 1px solid var(--border); background: var(--surface2); display: flex; align-items: center; justify-content: space-between; }
.form-header-title { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 1px; color: var(--text); }
.form-step-indicator { display: flex; align-items: center; gap: 6px; }
.form-step { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--border2); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 600; color: var(--muted2); transition: background .3s, border-color .3s, color .3s; }
.form-step.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.form-step.done   { background: var(--blue-light); border-color: var(--blue-mid); color: var(--blue); }
.step-sep { width: 16px; height: 1px; background: var(--border2); }
.contact-form { padding: 32px; display: flex; flex-direction: column; gap: 20px; }
.reason-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted2); margin-bottom: 10px; display: block; }
.reason-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.reason-option { position: relative; }
.reason-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.reason-btn { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: var(--surface2); border: 1.5px solid var(--border2); border-radius: 4px; cursor: pointer; transition: background .2s, border-color .2s, box-shadow .2s; width: 100%; }
.reason-btn:hover { border-color: var(--blue-mid); background: var(--blue-light); }
.reason-option input[type="radio"]:checked + .reason-btn { background: var(--blue-light); border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,78,216,0.1); }
.reason-icon { font-size: 18px; line-height: 1; flex-shrink: 0; }
.reason-text { font-size: 12px; font-weight: 500; color: var(--text2); line-height: 1.3; }
.reason-option input[type="radio"]:checked + .reason-btn .reason-text { color: var(--blue); }
.subject-hint { display: none; align-items: center; gap: 6px; padding: 6px 10px; background: var(--blue-light); border: 1px solid var(--blue-mid); border-radius: 2px; font-size: 11px; font-weight: 500; color: var(--blue); letter-spacing: 0.05em; margin-top: 8px; }
.subject-hint.visible { display: inline-flex; }
.subject-hint-prefix { font-weight: 600; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.field-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted2); }
.field-input { background: var(--surface2); border: 1.5px solid var(--border2); border-radius: 4px; padding: 12px 14px; font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 400; color: var(--text); outline: none; transition: border-color .2s, background .2s, box-shadow .2s; width: 100%; -webkit-appearance: none; }
.field-input::placeholder { color: rgba(55,65,81,0.45); font-weight: 300; }
.field-input:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(29,78,216,0.1); }
.field-input:hover:not(:focus) { border-color: var(--blue-mid); }
textarea.field-input { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.btn-submit { background: var(--blue); color: #fff; padding: 14px 32px; border: none; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 2px; cursor: pointer; transition: background .2s, transform .15s, box-shadow .2s; display: flex; align-items: center; gap: 10px; }
.btn-submit:hover { background: var(--blue2); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(29,78,216,0.25); }
.btn-submit:active { transform: translateY(0); }
.btn-submit svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s; }
.btn-submit:hover svg { transform: translateX(3px); }
.form-privacy { font-size: 11px; font-weight: 300; color: var(--muted2); line-height: 1.5; max-width: 200px; }
.form-success { display: none; flex-direction: column; align-items: center; justify-content: center; padding: 48px 32px; text-align: center; gap: 16px; min-height: 300px; }
.form-success.visible { display: flex; }
.success-icon { width: 64px; height: 64px; background: var(--green-light); border: 1.5px solid var(--green-mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; animation: successPop .5s cubic-bezier(0.34,1.56,0.64,1) both; }
@keyframes successPop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.success-icon svg { width: 28px; height: 28px; stroke: var(--green2); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.success-title { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 1px; color: var(--text); }
.success-text { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.7; max-width: 300px; }

/* ===================== READY CTA ===================== */
.ready-cta {
  padding: 56px 64px 72px;
  background: var(--bg);
}
.ready-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  text-align: center;
}
.ready-cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: 1px;
  color: var(--text);
  margin: 8px 0 10px;
  line-height: 1;
}
.ready-cta-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 520px;
}
.btn-blue.btn-blue-lg {
  padding: 14px 34px;
  font-size: 18px;
  margin-top: 6px;
}

/* ===================== FOOTER ===================== */
footer { background: var(--surface2); border-top: 1px solid var(--border); padding: 36px 64px; display: flex; flex-direction: column; gap: 0; }
.footer-inner { max-width: 1048px; margin: 0 auto; width: 100%; display: flex; flex-direction: column; gap: 0; }
.footer-divider { border: none; border-top: 1px solid var(--border2); margin: 24px 0; }

/* Row shared */
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

/* Row 1 */
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 2px; color: var(--text); display: flex; align-items: center; }
.footer-logo-dot { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; margin-left: 4px; }
.footer-logo-img {
  height: 26px;
  width: auto;
  max-width: 260px;
  display: block;
  object-fit: contain;
}
.footer-socials { display: flex; align-items: center; gap: 9px; }
.footer-social-link { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border2); background: transparent; color: var(--muted); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background .2s, border-color .2s, color .2s; }
.footer-social-link svg { width: 15px; height: 15px; }
.footer-social-link:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

/* Row 2 */
.footer-row-2 { align-items: flex-start; flex-wrap: wrap; gap: 36px; }
.footer-col { display: flex; flex-direction: column; gap: 9px; min-width: 110px; }
.footer-col-title { font-family: 'Bebas Neue', sans-serif; font-size: 15px; letter-spacing: 1.5px; color: var(--text); margin-bottom: 2px; }
.footer-col a { font-size: 13.5px; font-weight: 300; color: var(--muted2); text-decoration: none; transition: color .2s; line-height: 1.4; }
.footer-col a:hover { color: var(--blue); }

/* Row 3 */
.footer-copy { font-size: 12.5px; color: var(--muted2); }
.footer-legal { display: flex; align-items: center; gap: 12px; }
.footer-legal a { font-size: 12.5px; color: var(--muted2); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: var(--blue); }
.footer-legal-sep { width: 3px; height: 3px; background: var(--muted2); border-radius: 50%; opacity: .5; }

/* ===================== REVEAL ===================== */
.reveal { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s ease; }
.reveal.hidden  { opacity: 0; transform: translateY(20px); }
.reveal.visible { opacity: 1; transform: none; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  #about { grid-template-columns: 1fr; padding: 80px 40px; gap: 48px; }
  .about-img { height: 340px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .warehouses-grid { grid-template-columns: repeat(2, 1fr); }
  .warehouses-header { grid-template-columns: 1fr; gap: 32px; }
  #partners { padding: 56px 40px; }
  #services, #warehouses { padding: 80px 40px; }
  .hero-body { padding: 0 40px 48px; }
  .hero-stats { display: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-grid::after { display: none; }
  #contacts { padding: 80px 40px; }
  .ready-cta { padding: 48px 40px 64px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-header { position: static; }
  /* Reviews: drop to 2 cols at tablet */
  .tp-cards { grid-template-columns: repeat(2, 1fr); }
  #faq, #reviews { padding: 80px 40px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 56px; }
  .scroll-hint { display: none; }
  .hero { min-height: calc(100vh - var(--nav-h)); justify-content: flex-end; }
  .hero-img-wrap { width: 100%; opacity: 0.8; }
  .hero-body { flex-direction: column; align-items: flex-start; padding: 0 20px 32px; gap: 20px; }
  .hero-content { max-width: 100%; }
  .hero-content h1 { font-size: clamp(40px, 11vw, 64px); margin-bottom: 16px; }
  .hero-content p { font-size: 14px; margin-bottom: 24px; max-width: 100%; }
  .hero-tag { margin-bottom: 20px; }
  .hero-actions { gap: 10px; }
  .btn-blue, .btn-ghost { padding: 11px 20px; font-size: 12px; }
  .hero-stats { display: none; }
  #about { padding: 64px 20px; gap: 40px; }
  .about-img { height: 260px; }
  .about-badge { padding: 14px 18px; bottom: -12px; left: -12px; }
  .about-badge strong { font-size: 22px; }
  #services { padding: 64px 20px; }
  #services .section-header { margin-bottom: 40px; }
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  #warehouses { padding: 64px 20px; }
  .warehouses-grid { grid-template-columns: 1fr; }
  .warehouses-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-wrap { margin-top: 56px; padding-top: 48px; }
  #partners { padding: 48px 20px; }
  #contacts { padding: 64px 20px; }
  .ready-cta { padding: 40px 20px 56px; }
  .btn-blue.btn-blue-lg { width: 100%; text-align: center; justify-content: center; }
  .contact-title { font-size: 52px; }
  .contact-form { padding: 20px; }
  .form-header { padding: 18px 20px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .reason-grid { grid-template-columns: 1fr; }
  .form-footer { flex-direction: column; align-items: stretch; }
  .btn-submit { justify-content: center; }
  .form-privacy { max-width: 100%; text-align: center; }
  footer { padding: 28px 20px; }
  .footer-row-1 { flex-wrap: wrap; gap: 16px; }
  .footer-row-2 { gap: 28px; }
  .footer-row-3 { flex-direction: column; align-items: flex-start; gap: 12px; }
  #faq, #reviews { padding: 64px 20px; }
  /* Reviews: stay at 2 cols on narrow tablets/large phones */
  .tp-cards { grid-template-columns: repeat(2, 1fr); }
  /* tp-header: stack on mobile */
  .tp-header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 32px; }
}

/* Narrow phones (S9 = 360px, iPhone SE = 375px etc.) */
@media (max-width: 480px) {
  /* Reviews: single column so cards never exceed viewport */
  .tp-cards { grid-template-columns: 1fr; }
  /* Tighter reviews padding */
  #reviews { padding: 48px 16px; }
  /* Score row: wrap if needed */
  .tp-stars-row { flex-wrap: wrap; }
}

@media (max-width: 400px) {
  .hero-content h1 { font-size: 44px; }
  .hero-tag { font-size: 10px; padding: 5px 10px; }
  h2.big-title { font-size: 34px; }
  .service-card { padding: 28px 20px 32px; }
  .btn-blue, .btn-ghost { padding: 10px 18px; font-size: 11px; width: 100%; text-align: center; }
  .hero-actions { flex-direction: column; width: 100%; }
  .tp-cards { grid-template-columns: 1fr; }
}