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

:root {
  --bg: #0A0807;
  --surface: #131110;
  --surface2: #1C1917;
  --accent: #FF8C42;
  --accent2: #E8445A;
  --accent3: #FFD166;
  --text: #F5F0EB;
  --text-muted: #9C9590;
  --border: rgba(255,255,255,0.06);
  --glow: rgba(255,140,66,0.15);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Quicksand', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── NOISE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ─── GRID BACKGROUND ─── */
.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

/* ─── AURORA BLOBS ─── */
.aurora {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}
.aurora-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: float1 18s ease-in-out infinite;
}
.aurora-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--accent2) 0%, transparent 70%);
  bottom: -150px; left: -100px;
  animation: float2 22s ease-in-out infinite;
}
.aurora-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--accent3) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: float3 15s ease-in-out infinite;
}

@keyframes float1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-80px,60px)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(60px,-80px)} }
@keyframes float3 { 0%,100%{transform:translate(-50%,-50%) scale(1)} 50%{transform:translate(-40%,-60%) scale(1.2)} }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  background: rgba(10,8,7,0.7);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.logo-searchbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px 6px 10px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  position: relative;
}
.logo-cursor {
  width: 2px;
  height: 16px;
  background: var(--bg);
  border-radius: 1px;
  animation: blink-cursor 1s step-end infinite;
}
@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.logo span { color: var(--accent); }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--bg) !important;
  font-weight: 700 !important;
  border-radius: 50px;
  transition: transform 0.3s, box-shadow 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 30px rgba(255,140,66,0.3) !important;
  color: var(--bg) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: 0.3s;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 40px 100px;
  z-index: 1;
}

.hero-content { max-width: 900px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255,140,66,0.08);
  border: 1px solid rgba(255,140,66,0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
}
h1 .gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 60px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--bg);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255,140,66,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(255,140,66,0.05);
  transform: translateY(-3px);
}

/* ─── FLOATING GLOBE ─── */
.globe-container {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  opacity: 0.08;
  pointer-events: none;
  z-index: -1;
}
.globe {
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 1px solid var(--accent);
  animation: spin 60s linear infinite;
  position: relative;
}
.globe::before, .globe::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--accent);
}
.globe::before {
  inset: 15%;
  animation: spin 40s linear infinite reverse;
}
.globe::after {
  inset: 35%;
  animation: spin 25s linear infinite;
}
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255,140,66,0.3);
}
.orbit-ring:nth-child(1) { inset: 5%; transform: rotateX(60deg); }
.orbit-ring:nth-child(2) { inset: 20%; transform: rotateX(60deg) rotateY(30deg); }
.orbit-ring:nth-child(3) { inset: -5%; transform: rotateX(75deg) rotateY(-20deg); }

@keyframes spin { to { transform: rotate(360deg); } }

/* ─── STATS TICKER ─── */
.stats-ticker {
  position: relative;
  z-index: 1;
  padding: 0 40px;
  margin-top: -40px;
  margin-bottom: 32px;
}
.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-radius: 20px;
}
.stat-card {
  background: var(--surface);
  padding: 44px 32px;
  text-align: center;
  transition: background 0.3s;
  border-radius: 16px;
  border: 1px solid var(--border);
}
.stat-card:hover { background: var(--surface2); }
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── SECTIONS ─── */
section {
  position: relative;
  z-index: 1;
  padding: 120px 40px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--accent);
}

h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.7;
}

/* ─── SERVICES ─── */
.services-grid {
  max-width: 1200px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: linear-gradient(135deg, rgba(19,17,16,0.8), rgba(28,25,23,0.6));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.34,1.56,0.64,1);
  cursor: default;
  backdrop-filter: blur(10px);
  text-align: center;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,140,66,0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(255,140,66,0.3);
  box-shadow: 0 30px 80px rgba(255,140,66,0.15), 0 0 120px rgba(255,140,66,0.08), inset 0 1px 0 rgba(255,255,255,0.1);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 80px; height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 32px;
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.service-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}
.service-card:hover .service-icon {
  transform: translateY(-6px) scale(1.12);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 12px 30px rgba(255,140,66,0.15);
}
.service-card:hover .service-icon::before {
  opacity: 1;
}
.service-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
  transition: filter 0.4s, transform 0.4s;
}
.service-card:hover .service-icon img {
  filter: drop-shadow(0 4px 12px rgba(255,140,66,0.3));
  transform: scale(1.1);
}
.si-1 { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.si-2 { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.si-3 { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.si-4 { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.si-5 { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.si-6 { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }

.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s;
}
.service-card:hover h3 {
  -webkit-text-fill-color: var(--text);
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  transition: color 0.4s;
}
.service-card:hover p {
  color: rgba(245,240,235,0.85);
}
.service-card .service-icon {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.service-card:hover .service-icon {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 12px 30px rgba(255,140,66,0.15);
}

/* ─── MARKETS / GLOBE SECTION ─── */
.markets-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.markets-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.world-map-visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.map-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,140,66,0.15);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: radar 4s ease-in-out infinite;
}
.map-circle:nth-child(1) { width: 80%; height: 80%; animation-delay: 0s; }
.map-circle:nth-child(2) { width: 60%; height: 60%; animation-delay: 0.5s; }
.map-circle:nth-child(3) { width: 40%; height: 40%; animation-delay: 1s; }
.map-circle:nth-child(4) {
  width: 16px; height: 16px;
  background: var(--accent);
  border: none;
  animation: pulse-center 2s infinite;
  box-shadow: 0 0 30px var(--accent);
}

@keyframes radar {
  0%, 100% { opacity: 0.3; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%,-50%) scale(1.05); }
}
@keyframes pulse-center {
  0%, 100% { transform: translate(-50%,-50%) scale(1); box-shadow: 0 0 30px var(--accent); }
  50% { transform: translate(-50%,-50%) scale(1.3); box-shadow: 0 0 60px var(--accent); }
}

/* Dots on the map */
.map-dot {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--accent2);
  border-radius: 50%;
  animation: blink-dot 3s infinite;
}
.map-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--accent2);
  animation: ripple-out 2s infinite;
}
@keyframes blink-dot {
  0%,100% { opacity: 0.6; } 50% { opacity: 1; }
}
@keyframes ripple-out {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.5); opacity: 0; }
}
.map-dot:nth-child(5) { top: 25%; left: 55%; animation-delay: 0.2s; }
.map-dot:nth-child(6) { top: 35%; left: 30%; animation-delay: 0.7s; }
.map-dot:nth-child(7) { top: 60%; left: 70%; animation-delay: 1.2s; }
.map-dot:nth-child(8) { top: 45%; left: 45%; animation-delay: 0.4s; }
.map-dot:nth-child(9) { top: 20%; left: 72%; animation-delay: 0.9s; }
.map-dot:nth-child(10) { top: 70%; left: 35%; animation-delay: 1.5s; }
.map-dot:nth-child(11) { top: 55%; left: 20%; animation-delay: 0.1s; }
.map-dot:nth-child(12) { top: 30%; left: 80%; animation-delay: 1.8s; }

.region-tags {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.region-tag {
  padding: 10px 16px;
  background: rgba(255,140,66,0.06);
  border: 1px solid rgba(255,140,66,0.15);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--accent);
  transition: all 0.3s;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.region-tag:hover {
  background: rgba(255,140,66,0.12);
  transform: translateY(-2px);
}

/* ─── PROCESS ─── */
.process-grid {
  max-width: 1000px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3), var(--accent));
  opacity: 0.3;
}

.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.step-number {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  transition: all 0.3s;
}
.process-step:hover .step-number {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 30px rgba(255,140,66,0.4);
}
.process-step h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.process-step p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ─── TESTIMONIALS ─── */
.slider-wrapper {
  max-width: 1200px;
  margin: 60px auto 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.slider-viewport {
  overflow: hidden;
  flex: 1;
}
.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial-card {
  width: calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
  margin: 0 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  transition: border-color 0.3s, transform 0.3s;
  box-sizing: border-box;
  flex-shrink: 0;
}
.testimonial-card:hover {
  border-color: rgba(255,140,66,0.2);
  transform: translateY(-4px);
}
.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
  z-index: 2;
}
.slider-arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255,140,66,0.08);
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.slider-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}
.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.star { color: #FFD166; }
.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--bg);
  object-fit: cover;
  flex-shrink: 0;
}
.author-info strong {
  display: block;
  font-size: 0.9rem;
}
.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── MARQUEE ─── */
.marquee-section {
  padding: 40px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  z-index: 1;
  position: relative;
}
.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  opacity: 0.5;
}
.marquee-item .sep {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── CTA ─── */
.cta-section {
  text-align: center;
}
.cta-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 60px;
  background: linear-gradient(135deg, rgba(255,140,66,0.06), rgba(232,68,90,0.06), rgba(255,209,102,0.06));
  border: 1px solid rgba(255,140,66,0.15);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255,140,66,0.05), transparent, rgba(232,68,90,0.05), transparent);
  animation: cta-spin 10s linear infinite;
}
@keyframes cta-spin { to { transform: rotate(360deg); } }

.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { margin-bottom: 16px; }
.cta-box p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

/* ─── FOOTER ─── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 60px 40px 30px;
  background: var(--surface);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: var(--text);
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--accent); }
.social-links {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
  align-items: center;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
  margin-bottom: 0;
}
.social-links a.social-facebook { background: #1877F2; border-color: #1877F2; }
.social-links a.social-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: #e6683c; }
.social-links a.social-linkedin { background: #0A66C2; border-color: #0A66C2; }
.social-links a.social-x { background: #000000; border-color: #333; }
.social-links a svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}
.social-links a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.social-links a:hover {
  transform: translateY(-2px);
  filter: brightness(1.2);
  border-color: rgba(255,255,255,0.3);
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}
.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-bottom a:hover {
  color: var(--accent);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .markets-content { grid-template-columns: 1fr; gap: 40px; }
  .world-map-visual { max-width: 400px; margin: 0 auto; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #0A0807;
    padding: 12px 24px 24px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  }
  .nav-links.show {
    display: flex;
  }
  .nav-links a {
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
    text-align: center;
  }
  .nav-links a.nav-cta {
    border-bottom: none;
    margin-top: 16px;
    text-align: center;
    padding: 12px 28px;
    align-self: center;
    font-size: 0.9rem;
    width: auto;
  }
  .nav-links a::after { display: none; }
  .hamburger { display: flex; }
  
  .logo {
    font-size: 1.25rem;
  }
  .logo-searchbar {
    padding: 5px 10px 5px 8px;
  }
  .logo-searchbar svg {
    width: 16px;
    height: 16px;
  }
  .logo-cursor {
    height: 13px;
  }
  
  section { padding: 70px 20px; }
  .hero { 
    padding: 110px 20px 60px;
    min-height: auto;
  }
  
  h1 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    margin-bottom: 20px;
  }
  
  h2 {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }
  
  .hero-sub {
    font-size: 1rem;
    margin-bottom: 32px;
    line-height: 1.65;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
  }
  
  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 16px;
    margin-bottom: 24px;
  }
  
  .globe-container {
    width: 400px;
    height: 400px;
  }
  
  /* Stats */
  .stats-ticker {
    padding: 0 20px;
    margin-top: -20px;
  }
  .stats-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .stat-card {
    padding: 24px 16px;
  }
  .stat-number {
    font-size: 2rem;
  }
  .stat-label {
    font-size: 0.75rem;
  }
  
  /* Marquee */
  .marquee-section {
    padding: 24px 0;
  }
  .marquee-item {
    font-size: 1rem;
    padding: 0 20px;
    gap: 20px;
  }
  
  /* Services */
  .services-grid { 
    grid-template-columns: 1fr; 
    gap: 16px;
  }
  .service-card {
    padding: 28px 24px;
  }
  .service-card h3 {
    font-size: 1.15rem;
  }
  .service-card p {
    font-size: 0.9rem;
  }
  .service-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
    margin-bottom: 18px;
  }
  
  /* Markets */
  .markets-content { 
    grid-template-columns: 1fr; 
    gap: 32px; 
  }
  .world-map-visual { 
    display: none;
  }
  .region-tags {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 10px;
    margin-top: 24px;
    padding: 0 12px;
    max-width: 100%;
  }
  .region-tag {
    padding: 8px 12px;
    font-size: 0.75rem;
    min-height: 36px;
  }
  
  .section-desc {
    font-size: 1rem;
  }
  
  @media (max-width: 380px) {
    .region-tags {
      grid-template-columns: repeat(auto-fit, minmax(95px, 1fr));
      gap: 8px;
      padding: 0 8px;
    }
    .region-tag {
      padding: 6px 10px;
      font-size: 0.65rem;
      min-height: 32px;
    }
  }
  
  /* Process */
  .process-grid { 
    grid-template-columns: 1fr 1fr; 
    gap: 32px 16px;
    margin-top: 40px;
  }
  .process-grid::before { display: none; }
  .process-step {
    padding: 0 8px;
  }
  .process-step h4 {
    font-size: 0.95rem;
  }
  .process-step p {
    font-size: 0.8rem;
  }
  .step-number {
    width: 42px;
    height: 42px;
    font-size: 1rem;
    margin-bottom: 14px;
  }
  
  /* Testimonials Slider */
  .slider-wrapper {
    margin-top: 40px;
    gap: 8px;
  }
  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
  .testimonial-card {
    min-width: calc(100% - 16px);
    padding: 28px 24px;
  }
  .testimonial-card blockquote {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  /* CTA */
  .cta-box { 
    padding: 44px 24px; 
    border-radius: 20px;
  }
  .cta-box h2 {
    font-size: 1.5rem;
  }
  .cta-box p {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }
  .cta-box .btn {
    font-size: 1rem !important;
    padding: 16px 32px !important;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  /* Footer */
  .footer-grid { 
    grid-template-columns: 1fr; 
    gap: 32px;
  }
  footer {
    padding: 40px 20px 24px;
  }
  .footer-bottom { 
    flex-direction: column; 
    gap: 10px; 
    text-align: center; 
  }
}

/* Extra small screens */
@media (max-width: 380px) {
  h1 {
    font-size: 2rem;
  }
  .stats-grid {
    gap: 16px;
  }
  .stat-card {
    padding: 20px 12px;
  }
  .stat-number {
    font-size: 1.7rem;
  }
  .hero-buttons .btn {
    max-width: 100%;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ─── FLOATING PARTICLES ─── */
.particle {
  position: fixed;
  width: 3px; height: 3px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  animation: particle-float linear infinite;
}
@keyframes particle-float {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-100px) scale(1); }
}