/* ============================================================
   Scanmark LTD — Shared Stylesheet
   Direction: "Confetti Modern" — multi-color, intentional, modern
   ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --c-coral: #ff5e62;
  --c-coral-soft: #ff8e8f;
  --c-purple: #7c3aed;
  --c-purple-soft: #a78bfa;
  --c-teal: #14b8a6;
  --c-teal-soft: #5eead4;
  --c-yellow: #fbbf24;
  --c-pink: #ec4899;
  --c-lime: #84cc16;
  --c-blue: #3b82f6;
  --c-ink: #0b1020;
  --c-ink-2: #1e2541;
  --c-mute: #5a6079;
  --c-line: #e7e5f2;
  --c-bg: #fdfcfa;
  --c-bg-2: #f6f4ff;
  --grad-rainbow: linear-gradient(90deg, #ff5e62 0%, #ff8e8f 18%, #fbbf24 36%, #84cc16 54%, #14b8a6 72%, #3b82f6 88%, #7c3aed 100%);
  --grad-hero: linear-gradient(135deg, #ff5e62 0%, #ec4899 28%, #7c3aed 60%, #3b82f6 100%);
  --grad-warm: linear-gradient(135deg, #fbbf24 0%, #ff5e62 50%, #ec4899 100%);
  --grad-cool: linear-gradient(135deg, #14b8a6 0%, #3b82f6 50%, #7c3aed 100%);
  --grad-lime: linear-gradient(135deg, #84cc16 0%, #14b8a6 100%);
  --shadow-sm: 0 2px 8px rgba(11, 16, 32, 0.04);
  --shadow-md: 0 8px 32px -8px rgba(11, 16, 32, 0.10);
  --shadow-lg: 0 24px 60px -20px rgba(11, 16, 32, 0.18);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: 0; }

/* ===== Floating pill nav ===== */
.nav-wrap {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(94%, 1100px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 10px 22px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 40px -10px rgba(11, 16, 32, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--grad-hero);
  display: grid; place-items: center;
  color: white;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 4px 14px -2px rgba(124, 58, 237, 0.5);
  position: relative; overflow: hidden;
}

/* Logo image — used in nav */
.brand-logo {
  height: 36px;
  width: auto;
  display: block;
  transition: transform 0.2s;
  border-radius: 4px;
}
.brand:hover .brand-logo { transform: translateY(-1px); }

/* Logo in footer — larger */
.footer-logo {
  height: 56px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  border-radius: 6px;
}
.brand-mark::after {
  content: "";
  position: absolute; inset: 2px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,0.25), transparent 50%);
  pointer-events: none;
}
.brand-name { font-family: 'Outfit', sans-serif; }
.brand-name span { color: var(--c-mute); font-weight: 500; }

.nav-links {
  display: flex; gap: 4px; align-items: center;
  position: relative;
  background: rgba(246, 244, 255, 0.6);
  padding: 4px;
  border-radius: var(--radius-pill);
}
.nav-link {
  position: relative;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink-2);
  border-radius: var(--radius-pill);
  transition: color 0.25s;
  z-index: 1;
}
.nav-link:hover { color: var(--c-ink); }
.nav-link.active { color: white; }
.nav-indicator {
  position: absolute;
  top: 4px; height: calc(100% - 8px);
  background: var(--grad-hero);
  border-radius: var(--radius-pill);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  box-shadow: 0 4px 12px -2px rgba(124, 58, 237, 0.4);
}

.nav-cta { display: flex; gap: 8px; align-items: center; }
.btn-ghost {
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink-2);
  border-radius: var(--radius-pill);
  transition: all 0.2s;
}
.btn-ghost:hover { color: var(--c-ink); background: rgba(11, 16, 32, 0.04); }
.btn-primary {
  position: relative;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  background: var(--c-ink);
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -6px rgba(11, 16, 32, 0.4);
}
.btn-primary .dot {
  width: 6px; height: 6px;
  background: var(--c-lime);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--c-lime);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.nav-toggle { display: none; }
.mobile-menu { display: none; }

/* ===== Layout helpers ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(124, 58, 237, 0.08);
  color: var(--c-purple);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.eyebrow .pulse-dot {
  width: 6px; height: 6px;
  background: var(--c-purple);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.15);
  animation: pulse 2s ease-in-out infinite;
}
.eyebrow.coral { background: rgba(255, 94, 98, 0.1); color: var(--c-coral); }
.eyebrow.coral .pulse-dot { background: var(--c-coral); box-shadow: 0 0 0 4px rgba(255, 94, 98, 0.15); }
.eyebrow.teal { background: rgba(20, 184, 166, 0.1); color: var(--c-teal); }
.eyebrow.teal .pulse-dot { background: var(--c-teal); box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.15); }
.eyebrow.yellow { background: rgba(251, 191, 36, 0.15); color: #b45309; }
.eyebrow.yellow .pulse-dot { background: var(--c-yellow); box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.2); }
.eyebrow.pink { background: rgba(236, 72, 153, 0.1); color: var(--c-pink); }
.eyebrow.pink .pulse-dot { background: var(--c-pink); box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.15); }

h1, h2, h3, h4 { letter-spacing: -0.02em; line-height: 1.05; }
.serif { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; }

/* ===== Hero ===== */
.hero { padding: 160px 0 80px; position: relative; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(255, 94, 98, 0.18), transparent 50%),
    radial-gradient(ellipse 50% 50% at 80% 30%, rgba(124, 58, 237, 0.18), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 80%, rgba(20, 184, 166, 0.15), transparent 50%);
}
.page-hero { padding: 160px 0 60px; position: relative; overflow: hidden; }
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: 0.55; z-index: -1;
  animation: float 14s ease-in-out infinite;
}
.blob-1 { width: 380px; height: 380px; background: var(--c-coral); top: 100px; left: -120px; animation-delay: 0s; }
.blob-2 { width: 320px; height: 320px; background: var(--c-purple); top: 80px; right: -80px; animation-delay: -4s; }
.blob-3 { width: 280px; height: 280px; background: var(--c-teal); bottom: 60px; left: 30%; animation-delay: -8s; }
.blob-4 { width: 220px; height: 220px; background: var(--c-yellow); bottom: 100px; right: 20%; animation-delay: -12s; opacity: 0.4; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.06); }
  66% { transform: translate(-20px, 30px) scale(0.96); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 8px;
  background: white;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  font-size: 13px; font-weight: 500;
  color: var(--c-ink-2);
  margin-bottom: 28px;
  border: 1px solid var(--c-line);
}
.hero-tag-badge {
  background: var(--grad-rainbow);
  background-size: 200% 100%;
  animation: rainbow-slide 6s linear infinite;
  color: white;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@keyframes rainbow-slide {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.hero h1, .page-hero h1 {
  font-size: clamp(48px, 6.4vw, 88px);
  font-weight: 600;
  margin-bottom: 28px;
}
.page-hero h1 { font-size: clamp(44px, 5.6vw, 72px); }
.hero h1 .grad, .page-hero h1 .grad {
  background: var(--grad-hero);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.page-hero h1 .grad-cool { background: var(--grad-cool); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-hero h1 .grad-warm { background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero h1 .serif { font-style: italic; }
.hero-sub {
  font-size: 19px;
  color: var(--c-mute);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.55;
}
.page-hero-sub {
  font-size: 19px;
  color: var(--c-mute);
  max-width: 640px;
  line-height: 1.55;
}
.hero-ctas {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
}
.btn-hero-primary {
  padding: 16px 28px;
  background: var(--c-ink);
  color: white;
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: 15px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.btn-hero-primary::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--grad-hero);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -8px rgba(11, 16, 32, 0.4); }
.btn-hero-primary:hover::before { opacity: 1; }
.btn-hero-primary span { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 10px; }
.btn-hero-secondary {
  padding: 16px 24px;
  background: white;
  color: var(--c-ink);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-pill);
  font-weight: 500; font-size: 15px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.2s;
}
.btn-hero-secondary:hover { background: var(--c-ink); color: white; border-color: var(--c-ink); }
.play-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grad-warm);
  display: grid; place-items: center;
  color: white;
}
.play-icon svg { width: 10px; height: 10px; margin-left: 2px; }

.hero-stats {
  display: flex; gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px dashed var(--c-line);
}
.hero-stat-num {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--grad-cool);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero-stat-label { font-size: 13px; color: var(--c-mute); margin-top: 2px; }

/* Hero visual — interactive mock */
.hero-visual { position: relative; perspective: 1000px; }
.hero-card {
  background: white;
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: rotateY(-6deg) rotateX(4deg);
  transition: transform 0.6s;
  border: 1px solid var(--c-line);
}
.hero-card:hover { transform: rotateY(-2deg) rotateX(2deg); }
.hero-card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-line);
}
.dots { display: flex; gap: 6px; }
.dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--c-line); }
.dots span:nth-child(1) { background: var(--c-coral); }
.dots span:nth-child(2) { background: var(--c-yellow); }
.dots span:nth-child(3) { background: var(--c-lime); }
.url-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--c-mute);
  background: var(--c-bg-2);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.chat-thread { display: flex; flex-direction: column; gap: 10px; }
.bubble {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 13px;
  max-width: 85%;
  position: relative;
  animation: slideIn 0.5s ease backwards;
}
.bubble.user {
  background: var(--c-ink); color: white;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  animation-delay: 0.2s;
}
.bubble.bot {
  background: var(--c-bg-2); color: var(--c-ink);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  animation-delay: 0.5s;
}
.bubble.bot-2 { animation-delay: 0.9s; background: linear-gradient(135deg, rgba(20, 184, 166, 0.12), rgba(124, 58, 237, 0.08)); }
.bubble strong { color: var(--c-purple); }
@keyframes slideIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.bubble-typing { display: inline-flex; gap: 4px; padding: 14px 16px; }
.bubble-typing span {
  width: 6px; height: 6px;
  background: var(--c-mute);
  border-radius: 50%;
  animation: bounce 1.2s ease-in-out infinite;
}
.bubble-typing span:nth-child(2) { animation-delay: 0.15s; }
.bubble-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

.float-card {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500;
  border: 1px solid var(--c-line);
  animation: floatY 4s ease-in-out infinite;
}
.float-card .icon-wrap {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  color: white;
}
.float-card .icon-wrap.purple { background: var(--c-purple); }
.float-card .icon-wrap.coral { background: var(--c-coral); }
.float-card .icon-wrap.teal { background: var(--c-teal); }
.float-card .icon-wrap svg { width: 18px; height: 18px; }
.fc-1 { top: 20px; right: -30px; animation-delay: 0s; }
.fc-2 { bottom: 40px; left: -40px; animation-delay: -2s; }
.fc-3 { bottom: -10px; right: 40px; animation-delay: -3s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== Logo ticker ===== */
.ticker {
  padding: 40px 0 60px;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  background: white;
  overflow: hidden;
  margin-top: 60px;
}
.ticker-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-bottom: 24px;
  font-weight: 600;
}
.ticker-track {
  display: flex; gap: 60px;
  animation: scroll 30s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--c-ink-2);
  letter-spacing: -0.02em;
  opacity: 0.5;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.ticker-item:hover { opacity: 1; }
.ticker-item svg { width: 22px; height: 22px; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Section headers ===== */
.section-head {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-head.left { margin-left: 0; text-align: left; }
.section-head h2 {
  font-size: clamp(36px, 4.6vw, 56px);
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}
.section-head p { font-size: 17px; color: var(--c-mute); line-height: 1.55; }
.section-head .grad { background: var(--grad-hero); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-head .grad-cool { background: var(--grad-cool); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-head .grad-warm { background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ===== Bento grid ===== */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 18px;
}
.bento-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 32px;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bento-card .badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.bento-card h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.bento-card p { font-size: 15px; line-height: 1.55; opacity: 0.85; }
.bento-card .icon-bg {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 160px; height: 160px;
  opacity: 0.15;
  pointer-events: none;
}
.bento-card .icon-bg svg { width: 100%; height: 100%; }
.bento-large { grid-column: span 4; grid-row: span 2; }
.bento-med { grid-column: span 2; grid-row: span 2; }
.bento-wide { grid-column: span 4; grid-row: span 1; }
.bento-sm { grid-column: span 2; grid-row: span 1; }

.card-coral { background: linear-gradient(135deg, #ff5e62 0%, #ff8e8f 100%); color: white; }
.card-coral .badge { background: rgba(255, 255, 255, 0.2); color: white; }
.card-purple { background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%); color: white; }
.card-purple .badge { background: rgba(255, 255, 255, 0.2); color: white; }
.card-teal { background: linear-gradient(135deg, #14b8a6 0%, #5eead4 100%); color: #0b1020; }
.card-teal .badge { background: rgba(11, 16, 32, 0.12); color: #0b1020; }
.card-yellow { background: linear-gradient(135deg, #fbbf24 0%, #fcd34d 100%); color: #0b1020; }
.card-yellow .badge { background: rgba(11, 16, 32, 0.1); color: #0b1020; }
.card-pink { background: linear-gradient(135deg, #ec4899 0%, #f9a8d4 100%); color: white; }
.card-pink .badge { background: rgba(255, 255, 255, 0.2); color: white; }
.card-light { background: white; color: var(--c-ink); border: 1px solid var(--c-line); }
.card-light .badge { background: var(--c-bg-2); color: var(--c-purple); }
.card-dark {
  background: var(--c-ink); color: white;
  background-image: radial-gradient(circle at 100% 0%, rgba(124, 58, 237, 0.4), transparent 50%), radial-gradient(circle at 0% 100%, rgba(20, 184, 166, 0.25), transparent 50%);
}
.card-dark .badge { background: rgba(255, 255, 255, 0.1); color: var(--c-teal-soft); }

.img-preview {
  margin-top: 18px;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/7;
  background: #2a2a3a;
}
.img-preview .panel {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 600;
}
.img-preview .before {
  width: 50%;
  background: linear-gradient(135deg, #1a1a2e, #2a2a3a);
  border-right: 2px solid white;
  left: 0;
  color: rgba(255, 255, 255, 0.6);
}
.img-preview .after {
  right: 0;
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  color: white;
}
.img-preview .slider-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: white;
  display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 2;
}
.img-preview .slider-handle svg { width: 18px; height: 18px; color: var(--c-ink); }

/* ===== Demo section ===== */
.demo {
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-2) 100%);
  position: relative;
  overflow: hidden;
}
.demo-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}
.demo-points { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.demo-points li { display: flex; gap: 14px; align-items: flex-start; }
.demo-points .check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 8px;
  display: grid; place-items: center;
  color: white;
}
.demo-points li:nth-child(1) .check { background: var(--c-coral); }
.demo-points li:nth-child(2) .check { background: var(--c-purple); }
.demo-points li:nth-child(3) .check { background: var(--c-teal); }
.demo-points li:nth-child(4) .check { background: var(--c-yellow); }
.demo-points .check svg { width: 14px; height: 14px; }
.demo-points strong { display: block; font-weight: 600; margin-bottom: 4px; }
.demo-points span { font-size: 14px; color: var(--c-mute); }

.demo-mock {
  background: var(--c-ink);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  color: white;
  min-height: 460px;
  display: flex;
  flex-direction: column;
}
.demo-mock-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}
.demo-mock-head .bot-info { display: flex; align-items: center; gap: 12px; }
.bot-avatar {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--grad-hero);
  display: grid; place-items: center;
  font-weight: 700;
}
.bot-meta .name { font-weight: 600; font-size: 14px; }
.bot-meta .status { font-size: 12px; color: var(--c-teal-soft); display: flex; align-items: center; gap: 6px; }
.bot-meta .status::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--c-teal);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--c-teal);
}
.demo-mock-body { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.msg {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 13px;
  max-width: 80%;
  line-height: 1.5;
}
.msg.in {
  background: rgba(255, 255, 255, 0.08);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.msg.out {
  background: var(--grad-hero);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.msg.sources {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px;
  align-self: stretch;
  max-width: 100%;
}
.msg.sources .src-label { font-size: 11px; color: var(--c-mute); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em; }
.src-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  font-size: 12px;
  margin-right: 6px;
  margin-bottom: 6px;
}
.src-chip .src-dot { width: 6px; height: 6px; border-radius: 50%; }
.src-chip:nth-child(2) .src-dot { background: var(--c-coral); }
.src-chip:nth-child(3) .src-dot { background: var(--c-purple); }
.src-chip:nth-child(4) .src-dot { background: var(--c-teal); }

.demo-mock-input {
  margin-top: 16px;
  display: flex; gap: 8px; align-items: center;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-pill);
}
.demo-mock-input input {
  flex: 1;
  background: 0; border: 0;
  color: white;
  font-family: inherit;
  font-size: 13px;
  outline: 0;
}
.demo-mock-input input::placeholder { color: rgba(255, 255, 255, 0.4); }
.send-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grad-hero);
  display: grid; place-items: center;
  color: white;
}
.send-btn svg { width: 14px; height: 14px; }

/* ===== Stats ===== */
.stats {
  background: var(--c-ink);
  color: white;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-rainbow);
  background-size: 200% 100%;
  animation: rainbow-slide 6s linear infinite;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat-item { position: relative; }
.stat-num {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item:nth-child(1) .stat-num { background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-item:nth-child(2) .stat-num { background: linear-gradient(135deg, #14b8a6, #5eead4); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-item:nth-child(3) .stat-num { background: linear-gradient(135deg, #7c3aed, #ec4899); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-item:nth-child(4) .stat-num { background: linear-gradient(135deg, #fbbf24, #84cc16); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { font-size: 15px; color: rgba(255, 255, 255, 0.6); }
.stat-label span { display: block; font-size: 13px; color: rgba(255, 255, 255, 0.4); margin-top: 4px; }

/* ===== Process timeline ===== */
.process { background: white; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 32px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--c-coral), var(--c-purple), var(--c-teal), var(--c-yellow));
  z-index: 0;
}
.process-step { position: relative; z-index: 1; }
.process-step .num {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: 22px;
  color: white;
  margin: 0 auto 24px;
  border: 4px solid white;
  box-shadow: 0 0 0 1px var(--c-line);
}
.process-step:nth-child(1) .num { background: var(--c-coral); }
.process-step:nth-child(2) .num { background: var(--c-purple); }
.process-step:nth-child(3) .num { background: var(--c-teal); }
.process-step:nth-child(4) .num { background: var(--c-yellow); color: var(--c-ink); }
.process-step h4 { font-size: 19px; font-weight: 600; margin-bottom: 8px; text-align: center; }
.process-step p { font-size: 14px; color: var(--c-mute); text-align: center; line-height: 1.5; }

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.t-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--c-line);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.t-card .quote-mark {
  position: absolute;
  top: 20px; right: 24px;
  font-family: 'Instrument Serif', serif;
  font-size: 60px; line-height: 1;
  opacity: 0.18;
}
.t-card:nth-child(1) .quote-mark { color: var(--c-coral); }
.t-card:nth-child(2) .quote-mark { color: var(--c-purple); }
.t-card:nth-child(3) .quote-mark { color: var(--c-teal); }
.t-card .stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--c-yellow); }
.t-card .stars svg { width: 16px; height: 16px; fill: currentColor; }
.t-card blockquote {
  font-size: 16px; line-height: 1.55;
  color: var(--c-ink-2);
  margin-bottom: 24px;
  font-weight: 400;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
  font-weight: 700; font-size: 16px;
}
.t-card:nth-child(1) .t-avatar { background: var(--c-coral); }
.t-card:nth-child(2) .t-avatar { background: var(--c-purple); }
.t-card:nth-child(3) .t-avatar { background: var(--c-teal); }
.t-name { font-weight: 600; font-size: 14px; }
.t-role { font-size: 13px; color: var(--c-mute); }

/* ===== CTA ===== */
.cta { padding: 100px 0; position: relative; }
.cta-card {
  position: relative;
  background: var(--c-ink);
  color: white;
  border-radius: 36px;
  padding: 80px 60px;
  text-align: center;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 30%, rgba(255, 94, 98, 0.4), transparent 50%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(124, 58, 237, 0.5), transparent 50%),
    radial-gradient(ellipse 40% 40% at 50% 100%, rgba(20, 184, 166, 0.3), transparent 50%);
  z-index: 0;
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 {
  font-size: clamp(40px, 5.4vw, 64px);
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}
.cta-card h2 .serif { color: var(--c-teal-soft); }
.cta-card p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto 36px;
}
.cta-actions {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
}
.btn-cta-primary {
  padding: 16px 32px;
  background: white;
  color: var(--c-ink);
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: 15px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.2s;
}
.btn-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -8px rgba(255, 255, 255, 0.3); }
.btn-cta-secondary {
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  font-weight: 500; font-size: 15px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.2s;
}
.btn-cta-secondary:hover { background: rgba(255, 255, 255, 0.15); }

/* ===== Footer ===== */
.footer {
  background: var(--c-ink);
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 30px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  display: flex; align-items: center; gap: 10px;
  color: white;
  font-weight: 700; font-size: 18px;
  margin-bottom: 16px;
}
.footer-brand .brand-mark { box-shadow: 0 4px 14px -2px rgba(124, 58, 237, 0.5); }
.footer-brand .brand-name { color: white; }
.footer-tagline { font-size: 14px; max-width: 320px; line-height: 1.55; }
.footer-col h5 {
  color: white;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 16px;
}
.socials { display: flex; gap: 12px; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid; place-items: center;
  color: white;
  transition: all 0.2s;
}
.socials a:hover { background: var(--grad-hero); transform: translateY(-2px); }
.socials a svg { width: 16px; height: 16px; }

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   INNER PAGE SPECIFICS
   ============================================================ */

/* Services page — service detail blocks */
.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}
.svc-block.reverse .svc-visual { order: -1; }
.svc-block:last-child { margin-bottom: 0; }
.svc-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.svc-block.coral .svc-num { background: rgba(255, 94, 98, 0.12); color: var(--c-coral); }
.svc-block.purple .svc-num { background: rgba(124, 58, 237, 0.12); color: var(--c-purple); }
.svc-block.teal .svc-num { background: rgba(20, 184, 166, 0.12); color: var(--c-teal); }
.svc-block.yellow .svc-num { background: rgba(251, 191, 36, 0.18); color: #b45309; }
.svc-block.pink .svc-num { background: rgba(236, 72, 153, 0.12); color: var(--c-pink); }
.svc-block h2 {
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}
.svc-block .lead {
  font-size: 17px;
  color: var(--c-mute);
  margin-bottom: 28px;
  line-height: 1.55;
}
.svc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.svc-features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
}
.svc-features .dot {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
  margin-top: 1px;
}
.svc-block.coral .dot { background: var(--c-coral); }
.svc-block.purple .dot { background: var(--c-purple); }
.svc-block.teal .dot { background: var(--c-teal); }
.svc-block.yellow .dot { background: var(--c-yellow); }
.svc-block.pink .dot { background: var(--c-pink); }
.svc-features .dot svg { width: 12px; height: 12px; }
.svc-features strong { display: block; font-weight: 600; color: var(--c-ink); margin-bottom: 2px; }
.svc-features span { color: var(--c-mute); font-size: 14px; }

.svc-visual {
  border-radius: var(--radius-lg);
  padding: 36px;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.svc-visual.coral { background: linear-gradient(135deg, #ff5e62 0%, #ff8e8f 100%); color: white; }
.svc-visual.purple { background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%); color: white; }
.svc-visual.teal { background: linear-gradient(135deg, #14b8a6 0%, #5eead4 100%); color: var(--c-ink); }
.svc-visual.yellow { background: linear-gradient(135deg, #fbbf24 0%, #fcd34d 100%); color: var(--c-ink); }
.svc-visual.pink { background: linear-gradient(135deg, #ec4899 0%, #f9a8d4 100%); color: white; }

.mock-doc {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 18px;
  color: var(--c-ink);
  font-size: 12px;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.2);
  position: relative;
}
.svc-visual.purple .mock-doc, .svc-visual.pink .mock-doc { color: var(--c-ink); }
.mock-doc .doc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 12px;
}
.mock-doc .doc-title { font-weight: 600; font-size: 13px; }
.mock-doc .doc-meta { font-size: 11px; color: var(--c-mute); font-family: 'JetBrains Mono', monospace; }
.mock-doc .doc-line {
  height: 8px;
  background: var(--c-line);
  border-radius: 4px;
  margin-bottom: 6px;
}
.mock-doc .doc-line.short { width: 60%; }
.mock-doc .doc-line.med { width: 80%; }
.mock-doc .doc-line.long { width: 100%; }
.mock-doc .doc-line.hi { background: linear-gradient(90deg, var(--c-purple), var(--c-pink)); }
.mock-doc .doc-line.hi-coral { background: linear-gradient(90deg, var(--c-coral), var(--c-yellow)); }
.mock-doc .doc-line.hi-teal { background: linear-gradient(90deg, var(--c-teal), var(--c-blue)); }

.mock-transcript {
  background: rgba(0,0,0,0.85);
  color: white;
  border-radius: 12px;
  padding: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  line-height: 1.6;
}
.mock-transcript .speaker { color: var(--c-teal-soft); }
.mock-transcript .time { color: rgba(255,255,255,0.4); margin-right: 8px; }
.mock-transcript .highlight { background: rgba(251, 191, 36, 0.3); padding: 0 4px; border-radius: 3px; }
.mock-transcript .tag {
  display: inline-block;
  background: var(--c-purple);
  color: white;
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

.flow-diagram {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.flow-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 12px;
}
.svc-visual.teal .flow-row, .svc-visual.yellow .flow-row { color: var(--c-ink); }
.flow-node {
  background: rgba(255,255,255,0.95);
  color: var(--c-ink);
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 11px;
}
.flow-arrow {
  color: rgba(255,255,255,0.6);
  font-family: 'JetBrains Mono', monospace;
}
.svc-visual.teal .flow-arrow, .svc-visual.yellow .flow-arrow { color: rgba(11,16,32,0.5); }

.int-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}
.int-chip {
  background: rgba(255,255,255,0.95);
  color: var(--c-ink);
  padding: 12px 8px;
  border-radius: 8px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.int-chip svg { width: 18px; height: 18px; color: var(--c-pink); }

/* Pricing page */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.price-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--c-line);
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  background: var(--c-ink);
  color: white;
  border-color: transparent;
  background-image: radial-gradient(circle at 100% 0%, rgba(124, 58, 237, 0.35), transparent 50%), radial-gradient(circle at 0% 100%, rgba(20, 184, 166, 0.25), transparent 50%);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.price-card .popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-rainbow);
  background-size: 200% 100%;
  animation: rainbow-slide 6s linear infinite;
  color: white;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-card h3 { font-size: 22px; font-weight: 600; margin-bottom: 8px; }
.price-card .price-desc { font-size: 14px; color: var(--c-mute); margin-bottom: 24px; }
.price-card.featured .price-desc { color: rgba(255,255,255,0.6); }
.price-amount {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-amount .currency { font-size: 28px; font-weight: 600; color: var(--c-mute); }
.price-card.featured .price-amount .currency { color: rgba(255,255,255,0.6); }
.price-amount .period { font-size: 15px; color: var(--c-mute); font-weight: 500; }
.price-card.featured .price-amount .period { color: rgba(255,255,255,0.6); }
.price-card .price-note { font-size: 13px; color: var(--c-mute); margin-bottom: 28px; }
.price-card.featured .price-note { color: rgba(255,255,255,0.5); }
.price-card .btn {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 28px;
  transition: all 0.2s;
}
.price-card .btn-outline {
  background: white;
  color: var(--c-ink);
  border: 1px solid var(--c-line);
}
.price-card .btn-outline:hover { background: var(--c-ink); color: white; border-color: var(--c-ink); }
.price-card.featured .btn-fill {
  background: white;
  color: var(--c-ink);
}
.price-card.featured .btn-fill:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -6px rgba(255,255,255,0.4); }
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}
.price-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}
.price-features .ck {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(132, 204, 22, 0.18);
  color: var(--c-lime);
  display: grid; place-items: center;
  margin-top: 2px;
}
.price-card.featured .price-features .ck { background: rgba(255,255,255,0.15); color: var(--c-teal-soft); }
.price-features .ck svg { width: 10px; height: 10px; }
.price-features .missing { color: var(--c-mute); opacity: 0.5; }
.price-features .missing .ck { background: rgba(0,0,0,0.05); color: var(--c-mute); }

.compare-table-wrap {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-line);
  overflow: hidden;
  margin-bottom: 80px;
}
.compare-head, .compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  align-items: center;
}
.compare-head {
  background: var(--c-ink);
  color: white;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.compare-head > div, .compare-row > div {
  padding: 18px 24px;
}
.compare-head > div:not(:first-child), .compare-row > div:not(:first-child) { text-align: center; }
.compare-head > div:nth-child(3) { color: var(--c-yellow); }
.compare-row {
  font-size: 14px;
  border-bottom: 1px solid var(--c-line);
}
.compare-row:last-child { border-bottom: 0; }
.compare-row:nth-child(even) { background: rgba(246, 244, 255, 0.4); }
.compare-row .feat-label { font-weight: 500; }
.compare-row .feat-group td, .compare-row.group { background: var(--c-bg-2); font-weight: 600; color: var(--c-purple); font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; }
.compare-row .yes { color: var(--c-teal); font-weight: 600; }
.compare-row .no { color: var(--c-mute); opacity: 0.4; }

.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--c-line);
  padding: 24px 0;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: var(--c-ink);
  padding: 0;
}
.faq-q .toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--c-bg-2);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-q .toggle svg { width: 14px; height: 14px; color: var(--c-purple); transition: transform 0.3s; }
.faq-item.open .toggle { background: var(--c-purple); }
.faq-item.open .toggle svg { color: white; transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding-top: 16px;
  font-size: 15px;
  color: var(--c-mute);
  line-height: 1.6;
  max-width: 680px;
}

/* About page */
.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-quote {
  font-family: 'Instrument Serif', serif;
  font-size: 32px;
  line-height: 1.3;
  font-style: italic;
  color: var(--c-ink);
  padding-left: 24px;
  border-left: 4px solid var(--grad-hero);
  background: linear-gradient(135deg, rgba(255, 94, 98, 0.05), rgba(124, 58, 237, 0.05));
  padding: 32px 32px 32px 36px;
  border-radius: 0 18px 18px 0;
  border-left: 4px solid;
  border-image: var(--grad-hero) 1;
}
.story-quote cite {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-style: normal;
  color: var(--c-mute);
  margin-top: 16px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--c-line);
  transition: transform 0.3s, box-shadow 0.3s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  color: white;
  margin-bottom: 20px;
}
.value-card:nth-child(1) .value-icon { background: linear-gradient(135deg, var(--c-coral), var(--c-pink)); }
.value-card:nth-child(2) .value-icon { background: linear-gradient(135deg, var(--c-purple), var(--c-blue)); }
.value-card:nth-child(3) .value-icon { background: linear-gradient(135deg, var(--c-teal), var(--c-lime)); }
.value-card:nth-child(4) .value-icon { background: linear-gradient(135deg, var(--c-yellow), var(--c-coral)); }
.value-card:nth-child(5) .value-icon { background: linear-gradient(135deg, var(--c-blue), var(--c-purple)); }
.value-card:nth-child(6) .value-icon { background: linear-gradient(135deg, var(--c-pink), var(--c-yellow)); }
.value-icon svg { width: 22px; height: 22px; }
.value-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--c-mute); line-height: 1.55; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--c-line);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  display: grid; place-items: center;
  font-size: 36px;
  font-weight: 700;
  color: white;
  position: relative;
  overflow: hidden;
}
.team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent 50%);
}
.team-card:nth-child(1) .team-photo { background: linear-gradient(135deg, #ff5e62, #ec4899); }
.team-card:nth-child(2) .team-photo { background: linear-gradient(135deg, #7c3aed, #3b82f6); }
.team-card:nth-child(3) .team-photo { background: linear-gradient(135deg, #14b8a6, #84cc16); }
.team-card:nth-child(4) .team-photo { background: linear-gradient(135deg, #fbbf24, #ff5e62); }
.team-card:nth-child(5) .team-photo { background: linear-gradient(135deg, #ec4899, #7c3aed); }
.team-card:nth-child(6) .team-photo { background: linear-gradient(135deg, #3b82f6, #14b8a6); }
.team-card:nth-child(7) .team-photo { background: linear-gradient(135deg, #84cc16, #fbbf24); }
.team-card:nth-child(8) .team-photo { background: linear-gradient(135deg, #ff5e62, #7c3aed); }
.team-card .team-name { font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.team-card .team-role { font-size: 13px; color: var(--c-mute); margin-bottom: 12px; }
.team-card .team-bio { font-size: 13px; color: var(--c-mute); line-height: 1.5; }

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 22px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--c-coral), var(--c-purple), var(--c-teal), var(--c-yellow));
}
.tl-item {
  position: relative;
  padding-left: 64px;
  margin-bottom: 40px;
}
.tl-item:last-child { margin-bottom: 0; }
.tl-dot {
  position: absolute;
  left: 6px; top: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
  font-weight: 700;
  font-size: 13px;
  border: 4px solid white;
  box-shadow: 0 0 0 1px var(--c-line);
}
.tl-item:nth-child(1) .tl-dot { background: var(--c-coral); }
.tl-item:nth-child(2) .tl-dot { background: var(--c-purple); }
.tl-item:nth-child(3) .tl-dot { background: var(--c-teal); }
.tl-item:nth-child(4) .tl-dot { background: var(--c-yellow); color: var(--c-ink); }
.tl-item:nth-child(5) .tl-dot { background: var(--c-pink); }
.tl-item:nth-child(6) .tl-dot { background: var(--c-blue); }
.tl-year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-mute);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.tl-item h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.tl-item p { font-size: 15px; color: var(--c-mute); line-height: 1.55; max-width: 600px; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-ink-2);
  margin-bottom: 6px;
}
.form-field label .opt { color: var(--c-mute); font-weight: 400; }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 16px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--c-ink);
  outline: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--c-purple);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}
.form-field textarea { resize: vertical; min-height: 110px; font-family: inherit; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--c-ink);
  color: white;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  transition: all 0.2s;
}
.form-submit:hover { background: var(--c-purple); transform: translateY(-1px); box-shadow: 0 12px 24px -6px rgba(124, 58, 237, 0.4); }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--c-line);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-card .ci-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  color: white;
  flex-shrink: 0;
}
.contact-info-card:nth-child(1) .ci-icon { background: linear-gradient(135deg, var(--c-coral), var(--c-pink)); }
.contact-info-card:nth-child(2) .ci-icon { background: linear-gradient(135deg, var(--c-purple), var(--c-blue)); }
.contact-info-card:nth-child(3) .ci-icon { background: linear-gradient(135deg, var(--c-teal), var(--c-lime)); }
.contact-info-card:nth-child(4) .ci-icon { background: linear-gradient(135deg, var(--c-yellow), var(--c-coral)); }
.ci-icon svg { width: 20px; height: 20px; }
.contact-info-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.contact-info-card p { font-size: 14px; color: var(--c-mute); line-height: 1.5; }
.contact-info-card a { color: var(--c-purple); font-weight: 500; }
.contact-info-card a:hover { text-decoration: underline; }

.form-success {
  display: none;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.12), rgba(132, 204, 22, 0.08));
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  color: var(--c-teal);
  font-size: 14px;
  margin-top: 16px;
  align-items: center;
  gap: 12px;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .demo-wrap { grid-template-columns: 1fr; gap: 40px; }
  .bento-large { grid-column: span 6; }
  .bento-med { grid-column: span 3; }
  .bento-wide { grid-column: span 6; }
  .bento-sm { grid-column: span 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .float-card { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .svc-block { grid-template-columns: 1fr; gap: 40px; margin-bottom: 80px; }
  .svc-block.reverse .svc-visual { order: 0; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .compare-head, .compare-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; font-size: 13px; }
  .compare-head > div, .compare-row > div { padding: 14px 12px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--c-ink); color: white; }
  .mobile-menu {
    display: none;
    position: fixed;
    top: 84px;
    left: 4%;
    right: 4%;
    background: white;
    border-radius: 20px;
    padding: 16px;
    z-index: 99;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--c-line);
  }
  .mobile-menu.open { display: block; }
  .mobile-menu a {
    display: block;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--c-ink-2);
  }
  .mobile-menu a:hover { background: var(--c-bg-2); }
  .section { padding: 70px 0; }
  .hero, .page-hero { padding: 130px 0 60px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .bento-med, .bento-sm { grid-column: span 6; }
  .bento-card { padding: 24px; }
  .cta-card { padding: 50px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 26px; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
  .compare-table-wrap { font-size: 12px; }
  .compare-head, .compare-row { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .compare-head > div, .compare-row > div { padding: 12px 8px; }
}