* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f5f7fa;
    color: #2c3e50;
    line-height: 1.7;
}

a {
    color: inherit;
}

.top-banner {
    background: #000;
    color: #b3b6b7;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
}

.hero {
    background: #ffffff;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.hero h1 {
    font-size: clamp(2.1rem, 3vw, 3rem);
    font-weight: 800;
    color: #1c3d5a;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.15rem;
    color: #5d6d7e;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(247, 147, 30, 0.4);
}

.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.content-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

article {
    flex: 1;
    background: #ffffff;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

article h2 {
    font-size: clamp(1.6rem, 2.3vw, 2.2rem);
    margin-bottom: 20px;
    color: #1c3d5a;
}

article h3 {
    font-size: clamp(1.2rem, 1.9vw, 1.5rem);
    margin: 25px 0 15px;
    color: #2c3e50;
}

article p {
    margin-bottom: 18px;
}

article ul {
    margin: 0 0 20px 20px;
}

article li {
    margin-bottom: 10px;
}

.intro-meta {
    margin-bottom: 25px;
    color: #7f8c8d;
    font-size: 0.95rem;
}

.highlight-box {
    background: linear-gradient(120deg, #eff7ff, #ffffff);
    border-left: 4px solid #2980b9;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    font-style: italic;
    color: #34495e;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: #f0f6ff;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.stat-card strong {
    display: block;
    font-size: 1.8rem;
    color: #1c7ed6;
}

.sidebar {
    width: 320px;
    position: sticky;
    top: 20px;
}

.sidebar-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.sidebar-card h3 {
    font-size: 1.5rem;
    color: #1c3d5a;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 2.2rem;
    font-weight: 700;
    color: #27ae60;
    margin: 15px 0 5px;
}

.price-tag span {
    display: block;
    font-size: 1rem;
    color: #95a5a6;
    text-decoration: line-through;
}

.benefits-list {
    text-align: left;
    color: #2c3e50;
    margin: 20px 0;
}

.benefits-list li::marker {
    color: #27ae60;
}

.badge {
    background: #e8f5e8;
    color: #2e7d32;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    border-left: 4px solid #27ae60;
    margin: 20px 0;
}

.cta-secondary {
    display: block;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(39, 174, 96, 0.35);
}

.conclusion {
    margin-top: 50px;
    text-align: center;
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.conclusion h2 {
    font-size: clamp(1.7rem, 2.4vw, 2.4rem);
    margin-bottom: 20px;
    color: #1c3d5a;
}

.story-journal {
    background: #f8fbff;
    border-radius: 14px;
    padding: 25px;
    margin: 30px 0;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.story-journal h3 {
    margin-top: 0;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid rgba(39, 174, 96, 0.15);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.08);
}

.testimonial-card strong {
    display: block;
    margin-bottom: 8px;
    color: #1c3d5a;
}

/* Style pour le badge de vérification */
.verified-badge {
    display: inline-block;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 12px;
    margin-left: 8px;
    box-shadow: 0 2px 6px rgba(39, 174, 96, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
}

footer {
    text-align: center;
    padding: 40px 20px;
    color: #95a5a6;
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .content-layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        position: static;
    }
}

@media (max-width: 768px) {
    article {
        padding: 30px 20px;
    }

    .hero {
        padding: 40px 15px;
    }

    .page-wrapper {
        padding: 30px 15px 60px;
    }
}

/* Mobile CTA Sticky */
@media (max-width: 768px) {
    .mobile-cta-sticky {
        display: block !important;
    }
}