/* ============================================================
   BETTA / BTLabs — landing.css
   Isolado do ERP: nenhuma variável ou seletor daqui vem de theme.css.

   IDENTIDADE DA MARCA (fixa, nunca muda): paleta institucional
   verde-petróleo BTLabs/BETTA abaixo — não é nenhum dos 7 temas de
   usuário. Os 7 temas (Confiança/Otimismo/etc.) só existem dentro do
   mockup de demonstração (#demoFrame, ver "PERSONALIZAÇÃO" mais
   abaixo) através de variáveis --demo-* próprias, aplicadas por JS.
   A cor de marca da landing NUNCA muda quando o visitante troca de
   tema na demonstração.
   ============================================================ */

:root {
  /* --- Tipografia (provisório: sem fonte institucional definida
     ainda — ver seção 10 do briefing. Inter fica só como texto
     funcional, não é apresentada como parte definitiva da marca.) --- */
  --l-font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* --- Identidade institucional BTLabs/BETTA (fixa) --- */
  --l-ink:       #0B0D12;
  --l-deepest:   #011C1A;
  --l-deep:      #084E4D;
  --l-dark:      #0D6B69;
  --l-primary:       #108684;
  --l-primary-hover: #139F9D;
  --l-soft:      #8FC9C4;
  --l-pale:      #B7DFDB;
  --l-off-white: #F8F9F9;
  --l-inst-surface: #EEF3F2;
  --l-inst-gray: #4D5358;

  /* --- Neutros (mesmos valores fixos do theme.css) --- */
  --l-white:   #FFFFFF;
  --l-gray-50:  #F9FAFB;
  --l-gray-100: #F3F4F6;
  --l-gray-200: #E5E7EB;
  --l-gray-300: #D1D5DB;
  --l-gray-500: #6B7280;
  --l-gray-700: #374151;
  --l-gray-900: #111827;

  --l-text:    #1A2332; /* = --text-ui do ERP */
  --l-muted:   #718096; /* = --text-ui-muted do ERP */
  --l-border:  #E5E7EB;

  --l-bg:         #FFFFFF;
  --l-surface:    #F9FAFB;
  --l-surface-2:  #F3F4F6;
  --l-dark-bg:    var(--l-deepest); /* fundo escuro institucional (não é mais uma cor inventada) */

  /* --- Espaçamento / raio / sombra --- */
  --l-radius-sm: 8px;
  --l-radius-md: 14px;
  --l-radius-lg: 22px;
  --l-shadow-sm: 0 2px 10px rgba(16, 25, 43, 0.06);
  --l-shadow-md: 0 8px 28px rgba(16, 25, 43, 0.10);
  --l-shadow-lg: 0 20px 60px rgba(16, 25, 43, 0.16);

  --l-header-h: 76px;
  --l-max: 1180px;

  --l-transition: 0.5s cubic-bezier(.22,.68,0,1);
}

/* ============================================================
   RESET (escopo só desta página — arquivo próprio, não herda nada
   do theme.css do ERP)
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--l-font);
  color: var(--l-text);
  background: var(--l-bg);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; }
section { position: relative; }

.l-container {
  max-width: var(--l-max);
  margin: 0 auto;
  padding: 0 24px;
}

.l-visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

.l-skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--l-deep); color: #fff;
  padding: 10px 16px; border-radius: var(--l-radius-sm);
  z-index: 1000; transition: top 0.2s ease;
}
.l-skip-link:focus { top: 12px; }

:focus-visible { outline: 2px solid var(--l-primary); outline-offset: 2px; }

/* ============================================================
   TIPOGRAFIA DE SEÇÃO
   ============================================================ */
.l-eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--l-primary);
  margin-bottom: 14px; display: inline-block;
}
.l-h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 18px; }
.l-h2-on-dark { color: #fff; }
.l-lede {
  font-size: clamp(16px, 1.6vw, 19px); color: var(--l-muted);
  max-width: 620px; line-height: 1.65;
}
.l-lede-on-dark { color: rgba(255,255,255,0.72); }
.l-section-head { max-width: 720px; margin-bottom: 56px; }
.l-section-head.l-center { margin-left: auto; margin-right: auto; text-align: center; }

.l-section { padding: 96px 0; }
.l-section-tight { padding: 64px 0; }
.l-bg-surface { background: var(--l-surface); }
.l-bg-tint { background: var(--l-inst-surface); }
.l-bg-dark { background: var(--l-dark-bg); }

/* ============================================================
   HEADER
   ============================================================ */
.l-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--l-header-h);
  display: flex; align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease, height 0.25s ease, border-color 0.25s ease;
}
/* Estado inicial: cabeçalho transparente sobre o fundo escuro -> texto claro. */
.l-header:not(.is-scrolled) .l-nav-desktop a { color: #fff; }
.l-header:not(.is-scrolled) .l-nav-desktop a { opacity: 0.82; }
.l-header:not(.is-scrolled) .l-menu-toggle { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.28); }
.l-header:not(.is-scrolled) .l-menu-toggle span,
.l-header:not(.is-scrolled) .l-menu-toggle span::before,
.l-header:not(.is-scrolled) .l-menu-toggle span::after { background: #fff; }
/* Botão "Entrar" (l-btn-ghost) sobre o hero escuro precisa de contraste
   próprio -- sem isso o texto verde-petróleo escuro quase some. Ao
   rolar, volta a usar a cor padrão (verde-petróleo sobre fundo claro). */
.l-header:not(.is-scrolled) .l-btn-ghost {
  color: #FFFFFF; border-color: rgba(255,255,255,0.55); background: transparent;
}
.l-header:not(.is-scrolled) .l-btn-ghost:hover {
  background: rgba(255,255,255,0.08); border-color: #FFFFFF;
}
.l-header.is-scrolled {
  background: rgba(248,249,249,0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(16,134,132,0.18);
  height: 66px;
}
/* Sem marca no cabeçalho (a abertura institucional já apresenta o
   BETTΛ) -- 3 colunas pra manter a navegação centralizada e
   equilibrada, sem buraco vazio onde a logo estava. */
/* Sem max-width aqui de propósito -- o menu precisa centralizar contra
   a LARGURA TOTAL da viewport, não contra a faixa de conteúdo (1180px)
   usada no resto da página. Por isso este wrapper não usa .l-container. */
.l-header-row {
  position: relative; width: 100%; display: flex; align-items: center;
  padding-inline: clamp(32px, 6vw, 112px);
}
.l-nav-desktop {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: flex; align-items: center; gap: 30px; white-space: nowrap;
}
.l-nav-desktop a {
  font-size: 14px; font-weight: 600; color: var(--l-inst-gray);
  opacity: 0.78; transition: opacity 0.15s ease, color 0.25s ease;
}
.l-nav-desktop a:hover { opacity: 1; }
.l-header-actions { display: flex; align-items: center; gap: 10px; }
.l-header-actions.l-desktop-only { margin-left: auto; }
.l-menu-toggle { margin-left: auto; }

.l-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 22px; border-radius: var(--l-radius-sm);
  font-size: 14px; font-weight: 700; border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.l-btn:active { transform: translateY(1px); }
.l-btn-primary { background: var(--l-primary); color: #fff; }
.l-btn-primary:hover { background: var(--l-primary-hover); box-shadow: var(--l-shadow-md); }
.l-btn-ghost { background: transparent; color: var(--l-deep); border-color: var(--l-border); }
.l-btn-ghost:hover { border-color: var(--l-primary); background: var(--l-inst-surface); }
.l-btn-on-dark.l-btn-ghost { color: #fff; border-color: rgba(255,255,255,0.55); background: transparent; }
.l-btn-on-dark.l-btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.l-btn-lg { padding: 15px 28px; font-size: 15.5px; }

.l-menu-toggle {
  display: none; width: 42px; height: 42px; border-radius: var(--l-radius-sm);
  border: 1.5px solid var(--l-border); background: #fff;
  align-items: center; justify-content: center;
}
.l-menu-toggle span, .l-menu-toggle span::before, .l-menu-toggle span::after {
  content: ''; display: block; width: 18px; height: 2px; background: var(--l-text); border-radius: 2px;
  position: relative; transition: transform 0.2s ease, opacity 0.2s ease;
}
.l-menu-toggle span::before { position: absolute; top: -6px; }
.l-menu-toggle span::after { position: absolute; top: 6px; }
.l-menu-toggle.is-open span { background: transparent; }
.l-menu-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.l-menu-toggle.is-open span::after { top: 0; transform: rotate(-45deg); }

.l-nav-mobile {
  position: fixed; inset: 66px 0 0 0; background: #fff; z-index: 480;
  padding: 28px 24px; display: none; flex-direction: column; gap: 4px;
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.l-nav-mobile.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.l-nav-mobile a {
  padding: 14px 4px; font-size: 17px; font-weight: 600; color: var(--l-text);
  border-bottom: 1px solid var(--l-border);
}
.l-nav-mobile .l-header-actions { margin-top: 20px; flex-direction: column; }
.l-nav-mobile .l-btn { width: 100%; }

/* ============================================================
   ABERTURA INSTITUCIONAL — primeira viewport, só a marca BETTΛ.
   Mesmo fundo escuro/paleta do hero (não é uma cor nova). Fonte
   Spectral porque é a mesma grafia já usada pra "BETTA" em
   login.html (.brand) -- não é Inter, que é só o texto funcional.
   ============================================================ */
.l-opening {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: var(--l-header-h) 24px 90px; color: #fff; overflow: hidden;
  background:
    radial-gradient(circle at 75% 35%, rgba(16,134,132,.22), transparent 34%),
    linear-gradient(135deg, var(--l-ink) 0%, var(--l-deepest) 55%, var(--l-deep) 100%);
}
.l-opening::before {
  content: ''; position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background-image:
    linear-gradient(rgba(143,201,196,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143,201,196,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(55% 55% at 50% 45%, #000 0%, transparent 75%);
}
/* Pontos luminosos discretos, parados (sem exagero de movimento). */
.l-opening-dot {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: var(--l-soft); box-shadow: 0 0 8px 2px rgba(143,201,196,0.5); pointer-events: none;
}

.l-opening-center {
  position: relative; z-index: 2; width: 100%; max-width: 1400px;
  display: flex; align-items: center; justify-content: center; gap: clamp(4px, 2vw, 28px);
}
/* Largura fixa reservada pra palavra completa "BETTΛ" -- cada estágio
   da digitação (B, BE, BET...) começa sempre no mesmo ponto (borda
   esquerda desta caixa), nunca recentraliza individualmente. Como a
   caixa em si fica centralizada na viewport (via .l-opening-center) e
   tem a largura quase exata da palavra cheia, "BETTΛ" completo acaba
   parecendo centralizado -- os estágios menores é que ficam deslocados
   à esquerda dentro dela, e não o contrário. */
.l-opening-word-wrap {
  display: inline-flex; align-items: center; justify-content: flex-start;
  font-family: 'Spectral', serif; font-weight: 700;
  font-size: clamp(4.5rem, 7vw, 8rem); line-height: 1; flex-shrink: 0;
  width: 3.65em; text-align: left; /* medido no navegador: "BETTΛ" em Spectral 700 ≈ 3.5em + folga do cursor */
}
.l-opening-word {
  background: linear-gradient(180deg, #ffffff 0%, var(--l-pale) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.l-opening-cursor {
  width: 0.05em; height: 0.76em; margin-left: 0.06em; flex-shrink: 0;
  background: var(--l-soft); animation: l-cursor-blink 0.8s steps(1) infinite;
}
@media (prefers-reduced-motion: reduce) { .l-opening-cursor { animation: none; opacity: 0.6; } }

/* Loopings laterais -- mesma lógica visual do espiral "BTΛ" de
   login.html (buildTunnel: anéis concêntricos de texto, raio/tamanho/
   opacidade decrescentes), só que contidos numa caixa menor de cada
   lado, com o foco voltado para a palavra central. */
.l-opening-loop {
  position: relative; flex: 1 1 auto; max-width: 190px;
  height: clamp(90px, 13vw, 190px); overflow: hidden; pointer-events: none;
}
.l-opening-loop-left { animation: l-loop-spin 170s linear infinite; transform-origin: 100% 50%; }
.l-opening-loop-right { animation: l-loop-spin-rev 170s linear infinite; transform-origin: 0% 50%; }
.l-loop-node {
  position: absolute; font-family: 'Spectral', serif; font-weight: 700; line-height: 1;
  white-space: nowrap; user-select: none;
}
.l-loop-core {
  position: absolute; top: 50%; width: 70px; height: 70px; border-radius: 50%;
  transform: translateY(-50%); pointer-events: none;
  background: radial-gradient(circle, rgba(16,134,132,0.32) 0%, rgba(16,134,132,0) 70%);
}
.l-opening-loop-left .l-loop-core { right: -6px; }
.l-opening-loop-right .l-loop-core { left: -6px; }
@keyframes l-loop-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes l-loop-spin-rev { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
@media (prefers-reduced-motion: reduce) {
  .l-opening-loop-left, .l-opening-loop-right { animation: none; }
}
@media (max-width: 480px) {
  .l-opening-loop { display: none; }
}

.l-opening-scroll {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}

/* ============================================================
   HERO — identidade institucional BTLabs/BETTA (verde-petróleo
   escuro), não usa nenhuma cor dos 7 temas de usuário.
   ============================================================ */
.l-hero {
  position: relative;
  padding: calc(var(--l-header-h) + 88px) 0 76px;
  color: #fff;
  background:
    radial-gradient(circle at 75% 35%, rgba(16,134,132,.22), transparent 34%),
    linear-gradient(135deg, var(--l-ink) 0%, var(--l-deepest) 55%, var(--l-deep) 100%);
  overflow: hidden;
}
/* Grid técnico muito sutil, só textura, nunca decorativo demais. */
.l-hero::before {
  content: ''; position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background-image:
    linear-gradient(rgba(143,201,196,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143,201,196,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(60% 60% at 70% 30%, #000 0%, transparent 75%);
}
.l-hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.l-hero-eyebrow-on-dark { color: var(--l-soft); }
.l-hero-title { font-size: clamp(34px, 4.6vw, 56px); margin-bottom: 22px; color: #fff; }

/* Linha dinâmica (Clientes/Tarefas/Vendas/...) -- fica abaixo do
   título, com menos peso visual que ele, alinhada à esquerda. A
   largura reservada para a maior palavra ("Financeiro") vive no
   CONTAINER (.l-hero-dynamic-line), não no elemento da palavra --
   assim o cursor fica colado nela em vez de empurrado pro fim da
   caixa inteira. */
.l-hero-dynamic-line {
  display: flex; align-items: baseline; min-height: 1.5em; min-width: 11ch;
  margin-top: 28px; margin-bottom: 8px;
}
.l-typed-content { display: inline-flex; align-items: center; }
#heroTypedWord {
  display: inline-block; min-width: 0;
  font-size: clamp(18px, 2vw, 22px); font-weight: 700; color: var(--l-soft);
}
.l-typing-cursor {
  display: inline-block; width: 2px; height: 1em; margin-left: 3px;
  background: var(--l-soft); animation: l-cursor-blink 0.8s steps(1) infinite;
}
@keyframes l-cursor-blink { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .l-typing-cursor { animation: none; opacity: 0.6; } }

.l-hero-text { font-size: clamp(16px, 1.7vw, 19px); color: rgba(255,255,255,0.74); max-width: 520px; margin-bottom: 34px; line-height: 1.65; }
.l-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.l-hero-visual { position: relative; }

/* ---- Composição "tudo conectado" (mockup provisório, ver comentário
   no HTML) -- layout em cruz: Marketing/Clientes/Financeiro/Espaço de
   trabalho são ilhas independentes ligadas ao BETTA por uma linha reta
   cada, sem nenhuma sobrepor o mockup do sistema. ---- */
.l-hero-scene { position: relative; height: 460px; }
.l-hero-node {
  position: absolute; transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(183,223,219,0.28);
  border-radius: var(--l-radius-sm); padding: 9px 16px; font-size: 13px; font-weight: 700; color: #fff;
  white-space: nowrap; backdrop-filter: blur(6px); z-index: 1;
  animation: l-float 6s ease-in-out infinite;
}
.l-hero-node.l-node-brand {
  background: var(--l-primary); border-color: var(--l-primary); box-shadow: 0 0 32px rgba(16,134,132,0.45);
  font-size: 14px; padding: 12px 20px; animation: none;
}
.l-hero-node-clientes   { top: 38%; left: 8%; }
.l-hero-node-marketing  { top: 11%; left: 50%; }
.l-hero-node-brand      { top: 38%; left: 50%; }
.l-hero-node-financeiro { top: 38%; left: 92%; }
.l-hero-node-workspace  { top: 62%; left: 50%; }

.l-hero-connector {
  position: absolute; z-index: 0;
  background: linear-gradient(90deg, rgba(183,223,219,0), rgba(183,223,219,0.45), rgba(183,223,219,0));
}
.l-hero-connector-h { height: 1px; }
.l-hero-connector-v {
  width: 1px; transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(183,223,219,0), rgba(183,223,219,0.45), rgba(183,223,219,0));
}

.l-hero-window {
  position: absolute; top: 78%; right: -4%; width: 52%; min-width: 220px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--l-radius-md); padding: 14px; transform: perspective(900px) rotateY(-8deg) rotateX(2deg);
  box-shadow: 0 30px 70px rgba(1,28,26,0.5);
}
.l-hero-window-bar { display: flex; gap: 5px; margin-bottom: 12px; }
.l-hero-window-bar span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.l-hero-window-row { display: flex; gap: 10px; }
.l-hero-window-side { width: 26%; display: flex; flex-direction: column; gap: 6px; }
.l-hero-window-side span { height: 7px; border-radius: 3px; background: rgba(143,201,196,0.35); }
.l-hero-window-side span:first-child { background: var(--l-soft); width: 70%; }
.l-hero-window-main { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.l-hero-window-main span { display: block; height: 26px; border-radius: 6px; background: rgba(255,255,255,0.06); }
.l-hero-window-main span.l-accent { background: rgba(16,134,132,0.35); width: 60%; height: 10px; }

.l-hero-dot { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: var(--l-soft); box-shadow: 0 0 8px 2px rgba(143,201,196,0.6); }

@keyframes l-float { 0%, 100% { transform: translate(-50%, -50%); } 50% { transform: translate(-50%, calc(-50% - 6px)); } }
@media (prefers-reduced-motion: reduce) { .l-hero-node { animation: none; } }

/* ============================================================
   TRANSIÇÃO — o hero termina limpo (fundo escuro até o fim, sem
   névoa branca sobreposta ao conteúdo). Este bloco fica DEPOIS do
   texto/botões/mockup, dentro do próprio hero, e só decora o espaço
   vazio que já existia no padding inferior — nunca cobre nada.
   A seção seguinte (Problema) começa com o fundo dela mesma, corte
   limpo, sem gradiente branco nem blur.
   ============================================================ */
/* Indicador de rolagem -- dá função clara pra linha+ponto (antes
   pareciam desconectados da composição). Compacto, centralizado,
   não disputa espaço com os botões (fica numa faixa própria abaixo
   deles). */
.l-hero-transition {
  position: relative; height: 74px;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 8px;
}
.l-hero-transition-line {
  width: 1px; height: 28px;
  background: linear-gradient(180deg, rgba(183,223,219,0.05), rgba(183,223,219,0.55));
  animation: l-scroll-line 1.8s ease-in-out infinite;
}
.l-hero-transition-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--l-primary); box-shadow: 0 0 0 6px rgba(16,134,132,0.18);
}
.l-hero-transition-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-top: 2px;
}
@keyframes l-scroll-line { 0%, 100% { transform: translateY(0); opacity: 0.7; } 50% { transform: translateY(4px); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .l-hero-transition-line { animation: none; } }

/* ============================================================
   PLACEHOLDER — usado em toda a landing onde uma captura/vídeo real
   do produto ainda vai entrar. Nunca finge ser a interface real.
   ============================================================ */
.l-placeholder {
  border: 1.5px dashed var(--l-gray-300);
  border-radius: var(--l-radius-lg);
  background: linear-gradient(160deg, var(--l-surface) 0%, var(--l-surface-2) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 12px; padding: 40px 28px; min-height: 260px;
  color: var(--l-muted);
}
.l-placeholder-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--l-inst-surface); color: var(--l-deep);
  display: flex; align-items: center; justify-content: center;
}
.l-placeholder-icon svg { width: 24px; height: 24px; }
.l-placeholder-label { font-weight: 700; font-size: 14.5px; color: var(--l-text); }
.l-placeholder-note { font-size: 12.5px; max-width: 320px; }
.l-placeholder-tag {
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--l-gray-900); color: #fff; padding: 3px 9px; border-radius: 999px;
}
.l-placeholder-lg { min-height: 380px; }
.l-placeholder-on-dark { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.18); color: rgba(255,255,255,0.6); }
.l-placeholder-on-dark .l-placeholder-label { color: #fff; }
.l-placeholder-on-dark .l-placeholder-icon { background: rgba(255,255,255,0.1); color: #fff; }

/* ============================================================
   NÚMERO DE CAPÍTULO — motivo visual recorrente nas seções claras
   redesenhadas, amarra a narrativa entre elas sem repetir o mesmo
   layout de "título + três cards" toda vez.
   ============================================================ */
.l-chapter-num {
  position: absolute; top: 40px; right: 24px; font-size: clamp(64px, 9vw, 130px);
  font-weight: 800; line-height: 1; color: rgba(16,134,132,0.06);
  pointer-events: none; user-select: none; z-index: 0;
}
/* Grid técnico quase invisível, reutilizável em qualquer seção clara. */
.l-tech-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.6;
  background-image:
    linear-gradient(rgba(16,134,132,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,134,132,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* ============================================================
   PROBLEMA — cena de fragmentação: ferramentas soltas ao redor de
   "SEU NEGÓCIO", convergindo visualmente ao rolar. Fundo off-white
   (não branco puro) + grid técnico quase invisível.
   ============================================================ */
.l-section-problema { background: var(--l-off-white); overflow: hidden; }
.l-fragment-scene { position: relative; height: 560px; margin: 8px 0 40px; }
.l-fragment-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: var(--l-deep); color: #fff; border-radius: var(--l-radius-md);
  padding: 16px 26px; font-weight: 800; font-size: 15px; letter-spacing: 0.02em;
  box-shadow: 0 16px 40px rgba(8,78,77,0.28); z-index: 2; white-space: nowrap;
}
.l-fragment-chip {
  position: absolute; background: #fff; border: 1px solid var(--l-border);
  box-shadow: var(--l-shadow-sm); border-radius: var(--l-radius-sm);
  padding: 9px 16px; font-weight: 700; font-size: 13.5px; color: var(--l-text);
  z-index: 1; transition: transform 0.8s cubic-bezier(.22,.68,0,1);
}
.l-fragment-chip[data-settle] { transform: translate(var(--x0,0), var(--y0,0)) rotate(var(--r0,0deg)); }
.l-fragment-scene.is-settled .l-fragment-chip[data-settle] { transform: translate(0,0) rotate(0deg); }
.l-fragment-note {
  position: absolute; font-size: 11.5px; font-weight: 600; color: var(--l-muted);
  letter-spacing: 0.01em; z-index: 1; max-width: 130px;
}
.l-fragment-line {
  position: absolute; height: 1px; background: rgba(16,134,132,0.18); z-index: 0;
  border-top: 1px dashed rgba(16,134,132,0.22); background: none;
}
.l-problem-close {
  position: relative; z-index: 1;
  font-size: clamp(19px, 2.2vw, 24px); font-weight: 700; color: var(--l-deep);
  max-width: 640px;
}
@media (prefers-reduced-motion: reduce) { .l-fragment-chip { transition: none; } }

/* ============================================================
   SOLUÇÃO — módulos conectados (composição leve, não é diagrama técnico)
   ============================================================ */
.l-modules-web {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 48px;
  position: relative;
}
.l-module-node {
  background: #fff; border: 1px solid var(--l-border); border-radius: var(--l-radius-md);
  padding: 16px 22px; font-weight: 700; font-size: 14.5px; box-shadow: var(--l-shadow-sm);
  display: flex; align-items: center; gap: 10px; color: var(--l-text);
}
.l-module-node .l-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--l-primary); flex-shrink: 0; }
.l-module-node.l-node-center {
  background: var(--l-deep); color: #fff; box-shadow: var(--l-shadow-md);
}
.l-module-node.l-node-center .l-dot { background: #fff; }

/* ============================================================
   PARA QUEM É — jornada de crescimento (3 momentos em linha,
   tamanhos/posições variados) + faixa contínua dos tipos de negócio.
   Fundo com tom verde muito suave (não branco puro).
   ============================================================ */
.l-section-publico { background: var(--l-inst-surface); overflow: hidden; }
.l-journey { position: relative; display: flex; align-items: center; gap: 0; margin: 48px 0 20px; flex-wrap: wrap; }
.l-journey-step {
  position: relative; background: #fff; border: 1px solid var(--l-border);
  border-radius: var(--l-radius-md); box-shadow: var(--l-shadow-sm);
  padding: 26px 24px; flex: 1 1 240px; min-width: 220px;
}
.l-journey-step:nth-child(3) { transform: translateY(14px); }
.l-journey-step:nth-child(5) { transform: translateY(-10px); }
.l-journey-num {
  font-size: 12px; font-weight: 800; letter-spacing: 0.08em; color: var(--l-primary);
  margin-bottom: 10px; display: block;
}
.l-journey-step h3 { font-size: 15.5px; letter-spacing: 0.01em; margin-bottom: 8px; text-transform: uppercase; }
.l-journey-step p { font-size: 14px; color: var(--l-muted); line-height: 1.55; }
.l-journey-arrow {
  flex: 0 0 auto; width: 56px; height: 1px; position: relative;
  background: linear-gradient(90deg, rgba(16,134,132,0.1), rgba(16,134,132,0.4));
  margin: 0 -2px; align-self: center;
}
.l-journey-arrow::after {
  content: ''; position: absolute; right: 0; top: 50%; width: 6px; height: 6px;
  border-right: 1.5px solid var(--l-primary); border-bottom: 1.5px solid var(--l-primary);
  transform: translateY(-50%) rotate(-45deg);
}
.l-journey-tagline {
  font-size: clamp(17px, 1.9vw, 21px); font-weight: 700; color: var(--l-deep);
  margin: 32px 0 44px;
}

.l-marquee { position: relative; overflow: hidden; padding: 18px 0; border-top: 1px solid rgba(16,134,132,0.14); }
.l-marquee-track {
  display: flex; gap: 40px; width: max-content;
  animation: l-marquee-scroll 32s linear infinite;
}
.l-marquee:hover .l-marquee-track { animation-play-state: paused; }
.l-marquee-item { font-size: 14.5px; font-weight: 600; color: var(--l-deep); white-space: nowrap; display: inline-flex; align-items: center; gap: 10px; }
.l-marquee-item::after { content: '•'; color: var(--l-pale); }
@keyframes l-marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .l-marquee-track { animation: none; flex-wrap: wrap; }
  .l-marquee { overflow: visible; }
}

@media (max-width: 768px) {
  .l-journey { flex-direction: column; align-items: stretch; }
  .l-journey-step:nth-child(3), .l-journey-step:nth-child(5) { transform: none; }
  .l-journey-arrow { width: 1px; height: 28px; margin: 4px auto; }
  .l-journey-arrow::after { right: -2.5px; top: 100%; transform: translateY(-100%) rotate(45deg); }
}

/* ============================================================
   FUNCIONALIDADES — vitrine com painel fixo (sticky) no desktop;
   lista compacta empilhada no mobile (sem sticky).
   ============================================================ */
.l-section-func { background: #fff; }
.l-features-showcase { display: grid; grid-template-columns: 300px 1fr; gap: 48px; margin-top: 40px; }
.l-features-nav { display: flex; flex-direction: column; }
.l-features-nav-item {
  text-align: left; background: none; border: none; border-left: 2px solid var(--l-border);
  padding: 22px 20px; font-size: 15px; font-weight: 700; color: var(--l-muted);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.l-features-nav-item.is-active { color: var(--l-deep); border-left-color: var(--l-primary); }
.l-features-stage-wrap { position: relative; }
.l-features-stage {
  position: sticky; top: calc(var(--l-header-h) + 24px);
  background: var(--l-inst-surface); border-radius: var(--l-radius-lg);
  padding: 36px; min-height: 420px;
}
.l-features-stage-index { font-size: 12.5px; font-weight: 800; color: var(--l-primary); letter-spacing: 0.06em; text-transform: uppercase; }
.l-features-stage h3 { font-size: 25px; margin: 8px 0 10px; }
.l-features-stage-tagline { font-size: 15.5px; color: var(--l-muted); line-height: 1.6; max-width: 440px; margin-bottom: 18px; }
.l-features-stage-benefits { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.l-features-stage-benefits li { font-size: 14px; color: var(--l-text); display: flex; gap: 8px; align-items: flex-start; }
.l-features-stage-benefits li::before { content: '—'; color: var(--l-primary); flex-shrink: 0; }
.l-features-stage-link { font-size: 12.5px; color: var(--l-dark); font-weight: 600; margin-bottom: 18px; }

/* Shell discreto para a captura -- ícone + nome, não uma caixa vazia
   enorme. TODO: trocar por <img src="assets/screenshots/<modulo>.webp"
   style="object-fit:contain"> quando as capturas reais existirem. */
.l-shot-shell {
  display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--l-border);
  border-radius: var(--l-radius-sm); padding: 14px 18px; max-width: 320px;
}
.l-shot-shell-icon {
  width: 34px; height: 34px; border-radius: 8px; background: var(--l-inst-surface); color: var(--l-deep);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.l-shot-shell-icon svg { width: 18px; height: 18px; }
.l-shot-shell-label { font-size: 12.5px; color: var(--l-muted); }

.l-features-mobile { display: none; }

@media (max-width: 1024px) {
  .l-features-showcase { display: none; }
  .l-features-mobile { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
  .l-features-mobile-item { padding: 28px 0; border-bottom: 1px solid var(--l-border); }
  .l-features-mobile-item:last-child { border-bottom: none; }
  .l-features-mobile-item h3 { font-size: 19px; margin: 6px 0 8px; }
  .l-features-mobile-item p { font-size: 14.5px; color: var(--l-muted); line-height: 1.6; margin-bottom: 14px; }
}

/* ============================================================
   IA
   ============================================================ */
.l-ia-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.l-ia-pill-list { display: flex; flex-direction: column; gap: 10px; margin: 28px 0 30px; }
.l-ia-pill {
  display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 600;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14);
  padding: 13px 18px; border-radius: var(--l-radius-sm); color: #fff;
}
.l-ia-pill .l-badge-dev {
  margin-left: auto; font-size: 10.5px; font-weight: 800; letter-spacing: 0.05em;
  text-transform: uppercase; background: rgba(255,255,255,0.14); padding: 3px 9px; border-radius: 999px;
  white-space: nowrap;
}
.l-ia-quote {
  font-size: 18px; font-weight: 700; color: #fff; border-left: 3px solid var(--l-primary-mid, #B8D0E8);
  padding-left: 18px; margin-top: 8px;
}

/* ============================================================
   MARKETING — gomos
   ============================================================ */
.l-gomo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 44px 0 40px; }
.l-gomo-card {
  background: #fff; border: 1px solid var(--l-border); border-radius: var(--l-radius-md);
  padding: 22px; box-shadow: var(--l-shadow-sm);
}
.l-gomo-card h4 { font-size: 15.5px; margin-bottom: 6px; }
.l-gomo-card p { font-size: 13.5px; color: var(--l-muted); line-height: 1.55; }

/* ============================================================
   BANCO DE IDEIAS — mais liberdade visual
   ============================================================ */
.l-canvas-scene {
  position: relative; border-radius: var(--l-radius-lg); overflow: hidden;
  background: repeating-linear-gradient(0deg, var(--l-surface) 0 1px, transparent 1px 28px),
              repeating-linear-gradient(90deg, var(--l-surface) 0 1px, transparent 1px 28px),
              #fff;
  min-height: 380px; border: 1px solid var(--l-border);
}
.l-canvas-postit {
  position: absolute; width: 130px; padding: 14px; border-radius: 4px;
  font-size: 12.5px; font-weight: 600; box-shadow: var(--l-shadow-md); color: #4A3B00;
  background: #FFE58A;
}
.l-canvas-shape { position: absolute; border-radius: var(--l-radius-sm); box-shadow: var(--l-shadow-sm); }

/* ============================================================
   PERSONALIZAÇÃO / TEMA INTERATIVO
   ============================================================ */
.l-theme-section-grid {
  display: grid; grid-template-columns: 340px 1fr; gap: 40px; align-items: start; margin-top: 40px;
}
.l-theme-list { display: flex; flex-direction: column; gap: 10px; }
.l-theme-option {
  display: flex; align-items: center; gap: 12px; width: 100%; text-align: left;
  background: #fff; border: 1.5px solid var(--l-border); border-radius: var(--l-radius-sm);
  padding: 11px 14px; transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.l-theme-option:hover { border-color: var(--l-primary); }
.l-theme-option.is-active { border-color: var(--l-deep); box-shadow: 0 0 0 3px var(--l-pale); }
.l-theme-swatch-mini { display: flex; border-radius: 5px; overflow: hidden; flex-shrink: 0; box-shadow: 0 0 0 1px rgba(0,0,0,0.06); }
.l-theme-swatch-mini span { width: 12px; height: 26px; display: block; }
.l-theme-option-name { font-size: 14px; font-weight: 700; }
.l-theme-custom-picker {
  display: flex; align-items: center; gap: 12px; margin-top: 6px; padding: 12px 14px;
  border: 1.5px dashed var(--l-border); border-radius: var(--l-radius-sm);
}
.l-theme-custom-picker input[type="color"] {
  width: 40px; height: 40px; border: none; border-radius: 8px; padding: 0; background: none; cursor: pointer;
}
.l-theme-restore {
  margin-top: 16px; font-size: 13px; font-weight: 700; color: var(--l-deep);
  background: none; border: none; text-decoration: underline; padding: 4px 0;
}

/* Demo mockup — estrutura real (sidebar + topbar + cards), cores
   controladas por variáveis próprias (--demo-*), nunca as globais do
   theme.css real. */
.l-demo-frame {
  border-radius: var(--l-radius-lg); overflow: hidden; box-shadow: var(--l-shadow-lg);
  border: 1px solid var(--l-border);
  --demo-dark: #1C3D5A; --demo-primary: #3B7AB5; --demo-light: #E8F0F8; --demo-text-on-primary: #FFFFFF;
}
.l-demo-body { display: flex; min-height: 380px; background: #fff; }
.l-demo-sidebar {
  width: 168px; flex-shrink: 0; background: var(--demo-dark); padding: 18px 14px;
  display: flex; flex-direction: column; gap: 4px; transition: background var(--l-transition);
}
.l-demo-brand { display: flex; align-items: center; gap: 8px; color: #fff; font-weight: 800; font-size: 13px; margin-bottom: 18px; }
.l-demo-brand-dot { width: 20px; height: 20px; border-radius: 6px; background: rgba(255,255,255,0.18); }
.l-demo-nav-item {
  font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.7); padding: 8px 10px; border-radius: 6px;
}
.l-demo-nav-item.is-active { background: rgba(255,255,255,0.14); color: #fff; }
.l-demo-main { flex: 1; display: flex; flex-direction: column; }
.l-demo-topbar {
  height: 44px; border-bottom: 1px solid var(--l-border); display: flex; align-items: center;
  justify-content: flex-end; padding: 0 18px; gap: 10px;
}
.l-demo-topbar-btn {
  background: var(--demo-primary); color: var(--demo-text-on-primary); font-size: 11.5px; font-weight: 700;
  padding: 7px 13px; border-radius: 6px; transition: background var(--l-transition);
}
.l-demo-content { padding: 20px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.l-demo-cards-row { display: flex; gap: 12px; }
.l-demo-card {
  flex: 1; background: var(--l-surface); border: 1px solid var(--l-border); border-radius: 10px; padding: 14px;
}
.l-demo-card-value { font-size: 20px; font-weight: 800; color: var(--demo-dark); transition: color var(--l-transition); }
.l-demo-card-label { font-size: 11px; color: var(--l-muted); margin-top: 2px; }
.l-demo-highlight-bar { height: 6px; border-radius: 4px; background: var(--demo-primary); width: 60%; transition: background var(--l-transition); }
.l-demo-frame, .l-demo-sidebar, .l-demo-topbar-btn, .l-demo-card-value, .l-demo-highlight-bar {
  transition: background var(--l-transition), color var(--l-transition);
}

/* ============================================================
   FLUXO CONECTADO
   ============================================================ */
.l-flow-steps { display: flex; flex-direction: column; gap: 0; margin-top: 44px; max-width: 640px; }
.l-flow-step { display: flex; gap: 18px; padding: 18px 0; position: relative; }
.l-flow-step:not(:last-child)::before {
  content: ''; position: absolute; left: 17px; top: 46px; bottom: -4px; width: 2px; background: var(--l-border);
}
.l-flow-num {
  width: 34px; height: 34px; border-radius: 50%; background: var(--l-deep); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; flex-shrink: 0; z-index: 1;
}
.l-flow-text { font-size: 15.5px; font-weight: 600; padding-top: 6px; }

/* ============================================================
   COMPARAÇÃO
   ============================================================ */
.l-compare-table { width: 100%; border-collapse: collapse; margin-top: 40px; }
.l-compare-table th { text-align: left; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--l-muted); padding: 12px 18px; }
.l-compare-table th:last-child { color: var(--l-deep); }
.l-compare-table td { padding: 16px 18px; font-size: 14.5px; border-top: 1px solid var(--l-border); }
.l-compare-table tr td:first-child { color: var(--l-muted); }
.l-compare-table tr td:last-child { font-weight: 700; color: var(--l-text); }
.l-compare-table tbody tr:last-child { background: var(--l-inst-surface); }

/* ============================================================
   PROVAS
   ============================================================ */
.l-proof-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.l-proof-item {
  background: #fff; border: 1px solid var(--l-border); border-radius: var(--l-radius-md);
  padding: 20px; font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 12px;
}
.l-proof-item svg { color: var(--l-primary); flex-shrink: 0; width: 20px; height: 20px; }

/* ============================================================
   FAQ
   ============================================================ */
.l-faq-list { max-width: 720px; margin-top: 40px; }
.l-faq-item { border-bottom: 1px solid var(--l-border); }
.l-faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 4px; background: none; border: none; text-align: left; font-size: 16px; font-weight: 700; color: var(--l-text);
}
.l-faq-q svg { flex-shrink: 0; transition: transform 0.2s ease; color: var(--l-muted); }
.l-faq-item.is-open .l-faq-q svg { transform: rotate(180deg); }
.l-faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.25s ease;
  font-size: 14.5px; color: var(--l-muted); line-height: 1.6;
}
.l-faq-item.is-open .l-faq-a { max-height: 240px; }
.l-faq-a-inner { padding: 0 4px 20px; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.l-cta-final { text-align: center; padding: 110px 0; }
.l-cta-final h2 { font-size: clamp(28px, 4vw, 44px); color: #fff; margin-bottom: 16px; }
.l-cta-final p { color: rgba(255,255,255,0.72); font-size: 17px; max-width: 480px; margin: 0 auto 34px; }
.l-cta-final .l-hero-ctas { justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.l-footer { background: var(--l-gray-900); color: rgba(255,255,255,0.55); padding: 48px 0 28px; font-size: 13.5px; }
.l-footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; margin-bottom: 32px; }
.l-footer-brand { color: #fff; font-weight: 800; font-size: 16px; display: flex; align-items: center; gap: 8px; }
.l-footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.l-footer-links a { color: rgba(255,255,255,0.68); }
.l-footer-links a:hover { color: #fff; }
.l-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.l-reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.22,.68,0,1); }
.l-reveal.is-visible { opacity: 1; transform: translateY(0); }
.l-reveal-delay-1.is-visible { transition-delay: 0.08s; }
.l-reveal-delay-2.is-visible { transition-delay: 0.16s; }
.l-reveal-delay-3.is-visible { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .l-reveal { opacity: 1; transform: none; transition: none; }
  .l-chaos-chip { transition: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  .l-hero-grid, .l-ia-grid { grid-template-columns: 1fr; }
  /* Composição dos módulos aparece ABAIXO do texto (ordem normal do
     documento) -- antes tinha order:-1 e ficava acima, invertido. */
  .l-hero-scene { height: 360px; margin-top: 8px; }
  .l-hero-node-clientes    { left: 10%; }
  .l-hero-node-financeiro  { left: 90%; }
  .l-hero-connector-clientes   { left: 11%; width: 39%; }
  .l-hero-connector-financeiro { width: 39%; }
  .l-audience-grid { grid-template-columns: repeat(2, 1fr); }
  .l-gomo-grid { grid-template-columns: repeat(2, 1fr); }
  .l-theme-section-grid { grid-template-columns: 1fr; }
  .l-proof-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .l-nav-desktop, .l-header-actions.l-desktop-only { display: none; }
  .l-menu-toggle { display: flex; }
  .l-nav-mobile { display: flex; }
  .l-section { padding: 64px 0; }
  .l-hero { padding: calc(var(--l-header-h) + 48px) 0 24px; }
  .l-hero-scene { height: 300px; }
  .l-hero-node { font-size: 11.5px; padding: 7px 12px; }
  .l-hero-node-clientes    { left: 8%; }
  .l-hero-node-financeiro  { left: 92%; }
  .l-hero-connector-clientes   { left: 9%; width: 41%; }
  .l-hero-connector-financeiro { width: 41%; }
  .l-hero-window { width: 82%; right: -2%; top: 80%; }
  .l-hero-transition { height: 52px; }
  .l-hero-transition-line { height: 18px; }
  .l-feature-row { grid-template-columns: 1fr; gap: 28px; padding: 36px 0; }
  .l-feature-row.l-reverse .l-feature-media,
  .l-feature-row.l-reverse .l-feature-copy { order: initial; }
  .l-audience-grid { grid-template-columns: 1fr; }
  .l-gomo-grid { grid-template-columns: 1fr; }
  .l-problem-list { grid-template-columns: 1fr; }
  .l-proof-list { grid-template-columns: 1fr; }
  .l-compare-table { font-size: 13px; }
  .l-compare-table th, .l-compare-table td { padding: 10px 8px; }
  .l-demo-sidebar { width: 108px; padding: 14px 8px; }
  .l-demo-nav-item { font-size: 11px; }
  .l-cta-final { padding: 72px 0; }
}

@media (max-width: 480px) {
  .l-hero-ctas, .l-cta-final .l-hero-ctas { flex-direction: column; }
  .l-btn { width: 100%; }
  .l-demo-cards-row { flex-direction: column; }
  .l-footer-top { flex-direction: column; }
}
