/* ===== PRICING PAGE CSS ===== */

/* Hero Section - supprimé pour uniformisation */

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Billing Toggle */
.billing-toggle {
    text-align: center;
    margin-bottom: 40px;
}

/* Pricing Introduction */
.pricing-intro {
    text-align: center;
    margin-bottom: 60px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.pricing-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../images/pattern-1-Y8Br2nj.png") repeat;
    opacity: 0.3;
    z-index: 0;
}

.pricing-intro .intro-content {
    position: relative;
    z-index: 1;
}

.pricing-intro .intro-title {
    font-size: 2rem;
    font-weight: 700;
    color: #404854;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.pricing-intro .intro-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.pricing-intro .intro-text strong {
    color: #3264f5;
    font-weight: 600;
}

.pricing-intro .intro-highlight {
    font-size: 1.2rem;
    color: #00c853;
    margin: 15px 0 0 0;
    font-weight: 500;
}

.pricing-intro .intro-highlight strong {
    color: #00c853;
    font-weight: 700;
}

.billing-toggle .btn-group {
    background: #f5f5f5;
    border-radius: 50px;
    display: inline-flex;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.billing-toggle .btn {
    background: transparent;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    color: #666;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 120px;
}

.billing-toggle .btn.active {
    background: linear-gradient(135deg, #7004bc 0%, #3264f5 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(112, 4, 188, 0.3);
}

.billing-toggle .btn:hover:not(.active) {
    color: #7004bc;
}

/* Price Cards */
.price-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.price-card.featured {
    background: linear-gradient(135deg, #7004bc 0%, #3264f5 100%);
    color: white;
    transform: scale(1.05);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

/* Price Title */
.price-title-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.price-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #404854;
    font-family: 'Montserrat', sans-serif;
}

.featured .price-title {
    color: white;
}

.price-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #f023b6;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Price Subtitle */
.price-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
    min-height: 50px;
    line-height: 1.5;
}

.featured .price-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Price Amount */
.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #3264f5;
    margin-bottom: 30px;
    text-align: center;
}

.featured .price-amount {
    color: white;
}

.price-currency {
    font-size: 1.5rem;
    vertical-align: super;
    margin-left: 5px;
}

.price-period {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
}

.featured .price-period {
    color: rgba(255, 255, 255, 0.8);
}

/* Price Savings (Annual) */
.price-savings {
    background: #00c853;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

.price-monthly-equivalent {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
    font-weight: 500;
}

.featured .price-monthly-equivalent {
    color: rgba(255, 255, 255, 0.8);
}

/* Pricing Button */
.btn-pricing {
    background: linear-gradient(135deg, #7004bc 0%, #3264f5 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
}

.featured .btn-pricing {
    background: white;
    color: #3264f5;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.featured .btn-pricing:hover {
    color: #3264f5;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    line-height: 1.4;
}

.feature-list li i {
    color: #00c853;
    margin-right: 12px;
    font-size: 1rem;
    min-width: 20px;
}

.featured .feature-list li i {
    color: white;
}

.featured .feature-list li {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-intro {
        padding: 25px 20px;
        margin-bottom: 40px;
    }
    
    .pricing-intro .intro-title {
        font-size: 1.6rem;
    }
    
    .pricing-intro .intro-text {
        font-size: 1rem;
    }
    
    .pricing-intro .intro-highlight {
        font-size: 1.1rem;
    }
    
    .pricing-section {
        padding: 60px 0;
    }
    
    .billing-toggle .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 100px;
    }
    
    .price-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .price-card.featured {
        transform: none;
    }
    
    .price-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .price-title {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .btn-pricing {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .billing-toggle .btn-group {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .billing-toggle .btn {
        border-radius: 10px;
        margin: 2px 0;
    }
    
    .price-card {
        padding: 25px 15px;
    }
    
    .price-title {
        font-size: 1.3rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
}

/* ===== FAQ SECTION ===== */

.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #404854;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #3264f5;
    box-shadow: 0 5px 20px rgba(50, 100, 245, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fafafa;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #404854;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.faq-question i {
    color: #3264f5;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    transform: rotate(0deg);
}

.faq-question i.active {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-answer.active {
    max-height: 200px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer.active {
        padding: 0 25px 20px;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-answer.active {
        padding: 0 20px 18px;
    }
} 