.home-seo {
  --seo-ink: #071827;
  --seo-muted: #53697c;
  --seo-green: #1f9d72;
  --seo-blue: #0993fa;
  padding: 96px 0;
  color: var(--seo-ink);
  background: linear-gradient(180deg, #fff 0%, #f4fbf8 100%);
}

.home-seo .container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.home-seo__header {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.home-seo__eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--seo-green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

.home-seo h2 {
  margin: 0;
  color: var(--seo-ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.home-seo__header p {
  margin: 22px 0 0;
  color: var(--seo-muted);
  font-size: 18px;
  line-height: 1.75;
}

.home-seo__benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.home-seo__benefits article {
  min-height: 245px;
  padding: 34px;
  border: 1px solid #dcece5;
  border-radius: 26px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 50px rgba(7, 24, 39, .07);
}

.home-seo__benefits article > span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--seo-green), var(--seo-blue));
  font-weight: 900;
}

.home-seo__benefits h3 {
  margin: 24px 0 12px;
  color: var(--seo-ink);
  font-size: 22px;
}

.home-seo__benefits p,
.home-seo__guide li,
.home-seo__faq p {
  color: var(--seo-muted);
  font-size: 16px;
  line-height: 1.7;
}

.home-seo__guide {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
  margin-top: 76px;
  padding: 54px;
  border-radius: 30px;
  background: var(--seo-ink);
}

.home-seo__guide h2 {
  color: #fff;
  font-size: clamp(28px, 3vw, 40px);
}

.home-seo__guide ol {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.home-seo__guide li {
  position: relative;
  padding: 20px 22px 20px 58px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  color: rgba(255, 255, 255, .76);
  background: rgba(255, 255, 255, .06);
  counter-increment: steps;
}

.home-seo__guide li::before {
  content: counter(steps);
  position: absolute;
  top: 20px;
  left: 22px;
  color: #62d8b4;
  font-weight: 900;
}

.home-seo__guide li strong { color: #fff; }

.home-seo__faq {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 70px;
  margin-top: 82px;
}

.home-seo__faq h2 { font-size: clamp(28px, 3vw, 40px); }
.home-seo__faq-list { border-top: 1px solid #d9e8e1; }

.home-seo__faq details {
  padding: 22px 0;
  border-bottom: 1px solid #d9e8e1;
}

.home-seo__faq summary {
  cursor: pointer;
  color: var(--seo-ink);
  font-size: 18px;
  font-weight: 850;
}

.home-seo__faq p { margin: 14px 0 0; }

.home-seo__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 76px;
  padding: 32px 38px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(120deg, var(--seo-green), #1178bf);
}

.home-seo__cta div > span {
  display: block;
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
}

.home-seo__cta strong { font-size: clamp(20px, 2.5vw, 29px); }

.home-seo__cta a {
  flex: 0 0 auto;
  padding: 15px 20px;
  border-radius: 14px;
  color: var(--seo-ink);
  background: #fff;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 900px) {
  .home-seo__benefits { grid-template-columns: 1fr; }
  .home-seo__guide,
  .home-seo__faq { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 600px) {
  .home-seo { padding: 68px 0; }
  .home-seo .container { width: min(100% - 28px, 1180px); }
  .home-seo__benefits article,
  .home-seo__guide { padding: 26px; }
  .home-seo__cta { align-items: flex-start; flex-direction: column; padding: 26px; }
}
