/**
 * Modul ekstra beranda index — alur cepat & cocok/tidak cocok
 * Tanpa kartu berjejer; fokus keterbacaan SEO.
 */
.seo-mod {
  padding: 3.5rem 0;
}

.seo-mod__inner {
  max-width: 900px;
  margin: 0 auto;
}

.seo-mod__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.seo-mod__title {
  font-family: var(--font-display), "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.25;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.seo-mod__lead {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 2rem;
  max-width: 40rem;
}

.seo-mod__lead a,
.seo-mod a {
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.seo-mod__lead a:hover,
.seo-mod a:hover {
  color: var(--primary);
}

/* —— Alur cepat (ordered steps, bukan card grid) —— */
.seo-alur {
  background: #fff;
  border-top: 1px solid var(--gray-200, #e2e8f0);
  border-bottom: 1px solid var(--gray-200, #e2e8f0);
}

.seo-alur__list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: alur;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-200, #e2e8f0);
  border-radius: var(--radius-lg, 0.75rem);
  overflow: hidden;
  background: var(--gray-50, #f0fdfa);
}

.seo-alur__list > li {
  counter-increment: alur;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  padding: 1.25rem 1.35rem;
  border-bottom: 1px solid var(--gray-200, #e2e8f0);
  background: #fff;
}

.seo-alur__list > li:last-child {
  border-bottom: none;
}

.seo-alur__list > li::before {
  content: counter(alur);
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.seo-alur__list h3 {
  font-family: var(--font-display), "Plus Jakarta Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 0.35rem;
}

.seo-alur__list p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.65;
  font-size: 0.98rem;
}

.seo-alur__note {
  margin-top: 1.25rem;
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--accent);
  background: rgba(245, 158, 11, 0.08);
  color: var(--gray-800);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* —— Cocok / tidak cocok (tabel 2 kolom) —— */
.seo-cocok {
  background: var(--gray-50, #f0fdfa);
}

.seo-cocok__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--gray-200, #e2e8f0);
  border-radius: var(--radius-lg, 0.75rem);
  overflow: hidden;
  background: #fff;
}

.seo-cocok__col {
  padding: 1.5rem 1.35rem 1.65rem;
}

.seo-cocok__col + .seo-cocok__col {
  border-left: 1px solid var(--gray-200, #e2e8f0);
}

.seo-cocok__col h3 {
  font-family: var(--font-display), "Plus Jakarta Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid currentColor;
}

.seo-cocok__col--yes h3 {
  color: var(--success);
}

.seo-cocok__col--no h3 {
  color: var(--danger);
}

.seo-cocok__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.seo-cocok__col li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--gray-700);
  line-height: 1.6;
  font-size: 0.98rem;
}

.seo-cocok__col--yes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--success);
}

.seo-cocok__col--no li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--danger);
}

.seo-cocok__foot {
  margin-top: 1.25rem;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.65;
}

@media (max-width: 720px) {
  .seo-cocok__grid {
    grid-template-columns: 1fr;
  }

  .seo-cocok__col + .seo-cocok__col {
    border-left: none;
    border-top: 1px solid var(--gray-200, #e2e8f0);
  }
}
