main {
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0.6)
    ),
    url('/images/help/help-bg.svg');
  background-repeat: no-repeat;
  background-position: 0 -110px;

  @media (min-width: 768px) {
    background-position: top -40px center;
  }
}

.pricing-compare-section {
  padding: 0 20px 60px;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--gray-400);
  border-radius: 50px;
  max-width: 800px;
  padding: 6px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.pricing-tab {
  flex: 1;
  background: transparent;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  padding: 8px;
}

.pricing-tab.active {
  background: var(--gray-900);
  color: var(--light);
}

.pricing-content.hidden {
  display: none;
}

.plan-image {
  display: flex;
  justify-content: center;
}

.plan-image img {
  max-width: 100%;
  min-width: 130px;
}

.back {
  margin-bottom: 20px;
}

.back a {
  text-decoration: none;
  font-size: 16px;
  line-height: 20px;
}

.plans-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: var(--light);
  display: flex;
  gap: 8px;
  padding: 4px 0 8px;
}

.plan-item {
  flex: 1;
  text-align: center;
}

.plan-item h3 {
  font-size: 22px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 12px;
}

.price {
  font-size: 12px;
  line-height: 16px;
}

.price span {
  font-size: 17px;
  line-height: 24px;
  font-weight: 700;
}

.feature-block {
  border: 1px solid var(--gray-400);
  border-radius: 20px;
  padding: 20px 8px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.feature-block h4 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 16px;
}

.feature-row {
  margin-bottom: 20px;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-name {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 16px;
}

.feature-values {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.feature-values div {
  flex: 1;
  text-align: center;
  font-size: 16px;
  line-height: 18px;
}

.feature-values .check {
  color: var(--primary);
  font-size: 18px;
  padding: 2px 0;
}

.feature-values .cross {
  background: var(--gray-100);
  color: var(--gray-500);
  font-size: 18px;
  padding: 2px 0;
}

.plans-images {
  display: none;
}

@media (min-width: 768px) {
  .pricing-tabs {
    gap: 20px;
    margin-bottom: 40px;
  }

  .pricing-tab {
    font-size: 28px;
    padding: 16px 32px;
  }

  .back {
    padding: 20px 32px;
    min-width: 200px;
    width: 40%;
  }

  .plans-header {
    padding: 16px 0;
    margin-bottom: 0;
  }

  .plans-header .plan-item {
    padding: 0 6px;
  }

  .plans-images {
    display: flex;
    padding: 0 0 20px;
  }

  .plans-images::before {
    content: '';
    min-width: 200px;
    width: 40%;
    padding: 0 24px;
  }

  .plans-images .plan-item {
    flex: 1;
    text-align: center;
    padding: 0 6px;
  }

  .plan-item h3 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 16px;
  }

  .price {
    font-size: 16px;
    padding: 8px 0;
  }

  .price span {
    font-size: 22px;
    line-height: 18px;
    font-weight: 700;
  }

  .feature-block {
    border: 1px solid var(--gray-400);
    border-radius: 40px;
    padding: 28px 16px;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .feature-block h4 {
    padding: 6px 24px;
    font-size: 22px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 0;
  }

  .feature-row {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    padding: 4px 0;
  }

  .feature-name {
    background: var(--light);
    font-size: 16px;
    line-height: 20px;
    min-width: 200px;
    width: 40%;
    padding: 8px 24px;
    margin-bottom: 0;
  }

  .feature-values {
    flex: 1;
    background: var(--light);
    padding: 8px;
  }

  .feature-values span {
    font-size: 16px;
    line-height: 20px;
  }

  .feature-values .check {
    color: var(--primary);
    font-size: 18px;
    padding: 3px 0;
  }

  .feature-values .cross {
    background: var(--gray-100);
    color: var(--gray-500);
    font-size: 18px;
    padding: 3px 0;
  }
}
