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

/* ─── TOKENS ─── */
:root {
  /* ── Dark Neon Design System ── */
  --bg:           #080B14;
  --bg-surface:   #0D1220;
  --bg-card:      rgba(255,255,255,0.05);

  --border:       rgba(255,255,255,0.09);
  --border-glow:  rgba(139,92,246,0.35);

  --purple:       #8b5cf6;
  --purple-dim:   #6d28d9;
  --cyan:         #06b6d4;
  --blue:         #3b82f6;

  --glow-purple:  0 0 24px rgba(139,92,246,0.4);
  --glow-cyan:    0 0 24px rgba(6,182,212,0.4);
  --glow-blue:    0 0 24px rgba(59,130,246,0.4);

  --text:         #f0f4ff;
  --text-muted:   #94a3b8;
  --text-dim:     #475569;
  --white:        #ffffff;

  /* ── Legacy aliases — map old tokens to dark system ── */
  --blue-50:      rgba(139,92,246,0.06);
  --blue-100:     rgba(139,92,246,0.12);
  --blue-200:     rgba(139,92,246,0.22);
  --blue-400:     #06b6d4;
  --blue-500:     #8b5cf6;
  --blue-600:     #8b5cf6;
  --blue-700:     #6d28d9;
  --ink:          #f0f4ff;
  --ink-mid:      #94a3b8;
  --ink-soft:     #64748b;
  --surface:      #0D1220;
  --card-bg:      rgba(255,255,255,0.05);
  --border-white: rgba(255,255,255,0.09);

  --font: 'Plus Jakarta Sans', sans-serif;
  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── BACKGROUND ─── */
.bg-gradient {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 5% 0%,   rgba(139,92,246,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at 95% 10%,  rgba(6,182,212,0.12)  0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 50% 105%, rgba(59,130,246,0.10) 0%, transparent 65%),
    #080B14;
  pointer-events: none;
}

.page { position: relative; z-index: 1; }

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 68px;
  background: rgba(8,11,20,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.03em;
  cursor: pointer;
}
.nav-logo span { color: var(--purple); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 7px 16px;
  border-radius: 99px;
  transition: all .2s;
  cursor: pointer;
}
.nav-links a:hover { color: var(--text); background: rgba(139,92,246,0.1); }
.nav-links a.active { color: var(--purple); font-weight: 600; }

.nav-cta {
  background: var(--purple) !important;
  color: #fff !important;
  border-radius: 99px !important;
  padding: 8px 20px !important;
  font-weight: 600 !important;
  box-shadow: var(--glow-purple) !important;
  transition: background .2s, transform .2s, box-shadow .2s !important;
}
.nav-cta:hover { background: var(--purple-dim) !important; transform: translateY(-1px); box-shadow: 0 0 32px rgba(139,92,246,0.55) !important; }
.nav-cta.active { color: #fff !important; }
.nav-demo { background: linear-gradient(135deg, var(--purple), var(--blue)) !important; }
.nav-demo:hover { background: linear-gradient(135deg, var(--purple-dim), #2563eb) !important; }

/* ── DEMO PAGE ── */
#page-demo { background: var(--bg); position: relative; }

/* Frosted overlay — sits on top of the bot content */
.demo-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 40px;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity .5s ease;
}
.demo-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* Bot content — always rendered, pointer-events locked until unlocked */
.demo-content { pointer-events: none; user-select: none; }
.demo-content.unlocked { pointer-events: all; user-select: auto; }

.gateway-card {
  background: #0f1629;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(139,92,246,.15);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
}
.gateway-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,.08);
  color: #7c3aed;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
}
.gateway-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.gateway-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}
.gateway-form { display: flex; flex-direction: column; gap: 14px; text-align: left; }
.gateway-form label { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 4px; display: block; }
.gateway-form input, .gateway-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color .15s;
  background: rgba(255,255,255,0.06);
}
.gateway-form input:focus, .gateway-form select:focus { border-color: var(--purple); }
.btn-enter {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  margin-top: 6px;
  transition: opacity .2s, transform .2s;
}
.btn-enter:hover { opacity: .92; transform: translateY(-1px); }
.demo-welcome-bar {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff;
  text-align: center;
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 600;
}
.demo-welcome-bar span { opacity: .8; font-weight: 400; }
.demo-page-header {
  background: linear-gradient(160deg, rgba(139,92,246,0.08) 0%, rgba(59,130,246,0.05) 100%);
  padding: 100px 60px 60px;
  text-align: center;
}
.demo-page-header-inner { max-width: 640px; margin: 0 auto; }
.demo-page-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  line-height: 1.15;
}
.demo-page-sub {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .demo-page-header { padding: 80px 24px 40px; }
}
.demo-section {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.demo-section + .demo-section { border-top: 1px solid var(--border); }
.demo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.demo-row.flip { direction: rtl; }
.demo-row.flip > * { direction: ltr; }
.demo-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(139,92,246,.12);
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 99px;
  margin-bottom: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.demo-brand-name {
  font-size: 32px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.demo-brand-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 24px;
}
.demo-brand-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.demo-chip {
  background: rgba(139,92,246,0.1);
  color: var(--cyan);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 99px;
}
.demo-chatbox {
  background: #0d1220;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(139,92,246,.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 520px;
}
.demo-chat-header {
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  display: flex;
  align-items: center;
  gap: 12px;
}
.demo-chat-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.demo-chat-name { color: #fff; font-weight: 700; font-size: 14px; }
.demo-chat-status {
  color: rgba(255,255,255,.75);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.demo-status-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; }
.demo-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #080b14;
}
.demo-messages::-webkit-scrollbar { width: 4px; }
.demo-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }
.demo-bubble {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
  word-break: break-word;
}
.demo-bubble.user { background: linear-gradient(135deg, var(--purple), var(--blue)); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.demo-bubble.bot { background: rgba(255,255,255,0.07); color: var(--text); align-self: flex-start; border-bottom-left-radius: 4px; border: 1px solid var(--border); }
.demo-typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.demo-typing span {
  width: 7px; height: 7px; border-radius: 50%; background: #94a3b8;
  animation: demoDot 1.2s infinite;
}
.demo-typing span:nth-child(2) { animation-delay: .2s; }
.demo-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes demoDot { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-5px); } }
.demo-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 16px;
  background: #080b14;
}
.demo-suggestion {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--cyan);
  cursor: pointer;
  transition: all .15s;
  font-family: inherit;
  white-space: nowrap;
}
.demo-suggestion:hover { background: var(--purple); color: #fff; border-color: var(--purple); }
.demo-input-row {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  background: #0d1220;
  border-top: 1px solid var(--border);
}
.demo-input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 14px;
  outline: none;
  font-family: inherit;
  background: rgba(255,255,255,0.05);
  color: var(--text);
  transition: border-color .15s;
}
.demo-input:focus { border-color: var(--purple); }
.demo-send {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .15s;
  flex-shrink: 0;
}
.demo-send:hover { opacity: 0.85; }
.demo-send svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 768px) {
  .demo-row, .demo-row.flip { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
  .demo-chatbox { height: 440px; }
  .gateway-card { padding: 32px 24px; }
}

/* ─── PAGE SECTIONS ─── */
.view { display: none; }
.view.active { display: block; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.view.active .anim-1 { animation: fadeUp .6s ease both; }
.view.active .anim-2 { animation: fadeUp .7s .1s ease both; }
.view.active .anim-3 { animation: fadeUp .7s .2s ease both; }
.view.active .anim-4 { animation: fadeUp .7s .3s ease both; }
.view.active .anim-5 { animation: fadeUp .8s .4s ease both; }

/* ─── SHARED LAYOUT ─── */
section { padding: 80px 60px; }
.inner { max-width: 1100px; margin: 0 auto; }

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--ink-mid);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 56px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff;
  box-shadow: var(--glow-purple);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--purple-dim), #2563eb);
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(139,92,246,0.55);
}
.btn-outline {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--border-glow);
  transform: translateY(-1px);
  box-shadow: 0 0 16px rgba(139,92,246,0.2);
}
.btn-live {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff;
  box-shadow: var(--glow-purple);
}
.btn-live:hover {
  opacity: .9;
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(139,92,246,0.55);
}
.live-banner {
  background: linear-gradient(135deg, #0d0a1e 0%, #0a1530 100%);
  padding: 48px 60px;
}
.live-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.live-banner-title {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.live-banner-sub {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}
.live-banner-btn { flex-shrink: 0; white-space: nowrap; }
@media (max-width: 768px) {
  .live-banner { padding: 40px 24px; }
  .live-banner-inner { flex-direction: column; text-align: center; }
}
.btn-white {
  background: white;
  color: var(--purple-dim);
  font-weight: 700;
}
.btn-white:hover {
  background: rgba(255,255,255,0.92);
  transform: translateY(-2px);
}
.btn-ghost-white {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
  font-weight: 600;
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

/* ─── CTA BLOCK (shared) ─── */
.cta-section { padding: 60px 60px 120px; text-align: center; }
.cta-card {
  max-width: 780px;
  margin: 0 auto;
  background: linear-gradient(145deg, var(--purple), var(--purple-dim));
  border-radius: var(--radius-xl);
  padding: 72px 60px;
  box-shadow: 0 20px 60px rgba(139,92,246,0.35);
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent);
  top: -100px; right: -100px;
  border-radius: 50%;
}
.cta-title {
  font-size: clamp(28px,4vw,44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 16px;
  position: relative;
}
.cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  line-height: 1.6;
  position: relative;
}
.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,11,20,0.8);
}
.footer-logo {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
}
.footer-logo span { color: var(--purple); }
.footer-copy { font-size: 13px; color: var(--text-dim); }
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  cursor: pointer;
  transition: color .15s;
}
.footer-links a:hover { color: var(--purple); }

/* ══════════════════════════════════════════
   HOME PAGE
══════════════════════════════════════════ */
.hero {
  padding: 110px 60px 80px;
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(6,182,212,0.08);
  border: 1px solid rgba(6,182,212,0.25);
  border-radius: 99px;
  padding: 6px 16px;
  margin-bottom: 32px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: blink 2s infinite;
  box-shadow: 0 0 8px var(--cyan);
}
@keyframes blink {
  0%,100% { opacity:1; transform: scale(1); }
  50% { opacity:.4; transform: scale(1.5); }
}
.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero h1 .highlight { color: var(--purple); }
.hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 44px;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 72px;
}

/* Hero visual */
.hero-visual { position: relative; max-width: 860px; margin: 0 auto; }
.hero-card {
  background: rgba(13,18,32,0.9);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 8px 48px rgba(139,92,246,0.15), var(--glow-purple);
}
.hero-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.metric-box {
  background: linear-gradient(135deg, rgba(139,92,246,0.08), rgba(6,182,212,0.05));
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: left;
}
.metric-label { font-size: 12px; font-weight: 500; color: var(--text-dim); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .05em; }
.metric-value { font-size: 28px; font-weight: 800; color: var(--text); letter-spacing: -0.03em; }
.metric-sub { font-size: 12px; color: var(--cyan); font-weight: 600; margin-top: 4px; }
.chat-preview {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: left;
  grid-column: span 2;
}
.chat-header { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.chat-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 14px;
}
.chat-name { font-size: 13px; font-weight: 700; color: var(--text); }
.chat-status { font-size: 11px; color: #22C55E; font-weight: 500; }
.chat-bubble {
  font-size: 13px; line-height: 1.5;
  padding: 10px 14px; border-radius: 12px; margin-bottom: 8px; max-width: 90%;
}
.bubble-bot { background: rgba(139,92,246,0.1); color: var(--text-muted); border-radius: 4px 12px 12px 12px; border: 1px solid rgba(139,92,246,0.15); }
.bubble-user { background: linear-gradient(135deg, var(--purple), var(--blue)); color: white; margin-left: auto; border-radius: 12px 4px 12px 12px; }

/* Why grid */
#why { background: transparent; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.why-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.why-card:hover { transform: translateY(-4px); border-color: var(--border-glow); box-shadow: 0 12px 40px rgba(139,92,246,0.15); }
.why-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue-100), var(--blue-200));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.why-title { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.02em; }
.why-body { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }

/* Products preview (home) */
#home-products {
  background: linear-gradient(180deg, transparent, rgba(139,92,246,0.05) 30%, rgba(139,92,246,0.03) 70%, transparent);
}
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative; overflow: hidden;
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--cyan), var(--purple));
  opacity: 0; transition: opacity .2s;
}
.product-card:hover { transform: translateY(-5px); border-color: var(--border-glow); box-shadow: 0 16px 48px rgba(139,92,246,0.2); }
.product-card:hover::before { opacity: 1; }
.product-card.featured {
  background: linear-gradient(145deg, var(--purple), var(--purple-dim));
  border-color: rgba(139,92,246,0.4); color: white;
  box-shadow: var(--glow-purple);
}
.product-card.featured::before { background: rgba(255,255,255,0.3); opacity: 1; }
.product-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue-500); background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: 99px; padding: 4px 12px;
  display: inline-block; margin-bottom: 20px; width: fit-content;
}
.product-card.featured .product-tag { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.9); }
.product-name { font-size: 26px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 10px; color: var(--ink); }
.product-card.featured .product-name { color: white; }
.product-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 28px; flex: 1; }
.product-card.featured .product-desc { color: rgba(255,255,255,0.7); }
.product-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.product-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--ink-mid); line-height: 1.5; }
.product-card.featured .product-features li { color: rgba(255,255,255,0.75); }
.check {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(59,130,246,0.1); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px; font-size: 10px; color: var(--blue-600);
}
.product-card.featured .check { background: rgba(255,255,255,0.15); color: white; }
.product-price {
  font-size: 13px; font-weight: 500; color: var(--ink-soft);
  margin-bottom: 18px; padding-top: 20px;
  border-top: 1px solid rgba(59,130,246,0.08);
}
.product-card.featured .product-price { border-top-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }
.product-price strong { font-size: 22px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.product-card.featured .product-price strong { color: white; }
.btn-card {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--font); font-size: 14px; font-weight: 700;
  padding: 13px 20px; border-radius: 99px; border: none; cursor: pointer;
  text-decoration: none; transition: all .2s;
  background: rgba(59,130,246,0.08); color: var(--blue-600);
  border: 1px solid rgba(59,130,246,0.15);
}
.btn-card:hover { background: var(--blue-600); color: white; border-color: transparent; }
.product-card.featured .btn-card { background: white; color: var(--blue-700); border-color: transparent; }
.product-card.featured .btn-card:hover { background: rgba(255,255,255,0.9); }

/* Quote */
.quote-section { padding: 80px 60px; text-align: center; }
.quote-card {
  max-width: 700px; margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px;
  box-shadow: 0 4px 40px rgba(139,92,246,0.1);
}
.quote-mark { font-size: 80px; line-height: .8; color: var(--purple); opacity: 0.4; font-weight: 800; margin-bottom: 20px; }
.quote-text { font-size: 20px; font-weight: 500; line-height: 1.65; color: var(--ink); margin-bottom: 28px; letter-spacing: -0.01em; }
.quote-author { font-size: 13px; font-weight: 600; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .07em; }

/* ─── TESTIMONIAL CAROUSEL ─── */
.carousel-wrapper {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.carousel-arrow {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.carousel-arrow:hover { background: var(--purple); color: white; border-color: var(--purple); box-shadow: var(--glow-purple); }
.carousel-track { flex: 1; overflow: hidden; }
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; animation: fadeUp .35s ease both; }
.carousel-dots {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 24px;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(139,92,246,0.25); cursor: pointer;
  transition: all .2s;
}
.carousel-dot.active { background: var(--purple); transform: scale(1.2); box-shadow: 0 0 8px var(--purple); }

/* ─── STATS BUTTON ─── */
/* Hero visual section */

/* Stats section */
.stats-section {
  padding: 48px 60px 64px;
  background: linear-gradient(180deg, transparent, rgba(139,92,246,0.04) 40%, transparent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  margin-bottom: 36px;
}
.stat-item {
  padding: 28px 20px;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border);
}
.stat-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--blue-600);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  font-weight: 500;
}

.stats-btn-wrap { text-align: center; margin-top: 32px; }
.stats-btn-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 420px;
  margin: 0 auto 16px;
}

@media (max-width: 900px) {
  .hero-visual-section { padding: 0 24px; }
  .hero-visual-wrap { transform: translateY(-20px); }
  .stats-section { padding: 40px 24px 56px; }
  .stats-grid { grid-template-columns: 1fr; gap: 16px; }
}
.btn-stats {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-size: 14px; font-weight: 600;
  color: var(--blue-600); text-decoration: none;
  padding: 10px 22px; border-radius: 99px;
  border: 1.5px solid rgba(59,130,246,0.2);
  background: rgba(255,255,255,0.8);
  transition: all .2s; cursor: pointer;
}
.btn-stats:hover { background: var(--blue-600); color: white; border-color: transparent; }

/* ─── STATS BAR ─── */
.stats-bar { padding: 0 60px 80px; }
.stats-bar-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex; align-items: center; gap: 20px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.stat-card:hover { transform: translateY(-3px); border-color: var(--border-glow); box-shadow: 0 10px 36px rgba(139,92,246,0.15); }
.stat-icon-wrap {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue-100), var(--blue-200));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.stat-card-value { font-size: 32px; font-weight: 800; color: var(--ink); letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px; }
.stat-card-label { font-size: 13px; font-weight: 600; color: var(--ink-mid); margin-bottom: 4px; }
.stat-card-sub { font-size: 12px; color: var(--blue-500); font-weight: 600; }

/* ─── PROBLEM SECTION ─── */
.problem-section {
  padding: 80px 60px;
  background: linear-gradient(180deg, transparent, rgba(139,92,246,0.04) 40%, rgba(139,92,246,0.02) 70%, transparent);
}
.problem-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.problem-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; letter-spacing: -0.035em; line-height: 1.1;
  color: var(--ink); margin-bottom: 28px;
}
.problem-body { font-size: 18px; color: var(--ink-mid); line-height: 1.75; margin-bottom: 16px; }
.problem-closer {
  font-size: 22px; font-weight: 800; color: var(--blue-600);
  letter-spacing: -0.02em; margin-top: 32px;
  padding: 20px 32px;
  background: rgba(37,99,235,0.06);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: var(--radius);
  display: inline-block;
}

/* ─── TIER CARDS ─── */
.tier-price {
  font-size: 13px; color: var(--ink-soft);
  margin-bottom: 18px; padding-top: 20px;
  border-top: 1px solid rgba(59,130,246,0.08);
}
.product-card.featured .tier-price { border-top-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }
.tier-price .setup { display: block; font-size: 13px; font-weight: 500; margin-bottom: 4px; }
.tier-price .monthly { font-size: 20px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.product-card.featured .tier-price .monthly { color: white; }

/* ══════════════════════════════════════════
   PORTFOLIO PAGE
══════════════════════════════════════════ */
.page-hero {
  padding: 90px 60px 70px;
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}
.page-hero .hero-badge { margin-bottom: 28px; }
.page-hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800; letter-spacing: -0.035em; line-height: 1.08;
  color: var(--ink); margin-bottom: 20px;
}
.page-hero h1 .highlight { color: var(--blue-600); }
.page-hero p { font-size: 18px; color: var(--ink-mid); line-height: 1.7; max-width: 580px; margin: 0 auto; }

/* Product detail sections */
#tools { background: transparent; padding-top: 20px; }
.product-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px; margin-bottom: 28px;
  position: relative; overflow: hidden;
  transition: box-shadow .3s, border-color .3s;
}
.product-section:hover { border-color: var(--border-glow); box-shadow: 0 16px 60px rgba(139,92,246,0.12); }
.product-section.featured {
  background: linear-gradient(145deg, var(--purple) 0%, var(--purple-dim) 100%);
  border-color: rgba(139,92,246,0.4);
  box-shadow: var(--glow-purple);
}
.product-section::after {
  content: ''; position: absolute; bottom: -60px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.06), transparent);
  pointer-events: none;
}
.product-section.featured::after { background: radial-gradient(circle, rgba(255,255,255,0.07), transparent); }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.ps-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue-500); background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: 99px; padding: 4px 14px; display: inline-block; margin-bottom: 18px;
}
.product-section.featured .ps-tag { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.9); }
.ps-name { font-size: 40px; font-weight: 800; letter-spacing: -0.04em; color: var(--ink); margin-bottom: 6px; }
.product-section.featured .ps-name { color: white; }
.ps-tagline { font-size: 16px; font-weight: 600; color: var(--blue-500); margin-bottom: 24px; letter-spacing: -0.01em; }
.product-section.featured .ps-tagline { color: rgba(255,255,255,0.75); }
.ps-body { font-size: 15px; color: var(--ink-mid); line-height: 1.75; margin-bottom: 12px; }
.product-section.featured .ps-body { color: rgba(255,255,255,0.7); }
.ps-best { font-size: 13px; color: var(--ink-soft); line-height: 1.6; margin-top: 20px; }
.ps-best strong { color: var(--ink); font-weight: 700; }
.product-section.featured .ps-best { color: rgba(255,255,255,0.6); }
.product-section.featured .ps-best strong { color: rgba(255,255,255,0.9); }
.features-box {
  background: rgba(59,130,246,0.04);
  border: 1px solid rgba(59,130,246,0.1);
  border-radius: var(--radius); padding: 28px; margin-bottom: 20px;
}
.product-section.featured .features-box { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.15); }
.features-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-500); margin-bottom: 16px; }
.product-section.featured .features-label { color: rgba(255,255,255,0.6); }
.features-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.features-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--ink-mid); line-height: 1.5; }
.product-section.featured .features-list li { color: rgba(255,255,255,0.8); }
.fcheck {
  width: 20px; height: 20px; flex-shrink: 0; border-radius: 50%;
  background: rgba(59,130,246,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--blue-600); margin-top: 1px;
}
.product-section.featured .fcheck { background: rgba(255,255,255,0.2); color: white; }
.pricing-row {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 20px 28px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.product-section.featured .pricing-row { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.15); }
.pricing-main { font-size: 22px; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.product-section.featured .pricing-main { color: white; }
.pricing-note { font-size: 12px; color: var(--ink-soft); margin-top: 3px; }
.product-section.featured .pricing-note { color: rgba(255,255,255,0.5); }
.btn-product {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font); font-size: 14px; font-weight: 700;
  padding: 12px 24px; border-radius: 99px; border: none; cursor: pointer;
  text-decoration: none; transition: all .2s;
  background: var(--blue-600); color: white; white-space: nowrap;
}
.btn-product:hover { background: var(--blue-700); transform: translateY(-1px); }
.product-section.featured .btn-product { background: white; color: var(--blue-700); }
.product-section.featured .btn-product:hover { background: rgba(255,255,255,0.9); }

/* Portfolio grid */
#portfolio { background: linear-gradient(180deg, transparent, rgba(6,182,212,0.04) 30%, rgba(6,182,212,0.02) 70%, transparent); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 8px; }
.portfolio-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: transform .2s, box-shadow .2s, border-color .2s; position: relative; overflow: hidden;
}
.portfolio-card:hover { transform: translateY(-4px); border-color: var(--border-glow); box-shadow: 0 12px 40px rgba(139,92,246,0.15); }
.portfolio-card.invite {
  background: linear-gradient(135deg, rgba(139,92,246,0.04), rgba(6,182,212,0.06));
  border: 1.5px dashed rgba(139,92,246,0.25);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between;
}
.portfolio-label {
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue-500); background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.12); border-radius: 99px;
  padding: 4px 12px; display: inline-block; margin-bottom: 20px;
}
.portfolio-label.coming { color: var(--ink-soft); background: rgba(107,122,153,0.08); border-color: rgba(107,122,153,0.15); }
.portfolio-client { font-size: 20px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 6px; }
.portfolio-industry { font-size: 13px; color: var(--ink-soft); font-weight: 500; margin-bottom: 20px; }
.portfolio-product-used {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--blue-600);
  background: rgba(59,130,246,0.08); border-radius: 8px;
  padding: 6px 12px; margin-bottom: 20px;
}
.placeholder-bar {
  height: 12px; border-radius: 6px;
  background: linear-gradient(90deg, rgba(59,130,246,0.08), rgba(59,130,246,0.14), rgba(59,130,246,0.08));
  background-size: 200% 100%; animation: shimmer 2s infinite; margin-bottom: 8px;
}
.placeholder-bar.short { width: 60%; }
.placeholder-bar.medium { width: 80%; }
.placeholder-bar.full { width: 100%; }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
.invite-icon {
  width: 48px; height: 48px; background: rgba(59,130,246,0.1);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin-bottom: 16px;
}
.invite-title { font-size: 20px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 10px; }
.invite-body { font-size: 14px; color: var(--ink-mid); line-height: 1.65; margin-bottom: 24px; flex: 1; }
.btn-invite {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font); font-size: 14px; font-weight: 700;
  padding: 11px 22px; border-radius: 99px;
  border: 1.5px solid rgba(59,130,246,0.25);
  color: var(--blue-600); background: rgba(255,255,255,0.8);
  text-decoration: none; transition: all .2s;
}
.btn-invite:hover { background: var(--blue-600); color: white; border-color: transparent; }
.founding-banner {
  background: linear-gradient(135deg, rgba(139,92,246,0.08), rgba(6,182,212,0.06));
  border: 1px solid var(--border-glow); border-radius: var(--radius);
  padding: 28px 36px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px; margin-top: 36px;
}
.founding-title { font-size: 18px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 6px; }
.founding-sub { font-size: 14px; color: var(--ink-mid); line-height: 1.6; }

/* ══════════════════════════════════════════
   PRODUCTS PAGE
══════════════════════════════════════════ */

/* How It Works */
.steps-section { background: transparent; }
.steps-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.step-item {
  display: flex; gap: 28px; padding-bottom: 44px;
  position: relative;
}
.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 23px; top: 52px;
  width: 2px; bottom: 0;
  background: linear-gradient(to bottom, var(--blue-200), transparent);
}
.step-bubble {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(37,99,235,0.25);
}
.step-body { padding-top: 8px; }
.step-title { font-size: 20px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 10px; }
.step-desc { font-size: 15px; color: var(--ink-mid); line-height: 1.75; margin-bottom: 8px; }
.step-note { font-size: 14px; color: var(--blue-600); font-weight: 600; font-style: italic; }

/* Tier cards (full detail) */
.not-included-box {
  background: rgba(107,122,153,0.05);
  border: 1px solid rgba(107,122,153,0.12);
  border-radius: var(--radius); padding: 20px 24px; margin-bottom: 20px;
}
.not-included-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 12px; }
.not-included-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.not-included-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.xmark { width: 18px; height: 18px; flex-shrink: 0; border-radius: 50%; background: rgba(107,122,153,0.1); display: flex; align-items: center; justify-content: center; font-size: 9px; color: var(--ink-soft); margin-top: 1px; }

/* Add-ons */
.addons-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.addon-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 32px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.addon-card:hover { transform: translateY(-3px); border-color: var(--border-glow); box-shadow: 0 10px 32px rgba(139,92,246,0.12); }
.addon-icon { font-size: 24px; margin-bottom: 12px; }
.addon-title { font-size: 17px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 6px; }
.addon-price { font-size: 13px; font-weight: 700; color: var(--blue-600); margin-bottom: 10px; }
.addon-desc { font-size: 14px; color: var(--ink-mid); line-height: 1.65; }

/* Retainer coverage */
.retainer-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 48px;
}
.retainer-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 32px; }
.retainer-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px; background: rgba(255,255,255,0.03); border-radius: var(--radius-sm); border: 1px solid var(--border); }
.retainer-icon { font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.retainer-item-title { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.retainer-item-desc { font-size: 13px; color: var(--ink-mid); line-height: 1.5; }
.retainer-note { text-align: center; font-size: 14px; font-weight: 600; color: var(--ink-soft); margin-top: 28px; }

/* Value frame */
.value-frame {
  background: linear-gradient(145deg, #0d1220, #0a0f1e);
  border-radius: var(--radius-xl); padding: 64px;
  position: relative; overflow: hidden;
}
.value-frame::before {
  content: ''; position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.15), transparent);
  top: -200px; right: -100px; border-radius: 50%;
}
.value-frame-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-400); margin-bottom: 16px; position: relative; }
.value-frame-title { font-size: clamp(26px,3vw,38px); font-weight: 800; color: white; letter-spacing: -0.03em; margin-bottom: 40px; line-height: 1.15; position: relative; }
.value-stats { display: flex; flex-direction: column; gap: 16px; position: relative; margin-bottom: 44px; }
.value-stat-row { display: flex; align-items: flex-start; gap: 16px; padding: 16px 20px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-sm); }
.value-stat-row .vs-label { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.55; flex: 1; }
.value-stat-row .vs-label strong { color: white; }
.value-cta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; position: relative; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
}
.faq-item + .faq-item { border-top: none; border-radius: 0; }
.faq-item:first-child { border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
.faq-item:last-child { border-radius: 0 0 var(--radius-sm) var(--radius-sm); border-top: none; }
.faq-q {
  width: 100%; text-align: left; padding: 20px 24px;
  font-family: var(--font); font-size: 15px; font-weight: 700; color: var(--text);
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: background .15s;
}
.faq-q:hover { background: rgba(139,92,246,0.05); }
.faq-chevron { font-size: 12px; color: var(--ink-soft); transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 24px 20px; font-size: 14px; color: var(--ink-mid); line-height: 1.75; border-top: 1px solid var(--border); padding-top: 16px; }
.faq-item.open .faq-a { display: block; }

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.story-body { font-size: 16px; color: var(--ink-mid); line-height: 1.8; margin-bottom: 20px; }
.story-highlight {
  background: linear-gradient(135deg, rgba(139,92,246,0.08), rgba(6,182,212,0.05));
  border-left: 3px solid var(--cyan);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px; margin: 28px 0;
  font-size: 17px; font-weight: 600; color: var(--ink); line-height: 1.6; letter-spacing: -0.01em;
}
.problem-solution-box {
  background: var(--bg-card);
  border: 1px solid rgba(59,130,246,0.1);
  border-radius: var(--radius-xl); padding: 40px;
  display: flex; flex-direction: column; gap: 28px;
}
.ps-section-label { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--blue-500); margin-bottom: 16px; }
.ps-item {
  display: flex; gap: 12px; align-items: flex-start; padding: 16px;
  border-radius: var(--radius-sm); font-size: 14px; color: var(--ink-mid); line-height: 1.6;
}
.ps-item span:first-child { font-size: 16px; flex-shrink: 0; }
.ps-item.problem { background: rgba(239,68,68,0.04); border: 1px solid rgba(239,68,68,0.1); }
.ps-item.solution { background: rgba(34,197,94,0.04); border: 1px solid rgba(34,197,94,0.12); }

#values { background: linear-gradient(180deg, transparent, rgba(6,182,212,0.04) 40%, rgba(6,182,212,0.02) 70%, transparent); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.value-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 32px;
  transition: transform .2s, box-shadow .2s, border-color .2s; position: relative; overflow: hidden;
}
.value-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--cyan), var(--purple));
  opacity: 0; transition: opacity .2s;
}
.value-card:hover { transform: translateY(-4px); border-color: var(--border-glow); box-shadow: 0 12px 40px rgba(139,92,246,0.15); }
.value-card:hover::before { opacity: 1; }
.value-number { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-400); margin-bottom: 16px; }
.value-title { font-size: 22px; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; margin-bottom: 12px; }
.value-body { font-size: 15px; color: var(--ink-mid); line-height: 1.7; }

.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.team-intro { font-size: 16px; color: var(--ink-mid); line-height: 1.8; margin-bottom: 24px; }
.founder-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px; display: flex; gap: 20px; align-items: flex-start;
}
.founder-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: white; font-weight: 800;
}
.founder-name { font-size: 18px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 4px; }
.founder-role { font-size: 13px; font-weight: 600; color: var(--blue-500); margin-bottom: 12px; letter-spacing: .02em; }
.founder-bio { font-size: 14px; color: var(--ink-mid); line-height: 1.7; }
.team-side { display: flex; flex-direction: column; gap: 16px; }
.team-stat-card {
  background: var(--bg-card); backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 28px; display: flex; align-items: center; gap: 20px;
}
.stat-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue-100), var(--blue-200));
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; font-size: 20px; flex-shrink: 0;
}
.stat-label { font-size: 13px; color: var(--ink-soft); font-weight: 500; margin-bottom: 4px; }
.stat-value { font-size: 18px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.founding-invite {
  background: linear-gradient(135deg, rgba(37,99,235,0.06), rgba(147,197,253,0.12));
  border: 1px solid rgba(59,130,246,0.15); border-radius: var(--radius); padding: 24px 28px;
}
.founding-invite-title { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.01em; }
.founding-invite-body { font-size: 14px; color: var(--ink-mid); line-height: 1.65; margin-bottom: 16px; }
.founding-invite a { font-size: 14px; font-weight: 700; color: var(--blue-600); text-decoration: none; }
.founding-invite a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.info-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-500); margin-bottom: 12px; }
.info-block { margin-bottom: 40px; }
.expect-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.expect-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; color: var(--ink-mid); line-height: 1.55; }
.expect-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-100), var(--blue-200));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0; margin-top: 1px;
}
.who-for-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.who-for-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-mid); line-height: 1.5; }
.who-for-list li::before { content: '→'; color: var(--blue-500); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.direct-contact {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; gap: 14px;
}
.direct-label { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 4px; }
.contact-method { display: flex; align-items: center; gap: 14px; }
.contact-method-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(59,130,246,0.08); display: flex; align-items: center;
  justify-content: center; font-size: 16px; flex-shrink: 0;
}
.contact-method-type { font-size: 11px; font-weight: 600; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.contact-method-value { font-size: 14px; font-weight: 600; color: var(--ink); }
.contact-method-value a { color: var(--blue-600); text-decoration: none; transition: color .15s; }
.contact-method-value a:hover { color: var(--blue-700); text-decoration: underline; }
.reply-note { font-size: 12px; color: var(--ink-soft); padding-top: 8px; border-top: 1px solid var(--border); font-style: italic; }

.booking-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 8px 40px rgba(139,92,246,0.12);
}
.booking-card-header {
  background: linear-gradient(135deg, var(--purple), var(--purple-dim));
  padding: 32px 36px; position: relative; overflow: hidden;
}
.booking-card-header::before {
  content: ''; position: absolute; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
  top: -60px; right: -60px; border-radius: 50%;
}
.booking-header-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 8px; position: relative; }
.booking-header-title { font-size: 24px; font-weight: 800; color: white; letter-spacing: -0.03em; line-height: 1.2; position: relative; margin-bottom: 6px; }
.booking-header-sub { font-size: 14px; color: rgba(255,255,255,0.65); position: relative; }
.booking-card-body { padding: 36px; }
.calendly-placeholder {
  background: rgba(255,255,255,0.03); border: 2px dashed rgba(139,92,246,0.25);
  border-radius: var(--radius-lg); padding: 48px 32px; text-align: center; margin-bottom: 28px;
}
.calendly-icon {
  width: 56px; height: 56px; background: linear-gradient(135deg, var(--blue-100), var(--blue-200));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin: 0 auto 16px;
}
.calendly-title { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.01em; }
.calendly-sub { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 24px; max-width: 280px; margin-left: auto; margin-right: auto; }
.btn-calendly {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-size: 15px; font-weight: 700;
  padding: 14px 32px; border-radius: 99px; border: none; cursor: pointer;
  text-decoration: none; transition: all .2s;
  background: linear-gradient(135deg, var(--purple), var(--blue)); color: white;
  box-shadow: var(--glow-purple);
}
.btn-calendly:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 0 36px rgba(139,92,246,0.55); }
.booking-divider {
  display: flex; align-items: center; gap: 12px; margin: 24px 0;
  color: var(--ink-soft); font-size: 13px; font-weight: 500;
}
.booking-divider::before, .booking-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
label { font-size: 13px; font-weight: 600; color: var(--ink); letter-spacing: .01em; }
input, textarea, select {
  font-family: var(--font); font-size: 14px; color: var(--text);
  background: rgba(255,255,255,0.05); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px 16px; outline: none;
  transition: border-color .2s, box-shadow .2s; width: 100%; resize: none;
}
input::placeholder, textarea::placeholder { color: var(--text-dim); }
input:focus, textarea:focus, select:focus {
  border-color: var(--purple); box-shadow: 0 0 0 3px rgba(139,92,246,0.15); background: rgba(255,255,255,0.07);
}
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7A99' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px; cursor: pointer;
}
.btn-submit {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-size: 15px; font-weight: 700;
  padding: 15px 28px; border-radius: 99px; border: none; cursor: pointer;
  text-decoration: none; transition: all .2s;
  background: linear-gradient(135deg, var(--purple), var(--blue)); color: white;
  box-shadow: var(--glow-purple); width: 100%;
}
.btn-submit:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 0 36px rgba(139,92,246,0.55); }
.form-note { font-size: 12px; color: var(--ink-soft); text-align: center; line-height: 1.6; }

/* ══════════════════════════════════════════
   OPERATIONS VISUAL SECTION
══════════════════════════════════════════ */
.ops-section {
  padding: 80px 60px;
}
.ops-section .inner {
  max-width: 1100px;
  margin: 0 auto;
}
.ops-header {
  text-align: center;
  margin-bottom: 48px;
}

/* Tabs */
.ops-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 5px;
  width: fit-content;
  margin: 0 auto;
}
.ops-tab-btn {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 99px;
  border: none;
  background: none;
  color: var(--text-dim);
  cursor: pointer;
  transition: all .2s;
  letter-spacing: .01em;
}
.ops-tab-btn:hover { color: var(--text-muted); }
.ops-tab-btn.active {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff;
  box-shadow: var(--glow-purple);
}

/* Content area */
.ops-content { min-height: 360px; }
.ops-pane { display: none; }
.ops-pane.active { display: block; }

/* Two-column layout */
.ops-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 40px;
}

/* Left — metric cards */
.ops-metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ops-metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: border-color .2s;
  position: relative;
}
.ops-metric-card:hover { border-color: var(--border-glow); }
.ops-metric-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}
.ops-metric-header {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 4px;
}
.ops-metric-support {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
}

/* Right — visual panel */
.ops-visual {
  position: relative;
}
.ops-visual-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ops-img-placeholder {
  border: 2px dashed rgba(139,92,246,0.3);
  border-radius: var(--radius);
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(139,92,246,0.03);
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 600;
}
.ops-img-placeholder span {
  font-size: 28px;
}
.ops-placeholder-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(139,92,246,0.5);
  margin-top: 2px;
}

/* SVG connector lines */
.ops-connector-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  overflow: visible;
}
.ops-line {
  stroke: rgba(139,92,246,0.4);
  stroke-width: 1.5;
  fill: none;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}
.ops-line.animate {
  animation: drawLine .8s ease forwards;
}
.ops-line:nth-child(2).animate { animation-delay: .15s; }
.ops-line:nth-child(3).animate { animation-delay: .30s; }
.ops-line-dot {
  fill: var(--cyan);
  opacity: 0;
}
.ops-line-dot.animate {
  animation: dotPop .3s ease .7s forwards;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}
@keyframes dotPop {
  from { opacity: 0; transform: scale(0); }
  to   { opacity: 1; transform: scale(1); }
}

/* Proof section SVG animations (same pattern as ops) */
.proof-connector-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  overflow: visible;
}
.proof-line {
  stroke: rgba(139,92,246,0.4);
  stroke-width: 1.5;
  fill: none;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}
.proof-line.animate {
  animation: drawLine .8s ease forwards;
}
.proof-line:nth-child(2).animate { animation-delay: .15s; }
.proof-line:nth-child(3).animate { animation-delay: .30s; }
.proof-line-dot {
  fill: var(--cyan);
  opacity: 0;
}
.proof-line-dot.animate {
  animation: dotPop .3s ease .7s forwards;
}

/* Empty state (Finance / Marketing) */
.ops-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  gap: 12px;
  color: var(--text-dim);
}
.ops-empty-icon { font-size: 32px; opacity: .5; }
.ops-empty-title { font-size: 15px; font-weight: 600; color: var(--text-muted); }
.ops-empty-sub { font-size: 13px; color: var(--text-dim); }

/* ══════════════════════════════════════════
   HERO PROOF SECTION (Tabbed Data Views)
══════════════════════════════════════════ */
.hero-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 5px;
  width: fit-content;
  margin: 0 auto 40px;
}
.hero-tab-btn {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 99px;
  border: none;
  background: none;
  color: var(--text-dim);
  cursor: pointer;
  transition: all .2s;
  letter-spacing: .01em;
}
.hero-tab-btn:hover { color: var(--text-muted); }
.hero-tab-btn.active {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff;
  box-shadow: var(--glow-purple);
}
.hero-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}
.hero-content { display: none; }
.hero-content.active { display: contents; }
.hero-metrics {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: left;
}
.hero-metric-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-metric-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 2px;
}
.hero-metric-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.hero-metric-header {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
  flex-shrink: 0;
}
.hero-metric-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}
.hero-metric-support {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.6;
}
.hero-image-container {
  width: 100%;
  height: 320px;
  background: rgba(139,92,246,0.04);
  border: 1px dashed rgba(139,92,246,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 13px;
  padding: 24px;
}
.hero-image-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.hero-empty {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 60px 40px;
  color: var(--text-dim);
}
.hero-empty-icon {
  font-size: 40px;
  opacity: 0.5;
}
.hero-empty-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════
   AI READINESS BANNER
══════════════════════════════════════════ */
.readiness-section {
  padding: 120px 60px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}
.readiness-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(139,92,246,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.readiness-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.readiness-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.1;
}
.readiness-title .highlight { color: var(--cyan); }
.readiness-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
  font-weight: 500;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hero { padding: 72px 24px 60px; }
  section { padding: 60px 24px; }
  .page-hero { padding: 60px 24px 48px; }
  .why-grid, .products-grid, .values-grid { grid-template-columns: 1fr; }
  .hero-card-inner { grid-template-columns: 1fr; }
  .chat-preview { grid-column: span 1; }
  .cta-card { padding: 48px 28px; }
  .cta-btns { flex-direction: column; }
  .quote-section { padding: 60px 24px; }
  .cta-section { padding: 60px 24px 80px; }
  .product-layout { grid-template-columns: 1fr; gap: 36px; }
  .product-section { padding: 36px 28px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .founding-banner { flex-direction: column; text-align: center; }
  .story-grid, .team-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 20px; text-align: center; }
  .ops-section { padding: 60px 24px; }
  .ops-panel { grid-template-columns: 1fr; gap: 32px; }
  .ops-connector-svg { display: none; }
  .readiness-section { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ─── SERVICES PAGE ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  opacity: 0;
  transition: opacity .2s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: 0 12px 40px rgba(139,92,246,0.15);
}
.service-card:hover::before { opacity: 1; }

.service-number {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--purple);
}
.service-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}
.service-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--cyan);
}
.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}
.service-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 4px 0;
}
.service-delivers h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.service-delivers ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-delivers ul li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.service-delivers ul li::before {
  content: '→';
  color: var(--purple);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
  margin-top: 4px;
  transition: gap .15s;
}
.service-cta:hover { gap: 10px; }

/* ─── HERO TABS — text style ─── */
.hero-tab-text {
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 4px;
  cursor: pointer;
  position: relative;
  transition: color .2s;
  letter-spacing: 0.01em;
}
.hero-tab-text::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  transform: scaleX(0);
  transition: transform .2s;
  border-radius: 2px;
}
.hero-tab-text:hover { color: var(--text); }
.hero-tab-text.active {
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(6,182,212,0.6);
  font-weight: 600;
}
.hero-tab-text.active::after { transform: scaleX(1); }

/* ─── PORTFOLIO CAROUSEL ─── */
.portfolio-carousel { width: 100%; max-width: 680px; margin: 0 auto; }
.portfolio-slides { position: relative; }
.portfolio-slide { display: none; }
.portfolio-slide.active { display: block; }
.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  text-align: center;
  transition: border-color .2s;
}
.portfolio-card:hover { border-color: var(--border-glow); }
.portfolio-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(139,92,246,0.08);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 20px;
}
.portfolio-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.portfolio-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 20px;
}
.portfolio-meta {
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.portfolio-problem {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  max-width: 520px;
  margin: 0 auto 24px;
}
.portfolio-result {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.portfolio-result span {
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  background: rgba(6,182,212,0.08);
  border: 1px solid rgba(6,182,212,0.2);
  padding: 4px 12px;
  border-radius: 99px;
  letter-spacing: .02em;
}
.portfolio-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}
.portfolio-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 99px;
  width: 36px;
  height: 36px;
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
}
.portfolio-btn:hover { border-color: var(--purple); color: var(--purple); }
.portfolio-dots { display: flex; gap: 8px; align-items: center; }
.portfolio-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all .2s;
}
.portfolio-dot.active {
  background: var(--purple);
  box-shadow: 0 0 8px rgba(139,92,246,0.6);
  width: 20px;
  border-radius: 3px;
}

/* ─── HOMEPAGE SERVICES CARDS ─── */
.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.home-service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  cursor: pointer;
  text-decoration: none;
}
.home-service-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-glow);
  box-shadow: 0 8px 32px rgba(139,92,246,0.12);
}
.home-service-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--purple);
}
.home-service-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.home-service-subtitle {
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 4px;
}
.home-service-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.home-service-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  margin-top: 8px;
}
</style>
