/* ============================================================
   WIZE AI — Design System
   Light, premium, Apple x Stripe x OpenAI x ElevenLabs x Linear
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,500&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --bg: #FFFFFF;
  --bg-2: #F8FAFC;
  --card: #FFFFFF;
  --border: #E5E7EB;
  --primary: #4F46E5;
  --primary-dark: #4338CA;
  --primary-light: #EEF2FF;
  --accent: #06B6D4;
  --accent-light: #ECFEFF;
  --success: #10B981;
  --text: #111827;
  --text-2: #6B7280;
  --text-3: #9CA3AF;

  --grad-primary: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
  --grad-soft: linear-gradient(135deg, #EEF2FF 0%, #ECFEFF 100%);
  --grad-mesh: radial-gradient(circle at 15% 20%, rgba(79, 70, 229, .10), transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(6, 182, 212, .12), transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(16, 185, 129, .08), transparent 45%);

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --shadow-sm: 0 2px 8px rgba(17, 24, 39, .05);
  --shadow: 0 12px 32px -8px rgba(17, 24, 39, .10);
  --shadow-lg: 0 24px 60px -12px rgba(17, 24, 39, .16);
  --shadow-glow: 0 8px 40px -4px rgba(79, 70, 229, .28);

  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea {
  font-family: inherit;
}

ul {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid #E0E1FB;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.6);
    opacity: .5;
  }
}

h1,
h2,
h3,
h4 {
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text);
  line-height: 1.08;
}

.section-title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.12;
}

.section-sub {
  font-size: 17px;
  color: var(--text-2);
  font-weight: 500;
  max-width: 560px;
  line-height: 1.6;
}

.section-head {
  margin-bottom: 56px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head.center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

section {
  position: relative;
  padding: 120px 0;
}

section.tight {
  padding: 96px 0;
}

.bg-soft {
  background: var(--bg-2);
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -.01em;
  transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease), background .3s ease;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 46px -6px rgba(79, 70, 229, .42);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: var(--primary);
}

.btn-ghost {
  background: var(--bg-2);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: #fff;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-lg {
  padding: 19px 38px;
  font-size: 16px;
}

.btn-sm {
  padding: 11px 20px;
  font-size: 13.5px;
}

.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  transform: scale(0);
  animation: rippleAnim .6s var(--ease) forwards;
  pointer-events: none;
  z-index: -1;
}

.btn-secondary .ripple,
.btn-ghost .ripple {
  background: rgba(79, 70, 229, .15);
}

@keyframes rippleAnim {
  to {
    transform: scale(3);
    opacity: 0;
  }
}

.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 20px 0;
  transition: all .4s var(--ease);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  padding: 10px 10px 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all .4s var(--ease);
}

.navbar.scrolled {
  padding: 12px 0;
}

.navbar.scrolled .container {
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px -4px rgba(79, 70, 229, .5);
  flex-shrink: 0;
}

.brand-mark svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-2);
  transition: all .25s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--bg-2);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
}

/* ---------- Hero ---------- */
.hero {
  padding: 170px 0 120px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-mesh);
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
  z-index: 0;
  animation: blobFloat 14s ease-in-out infinite;
}

.blob-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #C7D2FE, transparent 70%);
  top: -120px;
  right: -100px;
}

.blob-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, #A5F3FC, transparent 70%);
  bottom: -140px;
  left: -100px;
  animation-delay: -6s;
}

.blob-3 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, #D1FAE5, transparent 70%);
  top: 40%;
  left: 35%;
  animation-delay: -3s;
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -30px) scale(1.08);
  }

  66% {
    transform: translate(-25px, 20px) scale(.95);
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(38px, 4.6vw, 60px);
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  font-weight: 500;
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  margin-left: -10px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.hero-proof-text {
  font-size: 13.5px;
  color: var(--text-2);
  font-weight: 600;
}

.hero-proof-text strong {
  color: var(--text);
}

/* Hero AI panel */
.ai-panel {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 26px;
  animation: panelFloat 6s ease-in-out infinite;
}

@keyframes panelFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-14px);
  }
}

.ai-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.ai-panel-id {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-orb {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 0 6px rgba(79, 70, 229, .10);
}

.ai-orb::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(79, 70, 229, .3);
  animation: orbPing 2.4s ease-out infinite;
}

@keyframes orbPing {
  0% {
    transform: scale(.9);
    opacity: .9;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.ai-orb svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.ai-panel-id .name {
  font-weight: 700;
  font-size: 14.5px;
}

.ai-panel-id .status {
  font-size: 12px;
  color: var(--success);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ai-panel-id .status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  animation: pulseDot 2s infinite;
}

.live-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid #CFF9FF;
  padding: 5px 10px;
  border-radius: 999px;
}

.waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 36px;
  margin: 16px 0;
}

.waveform span {
  width: 4px;
  border-radius: 3px;
  background: var(--grad-primary);
  animation: wave 1.1s ease-in-out infinite;
}

@keyframes wave {

  0%,
  100% {
    height: 8px;
  }

  50% {
    height: 32px;
  }
}

.chat-thread {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.bubble {
  max-width: 86%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
  animation: bubbleIn .5s var(--ease) backwards;
}

.bubble.user {
  align-self: flex-end;
  background: var(--grad-primary);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.bubble.ai {
  align-self: flex-start;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text);
  border-bottom-left-radius: 4px;
}

@keyframes bubbleIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.veh-mini-row {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.veh-mini {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: transform .3s var(--ease-spring), box-shadow .3s ease;
}

.veh-mini:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.veh-mini img {
  height: 64px;
  width: 100%;
  object-fit: cover;
}

.veh-mini .info {
  padding: 8px 10px;
}

.veh-mini .info .n {
  font-size: 11.5px;
  font-weight: 700;
}

.veh-mini .info .p {
  font-size: 11px;
  color: var(--primary);
  font-weight: 700;
}

.mic-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 8px 8px 18px;
}

.mic-row .txt {
  flex: 1;
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
}

.mic-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 0 0 rgba(79, 70, 229, .55);
  animation: micPulse 2.2s infinite;
  transition: transform .3s var(--ease-spring);
}

.mic-btn:hover {
  transform: scale(1.1);
}

.mic-btn svg {
  width: 18px;
  height: 18px;
}

@keyframes micPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(79, 70, 229, .45);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(79, 70, 229, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
  }
}

.float-chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  animation: chipFloat 5s ease-in-out infinite;
  z-index: 2;
}

.chip-a {
  top: -18px;
  left: -30px;
  animation-delay: 0s;
}

.chip-b {
  bottom: 10px;
  right: -34px;
  animation-delay: -2.4s;
}

.float-chip svg {
  width: 15px;
  height: 15px;
  color: var(--success);
}

@keyframes chipFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

/* ---------- Marquee (brands) ---------- */
.marquee-wrap {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 64px;
  animation: marquee 32s linear infinite;
}

.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.brand-logo {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -.02em;
  color: var(--text-3);
  filter: grayscale(1);
  opacity: .7;
  transition: all .35s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-logo:hover {
  color: var(--primary);
  opacity: 1;
  transform: translateY(-2px);
}

.brand-logo svg {
  width: 20px;
  height: 20px;
}

/* ---------- Brand cards (Brands Included) — scrolling marquee ---------- */
.brand-marquee-wrap {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.brand-marquee-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: marquee 38s linear infinite;
}

.brand-marquee-wrap:hover .brand-marquee-track {
  animation-play-state: paused;
}

.brand-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 30px;
  text-align: center;
  transition: all .35s var(--ease-spring);
  flex-shrink: 0;
  min-width: 180px;
  overflow: hidden;
}

.brand-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transition: transform .35s var(--ease);
}

.brand-card:hover::after {
  transform: scaleX(1);
}

.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  background: var(--grad-soft);
}

.bg-ico {
  width: 80px;
  height: 60px;
  margin: 0 auto 12px;
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform .35s var(--ease-spring);
}

.brand-card:hover .bg-ico {
  transform: scale(1.12) translateY(-3px);
  background: transparent;
  border: none;
  box-shadow: none;
}

.bg-ico svg {
  width: 36px;
  height: 36px;
}

.bg-ico img {
  width: 100%;
  height: 100%;
  max-width: 68px;
  max-height: 52px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.06));
  transition: transform .35s var(--ease-spring);
}

.brand-card .bn {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 4px;
  white-space: nowrap;
}

.brand-card .bt {
  font-size: 12px;
  color: var(--text-2);
  font-weight: 500;
  white-space: nowrap;
}

/* ---------- Proof-of-concept disclaimer — prominent banner ---------- */
.poc-banner {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  max-width: 720px;
  margin: 36px auto 0;
  background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
  border: 1.5px solid #FDE68A;
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  box-shadow: 0 8px 28px -10px rgba(217, 119, 6, .18);
}

.poc-ico {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 13px;
  background: #F59E0B;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px -4px rgba(217, 119, 6, .45);
}

.poc-ico svg {
  width: 22px;
  height: 22px;
}

.poc-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #B45309;
  margin-bottom: 6px;
}

.poc-text p {
  font-size: 14px;
  color: #78350F;
  font-weight: 500;
  line-height: 1.6;
}

.poc-text strong {
  color: #92400E;
  font-weight: 800;
}

@media (max-width:640px) {
  .poc-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Split image/text rows ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split.reverse .split-media {
  order: 2;
}

.split.reverse .split-text {
  order: 1;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.split-media .glow-blob {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  opacity: .6;
}

.split-media .glow-blob.a {
  background: #C7D2FE;
  top: -40px;
  left: -40px;
}

.split-media .glow-blob.b {
  background: #A7F3D0;
  bottom: -40px;
  right: -40px;
}

.split-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: 13px;
}

.split-badge svg {
  width: 18px;
  height: 18px;
  color: var(--success);
}

.flow-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--text-3);
  margin-bottom: 14px;
}

.flow-step b {
  color: var(--primary);
  font-size: 13px;
}

.flow-step .fs-line {
  width: 26px;
  height: 1px;
  background: var(--border);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-ico {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s var(--ease-spring);
}

.feature-item:hover .feature-ico {
  transform: scale(1.12) rotate(-6deg);
}

.feature-ico svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.feature-item h4 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 3px;
}

.feature-item p {
  font-size: 14px;
  color: var(--text-2);
}

/* ---------- How it works (vertical process) ---------- */
/* ---------- How it works — flowchart ---------- */
.flowchart {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.flow-node {
  flex: 1 1 190px;
  max-width: 210px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.flow-node:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.fn-ico {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 13px;
  background: var(--grad-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fn-ico svg {
  width: 20px;
  height: 20px;
}

.fn-num {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--text-3);
  margin-bottom: 8px;
}

.flow-node h3 {
  font-size: 15.5px;
  margin-bottom: 8px;
}

.flow-node p {
  font-size: 12.8px;
  color: var(--text-2);
  line-height: 1.55;
}

.flow-connector {
  flex: 0 0 46px;
  align-self: center;
  color: var(--border);
  height: 24px;
}

.flow-connector svg {
  width: 100%;
  height: 100%;
}

.flow-end {
  background: var(--grad-primary);
  border-color: transparent;
}

.flow-end .fn-ico {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.flow-end .fn-num {
  color: rgba(255, 255, 255, .7);
}

.flow-end h3,
.flow-end p {
  color: #fff;
}

.flow-end p {
  color: rgba(255, 255, 255, .82);
}

/* Central voice-assistant node */
.flow-ai {
  position: relative;
  flex: 1 1 220px;
  max-width: 240px;
  background: var(--text);
  border-color: transparent;
  overflow: visible;
  z-index: 1;
}

.flow-ai h3 {
  color: #fff;
  font-size: 15.5px;
}

.flow-ai p {
  color: rgba(255, 255, 255, .65);
}

.fai-orb {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(79, 70, 229, .14);
}

.fai-orb svg {
  width: 24px;
  height: 24px;
}

.fai-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  border-radius: 50%;
  border: 1.5px solid rgba(79, 70, 229, .35);
  animation: faiPing 2.6s ease-out infinite;
  z-index: 1;
}

.fai-ring.r2 {
  animation-delay: -1.3s;
}

@keyframes faiPing {
  0% {
    transform: scale(1);
    opacity: .7;
  }

  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

.fai-wave {
  justify-content: center;
  height: 22px;
  margin: 10px 0;
}

.fai-wave span {
  background: var(--accent);
  width: 2.5px;
}

@media (max-width:960px) {
  .flowchart {
    flex-direction: column;
    align-items: center;
  }

  .flow-node {
    max-width: 340px;
    width: 100%;
  }

  .flow-connector {
    width: 2px;
    height: 34px;
    transform: rotate(90deg);
    flex: 0 0 34px;
  }
}

/* ---------- Ask cards (glass) — horizontal 2-row scroll strip ---------- */
/* ---------- Things worth asking — staggered chat-bubble wall ---------- */
.ask-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 20px;
}

.ask-wall .ask-bubble:nth-child(2) {
  transform: translateY(26px);
}

.ask-wall .ask-bubble:nth-child(3) {
  transform: translateY(-14px);
}

.ask-wall .ask-bubble:nth-child(5) {
  transform: translateY(22px);
}

.ask-wall .ask-bubble:nth-child(6) {
  transform: translateY(-10px);
}

.ask-wall .ask-bubble.in-view:nth-child(2) {
  transform: translateY(26px);
}

.ask-wall .ask-bubble.in-view:nth-child(3) {
  transform: translateY(-14px);
}

.ask-wall .ask-bubble.in-view:nth-child(5) {
  transform: translateY(22px);
}

.ask-wall .ask-bubble.in-view:nth-child(6) {
  transform: translateY(-10px);
}

.ask-bubble {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  border-top-left-radius: 6px;
  padding: 22px 22px 18px;
  cursor: pointer;
  transition: box-shadow .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}

.ask-bubble:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  background: var(--text);
}

.ask-bubble:hover .ask-q {
  color: #fff;
}

.ask-bubble:hover .ask-icn {
  background: rgba(255, 255, 255, .15);
  color: #fff;
}

.ask-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.tag-finance .ask-tag {
  color: var(--accent);
  background: var(--accent-light);
}

.tag-compare .ask-tag {
  color: #7C3AED;
  background: #F3E8FF;
}

.tag-booking .ask-tag {
  color: var(--success);
  background: #ECFDF5;
}

.tag-tradein .ask-tag {
  color: #EA580C;
  background: #FFF7ED;
}

.ask-bubble:hover .ask-tag {
  background: rgba(255, 255, 255, .15);
  color: #fff;
}

.ask-q {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
  transition: color .35s ease;
  margin-bottom: 20px;
}

.ask-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ask-icn {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .35s ease;
}

.ask-icn svg {
  width: 15px;
  height: 15px;
}

.ask-try {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-3);
  opacity: 0;
  transform: translateX(-6px);
  transition: all .3s ease;
}

.ask-try svg {
  width: 12px;
  height: 12px;
}

.ask-bubble:hover .ask-try {
  opacity: 1;
  transform: translateX(0);
  color: #fff;
}

@media (max-width:860px) {
  .ask-wall {
    grid-template-columns: repeat(2, 1fr);
  }

  .ask-wall .ask-bubble {
    transform: none !important;
  }
}

@media (max-width:640px) {
  .ask-wall {
    grid-template-columns: 1fr;
  }
}

/* ---------- Bento grid ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 18px;
}

.bento-card {
  position: relative;
  grid-column: span 1;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all .4s var(--ease);
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: var(--grad-primary);
  opacity: 0;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: opacity .4s ease;
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.bento-card.big {
  grid-column: span 2;
}

.bento-ico {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
  transition: transform .4s var(--ease-spring);
}

.bento-card:hover .bento-ico {
  transform: scale(1.15) rotate(-8deg);
  background: var(--grad-primary);
  color: #fff;
}

.bento-ico svg {
  width: 21px;
  height: 21px;
}

.bento-card h4 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 6px;
}

.bento-card p {
  font-size: 12.8px;
  color: var(--text-2);
  line-height: 1.55;
}

/* image-backed bento card */
.bento-card.img-card {
  padding: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bento-card.img-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform .6s ease;
}

.bento-card.img-card:hover img {
  transform: scale(1.07);
}

.bento-card.img-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0) 25%, rgba(17, 24, 39, .82) 100%);
  z-index: 1;
}

.bento-card.img-card .bento-ico,
.bento-card.img-card h4,
.bento-card.img-card p {
  position: relative;
  z-index: 2;
}

.bento-card.img-card .bento-ico {
  background: rgba(255, 255, 255, .16);
  backdrop-filter: blur(6px);
  color: #fff;
  margin-bottom: 10px;
}

.bento-card.img-card h4 {
  color: #fff;
}

.bento-card.img-card p {
  color: rgba(255, 255, 255, .82);
}

.bento-card.img-card {
  padding: 26px;
}

/* square "Book a Demo" card */
.bento-card.book-demo {
  background: var(--grad-primary);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: none;
}

.bento-card.book-demo::before {
  display: none;
}

.bento-card.book-demo .bento-ico {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.bento-card.book-demo h4 {
  color: #fff;
}

.bento-card.book-demo p {
  color: rgba(255, 255, 255, .85);
  margin-bottom: 16px;
}

.bento-card.book-demo .bd-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  background: #fff;
  color: var(--primary);
  padding: 10px 16px;
  border-radius: 999px;
  align-self: flex-start;
  transition: all .3s var(--ease-spring);
}

.bento-card.book-demo .bd-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px -6px rgba(0, 0, 0, .35);
}

.bento-card.book-demo .bd-cta svg {
  width: 14px;
  height: 14px;
}

/* ---------- Timeline ---------- */
/* ---------- Walkthrough guidelines — guided roadmap ---------- */
.guide-path {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.guide-path::before {
  content: '';
  position: absolute;
  left: 29px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: repeating-linear-gradient(var(--border) 0 8px, transparent 8px 15px);
}

.guide-step {
  position: relative;
  display: flex;
  gap: 24px;
  padding-bottom: 36px;
}

.guide-step:last-child {
  padding-bottom: 0;
}

.gs-node {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  transition: all .4s var(--ease);
}

.gs-node svg {
  width: 22px;
  height: 22px;
}

.guide-step.in-view .gs-node {
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

.gs-final.in-view,
.guide-step.in-view .gs-final {
  background: var(--success);
}

.gs-card {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: all .4s var(--ease);
}

.guide-step:hover .gs-card {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.gs-step {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
  display: block;
}

.gs-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.gs-card p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width:640px) {
  .guide-path::before {
    left: 24px;
  }

  .gs-node {
    width: 48px;
    height: 48px;
  }

  .gs-node svg {
    width: 18px;
    height: 18px;
  }

  .guide-step {
    gap: 18px;
  }
}

/* ---------- Why dealerships love Wize Auto — feature grid ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: all .4s var(--ease);
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.why-ico {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--grad-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform .4s var(--ease-spring), background .4s ease, color .4s ease;
}

.why-card:hover .why-ico {
  transform: scale(1.12) rotate(-8deg);
  background: var(--grad-primary);
  color: #fff;
}

.why-ico svg {
  width: 20px;
  height: 20px;
}

.why-card h4 {
  font-size: 15.5px;
  font-weight: 800;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
  font-weight: 500;
}

.why-big {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--text);
  border-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
}

.why-big .why-ico {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  width: 52px;
  height: 52px;
}

.why-big:hover .why-ico {
  background: var(--grad-primary);
}

.why-big h4 {
  color: #fff;
  font-size: 21px;
}

.why-big p {
  color: rgba(255, 255, 255, .68);
  font-size: 14.5px;
  max-width: 320px;
}

.why-accent {
  background: var(--grad-primary);
  border-color: transparent;
}

.why-accent .why-ico {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.why-accent:hover .why-ico {
  background: rgba(255, 255, 255, .28);
}

.why-accent h4,
.why-accent p {
  color: #fff;
}

.why-accent p {
  color: rgba(255, 255, 255, .82);
}

@media (max-width:960px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-big {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width:640px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-big {
    grid-column: span 1;
  }
}

/* ---------- Chat showcase ---------- */
.chat-showcase {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.chat-showcase-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}

.chat-showcase-body {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 380px;
}

.typing-dots {
  display: inline-flex;
  gap: 4px;
  padding: 12px 16px;
}

.typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-3);
  animation: typingDot 1.3s infinite;
}

.typing-dots span:nth-child(2) {
  animation-delay: .18s;
}

.typing-dots span:nth-child(3) {
  animation-delay: .36s;
}

@keyframes typingDot {

  0%,
  60%,
  100% {
    opacity: .3;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

.showcase-veh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 4px;
}

.showcase-veh {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.showcase-veh img {
  height: 56px;
  width: 100%;
  object-fit: cover;
}

.showcase-veh .sv-info {
  padding: 7px 9px;
}

.showcase-veh .sv-info .n {
  font-size: 10.5px;
  font-weight: 700;
}

.showcase-veh .sv-info .p {
  font-size: 10px;
  color: var(--primary);
  font-weight: 700;
}

/* ---------- Integrations ---------- */
.integ-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}

.integ-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 22px 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all .35s var(--ease-spring);
}

.integ-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
  background: var(--grad-soft);
}

.integ-ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform .35s var(--ease-spring);
}

.integ-card:hover .integ-ico {
  transform: rotate(-8deg) scale(1.1);
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent;
}

.integ-ico svg {
  width: 16px;
  height: 16px;
}

.integ-card span {
  font-size: 13.5px;
  font-weight: 700;
}

/* DMS section — left text, right 3-column vertical scroll */
.dms-split {
  position: relative;
  margin-top: 56px;
  background: linear-gradient(135deg, #111827 0%, #1E1B4B 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
}

.dms-split-text .eyebrow {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .15);
  color: #A5B4FC;
}

.dms-split-text h3 {
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.2;
}

.dms-split-text p {
  color: rgba(255, 255, 255, .62);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.65;
  max-width: 420px;
}

.dms-stat-row {
  display: flex;
  gap: 32px;
  margin-top: 26px;
}

.dms-stat-row strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
}

.dms-stat-row span {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  font-weight: 600;
}

.dms-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  height: 320px;
}

.dms-col-mask {
  overflow: hidden;
  border-radius: 16px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
}

.dms-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dms-col-down {
  animation: dmsScrollDown 16s linear infinite;
}

.dms-col-up {
  animation: dmsScrollUp 16s linear infinite;
}

.dms-col-slow {
  animation-duration: 22s;
}

@keyframes dmsScrollDown {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes dmsScrollUp {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

.dms-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  padding: 16px 10px;
  white-space: nowrap;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -.01em;
  color: rgba(255, 255, 255, .6);
  transition: color .3s ease, background .3s ease;
}

.dms-logo:hover {
  color: #fff;
  background: rgba(255, 255, 255, .1);
}

.dms-logo svg {
  width: 16px;
  height: 16px;
  color: #818CF8;
  flex-shrink: 0;
}

@media (max-width:960px) {
  .dms-split {
    grid-template-columns: 1fr;
  }

  .dms-split-text p {
    max-width: none;
  }

  .dms-cols {
    height: 260px;
  }
}

@media (max-width:640px) {
  .dms-split {
    padding: 32px 22px;
  }

  .dms-cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .dms-col-mask:last-child {
    display: none;
  }
}

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .35s var(--ease);
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: #F59E0B;
}

.testi-stars svg {
  width: 16px;
  height: 16px;
  fill: #F59E0B;
}

.testi-quote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 24px;
  font-weight: 500;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-person img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-person .tn {
  font-weight: 700;
  font-size: 14.5px;
}

.testi-person .tr {
  font-size: 12.5px;
  color: var(--text-2);
}

/* ---------- FAQ Accordion ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease;
}

.faq-item.open {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  font-weight: 700;
  font-size: 15.5px;
}

.faq-q .plus {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s var(--ease-spring), background .3s ease;
}

.faq-item.open .plus {
  transform: rotate(135deg);
  background: var(--grad-primary);
  color: #fff;
}

.faq-q .plus svg {
  width: 14px;
  height: 14px;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}

.faq-a-inner {
  padding: 0 26px 22px;
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  background: var(--bg-2);
  border-radius: var(--radius-xl);
  margin: 0 32px;
  padding: 100px 40px;
  text-align: center;
  overflow: hidden;
}

.final-cta .circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(79, 70, 229, .15);
  animation: blobFloat 10s ease-in-out infinite;
}

.final-cta .c1 {
  width: 340px;
  height: 340px;
  top: -120px;
  left: -80px;
}

.final-cta .c2 {
  width: 220px;
  height: 220px;
  bottom: -100px;
  right: -40px;
  animation-delay: -4s;
}

.final-cta h2 {
  font-size: clamp(30px, 4.4vw, 48px);
  margin-bottom: 20px;
}

.final-cta p {
  color: var(--text-2);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 40px;
  font-weight: 500;
}

/* ---------- Footer ---------- */
footer {
  padding: 72px 0 32px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 56px;
}

.footer-brand p {
  color: var(--text-2);
  font-size: 14px;
  margin-top: 16px;
  max-width: 260px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: all .3s ease;
}

.footer-social a:hover {
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-col h5 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-3);
  margin-bottom: 18px;
  font-weight: 700;
}

.footer-col a {
  display: block;
  color: var(--text-2);
  font-size: 14.5px;
  font-weight: 500;
  margin-bottom: 13px;
  transition: color .25s ease;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-3);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(.94);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal-scale.in-view {
  opacity: 1;
  transform: scale(1);
}

.stagger .reveal:nth-child(1) {
  transition-delay: 0s;
}

.stagger .reveal:nth-child(2) {
  transition-delay: .1s;
}

.stagger .reveal:nth-child(3) {
  transition-delay: .2s;
}

.stagger .reveal:nth-child(4) {
  transition-delay: .3s;
}

.stagger .reveal:nth-child(5) {
  transition-delay: .4s;
}

/* Floating decorative icon */
.float-ico {
  animation: floatY 4s ease-in-out infinite;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

/* counter */
.stat {
  text-align: center;
}

.stat .num {
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat .lbl {
  font-size: 13.5px;
  color: var(--text-2);
  font-weight: 600;
  margin-top: 6px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ---------- Sticky "Try Live Demo" tab ---------- */
.sticky-demo-tab {
  position: fixed;
  right: 0;
  top: 60%;
  transform: translateY(-50%);
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--grad-primary);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  padding: 14px 20px 14px 18px;
  border-radius: 14px 0 0 14px;
  box-shadow: -8px 8px 30px -8px rgba(79, 70, 229, .45);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transition: padding .35s var(--ease-spring), transform .35s var(--ease-spring), box-shadow .35s ease;
}

.sticky-demo-tab svg {
  width: 16px;
  height: 16px;
  transform: rotate(90deg);
  flex-shrink: 0;
}

.sticky-demo-tab:hover {
  padding-right: 26px;
  transform: translateY(-50%) translateX(-4px);
  box-shadow: -10px 10px 36px -6px rgba(79, 70, 229, .55);
}

/* ============ Responsive ============ */
@media (max-width:1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .ai-panel {
    max-width: 520px;
    margin: 0 auto;
  }

  .bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-card.big {
    grid-column: span 2;
  }
}

@media (max-width:860px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split.reverse .split-media {
    order: 1;
  }

  .split.reverse .split-text {
    order: 2;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:640px) {
  .container {
    padding: 0 20px;
  }

  section {
    padding: 80px 0;
  }

  .hero {
    padding: 140px 0 80px;
  }

  .bento {
    grid-template-columns: 1fr;
  }

  .bento-card.big {
    grid-column: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .final-cta {
    margin: 0 16px;
    padding: 60px 24px;
  }

  .veh-mini-row {
    flex-wrap: wrap;
  }

  .sticky-demo-tab {
    display: none;
  }
}