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

:root {
  /* Navy cross-brand (Soleuz Group) */
  --navy: #1B3A5C;
  --navy-deep: #0F2440;
  --navy-light: #2A5080;
  /* Naranja Soleuz — Vibrante (logos, favicons, hero highlight, CTAs principales) */
  --orange: #F58220;
  --orange-light: #FFA94D;
  /* Dorado Soleuz — Sofisticado (UI/web sutil: section-tags, links, iconos, hovers) */
  --gold: #D4982A;
  --gold-light: #E8B44E;
  --gold-pale: #FDF5E6;
  --white: #FFFFFF;
  --gray-50: #F8FAFB;
  --gray-100: #F1F4F8;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #64748B;
  --gray-800: #1E293B;
  --radius: 20px;
  --radius-sm: 12px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

/* ─── UTILITY ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: inline-block;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 600px;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.navbar-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.navbar-logo img { height: 42px; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  opacity: 0.7;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  opacity: 1 !important;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--orange) !important; transform: translateY(-1px); }
.nav-login {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  opacity: 1 !important;
  transition: var(--transition);
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
}
.nav-login::after { display: none !important; }
.nav-login:hover { background: var(--orange-light) !important; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(245,130,32,0.3); }

/* ─── LANGUAGE SWITCHER ─── */
.nav-item-lang { display: flex; align-items: center; }
.lang-switcher { display: flex; align-items: center; gap: 2px; }
.lang-opt {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.5;
  padding: 2px 5px;
  transition: var(--transition);
  letter-spacing: 0.04em;
}
.lang-opt:hover { opacity: 0.85; }
.lang-opt.active { opacity: 1; color: var(--gold); }
.lang-sep { color: var(--navy); opacity: 0.3; font-size: 0.8rem; }

/* ─── LOGIN MODAL ─── */
.login-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,36,64,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.login-overlay.active { opacity: 1; visibility: visible; }
.login-modal {
  background: var(--white);
  border-radius: 24px;
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
  transform: translateY(20px) scale(0.97);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}
.login-overlay.active .login-modal { transform: translateY(0) scale(1); }
.login-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.login-close:hover { background: var(--gray-200); }
.login-modal-logo { text-align: center; margin-bottom: 32px; }
.login-modal-logo img { height: 72px; }
.login-modal-logo h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin-top: 16px;
  font-weight: 600;
}
.login-modal-logo p { font-size: 0.85rem; color: var(--gray-400); margin-top: 4px; }
.login-form .form-group { margin-bottom: 20px; }
.login-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.login-form input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  transition: var(--transition);
  background: var(--gray-50);
}
.login-form input:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(245,130,32,0.1);
}
.login-form input::placeholder { color: var(--gray-400); }
.login-submit {
  width: 100%;
  padding: 15px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}
.login-submit:hover { background: var(--orange-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(245,130,32,0.3); }
.login-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  color: var(--gray-400);
  font-size: 0.78rem;
}
.login-divider::before, .login-divider::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }
.login-role-tabs { display: flex; gap: 8px; margin-bottom: 24px; }
.login-role-tab {
  flex: 1;
  padding: 10px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-family: 'Inter', sans-serif;
}
.login-role-tab.active, .login-role-tab:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(245,130,32,0.04);
}
.login-footer { text-align: center; margin-top: 20px; }
.login-footer a { color: var(--orange); font-size: 0.82rem; text-decoration: none; font-weight: 500; }
.login-footer a:hover { text-decoration: underline; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafb 0%, #eef2f7 100%);
}
/* Aurora / mesh gradient sutil con colores de marca (no nubes literales) */
.hero::before {
  content: '';
  position: absolute;
  inset: -10%;
  z-index: 0;
  background:
    radial-gradient(38% 48% at 75% 28%, rgba(245,130,32,0.18) 0%, transparent 62%),
    radial-gradient(42% 52% at 18% 62%, rgba(212,152,42,0.16) 0%, transparent 62%),
    radial-gradient(48% 58% at 62% 88%, rgba(42,80,128,0.14) 0%, transparent 64%),
    radial-gradient(36% 44% at 32% 18%, rgba(27,58,92,0.10) 0%, transparent 60%);
  filter: blur(28px);
  animation: auroraDrift 24s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes auroraDrift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(-2%, 1.5%, 0) scale(1.06); }
  100% { transform: translate3d(2%, -1.5%, 0) scale(1.04); }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; }
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content { padding: 40px 0; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 130, 32, 0.08);
  border: 1px solid rgba(245, 130, 32, 0.15);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 32px;
  letter-spacing: 0.03em;
}
.hero-badge span:first-child { display: inline-block; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.hero h1 .accent { color: var(--orange); }
.hero-description {
  font-size: 1.15rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; align-items: center; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(245,130,32,0.3); }
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-secondary:hover { color: var(--gold); }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.hero-logo-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float 6s ease-in-out infinite;
}
.hero-logo-showcase img {
  width: 340px;
  height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(27,58,92,0.15));
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* ─── BRAND SHOWCASE ─── */
.brand-showcase {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.brand-showcase::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,130,32,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.brand-logo-large {
  width: 200px;
  height: 200px;
  margin: 0 auto 40px;
  animation: float 6s ease-in-out infinite;
}
.brand-logo-large img { width: 100%; height: 100%; object-fit: contain; }
.brand-tagline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.brand-description {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.brand-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-400);
  font-size: 0.85rem;
  font-weight: 500;
}
.trust-item svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--navy);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,130,32,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stat-item h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.stat-item h3 .stat-accent { color: var(--gold); }
.stat-item p { font-size: 0.85rem; color: var(--gray-400); font-weight: 400; letter-spacing: 0.03em; }

/* ─── SERVICES ─── */
.services { padding: 120px 0; background: var(--white); }
.services-header { text-align: center; margin-bottom: 72px; }
.services-header .section-subtitle { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 420px;
  cursor: pointer;
  group: true;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-card:hover img { transform: scale(1.08); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(15,36,64,0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: var(--transition);
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(180deg, transparent 10%, rgba(15,36,64,0.95) 100%);
}
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.1); }
.service-icon svg { width: 24px; height: 24px; color: white; }
.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  opacity: 0;
}
.service-card:hover p { max-height: 100px; opacity: 1; }

/* ─── PLATFORM ─── */
.platform {
  padding: 120px 0;
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}
.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.platform-features { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.platform-feature {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: default;
}
.platform-feature:hover { background: var(--white); box-shadow: 0 8px 32px rgba(27,58,92,0.06); }
.feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 24px; height: 24px; color: white; }
.feature-text h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.feature-text p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; }

.platform-visual { position: relative; }
.dashboard-mockup {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 40px 80px rgba(27,58,92,0.1), 0 0 0 1px rgba(0,0,0,0.04);
  padding: 24px;
  position: relative;
}
.dashboard-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #FF5F57; }
.dot-yellow { background: #FEBC2E; }
.dot-green { background: #28C840; }
.dashboard-url {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-400);
  background: var(--gray-100);
  padding: 6px 16px;
  border-radius: 8px;
  margin-left: 12px;
}
.dashboard-body { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dash-card {
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.dash-card.wide { grid-column: span 2; }
.dash-card-title { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-400); margin-bottom: 12px; font-weight: 600; }
.dash-card-value { font-family: 'Space Grotesk', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--navy); }
.dash-card-change { font-size: 0.75rem; color: #10B981; font-weight: 600; margin-left: 8px; }
.dash-bar-chart { display: flex; align-items: flex-end; gap: 6px; height: 80px; margin-top: 16px; }
.dash-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
  border-radius: 4px 4px 0 0;
  min-height: 8px;
  transition: height 0.6s ease;
}
.dash-bar:nth-child(1) { height: 45%; }
.dash-bar:nth-child(2) { height: 68%; }
.dash-bar:nth-child(3) { height: 82%; }
.dash-bar:nth-child(4) { height: 55%; }
.dash-bar:nth-child(5) { height: 95%; }
.dash-bar:nth-child(6) { height: 72%; }
.dash-bar:nth-child(7) { height: 88%; }
.dash-bar:nth-child(8) { height: 60%; }
.dash-bar-navy { background: linear-gradient(180deg, var(--navy), #2d4470); }
.dash-bar-navy:nth-child(1) { height: 60%; }
.dash-bar-navy:nth-child(2) { height: 40%; }
.dash-bar-navy:nth-child(3) { height: 75%; }
.dash-bar-navy:nth-child(4) { height: 90%; }
.dash-bar-navy:nth-child(5) { height: 50%; }
.dash-bar-navy:nth-child(6) { height: 85%; }

.dash-progress-ring {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}
.ring-svg { width: 64px; height: 64px; transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: var(--gray-200); stroke-width: 5; }
.ring-fill { fill: none; stroke: var(--gold); stroke-width: 5; stroke-linecap: round; stroke-dasharray: 157; stroke-dashoffset: 22; }
.ring-text { font-size: 0.85rem; color: var(--gray-600); line-height: 1.5; }
.ring-text strong { color: var(--navy); font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; display: block; }

.dash-shipment-list { margin-top: 8px; }
.dash-shipment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.8rem;
}
.dash-shipment:last-child { border: none; }
.shipment-id { font-weight: 600; color: var(--navy); font-family: 'Space Grotesk', sans-serif; }
.shipment-route { color: var(--gray-600); }
.shipment-status {
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
}
.status-transit { background: rgba(212,152,42,0.1); color: var(--gold); }
.status-customs { background: rgba(99,102,241,0.1); color: #6366F1; }
.status-delivered { background: rgba(16,185,129,0.1); color: #10B981; }

/* ─── PROCESS ─── */
.process { padding: 120px 0; background: var(--white); }
.process-header { text-align: center; margin-bottom: 80px; }
.process-header .section-subtitle { margin: 0 auto; }
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; padding: 0 20px; }
.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
}
.process-step:hover .step-number {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(245,130,32,0.3);
}
.process-step h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.process-step p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }

/* ─── MULTIMODAL ─── */
.multimodal {
  padding: 120px 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.multimodal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(245,130,32,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(245,130,32,0.05) 0%, transparent 50%);
}
.multimodal .container { position: relative; z-index: 1; }
.multimodal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.multimodal-content .section-title { color: var(--white); }
.multimodal-content .section-subtitle { color: var(--gray-400); }
.multimodal-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}
.multimodal-image img { width: 100%; display: block; }
.transport-modes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.transport-mode {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.transport-mode:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.transport-mode svg { width: 32px; height: 32px; color: var(--gold); margin-bottom: 12px; }
.transport-mode h5 { font-size: 0.85rem; color: var(--white); font-weight: 600; margin-bottom: 4px; }
.transport-mode p { font-size: 0.75rem; color: var(--gray-400); }

/* ─── TESTIMONIALS ─── */
.testimonials { padding: 120px 0; background: var(--gray-50); }
.testimonials-header { text-align: center; margin-bottom: 72px; }
.testimonials-header .section-subtitle { margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 4px 24px rgba(27,58,92,0.04);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(27,58,92,0.08);
}
.testimonial-stars { color: var(--orange); font-size: 0.9rem; margin-bottom: 20px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 28px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
}
.author-info h5 { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.author-info p { font-size: 0.78rem; color: var(--gray-400); }

/* ─── CTA ─── */
.cta {
  padding: 120px 0;
  background: var(--white);
  text-align: center;
}
.cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 32px;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,130,32,0.2) 0%, transparent 60%);
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,130,32,0.1) 0%, transparent 60%);
}
.cta-content { position: relative; z-index: 1; }
.cta-content .section-title { color: var(--white); margin-bottom: 16px; }
.cta-content p { color: var(--gray-400); font-size: 1.1rem; margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--navy);
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,255,255,0.2); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ─── FOOTER ─── */
.footer {
  background: var(--navy-deep);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand p { color: var(--gray-400); font-size: 0.9rem; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-brand img { height: 48px; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; font-weight: 600; margin-bottom: 20px; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--gray-400); text-decoration: none; font-size: 0.88rem; transition: var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { color: var(--gray-400); font-size: 0.8rem; }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.85rem;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── MOBILE MENU ─── */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: var(--transition); border-radius: 2px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-description { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-grid { grid-template-columns: 1fr; }
  .multimodal-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    padding: 24px;
    gap: 20px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    border-radius: 0 0 20px 20px;
  }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-timeline::before { display: none; }
  .cta-box { padding: 48px 28px; border-radius: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
