/* Styles spécifiques pour la page Pro */
.for-pros-page {
    background-color: var(--primary-white);
}

.pros-container {
    padding: 120px 24px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.pros-header {
    text-align: center;
    margin-bottom: 80px;
}

.pros-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-black) 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pros-header p {
    font-size: 1.25rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid des bénéfices */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 100px;
}

.benefit-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary-black);
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Section prix */
.pricing-section {
    margin-bottom: 100px;
    text-align: center;
}

.pricing-section h2 {
    font-size: 2.5rem;
    margin-bottom: 48px;
    color: var(--primary-black);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 0 auto;
    max-width: 1200px;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.pricing-card.pro {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-black);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-black);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.pricing-header {
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--primary-black);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-black);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.features-list {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.features-list li {
    margin-bottom: 16px;
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.pricing-cta {
    width: 100%;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    background: var(--primary-black);
    color: white;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    background: #333;
}

/* Section témoignages */
.testimonials-section {
    margin-bottom: 100px;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 48px;
    color: var(--primary-black);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #444;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-info strong {
    display: block;
    color: var(--primary-black);
    margin-bottom: 4px;
}

.author-info span {
    color: #666;
    font-size: 0.875rem;
}

/* Section CTA */
.cta-section {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0) 100%);
    border-radius: 24px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--primary-black);
}

.cta-section p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 32px;
}

/* Responsive */
@media (max-width: 768px) {
    .pros-container {
        padding: 100px 16px 60px;
    }

    .pros-header h1 {
        font-size: 2.5rem;
    }

    .pros-header p {
        font-size: 1.125rem;
    }

    .pricing-card.pro {
        transform: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1.125rem;
    }
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.billing-option {
    font-size: 1rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.billing-option.active {
    color: var(--primary-black);
    font-weight: 500;
}

/* Switch styling */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-black);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary-black);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Animation des prix */
.price {
    position: relative;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.price.switching {
    transform: translateY(10px);
    opacity: 0;
} 