/* =========================================
   Subscription Pricing Cards Styling
   ========================================= */

:root {
    --primary-purple: #530966;
    --primary-gold: #b08968;
    --bg-light: #f4f7f6;
    --text-main: #2d3436;
    --success-green: #27ae60;
}

.row-fix {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.pricing-section {
    padding: 80px 0;
}

.pricing-card {
    background: #ffffff;
    border: none;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.card-header-main {
    padding: 40px 30px 20px;
    border-radius: 30px 30px 0 0;
    text-align: center;
}

.plan-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.badge-free {
    background: rgba(106, 27, 154, 0.1);
    color: var(--primary-purple);
}

.badge-family {
    background: rgba(176, 137, 104, 0.1);
    color: var(--primary-gold);
}

.for-whom {
    font-size: 0.9rem;
    color: #636e72;
    margin-bottom: 15px;
    font-weight: 500;
    display: block;
}

.price-display {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.price-display span {
    font-size: 1.2rem;
    font-weight: 400;
    color: #b2bec3;
}

/* Групування функцій */
.benefits-group {
    padding: 20px 30px;
    margin: 0;
    list-style: none;
    flex-grow: 1;
}

.group-title {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b2bec3;
    margin: 20px 0 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #f1f1f1;
}

.benefit-entry {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 0.95rem;
}

.benefit-entry .info {
    display: flex;
    align-items: center;
}

.benefit-entry i {
    font-size: 1.2rem;
    margin-right: 12px;
}

.status-icon {
    font-size: 1.1rem;
}

.status-yes {
    color: var(--success-green);
}

.status-no {
    color: #dfe6e9;
}

.val-text {
    font-size: 0.875rem;
    font-weight: 700;
}

.icon-purple {
    color: var(--primary-purple);
}

.icon-gold {
    color: var(--primary-gold);
}

/* Кастомна мітка через data-label */
.featured-border {
    border: 2px solid var(--primary-gold) !important;
}

.featured-border::after {
    content: attr(data-label);
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: white;
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.btn-action {
    border-radius: 15px;
    padding: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-free {
    background-color: #f1f2f6;
    color: var(--text-main);
    border: none;
}

.btn-free:hover {
    background-color: #dfe4ea;
}

.btn-family {
    background-color: var(--primary-gold);
    color: white;
    border: none;
    box-shadow: 0 10px 20px rgba(176, 137, 104, 0.3);
}

.btn-family:hover {
    background-color: #967356;
    color: white;
    transform: scale(1.02);
}

.muted-text {
    color: #b2bec3;
}