:root {
  --ink: #0a0b0d;
  --ink-2: #1c1f26;
  --ink-3: #3a3f4b;
  --muted: #6b7280;
  --muted-2: #9ca3af;
  --surface: #f4f3ef;
  --surface-2: #eceae3;
  --white: #ffffff;
  --accent: #1a3a8f;
  --accent-2: #2952c8;
  --accent-glow: #4f7fff;
  --gold: #c8952a;
  --gold-2: #f0c060;
  --teal: #0d7a6b;
  --red: #b82c2c;
  --border: rgba(10,11,13,0.1);
  --border-2: rgba(10,11,13,0.06);
  --radius: 4px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* Custom cursor */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--accent-glow);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(79,127,255,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--transition), width 0.3s, height 0.3s;
}
body:hover .cursor { opacity: 1; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 6vw;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  background: rgba(10,11,13,0.7);
  transition: background 0.3s;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-mark {
  width: 32px; height: 32px;
  background: var(--accent-2);
  border-radius: 8px;
  display: grid; place-items: center;
  font-size: 14px; font-weight: 800;
  color: white;
  position: relative;
  overflow: hidden;
}
.nav-logo-mark::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  animation: shimmer 3s infinite;
}
@keyframes shimmer { 0%,100% { transform: translateX(-100%); } 50% { transform: translateX(100%); } }

.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--accent-glow);
  transform: scaleX(0);
  transition: transform 0.3s var(--transition);
  transform-origin: left;
}
.nav-links a:hover { color: white; }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  padding: 10px 22px;
  background: var(--accent-2);
  color: white !important;
  border-radius: var(--radius);
  font-weight: 500 !important;
  font-size: 13px !important;
  letter-spacing: 0.04em !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--accent-glow) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* HERO */
#hero {
  min-height: 100vh;
  padding: 0 6vw;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 50%, rgba(41,82,200,0.15) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 80% 20%, rgba(200,149,42,0.08) 0%, transparent 60%),
              radial-gradient(ellipse 50% 80% at 10% 80%, rgba(13,122,107,0.08) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(79,127,255,0.3);
  border-radius: 100px;
  background: rgba(79,127,255,0.08);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-glow);
  margin-bottom: 32px;
  animation: fadeUp 0.8s var(--transition) both;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--accent-glow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 28px;
  animation: fadeUp 0.8s 0.1s var(--transition) both;
}
.hero-h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #4f7fff 0%, #c8952a 50%, #4f7fff 100%);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.hero-sub {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin-bottom: 48px;
  animation: fadeUp 0.8s 0.2s var(--transition) both;
}
.hero-sub strong { color: rgba(255,255,255,0.85); font-weight: 500; }

.hero-ctas {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s var(--transition) both;
}
.btn-primary {
  padding: 14px 28px;
  background: var(--accent-2);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover { background: var(--accent-glow); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(79,127,255,0.35); }

.btn-ghost {
  padding: 14px 28px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.4); color: white; transform: translateY(-2px); }

.hero-visual {
  position: absolute;
  right: 4vw; top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  animation: fadeUp 1s 0.4s var(--transition) both;
}

/* Floating orb viz */
.orb-container {
  width: 460px; height: 460px;
  position: relative;
}
.orb {
  position: absolute;
  border-radius: 50%;
}
.orb-1 {
  width: 280px; height: 280px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 35% 35%, #2952c8, #0a1442);
  animation: orbFloat 6s ease-in-out infinite;
  box-shadow: 0 0 80px rgba(41,82,200,0.4), inset 0 0 40px rgba(79,127,255,0.2);
}
.orb-2 {
  width: 120px; height: 120px;
  top: 10%; right: 10%;
  background: radial-gradient(circle at 40% 40%, #c8952a, #7a5010);
  animation: orbFloat2 8s 1s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(200,149,42,0.3);
}
.orb-3 {
  width: 80px; height: 80px;
  bottom: 15%; left: 10%;
  background: radial-gradient(circle at 40% 40%, #0d7a6b, #043d35);
  animation: orbFloat2 7s 2s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(13,122,107,0.3);
}
@keyframes orbFloat {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  50% { transform: translate(-50%,-52%) scale(1.03); }
}
@keyframes orbFloat2 {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.05); }
}

/* Orbit rings */
.orbit-ring {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(79,127,255,0.15);
  transform: translate(-50%,-50%);
}
.orbit-ring:nth-child(1) { width: 320px; height: 320px; animation: spin 20s linear infinite; }
.orbit-ring:nth-child(2) { width: 400px; height: 400px; animation: spin 30s linear infinite reverse; border-color: rgba(200,149,42,0.1); }
.orbit-ring:nth-child(3) { width: 460px; height: 460px; animation: spin 40s linear infinite; border-color: rgba(13,122,107,0.08); }
@keyframes spin { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }

.orbit-dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  top: 0; left: 50%;
  margin-top: -4px; margin-left: -4px;
}

/* Floating cards on hero orb */
.float-card {
  position: absolute;
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-family: var(--font-body);
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  animation: orbFloat2 5s ease-in-out infinite;
}
.float-card-1 { top: 5%; right: 0; animation-delay: 0s; }
.float-card-2 { bottom: 20%; right: -20px; animation-delay: 1.5s; }
.float-card-3 { top: 30%; left: -10px; animation-delay: 0.8s; }
.float-card-label { color: rgba(255,255,255,0.45); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.float-card-val { font-weight: 600; font-size: 14px; color: var(--gold-2); }

/* STATS BAR */
.stats-bar {
  padding: 40px 6vw;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; gap: 60px; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.5s var(--transition) both;
}
.stat { display: flex; align-items: baseline; gap: 8px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 800;
  letter-spacing: -0.04em;
  color: white;
}
.stat-unit { font-size: 18px; font-weight: 800; color: var(--accent-glow); }
.stat-label { font-size: 13px; color: var(--muted); font-weight: 400; margin-top: 2px; }
.stat-inner { display: flex; flex-direction: column; }

/* SECTIONS */
section { padding: 120px 6vw; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-glow);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--accent-glow);
}
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: white;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
}
.section-sub strong { color: rgba(255,255,255,0.8); font-weight: 500; }

/* INDUSTRIES */
#industries { background: var(--ink-2); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: 64px;
}
.industry-card {
  padding: 40px 36px;
  background: var(--ink-2);
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.industry-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  transform: scaleX(0);
  transition: transform 0.4s var(--transition);
  transform-origin: left;
}
.industry-card:hover { background: rgba(255,255,255,0.03); }
.industry-card:hover::before { transform: scaleX(1); }
.ind-1::before { background: var(--accent-2); }
.ind-2::before { background: var(--gold); }
.ind-3::before { background: var(--teal); }
.ind-4::before { background: var(--red); }
.ind-5::before { background: #8b5cf6; }
.ind-6::before { background: #06b6d4; }

.ind-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 24px;
  font-size: 22px;
}
.ind-1 .ind-icon { background: rgba(41,82,200,0.15); }
.ind-2 .ind-icon { background: rgba(200,149,42,0.15); }
.ind-3 .ind-icon { background: rgba(13,122,107,0.15); }
.ind-4 .ind-icon { background: rgba(184,44,44,0.15); }
.ind-5 .ind-icon { background: rgba(139,92,246,0.15); }
.ind-6 .ind-icon { background: rgba(6,182,212,0.15); }

.ind-name {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 10px;
}
.ind-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
}
.ind-tag {
  display: inline-block;
  margin-top: 20px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* HOW IT WORKS */
#how {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
#how::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(41,82,200,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.how-header { max-width: 600px; margin-bottom: 80px; }
.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 60px; right: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79,127,255,0.3), rgba(200,149,42,0.3), transparent);
}
.how-step { position: relative; }
.how-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: rgba(255,255,255,0.2);
  margin-bottom: 28px;
  position: relative;
  background: var(--ink);
  transition: border-color 0.3s, color 0.3s;
}
.how-step:hover .how-num { border-color: var(--accent-glow); color: var(--accent-glow); }
.how-step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 12px;
}
.how-step-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
}

/* WHY US */
#why { background: var(--ink-2); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 64px;
}
.why-left { }
.why-feat {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; gap: 20px;
  align-items: flex-start;
}
.why-feat:last-child { border-bottom: none; }
.why-feat-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 18px;
  background: rgba(41,82,200,0.12);
}
.why-feat-title { font-weight: 600; font-size: 16px; color: white; margin-bottom: 6px; }
.why-feat-desc { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.6; }

.why-visual {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.why-visual::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200,149,42,0.08) 0%, transparent 70%);
}
.compliance-item {
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 14px;
  transition: border-color 0.2s, background 0.2s;
}
.compliance-item:hover { border-color: rgba(79,127,255,0.3); background: rgba(79,127,255,0.04); }
.compliance-item:last-child { margin-bottom: 0; }
.comp-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.comp-green { background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,0.6); }
.comp-blue { background: var(--accent-glow); box-shadow: 0 0 8px rgba(79,127,255,0.6); }
.comp-gold { background: var(--gold-2); box-shadow: 0 0 8px rgba(240,192,96,0.6); }
.comp-name { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.8); flex: 1; }
.comp-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.comp-tag-active { background: rgba(34,197,94,0.1); color: #22c55e; }
.comp-tag-ready { background: rgba(79,127,255,0.1); color: var(--accent-glow); }
.comp-tag-soon { background: rgba(240,192,96,0.1); color: var(--gold-2); }

/* TESTIMONIALS */
#trust { background: var(--ink); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 64px;
}
.trust-card {
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s, transform 0.3s;
}
.trust-card:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-4px); }
.trust-quote {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  font-style: italic;
}
.trust-quote strong { color: rgba(255,255,255,0.9); font-style: normal; font-weight: 500; }
.trust-person { display: flex; align-items: center; gap: 14px; }
.trust-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 800;
  color: white;
}
.av-1 { background: var(--accent-2); }
.av-2 { background: var(--teal); }
.av-3 { background: var(--gold); }
.trust-name { font-weight: 600; font-size: 14px; color: white; }
.trust-role { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* CONTACT */
#contact { background: var(--ink-2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  margin-top: 64px;
}
.contact-info { }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 36px;
}
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  display: grid; place-items: center;
  font-size: 18px;
}
.contact-info-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 4px; }
.contact-info-val { font-size: 16px; font-weight: 500; color: white; }

.contact-form {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 48px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.form-input, .form-select, .form-textarea {
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: white;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-glow);
  background: rgba(79,127,255,0.05);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-select option { background: var(--ink-2); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  font-size: 15px; font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
}

/* FOOTER */
footer {
  padding: 60px 6vw 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: var(--ink);
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.footer-brand { max-width: 280px; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.footer-tagline { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.35); line-height: 1.6; }

.footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col {}
.footer-col-title { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: white; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* India badge */
.india-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  background: rgba(255,153,0,0.08);
  border: 1px solid rgba(255,153,0,0.2);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  color: #ff9900;
  letter-spacing: 0.06em;
  margin-top: 12px;
  text-transform: uppercase;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
.reveal.visible { opacity: 1; transform: none; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

/* Mobile */
@media (max-width: 768px) {
  nav .nav-links { display: none; }
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .how-steps::before { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-links { gap: 32px; }
}

/* Nav active */
.nav-links a.active { color: white; }
.nav-links a.active::after { transform: scaleX(1); }
