
/* ════════════════════════════════════════
   TOKENS
════════════════════════════════════════ */
:root {
  --bg:       #070B12;
  --bg2:      #0A1018;
  --surface:  #0E1520;
  --surface2: #121B28;
  --surface3: #16202E;
  --c1: #FF4D6D;
  --c2: #FF8C42;
  --c3: #00D4FF;
  --c4: #7B5EFF;
  --c5: #00E5A0;
  --grad: linear-gradient(135deg, #FF4D6D 0%, #FF8C42 25%, #FFD700 50%, #00D4FF 75%, #7B5EFF 100%);
  --grad-s: linear-gradient(135deg, #FF4D6D, #FF8C42, #FFD700);
  --grad-c: linear-gradient(135deg, #00D4FF, #7B5EFF);
  --text:  #F0F4FF;
  --text2: #B8C4D8;
  --muted: #5A6A80;
  --muted2:#7A8CA0;
  --border: rgba(255,255,255,0.07);
  --border2:rgba(255,255,255,0.12);
  --glass:  rgba(14,21,32,0.8);
  --r: 12px;
  --r-lg: 20px;
  --r-full: 9999px;
}

/* ════════════════════════════════════════
   BASE
════════════════════════════════════════ */
html { background:#070B12; scroll-behavior:smooth; }
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
body { font-family:'DM Sans',sans-serif; background:#070B12; color:var(--text); overflow-x:hidden; line-height:1.6; }

/* ════════════════════════════════════════
   BG — mesh gradient + grid
════════════════════════════════════════ */
.scene {
  position:fixed; inset:0; z-index:0; overflow:hidden; pointer-events:none;
  background:#070B12;
}
/* Dot grid */
.scene::before {
  content:'';
  position:absolute; inset:0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
/* Mesh orbs */
.orb {
  position:fixed; border-radius:50%; filter:blur(100px); pointer-events:none;
  animation: orbdrift 20s ease-in-out infinite alternate;
}
.o1 { width:800px; height:600px; top:-200px; right:-150px; background:radial-gradient(ellipse, rgba(123,94,255,0.18) 0%, transparent 65%); animation-delay:0s; }
.o2 { width:600px; height:500px; bottom:-100px; left:-100px; background:radial-gradient(ellipse, rgba(0,212,255,0.10) 0%, transparent 65%); animation-delay:-7s; animation-duration:25s; }
.o3 { width:500px; height:400px; top:40%; left:35%; background:radial-gradient(ellipse, rgba(255,77,109,0.07) 0%, transparent 65%); animation-delay:-13s; animation-duration:18s; }
.o4 { width:400px; height:300px; top:60%; right:20%; background:radial-gradient(ellipse, rgba(0,229,160,0.06) 0%, transparent 65%); animation-delay:-5s; animation-duration:22s; }
@keyframes orbdrift { from{transform:translate(0,0) scale(1)} to{transform:translate(40px,30px) scale(1.08)} }

/* Noise */
.noise {
  position:fixed; inset:0; z-index:1; pointer-events:none; opacity:0.025;
  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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size:200px;
}

/* ════════════════════════════════════════
   LAYOUT
════════════════════════════════════════ */
.wrap { position:relative; z-index:2; }
.container { max-width:1200px; margin:0 auto; padding:0 2rem; }
section { padding:7rem 2rem; }

/* ════════════════════════════════════════
   TYPOGRAPHY
════════════════════════════════════════ */
.display { font-family:'Space Grotesk',sans-serif; }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.grad-text-c {
  background: var(--grad-c);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ════════════════════════════════════════
   CHIP / LABEL
════════════════════════════════════════ */
.chip {
  display:inline-flex; align-items:center; gap:.5rem;
  font-size:.7rem; font-weight:600; letter-spacing:.18em; text-transform:uppercase;
  padding:.35rem 1rem; border-radius:var(--r-full);
  background:rgba(123,94,255,0.1); border:1px solid rgba(123,94,255,0.25);
  color:rgba(180,160,255,0.9);
}
.chip-dot { width:6px; height:6px; border-radius:50%; background:#7B5EFF; box-shadow:0 0 6px #7B5EFF; animation:pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(.8)} }

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn {
  display:inline-flex; align-items:center; gap:.5rem;
  font-family:'DM Sans',sans-serif; font-weight:500; font-size:.9rem;
  letter-spacing:.02em; text-decoration:none; cursor:pointer; border:none;
  padding:.9375rem 1.875rem; border-radius:var(--r-full);
  transition:all .28s cubic-bezier(.25,.46,.45,.94);
}
.btn svg { width:16px; height:16px; flex-shrink:0; }
.btn-grad {
  background:var(--grad);
  color:#fff; font-weight:600;
  box-shadow:0 4px 24px rgba(123,94,255,0.35);
  position:relative; overflow:hidden;
}
.btn-grad::before {
  content:''; position:absolute; inset:0;
  background:rgba(255,255,255,0); transition:background .25s;
}
.btn-grad:hover::before { background:rgba(255,255,255,0.1); }
.btn-grad:hover { transform:translateY(-2px); box-shadow:0 8px 36px rgba(123,94,255,0.5); }
.btn-outline {
  background:rgba(255,255,255,0.04); border:1px solid var(--border2); color:var(--text2);
  backdrop-filter:blur(8px);
}
.btn-outline:hover { background:rgba(255,255,255,0.08); border-color:rgba(255,255,255,.22); color:var(--text); transform:translateY(-1px); }

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.navbar {
  position:fixed; top:0; left:0; right:0; z-index:200;
  padding:1.25rem 2rem; transition:all .35s ease;
}
.navbar.scrolled {
  background:rgba(7,11,18,0.92);
  backdrop-filter:blur(24px); -webkit-backdrop-filter:blur(24px);
  border-bottom:1px solid var(--border);
  padding:.875rem 2rem;
}
.nav-inner { display:flex; align-items:center; justify-content:space-between; max-width:1200px; margin:0 auto; }
.nav-logo { display:flex; align-items:center; gap:.625rem; text-decoration:none; }
.nav-logo img { width:40px; height:40px; object-fit:contain; flex-shrink:0; }
.nav-logo-text { font-family:'Space Grotesk',sans-serif; font-size:1.1rem; font-weight:700; color:var(--text); letter-spacing:.02em; }
.nav-logo-text span { background:var(--grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.nav-links { display:none; list-style:none; gap:2rem; }
@media(min-width:768px){ .nav-links { display:flex; } }
.nav-links a { font-size:.8125rem; color:var(--muted2); text-decoration:none; font-weight:400; letter-spacing:.02em; transition:color .2s; }
.nav-links a:hover { color:var(--text); }
.nav-actions { display:none; gap:.75rem; align-items:center; }
@media(min-width:768px){ .nav-actions { display:flex; } }
.nav-toggle { display:none; background:none; border:none; cursor:pointer; padding:.25rem; }
.nav-toggle span { display:block; width:22px; height:1.5px; background:var(--text); margin:5px 0; transition:all .3s; }
@media(max-width:767px){
  .nav-toggle { display:block; }
  .nav-links { display:flex; flex-direction:column; position:fixed; inset:0; background:rgba(7,11,18,.98); backdrop-filter:blur(20px); justify-content:center; align-items:center; transform:translateX(100%); transition:transform .4s cubic-bezier(.25,.46,.45,.94); z-index:190; gap:0; }
  .nav-links.open { transform:none; }
  .nav-links li { opacity:0; transform:translateY(12px); transition:all .35s; }
  .nav-links.open li { opacity:1; transform:none; }
  .nav-links.open li:nth-child(1){transition-delay:.06s}.nav-links.open li:nth-child(2){transition-delay:.11s}.nav-links.open li:nth-child(3){transition-delay:.17s}.nav-links.open li:nth-child(4){transition-delay:.22s}.nav-links.open li:nth-child(5){transition-delay:.27s}
  .nav-links a { font-size:1.25rem; padding:.875rem; }
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  min-height:100svh; padding:8rem 2rem 5rem;
  display:flex; align-items:center;
  position:relative; overflow:hidden;
}
.hero-inner {
  max-width:1200px; margin:0 auto; width:100%;
  display:grid; gap:4rem; align-items:center;
}
@media(min-width:1024px){ .hero-inner { grid-template-columns:1fr 500px; gap:5rem; } }

/* Left copy */
.hero-chip { margin-bottom:2rem; }
.hero h1 {
  font-family:'Space Grotesk',sans-serif;
  font-size:clamp(2.5rem, 5vw, 4.25rem);
  font-weight:700; line-height:1.08;
  color:var(--text); letter-spacing:-.03em;
  margin-bottom:1.5rem;
}
.hero h1 .line2 { display:block; margin-top:.25rem; }
.hero-sub {
  font-size:1.0625rem; color:var(--muted2); font-weight:300;
  line-height:1.8; max-width:500px; margin-bottom:2.5rem;
}
.hero-sub strong { color:var(--text2); font-weight:500; }
.hero-ctas { display:flex; flex-wrap:wrap; gap:.875rem; margin-bottom:2.75rem; }
.hero-social-proof { display:flex; align-items:center; gap:1.25rem; flex-wrap:wrap; }
.hsp-avatars { display:flex; }
.hsp-av { width:32px; height:32px; border-radius:50%; border:2px solid var(--bg); background:var(--surface3); margin-left:-8px; font-size:.75rem; display:flex; align-items:center; justify-content:center; font-weight:600; }
.hsp-av:first-child { margin-left:0; }
.hsp-av.av1 { background:linear-gradient(135deg,#FF4D6D,#FF8C42); }
.hsp-av.av2 { background:linear-gradient(135deg,#00D4FF,#7B5EFF); }
.hsp-av.av3 { background:linear-gradient(135deg,#00E5A0,#00D4FF); }
.hsp-av.av4 { background:linear-gradient(135deg,#FFD700,#FF8C42); }
.hsp-text { font-size:.8125rem; color:var(--muted2); }
.hsp-text strong { color:var(--text2); font-weight:500; }

/* ════════════════════════════════════════
   HERO CRM ANIMATION PANEL
════════════════════════════════════════ */
.crm-panel {
  position:relative;
  height:560px;
}
@media(max-width:1023px){ .crm-panel { height:440px; } }

/* Main dashboard frame */
.crm-frame {
  position:absolute; inset:0;
  background:var(--surface);
  border:1px solid var(--border2);
  border-radius:var(--r-lg);
  overflow:hidden;
  box-shadow:0 32px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(123,94,255,0.08);
}
.crm-titlebar {
  height:38px; background:var(--surface2);
  border-bottom:1px solid var(--border);
  display:flex; align-items:center; padding:0 1rem; gap:.5rem;
}
.tb-dot { width:10px; height:10px; border-radius:50%; }
.tb-r { background:#FF5F57; }.tb-y { background:#FFBD2E; }.tb-g { background:#28CA42; }
.tb-title { margin-left:.5rem; font-size:.7rem; font-weight:500; color:var(--muted); letter-spacing:.1em; text-transform:uppercase; }

.crm-body { display:flex; height:calc(100% - 38px); }

/* Sidebar */
.crm-sidebar {
  width:52px; background:var(--bg2);
  border-right:1px solid var(--border);
  display:flex; flex-direction:column; align-items:center;
  padding:.875rem 0; gap:.75rem;
}
.sb-icon {
  width:32px; height:32px; border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  cursor:default; transition:background .2s;
}
.sb-icon.active { background:rgba(123,94,255,0.2); }
.sb-icon svg { width:16px; height:16px; color:var(--muted); }
.sb-icon.active svg { color:#9B7FFF; }
.sb-divider { width:24px; height:1px; background:var(--border); }

/* Main content area */
.crm-main { flex:1; padding:1.125rem; display:flex; flex-direction:column; gap:.875rem; overflow:hidden; }

/* Metrics row */
.crm-metrics { display:grid; grid-template-columns:repeat(3,1fr); gap:.625rem; }
.cm { background:var(--surface2); border:1px solid var(--border); border-radius:8px; padding:.875rem; }
.cm-lbl { font-size:.6rem; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); margin-bottom:.375rem; }
.cm-val { font-family:'Space Grotesk',sans-serif; font-size:1.25rem; font-weight:700; color:var(--text); line-height:1; }
.cm-delta { font-size:.65rem; margin-top:.25rem; font-weight:500; }
.cm-delta.up { color:var(--c5); }
.cm-delta.down { color:var(--c1); }

/* Pipeline */
.crm-pipeline-lbl { font-size:.65rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); margin-bottom:.5rem; }
.crm-pipeline { display:grid; grid-template-columns:repeat(5,1fr); gap:.375rem; }
.pipe-col { display:flex; flex-direction:column; gap:.375rem; }
.pipe-head { font-size:.58rem; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color:var(--muted); text-align:center; padding:.25rem 0; border-radius:4px; }
.pipe-card {
  border-radius:6px; padding:.5rem .625rem;
  font-size:.65rem; line-height:1.4; color:var(--text2);
  border:1px solid var(--border); background:var(--surface3);
  cursor:default;
  transition:transform .15s, border-color .15s;
}
.pipe-card:hover { transform:translateY(-1px); border-color:var(--border2); }
.pipe-card .pc-name { font-weight:600; color:var(--text); font-size:.65rem; margin-bottom:.2rem; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.pipe-card .pc-val { color:var(--c5); font-weight:600; font-size:.6rem; }
.pipe-card.accent { background:rgba(123,94,255,0.1); border-color:rgba(123,94,255,0.25); }

/* Mini chart */
.crm-chart-row { display:grid; grid-template-columns:1fr 120px; gap:.625rem; }
.crm-chart { background:var(--surface2); border:1px solid var(--border); border-radius:8px; padding:.875rem; }
.chart-head { display:flex; justify-content:space-between; margin-bottom:.75rem; }
.ch-lbl { font-size:.65rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); }
.ch-val { font-size:.7rem; color:var(--c5); font-weight:600; }
.chart-bars { display:flex; align-items:flex-end; gap:.25rem; height:48px; }
.cb { flex:1; border-radius:3px 3px 0 0; background:rgba(123,94,255,0.25); transition:height .6s ease; }
.cb.lit { background:linear-gradient(180deg,rgba(123,94,255,0.8),rgba(0,212,255,0.5)); }
.crm-ai-box { background:rgba(0,229,160,0.05); border:1px solid rgba(0,229,160,0.15); border-radius:8px; padding:.875rem; }
.ai-head { font-size:.6rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--c5); margin-bottom:.5rem; display:flex; align-items:center; gap:.375rem; }
.ai-head::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--c5); box-shadow:0 0 8px var(--c5); animation:pulse 1.5s infinite; flex-shrink:0; }
.ai-typing { font-size:.72rem; color:var(--text2); line-height:1.6; }
.cursor { display:inline-block; width:2px; height:.85em; background:var(--c5); vertical-align:middle; animation:blink .9s step-end infinite; margin-left:1px; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* Floating notification cards */
.notif {
  position:absolute;
  background:rgba(14,21,32,0.92);
  border:1px solid var(--border2);
  border-radius:10px;
  padding:.75rem 1rem;
  backdrop-filter:blur(16px);
  box-shadow:0 12px 32px rgba(0,0,0,.5);
  z-index:20;
  animation:floatcard 8s ease-in-out infinite;
}
.n1 { top:-20px; right:60px; animation-delay:0s; width:200px; }
.n2 { bottom:60px; left:-20px; animation-delay:-3s; animation-duration:10s; width:190px; }
.n3 { bottom:160px; right:-16px; animation-delay:-6s; animation-duration:9s; width:170px; }
@keyframes floatcard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.notif-icon { width:28px; height:28px; border-radius:8px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.notif-icon svg { width:14px; height:14px; }
.notif-row { display:flex; align-items:flex-start; gap:.625rem; margin-bottom:.375rem; }
.notif-tag { font-size:.58rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; }
.notif-val { font-family:'Space Grotesk',sans-serif; font-size:1rem; font-weight:700; color:var(--text); line-height:1; }
.notif-sub { font-size:.65rem; color:var(--muted2); }

@media(max-width:767px){ .notif { display:none; } }

/* ════════════════════════════════════════
   DATA FLOW LINE — animated SVG
════════════════════════════════════════ */
.flow-canvas { position:absolute; inset:0; pointer-events:none; z-index:0; }

/* ════════════════════════════════════════
   CLIENTS STRIP
════════════════════════════════════════ */
.clients-strip {
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  padding:2rem; background:rgba(10,16,24,0.6);
  overflow:hidden;
}
.strip-inner { max-width:1200px; margin:0 auto; }
.strip-label { font-size:.65rem; font-weight:600; letter-spacing:.18em; text-transform:uppercase; color:var(--muted); text-align:center; margin-bottom:1.5rem; }
.strip-track { display:flex; gap:4rem; animation:marquee 30s linear infinite; width:max-content; }
.strip-item { font-family:'Space Grotesk',sans-serif; font-size:.9375rem; font-weight:600; color:rgba(176,188,208,0.2); letter-spacing:.04em; white-space:nowrap; }

@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ════════════════════════════════════════
   STATS
════════════════════════════════════════ */
.stats-sec { padding:5rem 2rem; }
.stats-grid {
  max-width:1200px; margin:0 auto;
  display:grid; gap:1px;
  background:var(--border); border:1px solid var(--border); border-radius:var(--r-lg); overflow:hidden;
}
@media(min-width:640px){ .stats-grid { grid-template-columns:repeat(4,1fr); } }
.stat-cell { background:var(--surface); padding:2.25rem 2rem; text-align:center; transition:background .3s; cursor:default; }
.stat-cell:hover { background:var(--surface2); }
.stat-num { font-family:'Space Grotesk',sans-serif; font-size:clamp(2rem,4vw,3rem); font-weight:700; background:var(--grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; line-height:1; margin-bottom:.5rem; }
.stat-desc { font-size:.78rem; color:var(--muted2); font-weight:300; line-height:1.5; }

/* ════════════════════════════════════════
   SECTION HEADERS
════════════════════════════════════════ */
.sh { margin-bottom:3.5rem; }
.sh.ctr { text-align:center; }
.sh h2 { font-family:'Space Grotesk',sans-serif; font-size:clamp(2rem,4vw,3rem); font-weight:700; color:var(--text); margin:1rem 0 1.125rem; line-height:1.1; letter-spacing:-.02em; }
.sh p { font-size:.9375rem; color:var(--muted2); font-weight:300; max-width:540px; line-height:1.8; }
.sh.ctr p { margin:0 auto; }

/* ════════════════════════════════════════
   SERVICES
════════════════════════════════════════ */
.svc-sec { background:linear-gradient(180deg, transparent, rgba(123,94,255,.04), transparent); border-top:1px solid var(--border); }
.svc-grid { max-width:1200px; margin:0 auto; display:grid; gap:1.25rem; }
@media(min-width:640px)  { .svc-grid { grid-template-columns:repeat(2,1fr); } }
@media(min-width:1024px) { .svc-grid { grid-template-columns:repeat(3,1fr); } }
.svc-card {
  padding:2.25rem 2rem; border-radius:var(--r);
  background:var(--surface); border:1px solid var(--border);
  transition:all .3s cubic-bezier(.25,.46,.45,.94);
  position:relative; overflow:hidden;
  cursor:default;
}
.svc-card::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 60% 50% at 50% 0%, rgba(123,94,255,0.08) 0%, transparent 70%);
  opacity:0; transition:opacity .3s;
}
.svc-card:hover { transform:translateY(-6px); border-color:rgba(123,94,255,0.3); box-shadow:0 16px 48px rgba(0,0,0,.4); }
.svc-card:hover::before { opacity:1; }
.svc-icon {
  width:48px; height:48px; border-radius:12px;
  display:flex; align-items:center; justify-content:center; margin-bottom:1.5rem;
  transition:transform .3s;
}
.svc-card:hover .svc-icon { transform:scale(1.1); }
.svc-icon svg { width:22px; height:22px; }
.svc-icon.i1 { background:rgba(255,77,109,0.1); border:1px solid rgba(255,77,109,0.2); }
.svc-icon.i1 svg { color:#FF4D6D; }
.svc-icon.i2 { background:rgba(0,212,255,0.1); border:1px solid rgba(0,212,255,0.2); }
.svc-icon.i2 svg { color:#00D4FF; }
.svc-icon.i3 { background:rgba(123,94,255,0.1); border:1px solid rgba(123,94,255,0.2); }
.svc-icon.i3 svg { color:#9B7FFF; }
.svc-icon.i4 { background:rgba(255,140,66,0.1); border:1px solid rgba(255,140,66,0.2); }
.svc-icon.i4 svg { color:#FF8C42; }
.svc-icon.i5 { background:rgba(0,229,160,0.1); border:1px solid rgba(0,229,160,0.2); }
.svc-icon.i5 svg { color:#00E5A0; }
.svc-icon.i6 { background:rgba(255,215,0,0.1); border:1px solid rgba(255,215,0,0.2); }
.svc-icon.i6 svg { color:#FFD700; }
.svc-name { font-family:'Space Grotesk',sans-serif; font-size:1.125rem; font-weight:700; color:var(--text); margin-bottom:.625rem; }
.svc-desc { font-size:.875rem; color:var(--muted2); line-height:1.7; font-weight:300; }
.svc-divider { height:1px; background:var(--border); margin:1.25rem 0; }
.svc-tags { display:flex; flex-wrap:wrap; gap:.375rem; }
.svc-tag { font-size:.62rem; font-weight:600; letter-spacing:.06em; text-transform:uppercase; padding:.2rem .5rem; border-radius:4px; }

/* ════════════════════════════════════════
   VIDEO SECTION
════════════════════════════════════════ */
.video-sec { border-top:1px solid var(--border); border-bottom:1px solid var(--border); background:var(--surface); padding:7rem 2rem; }
.video-inner { max-width:1200px; margin:0 auto; display:grid; gap:5rem; align-items:center; }
@media(min-width:1024px){ .video-inner { grid-template-columns:1fr 500px; } }
.video-copy .sh { margin-bottom:2rem; }
.video-copy h2 { font-family:'Space Grotesk',sans-serif; font-size:clamp(1.875rem,3.5vw,2.875rem); font-weight:700; color:var(--text); margin:1rem 0 1.125rem; line-height:1.1; letter-spacing:-.02em; }
.video-copy p { font-size:.9375rem; color:var(--muted2); font-weight:300; line-height:1.8; margin-bottom:2rem; }
.video-feats { display:flex; flex-direction:column; gap:.75rem; }
.vf-item { display:flex; align-items:center; gap:.75rem; font-size:.875rem; color:var(--text2); }
.vf-item::before { content:''; width:20px; height:1px; background:var(--grad-c); flex-shrink:0; }
/* Video placeholder */
.video-placeholder {
  aspect-ratio:16/9; border-radius:var(--r-lg);
  background:var(--surface2); border:1px solid var(--border2);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  position:relative; overflow:hidden; cursor:pointer;
}
.video-placeholder::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(123,94,255,0.08) 0%, rgba(0,212,255,0.04) 100%);
}
.vp-scanline {
  position:absolute; inset:0;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,212,255,0.015) 3px, rgba(0,212,255,0.015) 4px);
  pointer-events:none;
}
.play-btn {
  width:72px; height:72px; border-radius:50%;
  background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.2);
  display:flex; align-items:center; justify-content:center;
  backdrop-filter:blur(8px); position:relative; z-index:1;
  transition:all .3s; cursor:pointer;
}
.play-btn:hover { background:rgba(255,255,255,0.18); transform:scale(1.08); }
.play-btn svg { width:28px; height:28px; color:#fff; margin-left:4px; }
.vp-label { position:relative; z-index:1; margin-top:1rem; font-size:.75rem; color:var(--muted2); font-weight:400; letter-spacing:.06em; text-transform:uppercase; }
.vp-ring {
  position:absolute; border-radius:50%; border:1px solid rgba(123,94,255,0.15);
  animation:vpring 3s linear infinite;
}
.vp-ring:nth-child(1) { width:100px; height:100px; animation-delay:0s; }
.vp-ring:nth-child(2) { width:150px; height:150px; animation-delay:1s; }
.vp-ring:nth-child(3) { width:200px; height:200px; animation-delay:2s; }
@keyframes vpring { 0%{opacity:.6;transform:scale(.8)} 100%{opacity:0;transform:scale(1.5)} }
.vp-corner { position:absolute; width:20px; height:20px; }
.vp-tl { top:16px; left:16px; border-top:2px solid var(--c3); border-left:2px solid var(--c3); border-radius:4px 0 0 0; }
.vp-tr { top:16px; right:16px; border-top:2px solid var(--c4); border-right:2px solid var(--c4); border-radius:0 4px 0 0; }
.vp-bl { bottom:16px; left:16px; border-bottom:2px solid var(--c4); border-left:2px solid var(--c4); border-radius:0 0 0 4px; }
.vp-br { bottom:16px; right:16px; border-bottom:2px solid var(--c3); border-right:2px solid var(--c3); border-radius:0 0 4px 0; }

/* ════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════ */
.how-grid { max-width:1200px; margin:0 auto; display:grid; gap:1.25rem; }
@media(min-width:768px){ .how-grid { grid-template-columns:repeat(3,1fr); } }
.how-card {
  padding:2.25rem 2rem; border-radius:var(--r); border:1px solid var(--border);
  background:var(--surface); text-align:left; transition:all .3s;
  position:relative; overflow:hidden;
}
.how-card:hover { transform:translateY(-5px); border-color:rgba(255,255,255,0.14); }
.how-num {
  font-family:'Space Grotesk',sans-serif; font-size:3.5rem; font-weight:700;
  background:var(--grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
  line-height:1; margin-bottom:1.25rem; opacity:.4;
}
.how-t { font-family:'Space Grotesk',sans-serif; font-size:1.0625rem; font-weight:700; color:var(--text); margin-bottom:.625rem; }
.how-b { font-size:.875rem; color:var(--muted2); line-height:1.7; font-weight:300; }

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.tgrid { max-width:1200px; margin:0 auto; display:grid; gap:1.25rem; }
@media(min-width:768px){ .tgrid { grid-template-columns:repeat(3,1fr); } }
.tcard { padding:2.25rem 2rem; border-radius:var(--r); background:var(--surface); border:1px solid var(--border); transition:all .3s; }
.tcard:hover { transform:translateY(-5px); border-color:rgba(255,255,255,0.14); }
.tcard-stars { font-size:.8rem; letter-spacing:.06em; margin-bottom:1.125rem; background:var(--grad-s); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.tcard-body { font-size:.9375rem; color:var(--text2); line-height:1.75; margin-bottom:1.5rem; font-weight:300; font-style:italic; }
.tcard-foot { display:flex; align-items:center; gap:.75rem; border-top:1px solid var(--border); padding-top:1.125rem; }
.tcard-av { width:38px; height:38px; border-radius:50%; flex-shrink:0; display:flex; align-items:center; justify-content:center; font-family:'Space Grotesk',sans-serif; font-size:.875rem; font-weight:700; color:#fff; }
.tcard-av.ta1 { background:linear-gradient(135deg,#FF4D6D,#FF8C42); }
.tcard-av.ta2 { background:linear-gradient(135deg,#00D4FF,#7B5EFF); }
.tcard-av.ta3 { background:linear-gradient(135deg,#00E5A0,#00D4FF); }
.tcard-name { font-size:.875rem; font-weight:600; color:var(--text); }
.tcard-role { font-size:.72rem; color:var(--muted2); margin-top:.1rem; }

/* ════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════ */
.cta-sec {
  text-align:center; padding:8rem 2rem;
  position:relative; overflow:hidden;
  background:radial-gradient(ellipse 70% 60% at 50% 50%, rgba(123,94,255,0.1) 0%, transparent 65%);
  border-top:1px solid var(--border);
}
.cta-sec h2 { font-family:'Space Grotesk',sans-serif; font-size:clamp(2.25rem,5vw,4rem); font-weight:700; color:var(--text); margin:1rem auto 1.375rem; max-width:700px; line-height:1.08; letter-spacing:-.025em; }
.cta-sec p { font-size:1.0625rem; color:var(--muted2); max-width:480px; margin:0 auto 2.5rem; font-weight:300; line-height:1.8; }
.cta-trust { margin-top:2rem; display:flex; flex-wrap:wrap; gap:1.75rem; justify-content:center; }
.ct-item { display:flex; align-items:center; gap:.5rem; font-size:.78rem; color:var(--muted2); }
.ct-dot { width:5px; height:5px; border-radius:50%; flex-shrink:0; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer { border-top:1px solid var(--border); padding:3.5rem 2rem 2rem; }
.foot-grid { max-width:1200px; margin:0 auto; display:grid; gap:3rem; margin-bottom:3rem; }
@media(min-width:768px){ .foot-grid { grid-template-columns:2fr 1fr 1fr 1fr; } }
.foot-brand { }
.foot-brand img { width:48px; height:48px; object-fit:contain; margin-bottom:1rem; }
.foot-brand p { font-size:.8125rem; color:var(--muted); font-weight:300; line-height:1.7; max-width:260px; margin-top:.75rem; }
.foot-col h4 { font-family:'Space Grotesk',sans-serif; font-size:.7rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--muted); margin-bottom:1.25rem; }
.foot-links { list-style:none; display:flex; flex-direction:column; gap:.75rem; }
.foot-links a { font-size:.8125rem; color:var(--muted2); text-decoration:none; font-weight:300; transition:color .2s; }
.foot-links a:hover { color:var(--text); }
.foot-bottom { max-width:1200px; margin:0 auto; padding-top:2rem; border-top:1px solid var(--border); display:flex; flex-wrap:wrap; gap:1rem; justify-content:space-between; align-items:center; }
.foot-copy { font-size:.72rem; color:rgba(90,106,128,.5); }

/* ════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════ */
.sr   { opacity:0; transform:translateY(24px); transition:opacity .7s cubic-bezier(.25,.46,.45,.94), transform .7s cubic-bezier(.25,.46,.45,.94); }
.sr-l { opacity:0; transform:translateX(-24px); transition:opacity .7s cubic-bezier(.25,.46,.45,.94), transform .7s cubic-bezier(.25,.46,.45,.94); }
.sr-r { opacity:0; transform:translateX(24px); transition:opacity .7s cubic-bezier(.25,.46,.45,.94), transform .7s cubic-bezier(.25,.46,.45,.94); }
.sr.in,.sr-l.in,.sr-r.in { opacity:1; transform:none; }
.d1{transition-delay:.08s}.d2{transition-delay:.16s}.d3{transition-delay:.24s}
.d4{transition-delay:.32s}.d5{transition-delay:.40s}.d6{transition-delay:.48s}

::-webkit-scrollbar { width:4px; }
::-webkit-scrollbar-track { background:var(--bg); }
::-webkit-scrollbar-thumb { background:rgba(123,94,255,0.4); border-radius:9999px; }
@media(max-width:767px){ .hero-ctas .btn { width:100%; justify-content:center; } }

/* Hero text entrance */
.hero-copy > * {
  opacity:0; transform:translateY(20px);
  animation:heroIn .7s cubic-bezier(.25,.46,.45,.94) forwards;
}
.hero-copy .hero-chip { animation-delay:.1s; }
.hero-copy h1 { animation-delay:.22s; }
.hero-copy .hero-sub { animation-delay:.34s; }
.hero-copy .hero-ctas { animation-delay:.46s; }
.hero-copy .hero-social-proof { animation-delay:.58s; }
@keyframes heroIn { to { opacity:1; transform:none; } }

.crm-panel { opacity:0; transform:translateX(30px); animation:heroIn .8s .5s cubic-bezier(.25,.46,.45,.94) forwards; }


/* ════════════════════════════════════════
   SR FALLBACK — ensure content visible if JS fails
════════════════════════════════════════ */
@keyframes sr-fallback{to{opacity:1;transform:none}}
.sr,.sr-l,.sr-r{animation:sr-fallback .65s cubic-bezier(.25,.46,.45,.94) 1.2s forwards}
.sr.d1,.sr-l.d1,.sr-r.d1{animation-delay:1.28s}
.sr.d2,.sr-l.d2,.sr-r.d2{animation-delay:1.36s}
.sr.d3,.sr-l.d3,.sr-r.d3{animation-delay:1.44s}
.sr.d4,.sr-l.d4,.sr-r.d4{animation-delay:1.52s}
.sr.d5,.sr-l.d5,.sr-r.d5{animation-delay:1.60s}
.sr.d6,.sr-l.d6,.sr-r.d6{animation-delay:1.68s}
@media(prefers-reduced-motion:reduce){.sr,.sr-l,.sr-r{opacity:1!important;transform:none!important;animation:none!important;transition:none!important}}

/* ════════════════════════════════════════
   POST CONTENT TYPOGRAPHY
════════════════════════════════════════ */
.post-content { font-size:1.0625rem; line-height:1.9; color:var(--text2); }
.post-content h2 { font-family:'Space Grotesk',sans-serif; font-size:1.75rem; font-weight:700; color:var(--text); margin:2.5rem 0 1rem; letter-spacing:-.02em; }
.post-content h3 { font-family:'Space Grotesk',sans-serif; font-size:1.375rem; font-weight:600; color:var(--text); margin:2rem 0 .75rem; }
.post-content h4 { font-size:1.125rem; font-weight:600; color:var(--text); margin:1.5rem 0 .5rem; }
.post-content p { margin-bottom:1.25rem; }
.post-content a { color:var(--c3); text-decoration:underline; text-underline-offset:3px; transition:color .2s; }
.post-content a:hover { color:var(--c4); }
.post-content img { max-width:100%; height:auto; border-radius:var(--r); margin:1.5rem 0; border:1px solid var(--border); }
.post-content blockquote {
  border-left:3px solid var(--c4); padding:1.25rem 1.5rem; margin:1.5rem 0;
  background:rgba(123,94,255,0.06); border-radius:0 var(--r) var(--r) 0;
  font-style:italic; color:var(--text2);
}
.post-content blockquote p { margin-bottom:0; }
.post-content ul,.post-content ol { padding-left:1.5rem; margin-bottom:1.25rem; }
.post-content li { margin-bottom:.5rem; }
.post-content code {
  background:var(--surface2); padding:.15em .4em; border-radius:4px;
  font-size:.9em; color:var(--c3); font-family:'JetBrains Mono','Fira Code',monospace;
}
.post-content pre {
  background:var(--surface); border:1px solid var(--border); border-radius:var(--r);
  padding:1.25rem; overflow-x:auto; margin:1.5rem 0;
}
.post-content pre code { background:none; padding:0; color:var(--text2); }
.post-content hr { border:none; border-top:1px solid var(--border); margin:2.5rem 0; }
.post-content table { width:100%; border-collapse:collapse; margin:1.5rem 0; }
.post-content th { text-align:left; padding:.75rem 1rem; border-bottom:2px solid var(--border2); font-weight:600; color:var(--text); font-size:.875rem; }
.post-content td { padding:.75rem 1rem; border-bottom:1px solid var(--border); color:var(--text2); font-size:.9375rem; }
.post-content figure { margin:1.5rem 0; }
.post-content figcaption { text-align:center; font-size:.8125rem; color:var(--muted); margin-top:.5rem; }

/* Author bio */
.author-card { display:flex; gap:1.5rem; align-items:flex-start; padding:2rem; border-radius:var(--r-lg); background:var(--surface); border:1px solid var(--border); margin:3rem 0; }
.author-av { width:64px; height:64px; border-radius:50%; flex-shrink:0; display:flex; align-items:center; justify-content:center; font-family:'Space Grotesk',sans-serif; font-size:1.5rem; font-weight:700; color:#fff; background:var(--grad-c); }
.author-info h4 { font-family:'Space Grotesk',sans-serif; font-size:1rem; font-weight:600; color:var(--text); margin-bottom:.25rem; }
.author-info p { font-size:.875rem; color:var(--muted2); line-height:1.7; margin:0; }

/* Share bar */
.share-bar { display:flex; gap:.75rem; flex-wrap:wrap; margin:2rem 0; }
.share-btn { display:inline-flex; align-items:center; gap:.5rem; padding:.5rem 1rem; border-radius:var(--r-full); background:var(--surface); border:1px solid var(--border); color:var(--text2); font-size:.8125rem; text-decoration:none; cursor:pointer; transition:all .2s; }
.share-btn:hover { border-color:var(--border2); color:var(--text); background:var(--surface2); }

/* Related posts */
.related-grid { display:grid; gap:1.25rem; margin-top:1.5rem; }
@media(min-width:768px){ .related-grid { grid-template-columns:repeat(3,1fr); } }
.related-card { border-radius:var(--r); background:var(--surface); border:1px solid var(--border); overflow:hidden; transition:all .3s; text-decoration:none; }
.related-card:hover { transform:translateY(-4px); border-color:var(--border2); }
.related-card img { width:100%; height:180px; object-fit:cover; }
.related-card-body { padding:1.25rem; }
.related-card-body h4 { font-family:'Space Grotesk',sans-serif; font-size:.9375rem; font-weight:600; color:var(--text); margin-bottom:.5rem; line-height:1.4; }
.related-card-body p { font-size:.8125rem; color:var(--muted2); line-height:1.6; }
.related-card-body .meta { font-size:.72rem; color:var(--muted); margin-top:.75rem; }

/* ════════════════════════════════════════
   PAGE HERO — shared across About, Team, Services
════════════════════════════════════════ */
.page-hero {
  padding:10rem 2rem 5rem; text-align:center; position:relative; overflow:hidden;
  background:radial-gradient(ellipse 60% 50% at 50% 30%, rgba(123,94,255,0.08) 0%, transparent 65%);
}
.page-hero .chip { margin-bottom:1.5rem; }
.page-hero h1 {
  font-family:'Space Grotesk',sans-serif; font-size:clamp(2.5rem,6vw,4.5rem);
  font-weight:800; line-height:1.06; letter-spacing:-.03em; color:var(--text);
  max-width:800px; margin:0 auto 1.5rem;
}
.page-hero p {
  font-size:1.125rem; color:var(--muted2); max-width:600px; margin:0 auto;
  line-height:1.8; font-weight:300;
}

/* ════════════════════════════════════════
   ABOUT — Stats bar
════════════════════════════════════════ */
.stats-bar { display:grid; grid-template-columns:repeat(4,1fr); gap:1.25rem; max-width:900px; margin:0 auto; }
@media(max-width:767px){ .stats-bar { grid-template-columns:repeat(2,1fr); } }
.stat-item { text-align:center; padding:2rem 1rem; border-radius:var(--r); background:var(--surface); border:1px solid var(--border); }
.stat-num { font-family:'Space Grotesk',sans-serif; font-size:2.5rem; font-weight:800; background:var(--grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; line-height:1; margin-bottom:.5rem; }
.stat-label { font-size:.8125rem; color:var(--muted2); font-weight:300; }

/* About — story split */
.story-grid { display:grid; gap:3rem; align-items:center; max-width:1100px; margin:0 auto; }
@media(min-width:768px){ .story-grid { grid-template-columns:1fr 1fr; } }
.story-visual { border-radius:var(--r-lg); background:var(--surface); border:1px solid var(--border); padding:2.5rem; position:relative; overflow:hidden; min-height:320px; display:flex; align-items:center; justify-content:center; }
.story-visual-glow { position:absolute; width:200px; height:200px; border-radius:50%; filter:blur(80px); opacity:.3; }
.sg1 { background:var(--c4); top:-40px; right:-40px; }
.sg2 { background:var(--c3); bottom:-40px; left:-40px; }

/* About — Values */
.values-grid { display:grid; gap:1.25rem; max-width:1100px; margin:0 auto; }
@media(min-width:768px){ .values-grid { grid-template-columns:repeat(3,1fr); } }
.value-card { padding:2.25rem 2rem; border-radius:var(--r); background:var(--surface); border:1px solid var(--border); transition:all .3s; }
.value-card:hover { transform:translateY(-4px); border-color:var(--border2); }
.value-icon { width:48px; height:48px; border-radius:var(--r); display:flex; align-items:center; justify-content:center; font-size:1.5rem; margin-bottom:1.25rem; }
.vi1 { background:rgba(255,77,109,0.1); }
.vi2 { background:rgba(0,212,255,0.1); }
.vi3 { background:rgba(0,229,160,0.1); }
.value-card h3 { font-family:'Space Grotesk',sans-serif; font-size:1.0625rem; font-weight:700; color:var(--text); margin-bottom:.625rem; }
.value-card p { font-size:.875rem; color:var(--muted2); line-height:1.7; font-weight:300; }

/* About — Timeline */
.timeline { position:relative; max-width:700px; margin:0 auto; padding-left:2.5rem; }
.timeline::before { content:''; position:absolute; left:8px; top:0; bottom:0; width:2px; background:linear-gradient(to bottom, var(--c4), var(--c3), var(--c5)); border-radius:1px; }
.tl-item { position:relative; margin-bottom:2.5rem; }
.tl-item::before { content:''; position:absolute; left:-2.5rem; top:6px; width:18px; height:18px; border-radius:50%; background:var(--surface2); border:3px solid var(--c4); box-shadow:0 0 12px rgba(123,94,255,0.4); z-index:1; }
.tl-item:nth-child(2)::before { border-color:var(--c3); box-shadow:0 0 12px rgba(0,212,255,0.4); }
.tl-item:nth-child(3)::before { border-color:var(--c5); box-shadow:0 0 12px rgba(0,229,160,0.4); }
.tl-item:nth-child(4)::before { border-color:var(--c1); box-shadow:0 0 12px rgba(255,77,109,0.4); }
.tl-year { font-family:'Space Grotesk',sans-serif; font-size:.75rem; font-weight:700; color:var(--c4); letter-spacing:.1em; text-transform:uppercase; margin-bottom:.375rem; }
.tl-title { font-family:'Space Grotesk',sans-serif; font-size:1.0625rem; font-weight:600; color:var(--text); margin-bottom:.25rem; }
.tl-desc { font-size:.875rem; color:var(--muted2); line-height:1.7; font-weight:300; }

/* ════════════════════════════════════════
   SERVICES — Cards
════════════════════════════════════════ */
.svc-grid { display:grid; gap:1.25rem; max-width:1200px; margin:0 auto; }
@media(min-width:768px){ .svc-grid { grid-template-columns:repeat(2,1fr); } }
@media(min-width:1024px){ .svc-grid { grid-template-columns:repeat(3,1fr); } }
.svc-card { padding:2.5rem 2rem; border-radius:var(--r); background:var(--surface); border:1px solid var(--border); transition:all .3s; position:relative; overflow:hidden; }
.svc-card:hover { transform:translateY(-5px); border-color:var(--border2); }
.svc-card::after { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--grad); opacity:0; transition:opacity .3s; }
.svc-card:hover::after { opacity:1; }
.svc-icon { width:56px; height:56px; border-radius:var(--r); display:flex; align-items:center; justify-content:center; font-size:1.75rem; margin-bottom:1.5rem; }
.si1 { background:rgba(123,94,255,0.1); }
.si2 { background:rgba(0,212,255,0.1); }
.si3 { background:rgba(255,77,109,0.1); }
.si4 { background:rgba(0,229,160,0.1); }
.si5 { background:rgba(255,140,66,0.1); }
.si6 { background:rgba(255,215,0,0.1); }
.svc-card h3 { font-family:'Space Grotesk',sans-serif; font-size:1.125rem; font-weight:700; color:var(--text); margin-bottom:.75rem; }
.svc-card p { font-size:.875rem; color:var(--muted2); line-height:1.7; font-weight:300; margin-bottom:1.25rem; }
.svc-card ul { list-style:none; padding:0; }
.svc-card li { font-size:.8125rem; color:var(--text2); padding:.375rem 0; padding-left:1.25rem; position:relative; }
.svc-card li::before { content:'✓'; position:absolute; left:0; color:var(--c5); font-weight:700; }

/* Services — Industry links */
.ind-grid { display:grid; gap:1rem; max-width:1100px; margin:0 auto; }
@media(min-width:768px){ .ind-grid { grid-template-columns:repeat(3,1fr); } }
@media(min-width:1024px){ .ind-grid { grid-template-columns:repeat(4,1fr); } }
.ind-card { display:flex; align-items:center; gap:1rem; padding:1.25rem 1.5rem; border-radius:var(--r); background:var(--surface); border:1px solid var(--border); text-decoration:none; transition:all .3s; }
.ind-card:hover { transform:translateY(-3px); border-color:var(--border2); }
.ind-icon { font-size:1.5rem; flex-shrink:0; }
.ind-card span { font-size:.9375rem; font-weight:500; color:var(--text); }
.ind-card .arrow { margin-left:auto; color:var(--muted); transition:color .2s; }
.ind-card:hover .arrow { color:var(--c3); }

/* ════════════════════════════════════════
   TEAM — Grid & Cards
════════════════════════════════════════ */
.team-grid { display:grid; gap:1.25rem; max-width:1100px; margin:0 auto; }
@media(min-width:768px){ .team-grid { grid-template-columns:repeat(2,1fr); } }
@media(min-width:1024px){ .team-grid { grid-template-columns:repeat(3,1fr); } }
.team-card { padding:2.5rem 2rem; border-radius:var(--r); background:var(--surface); border:1px solid var(--border); text-align:center; transition:all .3s; }
.team-card:hover { transform:translateY(-5px); border-color:var(--border2); }
.team-av { width:80px; height:80px; border-radius:50%; margin:0 auto 1.25rem; display:flex; align-items:center; justify-content:center; font-family:'Space Grotesk',sans-serif; font-size:1.75rem; font-weight:700; color:#fff; }
.ta-1 { background:linear-gradient(135deg,#FF4D6D,#FF8C42); }
.ta-2 { background:linear-gradient(135deg,#00D4FF,#7B5EFF); }
.ta-3 { background:linear-gradient(135deg,#00E5A0,#00D4FF); }
.ta-4 { background:linear-gradient(135deg,#7B5EFF,#FF4D6D); }
.ta-5 { background:linear-gradient(135deg,#FF8C42,#FFD700); }
.ta-6 { background:linear-gradient(135deg,#00D4FF,#00E5A0); }
.team-card h3 { font-family:'Space Grotesk',sans-serif; font-size:1.0625rem; font-weight:700; color:var(--text); margin-bottom:.25rem; }
.team-role { font-size:.8125rem; color:var(--c3); font-weight:500; margin-bottom:1rem; }
.team-bio { font-size:.875rem; color:var(--muted2); line-height:1.7; font-weight:300; }
.team-links { display:flex; justify-content:center; gap:.75rem; margin-top:1.25rem; }
.team-links a { display:inline-flex; align-items:center; justify-content:center; width:32px; height:32px; border-radius:50%; background:var(--surface2); border:1px solid var(--border); color:var(--muted2); font-size:.75rem; text-decoration:none; transition:all .2s; }
.team-links a:hover { border-color:var(--c3); color:var(--c3); }

/* ════════════════════════════════════════
   COMPARISON TABLE — Services page
════════════════════════════════════════ */
.cmp-table { max-width:900px; margin:0 auto; border-radius:var(--r); overflow:hidden; border:1px solid var(--border); }
.cmp-table table { width:100%; border-collapse:collapse; }
.cmp-table thead th { padding:1rem 1.25rem; font-family:'Space Grotesk',sans-serif; font-size:.8125rem; font-weight:700; color:var(--text); background:var(--surface); border-bottom:2px solid var(--border2); text-align:left; }
.cmp-table thead th:first-child { width:40%; }
.cmp-table tbody td { padding:.875rem 1.25rem; font-size:.875rem; color:var(--text2); border-bottom:1px solid var(--border); }
.cmp-table tbody tr:last-child td { border-bottom:none; }
.cmp-table tbody tr:hover { background:var(--surface); }
.cmp-check { color:var(--c5); font-weight:700; }
.cmp-x { color:var(--c1); font-weight:700; }
.cmp-mid { color:var(--c2); }

/* ════════════════════════════════════════
   NAVBAR (header.php) — Internal Pages
════════════════════════════════════════ */
.navbar .container {
  display:flex; align-items:center; justify-content:space-between;
  max-width:1200px; margin:0 auto;
}
.navbar-logo {
  display:flex; align-items:center; gap:.5rem; text-decoration:none;
}
.navbar-logo-mark {
  display:inline-flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:10px;
  background:var(--grad); color:#fff; font-family:"Space Grotesk",sans-serif;
  font-weight:800; font-size:1.1rem;
}
.navbar-logo-text {
  font-family:"Space Grotesk",sans-serif; font-size:1.1rem; font-weight:700;
  color:var(--text); letter-spacing:.02em;
}
.navbar-nav {
  list-style:none; display:none; gap:2rem; align-items:center;
}
@media(min-width:768px){ .navbar-nav { display:flex; } }
.navbar-nav li a {
  font-size:.8125rem; color:var(--muted2); text-decoration:none;
  font-weight:400; letter-spacing:.02em; transition:color .2s;
}
.navbar-nav li a:hover { color:var(--text); }

/* CTA button area */
.navbar-cta {
  display:none; align-items:center; gap:.75rem;
}
@media(min-width:768px){ .navbar-cta { display:flex; } }

/* Hamburger toggle */
.navbar-toggle {
  display:block; background:none; border:none; cursor:pointer;
  font-size:1.5rem; color:var(--text); padding:.25rem; line-height:1;
}
@media(min-width:768px){ .navbar-toggle { display:none; } }

/* Mobile overlay — HIDDEN by default */
.navbar-mobile {
  display:none; position:fixed; inset:0; z-index:300;
  background:rgba(7,11,18,.98); backdrop-filter:blur(20px);
  flex-direction:column; justify-content:center; align-items:center; gap:1.5rem;
  padding:2rem;
}
.navbar-mobile.open { display:flex; }
.navbar-mobile a {
  font-size:1.25rem; color:var(--text); text-decoration:none;
  font-weight:400; transition:color .2s;
}
.navbar-mobile a:hover { color:var(--c3); }
.mobile-close {
  position:absolute; top:1.5rem; right:1.5rem;
  background:none; border:none; color:var(--text);
  font-size:1.5rem; cursor:pointer; line-height:1;
}

/* ════════════════════════════════════════
   FOOTER (footer.php) — Internal Pages
════════════════════════════════════════ */
.footer {
  background:#060A10; border-top:1px solid var(--border);
  padding:5rem 2rem 2rem; margin-top:4rem;
}
.footer-grid {
  max-width:1200px; margin:0 auto;
  display:grid; gap:2.5rem; margin-bottom:3rem;
}
@media(min-width:768px){ .footer-grid { grid-template-columns:2fr 1fr 1fr 1fr 1fr; } }

.footer-brand p {
  font-size:.85rem; color:var(--muted); line-height:1.7;
  margin-top:1rem; max-width:280px;
}
.footer-contact {
  display:flex; flex-direction:column; gap:.5rem; margin-top:1.25rem;
}
.footer-contact a {
  font-size:.8125rem; color:var(--muted2); text-decoration:none;
  transition:color .2s;
}
.footer-contact a:hover { color:var(--text); }

.footer-col h4 {
  font-family:"Space Grotesk",sans-serif; font-size:.75rem; font-weight:600;
  letter-spacing:.15em; text-transform:uppercase; color:var(--text2);
  margin-bottom:1.25rem;
}
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:.625rem; }
.footer-col ul li a {
  font-size:.8125rem; color:var(--muted); text-decoration:none;
  transition:color .2s;
}
.footer-col ul li a:hover { color:var(--text); }

.footer-bottom {
  display:flex; flex-wrap:wrap; justify-content:space-between;
  align-items:center; gap:1rem;
  padding-top:2rem; border-top:1px solid var(--border);
}
.footer-bottom p {
  font-size:.72rem; color:rgba(90,106,128,.5);
}
.footer-bottom p a {
  color:var(--c4); text-decoration:none;
}
.footer-social {
  display:flex; gap:1.25rem;
}
.footer-social a {
  font-size:.75rem; color:var(--muted); text-decoration:none;
  transition:color .2s;
}
.footer-social a:hover { color:var(--text); }

/* ════════════════════════════════════════
   PRICING PAGE
════════════════════════════════════════ */

/* Toggle */
.pricing-toggle {
  display:inline-flex; align-items:center; gap:.75rem;
}
.pricing-toggle-label {
  font-size:.8125rem; color:var(--muted); font-weight:500;
  cursor:pointer; transition:color .3s;
}
.pricing-toggle-label.active { color:var(--text); }
.pricing-save {
  font-size:.625rem; font-weight:700; color:#10B981;
  background:rgba(16,185,129,.12); border-radius:999px;
  padding:.15rem .5rem; margin-left:.35rem; vertical-align:middle;
}
.pricing-toggle-switch {
  position:relative; width:44px; height:24px;
  background:var(--glass); border:1px solid var(--border);
  border-radius:999px; cursor:pointer; transition:background .3s;
  display:flex; align-items:center; padding:0 2px;
}
.pricing-toggle-switch.active { background:rgba(59,130,246,.2); border-color:rgba(59,130,246,.4); }
.pricing-toggle-knob {
  width:18px; height:18px; border-radius:50%;
  background:var(--c3); transition:transform .3s;
  display:block;
}
.pricing-toggle-switch.active .pricing-toggle-knob { transform:translateX(20px); }

/* Grid */
.pricing-grid {
  display:grid; gap:1.5rem; margin-top:1rem;
}
@media(min-width:900px){ .pricing-grid { grid-template-columns:repeat(3,1fr); align-items:start; } }

/* Card */
.pricing-card {
  background:var(--glass); border:1px solid var(--border);
  border-radius:16px; padding:2.5rem 2rem 2rem;
  position:relative; transition:transform .3s, box-shadow .3s;
}
.pricing-card:hover {
  transform:translateY(-4px);
  box-shadow:0 12px 40px rgba(0,0,0,.3);
}
.pricing-card.featured {
  border-color:rgba(59,130,246,.35);
  background:linear-gradient(135deg,rgba(59,130,246,.06),rgba(139,92,246,.06));
  box-shadow:0 0 60px rgba(59,130,246,.08);
}
@media(min-width:900px){ .pricing-card.featured { transform:scale(1.04); } .pricing-card.featured:hover { transform:scale(1.04) translateY(-4px); } }
.pricing-badge {
  position:absolute; top:-12px; left:50%; transform:translateX(-50%);
  background:linear-gradient(135deg,#3B82F6,#8B5CF6); color:#fff;
  font-size:.6875rem; font-weight:700; text-transform:uppercase;
  letter-spacing:.12em; padding:.35rem 1rem; border-radius:999px;
  white-space:nowrap;
}
.pricing-card-header { margin-bottom:1.75rem; }
.pricing-card-header h3 {
  font-family:'Space Grotesk',sans-serif; font-size:1.25rem;
  font-weight:700; color:var(--text); margin-bottom:.5rem;
}
.pricing-card-desc {
  font-size:.8125rem; color:var(--muted); line-height:1.6;
  margin-bottom:1.25rem; font-weight:300; min-height:2.6em;
}
.pricing-price { display:flex; align-items:baseline; gap:.25rem; }
.pricing-amount {
  font-family:'Space Grotesk',sans-serif; font-size:2.75rem;
  font-weight:800; color:var(--text); letter-spacing:-.03em;
}
.pricing-card.featured .pricing-amount {
  background:linear-gradient(135deg,#3B82F6,#8B5CF6);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}
.pricing-period { font-size:.8125rem; color:var(--muted); font-weight:400; }

/* Btn block */
.btn-block { display:block; width:100%; text-align:center; margin-bottom:1.75rem; }
.btn-outline {
  display:inline-flex; align-items:center; justify-content:center;
  padding:.75rem 1.5rem; font-size:.875rem; font-weight:600;
  border-radius:10px; text-decoration:none;
  border:1px solid var(--border); color:var(--text);
  background:transparent; transition:all .25s;
}
.btn-outline:hover {
  border-color:rgba(59,130,246,.5);
  background:rgba(59,130,246,.08); color:#3B82F6;
}
.btn-lg { padding:.875rem 2rem; font-size:.9375rem; }

/* Features list */
.pricing-features {
  list-style:none; display:flex; flex-direction:column; gap:.625rem;
}
.pricing-features li {
  font-size:.8125rem; color:var(--muted2); font-weight:400;
  padding-left:1.5rem; position:relative; line-height:1.4;
}
.pricing-features li::before {
  position:absolute; left:0; top:1px; font-size:.75rem;
}
.pricing-features li.included::before { content:"✓"; color:#10B981; }
.pricing-features li.excluded {
  color:rgba(90,106,128,.4); text-decoration:line-through;
  text-decoration-color:rgba(90,106,128,.15);
}
.pricing-features li.excluded::before { content:"—"; color:rgba(90,106,128,.3); }

/* Included grid */
.included-grid {
  display:grid; gap:1.5rem;
}
@media(min-width:768px){ .included-grid { grid-template-columns:repeat(3,1fr); } }
.included-item {
  background:var(--glass); border:1px solid var(--border);
  border-radius:14px; padding:1.75rem;
  transition:border-color .25s;
}
.included-item:hover { border-color:rgba(59,130,246,.25); }
.included-icon { font-size:1.5rem; margin-bottom:.75rem; }
.included-item h4 {
  font-family:'Space Grotesk',sans-serif; font-size:.9375rem;
  font-weight:600; color:var(--text); margin-bottom:.5rem;
}
.included-item p {
  font-size:.8125rem; color:var(--muted); line-height:1.7; font-weight:300;
}

/* FAQ */
.faq-list {
  display:flex; flex-direction:column; gap:.75rem;
}
.faq-item {
  background:var(--glass); border:1px solid var(--border);
  border-radius:12px; overflow:hidden;
  transition:border-color .25s;
}
.faq-item:hover { border-color:rgba(59,130,246,.2); }
.faq-q {
  width:100%; display:flex; justify-content:space-between; align-items:center;
  padding:1.25rem 1.5rem; background:none; border:none;
  color:var(--text); font-size:.9375rem; font-weight:500;
  cursor:pointer; text-align:left; font-family:inherit;
  transition:color .2s;
}
.faq-q:hover { color:#3B82F6; }
.faq-icon {
  font-size:1.25rem; color:var(--muted); transition:transform .3s;
  flex-shrink:0; margin-left:1rem;
}
.faq-item.open .faq-icon { transform:rotate(45deg); }
.faq-a {
  max-height:0; overflow:hidden; transition:max-height .35s ease, padding .35s ease;
  padding:0 1.5rem;
}
.faq-item.open .faq-a { max-height:300px; padding:0 1.5rem 1.25rem; }
.faq-a p {
  font-size:.8125rem; color:var(--muted2); line-height:1.8; font-weight:300;
}

/* Page CTA section */
.page-cta {
  padding:5rem 2rem; border-top:1px solid var(--border);
}

/* ════════════════════════════════════════
   BTN PRIMARY (used in header.php)
════════════════════════════════════════ */
.btn.btn-primary,
.btn-primary {
  background: var(--grad);
  color: #fff;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  font-size: .85rem;
  letter-spacing: .02em;
  text-decoration: none;
  padding: .75rem 1.5rem;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 4px 24px rgba(123,94,255,0.35);
  transition: all .28s cubic-bezier(.25,.46,.45,.94);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(123,94,255,0.5);
}

/* ════════════════════════════════════════
   NAVBAR GLASS ENHANCEMENT
   Ensure glass works with header.php structure
════════════════════════════════════════ */
.navbar {
  background: transparent !important;
}
.navbar.scrolled {
  background: rgba(7,11,18,0.92) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border-bottom: 1px solid var(--border) !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
