.container {
  background: #0b0d1f;
  width: 100%;
}
.bg-star {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.08;
  mix-blend-mode: lighten;
}
.bg-s-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0.08;
  mix-blend-mode: lighten;
}
.pricing {
  padding: 120px 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.pricing-top {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pricing-top-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.pricing-top-title h2 {
  color: var(--White, #fff);
  text-align: center;
  font-size: 38px;
  font-style: normal;
  font-weight: 500;
  line-height: 42px;
}
.pricing-top-title p {
  color: var(--Dark-dark_4, #787d92);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.pricing-top-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  margin-top: 40px;
  padding: 4px;
  border-radius: 6px;
  background: var(
    --gradient,
    linear-gradient(180deg, #181f34 0%, #0d1120 100%)
  );
}
.pricing-top-button .button-primary {
  padding: 8px 18px;
}
.pricing-top-button .button-yearly {
  cursor: pointer;
  padding: 8px 18px;
  border-radius: 4px;
  background: transparent;
  border: none;
}
.pricing-top-button .button-yearly p {
  color: var(--Dark-dark_2, #2e3551);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
}
.pricing-question {
  margin-top: 30px;
}
.pricing-question p {
  color: var(--White, #fff);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.pricing-range-slider {
  width: 100%;
  margin-top: 4px;
}

.range-slider-container {
  position: relative;
  width: 100%;
}

.range-slider {
  -webkit-appearance: none;
  margin-top: 0px !important;
  width: 100%;
  height: 10px;
  background: #161c35;
  outline: none;
  opacity: 0.8;
  border-radius: 10px !important;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(90deg, #8f46d9 0%, #0cf 100%);
  cursor: pointer;
  border: none;
  margin-top: -8px;
  position: relative;
}

.range-marks {
  position: relative;
  width: 100%;
  margin-top: 20px;
}

.mark {
  position: absolute;
  transform: translateX(-50%);
  text-align: center;
}

.mark span {
  color: #a2a5b2;
  font-family: "Gilroy", sans-serif;
  font-size: 14px;
  font-weight: 500;
  display: block;
  transform: translateX(-50%);
  white-space: nowrap;
}

.range-slider:hover {
  opacity: 1;
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  transition: transform 0.2s ease;
  box-shadow: 0 0 15px rgba(0, 204, 255, 0.4);
}

.range-slider::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 10px;
  cursor: pointer;
}
.range-slider::-moz-range-progress {
  background: red;
  height: 4px;
  border-radius: 2px;
}
.pricing-bottom {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.pricing-bottom-item {
  position: relative;
  width: 25%;
  padding: 30px;
  border-radius: 20px;
  opacity: 0.5;
  background: var(
    --gradient,
    linear-gradient(180deg, #181f34 0%, #0d1120 100%)
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.pricing-bottom-item .recommended-badge {
  padding: 4px 12px;
  border-radius: 4px;
  background: var(
    --Gradient-primary_gradient,
    linear-gradient(90deg, #0cf 0%, #8f46d9 100%)
  );
  position: absolute;
  top: 72px;
}
.pricing-bottom-item .recommended-badge p {
  color: var(--White, #fff);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
}
.pricing-bottom-item-active {
  opacity: unset;
  border: 1px solid transparent !important;

  background: var(--gradient, linear-gradient(180deg, #181f34 0%, #0d1120 100%))
      padding-box,
    linear-gradient(90deg, rgba(0, 204, 255, 1) 0%, rgba(143, 70, 217, 1) 100%)
      border-box !important;
  background-clip: padding-box, border-box, text !important;
}
.pricing-bottom-item-suggested {
  opacity: unset;
  border: 1px solid #434b6a;
}
.pricing-bottom-item .button-outline {
  width: 100%;
  padding: 12px 40px;
  justify-content: center;
}
.pricing-bottom-item .button-primary {
  width: 100%;
  padding: 12px 40px;
  justify-content: center;
}
.pricing-bottom-item-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.pricing-bottom-item-top-free {
  color: var(--White, #fff);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.pricing-bottom-item-top-essential {
  color: var(--Primary-main, #0cf);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.pricing-bottom-item-top-professional {
  color: var(--Status-danger, #ff5c5c);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.pricing-bottom-item-top-enterprise {
  color: var(--Status-warning, #ffa826);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.pricing-bottom-item-top h2 {
  color: var(--White, #fff);
  font-size: 38px;
  font-style: normal;
  font-weight: 500;
  line-height: 42px;
}
.pricing-bottom-item-top h2 span:first-child {
  color: var(--White, #fff);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.pricing-bottom-item-top h2 span:last-child {
  color: var(--Dark-dark_4, #787d92);
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px;
}
.pricing-bottom-item-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(15, 18, 43, 0.7) 0%,
    #2c334f 50%,
    rgba(15, 18, 43, 0.7) 100%
  );
}
.pricing-bottom-item-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pricing-bottom-item-content-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}
.pricing-bottom-item-content-item p {
  color: var(--Dark-dark_4, #787d92);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.trusted-client {
  background: #090a1a;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.trusted-client p {
  color: var(--White, #fff);
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
}
.client-logo {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.menu-button {
  display: flex;
  gap: 20px;
}

.customizable-section {
  padding: 120px 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.customizable-section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.customizable-section-title h2 {
  color: var(--White, #fff);
  text-align: center;
  font-size: 38px;
  font-style: normal;
  font-weight: 500;
  line-height: 42px;
}
.customizable-section-title p {
  color: var(--Dark-dark_4, #787d92);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.customizable-section-value {
  width: 100%;
  border-radius: 20px;
  background: linear-gradient(180deg, #0b0d1f 0%, #181f34 100%);
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.customizable-section-value-item {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 120px;
}
.customizable-section-value-item .item-value {
  min-width: 360px;
  padding: 40px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.customizable-section-value-item .item-value .item-value-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
}
.customizable-section-value-item .item-value .item-value-text h1 {
  color: var(--White, #fff);
  text-align: center;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 56px;
}
.customizable-section-value-item .item-value .item-value-text p {
  color: var(--Dark-dark_4, #787d92);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.customizable-section-value-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.customizable-section-value-bottom h3 {
  color: var(--White, #fff);
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
}
.customizable-section-value-bottom p {
  color: var(--Dark-dark_4, #787d92);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.customizable-section-value-bottom .button-outline {
  background: linear-gradient(#171e32, #171e32) padding-box,
    linear-gradient(90deg, rgba(0, 204, 255, 1) 0%, rgba(143, 70, 217, 1) 100%)
      border-box !important;
}
.ask-section {
  padding-bottom: 120px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.ask-section h2 {
  color: var(--White, #fff);
  text-align: center;
  font-size: 38px;
  font-style: normal;
  font-weight: 500;
  line-height: 42px;
}
.ask-section-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.ask-section-item-content {
  min-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.ask-section-item-content-item {
  cursor: pointer;
  width: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  border-radius: 20px;
  border: 1px solid #1e2038;

  background: var(
    --gradient,
    linear-gradient(180deg, #181f34 0%, #0d1120 100%)
  );
}
.ask-section-item-content-item-active {
  border: 1px solid transparent !important;

  background: var(--gradient, linear-gradient(180deg, #181f34 0%, #0d1120 100%))
      padding-box,
    linear-gradient(90deg, rgba(0, 204, 255, 1) 0%, rgba(143, 70, 217, 1) 100%)
      border-box !important;
  background-clip: padding-box, border-box, text !important;
}
.ask-section-item-content-item-title {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.ask-section-item-content-item-title p {
  color: var(--White, #fff);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}
.ask-section-item-content-item-divider {
  width: 100%;
  height: 1px;
  background: var(--Dark-dark_2, #2e3551);
}
.ask-section-item-content-item-content {
  color: var(--White, #fff);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  align-self: stretch;
}
