/* ============================================
   RESET & BASE
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    color: #ffffff;
    min-height: 100vh;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ============================================
   VARIABLES DE COULEURS
============================================ */
:root {
    --primary: #ffd700;
    --secondary: #ff8c00;
    --accent: #ff0844;
    --bg-dark: #1a1a2e;
    --bg-darker: #0f0f23;
    --text: #ffffff;
    --text-muted: rgba(255,255,255,0.7);
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 0 40px rgba(255, 215, 0, 0.8); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 10px #ffd700, 0 0 20px #ffd700, 0 0 30px #ff8c00; }
    50% { text-shadow: 0 0 20px #ffd700, 0 0 40px #ffd700, 0 0 60px #ff8c00; }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px) rotate(-1deg); }
    75% { transform: translateX(5px) rotate(1deg); }
}

@keyframes slideIn {
    0% { transform: translateX(100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
    0% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

/* ============================================
   HEADER
============================================ */
header {
    background: linear-gradient(180deg, rgba(255, 140, 0, 0.15) 0%, transparent 100%);
    padding: 20px 0;
    position: relative;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffd700;
    text-decoration: none;
    animation: glow 2s ease-in-out infinite;
}

.logo-icon {
    font-size: 2.5rem;
    animation: float 3s ease-in-out infinite;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #ffd700;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '🐯';
    position: absolute;
    font-size: 300px;
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(90deg, #ff6b6b, #ffd700);
    color: #000;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ffffff, #ffd700, #ff8c00);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

.hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #000;
    padding: 20px 50px;
    border-radius: 60px;
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    animation: pulse 2s ease-in-out infinite;
    transition: transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-cta:hover {
    transform: scale(1.1);
    animation: none;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffd700;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Image */
.hero-image {
    width: 100%;
    max-width: 820px;
    border-radius: 20px;
    margin: 35px auto 30px;
    display: block;
    border: 1px solid rgba(255, 215, 0, 0.3);
    opacity: 0.92;
}

/* ============================================
   FEATURES SECTION
============================================ */
.features {
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.02);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: #ffd700;
}

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

.feature-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* ============================================
   CONTENT SECTION
============================================ */
.content {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.content h2 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 25px;
    margin-top: 50px;
}

.content h2:first-of-type {
    margin-top: 0;
}

.content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    text-align: justify;
}

.content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.content li::marker {
    color: #ffd700;
}

/* Content Images */
.content-image {
    width: 100%;
    max-width: 750px;
    border-radius: 15px;
    margin: 30px auto;
    display: block;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Internal Links */
.content a.internal-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 215, 0, 0.4);
    transition: border-color 0.3s ease;
}

.content a.internal-link:hover {
    border-color: #ffd700;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.1));
    border-left: 4px solid #ffd700;
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 0 15px 15px 0;
}

.highlight-box p {
    margin-bottom: 0;
    font-weight: 600;
}

/* ============================================
   TABLEAU COMPARATIF
============================================ */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
}

.comparison-table th {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.2));
    color: #ffd700;
    padding: 15px;
    text-align: left;
    font-weight: 700;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    color: rgba(255, 255, 255, 0.85);
}

.comparison-table tr:hover {
    background: rgba(255, 215, 0, 0.05);
}

.comparison-table .badge-best {
    background: linear-gradient(90deg, #ff6b6b, #ffd700);
    color: #000;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.comparison-table .cta-small {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-block;
    transition: transform 0.2s ease;
}

.comparison-table .cta-small:hover {
    transform: scale(1.05);
}

/* ============================================
   FAQ ACCORDÉON
============================================ */
.faq-section {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    text-align: left;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.05);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #ffd700;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(255, 140, 0, 0.1));
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   CTA MID-CONTENT
============================================ */
.cta-box {
    background: linear-gradient(135deg, rgba(255, 8, 68, 0.2), rgba(255, 140, 0, 0.2));
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin: 50px 0;
}

.cta-box h3 {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-align: center;
}

/* ============================================
   SOCIAL PROOF NOTIFICATIONS (TOAST)
============================================ */
.toast-container {
    position: fixed;
    bottom: 100px;
    left: 20px;
    z-index: 999;
}

.toast {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.5s ease forwards;
    max-width: 320px;
}

.toast.hiding {
    animation: slideOut 0.5s ease forwards;
}

.toast-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.toast-content {
    flex: 1;
}

.toast-name {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.95rem;
}

.toast-message {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.toast-amount {
    color: #4ade80;
    font-weight: 700;
}

/* ============================================
   COMPTEUR URGENCE
============================================ */
.urgency-counter {
    background: linear-gradient(90deg, rgba(255, 8, 68, 0.2), rgba(255, 140, 0, 0.2));
    border: 1px solid rgba(255, 8, 68, 0.4);
    border-radius: 10px;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    animation: pulse 3s ease-in-out infinite;
}

.urgency-counter .icon {
    font-size: 1.3rem;
}

.urgency-counter .text {
    font-weight: 600;
    color: #ffffff;
}

.urgency-counter .number {
    color: #ff6b6b;
    font-weight: 800;
}

/* ============================================
   FOOTER
============================================ */
footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-warning {
    max-width: 800px;
    margin: 0 auto 20px;
    padding: 20px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: left;
    line-height: 1.6;
}

.footer-links {
    margin-top: 8px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

.footer-links a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

/* ============================================
   STICKY CTA BUTTON (Desktop)
============================================ */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: shake 0.5s ease-in-out infinite;
    animation-delay: 3s;
    transition: opacity 0.3s ease;
}

.sticky-cta a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #ff0844 0%, #ffb199 100%);
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 10px 40px rgba(255, 8, 68, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 4px solid #fff;
}

.sticky-cta a:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 50px rgba(255, 8, 68, 0.7);
}

.sticky-cta .bonus-text {
    font-size: 1.8rem;
    line-height: 1;
}

.sticky-cta .bonus-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.sticky-cta .click-text {
    font-size: 0.65rem;
    margin-top: 8px;
    opacity: 0.9;
}

/* Mobile sticky bar */
.mobile-sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #ff0844 0%, #ff8c00 100%);
    padding: 15px 20px;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
}

.mobile-sticky a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    nav {
        gap: 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-cta {
        padding: 18px 35px;
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .content h2 {
        font-size: 1.6rem;
    }

    .sticky-cta {
        display: none;
    }

    .mobile-sticky {
        display: block;
    }

    body {
        padding-bottom: 80px;
    }

    .toast-container {
        left: 10px;
        right: 10px;
        bottom: 90px;
    }

    .toast {
        max-width: 100%;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }

    .hero-image {
        border-radius: 14px;
        margin: 25px auto 20px;
    }

    .content-image {
        border-radius: 12px;
        margin: 22px auto;
    }

    .cta-box {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .logo-icon {
        font-size: 2rem;
    }

    nav a {
        font-size: 0.9rem;
    }

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

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}
