/* =========================================================================
   TranscriptHub — Landing page (dark, cyan accent)
   Self-contained stylesheet, scoped to the public landing page only.
   ========================================================================= */
:root {
  --lp-bg: #07090b;
  --lp-bg-soft: #0a0a0c;
  --lp-surface: #14171d;
  --lp-surface-raised: #171b22;
  --lp-border: #272d37;
  --lp-border-soft: rgba(255, 255, 255, 0.08);

  --lp-text: #f4f6f8;
  --lp-text-muted: #98a1b0;
  --lp-text-faint: #6c7585;

  --lp-accent: #00d4ff;
  --lp-accent-strong: #00eaff;
  --lp-accent-dim: rgba(0, 212, 255, 0.1);
  --lp-accent-border: rgba(0, 212, 255, 0.35);
  --lp-accent-ink: #05171c;
  --lp-gradient-accent: linear-gradient(135deg, #00eaff 0%, #00b3e6 100%);

  --lp-radius-sm: 10px;
  --lp-radius-md: 14px;
  --lp-radius-lg: 20px;
  --lp-radius-full: 999px;

  --lp-font-heading: "Poppins", "Inter", -apple-system, sans-serif;
  --lp-font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.lp {
  background: var(--lp-bg);
  color: var(--lp-text);
  font-family: var(--lp-font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.lp * {
  box-sizing: border-box;
}

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

.lp img,
.lp svg {
  display: block;
}

.lp-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--lp-font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--lp-radius-sm);
  padding: 11px 20px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.lp-btn-lg {
  padding: 15px 28px;
  font-size: 16px;
}

.lp-btn-primary {
  background: var(--lp-gradient-accent);
  color: var(--lp-accent-ink);
  box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.25), 0 8px 24px rgba(0, 212, 255, 0.25);
}

.lp-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.35), 0 12px 32px rgba(0, 212, 255, 0.35);
}

.lp-btn-ghost {
  background: transparent;
  color: var(--lp-text-muted);
}

.lp-btn-ghost:hover {
  color: var(--lp-text);
}

.lp-btn-outline {
  background: transparent;
  border-color: var(--lp-border-soft);
  color: var(--lp-text);
}

.lp-btn-outline:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.2);
}

.lp-btn-block {
  width: 100%;
}

/* ---------- Navbar ---------- */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 9, 11, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--lp-border-soft);
}

.lp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--lp-font-heading);
  font-weight: 700;
  font-size: 19px;
  color: var(--lp-text);
}

.lp-brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, #0d3b42 0%, #082327 100%);
  border: 1px solid var(--lp-accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-accent-strong);
}

.lp-brand span {
  color: var(--lp-accent-strong);
}

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

.lp-nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--lp-text-muted);
}

.lp-nav-links a:hover {
  color: var(--lp-text);
}

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

.lp-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--lp-border-soft);
  color: var(--lp-text);
  border-radius: var(--lp-radius-sm);
  padding: 8px 10px;
}

/* ---------- Hero ---------- */
.lp-hero {
  position: relative;
  padding: 88px 24px 72px;
  text-align: center;
  overflow: hidden;
}

.lp-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  width: 900px;
  height: 560px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(0, 212, 255, 0.16), transparent 70%);
  pointer-events: none;
}

.lp-hero-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp-accent-strong);
  background: var(--lp-accent-dim);
  border: 1px solid var(--lp-accent-border);
  border-radius: var(--lp-radius-full);
  padding: 7px 16px;
}

.lp-h1 {
  font-family: var(--lp-font-heading);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 24px 0 20px;
  color: var(--lp-text);
}

.lp-h1 .lp-glow {
  color: var(--lp-accent-strong);
  text-shadow: 0 0 26px rgba(0, 229, 255, 0.55);
}

.lp-lede {
  font-size: 16.5px;
  color: var(--lp-text-muted);
  max-width: 620px;
  margin: 0 auto;
}

.lp-hero-form {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-md);
  padding: 8px 8px 8px 18px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.lp-hero-form-icon {
  color: var(--lp-text-faint);
  flex-shrink: 0;
}

.lp-hero-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--lp-text);
  font-size: 15px;
  font-family: var(--lp-font-body);
  min-width: 0;
}

.lp-hero-form input::placeholder {
  color: var(--lp-text-faint);
}

.lp-hero-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--lp-text-faint);
}

.lp-platforms-label {
  margin-top: 56px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-text-faint);
}

.lp-platforms-track {
  margin-top: 24px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.lp-platforms-row {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: lp-scroll 28s linear infinite;
}

@keyframes lp-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.lp-platform {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--lp-text-muted);
  flex-shrink: 0;
}

.lp-platform-icon {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- Section shared ---------- */
.lp-section {
  padding: 88px 24px;
}

.lp-section-alt {
  background: var(--lp-bg-soft);
  border-top: 1px solid var(--lp-border-soft);
  border-bottom: 1px solid var(--lp-border-soft);
}

.lp-eyebrow {
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-accent-strong);
  background: var(--lp-accent-dim);
  border: 1px solid var(--lp-accent-border);
  border-radius: var(--lp-radius-full);
  padding: 6px 14px;
  margin-bottom: 20px;
}

.lp-h2 {
  font-family: var(--lp-font-heading);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}

.lp-h2 .lp-muted-line {
  display: block;
  color: var(--lp-text-faint);
}

.lp-h2-center {
  text-align: center;
}

.lp-h2-center .lp-eyebrow-wrap {
  display: flex;
  justify-content: center;
}

/* ---------- Feature grid ---------- */
.lp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.lp-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 28px;
}

.lp-card-highlight {
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.15), 0 16px 40px rgba(0, 212, 255, 0.12);
}

.lp-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--lp-radius-sm);
  background: rgba(0, 212, 255, 0.1);
  color: var(--lp-accent-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.lp-card h3 {
  font-family: var(--lp-font-heading);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--lp-text);
}

.lp-card p {
  font-size: 14px;
  color: var(--lp-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ---------- Before / after ---------- */
.lp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.lp-checklist {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--lp-text);
}

.lp-check-ico {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid var(--lp-accent-border);
  color: var(--lp-accent-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-compare-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 24px;
}

.lp-compare-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp-text-faint);
  margin-bottom: 14px;
}

.lp-compare-card p {
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  color: var(--lp-text-muted);
  line-height: 1.7;
  margin: 0;
}

.lp-compare-arrow {
  text-align: center;
  font-size: 13px;
  color: var(--lp-text-faint);
  margin: 18px 0;
}

.lp-compare-card-highlight {
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.15), 0 16px 40px rgba(0, 212, 255, 0.12);
}

.lp-compare-card-highlight .lp-compare-label {
  color: var(--lp-accent-strong);
}

.lp-compare-card-highlight h4 {
  font-family: var(--lp-font-heading);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--lp-text);
}

.lp-compare-card-highlight p {
  font-family: var(--lp-font-body);
  font-size: 14.5px;
}

/* ---------- Pricing ---------- */
.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
  justify-content: center;
}

.lp-price-card {
  position: relative;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.lp-price-card-highlight {
  border-color: var(--lp-accent);
  box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.2), 0 20px 50px rgba(0, 212, 255, 0.15);
}

.lp-price-pill {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lp-accent-strong);
  color: var(--lp-accent-ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--lp-radius-full);
}

.lp-price-card h3 {
  font-family: var(--lp-font-heading);
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 12px;
}

.lp-price-value {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}

.lp-price-value strong {
  font-family: var(--lp-font-heading);
  font-size: 34px;
  font-weight: 700;
  color: var(--lp-text);
}

.lp-price-value span {
  font-size: 14px;
  color: var(--lp-text-faint);
}

.lp-price-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.lp-price-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--lp-text-muted);
}

.lp-price-list li svg {
  color: var(--lp-accent-strong);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ---------- FAQ ---------- */
.lp-faq {
  max-width: 700px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.lp-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: transparent;
  border: none;
  color: var(--lp-text);
  font-family: var(--lp-font-body);
  font-size: 15.5px;
  font-weight: 600;
  text-align: left;
  padding: 18px 22px;
  cursor: pointer;
}

.lp-faq-question svg {
  color: var(--lp-text-faint);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.lp-faq-item.is-open .lp-faq-question svg {
  transform: rotate(180deg);
}

.lp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.lp-faq-item.is-open .lp-faq-answer {
  max-height: 240px;
}

.lp-faq-answer p {
  margin: 0;
  padding: 0 22px 20px;
  font-size: 14.5px;
  color: var(--lp-text-muted);
  line-height: 1.6;
}

/* ---------- Final CTA ---------- */
.lp-cta {
  position: relative;
  text-align: center;
  padding: 96px 24px;
  overflow: hidden;
}

.lp-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(0, 212, 255, 0.14), transparent 72%);
  pointer-events: none;
}

.lp-cta-inner {
  position: relative;
}

.lp-cta .lp-h2 {
  margin-bottom: 12px;
}

.lp-cta p {
  color: var(--lp-text-muted);
  font-size: 15.5px;
  margin: 0 0 32px;
}

/* ---------- Numbered steps (Como funciona) ---------- */
.lp-steps {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 56px;
}

.lp-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.lp-step-index {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.lp-step-num {
  font-family: var(--lp-font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-accent-strong);
  background: var(--lp-accent-dim);
  border: 1px solid var(--lp-accent-border);
  border-radius: 999px;
  width: 36px;
  height: 36px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-step h3 {
  font-family: var(--lp-font-heading);
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: var(--lp-text);
}

.lp-step-desc {
  color: var(--lp-text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 4px;
}

.lp-step-note {
  font-size: 13px;
  color: var(--lp-text-faint);
  margin-top: 14px;
}

.lp-step-visual {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 24px;
}

.lp-source-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--lp-border);
}

.lp-source-row:last-child {
  border-bottom: none;
}

.lp-source-check {
  color: var(--lp-accent-strong);
  flex: none;
  margin-top: 2px;
}

.lp-source-domain {
  font-size: 12.5px;
  color: var(--lp-text-faint);
}

.lp-source-title {
  font-size: 14px;
  color: var(--lp-text);
  margin-top: 2px;
}

.lp-config-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.lp-config-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lp-text-faint);
  margin-bottom: 4px;
}

.lp-config-value {
  font-size: 15px;
  color: var(--lp-text);
  font-weight: 600;
}

.lp-script-preview-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-text-faint);
  margin-bottom: 18px;
  text-align: center;
}

.lp-script-block {
  margin-bottom: 16px;
}

.lp-script-block:last-child {
  margin-bottom: 0;
}

.lp-script-block-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp-accent-strong);
  margin-bottom: 6px;
}

.lp-script-block-text {
  font-size: 14px;
  color: var(--lp-text);
  line-height: 1.6;
}

/* ---------- Método formula & quote ---------- */
.lp-formula {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 40px 0;
}

.lp-formula-pill {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-text);
}

.lp-formula-plus {
  color: var(--lp-text-faint);
  font-size: 18px;
}

.lp-formula-arrow {
  width: 100%;
  text-align: center;
  color: var(--lp-text-faint);
  font-size: 20px;
  margin: 4px 0;
}

.lp-formula-result {
  background: var(--lp-gradient-accent);
  color: var(--lp-accent-ink);
  border-color: transparent;
}

.lp-quote-highlight {
  text-align: center;
  font-family: var(--lp-font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--lp-text);
  line-height: 1.4;
  margin: 8px 0 32px;
}

/* ---------- Partner / social proof ---------- */
.lp-partner {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  padding: 32px;
  margin-top: 40px;
}

.lp-partner-photo {
  width: 160px;
  height: 160px;
  border-radius: 16px;
  background: var(--lp-bg-soft);
  border: 1px solid var(--lp-border-soft);
  flex: none;
  object-fit: cover;
}

.lp-partner-name {
  font-family: var(--lp-font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--lp-text);
  margin-bottom: 2px;
}

.lp-partner-role {
  font-size: 13px;
  color: var(--lp-accent-strong);
  margin-bottom: 14px;
}

.lp-partner-quote {
  font-size: 15px;
  color: var(--lp-text-muted);
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

.lp-partner-socials {
  display: flex;
  gap: 10px;
}

.lp-partner-social {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  flex: none;
}

.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  text-align: center;
}

.lp-stat-value {
  font-family: var(--lp-font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--lp-accent-strong);
}

.lp-stat-label {
  font-size: 13px;
  color: var(--lp-text-muted);
  margin-top: 4px;
}

/* ---------- Comparison (Por que TranscriptHub) ---------- */
.lp-compare-columns {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 48px;
}

.lp-compare-vs {
  color: var(--lp-text-faint);
  font-weight: 700;
  font-size: 14px;
}

.lp-compare-col {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 28px;
  height: 100%;
}

.lp-compare-col-highlight {
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.15), 0 16px 40px rgba(0, 212, 255, 0.12);
}

.lp-compare-col h3 {
  font-family: var(--lp-font-heading);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--lp-text);
}

.lp-compare-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--lp-text-muted);
}

.lp-compare-col-highlight ul {
  color: var(--lp-text);
}

.lp-compare-col li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.lp-compare-col svg {
  color: var(--lp-accent-strong);
  flex: none;
  margin-top: 2px;
}

/* ---------- Refine action pills ---------- */
.lp-action-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}

.lp-action-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13.5px;
  color: var(--lp-text);
}

/* ---------- Two-column checklist grid ---------- */
.lp-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  margin-top: 32px;
  list-style: none;
  padding: 0;
}

.lp-checklist-grid li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--lp-text);
}

/* ---------- Footer ---------- */
.lp-footer {
  border-top: 1px solid var(--lp-border-soft);
  padding: 56px 24px 28px;
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.lp-footer-brand {
  font-family: var(--lp-font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--lp-text);
  margin-bottom: 12px;
}

.lp-footer-brand span {
  color: var(--lp-accent-strong);
}

.lp-footer-desc {
  font-size: 14px;
  color: var(--lp-text-muted);
  line-height: 1.6;
  max-width: 280px;
  margin: 0;
}

.lp-footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lp-text-faint);
  margin-bottom: 14px;
}

.lp-footer-col a {
  display: block;
  font-size: 14px;
  color: var(--lp-text-muted);
  margin-bottom: 10px;
}

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

.lp-footer-bottom {
  text-align: center;
  font-size: 13px;
  color: var(--lp-text-faint);
  padding-top: 24px;
  border-top: 1px solid var(--lp-border-soft);
}

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

  .lp-nav-toggle {
    display: inline-flex;
  }

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

  .lp-grid-3,
  .lp-pricing-grid {
    grid-template-columns: 1fr;
  }

  .lp-step {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lp-compare-columns {
    grid-template-columns: 1fr;
  }

  .lp-compare-vs {
    text-align: center;
  }

  .lp-stats-grid,
  .lp-checklist-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lp-partner {
    flex-direction: column;
  }

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

  .lp-hero-form {
    flex-wrap: wrap;
    border-radius: var(--lp-radius-md);
  }

  .lp-hero-form input {
    width: 100%;
    order: 1;
    padding: 8px 0;
  }

  .lp-hero-form .lp-btn {
    order: 2;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .lp-nav-actions .lp-btn-ghost {
    display: none;
  }

  .lp-nav-inner {
    gap: 12px;
  }

  .lp-nav-actions .lp-btn-primary {
    padding: 8px 14px;
    font-size: 13.5px;
  }

  .lp-hero {
    padding-left: 0;
    padding-right: 0;
  }
}
