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

:root {
  --deep-blue: #0a1628;
  --dark-graphite: #1a1f2e;
  --accent-red: #ff3d00;
  --accent-yellow: #ffd600;
  --text-light: #e0e5ee;
  --text-gray: #8b95a5;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--deep-blue);
  color: var(--text-light);
  line-height: 1.6;
}

.cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-bottom: 2px solid var(--accent-red);
}

.cookie-box {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.cookie-line {
  width: 40px;
  height: 2px;
  background: var(--accent-red);
}

.cookie-box p {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
}

.cookie-box a {
  color: var(--accent-yellow);
  text-decoration: none;
}

.cookie-btn {
  background: var(--accent-red);
  color: white;
  border: none;
  padding: 10px 24px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

.mega-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 61, 0, 0.3);
  z-index: 1000;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-globe {
  font-size: 32px;
  color: var(--accent-red);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--text-light);
}

.logo-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--text-gray);
}

.nav-locations {
  display: flex;
  gap: 8px;
}

.location-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-gray);
  padding: 8px 20px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s;
}

.location-btn.active {
  background: var(--accent-red);
  color: white;
  border-color: var(--accent-red);
}

.location-btn:hover {
  border-color: var(--accent-yellow);
}

.nav-contact {
  background: var(--accent-yellow);
  color: var(--deep-blue);
  padding: 10px 24px;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-bottom {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 16px 40px;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.nav-icon {
  color: var(--accent-red);
}

.nav-link:hover {
  color: var(--accent-yellow);
}

.hero-map {
  margin-top: 140px;
  min-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 61, 0, 0.1) 0%,
    transparent 70%
  );
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1200px;
  padding: 0 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 61, 0, 0.2);
  border: 1px solid var(--accent-red);
  padding: 8px 20px;
  margin-bottom: 32px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-content h1 {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.highlight-text {
  color: var(--accent-red);
}

.hero-desc {
  font-size: 20px;
  color: var(--text-gray);
  margin-bottom: 64px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.stat-block {
  text-align: center;
}

.stat-value {
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 11px;
  color: var(--text-gray);
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 16px;
}

.stat-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-yellow));
  margin: 0 auto;
  width: 60%;
}

.hero-routes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.route-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-red), transparent);
  animation: flowLine 3s infinite;
}

.route-1 {
  top: 30%;
  left: 0;
  right: 0;
  width: 100%;
}

.route-2 {
  top: 60%;
  left: 0;
  right: 0;
  width: 100%;
  animation-delay: 1s;
}

.route-3 {
  top: 45%;
  left: 0;
  right: 0;
  width: 100%;
  animation-delay: 2s;
}

@keyframes flowLine {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

.section-header-global {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 40px;
  text-align: center;
}

.header-line {
  width: 80px;
  height: 3px;
  background: var(--accent-red);
  margin: 0 auto 24px;
}

.section-header-global h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.section-header-global p {
  font-size: 18px;
  color: var(--text-gray);
}

.network-section {
  padding: 120px 0;
  background: var(--dark-graphite);
}

.network-map-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
}

.network-map {
  position: relative;
  min-height: 600px;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 61, 0, 0.3);
  padding: 40px;
}

.map-region {
  position: relative;
  height: 100%;
}

.region-label {
  font-size: 32px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.region-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--text-gray);
}

.connection-dots {
  position: relative;
  height: 400px;
}

.dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--accent-yellow);
  border-radius: 50%;
  border: 2px solid var(--deep-blue);
}

.dot.active {
  background: var(--accent-red);
  animation: pulse 2s infinite;
}

.network-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.detail-card {
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--accent-red);
  padding: 32px;
}

.card-icon {
  font-size: 40px;
  margin-bottom: 16px;
  color: var(--accent-yellow);
}

.detail-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.detail-list {
  list-style: none;
}

.detail-list li {
  padding: 10px 0;
  padding-left: 24px;
  position: relative;
  font-size: 14px;
  color: var(--text-gray);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--accent-red);
}

.infrastructure-section {
  padding: 120px 0;
}

.infrastructure-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
}

.infra-card {
  background: var(--dark-graphite);
  border: 2px solid rgba(255, 61, 0, 0.3);
  padding: 32px;
}

.infra-card.large {
  grid-column: span 1;
  grid-row: span 2;
}

.infra-location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--text-gray);
}

.location-pin {
  color: var(--accent-red);
}

.infra-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.infra-specs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-label {
  font-size: 12px;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.spec-value {
  font-weight: 700;
  font-size: 14px;
}

.routes-section {
  padding: 120px 0;
  background: var(--dark-graphite);
}

.routes-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.route-card {
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 214, 0, 0.3);
  padding: 32px;
}

.route-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.route-id {
  background: var(--accent-red);
  color: white;
  padding: 8px 16px;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 1px;
}

.route-header h3 {
  font-size: 24px;
  font-weight: 700;
  flex: 1;
}

.route-status {
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

.route-status.active {
  background: rgba(0, 255, 0, 0.2);
  color: #00ff00;
  border: 1px solid #00ff00;
}

.route-path {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 14px;
  flex-wrap: wrap;
}

.path-point {
  color: var(--text-light);
  font-weight: 600;
}

.path-arrow {
  color: var(--accent-yellow);
  font-size: 18px;
}

.route-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.metric {
  display: flex;
  flex-direction: column;
}

.metric-label {
  font-size: 11px;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.metric-value {
  font-size: 24px;
  font-weight: 900;
  color: var(--accent-yellow);
}

.hubs-section {
  padding: 120px 0;
}

.hubs-world-map {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.world-connections {
  margin-bottom: 60px;
}

.connection-svg {
  width: 100%;
  height: 400px;
}

.connection-line {
  stroke-dasharray: 10 5;
  animation: dash 20s linear infinite;
}

@keyframes dash {
  to {
    stroke-dashoffset: -1000;
  }
}

.hub-point {
  animation: pulse 2s infinite;
}

.hubs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.hub-item {
  background: var(--dark-graphite);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-left: 3px solid transparent;
  transition: border-color 0.3s;
}

.hub-item:hover {
  border-left-color: var(--accent-red);
}

.hub-marker {
  font-size: 32px;
}

.hub-marker.red {
  color: var(--accent-red);
}

.hub-marker.yellow {
  color: var(--accent-yellow);
}

.hub-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.hub-info p {
  font-size: 13px;
  color: var(--text-gray);
}

.tracking-section {
  padding: 120px 0;
  background: var(--dark-graphite);
}

.tracking-dashboard {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.tracking-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.track-stat {
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 61, 0, 0.3);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.stat-icon {
  font-size: 32px;
}

.stat-number {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-text {
  font-size: 12px;
  color: var(--text-gray);
}

.live-shipments {
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 214, 0, 0.3);
  padding: 32px;
}

.live-shipments h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.shipment-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.shipment-id {
  font-family: "Courier New", monospace;
  font-weight: 700;
  color: var(--accent-yellow);
}

.shipment-status {
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.shipment-status.moving {
  background: rgba(255, 61, 0, 0.2);
  color: var(--accent-red);
}

.shipment-status.active {
  background: rgba(0, 255, 0, 0.2);
  color: #00ff00;
}

.contact-section {
  padding: 120px 0;
}

.contact-grid {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.contact-region {
  background: var(--dark-graphite);
  border-left: 3px solid var(--accent-red);
  padding: 32px;
}

.contact-region h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--accent-yellow);
}

.contact-region p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.contact-form-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.contact-form-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}

.global-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.global-form input,
.global-form select,
.global-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px;
  color: var(--text-light);
  font-size: 14px;
  font-family: inherit;
}

.global-form input:focus,
.global-form select:focus,
.global-form textarea:focus {
  outline: none;
  border-color: var(--accent-red);
}

.submit-btn {
  background: var(--accent-red);
  color: white;
  border: none;
  padding: 16px 40px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  align-self: center;
}

.footer {
  background: var(--dark-graphite);
  border-top: 2px solid var(--accent-red);
  padding: 80px 0 32px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand p {
  color: var(--text-gray);
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--accent-yellow);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--accent-red);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-gray);
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

.modal.active {
  display: flex;
}

.modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}

.modal-container {
  position: relative;
  background: var(--dark-graphite);
  border: 2px solid var(--accent-red);
  padding: 48px;
  max-width: 500px;
  text-align: center;
}

.modal-icon {
  font-size: 64px;
  color: var(--accent-yellow);
  margin-bottom: 24px;
}

.modal-container h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.modal-container p {
  color: var(--text-gray);
  margin-bottom: 32px;
  line-height: 1.7;
}

.modal-btn {
  background: var(--accent-red);
  color: white;
  border: none;
  padding: 12px 32px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.image-placeholder {
  background: linear-gradient(
    135deg,
    rgba(255, 61, 0, 0.1) 0%,
    rgba(255, 214, 0, 0.1) 100%
  );
  border: 1px solid rgba(255, 61, 0, 0.3);
  padding: 0;
  text-align: center;
  color: var(--text-gray);
  font-style: italic;
  line-height: 1.8;
  margin-top: 24px;
}

.image-placeholder.small {
  padding: 0;
  font-size: 13px;
}

.image-placeholder.map-visual {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legal-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 200px 40px 100px;
}

.legal-page h1 {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--accent-red);
}

.legal-page .last-updated {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 48px;
}

.legal-page h2 {
  font-size: 32px;
  font-weight: 700;
  margin-top: 64px;
  margin-bottom: 24px;
  padding-top: 32px;
  border-top: 2px solid var(--accent-red);
}

.legal-page h3 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--accent-yellow);
}

.legal-page p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-gray);
}

.legal-page ul {
  list-style: none;
  margin: 24px 0;
}

.legal-page li {
  padding: 12px 0 12px 24px;
  position: relative;
  font-size: 15px;
  color: var(--text-gray);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-page li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--accent-red);
}

.legal-page strong {
  color: var(--text-light);
  font-weight: 600;
}

.legal-page a {
  color: var(--accent-yellow);
  text-decoration: none;
}

@media (max-width: 1024px) {
  .nav-bottom {
    flex-wrap: wrap;
    gap: 24px;
  }

  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .network-map-container,
  .tracking-dashboard {
    grid-template-columns: 1fr;
  }

  .infrastructure-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mega-nav {
    position: relative;
  }

  .hero-map {
    margin-top: 0;
  }

  .nav-top {
    flex-direction: column;
    gap: 20px;
  }

  .nav-bottom {
    display: none;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-stats-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .route-metrics {
    grid-template-columns: 1fr;
  }

  .hubs-list {
    grid-template-columns: 1fr;
  }

  .tracking-stats {
    grid-template-columns: 1fr;
  }

  .shipment-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .legal-page {
    padding: 160px 20px 80px;
  }

  .legal-page h1 {
    font-size: 36px;
  }
}
