/* ============================================
   Site généré automatiquement — MonthAbor.net
   Thème: Electric Green | Font: Montserrat
============================================ */

/* RESET & BASE */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #0a1a14 0%, #0d2d15 50%, #050d09 100%);
    color: #ffffff;
    min-height: 100vh;
    line-height: 1.7;
    overflow-x: hidden;
}

:root {
    --primary: #00ff88;
    --secondary: #00cc66;
    --accent: #ff6600;
    --bg-dark: #0a1a14;
    --bg-darker: #050d09;
    --bg-card: #0d2d15;
    --text: #ffffff;
    --text-muted: rgba(255,255,255,0.7);
    --cta-gradient: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
    --cta-text: #000000;
    --font-family: 'Montserrat', sans-serif;
    --content-max-width: 950px;
}

/* ANIMATIONS */
@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px color-mix(in srgb, var(--primary) 50%, transparent); }
    50% { transform: scale(1.05); box-shadow: 0 0 40px color-mix(in srgb, var(--primary) 80%, transparent); }
}
@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 var(--primary), 0 0 20px var(--primary), 0 0 30px var(--secondary); }
    50% { text-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary), 0 0 60px var(--secondary); }
}
@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, color-mix(in srgb, var(--secondary) 15%, transparent) 0%, transparent 100%);
    padding: 20px 0;
    border-bottom: 2px solid color-mix(in srgb, var(--primary) 30%, transparent);
}
.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: var(--primary);
    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: var(--primary); }
nav a::after {
    content: ''; position: absolute; bottom: -5px; left: 0;
    width: 0; height: 2px; background: var(--primary); transition: width 0.3s ease;
}
nav a:hover::after { width: 100%; }

/* HERO */
.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: var(--content-max-width); margin: 0 auto; position: relative; z-index: 1;
}
.hero-lite { padding: 60px 20px; }
.hero-badge {
    display: inline-block; background: linear-gradient(90deg, var(--accent), var(--primary));
    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, var(--primary), var(--secondary));
    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: var(--cta-gradient); color: var(--cta-text);
    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: var(--primary); }
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }
.hero-image {
    width: 100%; max-width: 820px; border-radius: 20px;
    margin: 35px auto 30px; display: block;
    border: 1px solid color-mix(in srgb, var(--primary) 30%, transparent); opacity: 0.92;
}

/* FEATURES */
.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: var(--primary);
}
.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 color-mix(in srgb, var(--primary) 20%, transparent);
    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: color-mix(in srgb, var(--primary) 50%, transparent); }
.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 */
.content { padding: 80px 20px; max-width: var(--content-max-width); margin: 0 auto; }
.content h2 { font-size: 2rem; color: var(--primary); margin-bottom: 25px; margin-top: 50px; }
.content h2:first-of-type { margin-top: 0; }
.content h3 { font-size: 1.5rem; color: var(--secondary); margin-bottom: 15px; margin-top: 35px; }
.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: var(--primary); }
.content ol { margin: 20px 0; padding-left: 30px; }
.content ol li::marker { color: var(--primary); font-weight: 700; }
.content-image {
    width: 100%; max-width: 750px; border-radius: 15px;
    margin: 30px auto; display: block;
    border: 1px solid color-mix(in srgb, var(--primary) 20%, transparent);
}
.content a.internal-link {
    color: var(--primary); text-decoration: none; font-weight: 600;
    border-bottom: 1px solid color-mix(in srgb, var(--primary) 40%, transparent);
    transition: border-color 0.3s ease;
}
.content a.internal-link:hover { border-color: var(--primary); }
.highlight-box {
    background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 10%, transparent), color-mix(in srgb, var(--secondary) 10%, transparent));
    border-left: 4px solid var(--primary); padding: 25px 30px;
    margin: 30px 0; border-radius: 0 15px 15px 0;
}
.highlight-box p { margin-bottom: 0; font-weight: 600; }

/* COMPARISON TABLE */
.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, color-mix(in srgb, var(--primary) 20%, transparent), color-mix(in srgb, var(--secondary) 20%, transparent));
    color: var(--primary); padding: 15px; text-align: left; font-weight: 700;
}
.comparison-table td {
    padding: 15px; border-bottom: 1px solid color-mix(in srgb, var(--primary) 10%, transparent);
    color: rgba(255,255,255,0.85);
}
.comparison-table tr:hover { background: color-mix(in srgb, var(--primary) 5%, transparent); }
.comparison-table .badge-best {
    background: linear-gradient(90deg, var(--accent), var(--primary));
    color: #000; padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 700;
}
.comparison-table .cta-small {
    background: var(--cta-gradient); color: var(--cta-text);
    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); }

/* CTA BOX */
.cta-box {
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 20%, transparent), color-mix(in srgb, var(--secondary) 20%, transparent));
    border: 2px solid color-mix(in srgb, var(--primary) 40%, transparent);
    border-radius: 20px; padding: 40px; text-align: center; margin: 50px 0;
}
.cta-box h3 { font-size: 1.8rem; color: var(--primary); margin-bottom: 15px; }
.cta-box p { font-size: 1.1rem; margin-bottom: 25px; text-align: center; }

/* CTA SECTION */
.cta-section {
    padding: 100px 20px; text-align: center;
    background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--secondary) 10%, transparent));
}
.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;
}

/* TESTIMONIALS */
.testimonial {
    background: rgba(255,255,255,0.03);
    border: 1px solid color-mix(in srgb, var(--primary) 15%, transparent);
    border-radius: 15px; padding: 25px; margin: 20px 0;
}
.testimonial-stars { color: var(--primary); font-size: 1.2rem; margin-bottom: 10px; }
.testimonial p { color: rgba(255,255,255,0.85); font-style: italic; }
.testimonial strong { color: var(--primary); }

/* FAQ */
.faq-section { padding: 80px 20px; max-width: var(--content-max-width); margin: 0 auto; }
.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid color-mix(in srgb, var(--primary) 20%, transparent);
    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: var(--font-family); transition: background 0.3s ease;
}
.faq-question:hover { background: color-mix(in srgb, var(--primary) 5%, transparent); }
.faq-question::after {
    content: '+'; font-size: 1.5rem; color: var(--primary);
    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; }

/* BREADCRUMB */
.breadcrumb {
    padding: 15px 20px; max-width: var(--content-max-width); margin: 0 auto;
}
.breadcrumb-container {
    font-size: 0.9rem; color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--primary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { margin: 0 8px; }
.breadcrumb-current { color: rgba(255,255,255,0.7); }

/* READING TIME */
.reading-time {
    display: inline-block; color: rgba(255,255,255,0.5);
    font-size: 0.9rem; margin-bottom: 20px;
}

/* TOAST */
.toast-container { position: fixed; bottom: 100px; left: 20px; z-index: 999; }
.toast {
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-card));
    border: 1px solid color-mix(in srgb, var(--primary) 30%, transparent);
    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: var(--cta-gradient);
    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; }

/* URGENCY */
.urgency-counter {
    background: linear-gradient(90deg, color-mix(in srgb, var(--accent) 20%, transparent), color-mix(in srgb, var(--secondary) 20%, transparent));
    border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
    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: var(--accent); font-weight: 800; }

/* FOOTER */
footer {
    background: rgba(0,0,0,0.3); padding: 40px 20px; text-align: center;
    border-top: 1px solid color-mix(in srgb, var(--primary) 10%, transparent);
}
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: var(--primary); }

/* STICKY CTA */
.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, var(--accent) 0%, var(--secondary) 100%);
    border-radius: 50%; text-decoration: none; color: #fff; font-weight: 800;
    box-shadow: 0 10px 40px color-mix(in srgb, var(--accent) 50%, transparent);
    transition: transform 0.3s ease; border: 4px solid #fff;
}
.sticky-cta a:hover { transform: scale(1.15); }
.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 */
.mobile-sticky {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 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; flex-wrap: wrap; justify-content: center; }
    .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; }
    .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; }
}
