/* ═══════════════════════════════════════════════
   PRINTFORGE — PRIMARY DESIGN SYSTEM
   (from Downloads/index.html reference)
═══════════════════════════════════════════════ */

:root {
  --bg: #09090B;
  --bg-elevated: #111113;
  --bg-card: #141416;
  --border: #1E1E22;
  --border-subtle: #18181B;
  --text-primary: #F4F4F5;
  --text-secondary: #A1A1AA;
  --text-muted: #52525B;
  --accent: #3B82F6;
  --accent-dim: rgba(59,130,246,0.12);
  --accent-glow: rgba(59,130,246,0.25);
  --green: #22C55E;
  --green-dim: rgba(34,197,94,0.1);
  --amber: #F59E0B;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
}

html[lang="en"] {
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ─── UTILITY ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

/* ─── NAV (reference style) ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s, backdrop-filter 0.3s;
}
nav.scrolled {
  background: rgba(9,9,11,0.85);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.3px;
}
.logo-mark {
  width: 28px; height: 28px;
  background: var(--accent);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
}
.nav-links {
  display: flex; align-items: center; gap: 8px;
  list-style: none;
}
.nav-links a, .nav-links li a {
  color: var(--text-secondary); text-decoration: none;
  font-size: 14px; font-weight: 400;
  padding: 6px 12px; border-radius: var(--radius-sm);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links li a:hover { color: var(--text-primary); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
}
.lang-link {
  min-width: 36px;
  height: 28px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-link.is-active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(59,130,246,0.28);
}
.btn-ghost {
  background: none; border: 1px solid var(--border);
  color: var(--text-secondary); font-family: var(--font-body);
  font-size: 13.5px; font-weight: 500;
  padding: 8px 16px; border-radius: var(--radius-sm);
  cursor: pointer; transition: all 0.2s;
  text-decoration: none; display: inline-flex; align-items: center;
}
.btn-ghost:hover { border-color: #3F3F46; color: var(--text-primary); }
.btn-primary {
  background: var(--accent); color: #fff;
  font-family: var(--font-body); font-size: 13.5px; font-weight: 500;
  padding: 8px 18px; border-radius: var(--radius-sm);
  border: none; cursor: pointer; transition: all 0.2s;
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
}
.btn-primary:hover { background: #2563EB; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(59,130,246,0.3); }
.btn-primary-lg {
  font-size: 15px; padding: 12px 26px; border-radius: var(--radius);
  gap: 8px;
}
.btn-ghost-lg {
  font-size: 15px; padding: 12px 24px; border-radius: var(--radius);
}

/* ─── SITE HEADER WEB COMPONENT ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 120;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(9,9,11,0.85);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 7px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 8px 20px rgba(59,130,246,0.25);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}
.brand-sub {
  color: var(--text-muted);
  font-size: 11px;
}
.site-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.site-nav .nav-links a {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}
.site-nav .nav-links a:hover,
.site-nav .nav-links a.is-active { color: var(--text-primary); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-primary);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.menu-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.mobile-panel {
  display: none;
  margin-top: 8px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(20,20,22,0.96);
  box-shadow: 0 14px 40px rgba(0,0,0,0.3);
}
.mobile-panel.open {
  display: grid;
  gap: 8px;
}
.mobile-panel a {
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 14px;
  text-decoration: none;
}
.mobile-panel a:hover { color: var(--text-primary); }
.mobile-panel .btn-ghost,
.mobile-panel .btn-primary { justify-content: center; }
.mobile-panel .lang-switch {
  justify-self: center;
  margin-top: 6px;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-dim); border: 1px solid rgba(59,130,246,0.25);
  border-radius: 100px; padding: 5px 14px 5px 8px;
  font-size: 12.5px; font-weight: 500; color: #93C5FD;
  margin-bottom: 32px; width: fit-content;
  animation: fadeUp 0.6s ease both;
}
.hero-badge-dot {
  width: 6px; height: 6px; background: var(--accent);
  border-radius: 50%; animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.hero-content { text-align: center; position: relative; z-index: 2; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -2.5px;
  color: var(--text-primary);
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #93C5FD 0%, var(--accent) 50%, #818CF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px; color: var(--text-secondary);
  max-width: 560px; margin: 0 auto 40px;
  line-height: 1.65; font-weight: 400;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-meta {
  margin-top: 16px; display: flex; align-items: center; justify-content: center;
  gap: 20px; color: var(--text-muted); font-size: 12.5px;
  animation: fadeUp 0.6s 0.4s ease both;
}
.hero-meta span { display: flex; align-items: center; gap: 6px; }
.hero-meta svg { width: 13px; height: 13px; color: var(--green); }

/* ─── HERO VISUAL ─── */
.hero-visual {
  margin-top: 72px;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.8s 0.5s ease both;
}
.hero-visual-inner {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 960px; margin: 0 auto;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
}
.hero-visual-inner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.4), transparent);
}
.mock-topbar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot.red { background: #EF4444; }
.mock-dot.yellow { background: var(--amber); }
.mock-dot.green { background: var(--green); }
.mock-url {
  flex: 1; background: var(--border); border-radius: 5px;
  padding: 5px 12px; font-size: 12px; color: var(--text-muted);
  margin: 0 16px; text-align: center;
}
.hero-split {
  display: grid; grid-template-columns: 1fr 340px;
  min-height: 420px;
}
.mock-site {
  padding: 28px; border-right: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.mock-site-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0F172A 0%, #0A0A0E 100%);
}
.mock-site-content { position: relative; z-index: 1; }
.mock-site-badge {
  display: inline-block; background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  color: #93C5FD; font-size: 10px; font-weight: 600;
  padding: 3px 10px; border-radius: 100px; margin-bottom: 16px; letter-spacing: 0.5px;
  text-transform: uppercase;
}
.mock-site h2 {
  font-family: var(--font-display); font-size: 26px;
  font-weight: 600; color: #F8FAFC; line-height: 1.2;
  letter-spacing: -0.5px; margin-bottom: 12px;
}
.mock-site p { font-size: 13px; color: #94A3B8; line-height: 1.6; max-width: 300px; }
.mock-site-btn {
  margin-top: 20px; background: var(--accent);
  color: #fff; font-size: 13px; font-weight: 500;
  padding: 9px 20px; border-radius: 7px; display: inline-block;
}
.mock-props {
  display: flex; gap: 10px; margin-top: 24px;
}
.mock-prop {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 12px 14px; flex: 1;
}
.mock-prop-label { font-size: 10px; color: #64748B; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.mock-prop-val { font-size: 18px; font-weight: 600; color: #F8FAFC; }
.mock-prop-sub { font-size: 10px; color: var(--green); margin-top: 2px; }

/* Chat panel */
.mock-chat {
  display: flex; flex-direction: column;
  background: var(--bg-card);
}
.mock-chat-header {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.mock-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #818CF8);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: #fff; flex-shrink: 0;
}
.mock-chat-name { font-size: 13px; font-weight: 500; color: var(--text-primary); }
.mock-chat-status { font-size: 11px; color: var(--green); display: flex; align-items: center; gap: 4px; }
.mock-chat-status::before { content: ''; width: 5px; height: 5px; background: var(--green); border-radius: 50%; display: block; }
.mock-messages { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 10px; overflow: hidden; }
.msg { max-width: 85%; }
.msg.ai { align-self: flex-start; }
.msg.user { align-self: flex-end; }
.msg-bubble {
  padding: 9px 13px; border-radius: 12px;
  font-size: 12.5px; line-height: 1.5;
}
.msg.ai .msg-bubble {
  background: var(--bg-elevated); border: 1px solid var(--border);
  color: var(--text-primary); border-bottom-left-radius: 4px;
}
.msg.user .msg-bubble {
  background: var(--accent); color: #fff;
  border-bottom-right-radius: 4px;
}
.msg-time { font-size: 10px; color: var(--text-muted); margin-top: 3px; padding: 0 4px; }
.msg.user .msg-time { text-align: right; }
.typing-indicator {
  display: flex; gap: 4px; padding: 10px 13px;
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: 12px; border-bottom-left-radius: 4px;
  width: fit-content; align-items: center;
}
.typing-dot {
  width: 5px; height: 5px; background: var(--text-muted);
  border-radius: 50%; animation: typing-bounce 1.4s ease infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-bounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
  40% { transform: translateY(-5px); opacity: 1; }
}
.mock-chat-input {
  padding: 12px 16px; border-top: 1px solid var(--border);
  display: flex; gap: 8px; align-items: center;
}
.mock-input-field {
  flex: 1; background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 12px;
  font-size: 12px; color: var(--text-muted);
}
.mock-send-btn {
  width: 32px; height: 32px; background: var(--accent);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ─── TRUST BAR ─── */
.trust-bar {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}
.trust-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; gap: 48px;
  flex-wrap: wrap; justify-content: center;
}
.trust-label { font-size: 12px; color: var(--text-muted); font-weight: 500; letter-spacing: 0.5px; white-space: nowrap; }
.trust-logos { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; justify-content: center; }
.trust-logo {
  font-family: var(--font-display); font-size: 14px; font-weight: 500;
  color: var(--text-muted); letter-spacing: -0.2px;
  opacity: 0.5; transition: opacity 0.2s;
}
.trust-logo:hover { opacity: 0.8; }
.trust-stats { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: center; }
.trust-stat { text-align: center; }
.trust-stat-num {
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  color: var(--text-primary); letter-spacing: -0.5px;
}
.trust-stat-text { font-size: 11.5px; color: var(--text-muted); margin-top: 1px; }

/* ─── SECTION BASICS ─── */
section { position: relative; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 16px; height: 1px; background: var(--accent);
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 600; letter-spacing: -1.5px; line-height: 1.1;
  color: var(--text-primary); margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--text-secondary);
  max-width: 560px; line-height: 1.65;
}

/* ─── PAIN SECTION ─── */
/* ─── PAIN SECTION ─── */
.pain-section { padding: 96px 0; }
.pain-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end;
}

/* Label */
.pain-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #3B82F6;
  margin-bottom: 20px;
}
.pain-label-line {
  display: block; width: 24px; height: 1px; background: #3B82F6; flex-shrink: 0;
}

/* Headline */
.pain-heading {
  font-size: 50px; font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.1;
  color: #fff; margin: 0 0 20px;
}
.pain-keyword { color: #3B82F6; }

/* Subtitle */
.pain-sub {
  font-size: 15px; color: #52525B;
  line-height: 1.7; max-width: 360px; margin: 0;
}

/* Pain list — no cards */
.pain-problems { display: flex; flex-direction: column; gap: 28px; margin-top: 48px; }
.pain-problem { display: flex; gap: 14px; align-items: flex-start; }
.pain-problem-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #3B82F6; flex-shrink: 0; margin-top: 5px;
}
.pain-problem-title { font-size: 14px; font-weight: 700; color: #D4D4D8; margin-bottom: 5px; }
.pain-problem-desc { font-size: 13px; color: #3F3F46; line-height: 1.6; }

/* Card */
.pain-story {
  background: #111113;
  border: 1px solid #1F1F23;
  border-radius: 14px; overflow: hidden;
}

/* Card header */
.pain-story-top {
  padding: 14px 18px;
  border-bottom: 1px solid #1F1F23;
  display: flex; align-items: center; justify-content: space-between;
}
.pain-story-title {
  font-size: 12.5px; font-weight: 500; color: #71717A;
  display: flex; align-items: center; gap: 8px;
}
.pain-red-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #EF4444; flex-shrink: 0;
  box-shadow: 0 0 5px rgba(239,68,68,0.5);
}
.pain-time { font-size: 11.5px; color: #3F3F46; }

/* Timeline rows */
.pain-event {
  padding: 13px 18px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid #18181B;
}
.pain-event:last-of-type { border-bottom: none; }

.pain-event-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: #18181B; border: 1px solid #27272A;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #A1A1AA;
}
.pain-event--active .pain-event-avatar { color: #A1A1AA; opacity: 1; }
.pain-event--muted .pain-event-avatar { opacity: 0.4; }

.pain-event-body { flex: 1; min-width: 0; }
.pain-event--active .pain-event-title { font-size: 13px; font-weight: 500; color: #D4D4D8; margin-bottom: 2px; }
.pain-event--muted .pain-event-title { font-size: 13px; font-weight: 500; color: #52525B; margin-bottom: 2px; }
.pain-event-desc { font-size: 11.5px; color: #3F3F46; line-height: 1.5; }
.pain-event-time { font-size: 11px; color: #3F3F46; white-space: nowrap; flex-shrink: 0; }

/* Alert footer */
.pain-result {
  padding: 13px 18px;
  background: rgba(239,68,68,0.07);
  border-top: 1px solid rgba(239,68,68,0.15);
  display: flex; align-items: flex-start; gap: 10px;
}
.pain-result-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #EF4444; flex-shrink: 0; margin-top: 4px;
}
.pain-result-title { font-size: 13px; font-weight: 700; color: #F87171; line-height: 1.4; }
.pain-result-sub { font-size: 11.5px; color: #7F1D1D; margin-top: 2px; }

/* ─── HOW IT WORKS — AUTO-ADVANCE TABS ─── */
.sticky-section {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0 120px;
}
.sticky-intro { text-align: center; margin-bottom: 72px; }

/* Two-column layout */
.sticky-layout {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 80px;
  align-items: start;
}

/* ── LEFT: step list ── */
.sticky-steps { display: flex; flex-direction: column; position: relative; }

/* vertical timeline line */
.sticky-steps::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--border-subtle);
}

.step-item {
  position: relative;
  padding: 20px 0 20px 28px;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

/* timeline dot */
.step-item::before {
  content: "";
  position: absolute; left: -5px; top: 28px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border-subtle);
  border: 2px solid var(--bg-elevated);
  transition: background 0.2s;
}
.step-item.active::before { background: var(--accent); }
.step-item.done::before   { background: var(--text-muted); }

.step-num {
  font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 5px;
  color: rgba(255,255,255,0.2);
  transition: color 0.15s ease;
}
.step-item.active .step-num { color: var(--accent); }
.step-item.done   .step-num { color: rgba(255,255,255,0.18); }

.step-title {
  font-family: var(--font-display); font-weight: 600; line-height: 1.25;
  letter-spacing: -0.3px;
  font-size: 14px; color: rgba(255,255,255,0.25);
  transition: font-size 0.15s ease, color 0.15s ease;
}
.step-item.active .step-title { font-size: 22px; color: var(--text-primary); }
.step-item.done   .step-title { color: rgba(255,255,255,0.2); }

.step-desc {
  font-size: 14px; color: var(--text-secondary); line-height: 1.65;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.25s;
}
.step-item.active .step-desc { max-height: 100px; opacity: 1; margin-top: 10px; }

/* progress bar */
.step-progress-wrap {
  height: 2px; background: rgba(255,255,255,0.07);
  border-radius: 2px; margin-top: 16px;
  overflow: hidden;
  max-height: 0; opacity: 0;
  transition: max-height 0.3s, opacity 0.3s;
}
.step-item.active .step-progress-wrap { max-height: 2px; opacity: 1; }
.step-progress-bar {
  height: 100%; width: 0%; background: var(--accent);
  border-radius: 2px;
}

/* ── RIGHT: chat widget ── */
.sticky-chat {
  position: sticky; top: calc(50vh - 280px);
}
.chat-widget {
  width: 100%;
  background: #111318; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 40px 100px rgba(0,0,0,0.6), 0 8px 32px rgba(0,0,0,0.4);
  display: flex; flex-direction: column;
  height: 520px;
}
.chat-header {
  background: rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 16px 18px; display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.chat-av {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; color: #fff; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(59,130,246,0.4);
}
.chat-name { font-size: 14px; font-weight: 600; color: #fff; }
.chat-online { font-size: 11.5px; color: #4ade80; display: flex; align-items: center; gap: 5px; margin-top: 2px; }
.chat-online-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  animation: pulse-dot 2s ease infinite;
}
.chat-messages {
  flex: 1; padding: 18px 16px 10px;
  display: flex; flex-direction: column; gap: 10px;
  justify-content: flex-end; overflow: hidden;
}
.chat-footer {
  border-top: 1px solid rgba(255,255,255,0.07); padding: 12px 14px;
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.chat-input-mock {
  flex: 1; font-size: 13px; color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04); padding: 9px 14px;
  border-radius: 10px; border: 1px solid rgba(255,255,255,0.08);
}
.chat-send-btn {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; cursor: pointer;
  box-shadow: 0 4px 12px rgba(59,130,246,0.4);
}

/* Chat message bubbles */
.chat-msg { display: flex; gap: 9px; align-items: flex-end; }
.chat-msg.user { flex-direction: row-reverse; }
@keyframes msgIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chat-msg { animation: msgIn 0.3s ease forwards; }
.chat-msg-av {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #fff;
}
.chat-msg-av.user { background: rgba(255,255,255,0.09); font-size: 13px; }
.chat-msg-bubble {
  padding: 10px 14px; border-radius: 16px;
  font-size: 13.5px; line-height: 1.55; max-width: 80%;
}
.chat-msg:not(.user) .chat-msg-bubble {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.9); border-bottom-left-radius: 4px;
}
.chat-msg.user .chat-msg-bubble {
  background: #3b82f6; color: #fff; border-bottom-right-radius: 4px;
}

/* Typing indicator */
.chat-typing { display: flex; gap: 9px; align-items: flex-end; animation: msgIn 0.25s ease forwards; }
.chat-typing-dots {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px; border-bottom-left-radius: 4px;
  padding: 11px 15px; display: flex; gap: 5px; align-items: center;
}
.chat-typing-dot {
  width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.35);
  animation: typingBounce 1.1s infinite;
}
.chat-typing-dot:nth-child(2) { animation-delay: 0.18s; }
.chat-typing-dot:nth-child(3) { animation-delay: 0.36s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.35; }
  30%            { transform: translateY(-5px); opacity: 1; }
}

/* Contact capture card */
.chat-contact-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 14px; font-size: 13px; width: 100%;
  animation: msgIn 0.3s ease forwards;
}
.chat-contact-card-title {
  font-weight: 600; color: rgba(255,255,255,0.85);
  margin-bottom: 10px; font-size: 13.5px;
}
.chat-contact-field {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 9px 12px;
  color: rgba(255,255,255,0.3); margin-bottom: 7px; font-size: 13px;
}
.chat-contact-submit {
  background: #3b82f6; color: #fff; border-radius: 9px;
  padding: 10px; text-align: center; font-weight: 600; font-size: 13.5px;
  margin-top: 4px; cursor: pointer;
  box-shadow: 0 4px 14px rgba(59,130,246,0.35);
}
/* ─── (vf1-vf6 removed, replaced by chat-widget) ─── */

/* Visual frame 1 — visitor arrives */
.vf1-site {
  border: 1px solid var(--border); border-radius: 10px; overflow: hidden; height: 100%;
  display: flex; flex-direction: column;
}
.vf1-site-bar {
  background: var(--bg-elevated); border-bottom: 1px solid var(--border);
  padding: 8px 12px; display: flex; align-items: center; gap: 6px;
}
.vf1-bar-dot { width: 8px; height: 8px; border-radius: 50%; }
.vf1-bar-dot.r { background: #EF4444; }
.vf1-bar-dot.y { background: var(--amber); }
.vf1-bar-dot.g { background: var(--green); }
.vf1-url { flex: 1; background: rgba(255,255,255,0.04); border-radius: 4px; padding: 4px 10px; font-size: 11px; color: var(--text-muted); margin: 0 10px; text-align: center; }
.vf1-content { flex: 1; padding: 20px; position: relative; }
.vf1-hero-mock { text-align: center; padding: 16px; }
.vf1-hero-mock h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; letter-spacing: -0.4px; }
.vf1-hero-mock p { font-size: 12px; color: var(--text-secondary); }
.vf1-hero-mock .vf1-btn { display: inline-block; margin-top: 12px; background: var(--accent); color: #fff; font-size: 11px; padding: 7px 16px; border-radius: 6px; }
.vf1-chat-bubble {
  position: absolute; bottom: 16px; right: 16px;
  background: var(--accent); width: 44px; height: 44px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 8px 24px rgba(59,130,246,0.4);
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.vf1-visitor-label {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; padding: 6px 10px; font-size: 11px; color: var(--text-muted);
  display: flex; align-items: center; gap: 6px;
}
.vf1-visitor-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse-dot 2s ease infinite; }

/* Visual frame 2 — AI greets */
.vf2-chat { height: 100%; display: flex; flex-direction: column; gap: 10px; }
.vf2-msg { display: flex; gap: 10px; align-items: flex-end; }
.vf2-msg.user { flex-direction: row-reverse; }
.vf2-av { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #818CF8); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; color: #fff; }
.vf2-av.user { background: rgba(255,255,255,0.1); }
.vf2-bubble { padding: 9px 13px; border-radius: 12px; font-size: 12.5px; line-height: 1.5; max-width: 78%; }
.vf2-msg:not(.user) .vf2-bubble { background: var(--bg-elevated); border: 1px solid var(--border); color: var(--text-primary); border-bottom-left-radius: 4px; }
.vf2-msg.user .vf2-bubble { background: var(--accent); color: #fff; border-bottom-right-radius: 4px; }

/* Visual frame 3 — answers questions */
.vf3-qa { display: flex; flex-direction: column; gap: 12px; }
.vf3-question { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; }
.vf3-q-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; font-weight: 600; }
.vf3-q-text { font-size: 13px; color: var(--text-primary); margin-bottom: 8px; }
.vf3-a-bubble { background: var(--accent-dim); border: 1px solid rgba(59,130,246,0.2); border-radius: 8px; padding: 10px 12px; }
.vf3-a-label { font-size: 10px; color: #93C5FD; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; margin-bottom: 4px; }
.vf3-a-text { font-size: 12.5px; color: var(--text-primary); line-height: 1.5; }

/* Visual frame 4 — lead captured */
.vf4-contact { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
.vf4-contact-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.vf4-avatar { width: 44px; height: 44px; background: linear-gradient(135deg, #6366F1, #3B82F6); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 600; color: #fff; }
.vf4-name { font-size: 15px; font-weight: 600; color: var(--text-primary); }
.vf4-source { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.vf4-badge { margin-left: auto; background: var(--green-dim); border: 1px solid rgba(34,197,94,0.25); color: var(--green); font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 100px; }
.vf4-fields { display: flex; flex-direction: column; gap: 10px; }
.vf4-field { display: flex; align-items: center; gap: 10px; }
.vf4-field-icon { width: 28px; height: 28px; background: rgba(255,255,255,0.04); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.vf4-field-label { font-size: 11px; color: var(--text-muted); margin-bottom: 1px; }
.vf4-field-val { font-size: 13px; color: var(--text-primary); font-weight: 500; }
.vf4-intent { margin-top: 14px; padding: 12px; background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.15); border-radius: 8px; }
.vf4-intent-label { font-size: 10px; color: #93C5FD; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; margin-bottom: 6px; }
.vf4-intent-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.vf4-tag { background: rgba(59,130,246,0.15); color: #93C5FD; font-size: 11px; padding: 3px 9px; border-radius: 100px; font-weight: 500; }

/* Visual frame 5 — operator handoff */
.vf5-inbox { height: 100%; display: grid; grid-template-columns: 200px 1fr; gap: 0; }
.vf5-list { border-right: 1px solid var(--border); padding: 10px 0; }
.vf5-list-header { padding: 4px 12px 10px; font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.vf5-conv { padding: 10px 12px; cursor: pointer; border-radius: 6px; margin: 0 4px; display: flex; flex-direction: column; gap: 3px; }
.vf5-conv.active { background: var(--accent-dim); }
.vf5-conv-name { font-size: 12.5px; font-weight: 500; color: var(--text-primary); display: flex; align-items: center; justify-content: space-between; }
.vf5-conv-preview { font-size: 11px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vf5-unread { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; }
.vf5-chat { padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.vf5-handoff-banner {
  background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.25);
  border-radius: 8px; padding: 8px 12px;
  font-size: 12px; color: #FCD34D; display: flex; align-items: center; gap: 8px;
}
.vf5-op-note { font-size: 11.5px; color: var(--text-muted); text-align: center; padding: 4px; }

/* Visual frame 6 — analytics */
.vf6-dash { display: flex; flex-direction: column; gap: 14px; height: 100%; }
.vf6-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.vf6-metric { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; }
.vf6-metric-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; font-weight: 600; }
.vf6-metric-val { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--text-primary); letter-spacing: -0.5px; }
.vf6-metric-trend { font-size: 11px; color: var(--green); margin-top: 2px; }
.vf6-metric-trend.down { color: #EF4444; }
.vf6-chart { flex: 1; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 8px; padding: 14px; overflow: hidden; }
.vf6-chart-title { font-size: 11.5px; font-weight: 500; color: var(--text-secondary); margin-bottom: 12px; }
.vf6-bars { display: flex; align-items: flex-end; gap: 6px; height: 80px; }
.vf6-bar-group { flex: 1; display: flex; align-items: flex-end; gap: 2px; }
.vf6-bar { flex: 1; border-radius: 3px 3px 0 0; min-height: 4px; }
.vf6-bar.leads { background: var(--accent); opacity: 0.8; }
.vf6-bar.convs { background: var(--green); opacity: 0.7; }
.vf6-chart-legend { display: flex; gap: 14px; margin-top: 8px; }
.vf6-legend-item { display: flex; align-items: center; gap: 5px; font-size: 10.5px; color: var(--text-muted); }
.vf6-legend-dot { width: 8px; height: 8px; border-radius: 2px; }

/* ─── CAPABILITIES SECTION ─── */
.caps-section { padding: 120px 0; }
.caps-intro { margin-bottom: 64px; }

/* Feature list */
.feat-list { border-top: 1px solid var(--border); }
.feat-row {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 40px; align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.feat-row:hover {
  background: rgba(255,255,255,0.015);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}
.feat-left {
  display: flex; align-items: center; gap: 16px;
}
.feat-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.15);
  display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.feat-name {
  font-family: var(--font-display); font-size: 16px; font-weight: 600;
  color: var(--text-primary); letter-spacing: -0.2px;
}
.feat-right { display: flex; flex-direction: column; gap: 10px; }
.feat-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }
.feat-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.feat-tag {
  font-size: 11.5px; color: var(--text-muted);
  background: rgba(255,255,255,0.04); border: 1px solid var(--border-subtle);
  border-radius: 5px; padding: 3px 10px; letter-spacing: 0.1px;
}

/* ─── FEATURES PAGE ─── */
.feat-page-hero { text-align: center; padding: 80px 0 60px; max-width: 680px; margin: 0 auto; }
.feat-page-h1 {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 56px);
  font-weight: 700; line-height: 1.1; letter-spacing: -1.5px;
  color: var(--text-primary); margin: 16px 0 20px;
}
.feat-page-sub { font-size: 17px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 32px; }
.feat-page-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Feature page blocks */
.feat-page-block {
  border-top: 1px solid var(--border);
  padding: 72px 0;
}
.feat-page-block-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  color: rgba(255,255,255,0.15); margin-bottom: 32px;
  text-transform: uppercase;
}
.feat-page-block-body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.feat-page-block-tag {
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
  color: var(--accent); text-transform: uppercase; margin-bottom: 16px;
}
.feat-page-block-title {
  font-family: var(--font-display); font-size: 32px; font-weight: 700;
  letter-spacing: -0.8px; line-height: 1.15; color: var(--text-primary);
  margin-bottom: 16px;
}
.feat-page-block-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.feat-page-list {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.feat-page-list li {
  font-size: 14px; color: var(--text-secondary); line-height: 1.5;
  padding-left: 20px; position: relative;
}
.feat-page-list li::before {
  content: "✓"; position: absolute; left: 0;
  color: var(--accent); font-weight: 700; font-size: 12px;
}
.feat-page-block-visual { display: flex; align-items: center; justify-content: center; }

/* Visual mocks for features page */
.feat-mock-chat {
  background: #111318; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; overflow: hidden; width: 100%;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.feat-mock-chat-header {
  background: rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 14px 16px; display: flex; align-items: center; gap: 10px;
}
.feat-mock-av {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: #fff;
}
.feat-mock-chat-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.feat-mock-msg {
  padding: 10px 13px; border-radius: 14px;
  font-size: 13px; line-height: 1.5; max-width: 85%;
}
.feat-mock-msg.ai {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.85); border-bottom-left-radius: 4px; align-self: flex-start;
}
.feat-mock-msg.user {
  background: #3b82f6; color: #fff;
  border-bottom-right-radius: 4px; align-self: flex-end;
}

.feat-mock-inbox {
  background: #111318; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; overflow: hidden; width: 100%;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.feat-mock-inbox-header {
  background: rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 12px 16px; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.5px;
}
.feat-mock-inbox-row {
  padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; gap: 10px;
  transition: background 0.15s;
}
.feat-mock-inbox-row.active { background: rgba(59,130,246,0.08); }
.feat-mock-inbox-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.feat-mock-inbox-name { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.85); margin-bottom: 3px; }
.feat-mock-inbox-preview { font-size: 11.5px; color: rgba(255,255,255,0.35); }
.feat-mock-tag { background: rgba(239,68,68,0.15); color: #FCA5A5; font-size: 10px; padding: 2px 7px; border-radius: 4px; margin-left: 6px; font-weight: 600; }

.feat-mock-handoff {
  background: #111318; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 16px; width: 100%;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.feat-mock-handoff-banner {
  background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.2);
  border-radius: 8px; padding: 10px 14px;
  font-size: 12.5px; color: #FCD34D; margin-bottom: 12px;
}

.feat-mock-analytics {
  background: #111318; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 20px; width: 100%;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.feat-mock-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.feat-mock-metric {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 14px;
}
.feat-mock-metric-val { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: #fff; letter-spacing: -0.5px; }
.feat-mock-metric-label { font-size: 11px; color: rgba(255,255,255,0.35); margin: 4px 0 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.feat-mock-metric-trend { font-size: 12px; color: #4ade80; }

.feat-mock-flow {
  background: #111318; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 20px; width: 100%;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.feat-mock-flow-step {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 12px 18px; font-size: 13px;
  color: rgba(255,255,255,0.6); width: 100%; text-align: center;
}
.feat-mock-flow-step.active {
  background: rgba(59,130,246,0.12); border-color: rgba(59,130,246,0.3);
  color: rgba(255,255,255,0.9);
}
.feat-mock-flow-arrow { font-size: 16px; color: rgba(255,255,255,0.2); }

/* ─── INTEGRATIONS PAGE ─── */
.intg-category { margin-bottom: 56px; }
.intg-category-title {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.intg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.intg-card {
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px;
  transition: border-color 0.2s, background 0.2s;
  display: flex; flex-direction: column; gap: 6px;
}
.intg-card:hover { border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.03); }
.intg-card-wide { grid-column: span 2; flex-direction: row; align-items: flex-start; gap: 16px; }
.intg-card-icon { font-size: 22px; flex-shrink: 0; }
.intg-card-name { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.intg-card-desc { font-size: 12.5px; color: var(--text-secondary); line-height: 1.5; flex: 1; }
.intg-card-badge {
  font-size: 10.5px; font-weight: 600; color: var(--text-muted);
  background: rgba(255,255,255,0.04); border: 1px solid var(--border-subtle);
  border-radius: 5px; padding: 2px 8px; align-self: flex-start; margin-top: 4px;
}
.intg-card-badge.easy { color: #4ade80; border-color: rgba(74,222,128,0.2); background: rgba(74,222,128,0.07); }

/* How to connect */
.intg-how {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.intg-steps { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.intg-step { display: flex; gap: 16px; align-items: flex-start; }
.intg-step-num {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--accent);
}
.intg-step-title { font-size: 15px; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.intg-step-desc { font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; }

/* Code block */
.intg-code-block {
  background: #0d0f14; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.intg-code-header {
  background: rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 12px 16px; display: flex; align-items: center; justify-content: space-between;
}
.intg-code-label { font-size: 11px; color: rgba(255,255,255,0.3); font-weight: 500; }
.intg-code-pre {
  padding: 20px; font-size: 13px; line-height: 1.7;
  font-family: 'SFMono-Regular', 'JetBrains Mono', 'Menlo', monospace;
  color: rgba(255,255,255,0.7); margin: 0; overflow-x: auto;
}
.intg-code-comment { color: rgba(255,255,255,0.25); }
.intg-code-tag { color: #93C5FD; }
.intg-code-var { color: #C4B5FD; }
.intg-code-key { color: #86EFAC; }
.intg-code-str { color: #FCD34D; }

/* ─── TABS SECTION ─── */
.tabs-section {
  padding: 120px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tabs-intro { text-align: center; margin-bottom: 56px; }
.tabs-intro .section-sub { margin: 0 auto; }
.tab-nav {
  display: flex; justify-content: center; gap: 4px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 4px;
  width: fit-content; margin: 0 auto 48px;
}
.tab-btn {
  padding: 8px 18px; border-radius: 7px;
  font-family: var(--font-body); font-size: 13.5px; font-weight: 500;
  color: var(--text-muted); background: none; border: none; cursor: pointer;
  transition: all 0.2s; white-space: nowrap;
}
.tab-btn.active {
  background: var(--bg-elevated); color: var(--text-primary);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.tab-content { position: relative; }
.tab-panel {
  display: none;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  animation: tabIn 0.3s ease;
}
.tab-panel.active { display: block; }
@keyframes tabIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.tab-panel-inner { padding: 32px; min-height: 360px; }
.tab-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.tab-text h3 { font-family: var(--font-display); font-size: 24px; font-weight: 600; letter-spacing: -0.5px; color: var(--text-primary); margin-bottom: 12px; }
.tab-text p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 20px; }
.tab-features { display: flex; flex-direction: column; gap: 10px; }
.tab-feature { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--text-secondary); }
.tab-feature::before { content: ''; width: 16px; height: 16px; background: var(--green-dim); border: 1px solid rgba(34,197,94,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 8l3 3 6-6' stroke='%2322C55E' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.tab-mock { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.tab-mock-header { background: var(--bg-card); border-bottom: 1px solid var(--border); padding: 10px 14px; display: flex; align-items: center; gap: 6px; }
.tab-mock-dot { width: 8px; height: 8px; border-radius: 50%; }
.tab-mock-dot.r { background: rgba(239,68,68,0.5); }
.tab-mock-dot.y { background: rgba(245,158,11,0.5); }
.tab-mock-dot.g { background: rgba(34,197,94,0.5); }
.tab-mock-content { padding: 16px; }

/* Analytics tab mock */
.analytics-grid-mock { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.am-stat { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 12px; }
.am-stat-val { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--text-primary); }
.am-stat-label { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.am-stat-trend { font-size: 11px; color: var(--green); }
.am-chart { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 12px; }
.am-bars { display: flex; align-items: flex-end; gap: 4px; height: 60px; }
.am-bar { flex: 1; border-radius: 2px 2px 0 0; }
.am-bar.b1 { height: 40%; background: var(--accent); opacity: 0.6; }
.am-bar.b2 { height: 65%; background: var(--accent); opacity: 0.7; }
.am-bar.b3 { height: 50%; background: var(--accent); opacity: 0.65; }
.am-bar.b4 { height: 80%; background: var(--accent); opacity: 0.8; }
.am-bar.b5 { height: 60%; background: var(--accent); opacity: 0.7; }
.am-bar.b6 { height: 90%; background: var(--accent); opacity: 0.9; }
.am-bar.b7 { height: 75%; background: var(--accent); }

/* Inbox tab mock */
.inbox-mock-list { display: flex; flex-direction: column; gap: 1px; }
.inbox-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 7px; padding: 10px 12px; display: flex; gap: 10px; align-items: flex-start; }
.inbox-item.unread { border-color: rgba(59,130,246,0.2); background: rgba(59,130,246,0.04); }
.inbox-av { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #818CF8); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; color: #fff; flex-shrink: 0; }
.inbox-name { font-size: 13px; font-weight: 500; color: var(--text-primary); display: flex; align-items: center; gap: 6px; }
.inbox-preview { font-size: 11.5px; color: var(--text-muted); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 180px; }
.inbox-meta { margin-left: auto; text-align: right; }
.inbox-time { font-size: 11px; color: var(--text-muted); }
.inbox-unread-dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; margin: 4px 0 0 auto; }

/* ─── INDUSTRIES SECTION ─── */
.industries-section { padding: 120px 0; }
.industries-intro { margin-bottom: 64px; }
.industry-tabs {
  display: flex; gap: 0; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; width: fit-content; margin-bottom: 40px;
}
.ind-tab {
  padding: 10px 20px; font-size: 13.5px; font-weight: 500;
  background: none; border: none; cursor: pointer; font-family: var(--font-body);
  color: var(--text-muted); border-right: 1px solid var(--border);
  transition: all 0.2s;
}
.ind-tab:last-child { border-right: none; }
.ind-tab.active { background: var(--bg-elevated); color: var(--text-primary); }
.ind-tab:hover:not(.active) { background: rgba(255,255,255,0.03); color: var(--text-secondary); }
.industry-panel { display: none; }
.industry-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: stretch; animation: tabIn 0.3s ease; }
.industry-text { display: flex; flex-direction: column; }
.industry-text h3 { font-family: var(--font-display); font-size: 28px; font-weight: 600; letter-spacing: -0.6px; color: var(--text-primary); margin-bottom: 14px; }
.industry-text p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }
.industry-scenarios { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.industry-scenario { display: flex; gap: 12px; padding: 14px; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius); }
.ind-scene-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.ind-scene-title { font-size: 13.5px; font-weight: 500; color: var(--text-primary); margin-bottom: 3px; }
.ind-scene-desc { font-size: 12.5px; color: var(--text-secondary); line-height: 1.5; }
.industry-visual { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; overflow: hidden; height: 100%; box-sizing: border-box; display: flex; align-items: center; }

/* ─── ROI SECTION ─── */
.roi-section {
  padding: 120px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.roi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: stretch; }
.roi-grid > div:first-child { display: flex; flex-direction: column; }
.roi-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: auto; }
.roi-num-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.roi-num-card:first-child { grid-column: span 2; background: var(--accent-dim); border-color: rgba(59,130,246,0.2); }
.roi-number { font-family: var(--font-display); font-size: 40px; font-weight: 600; color: var(--text-primary); letter-spacing: -1.5px; line-height: 1; }
.roi-num-card:first-child .roi-number { font-size: 52px; color: #93C5FD; }
.roi-num-label { font-size: 13px; color: var(--text-secondary); margin-top: 6px; }
.roi-visual { display: flex; flex-direction: column; gap: 16px; height: 100%; margin-top: 56px; }
.roi-visual > div:last-child { margin-top: 0; }
.roi-comparison { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.roi-comp-title { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 20px; }
.roi-comp-row { margin-bottom: 16px; }
.roi-comp-label { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-secondary); margin-bottom: 6px; }
.roi-comp-label span:last-child { font-weight: 500; color: var(--text-primary); }
.roi-bar-track { height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.roi-bar-fill { height: 100%; border-radius: 3px; }
.roi-bar-fill.before { background: #3F3F46; }
.roi-bar-fill.after { background: var(--accent); }

/* ─── PROOF SECTION ─── */
.proof-section { padding: 120px 0; }
.proof-intro { text-align: center; margin-bottom: 64px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testimonial {
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.testimonial:hover { border-color: #3F3F46; transform: translateY(-2px); }
.testimonial.featured { grid-column: span 2; background: var(--bg-card); border-color: rgba(59,130,246,0.2); }
.test-quote { font-size: 15px; color: var(--text-primary); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial.featured .test-quote { font-size: 17px; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-av { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #6366F1); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: #fff; }
.test-name { font-size: 13.5px; font-weight: 600; color: var(--text-primary); }
.test-title { font-size: 12px; color: var(--text-muted); margin-top: 1px; }
.test-stars { display: flex; gap: 2px; margin-left: auto; }
.test-star { color: var(--amber); font-size: 13px; }
.trust-badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.trust-badge { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; text-align: center; }
.trust-badge-icon { font-size: 24px; margin-bottom: 8px; }
.trust-badge-label { font-size: 12.5px; font-weight: 500; color: var(--text-secondary); }
.trust-badge-sub { font-size: 11px; color: var(--text-muted); margin-top: 3px; }

/* ─── FAQ ─── */
.faq-section {
  padding: 120px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}
.faq-intro { text-align: center; margin-bottom: 64px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 960px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: #3F3F46; }
.faq-q {
  width: 100%; padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: var(--text-primary); text-align: left;
}
.faq-arrow { color: var(--text-muted); font-size: 12px; flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--accent); }
.faq-a {
  padding: 0 20px; max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 13.5px; color: var(--text-secondary); line-height: 1.65;
}
.faq-item.open .faq-a { padding: 0 20px 18px; max-height: 200px; }

/* ─── FINAL CTA ─── */
.cta-section {
  padding: 120px 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; bottom: -200px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 600; letter-spacing: -2px; line-height: 1.05;
  color: var(--text-primary); margin-bottom: 20px;
}
.cta-section p { font-size: 18px; color: var(--text-secondary); margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.cta-note { font-size: 13px; color: var(--text-muted); }

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  background: var(--bg);
}
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  background: var(--bg);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 240px 1fr;
  gap: 64px;
}
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; text-decoration: none; }
.footer-logo-text { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--text-primary); }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer-col-title { font-size: 12px; font-weight: 600; color: var(--text-primary); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px; }
.footer-col-links { display: flex; flex-direction: column; gap: 8px; }
.footer-col-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-col-links a:hover { color: var(--text-secondary); }
.footer-bottom {
  max-width: 1200px; margin: 32px auto 0; padding: 24px 32px 0;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copyright { font-size: 12.5px; color: var(--text-muted); }

/* Footer web component styles */
.footer-grid {
  display: grid;
  grid-template-columns: 260px repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.footer-col strong {
  display: block;
  margin-bottom: 14px;
  color: var(--text-primary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 8px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-secondary); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr; }
  .mock-chat { display: none; }
  .sticky-layout { grid-template-columns: 1fr; gap: 40px; }
  .sticky-steps { width: 100%; }
  .chat-widget { height: 380px; }
  .caps-grid { grid-template-columns: 1fr 1fr; }
  .cap-card.wide { grid-column: span 1; }
  .tabs-section .tab-nav { flex-wrap: wrap; }
  .industry-panel.active { grid-template-columns: 1fr; }
  .roi-grid { grid-template-columns: 1fr; }
  .roi-visual { margin-top: 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial.featured { grid-column: span 1; }
  .trust-badges { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .vf5-inbox { grid-template-columns: 1fr; }
  .vf5-list { border-right: none; border-bottom: 1px solid var(--border); }
}

@media (max-width: 768px) {
  .container, .container-wide { padding: 0 20px; }
  .nav-links { display: none; }
  .site-nav .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-cta .btn-ghost { display: none; }
  .pain-grid { grid-template-columns: 1fr; }
  .caps-grid { grid-template-columns: 1fr; }
  .roi-numbers { grid-template-columns: 1fr; }
  .roi-num-card:first-child { grid-column: span 1; }
  .trust-logos { gap: 20px; }
  .trust-inner { gap: 24px; }
  .vf5-chat { display: none; }
  .tab-nav { flex-direction: column; width: 100%; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════
   INNER PAGE STYLES
   (extra classes needed by features/pricing/
    industries/integrations/product/security/contact)
═══════════════════════════════════════════════ */

/* ─── Extra variables for inner pages ─── */
:root {
  --bg-soft: #17171a;
  --border-strong: #2a2a31;
  --accent-strong: #2563eb;
  --accent-soft: rgba(59, 130, 246, 0.12);
  --accent-line: rgba(59, 130, 246, 0.26);
  --green-soft: rgba(34, 197, 94, 0.1);
  --amber-soft: rgba(245, 158, 11, 0.12);
  --red: #ef4444;
  --red-soft: rgba(239, 68, 68, 0.1);
  --shadow-xl: 0 32px 90px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.24);
  --radius-xl: 24px;
  --container: 1200px;
  --container-wide: 1360px;
}

/* ─── Page shell / layout ─── */
.page-shell { position: relative; }

.section {
  position: relative;
  padding: 112px 0;
}
.section.bleed {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-tight { padding: 88px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--accent);
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.05em;
}
.section-title .accent-text,
.hero-title .accent-text,
.page-title .accent-text {
  background: linear-gradient(135deg, #93c5fd 0%, var(--accent) 55%, #818cf8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.section-copy,
.hero-copy,
.page-copy {
  margin: 0;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
}

/* ─── Pills / Badges ─── */
.pill,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  color: #93c5fd;
  font-size: 12px;
  font-weight: 600;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.12);
}

/* ─── Btn row ─── */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ─── Btn (inner pages) ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--text-primary);
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-1px);
  border-color: var(--border-strong);
}
.btn.btn-primary {
  border-color: transparent;
  background: var(--accent);
  box-shadow: 0 10px 28px rgba(59, 130, 246, 0.28);
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  padding: 11px 18px;
}
.btn.btn-primary:hover {
  background: var(--accent-strong);
  box-shadow: 0 16px 36px rgba(59, 130, 246, 0.32);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.02);
}
.btn-quiet { color: var(--text-secondary); }

/* ─── Page hero ─── */
.page-hero {
  padding: 156px 0 72px;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 28px;
  align-items: end;
}
.page-title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}
.page-summary {
  display: grid;
  gap: 14px;
}
.page-summary .surface-card {
  padding: 18px 20px;
  border-radius: 16px;
}

/* ─── Cards (inner pages) ─── */
.mock-shell,
.surface-card,
.feature-card,
.pricing-card,
.faq-item,
.stat-card,
.compare-table,
.integration-card,
.tour-card,
.contact-panel,
.trust-strip,
.cta-panel,
.security-card,
.industry-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0)), var(--bg-elevated);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.mock-shell {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(255, 255, 255, 0.03);
  position: relative;
}
.mock-shell::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.42), transparent);
}

/* ─── Mock topbar / panel topbar ─── */
.panel-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}

/* ─── Mock stage ─── */
.mock-stage {
  position: relative;
  background:
    radial-gradient(circle at right top, rgba(59, 130, 246, 0.08), transparent 35%),
    linear-gradient(135deg, #0f172a 0%, #0a0a0e 100%);
}
.site-mock {
  padding: 34px;
  border-right: 1px solid var(--border);
}
.site-mock .pill { margin-bottom: 18px; }
.site-mock h2, .site-mock h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}
.site-mock h2 { font-size: clamp(30px, 4vw, 46px); }
.site-mock p { max-width: 420px; margin: 0; color: #94a3b8; font-size: 14px; }

/* ─── Metric rows ─── */
.metric-row, .mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}
.metric-tile, .mini-stat {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.metric-label, .mini-stat-label {
  color: #64748b;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.metric-value, .mini-stat-value {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
  color: #f8fafc;
}
.metric-note, .mini-stat-note {
  margin-top: 4px;
  color: var(--green);
  font-size: 11px;
}

/* ─── Chat mock (inner pages) ─── */
.chat-mock, .widget-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
}
.chat-header, .widget-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
.avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), #818cf8);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}
.chat-name { font-size: 13px; font-weight: 500; }
.chat-status { color: var(--green); font-size: 11px; }
.chat-thread {
  display: flex; flex: 1; flex-direction: column;
  gap: 12px; padding: 16px;
}
.bubble {
  max-width: 86%;
  padding: 10px 13px;
  border-radius: 12px;
  font-size: 12.5px;
  line-height: 1.55;
}
.bubble.ai {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}
.bubble.user {
  margin-left: auto;
  background: var(--accent);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.chat-input {
  display: flex; gap: 10px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
}
.chat-input span {
  flex: 1; padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-elevated);
  color: var(--text-muted);
  font-size: 12px;
}
.chat-send {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--accent);
}

/* ─── Trust strip ─── */
.trust-strip {
  margin-top: 42px;
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: center;
}

/* ─── Grid layouts ─── */
.logo-row,
.stats-row,
.card-grid,
.pricing-grid,
.industry-grid,
.integration-grid,
.tour-grid,
.security-grid,
.footer-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}
.logo-row { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.logo-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 14px;
}
.stats-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stat-card {
  padding: 18px 20px;
  border-radius: 14px;
}
.stat-card strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.stat-card span { color: var(--text-muted); font-size: 12px; }

/* ─── Two-column grids ─── */
.split-grid,
.two-col,
.tour-highlight,
.contact-grid,
.compare-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

body[data-page="contact"] .section.bleed .two-col > div:last-child {
  margin-top: 22px;
}

/* ─── Story card ─── */
.story-card, .timeline-card {
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.story-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.story-title { font-size: 13px; color: var(--text-secondary); }
.story-events { display: grid; }
.story-event {
  display: flex; gap: 14px;
  padding: 15px 24px;
  border-bottom: 1px solid var(--border-subtle);
}
.story-event:last-child { border-bottom: 0; }
.story-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  font-size: 15px;
  flex-shrink: 0;
}
.story-icon.red { background: var(--red-soft); }
.story-icon.amber { background: var(--amber-soft); }
.story-icon.neutral { background: rgba(255, 255, 255, 0.04); }
.story-copy strong { display: block; font-size: 14px; margin-bottom: 3px; }
.story-copy p, .story-copy span { color: var(--text-muted); font-size: 12.5px; }
.story-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: rgba(239, 68, 68, 0.06);
  border-top: 1px solid rgba(239, 68, 68, 0.16);
  color: #fca5a5;
  font-size: 13px;
  font-weight: 500;
}

/* ─── Problem / bullet / stack lists ─── */
.problem-list, .bullet-list, .stack {
  display: grid;
  gap: 14px;
}
.problem-item, .bullet-card, .stack-card {
  padding: 18px 18px 18px 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}
.problem-item strong, .bullet-card strong, .stack-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}
.problem-item p, .bullet-card p, .stack-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 13px;
}

/* ─── Sticky story layout ─── */
.story-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
}
.story-steps { position: sticky; top: 104px; }
.story-step {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-subtle);
  opacity: 0.45;
  cursor: pointer;
  transition: opacity 0.25s ease;
}
.story-step.active { opacity: 1; }
.story-step small {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.story-step.active small { color: var(--accent); }
.story-step h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.story-step p { margin: 0; color: var(--text-secondary); font-size: 14px; }
.story-progress {
  width: 0; height: 2px;
  margin-top: 16px;
  border-radius: 999px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.story-step.active .story-progress { width: 100%; }
.sticky-panel {
  position: sticky; top: 104px;
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius-xl);
}
.story-frame {
  display: none;
  min-height: 520px;
}
.story-frame.active {
  display: flex;
  flex-direction: column;
}
.story-body {
  display: flex; flex: 1; flex-direction: column;
  gap: 14px; padding: 22px;
}

/* ─── Panel pill ─── */
.panel-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.18);
  font-size: 11px;
  font-weight: 600;
}

/* ─── Frame browser ─── */
.frame-browser, .tour-browser {
  display: flex; flex: 1; flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.frame-browser-body {
  position: relative; flex: 1; padding: 22px;
  background: linear-gradient(135deg, #0f172a 0%, #0a0a0e 100%);
}
.floating-widget {
  position: absolute;
  right: 18px; bottom: 18px;
  width: 48px; height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 16px 34px rgba(59, 130, 246, 0.42);
}
.frame-chat, .mini-chat {
  display: flex; flex-direction: column; gap: 10px;
}

/* ─── Insight card ─── */
.insight-card {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}
.insight-card h4,
.integration-card h3,
.feature-card h3,
.security-card h3,
.tour-card h3,
.industry-card h3,
.pricing-card h3,
.faq-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
}
.insight-card p,
.feature-card p,
.integration-card p,
.security-card p,
.industry-card p,
.pricing-card p,
.tour-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
}

/* ─── Card grid ─── */
.card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-card, .integration-card, .security-card, .tour-card, .industry-card {
  padding: 28px;
  border-radius: 18px;
}
.feature-card.wide, .integration-card.wide, .tour-card.wide, .industry-card.wide {
  grid-column: span 2;
}

/* ─── Icon box ─── */
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  font-size: 18px;
}
.icon-box.green { background: var(--green-soft); border-color: rgba(34, 197, 94, 0.2); }
.icon-box.amber { background: var(--amber-soft); border-color: rgba(245, 158, 11, 0.2); }
.icon-box.red { background: var(--red-soft); border-color: rgba(239, 68, 68, 0.18); }

/* ─── Chip row ─── */
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 500;
}

/* ─── Tab shell (inner pages) ─── */
.tab-shell { border-radius: 20px; }
.tab-panel-shell { overflow: hidden; border-radius: 22px; }
.tab-panel-content { padding: 30px; }

/* ─── Mini list ─── */
.mini-list { display: grid; gap: 10px; margin-top: 18px; }
.mini-list-item {
  display: flex; gap: 10px;
  align-items: flex-start;
  color: var(--text-secondary);
  font-size: 14px;
}
.mini-list-item::before {
  content: "";
  width: 16px; height: 16px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--green-soft);
  border: 1px solid rgba(34, 197, 94, 0.2);
  flex-shrink: 0;
}
.mini-panel {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-elevated);
}

/* ─── Industry layout (inner pages) ─── */
.industry-layout { display: grid; gap: 16px; }
.industry-tab {
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
}
.industry-tab.active { background: var(--bg-elevated); color: var(--text-primary); }
.industry-pane { display: none; }
.industry-pane.active {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

/* ─── Pricing (inner pages) ─── */
.pricing-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-card);
}
.pricing-switch button {
  min-width: 112px;
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
}
.pricing-switch button.active {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 40px;
}
.pricing-card {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pricing-card.popular {
  border-color: var(--accent-line);
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.08), rgba(16, 18, 24, 0.96));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(59, 130, 246, 0.12);
}
.pricing-card .label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  color: #93c5fd;
  font-size: 11px;
  font-weight: 600;
}
.price-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin: 18px 0;
}
.price {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -0.05em;
}
.price-note { color: var(--text-muted); font-size: 13px; }
.feature-list { display: grid; gap: 10px; margin: 22px 0 28px; flex: 1; align-content: start; }
.feature-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 14px;
}
.feature-list span::before {
  content: "";
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(34, 197, 94, 0.24);
  background: var(--green-soft);
  flex-shrink: 0;
}

/* ─── Compare table ─── */
.compare-table {
  overflow: hidden;
  margin-top: 28px;
  border-radius: 18px;
}
.compare-table table { width: 100%; border-collapse: collapse; }
.compare-table th,
.compare-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 14px;
}
.compare-table th {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
  font-weight: 600;
}
.compare-table td { color: var(--text-secondary); }
.compare-table tr:last-child td { border-bottom: 0; }
.yes { color: var(--green); }

/* ─── FAQ (inner pages) ─── */
.pricing-faq { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
}
.faq-trigger span:last-child {
  color: var(--text-muted);
  transition: transform 0.2s ease;
}
.faq-item.open .faq-trigger span:last-child {
  transform: rotate(180deg);
  color: var(--accent);
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: var(--text-secondary);
  font-size: 14px;
  transition: max-height 0.25s ease, padding 0.25s ease;
}
.faq-item.open .faq-content {
  max-height: 240px;
  padding: 0 20px 20px;
}

/* ─── Testimonials (inner pages) ─── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.quote { margin: 0 0 18px; font-size: 15px; line-height: 1.75; }
.author { display: flex; gap: 12px; align-items: center; }
.author small { display: block; color: var(--text-muted); font-size: 12px; }

/* ─── Module / inner page grids ─── */
.module-grid,
.integration-grid,
.security-grid,
.industry-grid,
.tour-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.module-grid .feature-card:nth-child(1),
.module-grid .feature-card:nth-child(6),
.integration-grid .integration-card:nth-child(4),
.tour-grid .tour-card:nth-child(2),
.industry-grid .industry-card:nth-child(5) {
  grid-column: span 2;
}

/* ─── Boards ─── */
.mock-board,
.analytics-board,
.contact-profile,
.inbox-board,
.mobile-widget,
.automation-flow {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.board-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}
.board-title { font-size: 13px; font-weight: 600; }
.board-sub { color: var(--text-muted); font-size: 11px; }
.mail-list,
.detail-list,
.analytics-mini,
.operator-flow {
  display: grid;
  gap: 10px;
}
.mail-item,
.detail-item,
.operator-step,
.analytics-mini .mini-panel {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}
.mail-item.active {
  border-color: var(--accent-line);
  background: rgba(59, 130, 246, 0.06);
}

/* ─── Bar chart ─── */
.bar-chart {
  display: flex;
  align-items: end;
  gap: 6px;
  min-height: 110px;
}
.bar-chart span {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, #60a5fa, #2563eb);
  opacity: 0.85;
}
.bar-chart span:nth-child(2n) {
  background: linear-gradient(180deg, #34d399, #059669);
}

/* ─── CTA panel ─── */
.cta-panel {
  position: relative;
  padding: 52px;
  border-radius: 26px;
  overflow: hidden;
}
.cta-panel::after {
  content: "";
  position: absolute;
  width: 420px; height: 280px;
  right: -80px; bottom: -120px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.16), transparent 70%);
}
.cta-panel-content { position: relative; z-index: 1; max-width: 620px; }

/* ─── Contact ─── */
.contact-panel { padding: 26px; border-radius: 20px; }
.contact-form { display: grid; gap: 14px; }
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.field { display: grid; gap: 7px; }
.field label { color: var(--text-secondary); font-size: 13px; }
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-primary);
  outline: none;
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent-line);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-muted); }
.field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  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='%236b7280' 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;
}
.success-state {
  display: none;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(34, 197, 94, 0.2);
  background: rgba(34, 197, 94, 0.08);
  color: #bbf7d0;
}
.success-state.show { display: block; }

/* ─── Delay utilities ─── */
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

/* ─── Card hover lift ─── */
.feature-card,
.integration-card,
.security-card,
.tour-card {
  transition: border-color 0.22s ease, transform 0.22s ease;
}
.feature-card:hover,
.integration-card:hover,
.security-card:hover,
.tour-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.pricing-card {
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

/* Checkmark icons */
.mini-list-item::before,
.feature-list span::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 8l3 3 6-6' stroke='%2322c55e' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ─── RESPONSIVE (inner pages) ─── */
@media (max-width: 1100px) {
  .page-hero-grid,
  .tab-layout,
  .story-layout,
  .industry-pane.active,
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid,
  .card-grid,
  .module-grid,
  .industry-grid,
  .integration-grid,
  .tour-grid,
  .security-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .module-grid .feature-card:nth-child(1),
  .module-grid .feature-card:nth-child(6),
  .integration-grid .integration-card:nth-child(4),
  .tour-grid .tour-card:nth-child(2),
  .industry-grid .industry-card:nth-child(5),
  .feature-card.wide,
  .integration-card.wide,
  .tour-card.wide,
  .industry-card.wide,
  .testimonial.featured {
    grid-column: span 1;
  }
  .story-steps, .sticky-panel { position: static; }
  .site-mock { border-right: 0; border-bottom: 1px solid var(--border); }
  .trust-strip { margin-top: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 860px) {
  .site-nav .nav-links,
  .nav-actions .btn-quiet,
  .nav-actions .btn-secondary { display: none; }
  .menu-toggle { display: inline-flex; flex-direction: column; justify-content: center; }
  .hero { min-height: auto; padding-top: 124px; }
  .split-grid,
  .two-col,
  .tour-highlight,
  .contact-grid,
  .compare-layout,
  .field-grid,
  .pricing-faq { grid-template-columns: 1fr; }
  .pricing-grid,
  .card-grid,
  .module-grid,
  .industry-grid,
  .integration-grid,
  .tour-grid,
  .security-grid,
  .testimonial-grid,
  .stats-row,
  .logo-row { grid-template-columns: 1fr; }
  .metric-row, .mini-stats { grid-template-columns: 1fr; }
  .tab-nav, .industry-tabs { width: 100%; }
  .tab-btn, .industry-tab { flex: 1 1 calc(50% - 4px); }
  .cta-panel { padding: 34px 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 700px) {
  .compare-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare-table table { min-width: 480px; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { flex-direction: column; align-items: center; gap: 8px; }
}

/* ═══════════════════════════════════════════════
   MARKETING LIGHT PREMIUM OVERRIDES
═══════════════════════════════════════════════ */

:root {
  --bg: #f6f8fc;
  --bg-soft: #eef4ff;
  --bg-elevated: #ffffff;
  --bg-card: #f9fbff;
  --border: rgba(148, 163, 184, 0.22);
  --border-subtle: rgba(148, 163, 184, 0.16);
  --border-strong: rgba(37, 99, 235, 0.24);
  --text-primary: #10213f;
  --text-secondary: #53657f;
  --text-muted: #71829c;
  --accent: #2563eb;
  --accent-strong: #1d4ed8;
  --accent-dim: rgba(37, 99, 235, 0.08);
  --accent-soft: rgba(37, 99, 235, 0.08);
  --accent-line: rgba(37, 99, 235, 0.18);
  --accent-glow: rgba(37, 99, 235, 0.16);
  --green: #0f9f6e;
  --green-dim: rgba(15, 159, 110, 0.08);
  --green-soft: rgba(15, 159, 110, 0.08);
  --amber: #d97706;
  --amber-soft: rgba(217, 119, 6, 0.08);
  --red: #dc2626;
  --red-soft: rgba(220, 38, 38, 0.08);
  --shadow-soft: 0 12px 32px rgba(15, 23, 42, 0.06);
  --shadow-xl: 0 32px 80px rgba(15, 23, 42, 0.1);
  --radius: 14px;
  --radius-lg: 24px;
  --radius-xl: 30px;
}

html {
  background:
    radial-gradient(circle at top left, rgba(147, 197, 253, 0.32), transparent 34%),
    linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
}

body {
  background: transparent;
  color: var(--text-primary);
}

body::before {
  opacity: 0.06;
  mix-blend-mode: multiply;
}

a { color: inherit; }

.container,
.container-wide,
.nav-inner,
.footer-inner,
.footer-bottom {
  max-width: 1220px;
}

.btn-primary,
.btn.btn-primary,
.button.button-primary {
  background: linear-gradient(180deg, #2f6df6 0%, #2563eb 100%);
  color: #fff;
  border: 1px solid rgba(37, 99, 235, 0.16);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.16);
}

.btn-primary:hover,
.btn.btn-primary:hover,
.button.button-primary:hover {
  background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.2);
}

.btn-ghost,
.btn.btn-secondary,
.button.button-secondary,
.btn-secondary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--text-primary);
  border: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.btn-ghost:hover,
.btn.btn-secondary:hover,
.button.button-secondary:hover,
.btn-secondary:hover {
  border-color: var(--border-strong);
  color: var(--accent-strong);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.site-header,
nav {
  background: rgba(246, 248, 252, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
nav.scrolled {
  background: rgba(250, 252, 255, 0.88);
  border-color: rgba(148, 163, 184, 0.18);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.nav-inner {
  min-height: 76px;
}

.nav-logo,
.footer-logo {
  gap: 12px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: linear-gradient(135deg, #2f6df6 0%, #60a5fa 100%);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.18);
}

.nav-logo-copy,
.footer-logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.nav-logo-copy strong,
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.nav-logo-copy small,
.footer-logo-copy small {
  color: var(--text-muted);
  font-size: 11px;
}

.nav-links a,
.nav-links li a {
  color: var(--text-secondary);
  font-weight: 500;
  border-radius: 999px;
  padding: 8px 14px;
}

.nav-links a:hover,
.nav-links li a:hover,
.site-nav .nav-links a.is-active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.72);
}

.lang-switch {
  padding: 5px;
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.lang-link {
  color: var(--text-muted);
  font-size: 11px;
}

.lang-link.is-active {
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent-strong);
  box-shadow: none;
}

.hero,
.page-hero {
  position: relative;
  padding-top: 160px;
  background:
    radial-gradient(circle at 12% 14%, rgba(96, 165, 250, 0.18), transparent 22%),
    radial-gradient(circle at 85% 0%, rgba(191, 219, 254, 0.62), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 248, 252, 0.78) 60%, rgba(246, 248, 252, 0) 100%);
}

.hero {
  min-height: auto;
  padding-bottom: 110px;
}

.hero-grid,
.page-hero-grid-bg,
.hero-glow,
.cta-glow {
  opacity: 1;
}

.hero-grid,
.page-hero-grid-bg {
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, black, transparent 88%);
}

.hero-glow {
  width: 960px;
  height: 720px;
  top: -280px;
  background: radial-gradient(ellipse, rgba(147, 197, 253, 0.48) 0%, rgba(191, 219, 254, 0.18) 28%, transparent 68%);
}

.hero-badge,
.eyebrow,
.section-label,
.section-pill,
.pill,
.badge,
.panel-pill,
.pricing-card .label {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--accent-strong);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.06);
}

.section-label::before,
.eyebrow::before,
.pain-label-line {
  background: var(--accent);
}

.hero h1,
.page-title,
.feat-page-h1,
.section-heading,
.section-title,
.cta-section h2,
.pain-heading {
  color: var(--text-primary);
  letter-spacing: -0.06em;
}

.hero h1 em,
.accent-text,
.section-title .accent-text,
.page-title .accent-text {
  display: inline-block;
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 45%, #60a5fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero h1 em {
  font-style: normal;
}

.hero-sub,
.page-copy,
.section-sub,
.feat-page-sub,
.pain-sub {
  color: var(--text-secondary);
}

.hero-meta,
.hero-meta span,
.trust-label,
.trust-stat-text,
.mock-url,
.mock-prop-label,
.mock-prop-sub,
.msg-time,
.board-sub,
.price-note,
.footer-copyright,
.footer-made,
.footer-brand p,
.footer-col-links a,
.footer-col a {
  color: var(--text-muted);
}

.footer-made {
  font-size: 12.5px;
}

.hero-visual-inner,
.mock-shell,
.surface-card,
.feature-card,
.pricing-card,
.faq-item,
.stat-card,
.compare-table,
.integration-card,
.tour-card,
.contact-panel,
.trust-strip,
.cta-panel,
.security-card,
.industry-card,
.tab-panel,
.industry-visual,
.industry-pane .mock-shell,
.chat-widget,
.pain-story,
.intg-card,
.feat-mock-chat,
.feat-mock-inbox,
.feat-mock-handoff,
.feat-mock-analytics,
.feat-mock-flow,
.intg-code-block,
.mock-board,
.analytics-board,
.contact-profile,
.inbox-board,
.mobile-widget,
.automation-flow,
.widget-card,
.page-summary .surface-card,
.testimonial,
.roi-comparison {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
}

.hero-visual-inner,
.mock-shell,
.tab-panel,
.pain-story,
.cta-panel,
.hero-visual-inner,
.roi-comparison {
  border-radius: 28px;
}

.hero-visual-inner::before,
.mock-shell::before,
.cta-panel::after {
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.18), transparent);
}

.section,
.caps-section,
.industries-section,
.proof-section,
.section-tight {
  padding-top: 104px;
  padding-bottom: 104px;
}

.sticky-section,
.tabs-section,
.roi-section,
.faq-section,
.section.bleed,
.trust-bar,
footer {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.92)),
    linear-gradient(180deg, rgba(239, 246, 255, 0.8), rgba(246, 248, 252, 0.96));
  border-color: rgba(148, 163, 184, 0.14);
}

.trust-bar {
  border-top: 0;
}

.trust-logo {
  color: #6b7c96;
  opacity: 0.85;
}

.trust-stat-num,
.price,
.roi-number,
.am-stat-val,
.vf6-metric-val,
.feat-mock-metric-val,
.stat-card strong {
  color: var(--text-primary);
}

.mock-topbar,
.panel-topbar,
.tab-mock-header,
.chat-header,
.widget-head,
.mock-chat-header,
.feat-mock-chat-header,
.feat-mock-inbox-header,
.intg-code-header,
.vf1-site-bar,
.board-header {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(240, 245, 252, 0.96));
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.mock-url {
  background: rgba(37, 99, 235, 0.06);
  color: #5d6f8b;
}

.mock-site,
.site-mock,
.frame-browser-body,
.mock-stage {
  background:
    radial-gradient(circle at top right, rgba(191, 219, 254, 0.5), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.mock-site-bg {
  background:
    radial-gradient(circle at 80% 10%, rgba(96, 165, 250, 0.16), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.mock-site h2,
.mock-site p,
.mock-site-badge,
.mock-prop-val,
.mock-chat-name,
.chat-name,
.feat-mock-chat-title,
.board-title,
.feat-mock-inbox-name,
.feat-page-block-title,
.feat-page-block-desc,
.intg-card-name,
.intg-card-desc,
.intg-step-title,
.intg-step-desc,
.pricing-card h3,
.tour-card h3,
.security-card h3,
.industry-card h3 {
  color: var(--text-primary);
}

.mock-site p,
.mock-chat-status,
.feat-mock-chat-status,
.feat-mock-inbox-preview,
.feat-page-list li,
.industry-text p,
.pain-problem-desc,
.pain-event-desc,
.pain-time,
.pain-story-title,
.pain-event-time,
.test-title,
.quote,
.test-quote {
  color: var(--text-secondary);
}

.mock-site-badge,
.feat-page-block-tag,
.intg-card-badge,
.tab-feature::before,
.feature-list span::before,
.mini-list-item::before {
  background-color: rgba(37, 99, 235, 0.08);
}

.mock-site-btn,
.mock-send-btn,
.chat-send-btn,
.chat-send,
.feat-mock-tag,
.inbox-unread-dot,
.roi-bar-fill.after,
.am-bar,
.vf6-bar.leads,
.price-row + .feature-list span::before {
  background: linear-gradient(180deg, #2f6df6 0%, #2563eb 100%);
}

.mock-prop,
.industry-scenario,
.stack-card,
.mini-panel,
.mail-item,
.detail-item,
.operator-step,
.faq-item,
.feature-card,
.integration-card,
.security-card,
.tour-card,
.industry-card,
.intg-card,
.contact-panel,
.pricing-card,
.testimonial,
.roi-num-card,
.am-stat,
.am-chart,
.inbox-item,
.tab-mock,
.tab-panel-content > div > div,
.chat-contact-card {
  background: rgba(248, 250, 252, 0.9);
  border-color: rgba(148, 163, 184, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.surface-card strong,
.pricing-card h3,
.faq-q,
.faq-trigger,
.section-head h2,
.feat-name,
.test-name,
.pain-problem-title,
.pain-event-title,
.pain-result-title,
.cta-panel .section-title {
  color: var(--text-primary);
}

.pain-story-top,
.pain-event,
.pain-result,
.sticky-steps::before,
.step-progress-wrap,
.compare-table th,
.compare-table td,
.faq-item,
.mail-item,
.detail-item,
.operator-step {
  border-color: rgba(148, 163, 184, 0.16);
}

.pain-event-avatar,
.story-icon.neutral,
.mock-avatar,
.chat-av,
.chat-msg-av,
.feat-mock-av,
.inbox-av,
.vf2-av,
.vf4-avatar,
.test-av,
.avatar {
  background: linear-gradient(135deg, #2f6df6 0%, #7dd3fc 100%);
  color: #fff;
}

.msg.ai .msg-bubble,
.bubble.ai,
.feat-mock-msg.ai,
.chat-msg:not(.user) .chat-msg-bubble,
.chat-typing-dots,
.vf2-msg:not(.user) .vf2-bubble {
  background: #f7faff;
  border-color: rgba(148, 163, 184, 0.18);
  color: var(--text-primary);
}

.msg.user .msg-bubble,
.bubble.user,
.feat-mock-msg.user,
.chat-msg.user .chat-msg-bubble,
.vf2-msg.user .vf2-bubble {
  background: linear-gradient(180deg, #2f6df6 0%, #2563eb 100%);
  color: #fff;
}

.mock-input-field,
.chat-input-mock,
.chat-input span,
.field input,
.field textarea,
.field select,
.mock-chat-input,
.pricing-switch,
.industry-tabs,
.tab-nav {
  background: rgba(248, 250, 252, 0.9);
  border-color: rgba(148, 163, 184, 0.18);
}

.field input,
.field textarea,
.field select {
  background: rgba(255, 255, 255, 0.96);
  color: var(--text-primary);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8b9ab0;
}

.pricing-switch button.active,
.tab-btn.active,
.industry-tab.active,
.ind-tab.active {
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent-strong);
  border-color: rgba(37, 99, 235, 0.14);
  box-shadow: none;
}

.pricing-card.popular {
  border-color: rgba(37, 99, 235, 0.22);
  background:
    radial-gradient(circle at top right, rgba(191, 219, 254, 0.7), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.98));
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.12);
}

.price {
  font-size: 52px;
}

.compare-table th {
  background: rgba(239, 246, 255, 0.88);
}

.yes,
.am-stat-trend,
.vf6-metric-trend,
.feat-mock-metric-trend,
.metric-note,
.mini-stat-note {
  color: var(--green);
}

.intg-code-block {
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.intg-code-label,
.intg-code-pre,
.intg-code-comment,
.intg-code-var,
.intg-code-key,
.intg-code-tag,
.intg-code-str {
  color: inherit;
}

.intg-code-pre {
  color: #28415f;
}

.intg-code-comment { color: #7a89a1; }
.intg-code-tag { color: #1d4ed8; }
.intg-code-var { color: #7c3aed; }
.intg-code-key { color: #0f766e; }
.intg-code-str { color: #b45309; }

.faq-item:hover,
.testimonial:hover,
.feature-card:hover,
.integration-card:hover,
.security-card:hover,
.tour-card:hover,
.pricing-card:hover,
.intg-card:hover {
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.1);
  transform: translateY(-4px);
}

.cta-panel {
  background:
    radial-gradient(circle at top right, rgba(191, 219, 254, 0.75), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.96));
}

.cta-section {
  padding-bottom: 130px;
}

.cta-section p,
.cta-note {
  color: var(--text-secondary);
}

footer {
  padding-top: 56px;
}

.footer-inner,
.footer-bottom {
  padding-left: 32px;
  padding-right: 32px;
}

.footer-bottom {
  border-top-color: rgba(148, 163, 184, 0.14);
}

.footer-col-title,
.footer-col strong {
  color: #44556e;
}

.footer-col-links a:hover,
.footer-col a:hover {
  color: var(--accent-strong);
}

.mobile-panel {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.menu-toggle {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(148, 163, 184, 0.18);
}

@media (max-width: 1100px) {
  .hero,
  .page-hero {
    padding-top: 136px;
  }

  .hero-visual {
    margin-top: 54px;
  }

  .pricing-grid,
  .industry-pane.active,
  .page-hero-grid,
  .roi-grid,
  .sticky-layout,
  .feat-page-block-body,
  .intg-how {
    gap: 26px;
  }
}

@media (max-width: 860px) {
  .hero,
  .page-hero {
    padding-top: 124px;
  }

  .hero h1,
  .page-title,
  .feat-page-h1,
  .section-heading,
  .section-title {
    letter-spacing: -0.05em;
  }

  .hero-visual-inner,
  .mock-shell,
  .tab-panel,
  .pain-story,
  .cta-panel {
    border-radius: 22px;
  }

  .footer-inner,
  .footer-bottom {
    padding-left: 20px;
    padding-right: 20px;
  }
}
