/* ==========================================================================
   AutoPilot CRM — Landing Page
   Dark "premium night" surface. Tokens lifted verbatim from the AutoPilot
   design system (colors_and_type.css). Marketing display sizes are an
   intentional extension on top of the app type scale.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@600;700;800&family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* ---- AutoPilot dark tokens (verbatim) ---- */
  --background: 225 15% 8%;
  --foreground: 210 20% 95%;
  --card: 225 15% 12%;
  --card-foreground: 210 20% 95%;
  --primary: 230 100% 60%;
  --primary-foreground: 0 0% 100%;
  --secondary: 225 15% 16%;
  --secondary-foreground: 210 15% 85%;
  --muted: 225 12% 18%;
  --muted-foreground: 220 10% 55%;
  --accent: 225 50% 18%;
  --accent-foreground: 225 80% 75%;
  --border: 225 15% 20%;
  --success: 142 60% 45%;
  --warning: 38 92% 55%;
  --info: 210 80% 58%;
  --destructive: 0 72% 51%;

  /* ---- Surfaces specific to the landing ---- */
  --bg-deep: 225 18% 6%;
  --bg-raise: 225 15% 11%;

  /* ---- Theme-reactive knobs (overridden in light) ---- */
  --glow-strong: 0.16;
  --glow-soft: 0.08;
  --grid-opacity: 0.5;
  --shadow-lift-themed: 0 8px 32px rgba(0, 40, 120, 0.18), 0 2px 8px rgba(0, 0, 0, 0.3);
  --primary-hover: 230 100% 64%;
  --surface-tint: 0 0% 100%;

  /* ---- Radii / shadows / motion (verbatim) ---- */
  --radius: 0.75rem;
  --radius-sm: 0.5rem;
  --radius-md: 0.625rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
  --radius-pill: 9999px;
  --shadow-card: 0 4px 24px rgba(0, 40, 120, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2);
  --shadow-lift: 0 8px 32px rgba(0, 40, 120, 0.18), 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-glow-primary: 0 2px 12px hsl(var(--primary) / 0.35);
  --motion-fast: 150ms;
  --motion-base: 200ms;
  --motion-slow: 300ms;
  --motion-ease: cubic-bezier(0.16, 1, 0.3, 1);

  --font-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: 'Archivo', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --tracking-tight: -0.02em;
  --tracking-wide: 0.12em;

  /* ---- Marketing display scale (extension) ---- */
  --fs-body: 16px;
  --fs-lead: 17px;
  --fs-h3: clamp(20px, 2.6vw, 24px);
  --fs-h2: clamp(26px, 3.6vw, 40px);
  --fs-display: clamp(34px, 5.5vw, 56px);

  --maxw: 1180px;
  --gutter: 18px;
}

/* ==========================================================================
   LIGHT THEME
   ========================================================================== */
:root[data-theme="light"] {
  --background: 210 20% 98%;
  --foreground: 220 20% 10%;
  --card: 0 0% 100%;
  --card-foreground: 220 20% 10%;
  --primary: 230 100% 50%;
  --primary-foreground: 0 0% 100%;
  --secondary: 210 15% 93%;
  --secondary-foreground: 220 20% 20%;
  --muted: 210 15% 95%;
  --muted-foreground: 220 10% 50%;
  --accent: 225 80% 95%;
  --accent-foreground: 230 100% 35%;
  --border: 214 20% 90%;
  --success: 142 60% 40%;
  --warning: 38 92% 50%;
  --info: 210 80% 52%;
  --destructive: 0 72% 51%;

  --bg-deep: 210 30% 96%;
  --bg-raise: 0 0% 100%;

  --glow-strong: 0.10;
  --glow-soft: 0.05;
  --grid-opacity: 0.6;
  --shadow-lift-themed: 0 12px 40px rgba(0, 40, 120, 0.10), 0 2px 8px rgba(0, 40, 120, 0.06);
  --primary-hover: 230 100% 45%;
  --surface-tint: 220 35% 30%;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }
section[id],
main[id] { scroll-margin-top: 90px; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-feature-settings: 'cv11', 'ss01';
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  font-size: var(--fs-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::selection { background: hsl(var(--primary) / 0.3); }

/* ---- Background texture: fine grid + radial brand glow ---- */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 600px at 50% -8%, hsl(230 100% 55% / var(--glow-strong)), transparent 60%),
    radial-gradient(700px 500px at 100% 12%, hsl(225 80% 45% / var(--glow-soft)), transparent 55%);
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.section { padding-block: 58px; position: relative; }
.section-tight { padding-block: 42px; }

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: hsl(var(--muted-foreground));
  display: inline-block;
}

h1, h2, h3 { margin: 0; letter-spacing: var(--tracking-tight); line-height: 1.08; font-weight: 600; }
.display {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.04;
  text-wrap: balance;
}
.h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.1;
  text-wrap: balance;
}
.h3 { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 700; }
.lead { font-size: var(--fs-lead); color: hsl(var(--foreground) / 0.7); line-height: 1.5; text-wrap: pretty; }
.muted { color: hsl(var(--muted-foreground)); }
.tabular { font-variant-numeric: tabular-nums; }

.section-head { max-width: 760px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .h2 { margin-top: 18px; }
.section-head .lead { margin-top: 20px; }

.accent-text { color: hsl(var(--primary)); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  min-height: 46px;
  padding: 14px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--motion-fast) var(--motion-ease),
              background var(--motion-fast) ease,
              box-shadow var(--motion-base) ease,
              border-color var(--motion-fast) ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 2px 16px hsl(var(--primary) / 0.4), inset 0 1px 0 hsl(0 0% 100% / 0.2);
}
.btn-primary:hover { background: hsl(var(--primary-hover)); box-shadow: 0 4px 28px hsl(var(--primary) / 0.55), inset 0 1px 0 hsl(0 0% 100% / 0.25); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0) scale(0.985); }
.btn-ghost {
  background: hsl(var(--foreground) / 0.04);
  color: hsl(var(--foreground));
  border-color: hsl(var(--border));
}
.btn-ghost:hover { background: hsl(var(--foreground) / 0.08); border-color: hsl(var(--foreground) / 0.25); }
.btn-lg { min-height: 52px; padding: 16px 22px; font-size: 15.5px; }

/* ==========================================================================
   Top nav
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--motion-base) ease, border-color var(--motion-base) ease, backdrop-filter var(--motion-base);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: hsl(var(--background) / 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: hsl(var(--border) / 0.7);
}
.nav-inner {
  height: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }
.brand img { width: 32px; height: 32px; }
.brand span { display: none; }
.brand span b { color: hsl(var(--primary)); font-weight: 700; }
.nav-links {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 95;
  width: min(86vw, 360px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  margin: 0;
  padding: 88px 22px 28px;
  background: hsl(var(--bg-raise));
  border-left: 1px solid hsl(var(--border));
  box-shadow: -20px 0 60px rgba(0,0,0,0.3);
  transform: translateX(100%);
  transition: transform var(--motion-slow) var(--motion-ease);
  overflow-y: auto;
}
body.menu-open .nav-links { transform: translateX(0); }
.nav-links a {
  font-size: 17px;
  font-weight: 600;
  color: hsl(var(--foreground) / 0.82);
  padding: 15px 14px;
  border-radius: var(--radius);
  transition: color var(--motion-fast), background var(--motion-fast);
}
.nav-links a:hover { color: hsl(var(--foreground)); background: hsl(var(--foreground) / 0.05); }
.nav-links a:active { background: hsl(var(--foreground) / 0.06); }
.nav-mobile-only { display: none; }
.nav-menu-cta { display: none; }
.nav-scrim {
  position: fixed; inset: 0; z-index: 90;
  background: hsl(var(--background) / 0.6);
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
  opacity: 0; transition: opacity var(--motion-base) ease;
  pointer-events: none;
}
body.menu-open .nav-scrim { opacity: 1; pointer-events: auto; }

.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.nav-cta .btn { min-height: 40px; padding: 10px 13px; font-size: 14px; }
.nav-cta .btn.cta-secondary { display: none; }
.nav-cta .btn.cta-desktop { display: none; }
.nav-toggle { display: inline-flex; }

.nav-journey {
  position: relative;
  display: none;
}
.nav-journey-toggle svg {
  width: 17px;
  height: 17px;
  transition: transform var(--motion-base) var(--motion-ease);
}
.nav-journey.open .nav-journey-toggle {
  color: hsl(var(--foreground));
  border-color: hsl(var(--primary) / 0.42);
  background: hsl(var(--primary) / 0.12);
  box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.08);
}
.nav-journey.open .nav-journey-toggle svg { transform: translateY(1px); }
.nav-journey-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 140;
  width: min(360px, calc(100vw - 36px));
  max-height: 0;
  padding: 0 12px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  background: hsl(var(--bg-raise) / 0.96);
  border: 1px solid transparent;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.34), 0 1px 0 hsl(0 0% 100% / 0.06) inset;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    max-height var(--motion-slow) var(--motion-ease),
    padding var(--motion-slow) var(--motion-ease),
    opacity var(--motion-base) ease,
    transform var(--motion-base) var(--motion-ease),
    border-color var(--motion-base) ease,
    visibility var(--motion-base);
}
.nav-journey.open .nav-journey-panel {
  max-height: 620px;
  padding: 12px;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  border-color: hsl(var(--border));
}
.nav-journey-title {
  margin: 2px 4px 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
}
.nav-journey-list {
  display: grid;
  gap: 4px;
}
.nav-step {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: hsl(var(--foreground) / 0.82);
  transition: color var(--motion-fast), background var(--motion-fast), transform var(--motion-fast);
}
.nav-step:hover {
  color: hsl(var(--foreground));
  background: hsl(var(--foreground) / 0.06);
  transform: translateX(2px);
}
.nav-step strong {
  font-size: 14px;
  font-weight: 600;
}
.nav-journey-demo {
  width: 100%;
  margin-top: 10px;
}

/* Theme switcher */
.theme-btn {
  width: 40px; height: 40px; padding: 0; flex-shrink: 0;
  display: none; place-items: center;
  border-radius: var(--radius-sm);
  background: hsl(var(--foreground) / 0.04);
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground) / 0.78);
  cursor: pointer;
  transition: background var(--motion-fast) ease, color var(--motion-fast) ease, border-color var(--motion-fast) ease;
}
.theme-btn:hover { background: hsl(var(--foreground) / 0.08); color: hsl(var(--foreground)); border-color: hsl(var(--foreground) / 0.2); }
.theme-btn:active { transform: scale(0.94); }
.theme-btn svg { width: 18px; height: 18px; }
.theme-btn .icon-moon { display: none; }
.theme-btn .icon-sun { display: block; }
:root[data-theme="light"] .theme-btn .icon-moon { display: block; }
:root[data-theme="light"] .theme-btn .icon-sun { display: none; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { padding-top: 112px; text-align: center; }
.hero .display { margin-inline: auto; max-width: 11ch; }
.hero-sub { margin: 24px auto 0; max-width: 620px; }
.hero-actions { margin-top: 30px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-actions .btn { width: 100%; white-space: normal; }
.hero-note { margin-top: 18px; font-size: 13.5px; color: hsl(var(--muted-foreground)); }

.store-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.store-badges img {
  display: block;
  height: 38px;
  width: auto;
  max-width: 46%;
  object-fit: contain;
}

/* ==========================================================================
   Mockup window frame
   ========================================================================== */
.mock {
  border-radius: var(--radius-xl);
  background: hsl(var(--card) / 0.7);
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-lift-themed);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
}
.mock-bar {
  display: flex; align-items: center; gap: 8px;
  height: 36px; padding-inline: 12px;
  border-bottom: 1px solid hsl(var(--border) / 0.8);
  background: hsl(var(--foreground) / 0.02);
}
.mock-dots { display: flex; gap: 7px; }
.mock-dots i { width: 9px; height: 9px; border-radius: 999px; background: hsl(var(--foreground) / 0.16); display: block; }
.mock-url {
  min-width: 0;
  margin-left: 8px; font-family: var(--font-mono); font-size: 10.5px;
  color: hsl(var(--muted-foreground)); display: flex; align-items: center; gap: 7px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mock-screen {
  position: relative;
  display: grid;
  place-items: center;
  background:
    radial-gradient(600px 300px at 50% 0%, hsl(var(--primary) / 0.06), transparent 70%),
    repeating-linear-gradient(135deg, hsl(var(--foreground) / 0.015) 0 14px, transparent 14px 28px);
}
.mock-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  background: hsl(var(--background));
}
.mock-screen > .mock-image,
.mock-screen > .mock-iframe,
.mock-screen > .video-poster-overlay {
  grid-area: 1 / 1;
  min-width: 0;
  min-height: 0;
}
.video-poster-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: hsl(var(--background));
  opacity: 1;
  pointer-events: none;
  transition: opacity var(--motion-base) var(--motion-ease);
}
.video-poster-overlay.is-hidden { opacity: 0; }
.mock-iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  background: hsl(var(--background));
}
.showcase-desktop-only { display: none; }
.showcase-mobile-only { display: block; }
.mock-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  color: hsl(var(--muted-foreground)); text-align: center; padding: 32px;
}
.mock-placeholder .ph-icon {
  width: 56px; height: 56px; border-radius: var(--radius);
  display: grid; place-items: center;
  background: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.25);
  color: hsl(var(--primary));
}
.mock-placeholder .ph-icon svg { width: 26px; height: 26px; }
.mock-placeholder .ph-label { font-weight: 600; font-size: 15px; color: hsl(var(--foreground) / 0.8); }
.mock-placeholder .ph-sub { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.04em; text-transform: uppercase; color: hsl(var(--muted-foreground)); }

.hero-mock-wrap {
  margin-top: 40px;
  position: relative;
  margin-inline: calc(var(--gutter) * -0.5);
}
.hero-mock-wrap .mock { aspect-ratio: 4 / 3.35; }
.hero-mock-wrap .mock-screen { position: absolute; inset: 36px 0 0 0; }
.hero-mock-wrap::after {
  content: "";
  position: absolute; left: 50%; bottom: -28px; transform: translateX(-50%);
  width: 72%; height: 82px;
  background: radial-gradient(50% 100% at 50% 0%, hsl(var(--primary) / 0.35), transparent 70%);
  filter: blur(40px); z-index: -1;
}
.solution-demo { margin-top: 40px; }

/* ==========================================================================
   Logo / integrations strip
   ========================================================================== */
.marquee-head { text-align: center; color: hsl(var(--muted-foreground)); font-size: 14px; margin-bottom: 30px; font-weight: 500; }

/* Marquee infinito: duas trilhas idênticas; a segunda existe só para o loop. */
.marquee {
  position: relative;
  margin-inline: calc(var(--gutter) * -1);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeSlide 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group {
  flex: none;
  display: flex;
  align-items: center;
  gap: 52px;
  /* o padding entra na largura do grupo: translateX(-50%) cai exatamente na emenda */
  padding-right: 52px;
}
@keyframes marqueeSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.mq-logo {
  flex: none;
  display: inline-flex; align-items: center; gap: 9px;
  color: hsl(var(--foreground));
  font-size: 15px; font-weight: 500; white-space: nowrap;
  opacity: 0.55;
  transition: opacity var(--motion-base) ease;
}
.mq-logo:hover { opacity: 1; }
.mq-logo img.logo-img { width: 18px; height: 18px; display: inline-block; object-fit: contain; }
.mq-logo img.logo-wordmark { width: auto; height: 18px; max-width: 118px; }
.mq-logo img.logo-olx { height: 18px; max-width: 42px; }
.mq-logo img.logo-mobiauto { height: 18px; max-width: 128px; }
.mq-logo img.logo-icarros { height: 24px; max-width: 108px; }
.mq-logo img.logo-shopcar { height: 26px; max-width: 140px; }
/* Marcas monocromáticas: sem um mínimo de fundo elas somem em um dos temas. */
.mq-logo img.logo-shopcar {
  padding: 4px 8px;
  border-radius: 6px;
}
.mq-logo img.logo-shopcar { background: hsl(0 0% 100% / 0.92); }

@media (prefers-reduced-motion: reduce) {
  .marquee {
    padding-inline: var(--gutter);
    -webkit-mask-image: none;
    mask-image: none;
  }
  /* display:block é o que solta o grupo do flex-shrink:0 e deixa o wrap valer */
  .marquee-track { display: block; width: auto; animation: none; }
  .marquee-group[aria-hidden="true"] { display: none; }
  .marquee-group {
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px 40px;
    padding-right: 0;
  }
}

/* ==========================================================================
   Problem section
   ========================================================================== */
.problem-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
.problem-body p { color: hsl(var(--foreground) / 0.7); margin: 0 0 18px; max-width: 46ch; }
.problem-body p strong { color: hsl(var(--foreground)); font-weight: 600; }
.nobody-list { display: flex; flex-direction: column; gap: 12px; margin: 4px 0 0; }
.nobody-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 15px;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: hsl(var(--card) / 0.5);
}
.nobody-item .q { font-weight: 600; color: hsl(var(--foreground)); }
.nobody-item .a {
  margin-left: auto; font-size: 13.5px;
  color: hsl(var(--destructive)); display: inline-flex; align-items: center; gap: 6px;
  font-weight: 500;
}
.nobody-item .a svg { width: 14px; height: 14px; }

/* ==========================================================================
   Steps
   ========================================================================== */
.steps { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
.step {
  position: relative;
  padding: 22px;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-xl);
  background: hsl(var(--card) / 0.45);
  transition: transform var(--motion-base) var(--motion-ease), border-color var(--motion-base), box-shadow var(--motion-base);
}
.step:hover { transform: translateY(-3px); border-color: hsl(var(--primary) / 0.4); box-shadow: var(--shadow-lift-themed); }
.step-index {
  display: block;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: hsl(var(--primary) / 0.9);
  margin-bottom: 14px;
}
.step h3 { margin-bottom: 10px; font-size: 18px; }
.step p { margin: 0; color: hsl(var(--foreground) / 0.65); font-size: 15.5px; line-height: 1.55; }
.step .kicker { margin-top: 16px; font-size: 14px; color: hsl(var(--accent-foreground)); font-weight: 500; }

/* ==========================================================================
   Features
   ========================================================================== */
.feature-row {
  display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center;
  margin-top: 56px;
}
.feature-row:first-of-type { margin-top: 40px; }
.feature-row.flip .feature-copy { order: 0; }
.feature-copy .ftag {
  font-size: 13px; font-weight: 600; letter-spacing: 0.01em;
  color: hsl(var(--accent-foreground)); margin-bottom: 12px;
}
.feature-copy h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin-bottom: 14px; }
.feature-copy p { margin: 0; color: hsl(var(--foreground) / 0.68); font-size: var(--fs-lead); line-height: 1.5; }
.feature-copy .plan-badge,
.fm-panel .plan-badge {
  display: inline-flex; align-items: center; gap: 7px; margin-bottom: 16px;
  font-size: 12.5px; font-weight: 600;
  padding: 5px 12px; border-radius: var(--radius-pill);
  background: hsl(var(--warning) / 0.14); color: hsl(var(--warning)); border: 1px solid hsl(var(--warning) / 0.3);
}
.feature-copy .plan-badge svg,
.fm-panel .plan-badge svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}
.feature-mock .mock { aspect-ratio: 4 / 3.35; }
.feature-mock .mock-screen { position: absolute; inset: 36px 0 0 0; }
.feature-mock { position: relative; }

/* ==========================================================================
   Pricing
   ========================================================================== */
.plans { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 38px; align-items: start; }
.plan {
  position: relative;
  padding: 26px;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-2xl);
  background: hsl(var(--card) / 0.5);
}
.plan.featured {
  border-color: hsl(var(--primary) / 0.5);
  background: linear-gradient(180deg, hsl(var(--primary) / 0.08), hsl(var(--card) / 0.5) 38%);
  box-shadow: 0 0 0 1px hsl(var(--primary) / 0.2), var(--shadow-lift-themed);
}
.plan-flag {
  position: absolute; top: -13px; left: 34px;
  font-size: 12.5px; font-weight: 600;
  padding: 6px 14px; border-radius: var(--radius-pill);
  background: hsl(var(--primary)); color: #fff; box-shadow: var(--shadow-glow-primary);
  display: inline-flex; align-items: center;
}
.plan-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: -0.025em; }
.plan-for { color: hsl(var(--muted-foreground)); font-size: 14.5px; margin-top: 6px; min-height: 42px; }
.plan-price { margin-top: 22px; display: flex; align-items: flex-start; gap: 4px; flex-direction: column; }
.plan-price .amt { font-size: 34px; font-weight: 700; font-variant-numeric: tabular-nums; }
.plan-price .per { color: hsl(var(--muted-foreground)); font-size: 15px; }
.plan-price--from { gap: 6px; }
.plan-price-context {
  color: hsl(var(--foreground) / 0.72);
  font-size: 14px;
  line-height: 1.35;
}
.plan-impl {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--primary) / 0.22);
  background: hsl(var(--primary) / 0.08);
}
.plan-impl strong {
  display: block;
  font-size: 14.5px;
  font-weight: 650;
  color: hsl(var(--foreground) / 0.95);
}
.plan-impl p {
  margin: 6px 0 0;
  color: hsl(var(--foreground) / 0.7);
  font-size: 13.5px;
  line-height: 1.45;
}
.plan-price--from .from-label {
  font-size: 13px;
  font-weight: 600;
  color: hsl(var(--accent-foreground));
}
.plan-price__row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.plan-consult {
  margin-top: 22px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--primary) / 0.24);
  background: linear-gradient(180deg, hsl(var(--primary) / 0.11), hsl(var(--foreground) / 0.025));
}
.plan-consult .consult-label {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
  color: hsl(var(--accent-foreground));
}
.plan-consult strong {
  display: block;
  font-size: 19px;
  line-height: 1.25;
  color: hsl(var(--foreground) / 0.95);
}
.plan-consult p {
  margin: 10px 0 0;
  color: hsl(var(--foreground) / 0.68);
  font-size: 14.5px;
  line-height: 1.45;
}
.price-toggle {
  display: inline-flex; align-items: center; gap: 4px; margin: 28px auto 0;
  padding: 5px; border-radius: var(--radius-pill);
  border: 1px solid hsl(var(--border)); background: hsl(var(--foreground) / 0.03);
}
.price-toggle button {
  font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer;
  padding: 9px 20px; border-radius: var(--radius-pill); border: none;
  background: transparent; color: hsl(var(--foreground) / 0.6);
  transition: background var(--motion-fast), color var(--motion-fast);
  display: inline-flex; align-items: center; gap: 8px;
}
.price-toggle button.active { background: hsl(var(--primary)); color: #fff; box-shadow: var(--shadow-glow-primary); }
.price-toggle button .save { font-size: 11px; font-weight: 600; background: hsl(var(--success) / 0.2); color: hsl(var(--success)); padding: 2px 7px; border-radius: 999px; }
.price-toggle button.active .save { background: hsl(0 0% 100% / 0.22); color: #fff; }
.plan-annual-note { font-size: 13.5px; color: hsl(var(--muted-foreground)); margin-top: 6px; font-variant-numeric: tabular-nums; min-height: 20px; }
.plan-noia {
  margin-top: 16px; padding-top: 16px; border-top: 1px dashed hsl(var(--border));
  font-size: 13.5px; color: hsl(var(--muted-foreground)); font-variant-numeric: tabular-nums;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 12px;
}
.plan-noia b { color: hsl(var(--foreground) / 0.85); font-weight: 600; }
.plan .btn { width: 100%; margin-top: 24px; }
.plan-feats { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.plan-feats li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: hsl(var(--foreground) / 0.82); line-height: 1.4; }
.plan-feats li .ck { flex-shrink: 0; width: 20px; height: 20px; border-radius: 999px; display: grid; place-items: center; background: hsl(var(--primary) / 0.16); color: hsl(var(--primary)); margin-top: 1px; }
.plan-feats li .ck svg { width: 12px; height: 12px; }
.price-foot { text-align: center; margin-top: 30px; color: hsl(var(--muted-foreground)); font-size: 14px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 820px; margin: 36px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid hsl(var(--border)); border-radius: var(--radius-xl);
  background: hsl(var(--card) / 0.4); overflow: hidden;
  transition: border-color var(--motion-fast), background var(--motion-fast);
}
.faq-item[open] { border-color: hsl(var(--primary) / 0.4); background: hsl(var(--card) / 0.6); }
.faq-q {
  list-style: none; cursor: pointer; padding: 18px;
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15.5px; font-weight: 600; color: hsl(var(--foreground));
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q .chev { margin-left: auto; flex-shrink: 0; color: hsl(var(--muted-foreground)); transition: transform var(--motion-base) var(--motion-ease); }
.faq-item[open] .faq-q .chev { transform: rotate(45deg); color: hsl(var(--primary)); }
.faq-q .chev svg { width: 20px; height: 20px; }
.faq-a { padding: 0 18px 18px 18px; color: hsl(var(--foreground) / 0.68); font-size: 15px; line-height: 1.6; max-width: 64ch; }

/* Abertura animada sem JS e sem altura fixa. Onde ::details-content não
   existe, o bloco inteiro é descartado e o <details> volta a abrir seco. */
.faq { interpolate-size: allow-keywords; }
.faq-item::details-content {
  block-size: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    block-size var(--motion-slow) var(--motion-ease),
    opacity var(--motion-base) var(--motion-ease),
    content-visibility var(--motion-slow) allow-discrete;
}
.faq-item[open]::details-content { block-size: auto; opacity: 1; }

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final {
  position: relative; text-align: center; overflow: hidden;
  border-top: 1px solid hsl(var(--border));
}
.final-card {
  position: relative;
  border-radius: var(--radius-2xl);
  border: 1px solid hsl(var(--primary) / 0.3);
  background:
    radial-gradient(520px 200px at 50% -4%, hsl(var(--primary) / 0.26), transparent 62%),
    radial-gradient(700px 320px at 50% 0%, hsl(var(--primary) / 0.22), transparent 70%),
    radial-gradient(1100px 520px at 50% 0%, hsl(var(--primary) / 0.12), transparent 74%),
    hsl(var(--card) / 0.5);
  padding: 42px var(--gutter);
  overflow: hidden;
}
.final-card > * { position: relative; }
.final .display { font-size: 30px; max-width: 18ch; margin-inline: auto; }
.final .lead { margin: 22px auto 0; max-width: 540px; }
.final .hero-actions { margin-top: 32px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { border-top: 1px solid hsl(var(--border)); padding-block: 42px 32px; }
.footer-top { display: flex; flex-direction: column; gap: 32px; }
.footer .brand { margin-bottom: 14px; }
.footer-blurb { color: hsl(var(--muted-foreground)); font-size: 14.5px; max-width: 30ch; }
.footer-cols { display: grid; grid-template-columns: 1fr; gap: 28px; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: hsl(var(--muted-foreground)); margin: 0 0 16px; font-weight: 600; }
.footer-col a { display: block; color: hsl(var(--foreground) / 0.65); font-size: 14.5px; padding: 5px 0; transition: color var(--motion-fast); }
.footer-col a:hover { color: hsl(var(--foreground)); }
.footer-bottom { margin-top: 34px; padding-top: 22px; border-top: 1px solid hsl(var(--border)); display: flex; flex-direction: column; gap: 8px; color: hsl(var(--muted-foreground)); font-size: 13.5px; }

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--motion-ease), transform 0.6s var(--motion-ease); }
.reveal.in { opacity: 1; transform: none; }

.calendly-badge-widget { display: none !important; }

/* ==========================================================================
   Demo lead modal
   ========================================================================== */
body.demo-modal-open { overflow: hidden; }

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  align-items: end;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--motion-base) var(--motion-ease), visibility var(--motion-base) var(--motion-ease);
}

.demo-modal.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.demo-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 420px at 50% 100%, hsl(var(--primary) / 0.16), transparent 65%),
    hsl(225 24% 4% / 0.74);
  backdrop-filter: blur(12px);
}

.demo-modal__dialog {
  position: relative;
  width: min(100%, 560px);
  max-height: calc(100dvh - 18px);
  margin: 0 auto;
  padding: 24px 18px 18px;
  overflow-y: auto;
  border: 1px solid hsl(var(--border));
  border-radius: 18px 18px 0 0;
  background:
    linear-gradient(180deg, hsl(var(--card) / 0.98), hsl(var(--bg-raise) / 0.98)),
    hsl(var(--card));
  box-shadow: 0 -24px 70px hsl(225 40% 2% / 0.5);
  transform: translateY(24px);
  transition: transform var(--motion-base) var(--motion-ease);
}

.demo-modal.is-open .demo-modal__dialog { transform: translateY(0); }

.demo-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
  background: hsl(var(--secondary) / 0.78);
  color: hsl(var(--foreground));
  cursor: pointer;
  transition: background var(--motion-fast), transform var(--motion-fast), border-color var(--motion-fast);
}

.demo-modal__close:hover {
  transform: translateY(-1px);
  border-color: hsl(var(--primary) / 0.55);
  background: hsl(var(--accent) / 0.82);
}

.demo-modal__close svg { width: 18px; height: 18px; }

.demo-modal__head {
  padding-right: 48px;
}

.demo-modal__kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid hsl(var(--primary) / 0.25);
  border-radius: 999px;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary) / 0.98);
  font-size: 12.5px;
  font-weight: 600;
}

.demo-modal__head h2 {
  margin: 18px 0 0;
  color: hsl(var(--foreground));
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: 0;
}

.demo-modal__head p {
  margin: 12px 0 0;
  color: hsl(var(--foreground) / 0.68);
  font-size: 14.5px;
  line-height: 1.5;
}

.demo-progress {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 22px 0;
}

.demo-progress span {
  height: 4px;
  border-radius: 999px;
  background: hsl(var(--border));
  overflow: hidden;
}

.demo-progress span::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: hsl(var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--motion-slow) var(--motion-ease);
}

.demo-progress span.is-active::before,
.demo-progress span.is-complete::before {
  transform: scaleX(1);
}

.demo-form { display: grid; gap: 18px; }

.demo-form__trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.demo-form__step {
  display: none;
  gap: 14px;
}

.demo-form__step.is-active {
  display: grid;
  animation: demoStepIn var(--motion-slow) var(--motion-ease) both;
}

.demo-form__step.is-active.is-reversing {
  animation-name: demoStepBackIn;
}

@keyframes demoStepIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes demoStepBackIn {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.demo-form__grid {
  display: grid;
  gap: 14px;
}

.demo-form__reveal[hidden] {
  display: none !important;
}

.demo-form__reveal.is-visible {
  display: grid;
  animation: demoRevealIn var(--motion-slow) var(--motion-ease) both;
}

.demo-form__panel[hidden] {
  display: none !important;
}

.demo-form__panel:not([hidden]) {
  display: grid;
  gap: 14px;
  animation: demoRevealIn var(--motion-slow) var(--motion-ease) both;
}

.demo-type {
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.demo-type__legend {
  padding: 0;
  color: hsl(var(--foreground) / 0.86);
  font-size: 13.5px;
  font-weight: 600;
}

.demo-type__options {
  display: grid;
  gap: 10px;
}

.demo-type__option {
  display: block;
  cursor: pointer;
}

.demo-type__option input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.demo-type__card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
  background: hsl(var(--background) / 0.72);
  color: hsl(var(--foreground));
  font-size: 14.5px;
  font-weight: 600;
  text-align: center;
  transition: border-color var(--motion-fast), box-shadow var(--motion-fast), background var(--motion-fast);
}

.demo-type__option:hover .demo-type__card {
  border-color: hsl(var(--primary) / 0.45);
  background: hsl(var(--background) / 0.92);
}

.demo-type__option input:checked + .demo-type__card {
  border-color: hsl(var(--primary) / 0.74);
  background: hsl(var(--primary) / 0.1);
  box-shadow: 0 0 0 4px hsl(var(--primary) / 0.14);
}

.demo-type__option input:focus-visible + .demo-type__card {
  border-color: hsl(var(--primary) / 0.74);
  box-shadow: 0 0 0 4px hsl(var(--primary) / 0.14);
}

.field.is-invalid .demo-type__card {
  border-color: hsl(var(--destructive) / 0.72);
}

@keyframes demoRevealIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.phone-field {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 52px;
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
  background: hsl(var(--background) / 0.72);
  overflow: hidden;
  transition: border-color var(--motion-fast), box-shadow var(--motion-fast), background var(--motion-fast);
}

.phone-field__prefix {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 12px;
  border-right: 1px solid hsl(var(--border));
  background: hsl(var(--foreground) / 0.04);
  color: hsl(var(--foreground) / 0.78);
  font-size: 14.5px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  user-select: none;
}

.phone-field input {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  min-height: 50px;
}

.phone-field:focus-within {
  border-color: hsl(var(--primary) / 0.74);
  background: hsl(var(--background) / 0.92);
  box-shadow: 0 0 0 4px hsl(var(--primary) / 0.14);
}

.field.is-invalid .phone-field {
  border-color: hsl(var(--destructive) / 0.72);
  box-shadow: 0 0 0 4px hsl(var(--destructive) / 0.12);
}

.field {
  display: grid;
  gap: 7px;
}

.field[hidden] {
  display: none !important;
}

.field span {
  color: hsl(var(--foreground) / 0.86);
  font-size: 13.5px;
  font-weight: 600;
}

.field input,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
  background: hsl(var(--background) / 0.72);
  color: hsl(var(--foreground));
  font: inherit;
  outline: none;
  transition: border-color var(--motion-fast), box-shadow var(--motion-fast), background var(--motion-fast);
}

.field input::placeholder { color: hsl(var(--muted-foreground) / 0.78); }

.field input:focus,
.field select:focus {
  border-color: hsl(var(--primary) / 0.74);
  background: hsl(var(--background) / 0.92);
  box-shadow: 0 0 0 4px hsl(var(--primary) / 0.14);
}

.field.is-invalid input,
.field.is-invalid select {
  border-color: hsl(var(--destructive) / 0.72);
  box-shadow: 0 0 0 4px hsl(var(--destructive) / 0.12);
}

.field-hint {
  display: block;
  margin-top: 2px;
  color: hsl(var(--muted-foreground) / 0.92);
  font-size: 12px;
  line-height: 1.4;
}

.field-error {
  min-height: 16px;
  color: hsl(var(--destructive) / 0.95);
  font-size: 12px;
  line-height: 1.3;
}

.demo-form__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding-top: 2px;
}

.demo-form__actions .btn {
  width: 100%;
  justify-content: center;
  min-height: 52px;
}

.demo-form__back { display: none; }
.demo-form__back.is-visible { display: inline-flex; }

.demo-form__status {
  display: none;
  margin: -2px 0 0;
  color: hsl(var(--foreground) / 0.72);
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.demo-form__status.is-visible { display: block; }
.demo-form__status.is-error { color: hsl(var(--destructive) / 0.95); }

.demo-form.is-submitting .btn,
.demo-form.is-submitting input {
  cursor: progress;
}

.demo-form .btn:disabled,
.demo-form input:disabled {
  opacity: 0.68;
}

/* ==========================================================================
   Responsive - mobile first
   ========================================================================== */
@media (min-width: 480px) {
  :root {
    --gutter: 24px;
    --fs-lead: 18px;
  }
  .brand span { display: inline; }
  .theme-btn { display: inline-grid; }
  .hero-actions .btn { width: auto; white-space: nowrap; }
  .hero .display { max-width: 15ch; }
  .store-badges { gap: 12px; }
  .store-badges img { height: 42px; max-width: none; }
  .hero-mock-wrap { margin-inline: 0; }
  .hero-mock-wrap .mock,
  .feature-mock .mock { aspect-ratio: 4 / 3; }
  .footer-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  :root {
    --gutter: 32px;
    --fs-body: 17px;
    --fs-lead: 20px;
  }
  .section { padding-block: 86px; }
  .section-tight { padding-block: 60px; }
  .hero { padding-top: 140px; }
  .hero .display { max-width: 16ch; }
  .hero-actions { margin-top: 36px; gap: 14px; }
  .store-badges { margin-top: 26px; gap: 14px; }
  .store-badges img { height: 44px; }
  .solution-demo { margin-top: 56px; }
  .btn-lg { padding: 17px 28px; font-size: 16px; }
  .steps { margin-top: 48px; }
  .feature-row { margin-top: 76px; gap: 32px; }
  .feature-row:first-of-type { margin-top: 52px; }
  .feature-copy h3 { font-size: 26px; }
  .plans { margin-top: 48px; gap: 22px; }
  .plan { padding: 34px; }
  .plan-price { flex-direction: row; align-items: baseline; gap: 8px; }
  .plan-price--from { flex-direction: column; align-items: flex-start; gap: 6px; }
  .plan-price .amt { font-size: 44px; }
  .faq { margin-top: 52px; gap: 12px; }
  .faq-q { padding: 22px 24px; align-items: center; font-size: 16.5px; }
  .faq-a { padding: 0 24px 24px 24px; font-size: 15.5px; }
  .final-card { padding: 64px var(--gutter); }
  .calendly-badge-widget { display: block !important; }
  .footer { padding-block: 56px 40px; }
  .footer-top { flex-direction: row; flex-wrap: wrap; justify-content: space-between; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(3, max-content); gap: 48px; }
  .footer-bottom { flex-direction: row; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 48px; }
  .demo-modal { align-items: center; padding: 24px; }
  .demo-modal__dialog {
    max-height: min(720px, calc(100dvh - 48px));
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 30px 90px hsl(225 40% 2% / 0.55);
  }
  .demo-modal__head h2 { font-size: 32px; }
  .demo-form__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .demo-type__options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .demo-form__actions { grid-template-columns: auto 1fr; align-items: center; }
  .demo-form__back { width: auto; min-width: 124px; }
}

@media (max-width: 1023.98px) {
  .hero > .hero-mock-wrap:not(.solution-demo),
  .solution-demo {
    width: min(100%, 430px);
    margin-inline: auto;
  }
  .hero > .hero-mock-wrap:not(.solution-demo) .mock,
  .solution-demo .mock {
    aspect-ratio: 9 / 16.75;
  }
  .hero > .hero-mock-wrap:not(.solution-demo) .mock-screen,
  .solution-demo .mock-screen {
    background: hsl(var(--background));
  }
}

@media (min-width: 1024px) {
  :root {
    --gutter: 40px;
    --fs-lead: 21px;
  }
  .section { padding-block: 112px; }
  .section-tight { padding-block: 74px; }
  .nav-inner { height: 72px; gap: 28px; }
  .brand img { width: 34px; height: 34px; }
  .nav-links {
    position: static;
    transform: none;
    overflow-y: visible;
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .nav-links a { font-size: 14.5px; padding: 8px 12px; }
  .nav-menu-cta { display: none; }
  .nav-cta { gap: 10px; }
  .nav-journey { display: block; }
  .nav-cta .btn.cta-secondary { display: inline-flex; }
  .nav-cta .btn.cta-desktop { display: inline-flex; }
  .nav-cta .btn { padding: 10px 18px; font-size: 14.5px; }
  .nav-toggle { display: none; }
  .hero { padding-top: 172px; }
  .hero-mock-wrap { margin-top: 64px; }
  .solution-demo { margin-top: 64px; }
  .showcase-desktop-only { display: block; }
  .showcase-mobile-only { display: none; }
  .hero-mock-wrap .mock { aspect-ratio: 16 / 9.4; }
  .hero-mock-wrap .mock-screen,
  .feature-mock .mock-screen { inset: 42px 0 0 0; }
  .mock-bar { height: 42px; padding-inline: 16px; }
  .mock-dots i { width: 11px; height: 11px; }
  .mock-url { margin-left: 14px; font-size: 12px; }
  .problem-grid { grid-template-columns: 1.05fr 0.95fr; gap: 64px; }
  .nobody-item { align-items: center; padding: 16px 18px; }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
  .step { padding: 28px; }
  .feature-row { grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 96px; }
  .feature-row.flip .feature-copy { order: 2; }
  .feature-mock .mock { aspect-ratio: 4 / 3; }
  .plans { grid-template-columns: 1fr 1fr; margin-top: 52px; }
  .final-card { padding-block: 78px; }
}

@media (min-width: 1200px) {
  :root {
    --gutter: 48px;
  }
  .section { padding-block: 140px; }
  .section-tight { padding-block: 84px; }
  .hero { padding-top: 200px; }
  .hero-mock-wrap { margin-top: 84px; }
  .solution-demo { margin-top: 72px; }
  .problem-grid { gap: 72px; }
  .feature-row { gap: 80px; margin-top: 110px; }
  .final-card { padding-block: 88px; }
}

/* ==========================================================================
   MOBILE COMPONENTS
   ========================================================================== */

/* ---- Mobile feature explorer (tabbed) — hidden on desktop ---- */
.features-mobile { display: none; }
.fm-tabs {
  display: flex; gap: 8px; overflow-x: auto; scroll-snap-type: x proximity;
  padding: 4px 0 14px; margin: 0 calc(var(--gutter) * -1); padding-inline: var(--gutter);
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.fm-tabs::-webkit-scrollbar { display: none; }
.fm-tab {
  flex: 0 0 auto; scroll-snap-align: start;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 15px; border-radius: var(--radius-pill);
  border: 1px solid hsl(var(--border)); background: hsl(var(--foreground) / 0.03);
  color: hsl(var(--foreground) / 0.62);
  font-family: var(--font-sans); font-size: 14px; font-weight: 600; white-space: nowrap;
  cursor: pointer; transition: background var(--motion-fast), color var(--motion-fast), border-color var(--motion-fast);
}
.fm-tab .fm-tab-ic { width: 18px; height: 18px; display: grid; place-items: center; color: hsl(var(--primary)); }
.fm-tab .fm-tab-ic svg { width: 16px; height: 16px; }
.fm-tab.active {
  background: hsl(var(--primary)); color: #fff; border-color: hsl(var(--primary));
  box-shadow: var(--shadow-glow-primary);
}
.fm-tab.active .fm-tab-ic { color: #fff; }
.fm-panel { animation: fmFade var(--motion-slow) var(--motion-ease); }
@keyframes fmFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.fm-panel .plan-badge { margin-bottom: 14px; }
.fm-panel h3 { font-size: 23px; line-height: 1.2; margin: 0 0 6px; }
.fm-panel .fm-sub {
  color: hsl(var(--muted-foreground)); font-size: 11.5px;
  text-transform: uppercase; letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.fm-panel .fm-sub .fi {
  width: 26px; height: 26px; border-radius: var(--radius-sm); display: grid; place-items: center;
  background: hsl(var(--primary) / 0.12); color: hsl(var(--primary)); border: 1px solid hsl(var(--primary)/0.2);
}
.fm-panel .fm-sub .fi svg { width: 15px; height: 15px; }
.fm-shot { margin: 16px calc(var(--gutter) * -1) 18px; }
.fm-shot .mock { border-radius: 0; border-inline: none; aspect-ratio: 4 / 3; }
.fm-shot .mock-screen { position: absolute; inset: 36px 0 0 0; overflow: auto; }
.fm-panel p { color: hsl(var(--foreground) / 0.72); font-size: 16.5px; line-height: 1.55; margin: 0; }
.fm-dots { display: flex; justify-content: center; gap: 7px; margin-top: 22px; }
.fm-dots button {
  width: 7px; height: 7px; padding: 0; border: none; border-radius: 999px;
  background: hsl(var(--foreground) / 0.18); cursor: pointer;
  transition: background var(--motion-base);
}
.fm-dots button.active { width: 22px; background: hsl(var(--primary)); }

/* ---- Sticky bottom CTA bar (mobile only) ---- */
.mobile-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  align-items: center; gap: 14px;
  padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom));
  background: hsl(var(--background) / 0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid hsl(var(--border) / 0.8);
  transform: translateY(120%); transition: transform var(--motion-base) var(--motion-ease);
}
.mobile-cta.show { transform: translateY(0); }
.mobile-cta-text { display: flex; flex-direction: column; line-height: 1.25; }
.mobile-cta-text strong { font-size: 14px; font-weight: 600; color: hsl(var(--foreground)); }
.mobile-cta-text span { font-size: 11.5px; color: hsl(var(--muted-foreground)); }
.mobile-cta .btn { margin-left: auto; padding: 12px 20px; }

/* ---- Activate mobile layout at < 1024px ---- */
@media (max-width: 1023px) {
  html { scroll-padding-top: 82px; }
  section[id],
  main[id] { scroll-margin-top: 82px; }
  .nav {
    background: hsl(var(--background) / 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: hsl(var(--border) / 0.7);
  }
  .nav-inner { gap: 10px; }
  .nav-cta { gap: 8px; }
  .nav-cta .btn.cta-desktop { display: inline-flex; }
  .nav-links {
    inset: 72px var(--gutter) auto var(--gutter);
    width: auto;
    max-height: 0;
    padding: 0 12px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    background: hsl(var(--bg-raise) / 0.94);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.36), inset 0 1px 0 hsl(0 0% 100% / 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    overflow: hidden;
    transition:
      max-height var(--motion-slow) var(--motion-ease),
      padding var(--motion-slow) var(--motion-ease),
      opacity var(--motion-base) ease,
      transform var(--motion-base) var(--motion-ease),
      border-color var(--motion-base) ease;
  }
  body.menu-open .nav-links {
    max-height: calc(100dvh - 92px);
    padding: 12px;
    border-color: hsl(var(--border));
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    overflow-y: auto;
  }
  .nav-links a {
    font-size: 16px;
    padding: 14px 16px;
  }
  .nav-mobile-only { display: block; }
  body.menu-open .nav-scrim {
    background: hsl(var(--background) / 0.28);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  #solucao { padding-top: 76px; }
  #solucao .section-head .h2 { margin-top: 14px; }
  #solucao .section-head .lead { margin-top: 18px; }
  .solution-demo { margin-top: 32px; }

  /* Nav menu CTAs */
  .nav-menu-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; padding-top: 18px; border-top: 1px solid hsl(var(--border)); }
  .nav-menu-cta .btn { width: 100%; padding: 15px; font-size: 15.5px; }

  /* Feature rows hidden → tabbed explorer shown */
  .feature-row, .feature-row.flip { display: none; }
  .features-mobile { display: block; margin-top: 30px; }

  /* Sticky CTA bar */
  .mobile-cta { display: flex; }
  .footer { padding-bottom: 100px; }
}

/* ==========================================================================
   ===== V3 FASE 2 =====
   Container scroll no hero, highlight do headline e sticky scroll reveal
   na seção "Como funciona". Somente tokens — funciona nos dois temas.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1) Headline do hero — duas linhas intencionais no desktop
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) {
  :root { --fs-display: clamp(34px, 5.5vw, 50px); }
  .hero .display { max-width: none; }
}
@media (max-width: 1023.98px) {
  /* sem o <br> forçado: quebra natural dentro do max-width existente */
  .hero .display br { display: none; }
}
@media (max-width: 479.98px) {
  /* o limite de 11ch é pensado para telas largas; aqui só espremia o título */
  .hero .display { max-width: none; }
}
/* o marca-texto atravessa a quebra de linha: cada fragmento ganha o próprio box */
.hero .display .accent-text {
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* --------------------------------------------------------------------------
   2) Hero highlight — marca-texto que se desenha uma vez no load
   -------------------------------------------------------------------------- */
.hero .display .accent-text {
  background-image: linear-gradient(hsl(var(--primary) / 0.28), hsl(var(--primary) / 0.28));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 100%;
  padding-inline: 0.1em;
  margin-inline: -0.1em;
  border-radius: 0.14em;
  animation: heroHighlight 0.8s var(--motion-ease) 0.6s forwards;
}
@keyframes heroHighlight {
  from { background-size: 0% 100%; }
  to   { background-size: 100% 100%; }
}

/* --------------------------------------------------------------------------
   3) Hero container scroll — o mock endireita conforme entra no viewport.
   --tilt vai de 1 (inclinado) a 0 (reto); escrito por v3.js.
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) {
  .hero-mock-wrap.tilt-scroll { perspective: 1200px; perspective-origin: 50% 0%; }
  .hero-mock-wrap.tilt-scroll .mock {
    will-change: transform;
    transform-origin: 50% 0%;
    transform:
      rotateX(calc(16deg * var(--tilt, 0)))
      scale(calc(1 - 0.04 * var(--tilt, 0)));
  }
}

/* --------------------------------------------------------------------------
   4) Como funciona — sticky scroll reveal
   -------------------------------------------------------------------------- */

/* Base / fallback sem JS: tudo empilhado em coluna única, em qualquer largura. */
.steps.steps-sticky { grid-template-columns: 1fr; gap: 18px; }

.step-scene { min-width: 0; }

/* ---- Mini-cenas: casca comum ---- */
.sc {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-xl);
  background: hsl(var(--card) / 0.85);
  box-shadow: var(--shadow-card);
  font-size: 14px;
  overflow: hidden;
}
.sc::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 80% at 50% 0%, hsl(var(--primary) / 0.07), transparent 68%);
}
.sc > * { position: relative; }

.sc-head { display: flex; align-items: center; gap: 10px; padding-bottom: 12px; border-bottom: 1px solid hsl(var(--border) / 0.8); }
.sc-head-txt { display: flex; flex-direction: column; min-width: 0; }
.sc-head-txt strong { font-size: 14.5px; font-weight: 600; color: hsl(var(--foreground)); }
.sc-head-txt small { font-size: 12px; color: hsl(var(--muted-foreground)); }
.sc-avatar {
  flex: none; width: 34px; height: 34px; border-radius: var(--radius-pill);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.14);
  border: 1px solid hsl(var(--primary) / 0.3);
}
.sc-wa { margin-left: auto; flex: none; width: 20px; height: 20px; color: hsl(var(--success)); }
.sc-wa svg { width: 100%; height: 100%; display: block; }
.sc-wa-sm { margin-left: 0; width: 16px; height: 16px; }

.sc-stamp {
  align-self: center;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: hsl(var(--muted) / 0.85);
  color: hsl(var(--muted-foreground));
  font-size: 11.5px; font-weight: 500;
}

/* ---- Cena 1: chat ---- */
.sc-thread { display: flex; flex-direction: column; gap: 10px; }
.sc-bubble {
  position: relative;
  max-width: 88%;
  margin: 0;
  padding: 10px 13px 18px;
  border-radius: var(--radius);
  font-size: 13.5px;
  line-height: 1.45;
  color: hsl(var(--foreground) / 0.9);
}
.sc-bubble time {
  position: absolute; right: 10px; bottom: 5px;
  font-size: 10.5px; color: hsl(var(--muted-foreground));
}
.sc-bubble.in {
  align-self: flex-start;
  background: hsl(var(--muted) / 0.9);
  border: 1px solid hsl(var(--border) / 0.7);
  border-bottom-left-radius: 4px;
}
.sc-bubble.out {
  align-self: flex-end;
  background: hsl(var(--primary) / 0.16);
  border: 1px solid hsl(var(--primary) / 0.32);
  border-bottom-right-radius: 4px;
}
.sc-foot {
  display: flex; align-items: center; gap: 8px;
  margin: 0; padding-top: 10px;
  border-top: 1px solid hsl(var(--border) / 0.8);
  font-size: 12.5px; color: hsl(var(--muted-foreground));
}
.sc-dot {
  width: 7px; height: 7px; border-radius: var(--radius-pill);
  background: hsl(var(--success)); flex: none;
  box-shadow: 0 0 0 3px hsl(var(--success) / 0.18);
}

/* ---- Cena 2: ficha + veículo + funil ---- */
.sc-head-plain { align-items: flex-start; }
.sc-live {
  margin-left: auto; flex: none;
  padding: 4px 10px; border-radius: var(--radius-pill);
  font-size: 11.5px; font-weight: 600;
  color: hsl(var(--accent-foreground));
  background: hsl(var(--accent));
  border: 1px solid hsl(var(--primary) / 0.25);
}
.sc-fields { display: flex; flex-direction: column; gap: 8px; margin: 0; }
.sc-fields > div {
  display: flex; align-items: baseline; gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px dashed hsl(var(--border));
}
.sc-fields dt { flex: none; width: 92px; font-size: 12px; color: hsl(var(--muted-foreground)); }
.sc-fields dd { margin: 0; font-size: 13.5px; font-weight: 500; color: hsl(var(--foreground) / 0.92); }
.sc-vehicle {
  display: flex; align-items: center; gap: 12px;
  padding: 12px;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: hsl(var(--background) / 0.5);
}
.sc-photo {
  flex: none; position: relative; overflow: hidden;
  width: 76px; height: 54px; border-radius: var(--radius-sm);
  background: linear-gradient(160deg, hsl(var(--muted)) 0%, hsl(var(--secondary)) 100%);
  border: 1px solid hsl(var(--border));
}
/* silhueta de carro puramente em CSS — sem imagem externa */
.sc-car {
  position: absolute; left: 10px; right: 10px; bottom: 16px; height: 13px;
  border-radius: 7px 9px 4px 4px;
  background: hsl(var(--foreground) / 0.28);
}
.sc-car::before {
  content: ""; position: absolute; left: 13px; right: 17px; bottom: 11px; height: 10px;
  border-radius: 8px 8px 0 0;
  background: hsl(var(--foreground) / 0.2);
}
.sc-car::after {
  content: ""; position: absolute; left: 6px; right: 6px; bottom: -5px; height: 10px;
  background:
    radial-gradient(circle 5px at 5px 5px, hsl(var(--foreground) / 0.42) 98%, transparent 100%),
    radial-gradient(circle 5px at calc(100% - 5px) 5px, hsl(var(--foreground) / 0.42) 98%, transparent 100%);
}
.sc-vehicle-txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sc-vehicle-txt strong { font-size: 14px; font-weight: 600; color: hsl(var(--foreground)); }
.sc-vehicle-txt small { font-size: 12px; color: hsl(var(--muted-foreground)); }
.sc-vehicle-txt b { margin-top: 2px; font-size: 15px; font-weight: 700; color: hsl(var(--primary)); }
.sc-funnel { display: flex; align-items: center; gap: 10px; }
.sc-funnel-cap { flex: none; font-size: 11.5px; font-weight: 600; color: hsl(var(--muted-foreground)); }
.sc-funnel-stage { color: hsl(var(--accent-foreground)); }
.sc-bar {
  position: relative; flex: 1 1 auto; height: 6px;
  border-radius: var(--radius-pill);
  background: hsl(var(--muted));
  overflow: hidden;
}
.sc-bar i {
  position: absolute; inset: 0 auto 0 0;
  width: 78%;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, hsl(var(--primary) / 0.5), hsl(var(--primary)));
}

/* ---- Cena 3: notificação no celular ---- */
.sc-notify { align-items: center; background: transparent; border: 0; box-shadow: none; padding: 0; }
.sc-notify::before { content: none; }
.sc-phone {
  position: relative;
  width: 100%; max-width: 300px;
  display: flex; flex-direction: column; gap: 14px;
  padding: 26px 14px 20px;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-2xl);
  background:
    radial-gradient(120% 60% at 50% 0%, hsl(var(--primary) / 0.16), transparent 70%),
    hsl(var(--background) / 0.92);
  box-shadow: var(--shadow-lift-themed);
}
.sc-notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 74px; height: 6px; border-radius: var(--radius-pill);
  background: hsl(var(--foreground) / 0.16);
}
.sc-lock { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.sc-lock strong { font-family: var(--font-display); font-size: 40px; font-weight: 700; line-height: 1; color: hsl(var(--foreground) / 0.92); }
.sc-lock small { font-size: 12px; color: hsl(var(--muted-foreground)); }
.sc-notif {
  display: flex; flex-direction: column; gap: 8px;
  padding: 13px;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: hsl(var(--card) / 0.95);
  box-shadow: var(--shadow-card);
}
.sc-notif-head { display: flex; align-items: center; gap: 7px; }
.sc-notif-head strong { font-size: 12.5px; font-weight: 600; color: hsl(var(--foreground) / 0.85); }
.sc-notif-head time { margin-left: auto; font-size: 11px; color: hsl(var(--muted-foreground)); }
.sc-notif-title { margin: 0; font-size: 14px; font-weight: 600; color: hsl(var(--foreground)); }
.sc-notif-list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 4px; }
.sc-notif-list li { font-size: 12.5px; line-height: 1.4; color: hsl(var(--foreground) / 0.72); }
.sc-notif-btn {
  margin-top: 4px; align-self: flex-start;
  padding: 7px 14px; border-radius: var(--radius-pill);
  font-size: 12.5px; font-weight: 600;
  color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.14);
  border: 1px solid hsl(var(--primary) / 0.3);
}
.sc-logline {
  margin: 0; text-align: center;
  font-size: 12.5px; color: hsl(var(--muted-foreground));
}
.sc-logline span { color: hsl(var(--success)); font-weight: 700; }

/* ---- Entrada com stagger: estado base é VISÍVEL; a animação vem do `from` ---- */
.steps-sticky .step-scene.is-active .sc-bubble,
.steps-sticky .step-scene.is-active .sc-fields > div,
.steps-sticky .step-scene.is-active .sc-vehicle,
.steps-sticky .step-scene.is-active .sc-funnel,
.steps-sticky .step-scene.is-active .sc-notif,
.steps-sticky .step-scene.is-active .sc-logline {
  animation: scRise 0.5s var(--motion-ease) var(--d, 0s) both;
}
.steps-sticky .step-scene.is-active .sc-bar i { animation: scFill 0.9s var(--motion-ease) 1s both; }
@keyframes scRise {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
@keyframes scFill {
  from { width: 12%; }
  to   { width: 78%; }
}

/* ---- Desktop: duas colunas com painel sticky (só com JS, via .is-ready) ---- */
@media (min-width: 1024px) {
  .steps.steps-sticky.is-ready {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 72px;
    row-gap: 0;
    margin-top: 24px;
    align-items: start;
  }
  .steps-sticky.is-ready .step {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 70vh;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
    opacity: 0.35;
    transform: none;
    transition: opacity 0.45s var(--motion-ease);
  }
  .steps-sticky.is-ready .step:hover { transform: none; box-shadow: none; border: 0; }
  .steps-sticky.is-ready .step.is-active { opacity: 1; }
  .steps-sticky.is-ready .step-index { font-size: 64px; margin-bottom: 18px; }
  .steps-sticky.is-ready .step h3 { font-size: var(--fs-h3); margin-bottom: 14px; }
  .steps-sticky.is-ready .step p { font-size: 16.5px; }

  .steps-sticky.is-ready .step-scene {
    grid-column: 2;
    grid-row: 1 / span 3;
    position: sticky;
    top: 120px;
    align-self: start;
    height: 70vh;
    display: flex;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity 0.45s var(--motion-ease), transform 0.45s var(--motion-ease);
  }
  .steps-sticky.is-ready .step-scene.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .steps-sticky.is-ready .sc { width: 100%; max-height: 100%; padding: 22px; }
  .steps-sticky.is-ready .sc-notify { max-height: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item::details-content { transition: none; }
  .hero .display .accent-text { animation: none; background-size: 100% 100%; }
  .demo-form__step.is-active,
  .demo-form__step.is-active.is-reversing,
  .demo-form__reveal.is-visible,
  .demo-form__panel:not([hidden]) { animation: none; }
  .hero-mock-wrap.tilt-scroll .mock { transform: none; }
  .steps-sticky .step,
  .steps-sticky .step-scene { transition: none; }
  .steps-sticky.is-ready .step-scene { transform: none; }
  .steps-sticky .step-scene.is-active .sc-bubble,
  .steps-sticky .step-scene.is-active .sc-fields > div,
  .steps-sticky .step-scene.is-active .sc-vehicle,
  .steps-sticky .step-scene.is-active .sc-funnel,
  .steps-sticky .step-scene.is-active .sc-notif,
  .steps-sticky .step-scene.is-active .sc-logline,
  .steps-sticky .step-scene.is-active .sc-bar i { animation: none; }
}
