*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --cyan: #06b6d4;
  --cyan-dark: #0891b2;
  --cyan-glow: rgba(6,182,212,0.15);
  --bg: #000;
  --surface: #0a0a0a;
  --surface2: #111;
  --border: rgba(255,255,255,0.07);
  --text: #fff;
  --muted: #6b7280;
  --muted2: #9ca3af;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── SCROLL PROGRESS BAR ─────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  z-index: 200;
  background: linear-gradient(90deg, var(--cyan), #a78bfa, #34d399);
  box-shadow: 0 0 12px rgba(6,182,212,0.6);
  transition: width 0.08s linear;
}

/* ── AMBIENT ORBS (drifting background) ──────────────────────── */
.ambient { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.orb {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5;
  will-change: transform;
}
.orb-1 { width: 520px; height: 520px; top: -120px; left: -80px;
  background: radial-gradient(circle, rgba(6,182,212,0.35), transparent 70%);
  animation: drift1 22s ease-in-out infinite; }
.orb-2 { width: 460px; height: 460px; bottom: -140px; right: -60px;
  background: radial-gradient(circle, rgba(124,58,237,0.3), transparent 70%);
  animation: drift2 26s ease-in-out infinite; }
.orb-3 { width: 380px; height: 380px; top: 40%; left: 60%;
  background: radial-gradient(circle, rgba(16,185,129,0.18), transparent 70%);
  animation: drift3 30s ease-in-out infinite; }
@keyframes drift1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(80px,60px)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-70px,-50px)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-90px,40px)} }

/* particle canvas in hero */
#particles { position: absolute; 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; justify-content: space-between;
  padding: 0 5%; height: 68px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s, height 0.4s, border-color 0.4s;
}
nav.scrolled { height: 60px; background: rgba(0,0,0,0.92); border-color: rgba(6,182,212,0.15); }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--cyan), #7c3aed);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 0 rgba(6,182,212,0.5);
  animation: logoPulse 3.5s ease-in-out infinite;
}
.nav-logo-icon svg { width: 22px; height: 22px; display: block; }
@keyframes logoPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(6,182,212,0.45); }
  50% { box-shadow: 0 0 22px 2px rgba(6,182,212,0.35); }
}
.nav-logo-text { font-family: 'Chakra Petch', 'Inter', monospace; font-size: 19px; font-weight: 700; color: #fff; letter-spacing: 0.5px; }
.nav-logo-img { height: 30px; width: auto; display: block; transition: height 0.4s; }
nav.scrolled .nav-logo-img { height: 26px; }
footer .nav-logo-img { height: 34px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--muted2); text-decoration: none; font-size: 14px;
  font-weight: 500; transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--cyan); border-radius: 2px; transition: width 0.3s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.btn-ghost {
  background: transparent; color: var(--muted2);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 8px 18px; font-size: 14px; font-weight: 500;
  cursor: pointer; text-decoration: none; transition: all 0.2s;
}
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.2); }
.btn-primary {
  background: var(--cyan); color: #000;
  border: none; border-radius: 8px;
  padding: 9px 20px; font-size: 14px; font-weight: 700;
  cursor: pointer; text-decoration: none; transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary:hover { background: #22d3ee; transform: translateY(-1px); }
.hamburger {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; color: #fff;
  flex-direction: column; gap: 5px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: all 0.3s; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  padding: 120px 5% 80px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(6,182,212,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(124,58,237,0.12) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 10% 90%, rgba(16,185,129,0.08) 0%, transparent 50%);
  will-change: transform;
}
.hero-grid {
  position: absolute; inset: -10%; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  will-change: transform;
}
.hero-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(6,182,212,0.1); border: 1px solid rgba(6,182,212,0.25);
  border-radius: 100px; padding: 6px 14px;
  font-size: 13px; color: var(--cyan); font-weight: 500;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge span { width: 6px; height: 6px; background: var(--cyan); 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-size: clamp(42px, 8vw, 88px);
  font-weight: 900; line-height: 1.05; letter-spacing: -2px;
}
.hero h1 .word {
  display: inline-block; opacity: 0; transform: translateY(40px) rotateX(40deg);
  animation: wordIn 0.7s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes wordIn { to { opacity: 1; transform: translateY(0) rotateX(0); } }
.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, #a78bfa 50%, #34d399 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }
.hero p {
  max-width: 560px; font-size: clamp(16px, 2.5vw, 20px);
  color: var(--muted2); margin: 24px auto 40px; line-height: 1.7;
  animation: fadeUp 0.7s ease 0.7s both;
}
.hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.85s both;
}
.btn-hero {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cyan); color: #000;
  border-radius: 12px; padding: 15px 30px;
  font-size: 16px; font-weight: 700; text-decoration: none;
  transition: all 0.2s; border: none; cursor: pointer;
  box-shadow: 0 0 40px rgba(6,182,212,0.3);
  position: relative; overflow: hidden;
}
.btn-hero::after {
  content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
  transform: skewX(-20deg); transition: left 0.6s;
}
.btn-hero:hover::after { left: 130%; }
.btn-hero:hover { background: #22d3ee; transform: translateY(-2px); box-shadow: 0 0 60px rgba(6,182,212,0.45); }
.btn-hero-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05); color: #fff;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 12px;
  padding: 15px 30px; font-size: 16px; font-weight: 600;
  text-decoration: none; transition: all 0.2s; cursor: pointer;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); border-color: rgba(6,182,212,0.4); }
.hero-stats {
  display: flex; gap: 48px; justify-content: center; flex-wrap: wrap;
  margin-top: 72px;
  animation: fadeUp 0.7s ease 1s both;
}
.hero-stat { text-align: center; }
.hero-stat-value {
  font-size: clamp(28px, 4vw, 40px); font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, var(--muted2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.2);
  border-radius: 14px; display: flex; justify-content: center; padding-top: 8px;
  animation: fadeUp 1s ease 1.4s both;
}
.scroll-hint::before {
  content: ''; width: 4px; height: 8px; border-radius: 4px; background: var(--cyan);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot { 0%{opacity:0;transform:translateY(-4px)} 40%{opacity:1} 80%{opacity:0;transform:translateY(12px)} 100%{opacity:0} }

/* ── SECTION BASE ─────────────────────────────────────────────── */
section { padding: 100px 5%; position: relative; z-index: 2; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; color: var(--cyan); margin-bottom: 16px;
}
.section-title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; line-height: 1.15; letter-spacing: -1px; margin-bottom: 16px; }
.section-subtitle { font-size: clamp(15px, 2vw, 18px); color: var(--muted2); max-width: 520px; line-height: 1.7; }
.section-head { margin-bottom: 60px; }

/* ── FEATURES GRID ───────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.feature-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px;
  transition: border-color 0.3s, transform 0.15s ease-out, box-shadow 0.3s;
  position: relative; overflow: hidden; transform-style: preserve-3d;
}
.feature-card .glare {
  position: absolute; inset: 0; border-radius: 20px; opacity: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(6,182,212,0.18), transparent 45%);
  transition: opacity 0.3s; pointer-events: none;
}
.feature-card:hover { border-color: rgba(6,182,212,0.35); box-shadow: 0 20px 50px -20px rgba(6,182,212,0.25); }
.feature-card:hover .glare { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px; position: relative; z-index: 1;
  transition: transform 0.3s;
}
.feature-card:hover .feature-icon { transform: translateZ(30px) scale(1.08); }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; position: relative; z-index: 1; }
.feature-card p { font-size: 14px; color: var(--muted2); line-height: 1.7; position: relative; z-index: 1; }
.feature-tag {
  display: inline-block; margin-top: 16px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; padding: 4px 10px; border-radius: 100px;
  position: relative; z-index: 1;
}
.icon-cyan{background:rgba(6,182,212,0.12)} .icon-purple{background:rgba(124,58,237,0.12)}
.icon-green{background:rgba(16,185,129,0.12)} .icon-orange{background:rgba(251,146,60,0.12)}
.icon-pink{background:rgba(236,72,153,0.12)} .icon-blue{background:rgba(59,130,246,0.12)}
.icon-yellow{background:rgba(234,179,8,0.12)} .icon-teal{background:rgba(20,184,166,0.12)}
.tag-cyan{background:rgba(6,182,212,0.1);color:var(--cyan)} .tag-new{background:rgba(16,185,129,0.1);color:#34d399}
.tag-uae{background:rgba(251,146,60,0.1);color:#fb923c}

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.how-bg { background: var(--surface); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; position: relative; }
.steps::before { content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); opacity: 0.3; }
.step { text-align: center; padding: 40px 24px; position: relative; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--surface2); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; color: var(--cyan); margin: 0 auto 20px;
  position: relative; z-index: 1; transition: all 0.3s;
}
.step:hover .step-num { border-color: var(--cyan); box-shadow: 0 0 24px rgba(6,182,212,0.4); transform: scale(1.08); }
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--muted2); line-height: 1.6; }

/* ── BIG FEATURE SPLIT ───────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-visual {
  background: var(--surface); border: 1px solid var(--border); border-radius: 24px;
  padding: 40px; min-height: 380px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
  transition: transform 0.15s ease-out;
}
.split-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 30%, rgba(6,182,212,0.08), transparent 60%); }
.mock-card { background: var(--surface2); border: 1px solid var(--border); border-radius: 16px; padding: 20px; margin-bottom: 12px; position: relative; z-index: 1; }
.mock-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.mock-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), #7c3aed); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: #fff; }
.mock-name { font-weight: 600; font-size: 14px; }
.mock-sub { font-size: 12px; color: var(--muted); }
.mock-badge { margin-left: auto; padding: 4px 10px; border-radius: 100px; font-size: 11px; font-weight: 700; }
.badge-green{background:rgba(16,185,129,0.15);color:#34d399} .badge-cyan{background:rgba(6,182,212,0.15);color:var(--cyan)} .badge-red{background:rgba(239,68,68,0.15);color:#f87171}
.mock-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; padding: 6px 0; border-bottom: 1px solid var(--border); }
.mock-row:last-child { border-bottom: none; }
.mock-label { color: var(--muted); }
.mock-val { font-weight: 600; }
.mock-val.cyan { color: var(--cyan); }

/* ── STATS ───────────────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.stat-card { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 32px; text-align: center; transition: border-color 0.3s, transform 0.3s; }
.stat-card:hover { border-color: rgba(6,182,212,0.3); transform: translateY(-4px); }
.stat-num { font-size: clamp(36px, 5vw, 56px); font-weight: 900; background: linear-gradient(135deg, var(--cyan), #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 14px; color: var(--muted2); margin-top: 8px; }

/* ── PRICING ─────────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; max-width: 1180px; margin: 0 auto; }
.price-card { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 28px; position: relative; overflow: hidden; transition: transform 0.3s, border-color 0.3s; }
.price-card:hover { transform: translateY(-6px); }
.price-card.featured { border-color: rgba(6,182,212,0.4); background: linear-gradient(135deg, rgba(6,182,212,0.06), rgba(124,58,237,0.04)); }
.price-popular { position: absolute; top: 20px; right: 20px; background: var(--cyan); color: #000; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 4px 12px; border-radius: 100px; }
.price-plan { font-size: 13px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.price-amount { font-size: 48px; font-weight: 900; margin-bottom: 4px; letter-spacing: -2px; }
.price-amount span { font-size: 20px; font-weight: 400; color: var(--muted); vertical-align: top; margin-top: 10px; display: inline-block; }
.price-per { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.price-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }
.price-features { list-style: none; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted2); padding: 6px 0; }
.price-features li::before { content: '✓'; color: var(--cyan); font-weight: 700; font-size: 13px; flex-shrink: 0; }
.price-btn { display: block; width: 100%; text-align: center; padding: 13px; border-radius: 12px; margin-top: 28px; font-size: 15px; font-weight: 700; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none; }
.price-btn-outline { border: 1px solid var(--border); color: #fff; background: transparent; }
.price-btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }
.price-btn-fill { background: var(--cyan); color: #000; }
.price-btn-fill:hover { background: #22d3ee; transform: translateY(-1px); }

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.testimonial { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 28px; transition: border-color 0.3s, transform 0.3s; }
.testimonial:hover { border-color: rgba(6,182,212,0.25); transform: translateY(-4px); }
.testimonial-stars { color: #fbbf24; font-size: 16px; margin-bottom: 16px; }
.testimonial-text { font-size: 15px; color: var(--muted2); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), #7c3aed); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: #fff; }
.testimonial-name { font-weight: 700; font-size: 14px; }
.testimonial-role { font-size: 12px; color: var(--muted); }

/* ── CTA BANNER ──────────────────────────────────────────────── */
.cta-banner { background: linear-gradient(135deg, rgba(6,182,212,0.12), rgba(124,58,237,0.08)); border: 1px solid rgba(6,182,212,0.2); border-radius: 28px; padding: 72px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%); width: 400px; height: 400px; background: radial-gradient(circle, rgba(6,182,212,0.15), transparent 60%); pointer-events: none; }
.cta-banner h2 { font-size: clamp(28px, 5vw, 48px); font-weight: 900; letter-spacing: -1px; margin-bottom: 16px; position: relative; z-index: 1; }
.cta-banner p { font-size: clamp(15px, 2vw, 18px); color: var(--muted2); max-width: 480px; margin: 0 auto 36px; line-height: 1.7; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer { border-top: 1px solid var(--border); padding: 60px 5% 36px; background: var(--surface); position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; max-width: 1200px; margin: 0 auto 48px; }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-top: 14px; max-width: 260px; }
.footer-col h4 { font-size: 13px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color 0.2s; cursor: pointer; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; max-width: 1200px; margin: 0 auto; }
.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: var(--muted); text-decoration: none; }
.footer-bottom-links a:hover { color: #fff; }

/* ── ANIMATIONS / REVEAL ─────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(38px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── FACE VERIFICATION SHOWCASE ──────────────────────────────── */
.fv-bg { background: radial-gradient(ellipse 60% 50% at 82% 0%, rgba(6,182,212,0.07), transparent 60%), var(--surface); }
.fv-top { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 90px; }
.fv-illustration { position: relative; display: flex; justify-content: center; }
.scan-frame {
  position: relative; width: 100%; max-width: 420px;
  background: linear-gradient(160deg, #0d0f12, #070809);
  border: 1px solid rgba(6,182,212,0.25); border-radius: 26px; padding: 16px;
  box-shadow: 0 40px 110px -30px rgba(6,182,212,0.4);
}
.scan-svg { width: 100%; height: auto; display: block; }
.fv-chip {
  position: absolute; background: rgba(13,13,15,0.94); border: 1px solid var(--border);
  border-radius: 12px; padding: 9px 13px; display: flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 600; color: #fff; backdrop-filter: blur(8px);
  box-shadow: 0 14px 34px -12px rgba(0,0,0,0.7); z-index: 2; white-space: nowrap;
}
.fv-chip .dotg { width: 8px; height: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 10px #34d399; }
.fv-chip.tr { top: 14px; right: -20px; animation: floaty 4s ease-in-out infinite; }
.fv-chip.bl { bottom: 34px; left: -22px; animation: floaty 4.6s ease-in-out infinite reverse; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.device-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.device-card { background: var(--surface2); border: 1px solid var(--border); border-radius: 20px; padding: 28px 24px; transition: border-color .3s, box-shadow .3s; position: relative; overflow: hidden; }
.device-card .glare { position: absolute; inset: 0; border-radius: 20px; opacity: 0; background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(6,182,212,0.16), transparent 45%); transition: opacity .3s; pointer-events: none; }
.device-card:hover { border-color: rgba(6,182,212,0.35); box-shadow: 0 20px 50px -22px rgba(6,182,212,0.3); }
.device-card:hover .glare { opacity: 1; }
.device-art { height: 168px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; position: relative; z-index: 1; }
.device-art svg { height: 168px; width: auto; max-width: 100%; }
.device-tag { display:inline-block; margin-bottom:12px; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:1px; padding:4px 10px; border-radius:100px; background:rgba(6,182,212,0.1); color:var(--cyan); position: relative; z-index: 1; }
.device-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; position: relative; z-index: 1; }
.device-card p { font-size: 14px; color: var(--muted2); line-height: 1.65; position: relative; z-index: 1; }

.vs-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 64px; position: relative; }
.vs-or { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); z-index:3; width:54px; height:54px; border-radius:50%; background:#000; border:1px solid rgba(6,182,212,0.45); display:flex; align-items:center; justify-content:center; font-weight:800; font-size:13px; color:var(--cyan); box-shadow:0 0 30px rgba(6,182,212,0.3); }
.vs-col { border-radius: 22px; padding: 32px; border: 1px solid var(--border); }
.vs-old { background: rgba(255,255,255,0.02); }
.vs-new { background: linear-gradient(160deg, rgba(6,182,212,0.09), rgba(124,58,237,0.05)); border-color: rgba(6,182,212,0.3); }
.vs-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.vs-old h4 { color: #f87171; }
.vs-new h4 { color: var(--cyan); }
.vs-col .vs-title { font-size: 19px; font-weight: 800; margin-bottom: 22px; color: #fff; }
.vs-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.vs-col li { display: flex; gap: 12px; font-size: 14px; color: var(--muted2); line-height: 1.5; }
.vs-col li .ic { flex-shrink: 0; width: 20px; height: 20px; border-radius: 6px; display:flex; align-items:center; justify-content:center; font-size: 12px; font-weight: 800; margin-top: 1px; }
.vs-old .ic { background: rgba(239,68,68,0.12); color: #f87171; }
.vs-new .ic { background: rgba(16,185,129,0.14); color: #34d399; }

/* ── SIGNUP MODAL ────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0.35s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  width: 100%; max-width: 460px; position: relative;
  background: linear-gradient(160deg, #0d0d0f, #070708);
  border: 1px solid rgba(6,182,212,0.25); border-radius: 24px;
  padding: 40px; overflow: hidden;
  transform: translateY(30px) scale(0.96); opacity: 0;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease;
  box-shadow: 0 40px 120px -30px rgba(6,182,212,0.4);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); opacity: 1; }
.modal::before { content: ''; position: absolute; top: -80px; right: -80px; width: 240px; height: 240px; background: radial-gradient(circle, rgba(6,182,212,0.25), transparent 65%); pointer-events: none; }
.modal-close { position: absolute; top: 18px; right: 18px; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border); background: rgba(255,255,255,0.04); color: var(--muted2); font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; z-index: 3; }
.modal-close:hover { color: #fff; border-color: rgba(255,255,255,0.25); transform: rotate(90deg); }
.modal-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(6,182,212,0.1); border: 1px solid rgba(6,182,212,0.25); border-radius: 100px; padding: 5px 12px; font-size: 12px; color: var(--cyan); font-weight: 600; margin-bottom: 16px; position: relative; z-index: 2; }
.modal h2 { font-size: 26px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 6px; position: relative; z-index: 2; }
.modal .modal-sub { font-size: 14px; color: var(--muted2); margin-bottom: 24px; position: relative; z-index: 2; }
.form-row { position: relative; margin-bottom: 16px; z-index: 2; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { position: relative; }
.field input, .field select, .field textarea {
  width: 100%; background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px 14px 8px; font-size: 14px; color: #fff;
  font-family: inherit; transition: border-color 0.2s, background 0.2s; outline: none;
}
.field textarea { resize: vertical; min-height: 70px; padding-top: 20px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--cyan); background: rgba(6,182,212,0.05); }
.field label { position: absolute; left: 14px; top: 14px; font-size: 14px; color: var(--muted); pointer-events: none; transition: all 0.2s ease; }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field select:focus + label, .field select.filled + label {
  top: 6px; font-size: 10px; color: var(--cyan); letter-spacing: 0.5px; text-transform: uppercase;
}
.field select { appearance: none; color: var(--muted2); }
.field select.filled { color: #fff; }
.field .chev { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; font-size: 12px; }
.modal-submit {
  width: 100%; background: var(--cyan); color: #000; border: none; border-radius: 12px;
  padding: 15px; font-size: 15px; font-weight: 700; cursor: pointer; margin-top: 8px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.2s; position: relative; z-index: 2; overflow: hidden;
}
.modal-submit:hover:not(:disabled) { background: #22d3ee; transform: translateY(-1px); box-shadow: 0 10px 30px -8px rgba(6,182,212,0.6); }
.modal-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.spinner { width: 18px; height: 18px; border: 2px solid rgba(0,0,0,0.25); border-top-color: #000; border-radius: 50%; animation: spin 0.7s linear infinite; display: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.modal-foot { text-align: center; font-size: 12px; color: var(--muted); margin-top: 16px; position: relative; z-index: 2; }
.modal-foot a { color: var(--cyan); text-decoration: none; cursor: pointer; }
.form-error { color: #f87171; font-size: 12px; margin-top: 6px; display: none; }
.form-error.show { display: block; }

/* success state */
.modal-success { display: none; text-align: center; padding: 20px 0; position: relative; z-index: 2; }
.modal-success.show { display: block; animation: fadeUp 0.5s ease both; }
.success-check { width: 76px; height: 76px; margin: 0 auto 20px; border-radius: 50%; background: rgba(16,185,129,0.12); border: 2px solid #34d399; display: flex; align-items: center; justify-content: center; }
.success-check svg { width: 40px; height: 40px; }
.success-check path { stroke: #34d399; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; fill: none; stroke-dasharray: 60; stroke-dashoffset: 60; animation: drawCheck 0.6s 0.2s ease forwards; }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }
.modal-success h2 { margin-bottom: 8px; }
.modal-success p { color: var(--muted2); font-size: 14px; margin-bottom: 24px; }

/* ── MOBILE ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { position: fixed; inset: 68px 0 0 0; z-index: 99; background: rgba(0,0,0,0.97); backdrop-filter: blur(20px); padding: 32px 24px; display: none; flex-direction: column; gap: 8px; border-top: 1px solid var(--border); }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { display: block; padding: 14px 16px; border-radius: 12px; font-size: 16px; color: var(--muted2); text-decoration: none; font-weight: 500; transition: all 0.2s; }
  .mobile-menu a:hover { background: var(--surface2); color: #fff; }
  .mobile-menu-divider { border: none; border-top: 1px solid var(--border); margin: 8px 0; }
  .mobile-menu .btn-primary { display: block; text-align: center; padding: 14px; border-radius: 12px; font-size: 16px; margin-top: 8px; }
  .hero { padding: 100px 20px 60px; }
  .hero h1 { letter-spacing: -1px; }
  .hero-stats { gap: 32px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-hero, .btn-hero-outline { width: 100%; max-width: 320px; justify-content: center; }
  section { padding: 72px 20px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse { direction: ltr; }
  .steps::before { display: none; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .cta-banner { padding: 48px 24px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .modal { padding: 32px 24px; }
  .fv-top { grid-template-columns: 1fr; gap: 44px; margin-bottom: 64px; }
  .device-grid { grid-template-columns: 1fr; }
  .vs-wrap { grid-template-columns: 1fr; gap: 40px; }
  .vs-or { display: none; }
  .fv-chip.tr { right: 6px; } .fv-chip.bl { left: 6px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .form-row.two { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .orb { animation: none !important; }
}

/* ── PREMIUM FEATURE ICONS ───────────────────────────────────── */
.feature-icon svg { width: 26px; height: 26px; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.icon-cyan svg{stroke:#22d3ee} .icon-purple svg{stroke:#a78bfa} .icon-green svg{stroke:#34d399}
.icon-orange svg{stroke:#fb923c} .icon-pink svg{stroke:#f472b6} .icon-blue svg{stroke:#60a5fa}
.icon-yellow svg{stroke:#facc15} .icon-teal svg{stroke:#2dd4bf}

/* ── COMPLIANCE TRUST BAR ────────────────────────────────────── */
.trustbar { border-top:1px solid var(--border); border-bottom:1px solid var(--border); background:rgba(255,255,255,0.015); position:relative; z-index:2; }
.trustbar-inner { max-width:1200px; margin:0 auto; padding:22px 5%; display:flex; align-items:center; justify-content:center; gap:14px 34px; flex-wrap:wrap; }
.trustbar-lead { font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:2px; color:var(--muted); }
.trust-item { display:inline-flex; align-items:center; gap:8px; font-size:13.5px; font-weight:600; color:var(--muted2); }
.trust-item svg { width:16px; height:16px; stroke:var(--cyan); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; flex:none; }

/* ── SECURITY / COMPLIANCE SECTION ───────────────────────────── */
.trust-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:18px; }
.trust-card { background:var(--surface); border:1px solid var(--border); border-radius:18px; padding:26px; transition:border-color .3s, transform .2s, box-shadow .3s; }
.trust-card:hover { border-color:rgba(6,182,212,0.32); transform:translateY(-3px); box-shadow:0 20px 44px -22px rgba(6,182,212,0.28); }
.trust-card-icon { width:46px; height:46px; border-radius:12px; background:rgba(6,182,212,0.1); display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
.trust-card-icon svg { width:24px; height:24px; stroke:var(--cyan); fill:none; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.trust-card h3 { font-size:16px; font-weight:700; margin-bottom:8px; }
.trust-card p { font-size:13.5px; color:var(--muted2); line-height:1.65; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { max-width:760px; margin:0 auto; display:flex; flex-direction:column; gap:12px; }
.faq-item { background:var(--surface); border:1px solid var(--border); border-radius:14px; overflow:hidden; transition:border-color .3s; }
.faq-item[open] { border-color:rgba(6,182,212,0.3); }
.faq-item summary { list-style:none; cursor:pointer; padding:20px 24px; font-size:15.5px; font-weight:600; color:#fff; display:flex; align-items:center; justify-content:space-between; gap:16px; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after { content:'+'; font-size:22px; font-weight:400; color:var(--cyan); transition:transform .25s; flex:none; line-height:1; }
.faq-item[open] summary::after { transform:rotate(45deg); }
.faq-item .faq-a { padding:0 24px 20px; font-size:14px; color:var(--muted2); line-height:1.75; }

/* ── TESTIMONIAL COMPANY ─────────────────────────────────────── */
.testimonial-company { font-size:11.5px; color:var(--cyan); font-weight:600; margin-top:2px; }

/* ── BREADCRUMB (sub-pages) ───────────────────────────────────── */
.breadcrumb { position:relative; z-index:2; max-width:1200px; margin:0 auto; padding:88px 5% 0; font-size:13px; color:var(--muted); }
.breadcrumb a { color:var(--muted2); text-decoration:none; }
.breadcrumb a:hover { color:var(--cyan); }

/* ── TWO INTERFACES (Modern UI) ───────────────────────────────── */
.ui-wrap { display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:56px; }
.ui-panel { border-radius:22px; padding:26px; border:1px solid var(--border); overflow:hidden; }
.ui-panel-classic { background:var(--surface); }
.ui-panel-modern { background:linear-gradient(160deg, rgba(6,182,212,0.1), rgba(124,58,237,0.06)); border-color:rgba(6,182,212,0.3); position:relative; }
.ui-panel-modern::before { content:'PREMIUM ADD-ON'; position:absolute; top:18px; right:-34px; transform:rotate(40deg); background:var(--cyan); color:#000; font-size:10px; font-weight:800; letter-spacing:1px; padding:4px 44px; z-index:2; }
.ui-panel h4 { font-size:12px; text-transform:uppercase; letter-spacing:1px; color:var(--muted); margin-bottom:4px; }
.ui-panel .ui-title { font-size:19px; font-weight:800; margin-bottom:18px; color:#fff; }
.ui-mock { border-radius:14px; overflow:hidden; border:1px solid var(--border); margin-bottom:18px; }
.ui-mock-classic { background:#0e0e10; }
.ui-mock-modern { background:linear-gradient(160deg,#050b12,#0a1420); border-color:rgba(6,182,212,0.35); box-shadow:0 0 0 1px rgba(6,182,212,0.08) inset; }
.ui-mock-bar { display:flex; gap:6px; padding:10px 12px; border-bottom:1px solid var(--border); }
.ui-mock-bar span { width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,0.15); display:inline-block; }
.ui-mock-body { padding:16px; display:flex; flex-direction:column; gap:8px; }
.ui-mock-bar-chart { display:flex; align-items:flex-end; gap:5px; height:52px; }
.ui-mock-bar-chart div { flex:1; border-radius:3px 3px 0 0; background:rgba(255,255,255,0.12); }
.ui-mock-modern .ui-mock-bar-chart div { background:linear-gradient(180deg, var(--cyan), rgba(6,182,212,0.15)); box-shadow:0 0 12px rgba(6,182,212,0.35); }
.ui-panel ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.ui-panel li { display:flex; gap:10px; font-size:13.5px; color:var(--muted2); line-height:1.5; }
.ui-panel li span.dot { flex-shrink:0; width:6px; height:6px; border-radius:50%; background:var(--muted); margin-top:6px; }
.ui-panel-modern li span.dot { background:var(--cyan); box-shadow:0 0 8px var(--cyan); }

@media (max-width: 768px) {
  .trustbar-inner { gap:12px 20px; padding:18px 20px; }
  .trust-item { font-size:12.5px; }
  .faq-item summary { padding:16px 18px; font-size:14.5px; }
  .ui-wrap { grid-template-columns:1fr; }
}
