/* ═══════════════════════════════════════════
   AVCB.AI — Public landing page styles
   Used by: landing.html
   Design language: shadcn-inspired (hairline
   borders, layered glows, 4px spacing grid,
   visible focus rings) translated to plain CSS.
   Dark surface palette mirrors auth.css so the
   landing → /login transition feels seamless.
   Brand tokens come from tokens.css.
   ═══════════════════════════════════════════ */

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

:root {
  --lp-bg:           #0a0f1c;
  --lp-bg-raised:    #0e1526;
  --lp-text:         #e6ebf3;
  --lp-text-dim:     #9aa7ba;
  --lp-text-dimmer:  #66718a;
  --lp-border:       rgba(148, 163, 184, 0.16);
  --lp-border-soft:  rgba(148, 163, 184, 0.09);
  --lp-surface:      rgba(17, 24, 42, 0.72);
  --lp-surface-2:    rgba(22, 30, 52, 0.85);
  --lp-radius-sm:    8px;
  --lp-radius:       12px;
  --lp-radius-lg:    18px;
  --lp-accent:       var(--brand-primary, #ea6a2b);
  --lp-accent-soft:  rgba(234, 106, 43, 0.12);
  --lp-accent-border: rgba(234, 106, 43, 0.35);
  --lp-ring:         rgba(234, 106, 43, 0.45);
  --lp-shadow-sm:    0 1px 2px rgba(0, 0, 0, 0.3);
  --lp-shadow-lg:    0 24px 70px rgba(0, 0, 0, 0.45);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--lp-bg);
  color: var(--lp-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: rgba(234, 106, 43, 0.35); color: #fff; }

h1, h2, h3 {
  letter-spacing: -0.022em;
  line-height: 1.15;
  text-wrap: balance;
}

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--lp-ring);
  border-radius: var(--lp-radius-sm);
}

.lp-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Section primitives ── */

.lp-eyebrow {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-accent);
  margin-bottom: 0.85rem;
}

.lp-section { padding: 5.5rem 0; position: relative; }

.lp-section h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 0.9rem;
}

.lp-section-sub {
  text-align: center;
  color: var(--lp-text-dim);
  font-size: 1.02rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Buttons (shadcn-style: fixed heights, inline-flex, ring focus) ── */

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 40px;
  padding: 0 1.15rem;
  border-radius: var(--lp-radius-sm);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease,
              color 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.lp-btn:active { transform: scale(0.98); }
.lp-btn svg { width: 15px; height: 15px; flex-shrink: 0; }

.lp-btn-lg { height: 48px; padding: 0 1.6rem; font-size: 0.98rem; border-radius: 10px; }

.lp-btn-primary {
  background: linear-gradient(180deg, #f07a3e, var(--lp-accent));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--lp-shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.lp-btn-primary:hover {
  background: linear-gradient(180deg, #f28350, #ef763a);
  box-shadow: 0 4px 16px rgba(234, 106, 43, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.lp-btn-primary svg { transition: transform 0.15s ease; }
.lp-btn-primary:hover svg { transform: translateX(2px); }

.lp-btn-ghost {
  color: var(--lp-text);
  border-color: var(--lp-border);
  background: rgba(148, 163, 184, 0.04);
}
.lp-btn-ghost:hover {
  border-color: rgba(148, 163, 184, 0.35);
  background: rgba(148, 163, 184, 0.09);
  color: #fff;
}

/* ── Header ── */

.lp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.lp-header-scrolled {
  background: rgba(10, 15, 28, 0.78);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: var(--lp-border-soft);
}

.lp-header-inner {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  height: 64px;
}

.lp-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  text-decoration: none;
}
.lp-logo span { color: var(--lp-accent); }
.lp-logo img { width: 26px; height: 26px; border-radius: 7px; }

.lp-nav {
  display: flex;
  gap: 0.35rem;
  margin-left: auto;
}
.lp-nav a {
  color: var(--lp-text-dim);
  text-decoration: none;
  font-size: 0.89rem;
  font-weight: 500;
  padding: 0.45rem 0.8rem;
  border-radius: var(--lp-radius-sm);
  transition: color 0.15s ease, background 0.15s ease;
}
.lp-nav a:hover { color: #fff; background: rgba(148, 163, 184, 0.08); }

.lp-header-actions { display: flex; gap: 0.6rem; align-items: center; }
.lp-header-actions .lp-btn { height: 36px; font-size: 0.86rem; }

/* ── Hero ── */

.lp-hero {
  position: relative;
  text-align: center;
  padding: 6.5rem 0 5rem;
  margin-top: -64px;
  padding-top: calc(6.5rem + 64px);
  overflow: hidden;
}

/* layered background: dot grid + two glows, masked toward the top */
.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(148, 163, 184, 0.13) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 0%, #000 35%, transparent 75%);
  mask-image: radial-gradient(ellipse 75% 65% at 50% 0%, #000 35%, transparent 75%);
  pointer-events: none;
}
.lp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 65% 45% at 50% -5%, rgba(37, 78, 145, 0.40), transparent),
    radial-gradient(ellipse 35% 30% at 78% 22%, rgba(234, 106, 43, 0.10), transparent);
  pointer-events: none;
}

.lp-hero > .lp-container { position: relative; z-index: 1; }

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--lp-text-dim);
  border: 1px solid var(--lp-border);
  border-radius: 999px;
  padding: 0.38rem 1rem 0.38rem 0.7rem;
  margin-bottom: 2rem;
  background: rgba(17, 24, 42, 0.55);
  backdrop-filter: blur(8px);
}

.lp-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lp-accent);
  box-shadow: 0 0 0 0 rgba(234, 106, 43, 0.5);
  animation: lp-pulse 2.4s ease-out infinite;
}
@keyframes lp-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(234, 106, 43, 0.45); }
  70%  { box-shadow: 0 0 0 7px rgba(234, 106, 43, 0); }
  100% { box-shadow: 0 0 0 0 rgba(234, 106, 43, 0); }
}

.lp-hero h1 {
  font-size: clamp(2.3rem, 5.4vw, 3.9rem);
  font-weight: 700;
  color: #fff;
  margin: 0 auto 1.4rem;
  max-width: 820px;
}

.lp-hero h1 .lp-grad {
  background: linear-gradient(92deg, #f3905d 0%, var(--lp-accent) 55%, #d85d22 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-hero-sub {
  max-width: 660px;
  margin: 0 auto 2.4rem;
  font-size: 1.1rem;
  color: var(--lp-text-dim);
}

.lp-hero-ctas {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}

.lp-hero-checks {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.4rem;
  font-size: 0.84rem;
  color: var(--lp-text-dimmer);
}
.lp-hero-checks span { display: inline-flex; align-items: center; gap: 0.4rem; }
.lp-hero-checks svg { width: 14px; height: 14px; color: #34d399; }

/* ── Mock chat window ── */

.lp-chat-card {
  max-width: 660px;
  margin: 3.75rem auto 0;
  text-align: left;
  background: var(--lp-surface);
  backdrop-filter: blur(20px);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  box-shadow: var(--lp-shadow-lg), 0 0 80px rgba(37, 78, 145, 0.18);
  overflow: hidden;
}

.lp-chat-chrome {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.1rem;
  border-bottom: 1px solid var(--lp-border-soft);
  background: rgba(10, 15, 28, 0.45);
}
.lp-chat-chrome i {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(148, 163, 184, 0.25);
}
.lp-chat-chrome i:nth-child(1) { background: rgba(255, 95, 86, 0.75); }
.lp-chat-chrome i:nth-child(2) { background: rgba(255, 189, 46, 0.75); }
.lp-chat-chrome i:nth-child(3) { background: rgba(39, 201, 63, 0.7); }
.lp-chat-chrome em {
  font-style: normal;
  font-size: 0.74rem;
  color: var(--lp-text-dimmer);
  margin: 0 auto;
  transform: translateX(-21px); /* visually centered vs the 3 dots */
}

.lp-chat-body { padding: 1.4rem; }

/* Animated demo mode (class set by JS; static markup is the fallback) */
.lp-chat-anim .lp-chat-body {
  height: 350px;
  overflow: hidden;
  scroll-behavior: smooth;
}
.lp-chat-anim .lp-chat-msg { margin-bottom: 1rem; }
.lp-chat-anim .lp-chat-msg:last-child { margin-bottom: 0; }
.lp-chat-anim .lp-chat-msg { animation: lp-msg-in 0.3s ease both; }
@keyframes lp-msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

.lp-caret {
  display: inline-block;
  width: 2px;
  height: 1.05em;
  margin-left: 2px;
  vertical-align: text-bottom;
  background: var(--lp-accent);
  animation: lp-blink 0.9s steps(1) infinite;
}
@keyframes lp-blink { 50% { opacity: 0; } }

.lp-typing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0.9rem 1.05rem;
}
.lp-typing i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lp-text-dim);
  animation: lp-bounce 1.2s ease-in-out infinite;
}
.lp-typing i:nth-child(2) { animation-delay: 0.15s; }
.lp-typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes lp-bounce {
  0%, 60%, 100% { transform: none; opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.lp-chat-anim .lp-chat-sources { animation: lp-msg-in 0.4s ease both; }

.lp-chat-msg {
  font-size: 0.92rem;
  padding: 0.85rem 1.05rem;
  border-radius: var(--lp-radius);
}

.lp-chat-user {
  background: var(--lp-accent-soft);
  border: 1px solid rgba(234, 106, 43, 0.28);
  color: var(--lp-text);
  max-width: 85%;
  margin-left: auto;
  margin-bottom: 1rem;
  border-bottom-right-radius: 4px;
}

.lp-chat-assistant {
  background: rgba(13, 19, 35, 0.65);
  border: 1px solid var(--lp-border-soft);
  color: var(--lp-text-dim);
  border-bottom-left-radius: 4px;
}
.lp-chat-assistant strong { color: var(--lp-text); font-weight: 600; }

.lp-chat-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-text-dimmer);
  margin-bottom: 0.45rem;
}

.lp-chat-sources {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px dashed var(--lp-border-soft);
}

.lp-source-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.73rem;
  font-weight: 500;
  color: #f3905d;
  border: 1px solid var(--lp-accent-border);
  border-radius: 999px;
  padding: 0.22rem 0.7rem;
  background: rgba(234, 106, 43, 0.08);
}
.lp-source-pill svg { width: 11px; height: 11px; }

/* ── Stats strip ── */

.lp-stats {
  border-top: 1px solid var(--lp-border-soft);
  border-bottom: 1px solid var(--lp-border-soft);
  background: rgba(14, 21, 38, 0.5);
}

.lp-stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 2.1rem 0;
}

.lp-stat { text-align: center; }
.lp-stat b {
  display: block;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.lp-stat span { font-size: 0.84rem; color: var(--lp-text-dim); }

/* ── Feature grid ── */

.lp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 3rem;
}

.lp-card {
  position: relative;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border-soft);
  border-radius: var(--lp-radius-lg);
  padding: 1.7rem 1.6rem;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}
.lp-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(234, 106, 43, 0), transparent);
  transition: background 0.25s ease;
}
.lp-card:hover {
  border-color: var(--lp-border);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}
.lp-card:hover::before {
  background: linear-gradient(90deg, transparent, rgba(234, 106, 43, 0.55), transparent);
}

.lp-card-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: linear-gradient(160deg, rgba(234, 106, 43, 0.2), rgba(234, 106, 43, 0.06));
  border: 1px solid var(--lp-accent-border);
  color: #f3905d;
  margin-bottom: 1.05rem;
}
.lp-card-icon svg { width: 20px; height: 20px; }

.lp-card h3 {
  font-size: 1.03rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.45rem;
}

.lp-card p { font-size: 0.9rem; color: var(--lp-text-dim); }

/* ── Steps ── */

.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 3rem;
  position: relative;
}

.lp-step {
  position: relative;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border-soft);
  border-radius: var(--lp-radius-lg);
  padding: 1.8rem 1.6rem 1.7rem;
  text-align: left;
}

.lp-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(180deg, #f07a3e, var(--lp-accent));
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
  box-shadow: 0 4px 14px rgba(234, 106, 43, 0.35);
}

.lp-step h3 {
  font-size: 1.02rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.45rem;
}

.lp-step p { font-size: 0.9rem; color: var(--lp-text-dim); }

/* connector arrows between step cards (desktop only) */
.lp-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.85rem;
  width: 0.6rem;
  height: 0.6rem;
  border-top: 2px solid var(--lp-text-dimmer);
  border-right: 2px solid var(--lp-text-dimmer);
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.6;
}

.lp-honesty {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  max-width: 640px;
  margin: 2.75rem auto 0;
  font-size: 0.86rem;
  color: var(--lp-text-dim);
  background: rgba(37, 78, 145, 0.12);
  border: 1px solid rgba(96, 140, 200, 0.25);
  border-radius: var(--lp-radius);
  padding: 0.95rem 1.15rem;
  text-align: left;
}
.lp-honesty svg { width: 17px; height: 17px; flex-shrink: 0; color: #7ea4d8; margin-top: 2px; }

/* ── Sobre ── */

.lp-sobre-card {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  max-width: 880px;
  margin: 0 auto;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border-soft);
  border-radius: var(--lp-radius-lg);
  padding: 2.5rem 2.75rem;
}

.lp-sobre-logo {
  width: 104px;
  height: 104px;
  border-radius: var(--lp-radius-lg);
  flex-shrink: 0;
  object-fit: contain;
  background: #fff;
  padding: 0.5rem;
  box-shadow: var(--lp-shadow-sm);
}

.lp-sobre-card h2 {
  text-align: left;
  font-size: 1.45rem;
  margin-bottom: 0.7rem;
}
.lp-sobre-card .lp-eyebrow { text-align: left; margin-bottom: 0.55rem; }
.lp-sobre-card p { color: var(--lp-text-dim); font-size: 0.95rem; }
.lp-sobre-card a {
  color: #f3905d;
  text-decoration: none;
  border-bottom: 1px solid rgba(234, 106, 43, 0.4);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.lp-sobre-card a:hover { color: #fff; border-bottom-color: #fff; }
.lp-sobre-card a strong { color: inherit; }

/* ── FAQ (shadcn accordion style: one bordered list, divided rows) ── */

.lp-faq { max-width: 720px; }
.lp-faq h2 { margin-bottom: 2.25rem; }

.lp-faq-list {
  border: 1px solid var(--lp-border-soft);
  border-radius: var(--lp-radius-lg);
  background: var(--lp-surface);
  overflow: hidden;
}

.lp-faq details + details { border-top: 1px solid var(--lp-border-soft); }

.lp-faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--lp-text);
  transition: background 0.15s ease;
}
.lp-faq summary:hover { background: rgba(148, 163, 184, 0.05); }
.lp-faq summary::-webkit-details-marker { display: none; }

.lp-faq summary svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--lp-text-dimmer);
  transition: transform 0.25s ease;
}
.lp-faq details[open] summary svg { transform: rotate(180deg); }

.lp-faq details p {
  padding: 0.15rem 1.4rem 1.25rem;
  font-size: 0.9rem;
  color: var(--lp-text-dim);
}

.lp-faq details a { color: #f3905d; }

/* ── CTA ── */

.lp-cta { padding: 5.5rem 0; }

.lp-cta-card {
  position: relative;
  text-align: center;
  border: 1px solid var(--lp-border);
  border-radius: 22px;
  padding: 4rem 2rem;
  background:
    radial-gradient(ellipse 70% 90% at 50% 115%, rgba(234, 106, 43, 0.22), transparent),
    var(--lp-bg-raised);
  overflow: hidden;
}
.lp-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(148, 163, 184, 0.10) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 50% 100%, #000 20%, transparent 70%);
  mask-image: radial-gradient(ellipse 70% 90% at 50% 100%, #000 20%, transparent 70%);
  pointer-events: none;
}
.lp-cta-card > * { position: relative; }

.lp-cta-card h2 {
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.7rem;
}
.lp-cta-card p {
  color: var(--lp-text-dim);
  margin-bottom: 2rem;
  font-size: 0.98rem;
}

/* ── Footer ── */

.lp-footer {
  border-top: 1px solid var(--lp-border-soft);
  padding: 3.25rem 0 2.5rem;
}

.lp-footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.lp-footer-brand { max-width: 360px; }
.lp-footer-brand .lp-logo { font-size: 1.15rem; margin-bottom: 0.7rem; }
.lp-footer-brand p {
  font-size: 0.82rem;
  color: var(--lp-text-dimmer);
}

.lp-footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-text-dim);
  margin-bottom: 0.85rem;
}
.lp-footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--lp-text-dim);
  text-decoration: none;
  padding: 0.22rem 0;
  transition: color 0.15s ease;
}
.lp-footer-col a:hover { color: #fff; }

.lp-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--lp-border-soft);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--lp-text-dimmer);
}

/* ── Scroll reveal ──
   Hidden state only applies under .lp-js (set by the inline script), so the
   page degrades gracefully without JavaScript. */

.lp-js .lp-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.lp-js .lp-reveal.lp-reveal-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lp-js .lp-reveal { opacity: 1; transform: none; transition: none; }
  .lp-badge-dot { animation: none; }
  .lp-card, .lp-card:hover { transform: none; }
}

/* ── Responsive ── */

@media (max-width: 960px) {
  .lp-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-step:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -0.95rem;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }
  .lp-nav { display: none; }
  .lp-stats-inner { grid-template-columns: 1fr; gap: 1.4rem; }
}

@media (max-width: 620px) {
  .lp-section { padding: 4rem 0; }
  .lp-grid { grid-template-columns: 1fr; }
  .lp-hero { padding-bottom: 3.5rem; }
  .lp-hero h1 br { display: none; } /* let the headline wrap naturally */
  .lp-hero-ctas .lp-btn { width: 100%; }
  .lp-sobre-card {
    flex-direction: column;
    text-align: center;
    padding: 2.25rem 1.5rem;
  }
  .lp-sobre-card h2, .lp-sobre-card .lp-eyebrow { text-align: center; }
  .lp-header-actions .lp-btn-ghost { display: none; }
  .lp-chat-user { max-width: 100%; }
  .lp-cta-card { padding: 3rem 1.4rem; }
  .lp-footer-grid { flex-direction: column; gap: 1.75rem; }
}
