.pricing-section {
    padding: 5px 0 80px 0;  /* было 80px 0 */
    background: #f8fafc;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.pricing-card.popular {
    border-color: #f60;
    box-shadow: 0 10px 30px rgba(255,102,0,0.12);
}

.pricing-card.popular:hover {
    box-shadow: 0 20px 50px rgba(255,102,0,0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #f60;
    color: white;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
}

.pricing-header h3 {
    font-size: 24px;
    color: #1a1a1a;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #f60;
    margin: 10px 0 5px;
}

.price-period {
    color: #6b7280;
    font-size: 14px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1a1a1a;
}

.pricing-features li.included i {
    color: #22c55e;
    font-size: 18px;
    width: 24px;
}

.pricing-features li.excluded {
    color: #9ca3af;
}

.pricing-features li.excluded i {
    color: #ef4444;
    font-size: 18px;
    width: 24px;
}

.btn-pricing {
    padding: 14px;
    background: #f60;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

.btn-pricing:hover {
    background: #ff7a1a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,102,0,0.25);
}

/* Switching Cards  */
.pricing-card {
    cursor: pointer;
}


/* Description Block  */
.pricing-description {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 2px solid #f60;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.pricing-description.flash {
    animation: flash 0.5s ease;
}

@keyframes flash {
    0% { border-color: #f60; box-shadow: 0 0 0 0 rgba(255,102,0,0.4); }
    50% { border-color: #ff7a1a; box-shadow: 0 0 20px 10px rgba(255,102,0,0.2); }
    100% { border-color: #f60; box-shadow: 0 0 0 0 rgba(255,102,0,0); }
}

.pricing-description h3 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.pricing-description .plan-price {
    font-size: 24px;
    font-weight: 700;
    color: #f60;
    margin-bottom: 15px;
}

.pricing-description .plan-description {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.6;
}

.pricing-description .plan-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.pricing-description .plan-features li {
    font-size: 14px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-description .plan-features li i {
    color: #22c55e;
}