/* ─────────────────────────────────────────
   NALS LOGISTICS — Premium CSS
   ───────────────────────────────────────── */

/* === TOKENS === */
:root {
  --bg:        #07101E;
  --bg-2:      #0C1A2E;
  --bg-3:      #0F2040;
  --card:      rgba(255,255,255,0.028);
  --card-h:    rgba(255,255,255,0.05);
  --gold:      #1565C0;
  --gold-dim:  rgba(21,101,192,0.15);
  --gold-glow: rgba(21,101,192,0.35);
  --blue:      #38BDF8;
  --blue-dim:  rgba(56,189,248,0.12);
  --white:     #FFFFFF;
  --t1:        #F1F5F9;
  --t2:        #94A3B8;
  --t3:        #475569;
  --border:    rgba(255,255,255,0.07);
  --border-g:  rgba(21,101,192,0.35);
  --r-sm:      10px;
  --r-md:      16px;
  --r-lg:      24px;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.4, 0, 1, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--t1);
  font-family: 'Inter', system-ui, sans-serif;

  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--gold-dim); color: var(--gold); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--t3); border-radius: 3px; }

img, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: var(--t1);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  width: 100%;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--t3); }
input:focus, select:focus, textarea:focus {
  border-color: var(--border-g);
  background: rgba(21,101,192,0.04);
}
select option { background: var(--bg-2); color: var(--t1); }
textarea { resize: vertical; }

/* === LAYOUT === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; line-height: 1.15; }
.text-gold { color: var(--gold); }
.text-gradient {
  background: linear-gradient(135deg, #1565C0 0%, #42A5F5 45%, #1565C0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s;
}
.btn:hover::after { background: rgba(255,255,255,0.07); }

.btn--gold {
  background: var(--gold);
  color: #FFFFFF;
  box-shadow: 0 0 0 0 var(--gold-glow);
  transition: all 0.3s var(--ease), box-shadow 0.4s;
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--gold-glow);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--border-g);
  color: var(--gold);
}
.btn--lg { padding: 15px 32px; font-size: 0.95rem; }
.btn--full { width: 100%; justify-content: center; }
.btn--outline {
  background: transparent;
  color: var(--t1);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }

/* === SECTION SHARED === */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-tag::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--gold);
  display: inline-block;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
}
.section-sub {
  color: var(--t2);
  font-size: 1.05rem;
  max-width: 560px;
}
.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-head .section-sub { margin: 0 auto; }

/* === REVEAL ANIMATIONS === */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(7,16,30,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(7, 16, 30, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(0,0,0,0.3);
}
.nav__inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 40px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #07101E;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  transition: opacity 0.25s;
}
.nav__logo:hover .nav__logo-img { opacity: 1; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.05em;
}
.logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: var(--t3);
  font-weight: 500;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--t2);
  position: relative;
  transition: color 0.25s;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav__link:hover,
.nav__link.active { color: var(--t1); }
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }
.nav__cta { margin-left: 16px; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--t1);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 24px 24px 40px;
  background: rgba(7, 16, 30, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  height: calc(100vh - 72px);
  overflow-y: auto;
}
.nav__mobile ul { display: flex; flex-direction: column; gap: 4px; }
.nav__mobile ul a {
  display: block;
  padding: 10px 12px;
  color: var(--t2);
  border-radius: var(--r-sm);
  transition: all 0.2s;
  font-size: 1rem;
}
.nav__mobile ul a:hover { background: var(--card); color: var(--t1); }
.nav__mobile .btn { margin-top: 8px; justify-content: center; }
.nav__mobile.open { display: flex; }

/* ─────────────────────────────────────────
   HERO
   ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}
.hero__slide.active { opacity: 1; }
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  opacity: 0.45;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(7,16,30,0.55) 0%, rgba(7,16,30,0.72) 60%, rgba(7,16,30,1) 100%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 800px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(21,101,192,0.1);
  border: 1px solid rgba(21,101,192,0.2);
  border-radius: 100px;
  padding: 6px 14px 6px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.badge-pulse {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--gold-glow); }
  50% { box-shadow: 0 0 0 6px transparent; }
}
.hero__heading {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero__lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #fff;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 580px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero__metrics {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: fit-content;
  padding: 20px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  backdrop-filter: blur(12px);
}
.hero__metric {
  display: flex;
  flex-direction: column;
  padding: 0 24px;
}
.hero__metric:first-child { padding-left: 0; }
.hero__metric strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
  color: var(--t1);
}
.hero__metric small {
  font-size: 0.72rem;
  color: #fff;
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero__metric-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t3);
  z-index: 2;
  text-decoration: none;
  transition: color 0.25s;
  animation: scrollBob 2.5s ease-in-out infinite;
}
.hero__scroll:hover { color: var(--gold); }
.scroll-mouse {
  width: 22px; height: 36px;
  border: 1.5px solid currentColor;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 4px; height: 8px;
  background: currentColor;
  border-radius: 2px;
  animation: scrollDot 2.5s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(10px); opacity: 0; }
}
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─────────────────────────────────────────
   SERVICES
   ───────────────────────────────────────── */
.services {
  padding: 120px 0;
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.svc-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 28px 32px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  cursor: default;
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(21,101,192,0.06) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}
.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(21,101,192,0.5), rgba(56,189,248,0.2), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}
.svc-card:hover { transform: translateY(-6px); background: var(--card-h); }
.svc-card:hover::before { opacity: 1; }
.svc-card:hover::after { opacity: 1; }
.svc-card__num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--t3);
  margin-bottom: 20px;
}
.svc-card__icon {
  width: 60px; height: 60px;
  background: var(--gold-dim);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  transition: all 0.3s var(--ease);
}
.svc-card:hover .svc-card__icon {
  background: rgba(21,101,192,0.25);
  transform: scale(1.05);
}
.svc-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--t1);
}
.svc-card p {
  font-size: 0.88rem;
  color: var(--t2);
  line-height: 1.65;
  margin-bottom: 20px;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.svc-tags li {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--blue);
  background: var(--blue-dim);
  border-radius: 4px;
  padding: 3px 8px;
  text-transform: uppercase;
}
.svc-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap 0.25s;
}
.svc-cta:hover { gap: 8px; }
.svc-cta span { font-size: 1.1em; }

/* ─────────────────────────────────────────
   ABOUT
   ───────────────────────────────────────── */
.about {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21,101,192,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__visual {
  display: flex;
  justify-content: center;
}
.about__globe-wrap {
  position: relative;
  width: 440px; height: 440px;
}
#globeCanvas {
  width: 100%; height: 100%;
  border-radius: 50%;
}
.about__globe-label {
  position: absolute;
  bottom: 40px; right: -20px;
  background: rgba(21,101,192,0.12);
  border: 1px solid rgba(21,101,192,0.3);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  animation: floatLabel 3s ease-in-out infinite;
}
.globe-pin {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes floatLabel {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.about__lead {
  color: var(--t2);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 40px;
}
.pillars { display: flex; flex-direction: column; gap: 24px; }
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: all 0.3s var(--ease);
}
.pillar:hover {
  border-color: var(--border-g);
  background: var(--card-h);
}
.pillar__icon {
  width: 40px; height: 40px;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--t1);
}
.pillar p {
  font-size: 0.84rem;
  color: var(--t2);
  line-height: 1.55;
}

/* ─────────────────────────────────────────
   PROCESS
   ───────────────────────────────────────── */
.process {
  padding: 120px 0;
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.process__track {
  position: relative;
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process__line {
  position: absolute;
  top: 28px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(21,101,192,0.2));
  z-index: 0;
}
.proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.proc-step__dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--border-g);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s var(--ease);
}
.proc-step__dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(21,101,192,0.12);
}
.proc-step:hover .proc-step__dot {
  background: var(--gold-dim);
  border-color: var(--gold);
  box-shadow: 0 0 24px var(--gold-glow);
}
.proc-step__dot span {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--gold);
}
.proc-step__body { display: flex; flex-direction: column; align-items: center; }
.proc-step__icon {
  width: 52px; height: 52px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.proc-step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--t1);
}
.proc-step p {
  font-size: 0.84rem;
  color: var(--t2);
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   STATS
   ───────────────────────────────────────── */
.stats {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.stats__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
}
.stats__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 10% 50%, rgba(21,101,192,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 90% 50%, rgba(56,189,248,0.05) 0%, transparent 60%);
}
.stats__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat-item {
  background: rgba(12, 26, 46, 0.8);
  padding: 48px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
}
.stat-item:hover { background: rgba(21,101,192,0.05); }
.stat-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-item span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--t2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────
   INCOTERMS
   ───────────────────────────────────────── */
.incoterms {
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.incoterms__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.inco-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.inco-tags span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--t2);
  transition: all 0.25s;
}
.inco-tags span:hover {
  border-color: var(--border-g);
  color: var(--gold);
  background: var(--gold-dim);
}

/* ─────────────────────────────────────────
   CONTACT
   ───────────────────────────────────────── */
.contact {
  padding: 120px 0;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact__sub {
  color: var(--t2);
  margin-bottom: 40px;
  font-size: 1rem;
}
.contact__details { display: flex; flex-direction: column; gap: 16px; }
.contact__detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  text-decoration: none;
  transition: all 0.3s var(--ease);
  color: inherit;
}
.contact__detail:hover {
  border-color: var(--border-g);
  background: var(--gold-dim);
  transform: translateX(4px);
}
.detail-icon {
  width: 40px; height: 40px;
  background: rgba(21,101,192,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__detail small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 2px;
}
.contact__detail span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--t1);
}

/* Quote Form */
.quote-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.quote-form { padding: 36px 36px 28px; }
.form-step { display: none; }
.form-step.active { display: block; }
.form-step--success {
  display: none;
  text-align: center;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.form-step--success.active {
  display: flex;
}
.form-step__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 20px;
}
.form-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.fsvc input { display: none; }
.fsvc__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--t2);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-align: center;
}
.fsvc__box svg { flex-shrink: 0; }
.fsvc input:checked + .fsvc__box {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold);
}
.fsvc__box:hover { border-color: var(--border-g); color: var(--t1); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--t2);
  letter-spacing: 0.04em;
}
.req { color: var(--gold); }
.form-btns {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.form-btns .btn:last-child { flex: 1; justify-content: center; }
.form-progress-bar {
  height: 3px;
  background: var(--border);
}
.fpb__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #42A5F5);
  width: 50%;
  transition: width 0.4s var(--ease);
}
.success-ring {
  position: relative;
  width: 80px; height: 80px;
  margin: 0 auto;
}
.success-ring svg { width: 80px; height: 80px; }
.success-circle { animation: drawCircle 0.6s var(--ease) forwards; }
.success-check { animation: drawCheck 0.4s var(--ease) 0.5s forwards; }
@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}
@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}
.form-step--success h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--t1);
}
.form-step--success p {
  color: var(--t2);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding-top: 80px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 64px;
}
.footer__brand .nav__logo { margin-bottom: 20px; }
.footer__brand p {
  font-size: 0.88rem;
  color: var(--t2);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer__socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--t2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  transition: all 0.25s;
}
.footer__socials a:hover {
  border-color: var(--border-g);
  color: var(--gold);
}
.footer__col h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t1);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a {
  font-size: 0.88rem;
  color: var(--t2);
  transition: color 0.2s;
}
.footer__col ul a:hover { color: var(--gold); }
.footer__contact-col p {
  font-size: 0.88rem;
  color: var(--t2);
  line-height: 1.65;
  margin-bottom: 12px;
}
.footer__contact-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--t2);
  margin-bottom: 6px;
  transition: color 0.2s;
}
.footer__contact-col a:hover { color: var(--gold); }
.footer__contact-col small {
  display: block;
  font-size: 0.75rem;
  color: var(--t3);
  margin-top: 8px;
}
a.footer-ci, div.footer-ci {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a.footer-ci:hover, div.footer-ci:hover { color: var(--gold); }
a.footer-ci svg, div.footer-ci svg { flex-shrink: 0; margin-top: 2px; opacity: 0.6; }
a.footer-ci:hover svg, div.footer-ci:hover svg { opacity: 1; }
a.footer-ci small, div.footer-ci small { margin-top: 0; display: inline; }
a.footer-ci p, a.footer-ci span, a.footer-ci small,
div.footer-ci p, div.footer-ci span, div.footer-ci small {
  font-size: 0.88rem;
  color: var(--t2);
  line-height: 1.6;
  transition: color 0.2s;
}
a.footer-ci:hover p, a.footer-ci:hover span, a.footer-ci:hover small,
div.footer-ci:hover p, div.footer-ci:hover span, div.footer-ci:hover small { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom span {
  font-size: 0.8rem;
  color: var(--t3);
}
.footer__bottom-links {
  display: flex;
  gap: 20px;
}
.footer__bottom-links a {
  font-size: 0.8rem;
  color: var(--t3);
  transition: color 0.2s;
}
.footer__bottom-links a:hover { color: var(--t1); }

/* ─────────────────────────────────────────
   CUSTOM CURSOR
   ───────────────────────────────────────── */
.cursor, .cursor-follower {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  transition: transform 0.1s;
}
.cursor-follower {
  width: 32px; height: 32px;
  border: 1px solid rgba(21,101,192,0.4);
  transition: all 0.15s ease;
}

/* ─────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__visual { order: -1; }
  .about__globe-wrap { width: 320px; height: 320px; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process__line { display: none; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero__heading { font-size: clamp(2.4rem, 8vw, 4rem); }
  .hero__metrics {
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px;
  }
  .hero__metric { padding: 0 12px; }
  .hero__metric-sep { display: none; }
  .services__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .contact__inner { gap: 40px; }
  .footer__grid { grid-template-columns: 1fr; }
  .form-services { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .quote-form { padding: 24px 20px 20px; }
  .incoterms__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cursor, .cursor-follower { display: none; }
}
@media (max-width: 480px) {
  .section-title { font-size: 1.8rem; }
  .hero { padding: 100px 0 80px; }
  .stat-item { padding: 32px 20px; }
  .about__globe-wrap { width: 280px; height: 280px; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}
