/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #05030f;
  --bg2: #080516;
  --bg3: #0d0920;
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --blue: #38bdf8;
  --gold: #f59e0b;
  --text: #f0eeff;
  --muted: rgba(240,238,255,0.55);
  --border: rgba(167,139,250,0.15);
  --card-bg: rgba(13,9,32,0.7);
  --radius: 16px;
  --transition: 0.4s cubic-bezier(0.22,1,0.36,1);
}

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

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: 'Inter', sans-serif; line-height: 1.08; font-weight: 900; }
.gradient-text {
  background: linear-gradient(135deg, #a78bfa 0%, #38bdf8 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--purple-light);
}
.section-heading {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 3rem;
}
.text-center { text-align: center; }
.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo svg {
  width: 80px; height: 80px;
  animation: spin 3s linear infinite;
  filter: drop-shadow(0 0 20px rgba(167,139,250,0.6));
}
@keyframes spin { to { transform: rotate(360deg); } }
.loader-bar {
  width: 200px; height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--purple-light), var(--blue));
  width: 0%;
  transition: width 0.3s ease;
}

/* ── STARFIELD ── */
#starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem 2.5rem;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
}
#nav.scrolled {
  background: rgba(5,3,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 2.5rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none; color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.nav-logo strong { color: var(--purple-light); }
.nav-links {
  list-style: none;
  display: flex;
  gap: 0.25rem;
  margin: 0 auto;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 0.4rem 0.9rem;
  border-radius: 99px;
  transition: color 0.3s, background 0.3s;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(167,139,250,0.1);
}
.nav-cta {
  text-decoration: none;
  background: linear-gradient(135deg, var(--purple), #5b21b6);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.55rem 1.4rem;
  border-radius: 99px;
  transition: transform 0.3s, box-shadow 0.3s;
  white-space: nowrap;
  border: 1px solid rgba(167,139,250,0.3);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(124,58,237,0.4);
}
.nav-burger {
  display: none;
  background: none; border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 280px; height: 100vh;
  background: rgba(5,3,15,0.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  padding: 5rem 2rem 2rem;
  border-left: 1px solid var(--border);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { list-style: none; }
.mobile-menu li { margin-bottom: 1.5rem; }
.mobile-menu a {
  text-decoration: none;
  color: var(--text);
  font-size: 1.25rem;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2.5rem 4rem;
  z-index: 1;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.orb1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.3) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: orb-float 8s ease-in-out infinite;
}
.orb2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(56,189,248,0.2) 0%, transparent 70%);
  bottom: 0; left: -100px;
  animation: orb-float 10s ease-in-out infinite reverse;
}
.orb3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
  top: 50%; left: 40%;
  animation: orb-float 12s ease-in-out infinite 2s;
}
@keyframes orb-float {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-40px) scale(1.05); }
}

/* Globe */
.hero-globe-wrap {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: 520px; height: 520px;
  z-index: 1;
  pointer-events: none;
}
.globe-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 220px; height: 220px;
  border-radius: 50%;
  overflow: hidden;
  filter: drop-shadow(0 0 40px rgba(124,58,237,0.5));
  animation: globe-spin 20s linear infinite;
}
.globe-core svg { width: 100%; height: 100%; }
@keyframes globe-spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
.globe-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(167,139,250,0.2);
  transform: translate(-50%,-50%) rotateX(75deg);
}
.ring1 { width: 280px; height: 280px; border-color: rgba(167,139,250,0.25); animation: ring-rotate 15s linear infinite; }
.ring2 { width: 380px; height: 380px; border-color: rgba(56,189,248,0.2); animation: ring-rotate 20s linear infinite reverse; }
.ring3 { width: 480px; height: 480px; border-color: rgba(245,158,11,0.15); animation: ring-rotate 25s linear infinite 3s; }
@keyframes ring-rotate { to { transform: translate(-50%,-50%) rotateX(75deg) rotateZ(360deg); } }

.globe-dot {
  position: absolute;
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  z-index: 2;
}
.dot-china { top: 35%; left: 30%; }
.dot-india { top: 55%; right: 28%; }
.dot-australia { bottom: 18%; left: 55%; }
.pulse-dot {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  display: block;
  box-shadow: 0 0 0 0 rgba(245,158,11,0.6);
  animation: pulse 2s ease-out infinite;
}
.dot-india .pulse-dot { background: var(--purple-light); box-shadow: 0 0 0 0 rgba(167,139,250,0.6); }
.dot-australia .pulse-dot { background: var(--blue); box-shadow: 0 0 0 0 rgba(56,189,248,0.6); animation: pulse-blue 2s ease-out infinite 0.5s; }
@keyframes pulse-blue {
  0% { box-shadow: 0 0 0 0 rgba(56,189,248,0.7); }
  70% { box-shadow: 0 0 0 12px rgba(56,189,248,0); }
  100% { box-shadow: 0 0 0 0 rgba(56,189,248,0); }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(245,158,11,0.7); }
  70% { box-shadow: 0 0 0 12px rgba(245,158,11,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,158,11,0); }
}
.dot-label {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.dot-india .dot-label { color: var(--purple-light); }
.dot-australia .dot-label { color: var(--blue); }
.trade-arc {
  position: absolute;
  width: 100%; height: 100%;
  top: 0; left: 0;
  opacity: 0.6;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(245,158,11,0.3);
  background: rgba(245,158,11,0.08);
  padding: 0.4rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-size: clamp(3.25rem, 6.5vw, 6rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-headline .word { display: block; overflow: hidden; }
.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--purple), #5b21b6);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 99px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(167,139,250,0.3);
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(124,58,237,0.45);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 99px;
  border: 1px solid var(--border);
  transition: border-color 0.3s, background 0.3s;
}
.btn-outline:hover {
  border-color: var(--purple-light);
  background: rgba(167,139,250,0.08);
}
.btn-full { width: 100%; justify-content: center; }

/* Floating hero chips */
.hero-floats {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.float-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(13,9,32,0.75);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.65rem 1.1rem;
  backdrop-filter: blur(16px);
  width: fit-content;
  animation: chip-float 5s ease-in-out infinite;
}
.chip1 { animation-delay: 0s; }
.chip2 { animation-delay: 1s; }
.chip3 { animation-delay: 2s; }
@keyframes chip-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.chip-flag { font-size: 1.5rem; line-height: 1; }
.float-chip strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text); }
.float-chip span { font-size: 0.75rem; color: var(--muted); }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem;
  z-index: 2;
  animation: fade-in 1s 2s ease both;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--purple-light));
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }
.scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

/* ── TICKER ── */
.ticker-wrap {
  background: linear-gradient(90deg, rgba(124,58,237,0.15), rgba(56,189,248,0.15));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ticker-track {
  display: flex;
  gap: 3rem;
  animation: ticker-move 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-track span {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.ticker-track .dot { color: var(--gold); }
@keyframes ticker-move { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTIONS ── */
section {
  position: relative;
  z-index: 1;
  padding: 7rem 0;
}
section:nth-child(even) { background: rgba(8,5,22,0.5); }

/* ── ABOUT ── */
#about { background: var(--bg2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-visual {
  position: relative;
  height: 500px;
}
.about-card {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  max-width: 220px;
  z-index: 2;
}
.card-float {
  top: 20px; left: 0;
  animation: card-float1 6s ease-in-out infinite;
}
.card-float-2 {
  bottom: 20px; right: 0;
  animation: card-float2 7s ease-in-out infinite 1s;
}
@keyframes card-float1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes card-float2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(12px); } }
.card-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.about-card strong { display: block; font-family: 'Syne', sans-serif; font-size: 0.95rem; margin-bottom: 0.35rem; }
.about-card p { font-size: 0.8rem; color: var(--muted); }

/* 3D Box */
.about-3d-box {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 160px; height: 160px;
  transform-style: preserve-3d;
  transform: translate(-50%,-50%) rotateX(20deg) rotateY(20deg);
  animation: box-rotate 12s linear infinite;
}
@keyframes box-rotate {
  from { transform: translate(-50%,-50%) rotateX(20deg) rotateY(0deg); }
  to { transform: translate(-50%,-50%) rotateX(20deg) rotateY(360deg); }
}
.face {
  position: absolute;
  width: 160px; height: 160px;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(167,139,250,0.2);
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0.5rem;
}
.face-front  { transform: translateZ(80px); }
.face-back   { transform: rotateY(180deg) translateZ(80px); }
.face-left   { transform: rotateY(-90deg) translateZ(80px); }
.face-right  { transform: rotateY(90deg) translateZ(80px); }
.face-top    { transform: rotateX(90deg) translateZ(80px); background: rgba(56,189,248,0.08); }
.face-bottom { transform: rotateX(-90deg) translateZ(80px); background: rgba(245,158,11,0.08); }

.about-text .reveal { transition: none; }
.about-pills {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-top: 1.5rem;
}
.about-pills span {
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: rgba(124,58,237,0.08);
  transition: border-color 0.3s, color 0.3s;
}
.about-pills span:hover {
  border-color: var(--purple-light);
  color: var(--text);
}

/* ── PRODUCTS ── */
#products {
  background: var(--bg);
  overflow: hidden;
}
.product-swiper {
  padding: 1.5rem 0.5rem 3.5rem;
  margin: 0 -0.5rem;
}
.swiper { overflow: hidden; }
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: default;
  backdrop-filter: blur(16px);
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(167,139,250,0.4);
  box-shadow: 0 20px 60px rgba(124,58,237,0.2);
}
.product-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.75rem;
}
.product-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.product-card p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.product-tags {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
}
.product-tags span {
  font-size: 0.7rem;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  background: rgba(167,139,250,0.1);
  border: 1px solid rgba(167,139,250,0.2);
  color: var(--purple-light);
}

/* Swiper overrides */
.swiper-button-prev, .swiper-button-next {
  color: var(--purple-light) !important;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 44px !important; height: 44px !important;
  backdrop-filter: blur(12px);
  transition: background 0.3s, border-color 0.3s;
}
.swiper-button-prev::after, .swiper-button-next::after {
  font-size: 1rem !important;
}
.swiper-button-prev:hover, .swiper-button-next:hover {
  background: rgba(124,58,237,0.3);
  border-color: var(--purple-light);
}
.swiper-pagination-bullet {
  background: var(--border) !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet-active {
  background: var(--purple-light) !important;
}

/* ── MARQUEE STRIP ── */
.marquee-strip {
  position: relative; z-index: 1;
  background: linear-gradient(90deg, rgba(124,58,237,0.2), rgba(56,189,248,0.15), rgba(245,158,11,0.15));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 2.5rem;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-track span {
  font-size: 0.875rem;
  color: var(--text);
  font-weight: 500;
  flex-shrink: 0;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── PROCESS ── */
#process { background: var(--bg2); }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 4rem;
  position: relative;
}
.process-step {
  flex: 1;
  padding: 2rem;
  text-align: center;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  backdrop-filter: blur(16px);
}
.process-step.in-view:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(167,139,250,0.35);
  box-shadow: 0 16px 48px rgba(124,58,237,0.18);
}
.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(167,139,250,0.2), rgba(56,189,248,0.1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.process-step h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.process-step p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
.process-connector {
  display: flex; align-items: center;
  padding: 0 0.5rem;
  position: relative;
  top: 60px;
}
.connector-arrow {
  font-size: 1.5rem;
  color: var(--purple-light);
  opacity: 0.5;
}
.connector-line { display: none; }

/* ── WHY US ── */
#why-us { background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 4rem;
}
.why-card {
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  backdrop-filter: blur(16px);
}
.why-card.in-view:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(167,139,250,0.3);
  box-shadow: 0 16px 48px rgba(124,58,237,0.15);
}
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-card h3 { font-size: 1.05rem; margin-bottom: 0.75rem; }
.why-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* stagger delays for grid items */
.why-grid .why-card:nth-child(1) { transition-delay: 0s; }
.why-grid .why-card:nth-child(2) { transition-delay: 0.07s; }
.why-grid .why-card:nth-child(3) { transition-delay: 0.14s; }
.why-grid .why-card:nth-child(4) { transition-delay: 0.21s; }
.why-grid .why-card:nth-child(5) { transition-delay: 0.28s; }
.why-grid .why-card:nth-child(6) { transition-delay: 0.35s; }
.why-grid .why-card:nth-child(7) { transition-delay: 0.42s; }
.why-grid .why-card:nth-child(8) { transition-delay: 0.49s; }
.why-grid .why-card:nth-child(9) { transition-delay: 0.56s; }

.process-steps .process-step:nth-child(1) { transition-delay: 0s; }
.process-steps .process-step:nth-child(3) { transition-delay: 0.12s; }
.process-steps .process-step:nth-child(5) { transition-delay: 0.24s; }
.process-steps .process-step:nth-child(7) { transition-delay: 0.36s; }



/* ── CONTACT ── */
#contact {
  background: var(--bg);
  overflow: hidden;
}
.contact-orb {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 70%);
  top: 50%; right: -200px;
  transform: translateY(-50%);
  filter: blur(60px);
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}
.contact-details { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.contact-item {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.contact-item span { font-size: 1.1rem; }

/* Form */
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(16px);
  display: flex; flex-direction: column; gap: 1.25rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple-light);
  background: rgba(167,139,250,0.05);
}
.form-group select option { background: var(--bg); }

/* ── FOOTER ── */
#footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
  position: relative;
  z-index: 1;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; max-width: 280px; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a { text-decoration: none; color: var(--muted); font-size: 0.875rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger siblings */
.reveal + .reveal { transition-delay: 0.08s; }
.reveal + .reveal + .reveal { transition-delay: 0.16s; }
.reveal + .reveal + .reveal + .reveal { transition-delay: 0.24s; }

/* these sections rely purely on IntersectionObserver, not GSAP */
.process-step,
.why-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1), border-color 0.3s, box-shadow 0.3s;
}
.process-step.in-view,
.why-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-globe-wrap { width: 380px; height: 380px; right: 2%; }
  .globe-core { width: 160px; height: 160px; }
  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .about-visual { height: 350px; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-brand p { max-width: 100%; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .mobile-menu { display: block; }
  #hero { padding: 7rem 1.5rem 4rem; }
  .hero-globe-wrap { display: none; }
  .hero-headline { font-size: clamp(2.25rem, 8vw, 3.5rem); }
  .process-steps { flex-direction: column; }
  .process-connector { transform: rotate(90deg); padding: 0; justify-content: center; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; align-items: center; text-align: center; }
  #nav { padding: 1rem 1.5rem; }
  .hero-floats { gap: 0.6rem; }
}
@media (max-width: 480px) {
  .hero-floats { gap: 0.6rem; }
  .float-chip { padding: 0.5rem 0.85rem; }
  .footer-links { grid-template-columns: 1fr; }
}
