* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #A80556;
    --primary-dark: #8A0445;
    --primary-light: rgba(168, 5, 86, 0.08);
    --dark: #000000;
    --bg-white: #FFFFFF;
    --text-dark: #1a1a1a;
    --text-muted: #555555;
    --shadow: rgba(168, 5, 86, 0.12);
    --border-radius: 20px;
    --border-radius-sm: 12px;
    --border-radius-lg: 28px;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================================================
   HEADER
   ===================================================== */
.header {
    background: var(--dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.header.menu-open {
    box-shadow: none;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    font-size: 22px;
    color: var(--primary);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--bg-white);
    letter-spacing: 0.3px;
}

.nav {
    display: none;
    gap: 28px;
}

.nav-link {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
    padding: 8px 0;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: var(--primary);
}

.nav.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    background: var(--dark);
    flex-direction: column;
    padding: 0 32px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.nav.active .nav-link {
    font-size: 17px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav.active .nav-link:last-child {
    border-bottom: none;
}

.nav.active .nav-link:hover {
    color: var(--primary);
}

.header-cta {
    display: none;
}

.mobile-menu-toggle {
    display: block;
    background: transparent;
    border: none;
    font-size: 22px;
    color: var(--bg-white);
    cursor: pointer;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.cta-button {
    background: var(--primary);
    color: var(--bg-white);
    padding: 13px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(168, 5, 86, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(168, 5, 86, 0.4);
}

.cta-large {
    padding: 16px 44px;
    font-size: 16px;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
    padding: 60px 0 70px;
    background: linear-gradient(160deg, rgba(168, 5, 86, 0.06) 0%, rgba(255,255,255,0) 70%);
    text-align: center;
}

.hero-content {
    max-width: 680px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(168, 5, 86, 0.1);
    border: 1.5px solid var(--primary);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 34px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 18px;
    line-height: 1.25;
}

.hero-title em {
    color: var(--primary);
    font-style: normal;
}

.hero-description {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.8;
}

/* =====================================================
   PROMO CODE BLOCK
   ===================================================== */
.promo-code {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 24px;
    background: var(--bg-white);
    border: 2px solid var(--primary);
    border-radius: var(--border-radius);
    margin-bottom: 0;
    box-shadow: 0 12px 40px var(--shadow);
}

.promo-code--hero {
    max-width: 480px;
    margin: 0 auto;
}

.promo-code__icon {
    width: 44px;
    height: 44px;
    font-size: 40px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: promo-code-flip 2s ease-in-out infinite;
}

@keyframes promo-code-flip {
    0%, 100% { transform: rotateY(0deg); }
    45%, 55% { transform: rotateY(180deg); }
}

.promo-code__content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    text-align: center;
}

.promo-code__title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.promo-code__description {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.promo-code__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 6px;
}

.promo-code__display {
    border: 2px dashed var(--primary);
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    flex: 1;
    font-weight: 700;
    font-size: 20px;
    color: var(--primary);
    background: var(--primary-light);
    text-align: center;
    letter-spacing: 0.08em;
    font-family: 'Lato', sans-serif;
}

.promo-code__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    width: 100%;
    border-radius: var(--border-radius-sm);
    background: var(--primary);
    color: var(--bg-white);
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s ease;
    box-shadow: 0 4px 16px rgba(168, 5, 86, 0.3);
}

.promo-code__btn:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

.promo-code__btn:active {
    transform: scale(0.98);
}

.promo-code__btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.promo-code__btn svg {
    width: 18px;
    height: 18px;
}

.promo-code__btn .icon-copy { display: block; }
.promo-code__btn .icon-copied { display: none; }
.promo-code__btn.copied .icon-copy { display: none; }
.promo-code__btn.copied .icon-copied { display: block; }

.promo-code__btn.copied {
    background: #1aab78;
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(26, 171, 120, 0.3);
}

/* =====================================================
   AVANTAGES RAPIDES
   ===================================================== */
.quick-benefits {
    padding: 48px 0;
    background: var(--bg-white);
    border-bottom: 1px solid rgba(168, 5, 86, 0.1);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--primary-light);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary);
}

.benefit-icon {
    font-size: 28px;
    flex-shrink: 0;
    line-height: 1;
}

.benefit-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* =====================================================
   SERVICES IMAGE (contenu)
   ===================================================== */
.services-figure {
    margin: 32px 0;
    text-align: center;
}

.services-img {
    display: block;
    width: 100%;
    max-width: 860px;
    height: auto;
    margin: 0 auto;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

/* =====================================================
   CONTENT SECTION
   ===================================================== */
.content-section {
    padding: 72px 0 24px;
    background: var(--bg-white);
}

.content-wrapper {
    margin-bottom: 56px;
}

.text-block {
    margin-bottom: 36px;
}

.text-block h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.text-block h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 28px;
    margin-bottom: 14px;
}

.text-block p {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.text-block ul {
    margin: 16px 0 20px;
    padding-left: 0;
    list-style: none;
}

.text-block li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    padding-left: 4px;
}

.text-block strong {
    color: var(--text-dark);
}

/* Highlight block */
.highlight-block {
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(168, 5, 86, 0.04) 100%);
    padding: 36px 40px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 1.5px solid rgba(168, 5, 86, 0.25);
    box-shadow: 0 8px 32px var(--shadow);
    margin: 32px 0;
}

.highlight-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.highlight-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
}

.brand-logo-content {
    display: block;
    height: 40px;
    width: auto;
    margin: 0 auto 20px;
}

/* =====================================================
   COMPARISON TABLE
   ===================================================== */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 32px var(--shadow);
    border: 1.5px solid rgba(168, 5, 86, 0.2);
}

.comparison-table thead {
    background: var(--primary);
}

.comparison-table th {
    padding: 1.1rem 1.4rem;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table tbody tr {
    background: #FFFFFF;
    transition: background 0.2s;
}

.comparison-table tbody tr:hover {
    background: var(--primary-light);
}

.comparison-table td {
    padding: 1.1rem 1.4rem;
    border-bottom: 1px solid rgba(168, 5, 86, 0.08);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    font-weight: 700;
    color: var(--primary);
    font-size: 15px;
    background: rgba(168, 5, 86, 0.04);
}

/* =====================================================
   FAQ SECTION
   ===================================================== */
.faq-section {
    padding: 72px 0;
    background: linear-gradient(160deg, rgba(168, 5, 86, 0.04) 0%, rgba(255,255,255,0) 60%);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 16px;
}

.section-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid rgba(168, 5, 86, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 24px;
    cursor: pointer;
    transition: background 0.3s;
    gap: 16px;
}

.faq-question:hover {
    background: var(--primary-light);
}

.faq-question h3 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
}

.faq-toggle {
    background: transparent;
    border: none;
    font-size: 18px;
    color: var(--primary);
    cursor: pointer;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 24px 24px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 8px 0;
}

.faq-answer li {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
    color: var(--text-muted);
}

/* =====================================================
   FINALE SECTION
   ===================================================== */
.finale-section {
    padding: 80px 0;
    background: var(--dark);
    text-align: center;
}

.finale-content {
    max-width: 600px;
    margin: 0 auto;
}

.finale-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 16px;
}

.finale-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
    line-height: 1.7;
}

.finale-promo {
    background: rgba(255,255,255,0.06);
    border-color: rgba(168, 5, 86, 0.6);
}

.finale-promo .promo-code__title {
    color: var(--bg-white);
}

.finale-promo .promo-code__description {
    color: rgba(255,255,255,0.65);
}

.finale-promo .promo-code__display {
    color: var(--bg-white);
    background: rgba(168, 5, 86, 0.15);
    border-color: var(--primary);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--dark);
    padding: 56px 0 32px;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 14px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    margin-bottom: 6px;
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
}

/* =====================================================
   STICKY BOTTOM CTA
   ===================================================== */
.sticky-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    border-top: 2px solid var(--primary);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    padding: 14px 0;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.sticky-bottom-cta.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.sticky-cta-text {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

.sticky-cta-text strong {
    color: var(--primary);
}

.sticky-copy-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--bg-white);
    border: none;
    border-radius: var(--border-radius-sm);
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.sticky-copy-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

.sticky-copy-btn.copied {
    background: #1aab78;
}

/* =====================================================
   MODAL
   ===================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 44px 36px;
    max-width: 440px;
    width: 100%;
    position: relative;
    transform: scale(0.92);
    transition: transform 0.3s;
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: transparent;
    border: none;
    font-size: 20px;
    color: var(--text-muted);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.modal-content {
    text-align: center;
}

.modal-icon {
    font-size: 52px;
    margin-bottom: 18px;
}

.modal-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.modal-text {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

/* =====================================================
   PROMOTIONS IMAGE
   ===================================================== */
.promotions-figure {
    margin: 28px 0 8px;
    text-align: center;
}

.promotions-img {
    display: block;
    width: 100%;
    max-width: 820px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(168, 5, 86, 0.12);
    margin: 0 auto;
}

.promotions-figure figcaption {
    margin-top: 10px;
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }

    .header-cta {
        display: inline-block;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .hero-title {
        font-size: 42px;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .promo-code {
        flex-direction: row;
        align-items: flex-start;
    }

    .promo-code__icon {
        width: 52px;
        height: 52px;
        font-size: 48px;
        flex-shrink: 0;
    }

    .promo-code__content {
        text-align: left;
    }

    .promo-code__actions {
        flex-direction: row;
        gap: 12px;
    }

    .promo-code__btn {
        width: auto;
        padding: 12px 28px;
    }

    .text-block h2 {
        font-size: 32px;
    }

    .section-title {
        font-size: 40px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .finale-title {
        font-size: 44px;
    }
}
