/* ===== Pricing Section Redesign ===== */

.pricing {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 40px 35px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(168, 85, 247, 0.25);
    background: rgba(255, 255, 255, 0.85);
}

/* Wildberries Card */
.wb-card {
    border-color: rgba(168, 85, 247, 0.4);
}

.wb-card:hover {
    box-shadow: 0 25px 60px rgba(168, 85, 247, 0.35);
}

/* Ozon Card */
.ozon-card {
    border-color: rgba(59, 130, 246, 0.4);
}

.ozon-card:hover {
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.35);
}

/* Test Card */
.test-card {
    border-color: rgba(245, 158, 11, 0.4);
}

.test-card:hover {
    box-shadow: 0 25px 60px rgba(245, 158, 11, 0.35);
}

.pricing-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Title Styling */
.pricing-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(168, 85, 247, 0.15);
}

.wb-card .pricing-title {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ozon-card .pricing-title {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.test-card .pricing-title {
    background: linear-gradient(135deg, #f59e0b, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 24px;
}

/* Pricing Details */
.pricing-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.pricing-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, 0.1);
}

.pricing-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

/* Special styling for multi-line values */
.pricing-value.small {
    font-size: 18px;
    font-weight: 600;
}

/* Action Button */
.pricing-action {
    margin-top: auto;
}

.btn-order {
    display: block;
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.wb-card .btn-order {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
}

.wb-card .btn-order:hover {
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.5);
    transform: translateY(-2px);
}

.ozon-card .btn-order {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.ozon-card .btn-order:hover {
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}

.test-card .btn-order {
    background: linear-gradient(135deg, #f59e0b, #dc2626);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.test-card .btn-order:hover {
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.5);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
    
    .test-card {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .test-card {
        grid-column: auto;
        max-width: none;
    }
    
    .pricing-card {
        min-height: auto;
        padding: 35px 25px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .pricing-title {
        font-size: 24px;
    }
    
    .test-card .pricing-title {
        font-size: 20px;
    }
}
