.home-seo {
  padding: 80px 0;
  position: relative;
}

.home-seo .container {
  max-width: 1280px;
  margin: 0 auto;
}

.home-seo__content {
  position: relative;
  max-height: 500px;
  overflow: hidden;
  padding: 50px 60px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.8;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-seo__content.expanded {
  max-height: 5000px;
}
.home-seo__content::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 250px;
  background: linear-gradient(to bottom, transparent, rgba(12, 8, 43, 0.98));
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.home-seo__content.expanded::after {
  opacity: 0;
}
.home-seo__content p {
  margin: 20px 0;
}
.home-seo__content ol {
  margin: 20px 0 20px 30px;
  list-style: decimal;
}
.home-seo__content ul {
  margin: 20px 0 20px 30px;
  list-style: disc;
}
.home-seo__content strong {
  color: #fff;
  font-weight: 600;
}
.home-seo__content h1,
.home-seo__content h2,
.home-seo__content h3,
.home-seo__content h4 {
  color: #fff;
  line-height: 1.35;
  text-align: left;
}
.home-seo__content h2 {
  margin: 0 0 24px;
  font-size: 32px;
}
.home-seo__content h3 {
  margin: 28px 0 16px;
  font-size: 22px;
}
.home-seo__content blockquote {
  position: relative;
  margin: 24px 0;
  padding: 18px 22px 18px 56px;
  border-left: 4px solid #5db7f3;
  border-radius: 0 10px 10px 0;
  background: rgba(245, 248, 252, 0.11);
  color: #fff;
  line-height: 1.65;
}
.home-seo__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 30px auto 0;
  padding: 16px 32px;
  border: 1px solid rgba(93, 183, 243, 0.4);
  border-radius: 12px;
  background: rgba(93, 183, 243, 0.1);
  color: #5db7f3;
  font:
    600 15px "Inter Tight",
    sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}
.home-seo__toggle:hover {
  transform: translateY(-2px);
  border-color: #5db7f3;
  background: rgba(93, 183, 243, 0.2);
}
.home-seo__toggle.expanded {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
}
.home-seo__toggle-icon {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-seo__toggle.expanded .home-seo__toggle-icon {
  transform: rotate(180deg);
}

@media (max-width: 767px) {
  .home-seo {
    padding: 56px 0;
  }
  .home-seo .container {
    padding: 0 16px;
  }
  .home-seo__content {
    max-height: 430px;
    padding: 28px 24px;
    font-size: 14px;
  }
  .home-seo__content h2 {
    font-size: 25px;
  }
  .home-seo__content h3 {
    font-size: 19px;
  }
}
