:root {
    --bg: #0a0a0f;
    --bg-card: #12121a;
    --bg-alt: #0e0e16;
    --text: #e8e8ec;
    --text-muted: #8888a0;
    --accent: #6c5ce7;
    --accent-hover: #7d6ff0;
    --accent-glow: rgba(108, 92, 231, 0.3);
    --green: #00d2a0;
    --border: #1e1e2e;
    --radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--accent);
    text-decoration: none;
}

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

/* NAV */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    padding: 16px 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

.logo span {
    color: var(--accent);
}

.nav-cta {
    background: var(--accent);
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

/* HERO */
.hero {
    padding: 140px 0 80px;
    text-align: center;
    background: radial-gradient(ellipse at 50% 0%, rgba(108, 92, 231, 0.12) 0%, transparent 60%);
}

.hero-badge {
    display: inline-block;
    background: rgba(108, 92, 231, 0.15);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(108, 92, 231, 0.3);
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 30%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #fff;
    padding: 16px 36px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.25s;
    box-shadow: 0 4px 24px var(--accent-glow);
}

.cta-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--accent-glow);
}

.cta-price {
    font-size: 0.85rem;
    opacity: 0.85;
    margin-top: 12px;
    color: var(--text-muted);
}

/* STATS BAR */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--green);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* PROBLEM SECTION */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 48px;
    font-size: 1.05rem;
}

/* PROBLEMS GRID */
.problems {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.problem-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* WHAT'S INSIDE */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.content-list {
    list-style: none;
}

.content-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.content-list .check {
    color: var(--green);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.content-preview {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
}

.content-preview .pdf-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.content-preview h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.content-preview p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* PRICING */
.pricing-card {
    max-width: 480px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 8px 40px var(--accent-glow);
}

.pricing-card .price {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 16px 0;
}

.pricing-card .price span {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-card .price-sub {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.pricing-features .check {
    color: var(--green);
}

/* FAQ */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 600;
    padding: 20px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-arrow {
    transition: transform 0.3s;
    font-size: 1.2rem;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

/* FINAL CTA */
.final-cta {
    text-align: center;
    padding: 80px 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(108, 92, 231, 0.1) 0%, transparent 60%);
}

.final-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.final-cta p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

/* FOOTER */
footer {
    border-top: 1px solid var(--border);
    padding: 32px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* TRADE FEED */
.trade-feed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.trade-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform 0.2s;
}

.trade-card:hover {
    transform: translateY(-4px);
}

.trade-card.trade-win {
    border-left: 3px solid var(--green);
}

.trade-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.trade-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.trade-status-dot.win {
    background: var(--green);
    box-shadow: 0 0 6px var(--green);
}

.trade-label {
    color: var(--green);
    font-weight: 600;
}

.trade-time {
    color: var(--text-muted);
    margin-left: auto;
}

.trade-market {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 16px;
    line-height: 1.4;
}

.trade-details {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
}

.trade-detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trade-detail-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trade-detail-value {
    font-weight: 600;
    font-size: 0.95rem;
}

.trade-profit {
    color: var(--green);
    font-weight: 700;
}

.trade-trader {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.trade-trader strong {
    color: var(--accent);
}

/* LIVE BANNER */
.live-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 210, 160, 0.08);
    border: 1px solid rgba(0, 210, 160, 0.2);
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 0.9rem;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 210, 160, 0.5); }
    50% { box-shadow: 0 0 0 8px rgba(0, 210, 160, 0); }
}

.live-text {
    color: var(--text-muted);
}

/* PROOF COUNTERS */
.proof-counters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
    padding: 20px 0;
}

.proof-counter {
    padding: 24px;
}

.proof-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.proof-label {
    font-size: 1rem;
    color: var(--text-muted);
}

/* TESTIMONIALS */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.2s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-stars {
    color: #f5b731;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.65;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* STEPS (Comment ca marche) */
.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    margin-top: 8px;
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.step p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.step-arrow {
    font-size: 1.8rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    padding: 0 16px;
    margin-top: 48px;
}

/* BOT SCREENSHOTS */
.bot-screenshots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bot-screen {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.bot-screen-header {
    background: #1a1a2e;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border);
}

.bot-screen-dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
}

.bot-screen-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text);
}

.bot-screen-body {
    padding: 16px;
    background: #0e0e18;
    min-height: 200px;
}

.tg-message {
    background: #1e1e36;
    border-radius: 0 12px 12px 12px;
    padding: 14px 16px;
    margin-bottom: 10px;
}

.tg-msg-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: var(--text);
}

.tg-msg-line {
    font-size: 0.85rem;
    color: var(--text);
    padding: 3px 0;
    line-height: 1.5;
}

.tg-label {
    color: var(--text-muted);
}

.tg-msg-time {
    text-align: right;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.tg-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 0 4px;
}

.tg-btn {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    flex: 1;
    text-align: center;
}

.bot-screen-label {
    padding: 12px 16px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    border-top: 1px solid var(--border);
}

/* PERSONAS (Pour qui) */
.personas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.persona-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.2s;
}

.persona-card:hover {
    transform: translateY(-4px);
}

.persona-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.persona-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text);
}

.persona-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.persona-fits {
    list-style: none;
    text-align: left;
}

.persona-fits li {
    padding: 4px 0;
    font-size: 0.85rem;
    color: var(--green);
    font-weight: 600;
}

/* TRUST BADGES */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.4;
}

.trust-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.trust-label strong {
    color: var(--text);
}

/* REFERRAL / PARRAINAGE */
.referral-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
}

.referral-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.referral-highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding: 20px;
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.25);
    border-radius: var(--radius);
}

.referral-pct {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.referral-pct-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.referral-perks {
    list-style: none;
}

.referral-perks li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
}

.referral-perks li strong {
    color: var(--green);
}

.referral-example {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}

.referral-example-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text);
}

.referral-step-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.referral-step-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.referral-step-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.referral-step-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 2px;
}

.referral-step-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.referral-step-item:last-child strong {
    color: var(--green);
    font-size: 1.05rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

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

    .stats-bar {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .trade-feed {
        grid-template-columns: 1fr;
    }

    .proof-counters {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .steps {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .step {
        max-width: 100%;
        width: 100%;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin-top: 0;
        padding: 0;
    }

    .bot-screenshots {
        grid-template-columns: 1fr;
    }

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

    .trust-badges {
        gap: 20px;
    }

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

    .referral-card {
        padding: 24px;
    }

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

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-card .price {
        font-size: 2.8rem;
    }
}

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

    .cta-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .nav-cta {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}
