/* Hero Section */
.subscription-hero {
    background: linear-gradient(rgba(30, 144, 255, 0.95), rgba(30, 144, 255, 0.85)), url('../assets/images/subscription-bg.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.subscription-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--white);
    transform: skewY(-3deg);
}

.subscription-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
}

.subscription-hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* Plans Section */
.plans-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.plans-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-color);
    position: relative;
}

.plans-section h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.plan-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.plan-card.featured {
    border: 2px solid var(--primary-color);
}

.plan-card.featured::before {
    content: "Recommandé";
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 1;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 1rem;
}

.plan-header h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.plan-price {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
}

.plan-price .period {
    font-size: 1rem;
    color: var(--light-text);
    font-weight: 400;
}

.plan-price .contact {
    font-size: 1.5rem;
}

.plan-features {
    flex: 1;
    margin-bottom: 2rem;
}

.plan-features ul {
    list-style: none;
}

.plan-features li {
    padding: 0.75rem 0;
    color: var(--light-text);
    border-bottom: 1px solid var(--border-color);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-cta {
    text-align: center;
    margin-top: auto;
}

.plan-cta .btn {
    width: 100%;
    padding: 1rem;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    background: var(--light-gray);
    padding: 100px 20px;
    position: relative;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-color);
    position: relative;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(30, 144, 255, 0.1);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-item h3 i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.faq-item p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .subscription-hero {
        padding: 80px 20px 40px;
    }

    .subscription-hero h1 {
        font-size: 2.5rem;
    }

    .subscription-hero p {
        font-size: 1.1rem;
    }

    .plans-section,
    .faq-section {
        padding: 60px 20px;
    }

    .plans-section h2,
    .faq-section h2 {
        font-size: 2rem;
    }

    .plans-grid {
        gap: 2rem;
    }

    .plan-card.featured {
        transform: none;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('../assets/images/pricing-bg.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0 60px;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--secondary-color);
}

.pricing-card.featured::before {
    content: "Recommandé";
    position: absolute;
    top: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    border-bottom-left-radius: 8px;
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    background: var(--light-gray);
}

.pricing-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.price .period {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 400;
}

.price .contact {
    font-size: 1.5rem;
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.pricing-cta {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid var(--light-gray);
}

.faq-section {
    padding: 4rem 20px;
    background: var(--light-gray);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 100px 20px 40px;
    }

    .pricing-hero h1 {
        font-size: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 2rem 20px;
    }

    .pricing-card.featured {
        transform: none;
    }
} 