.prices {
  padding: 32px 0 72px;
}
@media (max-width: 767.98px) {
  .prices {
    padding: 0 0 48px;
  }
  .prices .container {
    background: var(--white);
    border-radius: 22px;
    padding-top: 24px;
  }
}

.pp-section {
  margin-bottom: 44px;
  border: 1px solid var(--gray-100);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-1);
  padding: 24px;
}
@media (max-width: 767.98px) {
  .pp-section {
    margin-bottom: 28px;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }
}
.pp-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--gray-300);
  padding-bottom: 24px;
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .pp-section__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
  }
}
.pp-section__title {
  margin: 0;
  color: var(--title);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
}
@media (max-width: 767.98px) {
  .pp-section__title {
    font-size: 2.4rem;
  }
}
.pp-section__count {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--gray-100);
  color: var(--gray-500);
  font-size: 1.5rem;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .pp-section__count {
    font-size: 1.3rem;
  }
}

.pp-subsection__head {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767.98px) {
  .pp-subsection__head {
    gap: 12px;
  }
}
.pp-subsection__title {
  margin: 0;
  color: var(--text-primary);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.1;
}
@media (max-width: 767.98px) {
  .pp-subsection__title {
    font-size: 1.5rem;
  }
}
.pp-subsection__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 100%;
}
@media (max-width: 767.98px) {
  .pp-subsection__icon {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
  }
}

.pp-service__head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  background: radial-gradient(circle at 82% 24%, rgba(0, 145, 255, 0.03) 0, rgba(0, 145, 255, 0.04) 18%, rgba(0, 145, 255, 0) 33%), linear-gradient(180deg, rgba(248, 251, 255, 0) 0%, rgba(238, 245, 252, 0.7803921569) 100%);
  border: 1px solid rgba(214, 226, 243, 0.39);
  border-radius: 28px;
  transition: border-radius 0.3s ease, border-color 0.3s ease;
}
@media (max-width: 991.98px) {
  .pp-service__head {
    grid-template-columns: 52px 1fr;
    gap: 16px;
    padding: 16px 18px;
  }
}
@media (max-width: 767.98px) {
  .pp-service__head {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 16px;
    border-radius: 12px;
  }
}
.pp-service__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 100%;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .pp-service__icon {
    display: none;
  }
}
.pp-service__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(64, 118, 214, 0.11);
  pointer-events: none;
}
.pp-service__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.88) contrast(1.02);
}
.pp-service__body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 40px;
}
@media (max-width: 991.98px) {
  .pp-service__body {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
@media (max-width: 767.98px) {
  .pp-service__body {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
  }
}
.pp-service__title {
  margin: 0;
  color: var(--text-primary);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.1;
}
@media (max-width: 767.98px) {
  .pp-service__title {
    font-size: 1.5rem;
  }
}
.pp-service__title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
  .pp-service__title-link:hover {
    color: var(--blue-700);
  }
}
.pp-service__description {
  margin-top: 4px;
  color: var(--gray-600);
  font-size: 1.4rem;
  line-height: 1.2;
}
@media (max-width: 767.98px) {
  .pp-service__description {
    font-size: 1.3rem;
    display: none;
  }
}
.pp-service__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: flex-end;
}
@media (max-width: 991.98px) {
  .pp-service__actions {
    justify-content: space-between;
  }
}
@media (max-width: 767.98px) {
  .pp-service__actions {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
  }
}
.pp-service__price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
@media (max-width: 991.98px) {
  .pp-service__price-wrapper {
    align-items: flex-start;
  }
}
.pp-service__price {
  color: var(--text-primary);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.1;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .pp-service__price {
    font-size: 1.6rem;
    font-weight: 600;
  }
}
.pp-service__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  white-space: nowrap;
  margin-top: 6px;
}
@media (max-width: 991.98px) {
  .pp-service__meta {
    margin-left: 0;
    white-space: normal;
    flex-wrap: wrap;
  }
}
@media (max-width: 767.98px) {
  .pp-service__meta {
    display: none;
  }
}
.pp-service__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-600);
  font-size: 1.4rem;
  line-height: 1.2;
}
@media (max-width: 767.98px) {
  .pp-service__meta-item {
    font-size: 1.3rem;
  }
}
.pp-service__meta-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
}
.pp-service__meta-item-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--blue-300);
  flex: 0 0 auto;
}
.pp-service__btn {
  font-size: 1.7rem !important;
  padding: 0.8em 2em !important;
}
@media (max-width: 767.98px) {
  .pp-service__btn {
    display: none !important;
  }
}

[data-service-toggle] {
  cursor: pointer;
}

[data-service-card][data-expanded=true] .pp-service__price {
  display: none;
}
[data-service-card][data-expanded=true] .pp__service-toggle svg {
  transform: rotate(180deg);
}

[data-service-card][data-expanded=false] [data-service-toggle] {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
  [data-service-card][data-expanded=false] [data-service-toggle]:hover {
    border: 1px solid var(--blue-300);
  }
  [data-service-card][data-expanded=false] [data-service-toggle]:hover .pp__service-toggle {
    background: var(--blue-400);
  }
  [data-service-card][data-expanded=false] [data-service-toggle]:hover .pp__service-toggle span {
    color: var(--white);
  }
  [data-service-card][data-expanded=false] [data-service-toggle]:hover .pp__service-toggle svg {
    fill: var(--white);
    transform: translateX(2px);
  }
}

.pp-variants {
  padding: 0 24px;
  overflow: visible;
}
@media (max-width: 767.98px) {
  .pp-variants {
    padding: 0 6px;
  }
}
.pp-variants[hidden] {
  display: block;
  height: 0;
  overflow: hidden;
}
.pp-variants {
  transition: height 0.3s ease;
}
.pp-variants[data-collapsing=true] {
  overflow: hidden;
}
.pp-variants__wrapper {
  background: #fcfdfe;
  margin: 0;
  border-radius: 0 0 28px 28px;
  border: 1px solid var(--gray-200);
  border-top: none;
  overflow: hidden;
  margin-top: -2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
@media (max-width: 767.98px) {
  .pp-variants__wrapper {
    border-radius: 0 0 22px 22px;
    border: 1px solid var(--gray-300);
  }
}
.pp-variants__row {
  padding: 0 24px;
}
@media (max-width: 767.98px) {
  .pp-variants__row {
    padding: 0 16px;
  }
}
.pp-variants__row-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(214, 226, 243, 0.95);
  padding: 18px 0;
}
@media (max-width: 767.98px) {
  .pp-variants__row-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-top: 1px solid var(--gray-400);
  }
}
.pp-variants__main {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767.98px) {
  .pp-variants__main {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
}
.pp-variants__title {
  color: var(--text-primary);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 767.98px) {
  .pp-variants__title {
    font-size: 1.7rem;
    font-weight: 600;
  }
}
.pp-variants__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pp-variants__tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #f2f5fb;
  color: #40588d;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 767.98px) {
  .pp-variants__tag {
    font-size: 1.4rem;
    background: transparent;
    color: var(--gray-600);
    border: none;
    padding: 0;
  }
}
.pp-variants__side {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 0 0 auto;
}
@media (max-width: 767.98px) {
  .pp-variants__side {
    width: 100%;
    justify-content: space-between;
    gap: 14px;
  }
  .pp-variants__side .ui__btn {
    padding: 0.5em 0.8em !important;
  }
}
.pp-variants__price {
  text-align: right;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .pp-variants__price {
    text-align: left;
    white-space: normal;
  }
}
.pp-variants__value {
  color: #1F2A44;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.1;
}
@media (max-width: 767.98px) {
  .pp-variants__value {
    font-size: 1.7rem;
    font-weight: 600;
    coloR: var(--title);
  }
}
.pp-variants__note {
  margin-top: 4px;
  color: #4D5B78;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 767.98px) {
  .pp-variants__note {
    font-size: 1.2rem;
  }
}

.pp__hero {
  margin-bottom: 28px;
}
@media (max-width: 767.98px) {
  .pp__hero {
    margin-bottom: 20px;
  }
}
.pp__title {
  margin: 0;
  color: var(--title);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
}
@media (max-width: 767.98px) {
  .pp__title {
    font-size: 3rem;
  }
}
.pp__services {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 767.98px) {
  .pp__services {
    gap: 14px;
  }
}
.pp__service-toggle {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 999px;
  padding: 6px 8px 6px 14px;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.pp__service-toggle span {
  color: var(--blue-700);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .pp__service-toggle {
    margin-left: auto;
    gap: 8px;
    padding: 0;
    background: transparent;
  }
  .pp__service-toggle span {
    display: none;
  }
}
.pp__service-toggle svg {
  width: 16px;
  height: 16px;
  fill: var(--blue-700);
  transition: transform 0.2s ease;
}

/*# sourceMappingURL=style.css.map */
