/* Pricing Section Styles */

.pricing {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 50px 0;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header */
.pricing .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
    margin-bottom: 0;
}

.pricing .section-badge i {
    color: #4a9eff;
    font-size: 16px;
}

.pricing .section-badge span {
    color: #4a9eff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pricing .section-title {
    font-size: 40px;
    font-weight: 700;
    color: #1a2942;
    margin-bottom: 15px;
    line-height: 1.2;
}

.pricing .section-subtitle {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Price Card */
.price-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: #4a9eff;
}

.price-card.popular {
    border-color: #4a9eff;
    border-width: 3px;
    box-shadow: 0 8px 24px rgba(74, 158, 255, 0.15);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4a9eff, #00d9ff);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(74, 158, 255, 0.4);
}

.popular-badge i {
    font-size: 12px;
}

/* Plan Header */
.plan-header {
    text-align: center;
}

.plan-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a2942;
    margin: 0 0 8px 0;
}

.plan-description {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}

/* Plan Price */
.plan-price {
    text-align: center;
    padding: 20px 0;
}

.price-amount {
    display: block;
    font-size: 35px;
    font-weight: 700;
    color: #1a2942;
    margin-bottom: 5px;
    line-height: 1;
}

.price-period {
    font-size: 12px;
    color: #6b7280;
}

/* Plan Button */
.plan-button {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.plan-button.primary {
    background: linear-gradient(135deg, #4a9eff, #00d9ff);
    color: white;
    border: none;
}

.plan-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 158, 255, 0.4);
}

.plan-button.outline {
    background: white;
    color: #4a9eff;
    border: 2px solid #4a9eff;
}

.plan-button.outline:hover {
    background: #4a9eff;
    color: white;
}

/* Plan Features */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.4;
}

.plan-features li i {
    color: #00d9a0;
    font-size: 16px;
    flex-shrink: 0;
}

/* Trial Note */
.trial-note {
    text-align: center;
    font-size: 15px;
    color: #6b7280;
    padding: 25px;
    background: rgba(74, 158, 255, 0.05);
    border-radius: 12px;
}

.trial-note strong {
    color: #4a9eff;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        gap: 40px;
    }
    
    .price-card.popular {
        order: -1;
    }
    
    .pricing .section-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 70px 0;
    }
    
    .pricing-container {
        padding: 0 20px;
    }
    
    .pricing .section-title {
        font-size: 36px;
    }
    
    .price-card {
        padding: 35px 30px;
    }
    
    .price-amount {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .pricing .section-title {
        font-size: 28px;
    }
    
    .plan-name {
        font-size: 22px;
    }
    
    .price-amount {
        font-size: 32px;
    }
}