/* ============================================
   HUTS INDUSTRIES — LANDING PAGE STYLES
   ============================================ */

:root {
  --bg: #060a14;
  --bg-alt: #0a0f1e;
  --panel: #0e1526;
  --panel-2: #111a2e;
  --border: rgba(255,255,255,0.08);
  --border-soft: rgba(255,255,255,0.06);
  --text: #ffffff;
  --text-dim: #a9b2c6;
  --text-faint: #6b7488;
  --blue: #3b82f6;
  --blue-light: #60a5fa;
  --blue-dark: #1e3a8a;
  --green: #22c55e;
  --green-light: #4ade80;
  --amber: #f59e0b;
  --radius: 14px;
  --radius-sm: 8px;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.text-gradient {
  background: linear-gradient(90deg, var(--blue-light), var(--green-light), var(--blue-light));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 6s ease-in-out infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 12px;
}

.arrow { display: inline-block; transition: transform 0.25s var(--ease); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14.5px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), #2563eb);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(59,130,246,0.5);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s var(--ease);
}
.btn-primary:hover::before { left: 130%; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -4px rgba(59,130,246,0.55);
}
.btn-primary:hover .arrow { transform: translateX(4px); }


.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--blue-light);
  color: var(--blue-light);
  transform: translateY(-2px);
}
.btn-outline:hover .arrow { transform: translateX(4px); }

.btn-sm { padding: 10px 18px; font-size: 13.5px; }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(6,10,20,0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(6,10,20,0.92);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text small {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--text-faint);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  margin: 0 auto;
}
.nav-desktop a { position: relative; padding: 6px 0; transition: color 0.25s; }
.nav-desktop a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--blue-light);
  transition: width 0.3s var(--ease);
}
.nav-desktop a:hover, .nav-desktop a.active { color: var(--text); }
.nav-desktop a:hover::after, .nav-desktop a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 22px; height: 2px; background: #fff;
  border-radius: 2px; transition: all 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 150px 0 60px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -200px; right: -200px;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(59,130,246,0.16), transparent 65%);
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite;
}
.hero-bg-glow::after {
  content: '';
  position: absolute;
  top: 40%; left: -30%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(34,197,94,0.1), transparent 65%);
  animation: driftGlow 14s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
@keyframes driftGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(60px, -40px); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  font-size: clamp(34px, 4.2vw, 52px);
  margin-bottom: 22px;
}

.hero-sub {
  color: var(--text-dim);
  font-size: 16.5px;
  max-width: 480px;
  margin-bottom: 30px;
}

.hero-actions { display: flex; gap: 14px; margin-bottom: 28px; flex-wrap: wrap; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-dim);
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 9px 16px;
  border-radius: 999px;
}
.flag-icon { width: 18px; height: 13px; border-radius: 2px; object-fit: cover; }

/* --- Hero Visual (Globe) --- */
.hero-visual { position: relative; min-height: 420px; }

.globe-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.globe {
  width: 460px; height: 460px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(96,165,250,0.5), transparent 45%),
    radial-gradient(circle at 65% 70%, rgba(245,158,11,0.18), transparent 40%),
    radial-gradient(circle at 50% 50%, #16305c, #060a14 72%);
  box-shadow:
    inset -30px -30px 80px rgba(0,0,0,0.6),
    inset 20px 20px 60px rgba(96,165,250,0.15),
    0 0 90px rgba(59,130,246,0.25);
  position: relative;
  animation: globeGlowPulse 6s ease-in-out infinite;
}
.globe:hover {
  box-shadow:
    inset -30px -30px 80px rgba(0,0,0,0.6),
    inset 20px 20px 60px rgba(96,165,250,0.22),
    0 0 120px rgba(59,130,246,0.35);
}
@keyframes globeGlowPulse {
  0%, 100% {
    box-shadow:
      inset -30px -30px 80px rgba(0,0,0,0.6),
      inset 20px 20px 60px rgba(96,165,250,0.15),
      0 0 90px rgba(59,130,246,0.25);
  }
  50% {
    box-shadow:
      inset -30px -30px 80px rgba(0,0,0,0.6),
      inset 20px 20px 60px rgba(96,165,250,0.22),
      0 0 130px rgba(59,130,246,0.4);
  }
}
.globe::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.9) 1px, transparent 1.4px),
    radial-gradient(circle, rgba(255,255,255,0.5) 1px, transparent 1.4px);
  background-size: 34px 34px, 22px 22px;
  background-position: 0 0, 12px 18px;
  opacity: 0.35;
  mix-blend-mode: screen;
  animation: rotateTexture 50s linear infinite;
}
@keyframes rotateTexture {
  from { background-position: 0 0, 12px 18px; }
  to { background-position: 460px 0, 472px 18px; }
}

.orbit-lines { position: absolute; inset: 0; width: 100%; height: 100%; animation: spinSlow 30s linear infinite; transform-origin: center; }
.orbit-path {
  fill: none;
  stroke: rgba(96,165,250,0.45);
  stroke-width: 1.2;
  stroke-dasharray: 6 6;
  animation: dashMove 6s linear infinite;
}
.orbit-2 { stroke: rgba(245,158,11,0.35); animation-duration: 9s; animation-direction: reverse; }
@keyframes dashMove { to { stroke-dashoffset: -120; } }
@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.ping {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 12px 2px rgba(96,165,250,0.8);
}
.ping::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: inherit;
  animation: pingRipple 2.6s ease-out infinite;
}
.ping-1 { top: 28%; left: 38%; }
.ping-2 { top: 55%; left: 62%; background: var(--amber); }
.ping-2::after { animation-delay: 0.8s; }
.ping-3 { top: 68%; left: 44%; }
.ping-3::after { animation-delay: 1.5s; }
@keyframes pingRipple {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(5); opacity: 0; }
}

/* --- Status Card (static content, no "today" counters, no live claims) --- */
.status-card {
  position: relative;
  z-index: 3;
  width: 300px;
  background: rgba(14,21,38,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-left: auto;
  margin-top: 40px;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6);
  animation: floatCard 5s ease-in-out infinite;
  transition: box-shadow 0.4s var(--ease);
}
.status-card:hover {
  box-shadow: 0 26px 70px -20px rgba(0,0,0,0.7);
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.status-head {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--text);
  margin-bottom: 16px;
}
.status-badge {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(59,130,246,0.14);
  border: 1px solid rgba(59,130,246,0.3);
  padding: 4px 10px;
  border-radius: 999px;
}

.status-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 16px; }
.status-list li { display: flex; align-items: center; gap: 10px; }
.stat-icon {
  width: 30px; height: 30px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(59,130,246,0.12);
  border-radius: 8px;
  font-size: 13px;
}
.stat-text { display: flex; flex-direction: column; flex: 1; }
.stat-text small { font-size: 10.5px; color: var(--text-faint); }
.stat-text strong { font-size: 14px; font-weight: 700; }

.status-link { font-size: 13px; font-weight: 600; color: var(--blue-light); display: inline-flex; gap: 6px; align-items: center; }
.status-link:hover .arrow { transform: translateX(4px); }

/* --- Stats Strip --- */
.stats-strip {
  margin-top: 56px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding: 26px 10px;
}
.stat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0 14px;
  border-right: 1px solid var(--border-soft);
}
.stat-item:last-child { border-right: none; }
.stat-item-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(59,130,246,0.12);
  border-radius: 10px;
  font-size: 16px;
  animation: iconFloat 3.6s ease-in-out infinite;
}
.stat-item:nth-child(2) .stat-item-icon { animation-delay: 0.3s; }
.stat-item:nth-child(3) .stat-item-icon { animation-delay: 0.6s; }
.stat-item:nth-child(4) .stat-item-icon { animation-delay: 0.9s; }
.stat-item:nth-child(5) .stat-item-icon { animation-delay: 1.2s; }
.stat-item:nth-child(6) .stat-item-icon { animation-delay: 1.5s; }
@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.stat-item div { display: flex; flex-direction: column; }
.stat-item strong { font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.stat-item small { font-size: 12.5px; color: var(--text-dim); margin-top: 2px; }
.stat-item em { font-style: normal; font-size: 11px; color: var(--text-faint); margin-top: 3px; }

/* ============ SECTION SHARED ============ */
section { padding: 100px 0; position: relative; }
.about, .global { background: var(--bg-alt); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(28px, 3vw, 38px); }
.section-head-sub { max-width: 380px; color: var(--text-dim); font-size: 15px; }

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-copy h2 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 20px; }
.about-copy p { color: var(--text-dim); font-size: 15.5px; margin-bottom: 14px; max-width: 480px; }

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 30px 0 34px;
}
.value-item { display: flex; gap: 12px; align-items: flex-start; }
.value-icon {
  width: 34px; height: 34px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(59,130,246,0.12);
  color: var(--blue-light);
  border-radius: 8px;
  font-size: 14px;
}
.value-item strong { display: block; font-size: 14.5px; font-weight: 600; margin-bottom: 2px; }
.value-item small { color: var(--text-faint); font-size: 12.5px; }

.about-visual { position: relative; }
.about-img {
  width: 100%;
  aspect-ratio: 4/3.1;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.55);
  background: #050b1a;
}
.city-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.win-flicker { animation: winFlicker 4s ease-in-out infinite; }
@keyframes winFlicker {
  0%, 100% { opacity: 0.85; }
  45% { opacity: 0.85; }
  50% { opacity: 0.25; }
  55% { opacity: 0.85; }
}
.trail {
  stroke-dasharray: 140 900;
  stroke-dashoffset: 0;
  filter: drop-shadow(0 0 3px currentColor);
}
.trail-1 { animation: trailMove 4.5s linear infinite; }
.trail-2 { animation: trailMove 6s linear infinite reverse; }
@keyframes trailMove {
  to { stroke-dashoffset: -1040; }
}

.about-card {
  position: absolute;
  left: 24px; bottom: -30px;
  width: calc(100% - 48px);
  max-width: 380px;
  background: rgba(14,21,38,0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.6);
}
.about-card strong { display: block; font-size: 16px; margin-bottom: 8px; }
.about-card p { color: var(--text-dim); font-size: 13.5px; margin-bottom: 14px; }
.link-arrow { color: var(--blue-light); font-weight: 600; font-size: 13.5px; display: inline-flex; align-items: center; gap: 6px; }
.link-arrow:hover .arrow { transform: translateX(4px); }

/* ============ BRANDS ============ */
.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 26px;
}
.brand-card {
  border-radius: var(--radius);
  padding: 34px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.brand-card:hover { transform: translateY(-6px); }

.brand-blue {
  background: linear-gradient(160deg, rgba(59,130,246,0.14), rgba(14,21,38,0.4));
}
.brand-blue:hover { box-shadow: 0 24px 60px -20px rgba(59,130,246,0.35); border-color: rgba(59,130,246,0.4); }

.brand-green {
  background: linear-gradient(160deg, rgba(34,197,94,0.14), rgba(14,21,38,0.4));
}
.brand-green:hover { box-shadow: 0 24px 60px -20px rgba(34,197,94,0.35); border-color: rgba(34,197,94,0.4); }

.brand-purple {
  background: linear-gradient(160deg, rgba(168,85,247,0.14), rgba(14,21,38,0.4));
}
.brand-purple:hover { box-shadow: 0 24px 60px -20px rgba(168,85,247,0.35); border-color: rgba(168,85,247,0.4); }

.brand-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.brand-mark {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  background: rgba(59,130,246,0.18);
  color: var(--blue-light);
  animation: markGlow 3s ease-in-out infinite;
}
.brand-mark.shield { background: rgba(34,197,94,0.18); color: var(--green-light); font-size: 20px; animation: markGlowGreen 3s ease-in-out infinite; }
.brand-mark.puzzle { background: rgba(168,85,247,0.18); color: #c084fc; font-size: 20px; animation: markGlowPurple 3s ease-in-out infinite; }
@keyframes markGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59,130,246,0); }
  50% { box-shadow: 0 0 18px 2px rgba(59,130,246,0.35); }
}
@keyframes markGlowGreen {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
  50% { box-shadow: 0 0 18px 2px rgba(34,197,94,0.35); }
}
@keyframes markGlowPurple {
  0%, 100% { box-shadow: 0 0 0 0 rgba(168,85,247,0); }
  50% { box-shadow: 0 0 18px 2px rgba(168,85,247,0.35); }
}
.brand-card-head h3 { font-size: 21px; }
.brand-blue h3 { color: var(--blue-light); }
.brand-green h3 { color: var(--green-light); }
.brand-purple h3 { color: #c084fc; }

.brand-card > p { color: var(--text-dim); font-size: 14px; margin-bottom: 22px; }

.brand-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 26px;
  font-size: 13.5px;
  color: var(--text-dim);
}
.brand-blue .brand-features li::marker { color: var(--blue-light); }
.brand-green .brand-features li { color: var(--text-dim); }

.brand-blue .link-arrow { color: var(--blue-light); }
.brand-green .link-arrow { color: var(--green-light); }
.brand-purple .link-arrow { color: #c084fc; }

/* ============ WHAT WE DO ============ */
.what-we-do h2 { font-size: clamp(28px, 3vw, 38px); margin: 8px 0 44px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59,130,246,0.4);
  background: rgba(59,130,246,0.06);
}
.service-icon {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(59,130,246,0.12);
  color: var(--blue-light);
  font-size: 20px;
  margin-bottom: 18px;
  transition: transform 0.3s var(--ease);
  animation: iconPulse 4s ease-in-out infinite;
}
.service-card:nth-child(2) .service-icon { animation-delay: 0.4s; }
.service-card:nth-child(3) .service-icon { animation-delay: 0.8s; }
.service-card:nth-child(4) .service-icon { animation-delay: 1.2s; }
.service-card:nth-child(5) .service-icon { animation-delay: 1.6s; }
@keyframes iconPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59,130,246,0); }
  50% { box-shadow: 0 0 16px 3px rgba(59,130,246,0.3); }
}
.service-card:hover .service-icon { transform: scale(1.15) rotate(-6deg); }
.service-card h3 { font-size: 16px; margin-bottom: 8px; }
.service-card p { font-size: 13px; color: var(--text-dim); }

/* ============ GLOBAL PRESENCE ============ */
.global-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
}
.global-copy h2 { font-size: clamp(28px, 3vw, 38px); margin-bottom: 16px; }
.global-copy p { color: var(--text-dim); font-size: 15px; margin-bottom: 30px; max-width: 380px; }
.global-stats { display: flex; gap: 34px; }
.global-stats strong { display: block; font-family: var(--font-display); font-size: 26px; color: var(--blue-light); }
.global-stats small { color: var(--text-dim); font-size: 12.5px; }

.global-map {
  position: relative;
  min-height: 340px;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  background: radial-gradient(ellipse at center, rgba(59,130,246,0.08), transparent 70%);
  padding: 32px 28px 70px;
}
.region-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.region-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  font-size: 13.5px;
  color: var(--text-dim);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.region-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(59,130,246,0.4);
  background: rgba(59,130,246,0.06);
  color: var(--text);
}
.region-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 6px 2px rgba(96,165,250,0.6);
  flex-shrink: 0;
}
.map-btn { position: absolute; right: 16px; bottom: 16px; z-index: 2; }

/* ============ JOURNEY / TIMELINE ============ */
.journey h2 { font-size: clamp(28px, 3vw, 38px); margin: 8px 0 60px; }

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.timeline-line {
  position: absolute;
  top: 20px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--border) 60%, transparent);
}
.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.timeline-dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--panel);
  border: 2px solid var(--border);
  font-size: 15px;
  color: var(--text-faint);
}
.timeline-dot.filled {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-color: var(--blue);
  color: #fff;
}
.timeline-dot.active {
  background: linear-gradient(135deg, var(--green), #15803d);
  border-color: var(--green);
  box-shadow: 0 0 0 6px rgba(34,197,94,0.15);
  animation: dotPulse 2.6s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(34,197,94,0.15); }
  50% { box-shadow: 0 0 0 11px rgba(34,197,94,0.06); }
}
.timeline-item strong { font-family: var(--font-display); font-size: 15px; }
.timeline-item small { color: var(--text-faint); font-size: 12px; max-width: 140px; }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(120deg, #0c1c3d, #0a1428 60%);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 70px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-inner h2 { font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 8px; }
.cta-inner p { color: var(--text-dim); font-size: 15px; }

/* ============ FOOTER ============ */
.site-footer { background: var(--bg-alt); padding-top: 70px; border-top: 1px solid var(--border-soft); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border-soft);
}
.footer-brand p { color: var(--text-faint); font-size: 13.5px; margin: 16px 0 20px; max-width: 280px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-dim);
  transition: all 0.25s var(--ease);
}
.socials a:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-3px); }

.footer-col h4 { font-size: 14px; margin-bottom: 18px; color: var(--text); }
.footer-col { display: flex; flex-direction: column; gap: 12px; font-size: 13.5px; }
.footer-col a { color: var(--text-faint); transition: color 0.2s; }
.footer-col a:hover { color: var(--blue-light); }
.footer-address { color: var(--text-faint); font-size: 13.5px; }
.footer-cta { margin-top: 4px; width: fit-content; }

.footer-bottom {
  padding: 22px 0;
  font-size: 12.5px;
  color: var(--text-faint);
  text-align: center;
}

/* ============ SCROLL TOP ============ */
.scroll-top {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
  z-index: 150;
  box-shadow: 0 10px 30px -8px rgba(59,130,246,0.6);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px); }

/* ============ SCROLL REVEAL ============ */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-up.in-view { opacity: 1; transform: translateY(0); }
.delay-1.in-view { transition-delay: 0.1s; }
.delay-2.in-view { transition-delay: 0.2s; }
.delay-3.in-view { transition-delay: 0.3s; }
.delay-4.in-view { transition-delay: 0.4s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .stats-strip { grid-template-columns: repeat(3, 1fr); row-gap: 24px; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-soft); padding-bottom: 16px; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .brand-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-desktop {
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(6,10,20,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
    margin: 0;
  }
  .nav-desktop.mobile-open { max-height: 480px; }
  .nav-desktop a { width: 100%; padding: 16px 24px; border-bottom: 1px solid var(--border-soft); }
  .nav-desktop a::after { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 340px; margin-top: 20px; }
  .globe { width: 320px; height: 320px; }
  .status-card { width: 100%; max-width: 320px; }
  .about-grid, .global-grid { grid-template-columns: 1fr; }
  .about-card { position: static; margin-top: -40px; width: 90%; }
  .about-visual { padding-bottom: 20px; }
  .brand-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(3, 1fr); row-gap: 30px; }
  .timeline-line { display: none; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .brand-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
