.container {
  .possibilities {
    padding: 8.3vw 0;

    .possibilities-title {
      line-height: 117%;
      text-transform: uppercase;
      letter-spacing: -0.01em;
      color: #1A1A1A;
      font-size: 3vw;
    }

    .possibilities-subtitle {
      font-size: 1.3vw;
      line-height: 160%;
      color: #666;
      margin-top: 1.1vw;
    }

    .possibilities-list {
      margin-top: 3.3vw;
      list-style: none;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.6vw;

      .possibilities-item {
        display: flex;
        flex-direction: column;
        gap: 1.1vw;
        background: #F0F0F0;
        padding: 2.2vw 1.8vw;
        border-radius: 1.6vw;

        .possibilities-item-img {
          width: 17%;
          padding: 1.1vw;
          border-radius: 1.1vw;
          background: #34d07b26;
        }

        .possibilities-item-title {
          font-size: 1.6vw;
          text-transform: uppercase;
          color: #1A1A1A;
          line-height: 133%;
        }

        .possibilities-inner-list {
          list-style: none;
          display: flex;
          flex-direction: column;
          gap: 1.5vw;

          .possibilities-inner-item {
            font-size: 0.8vw;

            &::before {
              content: '✓';
              font-size: 1vw;
              line-height: 175%;
              color: #34D07B;
              text-transform: uppercase;
              font-weight: 700;
              margin-right: 1.1vw;
            }
          }
        }
      }
    }

    .possibilities-btn {
      width: fit-content;
      display: block;
      margin: 3.3vw auto 0;
      cursor: pointer;
      font-size: 1vw;
      border-radius: 100px;
      padding: 1.1vw 2.2vw;
      font-weight: 700;
      border: 0;
      text-transform: uppercase;
      color: #1A1A1A;
      background: #34D07B;
      transition: background 0.5s, color 0.5s;
      text-decoration: none;

      &:hover {
        background: #1A1A1A;
        color: #34D07B;
      }
    }
  }
}

@media (max-width: 768px) {
  .container {
    main {
      .possibilities {
        display: flex;
        flex-direction: column;
        gap: 6.4vw;

        .possibilities-title {
          font-size: 7.4vw;
          margin-bottom: -5vw;
        }

        .possibilities-subtitle {
          font-size: 3.7vw;
        }

        .possibilities-list {
          grid-template-columns: 1fr;
          gap: 6.4vw;

          .possibilities-item {
            padding: 6.4vw;
            border-radius: 2.8vw;

            .possibilities-item-img {
              padding: 3.4vw;
              border-radius: 3.1vw;
            }

            .possibilities-item-title {
              font-size: 4.8vw;
            }

            .possibilities-inner-list {
              .possibilities-inner-item {
                font-size: 3.4vw;
                color: #666;

                &::before {
                  font-size: 3.4vw;
                }
              }
            }
          }
        }

        .possibilities-btn {
          padding: 3.7vw 7.4vw;
          font-size: 3.7vw;
        }
      }
    }
  }
}

.seo-info {
  width: 100%;
  padding: clamp(24px, 3vw, 56px) 0 0;
}

.seo-info-wrapper {
  box-sizing: border-box;
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: clamp(28px, 3.2vw, 72px);
  border-radius: clamp(24px, 2vw, 44px);
  background: #f6f8fb;
  overflow: hidden;
}

.seo-info-badge {
  width: fit-content;
  margin: 0 0 clamp(12px, 1vw, 18px);
  padding: clamp(7px, 0.55vw, 12px) clamp(14px, 1.2vw, 24px);
  border-radius: 999px;
  background: #34d07b26;
  color: #34d07b;
  font-size: clamp(12px, 0.75vw, 16px);
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
}

.seo-info-title {
  margin: 0 0 clamp(22px, 2vw, 36px);
  max-width: 1180px;
  color: #151515;
  font-size: clamp(26px, 2.35vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.seo-info-text {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 1.8vw, 34px) clamp(24px, 3vw, 64px);
  max-width: 1500px;
}

.seo-info-text p {
  margin: 0;
  color: #4b5563;
  font-size: clamp(15px, 0.95vw, 19px);
  line-height: 1.72;
}

@media (max-width: 1200px) {
  .seo-info-text {
    grid-template-columns: 1fr;
    max-width: 860px;
  }
}

@media (max-width: 768px) {
  .seo-info {
    padding-top: 24px;
  }

  .seo-info-wrapper {
    padding: 28px 20px;
    border-radius: 28px;
  }

  .seo-info-badge {
    padding: 8px 14px;
    font-size: 11px;
  }

  .seo-info-title {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.22;
    letter-spacing: -0.03em;
  }

  .seo-info-text {
    gap: 14px;
  }

  .seo-info-text p {
    font-size: 14px;
    line-height: 1.65;
  }
}