/* ========================================
   AXE TEKNOLOJI — Corporate + Animated
   Brand: Navy #041D41, Electric Blue #015CFD
   ======================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

:root {
  --bg: #FFFFFF;
  --bg-soft: #FAFBFC;
  --bg-tinted: #F5F7FB;
  --ink: #041D41;
  --ink-2: #0A2754;
  --text: #3D4A66;
  --muted: #6B7689;
  --muted-2: #9CA5B8;
  --border: #E5E9F2;
  --border-2: #EEF1F7;
  --brand: #015CFD;
  --brand-2: #013EAB;
  --brand-3: #0C69FD;
  --grad-1: #015CFD;
  --grad-2: #013EAB;
  --grad-3: #0C69FD;
  --green: #10B981;
  --amber: #F59E0B;
  --pink: #1E6FFF;
  --shadow-sm: 0 1px 2px rgba(4,29,65,0.04), 0 1px 1px rgba(4,29,65,0.02);
  --shadow-md: 0 4px 16px rgba(4,29,65,0.05), 0 1px 3px rgba(4,29,65,0.03);
  --shadow-lg: 0 16px 40px rgba(4,29,65,0.08), 0 4px 12px rgba(4,29,65,0.04);
  --shadow-xl: 0 32px 80px rgba(4,29,65,0.12), 0 8px 24px rgba(4,29,65,0.06);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: 'ss01', 'cv11';
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.08;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.grad-text {
  background: linear-gradient(135deg, #015CFD 0%, #1E6FFF 45%, #013EAB 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all 0.2s ease;
  white-space: nowrap;
  letter-spacing: -0.005em;
  position: relative;
  overflow: hidden;
}
.btn-lg { padding: 14px 24px; font-size: 15.5px; border-radius: 12px; }
.btn .arr { transition: transform 0.2s; display: inline-block; }
.btn:hover .arr { transform: translateX(3px); }

.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 1px 2px rgba(4,29,65,0.08), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand) 0%, var(--grad-2) 100%);
  opacity: 0;
  transition: opacity 0.25s;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary > * { position: relative; z-index: 1; }

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: var(--ink); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.play-ic {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  margin-left: -4px;
}

.btn-white {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.btn-ghost-light {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.05);
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.nav.scrolled { border-bottom-color: var(--border); background: rgba(255,255,255,0.95); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; }
.brand-logo { height: 30px; width: auto; }

.nav-links {
  display: flex;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: all 0.15s;
}
.nav-links a:hover { color: var(--ink); background: var(--bg-tinted); }

/* ============ HERO — CINEMATIC ============ */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-cinema {
  min-height: calc(100vh - 72px);
  padding: 0;
  display: flex;
  flex-direction: column;
}
.hero-cine-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-cine-wrap {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(440px, 1fr) 1.15fr;
  gap: 0;
  align-items: stretch;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 32px 32px 24px;
}

.cine-left {
  padding: 32px 48px 32px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  z-index: 2;
}

.cine-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
  width: fit-content;
}

.cine-narrator { display: flex; flex-direction: column; gap: 22px; }
.cine-service-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: opacity 0.4s, transform 0.4s;
}
.cine-headline {
  font-size: clamp(36px, 4.4vw, 60px);
  letter-spacing: -0.035em;
  line-height: 1.04;
  font-weight: 800;
  transition: opacity 0.4s, transform 0.4s;
}
.cine-sub {
  font-size: clamp(15.5px, 1.15vw, 17.5px);
  line-height: 1.55;
  color: var(--text);
  max-width: 540px;
  transition: opacity 0.4s, transform 0.4s;
}
.cine-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin-top: 4px;
}
.cine-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  background: rgba(1,92,253,0.06);
  color: var(--brand-2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(1,92,253,0.12);
}
.cine-bullets li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand);
}

.cine-fade-out .cine-service-name,
.cine-fade-out .cine-headline,
.cine-fade-out .cine-sub,
.cine-fade-out .cine-bullets {
  opacity: 0;
  transform: translateY(8px);
}

.cine-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cine-pager {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.cine-pager-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s;
  text-align: left;
  width: 100%;
}
.cine-pager-item:hover { background: #fff; border-color: var(--border-2); }
.cine-pager-item.active { background: #fff; border-color: var(--border); box-shadow: var(--shadow-sm); }
.cpi-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted-2);
  flex-shrink: 0;
  min-width: 22px;
}
.cine-pager-item.active .cpi-num { color: var(--brand); }
.cpi-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  font-family: 'Plus Jakarta Sans', sans-serif;
  flex: 1;
}
.cpi-bar {
  flex: 0 0 80px;
  height: 3px;
  background: var(--border-2);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.cpi-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--brand), var(--grad-3));
  transform: translateX(-100%);
  border-radius: 3px;
}
.cine-pager-item.active .cpi-fill {
  animation: pagerFill var(--cine-dur, 6s) linear forwards;
}
@keyframes pagerFill {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

/* Right cinema stage */
.cine-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  min-height: 580px;
}
.cine-stage {
  position: relative;
  width: 100%;
  max-width: 720px;
  height: 100%;
  min-height: 540px;
}
.cine-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
.cine-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

/* ===== DEMO 1: MOBILE APP — phone with finger interaction ===== */
.demo-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  perspective: 1400px;
}
.demo-phone {
  position: relative;
  width: 290px;
  height: 590px;
  background: linear-gradient(180deg, #0A1834 0%, #041D41 100%);
  border-radius: 44px;
  padding: 8px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.05) inset,
    0 50px 100px -20px rgba(4,29,65,0.45),
    0 30px 60px -30px rgba(4,29,65,0.5);
  transform: rotateY(-8deg) rotateX(2deg);
}
.demo-phone::before {
  content: '';
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 92px; height: 24px;
  background: #000;
  border-radius: 14px;
  z-index: 5;
}
.demo-phone-screen {
  position: relative;
  width: 100%; height: 100%;
  background: #fff;
  border-radius: 36px;
  overflow: hidden;
}
.dp-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 26px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  height: 50px;
}
.dp-status-icons { display: flex; gap: 4px; align-items: center; }
.dp-status-icons svg { width: 14px; height: 14px; }
.dp-scroll {
  position: absolute;
  inset: 50px 0 80px;
  overflow: hidden;
}
.dp-scroll-inner {
  padding: 12px 18px 20px;
  animation: dpScroll 12s ease-in-out infinite;
}
@keyframes dpScroll {
  0%, 18% { transform: translateY(0); }
  35%, 50% { transform: translateY(-180px); }
  65%, 80% { transform: translateY(-340px); }
  95%, 100% { transform: translateY(0); }
}
.dp-greet { padding: 8px 0 14px; }
.dp-hello { font-size: 12px; color: var(--muted); }
.dp-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.dp-balance-card {
  background: linear-gradient(135deg, #015CFD 0%, #1E6FFF 50%, #013EAB 100%);
  border-radius: 18px;
  padding: 18px;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.dp-balance-card::after {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
}
.dp-bl { font-size: 11.5px; opacity: 0.85; }
.dp-bv {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 6px 0 4px;
}
.dp-bd { font-size: 11.5px; opacity: 0.9; }
.dp-bd .up { color: #6EE7B7; font-weight: 600; }
.dp-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.dp-action {
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 12px 0 8px;
  text-align: center;
}
.dp-action-ic {
  width: 32px; height: 32px;
  margin: 0 auto 6px;
  border-radius: 9px;
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--brand);
  box-shadow: var(--shadow-sm);
}
.dp-action-ic svg { width: 14px; height: 14px; }
.dp-action-l { font-size: 10px; color: var(--ink); font-weight: 500; }
.dp-section-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 6px 0 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
}
.dp-section-h span:last-child { color: var(--brand); font-size: 11px; font-weight: 500; }
.dp-tx-list { display: flex; flex-direction: column; gap: 8px; }
.dp-tx {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: 12px;
}
.dp-tx-ic {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.dp-tx-info { flex: 1; }
.dp-tx-name { font-size: 12px; font-weight: 600; color: var(--ink); }
.dp-tx-meta { font-size: 10.5px; color: var(--muted); margin-top: 1px; }
.dp-tx-amt {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
}
.dp-tx-amt.in { color: var(--green); }
.dp-tx-amt.out { color: var(--ink); }

.dp-card {
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 10px;
}
.dp-card-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.dp-card-h strong { font-size: 13px; font-family: 'Plus Jakarta Sans', sans-serif; color: var(--ink); }
.dp-card-h .tag {
  font-size: 10px;
  padding: 3px 7px;
  background: rgba(16,185,129,0.1);
  color: var(--green);
  border-radius: 6px;
  font-weight: 600;
}
.dp-mini-chart { height: 50px; }
.dp-card-row {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 8px;
}
.dp-card-row strong { color: var(--ink); font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; }

.dp-tabbar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 76px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-2);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: flex-start;
  padding-top: 12px;
}
.dp-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--muted-2);
  font-size: 9.5px;
  font-weight: 500;
}
.dp-tab.active { color: var(--brand); }
.dp-tab svg { width: 20px; height: 20px; }

/* Finger cursor */
.demo-finger {
  position: absolute;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(1,92,253,0.25);
  border: 2px solid #015CFD;
  pointer-events: none;
  z-index: 10;
  animation: fingerTap 12s ease-in-out infinite;
  box-shadow: 0 4px 16px rgba(1,92,253,0.4);
}
@keyframes fingerTap {
  0% { top: 30%; left: 50%; transform: translate(-50%, -50%) scale(1); opacity: 0; }
  3% { opacity: 1; }
  10% { transform: translate(-50%, -50%) scale(0.7); }
  14% { transform: translate(-50%, -50%) scale(1); }
  18%, 32% { top: 30%; left: 50%; transform: translate(-50%, -50%) scale(1); opacity: 1; }
  35% { top: 60%; left: 30%; opacity: 1; }
  40% { top: 60%; left: 30%; transform: translate(-50%, -50%) scale(0.7); }
  45% { transform: translate(-50%, -50%) scale(1); }
  50%, 65% { top: 60%; left: 30%; opacity: 1; transform: translate(-50%, -50%) scale(1); }
  70% { top: 75%; left: 70%; opacity: 1; }
  75% { transform: translate(-50%, -50%) scale(0.7); }
  80%, 95% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { opacity: 0; }
}

.demo-mobile-side {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 230px;
}
.dms-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: var(--shadow-md);
  animation: dmsFloat 4s ease-in-out infinite;
}
.dms-card:nth-child(2) { animation-delay: -2s; }
.dms-card:nth-child(3) { animation-delay: -1s; }
@keyframes dmsFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.dms-h {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 500;
}
.dms-h .ic {
  width: 22px; height: 22px;
  border-radius: 7px;
  background: var(--bg-tinted);
  color: var(--brand);
  display: grid;
  place-items: center;
}
.dms-h .ic svg { width: 11px; height: 11px; }
.dms-v {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.dms-d {
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
  margin-top: 2px;
}

/* ===== DEMO 2: SAAS DASHBOARD — browser with live data ===== */
.demo-saas {
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.demo-browser {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow:
    0 40px 80px -30px rgba(4,29,65,0.25),
    0 20px 40px -20px rgba(4,29,65,0.15);
  overflow: hidden;
}
.db-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-2);
  background: var(--bg-soft);
}
.db-dots { display: flex; gap: 6px; }
.db-dots span { width: 11px; height: 11px; border-radius: 50%; }
.db-dots span:nth-child(1) { background: #FF5F57; }
.db-dots span:nth-child(2) { background: #FEBC2E; }
.db-dots span:nth-child(3) { background: #28C840; }
.db-url {
  flex: 1;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: 8px;
  font-size: 12.5px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.db-url::before {
  content: '';
  width: 11px; height: 11px;
  border: 2px solid var(--green);
  border-radius: 50%;
  border-right-color: transparent;
  display: inline-block;
}
.db-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--green);
}
.db-status .dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
  animation: pulse 2s ease-in-out infinite;
}

.db-body {
  display: grid;
  grid-template-columns: 64px 1fr;
  height: 460px;
}
.db-side {
  background: var(--bg-soft);
  border-right: 1px solid var(--border-2);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.db-logo {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #015CFD, #013EAB);
  border-radius: 10px;
  margin-bottom: 12px;
}
.db-nav {
  width: 40px; height: 40px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: var(--muted);
  cursor: pointer;
}
.db-nav.active { background: #fff; color: var(--brand); box-shadow: var(--shadow-sm); }
.db-nav svg { width: 16px; height: 16px; }

.db-main { padding: 22px 26px; overflow: hidden; }
.db-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.db-head h3 {
  font-size: 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--ink);
}
.db-head-sub { font-size: 12px; color: var(--muted); margin-top: 3px; }
.db-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(16,185,129,0.1);
  color: var(--green);
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 600;
}
.db-pill .dot {
  width: 5px; height: 5px;
  background: currentColor;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.db-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.db-kpi {
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 14px;
  border: 1px solid var(--border-2);
}
.db-kpi-l {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 6px;
}
.db-kpi-v {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.db-kpi-d {
  font-size: 10.5px;
  color: var(--green);
  font-weight: 600;
  margin-top: 4px;
}
.db-kpi-d.down { color: #EF4444; }

.db-chart {
  background: var(--bg-soft);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  padding: 16px 18px;
  height: 220px;
  position: relative;
}
.db-chart-h {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.db-chart-t { font-size: 12.5px; font-weight: 600; color: var(--ink); }
.db-chart-tabs { display: flex; gap: 4px; font-size: 10px; font-weight: 500; color: var(--muted); }
.db-chart-tabs span { padding: 3px 8px; border-radius: 5px; cursor: pointer; }
.db-chart-tabs span.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.db-chart svg { width: 100%; height: calc(100% - 30px); display: block; }

.db-chart-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 3s ease-out forwards;
}
@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}
.db-chart-area { animation: fadeIn 1.5s ease-out 0.5s forwards; opacity: 0; }
@keyframes fadeIn { to { opacity: 1; } }
.db-chart-pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: chartPulse 2s ease-in-out infinite;
}
@keyframes chartPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(1,92,253,0.8)); }
  50% { transform: scale(1.5); filter: drop-shadow(0 0 6px rgba(1,92,253,0.7)); }
}

/* Live notifications */
.demo-notifs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0 8px;
}
.demo-notif {
  flex: 1;
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  animation: notifSlide 5s ease-out forwards;
}
.demo-notif:nth-child(2) { animation-delay: 0.6s; }
.demo-notif:nth-child(3) { animation-delay: 1.2s; }
@keyframes notifSlide {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.dn-ic {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
}
.dn-t { font-size: 12.5px; font-weight: 600; color: var(--ink); letter-spacing: -0.005em; }
.dn-s { font-size: 11px; color: var(--muted); margin-top: 1px; }

/* ===== DEMO 3: AUTOMATION — node-based flow lighting up ===== */
.demo-auto {
  width: 100%;
  max-width: 680px;
  background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(245,247,251,0.6) 100%);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px 28px;
  box-shadow: var(--shadow-xl);
  position: relative;
  backdrop-filter: blur(20px);
}
.auto-flow-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-2);
}
.auto-flow-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.auto-flow-name .tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 500;
  padding: 3px 8px;
  background: rgba(1,92,253,0.08);
  color: var(--brand);
  border-radius: 6px;
  letter-spacing: 0;
}
.auto-flow-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
}
.auto-flow-status .dot {
  width: 7px; height: 7px;
  background: currentColor;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.auto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  position: relative;
}

.auto-step {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: 14px;
  position: relative;
  transition: all 0.4s;
}
.auto-step.active {
  border-color: rgba(1,92,253,0.4);
  box-shadow: 0 0 0 4px rgba(1,92,253,0.08), 0 8px 16px rgba(1,92,253,0.1);
  transform: translateX(4px);
}
.auto-step.done {
  border-color: rgba(16,185,129,0.3);
}
.auto-step.done .auto-step-ic { background: var(--green); }

.auto-step-ic {
  width: 40px; height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand);
  transition: all 0.4s;
  position: relative;
}
.auto-step-ic svg { width: 18px; height: 18px; }
.auto-step.active .auto-step-ic::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 14px;
  border: 2px solid var(--brand);
  animation: nodeRing 1.5s ease-out infinite;
}
@keyframes nodeRing {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.auto-step-info { min-width: 0; }
.auto-step-t {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.auto-step-s {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  font-family: 'JetBrains Mono', monospace;
}
.auto-step-meta {
  font-size: 11px;
  color: var(--muted-2);
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  text-align: right;
}
.auto-step.active .auto-step-meta { color: var(--brand); }
.auto-step.done .auto-step-meta { color: var(--green); }

.auto-connector {
  position: relative;
  height: 14px;
  margin: -7px 0 -7px 23px;
  width: 2px;
  background: var(--border-2);
}
.auto-connector.flowing::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, transparent, var(--brand), transparent);
  animation: flowDown 1.2s linear infinite;
}
@keyframes flowDown {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

.auto-log {
  margin-top: 18px;
  padding: 12px 16px;
  background: var(--ink);
  border-radius: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 10px;
}
.auto-log .l-time { color: rgba(255,255,255,0.4); }
.auto-log .l-tag { color: #6EE7B7; }

/* ===== DEMO 4: WEB DEVELOPMENT — code editor + live preview ===== */
.demo-web {
  width: 100%;
  max-width: 720px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow:
    0 40px 80px -30px rgba(4,29,65,0.25),
    0 20px 40px -20px rgba(4,29,65,0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.demo-web-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-2);
  background: var(--bg-soft);
}
.demo-web-tabs {
  display: flex;
  gap: 2px;
  flex: 1;
}
.web-tab {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  padding: 6px 12px;
  border-radius: 7px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.web-tab.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); font-weight: 500; }
.web-tab .ext { color: var(--brand); }

.demo-web-body {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  height: 480px;
}
.web-editor {
  background: #0F172A;
  padding: 18px 16px 18px 14px;
  overflow: hidden;
  position: relative;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  line-height: 1.65;
}
.web-editor pre {
  margin: 0;
  color: #E2E8F0;
  white-space: pre;
}
.web-editor .ln { color: #475569; user-select: none; display: inline-block; width: 24px; text-align: right; margin-right: 14px; }
.web-editor .k { color: #93C5FD; }
.web-editor .s { color: #6EE7B7; }
.web-editor .f { color: #FCD34D; }
.web-editor .c { color: #64748B; font-style: italic; }
.web-editor .t { color: #93C5FD; }
.web-editor .n { color: #FCA5A5; }

.web-cursor {
  display: inline-block;
  width: 1.5px;
  height: 14px;
  background: #fff;
  vertical-align: middle;
  animation: blink 1s infinite;
  margin-left: 1px;
}
@keyframes blink { 50% { opacity: 0; } }

.web-typed {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  animation: typing 3.5s steps(40, end) infinite;
  vertical-align: bottom;
}
@keyframes typing {
  0% { width: 0; }
  50%, 100% { width: 100%; }
}

.web-preview {
  background: #fff;
  border-left: 1px solid var(--border-2);
  padding: 18px;
  overflow: hidden;
  position: relative;
}
.web-preview-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-2);
}
.wp-h-l {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--ink);
}
.wp-h-r {
  font-size: 10px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'JetBrains Mono', monospace;
}
.wp-h-r .dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }

.wp-hero {
  background: linear-gradient(135deg, #EBF1FF 0%, #F5F3FF 100%);
  border-radius: 12px;
  padding: 18px 16px;
  margin-bottom: 12px;
}
.wp-h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 6px;
}
.wp-h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #015CFD, #013EAB);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.wp-p { font-size: 11px; color: var(--text); line-height: 1.5; margin-bottom: 10px; }
.wp-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: var(--ink);
  color: #fff;
  border-radius: 7px;
  font-size: 10.5px;
  font-weight: 600;
}
.wp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.wp-card {
  background: var(--bg-soft);
  border: 1px solid var(--border-2);
  border-radius: 9px;
  padding: 10px;
}
.wp-card-ic {
  width: 22px; height: 22px;
  border-radius: 6px;
  margin-bottom: 8px;
}
.wp-card-ic.b1 { background: linear-gradient(135deg, #015CFD, #013EAB); }
.wp-card-ic.b2 { background: linear-gradient(135deg, #10B981, #047857); }
.wp-card-ic.b3 { background: linear-gradient(135deg, #F59E0B, #D97706); }
.wp-card-t { font-size: 10.5px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.wp-card-s { font-size: 9.5px; color: var(--muted); line-height: 1.35; }

.wp-flash {
  position: absolute;
  inset: 0;
  background: rgba(1,92,253,0.05);
  pointer-events: none;
  animation: flashPreview 4s ease-out infinite;
  opacity: 0;
}
@keyframes flashPreview {
  0%, 90% { opacity: 0; }
  92% { opacity: 1; }
  100% { opacity: 0; }
}

/* ===== DEMO 5: E-COMMERCE — browsing animation ===== */
.demo-ecom {
  width: 100%;
  max-width: 720px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.ec-bar {
  background: var(--ink);
  color: #fff;
  padding: 14px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ec-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.ec-search {
  flex: 1;
  max-width: 260px;
  margin: 0 22px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}
.ec-search svg { width: 11px; height: 11px; }
.ec-icons { display: flex; gap: 14px; align-items: center; }
.ec-icons svg { width: 16px; height: 16px; opacity: 0.9; }
.ec-cart-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  padding: 2px 7px;
  background: var(--brand);
  color: #fff;
  border-radius: 100px;
  font-weight: 600;
}

.ec-body { padding: 20px 22px; }
.ec-cat-row {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 500;
}
.ec-cat-row span {
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--bg-soft);
  color: var(--text);
}
.ec-cat-row span.active { background: var(--ink); color: #fff; }

.ec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.ec-prod {
  background: var(--bg-soft);
  border: 1px solid var(--border-2);
  border-radius: 11px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}
.ec-prod:nth-child(odd) { animation: ecHover 4s ease-in-out infinite; }
.ec-prod:nth-child(2) { animation: ecHover 4s ease-in-out infinite -1s; }
.ec-prod:nth-child(4) { animation: ecHover 4s ease-in-out infinite -2s; }
@keyframes ecHover {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.ec-prod-img {
  aspect-ratio: 1 / 1;
  position: relative;
}
.ec-prod-img.c1 { background: linear-gradient(135deg, #FCA5A5, #EF4444); }
.ec-prod-img.c2 { background: linear-gradient(135deg, #93C5FD, #2563EB); }
.ec-prod-img.c3 { background: linear-gradient(135deg, #FCD34D, #D97706); }
.ec-prod-img.c4 { background: linear-gradient(135deg, #94A3B8, #475569); }
.ec-prod-img.c5 { background: linear-gradient(135deg, #6EE7B7, #047857); }
.ec-prod-img.c6 { background: linear-gradient(135deg, #CBD5E1, #64748B); }
.ec-prod-img.c7 { background: linear-gradient(135deg, #FDBA74, #EA580C); }
.ec-prod-img.c8 { background: linear-gradient(135deg, #67E8F9, #0891B2); }
.ec-prod-tag {
  position: absolute;
  top: 8px; left: 8px;
  background: rgba(255,255,255,0.95);
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 9px;
  font-weight: 700;
  color: var(--ink);
}
.ec-prod-tag.discount { background: var(--brand); color: #fff; }
.ec-prod-info { padding: 8px 10px 10px; }
.ec-prod-name { font-size: 11px; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
.ec-prod-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  color: var(--brand);
}

/* Shopping cart popup */
.ec-cart-popup {
  position: absolute;
  top: 60px; right: 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  box-shadow: var(--shadow-xl);
  width: 240px;
  z-index: 4;
  animation: cartPop 6s ease-in-out infinite;
}
@keyframes cartPop {
  0%, 30%, 70%, 100% { transform: translateY(-12px) scale(0.95); opacity: 0; pointer-events: none; }
  40%, 60% { transform: translateY(0) scale(1); opacity: 1; }
}
.ec-cart-h {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.ec-cart-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.ec-cart-row-img {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: linear-gradient(135deg, #FCA5A5, #EF4444);
  flex-shrink: 0;
}
.ec-cart-row-i { flex: 1; }
.ec-cart-row-n { font-size: 11px; font-weight: 500; color: var(--ink); }
.ec-cart-row-p { font-size: 11px; font-weight: 700; color: var(--brand); font-family: 'Plus Jakarta Sans', sans-serif; }

/* Floating cards positioning for cinema */
.float-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 5;
  animation: floaty 5.5s ease-in-out infinite;
}
.fc-deploy { top: 8%; right: -12px; }
.fc-perf { top: 45%; left: -28px; animation-delay: -2s; }
.fc-clients { bottom: 6%; right: -8px; animation-delay: -3.5s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.fc-ic {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.green-bg { background: var(--green); }
.blue-bg { background: var(--brand); }
.fc-t { font-size: 12.5px; font-weight: 600; color: var(--ink); letter-spacing: -0.005em; }
.fc-s { font-size: 11px; color: var(--muted); margin-top: 1px; }
.fc-stack { display: flex; }
.fc-av {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}
.fc-av + .fc-av { margin-left: -8px; }

/* ===== Hero meta (rebalanced) ===== */
.hero-trust-wrap {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0 44px 32px;
}

/* legacy classes — still used by cinema hero */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(4,29,65,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4,29,65,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  animation: orb 20s ease-in-out infinite;
}
.orb-1 {
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(1,92,253,0.32) 0%, transparent 70%);
  top: -180px; left: -160px;
}
.orb-2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(139,92,246,0.28) 0%, transparent 70%);
  top: 30%; right: -120px;
  animation-delay: -10s;
}
.orb-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(236,72,153,0.18) 0%, transparent 70%);
  bottom: -100px; left: 30%;
  animation-delay: -5s;
}
@keyframes orb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -30px); }
}

.hb-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16,185,129,0.15); }
  50% { box-shadow: 0 0 0 7px rgba(16,185,129,0); }
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-2);
  margin-top: 8px;
}
.meta-v {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.meta-v span {
  font-size: 18px;
  color: var(--brand);
  margin-left: 1px;
}
.meta-l {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
}
.meta-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}


/* Floating cards */
.float-card {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(229,233,242,0.9);
  border-radius: 14px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 18px 36px -12px rgba(4,29,65,0.18),
    0 6px 12px -6px rgba(4,29,65,0.08);
  z-index: 4;
  animation: floaty 5.5s ease-in-out infinite;
  max-width: 230px;
}
.fc-deploy { top: 2%; right: -4px; left: auto; }
.fc-perf { bottom: 22%; left: -22px; right: auto; top: auto; animation-delay: -2s; }
.fc-clients { bottom: 2%; right: 2%; left: auto; animation-delay: -3.5s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.fc-ic {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.green-bg { background: var(--green); }
.blue-bg { background: var(--brand); }
.fc-t { font-size: 12.5px; font-weight: 600; color: var(--ink); letter-spacing: -0.005em; }
.fc-s { font-size: 11px; color: var(--muted); margin-top: 1px; }
.fc-stack { display: flex; }
.fc-av {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}
.fc-av + .fc-av { margin-left: -8px; }

/* ============ TRUST ============ */
.trust {
  position: relative;
  z-index: 1;
  padding-top: 32px;
  border-top: 1px solid var(--border-2);
}
.trust-l {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted-2);
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.trust-track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.trust-row {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: scroll-x 30s linear infinite;
  width: max-content;
}
.trust-row > div {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--muted);
  letter-spacing: -0.025em;
  opacity: 0.55;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-row > div:hover { opacity: 1; color: var(--ink); }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SECTIONS ============ */
.section {
  padding: 100px 0;
  position: relative;
}
.section-light { background: var(--bg-soft); }
.section-tinted { background: var(--bg-tinted); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: -0.005em;
  margin-bottom: 18px;
  padding: 6px 14px 6px 12px;
  background: rgba(1,92,253,0.08);
  border-radius: 100px;
}
.eyebrow-light {
  color: #fff;
  background: rgba(255,255,255,0.14);
}
.eb-dot {
  width: 5px; height: 5px;
  background: currentColor;
  border-radius: 50%;
}
.section-title {
  font-size: clamp(32px, 4.2vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin-bottom: 18px;
}
.section-sub {
  font-size: 17.5px;
  line-height: 1.55;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto;
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--grad-3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand);
}
.service-card:hover::before { transform: scaleX(1); }

.svc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--grad-2));
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(1,92,253,0.25);
  transition: transform 0.3s;
}
.service-card:hover .svc-icon { transform: scale(1.06) rotate(-3deg); }
.svc-card-2 .svc-icon { background: linear-gradient(135deg, #10B981, #047857); box-shadow: 0 6px 16px rgba(16,185,129,0.25); }
.svc-card-3 .svc-icon { background: linear-gradient(135deg, #F59E0B, #D97706); box-shadow: 0 6px 16px rgba(245,158,11,0.25); }
.svc-card-4 .svc-icon { background: linear-gradient(135deg, #64748B, #334155); box-shadow: 0 6px 16px rgba(100,116,139,0.22); }
.svc-card-5 .svc-icon { background: linear-gradient(135deg, #0A2754, #041D41); box-shadow: 0 6px 16px rgba(4,29,65,0.3); }
.svc-card-6 .svc-icon { background: linear-gradient(135deg, #0EA5E9, #0369A1); box-shadow: 0 6px 16px rgba(14,165,233,0.25); }

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.service-card p {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 18px;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.svc-tags span {
  font-size: 11.5px;
  font-weight: 500;
  padding: 4px 9px;
  background: var(--bg-tinted);
  border-radius: 6px;
  color: var(--ink-2);
}

/* ============ WORK ============ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.work-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  transition: all 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.work-card.wc-wide { grid-column: span 8; }
.work-card.wc-thin { grid-column: span 4; }
.work-card.wc-half { grid-column: span 6; }
.work-card.wc-third { grid-column: span 4; }

.work-visual {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-2);
  transition: transform 0.4s ease;
}
.work-card:hover .work-visual { transform: scale(1.02); }
.work-card.wc-thin .work-visual { aspect-ratio: 4 / 5; }
.work-card.wc-half .work-visual { aspect-ratio: 16 / 9; }

.work-status {
  position: absolute;
  top: 16px; right: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px 5px 9px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  z-index: 2;
}
.work-status.beta { color: var(--amber); }
.work-status .ws-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.18);
  animation: pulse 2s infinite;
}
.work-status.beta .ws-dot { box-shadow: 0 0 0 3px rgba(245,158,11,0.18); }

.work-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.work-cat {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.work-title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.work-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.work-meta {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border-2);
}
.work-meta div {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.work-meta strong {
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Work visuals — actual product mockups */
.wv-1 {
  background: linear-gradient(180deg, #FAFBFC 0%, #EEF1F7 100%);
  display: flex;
  flex-direction: column;
  padding: 26px 32px 0;
  position: relative;
  overflow: hidden;
}
.wv-1-rail {
  width: 92%;
  height: 6px;
  background: linear-gradient(180deg, #475569 0%, #1E293B 100%);
  border-radius: 4px;
  margin: 0 auto 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.18);
  position: relative;
  z-index: 2;
}
.wv-1-rail::before,
.wv-1-rail::after {
  content: '';
  position: absolute;
  top: -3px;
  width: 12px;
  height: 12px;
  background: #1E293B;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.wv-1-rail::before { left: -6px; }
.wv-1-rail::after { right: -6px; }
.wv-1-panels {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  padding: 0 4%;
  position: relative;
  z-index: 1;
}
.wv-1-panel {
  width: 100%;
  border-radius: 0 0 10px 10px;
  position: relative;
  box-shadow:
    inset 0 2px 6px rgba(0,0,0,0.12),
    0 6px 14px rgba(4,29,65,0.08);
}
.wv-1-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(0,0,0,0.06) 0,
    rgba(0,0,0,0.06) 1px,
    transparent 1px,
    transparent 12%,
    rgba(255,255,255,0.08) 12%,
    rgba(255,255,255,0.08) 13%,
    transparent 13%,
    transparent 25%
  );
  border-radius: inherit;
}
.wv-1-panel::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
}
.wv-1-tag {
  position: absolute;
  bottom: 22px;
  right: 22px;
  background: #fff;
  border-radius: 12px;
  padding: 9px 14px 10px;
  box-shadow: 0 12px 28px rgba(4,29,65,0.14);
  border: 1px solid var(--border);
  z-index: 3;
}
.wv-1-tag-l {
  font-size: 9.5px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.wv-1-tag-v {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.wv-1-tag-v em {
  font-style: normal;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  margin-right: 3px;
}

.wv-2 {
  background: linear-gradient(135deg, #ECFDF5 0%, #DCFCE7 100%);
  display: grid;
  place-items: center;
}
.wv-2-phone {
  width: 130px;
  height: 220px;
  background: var(--ink);
  border-radius: 22px;
  padding: 6px;
  box-shadow: 0 24px 48px rgba(4,29,65,0.25);
  position: relative;
}
.wv-2-phone::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #10B981 0%, #047857 100%);
  border-radius: 18px;
}

.wv-3 {
  background: linear-gradient(135deg, #FEF3C7 0%, #FED7AA 100%);
  padding: 24px;
}
.wv-3::before {
  content: '';
  position: absolute;
  inset: 24px;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  background-image:
    linear-gradient(135deg, #F59E0B, #EA580C) 50%, transparent 50%;
}
.wv-3::after {
  content: '';
  position: absolute;
  top: 48px; left: 48px;
  width: 96px; height: 64px;
  background: linear-gradient(135deg, #F59E0B, #EA580C);
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(245,158,11,0.3);
}

.wv-4 {
  background: var(--ink);
  position: relative;
}
.wv-4::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(1,92,253,0.35) 0%, transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(12,105,253,0.3) 0%, transparent 50%);
}
.wv-4-code {
  position: absolute;
  inset: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}
.wv-4-code .k { color: #93C5FD; }
.wv-4-code .s { color: #6EE7B7; }
.wv-4-code .n { color: #FCA5A5; }

.wv-5 {
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF1F7 100%);
  padding: 20px 22px;
  display: flex;
  align-items: center;
}
.wv-5-checkout {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wv-5-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.wv-5-step {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
}
.wv-5-step-n {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--border);
  color: var(--muted);
  font-size: 9.5px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.wv-5-step-n svg { width: 9px; height: 9px; }
.wv-5-step.done { color: var(--ink-2); }
.wv-5-step.done .wv-5-step-n {
  background: var(--green);
  color: #fff;
}
.wv-5-step.active { color: var(--ink); }
.wv-5-step.active .wv-5-step-n {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(1,92,253,0.15);
}
.wv-5-step-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  min-width: 12px;
}
.wv-5-card {
  background: linear-gradient(135deg, #0A2754 0%, #041D41 100%);
  border-radius: 12px;
  padding: 14px 16px;
  color: #fff;
  position: relative;
  box-shadow: 0 12px 24px rgba(4,29,65,0.22);
  overflow: hidden;
}
.wv-5-card::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 160%;
  background: radial-gradient(ellipse at center, rgba(1,92,253,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.wv-5-card-chip {
  width: 24px; height: 18px;
  border-radius: 4px;
  background: linear-gradient(135deg, #FBBF24 0%, #D97706 100%);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.wv-5-card-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.wv-5-card-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.wv-5-card-l {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 3px;
  text-transform: uppercase;
}
.wv-5-card-v {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
}
.wv-5-input {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 12px;
}
.wv-5-input-l {
  font-size: 9px;
  color: var(--muted);
  font-weight: 500;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 2px;
  letter-spacing: -0.005em;
}
.wv-5-input-v {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--muted-2);
  letter-spacing: 0.04em;
}
.wv-5-trust {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: rgba(16,185,129,0.09);
  border: 1px solid rgba(16,185,129,0.22);
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  color: var(--green);
  width: fit-content;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.wv-6 {
  background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
  display: grid;
  place-items: center;
}
.wv-6-circle {
  position: relative;
  width: 140px; height: 140px;
}
.wv-6-circle::before, .wv-6-circle::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--grad-3);
  opacity: 0.4;
  animation: orb-pulse 3s ease-in-out infinite;
}
.wv-6-circle::after { animation-delay: -1.5s; }
.wv-6-core {
  position: absolute;
  inset: 30%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(1,92,253,0.4);
}
@keyframes orb-pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.2); opacity: 0; }
}

.wv-7 {
  background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
  display: grid;
  place-items: center;
  padding: 18px;
}
.wv-7-cart {
  width: 92%;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wv-7-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.wv-7-img {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, #F87171, #DC2626);
  flex-shrink: 0;
}
.wv-7-info { flex: 1; min-width: 0; }
.wv-7-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}
.wv-7-meta {
  font-size: 9.5px;
  color: var(--muted);
  margin-top: 1px;
}
.wv-7-total {
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px dashed var(--border-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10.5px;
  color: var(--muted);
}
.wv-7-total strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: var(--brand);
  font-weight: 700;
  letter-spacing: -0.005em;
}
.wv-7-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  color: var(--brand);
}

/* ============ MARQUEE ============ */
.marquee {
  margin-top: 24px;
  padding: 32px 0;
  background: #fff;
  color: var(--ink);
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, #fff, transparent); }
.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: scroll-x 40s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.025em;
  display: flex;
  align-items: center;
  gap: 24px;
}
.marquee-item .star {
  color: var(--brand);
  font-size: 24px;
}
.marquee-item em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #015CFD, #013EAB);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding-right: 0.18em;
  margin-right: -0.04em;
}

/* ============ WHY ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-cell {
  background: #fff;
  padding: 36px 30px;
  transition: all 0.25s;
  position: relative;
}
.why-cell:hover { background: var(--bg-soft); }
.why-cell::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--grad-3));
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.why-cell:hover::before { transform: scaleX(1); }
.why-ic {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--bg-tinted);
  color: var(--brand);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: all 0.25s;
}
.why-cell:hover .why-ic {
  background: var(--brand);
  color: #fff;
  transform: scale(1.06);
}
.why-cell h4 {
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.why-cell p {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.55;
}

/* ============ PROCESS ============ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%; right: 12%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--border) 0 6px, transparent 6px 12px);
}
.process-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: all 0.3s;
}
.process-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand);
}
.ps-num {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.process-step:hover .ps-num {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: scale(1.06);
}
.process-step h4 {
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.process-step p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 16px;
}
.ps-meta {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: var(--bg-tinted);
  border-radius: 100px;
}

/* ============ TESTIMONIALS ============ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testi {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all 0.25s;
}
.testi:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--brand); }
.testi-stars {
  display: flex;
  gap: 2px;
  color: #FBBF24;
}
.testi-text {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border-2);
}
.ta-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  flex-shrink: 0;
}
.ta-info strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.ta-info span {
  font-size: 12.5px;
  color: var(--muted);
}

/* ============ CTA ============ */
.cta-sec { padding: 0 0 96px; }
.cta-card {
  background: var(--ink);
  border-radius: 28px;
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(1,92,253,0.32) 0%, transparent 48%),
    radial-gradient(circle at 82% 78%, rgba(12,105,253,0.22) 0%, transparent 48%);
}
.cta-stars { display: none; }
.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(32px, 4.6vw, 58px);
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin: 18px 0 14px;
  max-width: 800px;
  margin-inline: auto;
}
.grad-light {
  background: linear-gradient(135deg, #BFDBFE 0%, #60A5FA 50%, #93C5FD 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 580px;
  margin-inline: auto;
}
.cta-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cta-channels {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  font-family: 'JetBrains Mono', monospace;
}
.cta-channels .dot { color: rgba(255,255,255,0.3); }

/* ============ FOOTER ============ */
.footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 72px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-2);
}
.footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 22px;
  max-width: 320px;
}
.socials { display: flex; gap: 8px; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--bg-tinted);
  color: var(--text);
  display: grid;
  place-items: center;
  transition: all 0.2s;
}
.socials a:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.fc { display: flex; flex-direction: column; gap: 10px; }
.fc-head {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.fc a {
  font-size: 14px;
  color: var(--text);
  transition: color 0.15s;
}
.fc a:hover { color: var(--brand); }

.footer-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 13px;
  color: var(--muted);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--muted); transition: color 0.15s; }
.footer-legal a:hover { color: var(--ink); }

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1280px) {
  .hero-cine-wrap { grid-template-columns: minmax(380px, 1fr) 1.05fr; padding: 20px 24px; }
  .cine-left { padding: 16px 28px 16px 0; gap: 20px; }
  .cine-headline { font-size: clamp(30px, 3.6vw, 46px); }
  .cine-right { padding: 8px; min-height: 520px; }
  .cine-stage { max-width: 600px; min-height: 500px; }
  .demo-mobile-side { display: none; }
  .demo-phone { width: 240px; height: 490px; }
  .db-body { height: 380px; }
  .db-side { padding: 12px 8px; }
  .db-logo { width: 32px; height: 32px; }
  .db-nav { width: 32px; height: 32px; }
  .db-main { padding: 16px 18px; }
  .db-kpi { padding: 10px; }
  .db-kpi-v { font-size: 18px; }
  .db-chart { height: 180px; padding: 12px 14px; }
  .demo-web-body { height: 400px; }
  .web-editor { font-size: 11px; padding: 14px 12px; }
}
@media (max-width: 860px) {
  .hero-cine-wrap { grid-template-columns: 1fr; gap: 24px; padding: 20px 20px 0; }
  .cine-left { padding: 16px 0; gap: 18px; }
  .cine-right { order: -1; min-height: 440px; padding: 0; }
  .cine-stage { min-height: 440px; max-width: 100%; }
  .float-card { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .work-card.wc-wide, .work-card.wc-thin, .work-card.wc-half, .work-card.wc-third { grid-column: span 12; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .marquee-item { font-size: 26px; }
  .demo-mobile-side { display: none; }
  .demo-web-body { grid-template-columns: 1fr; height: auto; }
  .web-editor { height: 240px; }
}
@media (max-width: 640px) {
  .container, .hero-trust-wrap { padding-left: 20px; padding-right: 20px; }
  .services-grid, .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 64px 0; }
  .cta-card { padding: 56px 24px; }
  .hero-meta { flex-wrap: wrap; gap: 16px; }
  .meta-divider { display: none; }
  .demo-phone { width: 240px; height: 480px; }
  .db-body { grid-template-columns: 1fr; height: auto; }
  .db-side { display: none; }
  .db-kpis { grid-template-columns: repeat(2, 1fr); }
  .ec-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   v2 — HERO CINEMATIC ENHANCEMENTS
   ============================================================ */

/* === Clean white hero — all decorative bg layers off === */
.hero-cinema {
  background: #FFFFFF;
}
.hero-cine-bg { display: none; }

/* === Cine stage glow === */
.cine-right { perspective: 1600px; }
.cine-stage::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse 55% 55% at 50% 50%, rgba(1,92,253,0.14), transparent 65%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
  animation: stageGlow 7s ease-in-out infinite;
}
@keyframes stageGlow {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

/* === Slide active enter animation === */
.cine-slide.active > * {
  animation: slideZoomIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes slideZoomIn {
  0% { opacity: 0; transform: translateY(24px) scale(0.96); filter: blur(6px); }
  60% { filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

/* === Left content stagger on slide change === */
.cine-left.cine-fade-in .cine-eyebrow,
.cine-left.cine-fade-in .cine-narrator,
.cine-left.cine-fade-in .cine-ctas,
.cine-left.cine-fade-in .cine-pager,
.cine-left.cine-fade-in .hero-meta {
  animation: leftStagger 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.cine-left.cine-fade-in .cine-eyebrow { animation-delay: 0s; }
.cine-left.cine-fade-in .cine-narrator { animation-delay: 0.08s; }
.cine-left.cine-fade-in .cine-ctas { animation-delay: 0.18s; }
.cine-left.cine-fade-in .cine-pager { animation-delay: 0.28s; }
.cine-left.cine-fade-in .hero-meta { animation-delay: 0.38s; }
@keyframes leftStagger {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === Eyebrow & service-name polish === */
.cine-eyebrow {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: rgba(1,92,253,0.18);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 6px 16px -4px rgba(1,92,253,0.10);
}
.cine-service-name { display: inline-flex; align-items: center; }
.cine-service-name::after {
  content: '';
  display: inline-block;
  width: 7px; height: 13px;
  background: var(--brand);
  margin-left: 5px;
  animation: blink 1s steps(2) infinite;
  border-radius: 1px;
}

/* === Pager progress + glow === */
.cine-pager-item {
  position: relative;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.cine-pager-item:hover { transform: translateX(4px); }
.cine-pager-item.active {
  background: linear-gradient(135deg, #fff 0%, #FAFBFF 100%);
  border-color: transparent;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 12px 28px -10px rgba(1,92,253,0.20),
    0 0 0 1px rgba(1,92,253,0.18);
}
.cine-pager-item.active .cpi-num {
  background: linear-gradient(135deg, var(--brand), var(--grad-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* === Hero meta numbers shimmer === */
.meta-v {
  background: linear-gradient(135deg, var(--ink) 0%, var(--brand) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}

/* === Mobile demo: live notification banner === */
.dp-notif {
  position: absolute;
  top: 60px; left: 12px; right: 12px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 12px 28px -8px rgba(4,29,65,0.22);
  z-index: 6;
  opacity: 0;
  transform: translateY(-110%);
  animation: dpNotifPop 12s ease-in-out infinite;
}
.dp-notif-ic {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, #015CFD, #013EAB);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px -2px rgba(1,92,253,0.45);
}
.dp-notif-ic svg { width: 14px; height: 14px; color: #fff; }
.dp-notif-i { flex: 1; min-width: 0; }
.dp-notif-t {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dp-notif-s { font-size: 10.5px; color: var(--muted); margin-top: 1px; }
.dp-notif-time {
  font-size: 9.5px;
  color: var(--muted-2);
  font-family: 'JetBrains Mono', monospace;
}
@keyframes dpNotifPop {
  0%, 6% { opacity: 0; transform: translateY(-110%); }
  9%, 22% { opacity: 1; transform: translateY(0); }
  25%, 100% { opacity: 0; transform: translateY(-110%); }
}

/* === Web demo: save badge + cmd palette flash === */
.web-saved {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(16,185,129,0.14);
  color: #047857;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(16,185,129,0.35);
  z-index: 3;
  animation: webSavedPop 5s ease-in-out infinite;
}
.web-saved::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
  animation: pulse 2s infinite;
}
@keyframes webSavedPop {
  0%, 75% { opacity: 0; transform: translateY(-6px) scale(0.9); }
  82%, 96% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-6px) scale(0.9); }
}

.web-cmd {
  position: absolute;
  inset: 30% 16% auto 16%;
  background: rgba(15,23,42,0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: rgba(255,255,255,0.85);
  box-shadow: 0 24px 48px -12px rgba(0,0,0,0.45);
  z-index: 4;
  opacity: 0;
  animation: webCmdFlash 9s ease-in-out infinite;
}
.web-cmd kbd {
  font-size: 9.5px;
  padding: 2px 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  margin-left: auto;
  letter-spacing: 0.05em;
}
.web-cmd .cmd-cur {
  display: inline-block;
  width: 1.5px;
  height: 11px;
  background: var(--brand);
  animation: blink 0.8s infinite;
}
@keyframes webCmdFlash {
  0%, 70% { opacity: 0; transform: translateY(8px); }
  76%, 90% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-8px); }
}

/* === SaaS: KPI flash + new order toast === */
.db-kpi {
  position: relative;
  overflow: hidden;
  transition: background 0.3s, transform 0.3s;
}
.db-kpi.flash {
  animation: kpiFlash 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes kpiFlash {
  0% { background: rgba(1,92,253,0.18); transform: scale(1); }
  20% { transform: scale(1.025); box-shadow: 0 0 0 4px rgba(1,92,253,0.12); }
  100% { background: var(--bg-soft); transform: scale(1); box-shadow: none; }
}
.db-kpi-v { transition: color 0.3s; }
.db-kpi.flash .db-kpi-v { color: var(--brand); }

.db-toast {
  position: absolute;
  top: 14px; right: 14px;
  background: linear-gradient(135deg, #fff 0%, #F8FAFF 100%);
  border: 1px solid rgba(1,92,253,0.2);
  border-radius: 12px;
  padding: 10px 14px 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 18px 36px -12px rgba(1,92,253,0.25);
  z-index: 5;
  animation: dbToastSlide 7s ease-out infinite;
  max-width: 220px;
}
.db-toast-ic {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #10B981, #047857);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
}
.db-toast-ic svg { width: 13px; height: 13px; }
.db-toast-t { font-size: 11.5px; font-weight: 700; color: var(--ink); letter-spacing: -0.005em; }
.db-toast-s {
  font-size: 10.5px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  margin-top: 2px;
}
@keyframes dbToastSlide {
  0%, 4% { opacity: 0; transform: translateX(40px); }
  8%, 25% { opacity: 1; transform: translateX(0); }
  30%, 100% { opacity: 0; transform: translateX(40px); }
}

/* === Automation: data packet on connector === */
.auto-connector { overflow: visible; }
.auto-connector.flowing::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 9px; height: 9px;
  background: radial-gradient(circle at 30% 30%, #fff 0%, var(--brand) 60%, transparent 100%);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow:
    0 0 12px rgba(1,92,253,0.7),
    0 0 24px rgba(1,92,253,0.35);
  animation: packetFlow 1.2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  pointer-events: none;
}
@keyframes packetFlow {
  0% { top: -6px; opacity: 0; transform: translateX(-50%) scale(0.6); }
  20% { opacity: 1; transform: translateX(-50%) scale(1); }
  80% { opacity: 1; }
  100% { top: calc(100% + 4px); opacity: 0; transform: translateX(-50%) scale(0.6); }
}

/* Live log feed */
.auto-log { position: relative; overflow: hidden; }
.auto-log .l-pulse {
  margin-left: auto;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #6EE7B7;
  box-shadow: 0 0 8px #6EE7B7;
  animation: pulse 1.6s infinite;
}

/* === E-commerce: cart popup drama + filter active anim === */
.ec-cart-popup {
  border: 1px solid rgba(16,185,129,0.3);
  box-shadow:
    0 24px 48px -12px rgba(16,185,129,0.25),
    0 0 0 1px rgba(16,185,129,0.1);
}
.ec-cart-h {
  font-size: 11.5px;
  background: rgba(16,185,129,0.1);
  padding: 5px 9px;
  border-radius: 6px;
  margin-bottom: 12px;
  width: fit-content;
}
.ec-prod {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
}
.ec-prod:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 18px 36px -12px rgba(4,29,65,0.18);
  border-color: var(--brand);
  z-index: 2;
}
.ec-prod-img { transition: transform 0.5s; }
.ec-prod:hover .ec-prod-img { transform: scale(1.05); }

.ec-cat-row span {
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.ec-cat-row span.active {
  animation: catActivePop 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 6px 14px -4px rgba(4,29,65,0.25);
}
@keyframes catActivePop {
  0% { transform: scale(0.92); }
  60% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

.ec-cart-badge {
  animation: cartBadgePulse 6s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(1,92,253,0.5);
}
@keyframes cartBadgePulse {
  0%, 35% { transform: scale(1); background: var(--brand); box-shadow: 0 0 0 0 rgba(1,92,253,0.5); }
  40% { transform: scale(1.35); background: #10B981; box-shadow: 0 0 0 8px rgba(16,185,129,0.3); }
  46% { transform: scale(1); background: #10B981; box-shadow: 0 0 0 0 rgba(16,185,129,0); }
  85%, 100% { transform: scale(1); background: var(--brand); box-shadow: 0 0 0 0 rgba(1,92,253,0); }
}

/* === Hero scroll cue === */
.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  font-weight: 600;
  color: var(--muted-2);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 4;
  pointer-events: none;
  opacity: 0.75;
}
.hero-scroll-cue .cue-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, var(--muted-2), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-cue .cue-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 12px;
  background: var(--brand);
  animation: cueDrop 2s ease-in-out infinite;
}
@keyframes cueDrop {
  0% { transform: translateY(-100%); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(200%); opacity: 0; }
}

/* === Live status indicator above stage === */
.cine-status {
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 9px;
  background: rgba(15,23,42,0.92);
  backdrop-filter: blur(14px);
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
  z-index: 6;
  box-shadow: 0 12px 32px -8px rgba(15,23,42,0.4);
}
.cine-status .live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #EF4444;
  box-shadow: 0 0 8px #EF4444;
  animation: pulse 1.5s infinite;
}

/* === Reduced motion === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* === Responsive tweaks for new pieces === */
@media (max-width: 1280px) {
  .fc-deploy { top: 0; right: 0; }
  .fc-perf { bottom: 18%; left: -8px; }
  .fc-clients { bottom: 0; right: 0; }
  .float-card { padding: 9px 12px; font-size: 11px; max-width: 200px; }
  .fc-t { font-size: 12px; }
  .fc-s { font-size: 10.5px; }
}
@media (max-width: 860px) {
  .float-card { display: none; }
  .hero-scroll-cue { display: none; }
  .cine-status { top: 2px; font-size: 9.5px; }
}

/* ============================================================
   v3 — PREMIUM POLISH (cursor, tilt, magnetic, gradient flow)
   ============================================================ */

/* --- Mouse-follow spotlight on hero --- */
.hero-cinema .spotlight {
  position: absolute;
  pointer-events: none;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(1,92,253,0.12) 0%, rgba(1,92,253,0.04) 40%, transparent 65%);
  transform: translate(-50%, -50%);
  transition: opacity 0.45s ease;
  opacity: 0;
  z-index: 0;
  filter: blur(24px);
  will-change: left, top;
}
.hero-cinema:hover .spotlight { opacity: 1; }

/* --- Animated gradient text flow --- */
.grad-text {
  background-size: 220% 100%;
  animation: gradFlow 9s linear infinite;
}
@keyframes gradFlow {
  from { background-position: 0% 50%; }
  to { background-position: 220% 50%; }
}
.grad-light {
  background-size: 220% 100%;
  animation: gradFlow 9s linear infinite;
}

/* --- Hero meta values flow too --- */
.meta-v {
  background-size: 220% 100%;
  animation: gradFlow 8s linear infinite;
}

/* --- Cinema stage 3D tilt --- */
.cine-stage {
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.cine-slide { transform-style: preserve-3d; }

/* --- Magnetic primary buttons with shine sweep --- */
.btn-primary {
  overflow: hidden;
  isolation: isolate;
  will-change: transform;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -120%;
  width: 60%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-22deg);
  pointer-events: none;
  transition: left 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}
.btn-primary:hover::after { left: 160%; }

.btn-white {
  overflow: hidden;
  isolation: isolate;
}
.btn-white::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -120%;
  width: 60%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(1,92,253,0.18), transparent);
  transform: skewX(-22deg);
  pointer-events: none;
  transition: left 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-white:hover::after { left: 160%; }

/* --- Service cards: shine sweep + icon polish --- */
.service-card {
  isolation: isolate;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(115deg, transparent 35%, rgba(1,92,253,0.06) 50%, transparent 65%);
  pointer-events: none;
  transition: left 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}
.service-card:hover::after { left: 100%; }
.service-card > * { position: relative; z-index: 1; }

.svc-icon {
  position: relative;
  overflow: hidden;
}
.svc-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover .svc-icon::before { transform: translateX(110%); }

/* --- Work cards: tilt-ready --- */
.work-card {
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s, border-color 0.4s;
  will-change: transform;
}
.work-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(4,29,65,0.35) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.work-card:hover .work-visual::after { opacity: 1; }

/* --- Process timeline progress line --- */
.process-grid::after {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--brand), var(--grad-3));
  transition: width 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 12px rgba(1,92,253,0.45);
  z-index: 0;
  border-radius: 2px;
}
.process-grid.in-view::after { width: 76%; }
.process-step { z-index: 1; }
.process-step.in-view .ps-num {
  animation: psNumBounce 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.process-grid.in-view .process-step:nth-child(1) .ps-num { animation-delay: 0.15s; }
.process-grid.in-view .process-step:nth-child(2) .ps-num { animation-delay: 0.45s; }
.process-grid.in-view .process-step:nth-child(3) .ps-num { animation-delay: 0.75s; }
.process-grid.in-view .process-step:nth-child(4) .ps-num { animation-delay: 1.05s; }
@keyframes psNumBounce {
  0% { transform: scale(0.5) rotate(-12deg); opacity: 0; }
  60% { transform: scale(1.12) rotate(2deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

/* --- Scroll progress bar at top --- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2.5px;
  width: 100%;
  background: linear-gradient(90deg, var(--brand) 0%, var(--grad-2) 50%, var(--grad-3) 100%);
  z-index: 200;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.08s linear;
  box-shadow: 0 0 14px rgba(1,92,253,0.55);
  pointer-events: none;
}

/* --- Nav active indicator --- */
.nav-links a {
  position: relative;
}
.nav-links a::before {
  content: '';
  position: absolute;
  left: 14px; right: 14px;
  bottom: 4px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--grad-3));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links a.active::before,
.nav-links a:hover::before {
  transform: scaleX(1);
}
.nav-links a.active {
  color: var(--ink);
  background: rgba(1,92,253,0.06);
}

/* --- Section gradient hairline (top) --- */
.section-tinted::before, .section-light::before {
  content: '';
  position: absolute;
  top: 0; left: 18%; right: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(1,92,253,0.28), transparent);
  pointer-events: none;
}

/* --- Trust band: diamond separators --- */
.trust-row > div::before {
  content: '◆';
  margin-right: 16px;
  color: var(--brand);
  opacity: 0.35;
  font-size: 11px;
  vertical-align: middle;
}

/* --- CTA premium animated grid --- */
.cta-card { isolation: isolate; }
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 80%);
  animation: ctaGridDrift 50s linear infinite;
  z-index: 0;
}
@keyframes ctaGridDrift {
  from { background-position: 0 0; }
  to { background-position: 56px 56px; }
}

/* --- Brand logo polish --- */
.brand-logo {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s;
}
.brand:hover .brand-logo {
  transform: scale(1.06);
  filter: drop-shadow(0 6px 18px rgba(1,92,253,0.32));
}

/* --- Reveal: blur-to-clear --- */
.reveal {
  filter: blur(8px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { filter: blur(0); }

/* --- Marquee items polish --- */
.marquee-item {
  transition: color 0.3s, opacity 0.3s, transform 0.3s;
}
.marquee-item:hover {
  color: var(--brand);
  transform: scale(1.02);
}

/* --- Float cards subtle parallax on right hover --- */
.cine-right .float-card {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s;
  will-change: transform;
}
.cine-right:hover .fc-deploy { transform: translate(-6px, -6px) rotate(-1deg); }
.cine-right:hover .fc-perf { transform: translate(6px, -6px) rotate(1deg); }
.cine-right:hover .fc-clients { transform: translate(-6px, 4px) rotate(-1deg); }

/* --- Testimonial cards: subtle gradient border on hover --- */
.testi {
  position: relative;
  isolation: isolate;
}
.testi::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--brand), var(--grad-3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.testi:hover::before { opacity: 1; }

/* --- Why cells: shine on hover --- */
.why-cell { isolation: isolate; }
.why-cell::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(115deg, transparent 35%, rgba(1,92,253,0.05) 50%, transparent 65%);
  pointer-events: none;
  transition: left 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}
.why-cell:hover::after { left: 100%; }

/* --- Work card hover lifts: subtle 3D --- */
.work-card:hover {
  transform: translateY(-6px) scale(1.005);
}

/* --- Cine-pager fill is cleaner --- */
.cpi-bar { box-shadow: inset 0 0 0 0.5px rgba(4,29,65,0.04); }
.cpi-fill {
  box-shadow: 0 0 8px rgba(1,92,253,0.45);
}

/* --- Headline subtle weight shimmer --- */
.cine-headline {
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
}

/* --- Hero CTAs glow on hover --- */
.btn-primary:hover {
  box-shadow:
    0 12px 28px -8px rgba(1,92,253,0.45),
    0 0 0 1px rgba(1,92,253,0.2);
}

/* --- Trust label shimmer --- */
.trust-l {
  background: linear-gradient(90deg, var(--muted-2) 0%, var(--ink) 50%, var(--muted-2) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradFlow 6s linear infinite;
}

/* --- Process timeline mobile fallback --- */
@media (max-width: 860px) {
  .process-grid.in-view::after { width: 0; }
}

/* --- Reduce-motion safety override (already global) --- */

/* ============================================================
   v4 — IMPACT BAND, FAQ ACCORDION, CONTACT FORM
   ============================================================ */

/* === Impact stats band === */
.impact-sec {
  position: relative;
  background: #fff;
  color: var(--ink);
  padding: 96px 0;
  overflow: hidden;
}
.impact-bg { display: none; }
.impact-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
  position: relative;
  z-index: 1;
}
.impact-title {
  font-size: clamp(34px, 4.4vw, 54px);
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.06;
  margin-bottom: 14px;
}
.impact-sub {
  font-size: 17px;
  color: var(--text);
  line-height: 1.55;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}
.impact-cell {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px 28px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.impact-cell:hover {
  border-color: rgba(1,92,253,0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.impact-ic {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--brand), var(--grad-3));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 22px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 8px 20px -6px rgba(1,92,253,0.55);
}
.impact-v {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(44px, 5.2vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: baseline;
}
.impact-suffix, .impact-prefix {
  font-size: 0.55em;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.02em;
}
.impact-l {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.impact-d {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-sec { padding: 72px 0; }
}
@media (max-width: 640px) {
  .impact-grid { grid-template-columns: 1fr; }
}

/* === FAQ accordion === */
.faq-container { max-width: 920px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item:hover { border-color: rgba(1,92,253,0.3); }
.faq-item.open {
  border-color: var(--brand);
  box-shadow: 0 14px 32px -14px rgba(1,92,253,0.22);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: color 0.25s;
}
.faq-item.open .faq-q { color: var(--brand); }
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-tinted);
  display: grid;
  place-items: center;
  color: var(--ink);
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-icon svg { width: 14px; height: 14px; transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1); }
.faq-item.open .faq-icon {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 16px -4px rgba(1,92,253,0.5);
}
.faq-item.open .faq-icon svg { transform: rotate(180deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner {
  overflow: hidden;
  min-height: 0;
}
.faq-a-text {
  padding: 0 26px 24px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
}
.faq-a-text strong { color: var(--ink); font-weight: 600; }

/* === Contact form === */
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.contact-card .cta-mesh { display: none; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  position: relative;
  z-index: 1;
}
.contact-info { color: var(--text); }
.contact-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 18px 0 16px;
  line-height: 1.08;
}
.contact-lead {
  font-size: 16px;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 28px;
}
.contact-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.contact-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}
.cp-ic {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--grad-3));
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 10px -2px rgba(1,92,253,0.5);
}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cc-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--ink-2);
  transition: all 0.2s;
}
.cc-row:hover:not(.cc-static) {
  background: rgba(1,92,253,0.06);
  border-color: rgba(1,92,253,0.3);
  color: var(--brand);
}
.cc-ic {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: rgba(1,92,253,0.08);
  display: grid;
  place-items: center;
  color: var(--brand);
  flex-shrink: 0;
}

.contact-form {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform 0.5s;
}
.contact-form.shake {
  animation: shake 0.45s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}
@keyframes shake {
  10%, 90% { transform: translateX(-2px); }
  20%, 80% { transform: translateX(3px); }
  30%, 50%, 70% { transform: translateX(-5px); }
  40%, 60% { transform: translateX(5px); }
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cf-field { display: flex; flex-direction: column; gap: 7px; }
.cf-field span {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -0.005em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.cf-field span em {
  font-style: normal;
  color: var(--brand);
  margin-left: 2px;
}
.cf-field input,
.cf-field select,
.cf-field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: var(--ink);
  transition: all 0.22s ease;
}
.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: var(--muted-2);
}
.cf-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%239CA5B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.cf-field select option { background: #fff; color: var(--ink); }
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(1,92,253,0.15);
}
.cf-field input:invalid:not(:placeholder-shown) {
  border-color: rgba(239,68,68,0.5);
}
.cf-field textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
}

.cf-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}
.cf-chips input { display: none; }
.cf-chips label {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--ink-2);
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  font-weight: 500;
}
.cf-chips label:hover {
  background: var(--bg-tinted);
  border-color: var(--muted-2);
}
.cf-chips input:checked + label {
  background: linear-gradient(135deg, var(--brand), var(--grad-2));
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 6px 14px -4px rgba(1,92,253,0.55);
  transform: translateY(-1px);
}

.cf-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}
.cf-priv {
  font-size: 12px;
  color: var(--muted);
  max-width: 280px;
  line-height: 1.4;
}
.cf-submit { background: linear-gradient(135deg, var(--brand), var(--grad-2)); }
.cf-submit:hover { box-shadow: 0 16px 36px -10px rgba(1,92,253,0.55); }

.cf-success {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16,185,129,0.96) 0%, rgba(4,120,87,0.96) 100%);
  border-radius: 18px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: blur(8px);
}
.contact-form.success .cf-success {
  opacity: 1;
  pointer-events: auto;
}
.cf-success-ic {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: grid;
  place-items: center;
  color: #fff;
  margin: 0 auto 16px;
  animation: checkPop 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
@keyframes checkPop {
  0% { transform: scale(0.4); opacity: 0; }
  60% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.cf-success h4 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.02em;
}
.cf-success p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.9);
  max-width: 320px;
  margin: 0 auto;
  line-height: 1.55;
}

/* === Contact responsive === */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-card { padding: 44px 32px; }
}
@media (max-width: 640px) {
  .contact-card { padding: 32px 22px; border-radius: 22px; }
  .contact-form { padding: 22px; }
  .cf-row { grid-template-columns: 1fr; }
  .cf-foot { flex-direction: column; align-items: stretch; }
  .cf-priv { max-width: 100%; }
  .impact-sec { padding: 64px 0; }
}
