/* ═══════════════════════════════════════════════════════════
   Auto Logo Finder — premium public/SEO surface
   Page-specific additions only. Scoped under .alf-page so nothing
   here leaks into the global stylesheet or other tools.
   Reuses platform tokens: --primary --accent --border --bg-card
   --bg-secondary --text --text-secondary --text-muted --radius.
   ═══════════════════════════════════════════════════════════ */

.alf-page {
  --alf-brand: #7c3aed;
  --alf-brand-2: #6366f1;
  --alf-pink: #ec4899;
  --alf-green: #10b981;
  --alf-card-shadow: 0 10px 30px rgba(99, 102, 241, 0.10);
  --alf-card-shadow-hover: 0 16px 40px rgba(99, 102, 241, 0.18);
}

/* ───────────────────────────────────────────────
   HERO — trust line + feature badges
   ─────────────────────────────────────────────── */
.alf-page .alf-hero-v2__trust {
  margin: 12px 0 0;
  max-width: 64ch;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary, #475569);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.alf-page .alf-hero-v2__trust::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--alf-brand), var(--alf-brand-2));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l4 4L19 6'/%3E%3C/svg%3E") center / 12px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l4 4L19 6'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.alf-page .alf-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}
.alf-page .alf-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text, #0f172a);
  background: var(--bg-card, #fff);
  border: 1px solid rgba(148, 163, 184, 0.32);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}
.alf-page .alf-hero-badge .alf-svg-icon {
  color: var(--alf-brand);
}
.alf-page .alf-hero-badge--green .alf-svg-icon { color: var(--alf-green); }
.alf-page .alf-hero-badge--pink .alf-svg-icon { color: var(--alf-pink); }

/* Upgrade the hero step pills into a connected timeline */
.alf-page .alf-hero .alf-steps {
  gap: 8px 6px;
  align-items: stretch;
}
.alf-page .alf-hero .alf-steps li {
  position: relative;
  flex: 1 1 160px;
  justify-content: flex-start;
  background: var(--bg-card, #fff);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

/* ───────────────────────────────────────────────
   PROCESS — "How it works" step cards (workflow)
   ─────────────────────────────────────────────── */
.alf-page .alf-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: alf-proc;
}
.alf-page .alf-process__step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 16px;
  border-radius: 16px;
  border: 1px solid var(--border, #e2e8f0);
  background: var(--bg-card, #fff);
  box-shadow: var(--alf-card-shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.alf-page .alf-process__step:hover {
  transform: translateY(-3px);
  box-shadow: var(--alf-card-shadow-hover);
  border-color: rgba(124, 58, 237, 0.4);
}
/* Connector arrows between cards on desktop */
.alf-page .alf-process__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -13px;
  width: 14px;
  height: 14px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 2px solid rgba(124, 58, 237, 0.35);
  border-right: 2px solid rgba(124, 58, 237, 0.35);
  z-index: 1;
}
.alf-page .alf-process__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--alf-brand), var(--alf-brand-2));
  box-shadow: 0 8px 18px rgba(99, 102, 241, 0.28);
}
.alf-page .alf-process__icon .alf-svg-icon { color: #fff; }
.alf-page .alf-process__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--alf-brand);
}
.alf-page .alf-process__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--text, #0f172a);
}
.alf-page .alf-process__desc {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-secondary, #475569);
}

/* ───────────────────────────────────────────────
   TRUST GRID — "Why users choose Auto Logo Finder"
   ─────────────────────────────────────────────── */
.alf-page .alf-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  margin-top: 16px;
}
.alf-page .alf-trust-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border, #e2e8f0);
  background: var(--bg-card, #fff);
  box-shadow: var(--alf-card-shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.alf-page .alf-trust-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--alf-card-shadow-hover);
  border-color: rgba(124, 58, 237, 0.4);
}
.alf-page .alf-trust-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--alf-brand);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.14), rgba(236, 72, 153, 0.10));
}
.alf-page .alf-trust-card h3 {
  margin: 0;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text, #0f172a);
}
.alf-page .alf-trust-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary, #475569);
}

/* ───────────────────────────────────────────────
   CONVERSION BAND — guest sign-up CTA
   ─────────────────────────────────────────────── */
.alf-page .alf-convert {
  margin: 28px 0 8px;
  padding: 28px 26px;
  border-radius: 22px;
  border: 1px solid rgba(124, 58, 237, 0.28);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(124, 58, 237, 0.12), transparent 55%),
    radial-gradient(120% 140% at 100% 100%, rgba(236, 72, 153, 0.10), transparent 55%),
    var(--bg-card, #fff);
  box-shadow: 0 14px 40px rgba(99, 102, 241, 0.14);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}
.alf-page .alf-convert__eyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--alf-brand);
}
.alf-page .alf-convert__title {
  margin: 0 0 8px;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  line-height: 1.25;
  color: var(--text, #0f172a);
}
.alf-page .alf-convert__lead {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary, #475569);
  max-width: 52ch;
}
.alf-page .alf-convert__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.alf-page .alf-convert__points li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text, #0f172a);
}
.alf-page .alf-convert__points li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    rgba(16, 185, 129, 0.14)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l4 4L19 6'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.alf-page .alf-convert__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.alf-page .alf-convert__cta .btn {
  width: 100%;
  justify-content: center;
}
.alf-page .alf-convert__note {
  margin: 0;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted, #64748b);
}

/* ───────────────────────────────────────────────
   ENHANCED RELATED TOOLS (new scoped grid)
   Keeps the global .related-tools markup untouched
   elsewhere; this variant adds description + action.
   ─────────────────────────────────────────────── */
.alf-page .alf-related {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border, #e2e8f0);
}
.alf-page .alf-related__head {
  text-align: center;
  margin-bottom: 18px;
}
.alf-page .alf-related__head h2 {
  margin: 0 0 4px;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  color: var(--text, #0f172a);
}
.alf-page .alf-related__head p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted, #64748b);
}
.alf-page .alf-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}
.alf-page .alf-related-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border, #e2e8f0);
  background: var(--bg-card, #fff);
  box-shadow: var(--alf-card-shadow);
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.alf-page .alf-related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--alf-card-shadow-hover);
  border-color: rgba(124, 58, 237, 0.4);
  color: inherit;
}
.alf-page .alf-related-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: var(--alf-brand);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.14), rgba(236, 72, 153, 0.10));
}
.alf-page .alf-related-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text, #0f172a);
}
.alf-page .alf-related-card__desc {
  flex: 1 1 auto;
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary, #475569);
}
.alf-page .alf-related-card__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--alf-brand);
}
.alf-page .alf-related-card__action::after {
  content: "\2192";
  transition: transform .18s ease;
}
.alf-page .alf-related-card:hover .alf-related-card__action::after {
  transform: translateX(3px);
}

/* ───────────────────────────────────────────────
   COMPLIANCE / SAFETY NOTE — compact card
   ─────────────────────────────────────────────── */
.alf-page .alf-compliance {
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: var(--bg-secondary, #f8fafc);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.alf-page .alf-compliance__icon {
  flex-shrink: 0;
  line-height: 0;
  color: var(--alf-brand);
}
.alf-page .alf-compliance p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--text-muted, #64748b);
}

/* ───────────────────────────────────────────────
   FAQ accordion polish (open state depth)
   ─────────────────────────────────────────────── */
.alf-page .alf-seo-accordion__item {
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.alf-page .alf-seo-accordion__item:hover {
  border-color: rgba(124, 58, 237, 0.32);
}
.alf-page .alf-seo-accordion__item[open] {
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 8px 22px rgba(99, 102, 241, 0.12);
}

/* ───────────────────────────────────────────────
   RESPONSIVE
   ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .alf-page .alf-process {
    grid-template-columns: repeat(2, 1fr);
  }
  .alf-page .alf-process__step:not(:last-child)::after { display: none; }
  .alf-page .alf-convert {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
@media (max-width: 560px) {
  .alf-page .alf-process {
    grid-template-columns: 1fr;
  }
  /* Vertical connectors when stacked */
  .alf-page .alf-process__step:not(:last-child)::after {
    display: block;
    top: auto;
    right: 50%;
    bottom: -13px;
    transform: translateX(50%) rotate(135deg);
  }
  .alf-page .alf-convert {
    padding: 20px 16px;
  }
  .alf-page .alf-convert__points {
    grid-template-columns: 1fr;
  }
  .alf-page .alf-hero-badge {
    flex: 1 1 calc(50% - 5px);
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .alf-page .alf-process__step,
  .alf-page .alf-trust-card,
  .alf-page .alf-related-card,
  .alf-page .alf-related-card__action::after {
    transition: none;
  }
}

/* ───────────────────────────────────────────────
   DARK MODE
   ─────────────────────────────────────────────── */
[data-theme="dark"] .alf-page .alf-hero-v2__trust { color: #cbd5e1; }
[data-theme="dark"] .alf-page .alf-hero-badge {
  background: var(--bg-card);
  border-color: rgba(148, 163, 184, 0.25);
  color: var(--text);
  box-shadow: none;
}
[data-theme="dark"] .alf-page .alf-hero .alf-steps li {
  background: var(--bg-card);
  border-color: rgba(148, 163, 184, 0.25);
  color: var(--text);
  box-shadow: none;
}

[data-theme="dark"] .alf-page .alf-process__step,
[data-theme="dark"] .alf-page .alf-trust-card,
[data-theme="dark"] .alf-page .alf-related-card {
  background: var(--bg-card);
  border-color: rgba(148, 163, 184, 0.25);
  box-shadow: none;
}
[data-theme="dark"] .alf-page .alf-process__step:hover,
[data-theme="dark"] .alf-page .alf-trust-card:hover,
[data-theme="dark"] .alf-page .alf-related-card:hover {
  border-color: rgba(129, 140, 248, 0.55);
  background: var(--bg-secondary);
}
[data-theme="dark"] .alf-page .alf-process__title,
[data-theme="dark"] .alf-page .alf-trust-card h3,
[data-theme="dark"] .alf-page .alf-related-card__name,
[data-theme="dark"] .alf-page .alf-convert__title,
[data-theme="dark"] .alf-page .alf-related__head h2 {
  color: var(--text);
}
[data-theme="dark"] .alf-page .alf-process__desc,
[data-theme="dark"] .alf-page .alf-trust-card p,
[data-theme="dark"] .alf-page .alf-related-card__desc,
[data-theme="dark"] .alf-page .alf-convert__lead,
[data-theme="dark"] .alf-page .alf-related__head p,
[data-theme="dark"] .alf-page .alf-compliance p {
  color: #cbd5e1;
}
[data-theme="dark"] .alf-page .alf-process__num,
[data-theme="dark"] .alf-page .alf-convert__eyebrow,
[data-theme="dark"] .alf-page .alf-related-card__action {
  color: #c4b5fd;
}
[data-theme="dark"] .alf-page .alf-trust-card__icon,
[data-theme="dark"] .alf-page .alf-related-card__icon {
  background: rgba(124, 58, 237, 0.22);
  color: #c4b5fd;
}
[data-theme="dark"] .alf-page .alf-convert {
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(124, 58, 237, 0.20), transparent 55%),
    radial-gradient(120% 140% at 100% 100%, rgba(236, 72, 153, 0.16), transparent 55%),
    var(--bg-card);
  border-color: rgba(129, 140, 248, 0.4);
  box-shadow: none;
}
[data-theme="dark"] .alf-page .alf-convert__points li { color: var(--text); }
[data-theme="dark"] .alf-page .alf-compliance {
  background: var(--bg-card);
  border-color: rgba(148, 163, 184, 0.25);
}
[data-theme="dark"] .alf-page .alf-compliance__icon { color: #c4b5fd; }
[data-theme="dark"] .alf-page .alf-seo-accordion__item {
  box-shadow: none;
}
[data-theme="dark"] .alf-page .alf-seo-accordion__item[open] {
  border-color: rgba(129, 140, 248, 0.5);
  box-shadow: none;
}

/* ═══════════════════════════════════════════════════════════
   ROUND 2 — premium polish: hierarchy, depth, card system,
   hero stats, timeline, comparison, CTA, FAQ, micro-interactions
   ═══════════════════════════════════════════════════════════ */

/* ── Section hierarchy: more air + stronger headings ────────── */
.alf-page .alf-seo__block { margin-top: 34px; }
.alf-page .alf-seo__h2 {
  font-weight: 800;
  letter-spacing: -0.01em;
}
/* Documentation-style blocks read lighter than feature blocks */
.alf-page .alf-guide-faq {
  background: var(--bg-secondary, #f8fafc);
}

/* ── HERO: trust / usage stat strip ─────────────────────────── */
.alf-page .alf-hero-stats {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.alf-page .alf-hero-stat {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border-radius: 15px;
  background: var(--bg-card, #fff);
  border: 1px solid rgba(148, 163, 184, 0.26);
  box-shadow: 0 3px 12px rgba(15, 23, 42, 0.05);
}
.alf-page .alf-hero-stat__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--alf-brand), var(--alf-brand-2));
  box-shadow: 0 6px 14px rgba(99, 102, 241, 0.28);
}
.alf-page .alf-hero-stat__icon .alf-svg-icon { color: #fff; }
.alf-page .alf-hero-stat__body { display: flex; flex-direction: column; min-width: 0; }
.alf-page .alf-hero-stat__body strong {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text, #0f172a);
}
.alf-page .alf-hero-stat__body small {
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--text-muted, #64748b);
}
/* Subtle depth behind the hero */
.alf-page .alf-hero-v2 {
  position: relative;
  background-image:
    radial-gradient(80% 120% at 100% 0%, rgba(124, 58, 237, 0.06), transparent 60%);
}

/* ── BENEFITS → feature cards (larger icons, stronger lift) ──── */
.alf-page .alf-seo__benefits { gap: 16px; }
.alf-page .alf-seo__benefits .alf-guide-card {
  padding: 22px 20px;
  border-radius: 18px;
  box-shadow: var(--alf-card-shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.alf-page .alf-seo__benefits .alf-guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--alf-card-shadow-hover);
  border-color: rgba(124, 58, 237, 0.4);
}
.alf-page .alf-seo__benefits .alf-seo-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(236, 72, 153, 0.10));
  color: var(--alf-brand);
}
.alf-page .alf-seo__benefits .alf-seo-card__icon .alf-svg-icon { width: 26px; height: 26px; }
.alf-page .alf-seo__benefits .alf-guide-card h3 { font-size: 16px; }

/* ── HOW IT WORKS → timeline treatment ──────────────────────── */
.alf-page .alf-process__step { overflow: visible; }
.alf-page .alf-process__step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, var(--alf-brand), var(--alf-pink));
  opacity: 0.9;
}
.alf-page .alf-process__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

/* ── EASY vs ADVANCED comparison ────────────────────────────── */
.alf-page .alf-compare { position: relative; align-items: stretch; }
.alf-page .alf-compare-card {
  display: flex;
  flex-direction: column;
  box-shadow: var(--alf-card-shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.alf-page .alf-compare-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--alf-card-shadow-hover);
  border-color: rgba(124, 58, 237, 0.4);
}
.alf-page .alf-compare-card--accent {
  box-shadow: 0 16px 38px rgba(124, 58, 237, 0.16);
}
.alf-page .alf-compare-card__title {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  color: var(--text, #0f172a);
}
.alf-page .alf-compare-card__best-label {
  margin: 16px 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--alf-brand);
}
.alf-page .alf-compare-card__best {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}
.alf-page .alf-compare-card__best li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text, #0f172a);
}
.alf-page .alf-compare-card__best li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 50%;
  background:
    rgba(124, 58, 237, 0.12)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c3aed' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l4 4L19 6'/%3E%3C/svg%3E") center / 11px no-repeat;
}
/* "VS" pill floating in the gap between the two cards */
.alf-page .alf-compare::after {
  content: "VS";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--alf-brand);
  background: var(--bg-card, #fff);
  border: 1px solid rgba(124, 58, 237, 0.3);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
  z-index: 2;
}

/* ── WHY USERS CHOOSE → distinct trust feature band ─────────── */
.alf-page .alf-seo__block--trust {
  margin-top: 34px;
  padding: 26px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(124, 58, 237, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.alf-page .alf-seo__block--trust .alf-seo__h2 { text-align: center; }
.alf-page .alf-trust-card__icon { width: 52px; height: 52px; border-radius: 15px; }
.alf-page .alf-trust-card__icon .alf-svg-icon { width: 26px; height: 26px; }

/* ── BOTTOM CTA — high-conversion block ─────────────────────── */
.alf-page .alf-convert--final { margin-top: 36px; }
.alf-page .alf-convert__title { font-weight: 800; letter-spacing: -0.01em; }
.alf-page .alf-convert .btn-lg {
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 700;
}

/* ── FAQ — bigger targets, smoother open ────────────────────── */
.alf-page .alf-seo-accordion { gap: 12px; }
.alf-page .alf-seo-accordion__summary {
  padding: 18px 20px;
  font-size: 15px;
}
.alf-page .alf-seo-accordion__summary::after { width: 28px; height: 28px; }
.alf-page .alf-seo-accordion__body { padding: 0 20px 18px; }
.alf-page .alf-seo-accordion__body p { font-size: 13.5px; }
.alf-page .alf-seo-accordion__item[open] .alf-seo-accordion__body {
  animation: alfFaqIn .22s ease both;
}
@keyframes alfFaqIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: none; }
}

/* ── RESPONSIVE (round 2) ───────────────────────────────────── */
@media (max-width: 760px) {
  .alf-page .alf-hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 639px) {
  .alf-page .alf-compare::after { display: none; }
}
@media (max-width: 480px) {
  .alf-page .alf-hero-stats { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  /* How-it-works → clean vertical timeline connector */
  .alf-page .alf-process__step:not(:last-child)::after {
    content: "";
    display: block;
    top: auto;
    bottom: -12px;
    left: 36px;
    right: auto;
    width: 2px;
    height: 12px;
    transform: none;
    border: 0;
    border-radius: 2px;
    background: rgba(124, 58, 237, 0.4);
  }
  .alf-page .alf-seo__block--trust { padding: 18px 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .alf-page .alf-seo__benefits .alf-guide-card,
  .alf-page .alf-compare-card,
  .alf-page .alf-seo-accordion__item[open] .alf-seo-accordion__body {
    transition: none;
    animation: none;
  }
}

/* ── DARK MODE (round 2) ────────────────────────────────────── */
[data-theme="dark"] .alf-page .alf-guide-faq {
  background: var(--bg-secondary);
}
[data-theme="dark"] .alf-page .alf-hero-stat {
  background: var(--bg-card);
  border-color: rgba(148, 163, 184, 0.22);
  box-shadow: none;
}
[data-theme="dark"] .alf-page .alf-hero-stat__body strong { color: var(--text); }
[data-theme="dark"] .alf-page .alf-hero-stat__body small { color: #94a3b8; }
[data-theme="dark"] .alf-page .alf-seo__benefits .alf-seo-card__icon,
[data-theme="dark"] .alf-page .alf-trust-card__icon {
  background: rgba(124, 58, 237, 0.22);
  color: #c4b5fd;
}
[data-theme="dark"] .alf-page .alf-compare-card__title { color: var(--text); }
[data-theme="dark"] .alf-page .alf-compare-card__best-label { color: #c4b5fd; }
[data-theme="dark"] .alf-page .alf-compare-card__best li { color: var(--text); }
[data-theme="dark"] .alf-page .alf-compare-card__best li::before {
  background:
    rgba(129, 140, 248, 0.22)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c4b5fd' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l4 4L19 6'/%3E%3C/svg%3E") center / 11px no-repeat;
}
[data-theme="dark"] .alf-page .alf-compare::after {
  background: var(--bg-card);
  border-color: rgba(129, 140, 248, 0.45);
  color: #c4b5fd;
  box-shadow: none;
}
[data-theme="dark"] .alf-page .alf-seo__block--trust {
  background: rgba(148, 163, 184, 0.06);
  border-color: rgba(129, 140, 248, 0.28);
  box-shadow: none;
}

/* ═══════════════════════════════════════════════════════════
   SIGNUP CARD — premium SaaS "Unlock" / get-started section
   ═══════════════════════════════════════════════════════════ */
.alf-page .alf-signup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 30px;
  align-items: center;
  margin: 6px 0 26px;
  padding: 32px;
  border-radius: 22px;
  border: 1px solid rgba(124, 58, 237, 0.24);
  background:
    radial-gradient(120% 130% at 0% 0%, rgba(124, 58, 237, 0.12), transparent 55%),
    radial-gradient(120% 130% at 100% 100%, rgba(236, 72, 153, 0.10), transparent 55%),
    var(--bg-card, #fff);
  box-shadow: 0 18px 48px rgba(99, 102, 241, 0.16);
}

/* Left column — copy + CTA */
.alf-page .alf-signup__main { min-width: 0; }
.alf-page .alf-signup__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 12px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--alf-brand);
  background: rgba(124, 58, 237, 0.10);
  border: 1px solid rgba(124, 58, 237, 0.22);
}
.alf-page .alf-signup__eyebrow .alf-svg-icon { color: var(--alf-brand); }
.alf-page .alf-signup__title {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--text, #0f172a);
}
.alf-page .alf-signup__lead {
  margin: 0 0 20px;
  max-width: 46ch;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-secondary, #475569);
}
.alf-page .alf-signup__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.alf-page .alf-signup__primary {
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 13px;
  box-shadow: 0 12px 26px rgba(99, 102, 241, 0.3);
  transition: transform .18s ease, box-shadow .18s ease;
}
.alf-page .alf-signup__primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(99, 102, 241, 0.38);
}
.alf-page .alf-signup__login {
  font-size: 13.5px;
  color: var(--text-secondary, #475569);
  text-decoration: none;
}
.alf-page .alf-signup__login strong { color: var(--alf-brand); }
.alf-page .alf-signup__login:hover strong { text-decoration: underline; }
.alf-page .alf-signup__trust {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.28);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-muted, #64748b);
}
.alf-page .alf-signup__trust-icon {
  flex-shrink: 0;
  line-height: 0;
  margin-top: 1px;
  color: var(--alf-green);
}
.alf-page .alf-signup__trust-icon .alf-svg-icon { color: var(--alf-green); }

/* Right column — perk mini cards */
.alf-page .alf-signup__perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.alf-page .alf-signup-perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 14px;
  border-radius: 15px;
  border: 1px solid var(--border, #e2e8f0);
  background: var(--bg-card, #fff);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.alf-page .alf-signup-perk:hover {
  transform: translateY(-3px);
  box-shadow: var(--alf-card-shadow-hover);
  border-color: rgba(124, 58, 237, 0.4);
}
.alf-page .alf-signup-perk__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--alf-brand), var(--alf-brand-2));
  box-shadow: 0 6px 14px rgba(99, 102, 241, 0.26);
}
.alf-page .alf-signup-perk__icon .alf-svg-icon { color: #fff; }
.alf-page .alf-signup-perk__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.alf-page .alf-signup-perk__body strong {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text, #0f172a);
}
.alf-page .alf-signup-perk__body small {
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--text-muted, #64748b);
}

/* Responsive */
@media (max-width: 860px) {
  .alf-page .alf-signup {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 26px 22px;
  }
}
@media (max-width: 480px) {
  .alf-page .alf-signup {
    padding: 22px 16px;
    border-radius: 18px;
  }
  .alf-page .alf-signup__perks { grid-template-columns: 1fr; }
  .alf-page .alf-signup__cta { align-items: stretch; }
  .alf-page .alf-signup__primary { text-align: center; }
  .alf-page .alf-signup__login { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .alf-page .alf-signup-perk,
  .alf-page .alf-signup__primary {
    transition: none;
  }
}

/* Dark mode */
[data-theme="dark"] .alf-page .alf-signup {
  background:
    radial-gradient(120% 130% at 0% 0%, rgba(124, 58, 237, 0.22), transparent 55%),
    radial-gradient(120% 130% at 100% 100%, rgba(236, 72, 153, 0.16), transparent 55%),
    var(--bg-card);
  border-color: rgba(129, 140, 248, 0.4);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}
[data-theme="dark"] .alf-page .alf-signup__title { color: var(--text); }
[data-theme="dark"] .alf-page .alf-signup__lead { color: #cbd5e1; }
[data-theme="dark"] .alf-page .alf-signup__login { color: #cbd5e1; }
[data-theme="dark"] .alf-page .alf-signup__login strong { color: #c4b5fd; }
[data-theme="dark"] .alf-page .alf-signup__eyebrow {
  color: #c4b5fd;
  background: rgba(124, 58, 237, 0.22);
  border-color: rgba(129, 140, 248, 0.4);
}
[data-theme="dark"] .alf-page .alf-signup__eyebrow .alf-svg-icon { color: #c4b5fd; }
[data-theme="dark"] .alf-page .alf-signup__trust {
  color: #94a3b8;
  border-top-color: rgba(148, 163, 184, 0.22);
}
[data-theme="dark"] .alf-page .alf-signup-perk {
  background: var(--bg-card);
  border-color: rgba(148, 163, 184, 0.22);
  box-shadow: none;
}
[data-theme="dark"] .alf-page .alf-signup-perk:hover {
  border-color: rgba(129, 140, 248, 0.55);
  background: var(--bg-secondary);
}
[data-theme="dark"] .alf-page .alf-signup-perk__body strong { color: var(--text); }
[data-theme="dark"] .alf-page .alf-signup-perk__body small { color: #94a3b8; }
