.prices-section {
    padding: 48px 0;
}

.prices-page-section {
    padding-bottom: 48px;
}

.price-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 32px rgba(48, 51, 52, 0.1);
    border: 1px solid rgba(48, 51, 52, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.price-card:hover {
    box-shadow: 0 16px 40px rgba(48, 51, 52, 0.14);
    transform: translateY(-4px);
}

.price-card__header {
    padding: 28px 24px 22px;
    border-bottom: 1px solid rgba(48, 51, 52, 0.08);
    background: linear-gradient(180deg, rgba(200, 170, 94, 0.08) 0%, transparent 100%);
}

.price-card__name {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.price-card__amount {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
}

.price-card__from {
    font-size: 14px;
    font-weight: 600;
    color: var(--medium-gray);
}

.price-card__value {
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    color: var(--base-color);
    letter-spacing: -0.02em;
}

.price-card__currency {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-gray);
}

.price-card__old {
    display: block;
    margin-top: 8px;
    font-size: 15px;
    color: var(--medium-gray);
    opacity: 0.75;
}

.price-card__body {
    flex: 1;
    padding: 22px 24px;
}

.price-card__includes-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--base-color);
    margin: 0 0 14px;
}

.price-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.price-card__list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--medium-gray);
    margin-bottom: 10px;
}

.price-card__list-item:last-child {
    margin-bottom: 0;
}

.price-card__list-item i {
    color: var(--base-color);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

.price-card__footer {
    padding: 0 24px 24px;
}

.price-card__footer--no-features {
    margin-top: 22px;
}

.price-card__footer .btn.btn-switch-text {
    height: 47px;
    min-height: 47px;
    max-height: 47px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.price-card__footer .btn.btn-switch-text > span {
    height: 47px;
    min-height: 47px;
    display: inline-flex;
    align-items: center;
    box-sizing: border-box;
}
