/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Variables couleurs */
:root {
    --primary-violet: #7c3aed;
    --dark-violet: #5b21b6;
    --accent-pink: #ec4899;
    --dark-pink: #be185d;
    --neutral-gray: #f8fafc;
    --text-dark: #1e293b;
    --text-medium: #475569;
}

/* Top Banner */
.top-banner {
    background: #281763;
    color: white;
    text-align: center;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 1.1rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(139, 92, 246, 0.3);
}

#live-counter {
    color: var(--accent-pink);
    font-weight: 900;
    background: rgba(236, 72, 153, 0.15);
    padding: 3px 10px;
    border-radius: 15px;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-pink), var(--dark-pink));
    border-radius: 50px;
    padding: 15px 25px;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4);
    z-index: 999;
    transform: translateX(300px);
    transition: all 0.5s ease;
    border: 2px solid rgba(255,255,255,0.2);
}

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

.sticky-cta-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sticky-text {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.sticky-button {
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sticky-button:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.05);
}

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

/* Sections */
.section-violet {
    background: linear-gradient(135deg, #0f0726 0%, #1a0b4d 25%, #2d1b69 50%, #4c1d95 75%, #5b21b6 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.section-violet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.section-white {
    background: #ffffff;
    color: #333;
    padding: 100px 0;
}

/* Header */
.header {
    padding: 120px 0 100px;
    margin-top: 60px;
    position: relative;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.logo {
    font-size: 36px;
    font-weight: 900;
    color: white;
    text-decoration: none;
    background: linear-gradient(45deg, #ffffff, var(--primary-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 12px 24px;
    border-radius: 30px;
    border: 2px solid transparent;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
}

.hero {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4.8rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    background: linear-gradient(45deg, #ffffff, #e2e8f0, var(--primary-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .subtitle-line {
    font-size: 3.2rem;
    display: block;
    margin-top: 15px;
}

.hero .subtitle {
    font-size: 1.7rem;
    margin-bottom: 25px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
    color: #e2e8f0;
}

.hero .subtitle-secondary {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #cbd5e1;
}

/* Hero Elements */
.hero-elements {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
}

.launch-badge {
    background: linear-gradient(135deg, var(--primary-violet), var(--dark-violet));
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
    border: 2px solid rgba(255,255,255,0.2);
}

.main-cta {
    font-size: 1.4rem;
    padding: 25px 70px;
    background: linear-gradient(135deg, var(--accent-pink), var(--dark-pink));
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 20px 50px rgba(236, 72, 153, 0.5);
    animation: pulse-cta 3s ease-in-out infinite;
    border: none;
    cursor: pointer;
}

@keyframes pulse-cta {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 20px 50px rgba(236, 72, 153, 0.5);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 25px 60px rgba(236, 72, 153, 0.7);
    }
}

.main-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 25px 60px rgba(236, 72, 153, 0.6);
    color: white;
    text-decoration: none;
}

.social-proof {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 15px 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.social-proof:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.social-proof-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-pink);
    margin-bottom: 2px;
    line-height: 1;
}

.social-proof-text {
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Truth Section - Section Vérité */
.truth-section {
    background: linear-gradient(135deg, #fdf2f8 0%, #f8fafc 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.truth-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(124,58,237,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.truth-card {
    background: white;
    border-radius: 35px;
    padding: 70px 50px;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 
        0 25px 80px rgba(0,0,0,0.08),
        0 0 0 1px rgba(124,58,237,0.1);
    position: relative;
    overflow: hidden;
}

.truth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-violet), var(--accent-pink));
    border-radius: 35px 35px 0 0;
}

.truth-title {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

.truth-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
    font-style: italic;
}

.dream-reality-container {
    position: relative;
    margin-bottom: 50px;
}

.dream-reality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
}

.vs-separator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-pink), var(--dark-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
    border: 4px solid white;
    z-index: 10;
}

.truth-dream,
.truth-reality {
    background: rgba(255,255,255,0.7);
    border-radius: 25px;
    padding: 35px 30px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.truth-dream {
    border-color: rgba(124, 58, 237, 0.2);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.03), rgba(124, 58, 237, 0.08));
}

.truth-reality {
    border-color: rgba(236, 72, 153, 0.2);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.03), rgba(236, 72, 153, 0.08));
}

.truth-dream:hover,
.truth-reality:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.dream-heading,
.reality-heading {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.dream-heading {
    color: var(--primary-violet);
}

.reality-heading {
    color: var(--accent-pink);
}

.dream-list,
.reality-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dream-item,
.reality-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.dream-item {
    background: rgba(124, 58, 237, 0.05);
    border-left: 4px solid var(--primary-violet);
}

.reality-item {
    background: rgba(236, 72, 153, 0.05);
    border-left: 4px solid var(--accent-pink);
}

.dream-item:hover,
.reality-item:hover {
    transform: translateX(8px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.dream-icon-wrapper,
.reality-icon-wrapper {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.dream-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-violet), var(--dark-violet));
}

.reality-icon-wrapper {
    background: linear-gradient(135deg, var(--accent-pink), var(--dark-pink));
}

.dream-icon-wrapper svg,
.reality-icon-wrapper svg {
    stroke: white;
    width: 20px;
    height: 20px;
}

.dream-item p,
.reality-item p {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-violet), var(--dark-violet));
    padding: 35px 40px;
    border-radius: 25px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.highlight p {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 25px 0;
    line-height: 1.4;
}

.highlight-cta {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.highlight-cta:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    color: white;
    text-decoration: none;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.dream-item,
.reality-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reality-item {
    transform: translateX(20px);
}

.truth-card.visible .dream-item,
.truth-card.visible .reality-item {
    opacity: 1;
    transform: translateX(0);
}

.truth-card.visible .dream-item:nth-child(1) { transition-delay: 0.2s; }
.truth-card.visible .dream-item:nth-child(2) { transition-delay: 0.4s; }
.truth-card.visible .dream-item:nth-child(3) { transition-delay: 0.6s; }

.truth-card.visible .reality-item:nth-child(1) { transition-delay: 0.3s; }
.truth-card.visible .reality-item:nth-child(2) { transition-delay: 0.5s; }
.truth-card.visible .reality-item:nth-child(3) { transition-delay: 0.7s; }

/* Storytelling Section */
.storytelling-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 600;
}

.day-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-violet), var(--accent-pink));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-content {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid #f1f5f9;
    width: 45%;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-violet), var(--accent-pink));
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
    border: 3px solid white;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 25px;
    width: 0;
    height: 0;
    border: 12px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -24px;
    border-left-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -24px;
    border-right-color: white;
}

.time-badge {
    background: linear-gradient(135deg, var(--accent-pink), var(--dark-pink));
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
}

.moment-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
    line-height: 1.3;
}

.moment-description {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 12px;
}

.emotional-impact {
    background: rgba(236, 72, 153, 0.1);
    border-left: 3px solid var(--accent-pink);
    padding: 12px 15px;
    border-radius: 8px;
    font-style: italic;
    color: var(--dark-pink);
    font-weight: 600;
    font-size: 0.9rem;
}

.storytelling-cta {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 25px;
}

.cta-button {
    background: linear-gradient(135deg, var(--accent-pink), var(--dark-pink));
    color: white;
    padding: 15px 40px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.4);
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.6);
    color: white;
    text-decoration: none;
}

/* Results Section */
.results-section {
    margin-bottom: 80px;
    padding-top: 100px;
    margin-top: 60px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.result-card {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-violet), var(--accent-pink));
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.result-card:hover::before {
    transform: scaleX(1);
}

.result-card.violet {
    border-left: 4px solid var(--primary-violet);
}

.result-card.pink {
    border-left: 4px solid var(--accent-pink);
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(124, 58, 237, 0.15);
}

.result-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.result-card:nth-child(1) { transition-delay: 0.1s; }
.result-card:nth-child(2) { transition-delay: 0.2s; }
.result-card:nth-child(3) { transition-delay: 0.3s; }
.result-card:nth-child(4) { transition-delay: 0.4s; }
.result-card:nth-child(5) { transition-delay: 0.5s; }
.result-card:nth-child(6) { transition-delay: 0.6s; }

.result-number {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-violet), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: countUp 2s ease-out forwards;
}

.result-card.pink .result-number {
    background: linear-gradient(135deg, var(--accent-pink), var(--dark-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@supports not (-webkit-background-clip: text) {
    .result-number {
        color: var(--primary-violet);
    }
    .result-card.pink .result-number {
        color: var(--accent-pink);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.result-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1e293b;
}

.result-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.5;
}

.testimonial-section {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    border-left: 6px solid var(--accent-pink);
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.1);
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.testimonial-quote {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark-pink);
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: -30px;
    font-size: 4rem;
    color: var(--accent-pink);
    font-family: serif;
    opacity: 0.3;
}

.testimonial-description {
    font-size: 1.2rem;
    color: var(--dark-pink);
    font-style: italic;
    font-weight: 600;
    position: relative;
    z-index: 2;
    margin: 0;
}

/* Demo Section */
.demo-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.demo-header {
    text-align: center;
    margin-bottom: 60px;
}

.demo-title {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ffffff, var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.demo-subtitle {
    font-size: 1.3rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto;
}

.demo-interface {
    background: rgba(255,255,255,0.95);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
}

.demo-nav {
    background: #f8fafc;
    padding: 20px 30px;
    border-bottom: 2px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demo-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-violet);
}

.demo-tabs {
    display: flex;
    gap: 10px;
}

.demo-tab {
    padding: 12px 20px;
    border-radius: 15px;
    background: transparent;
    border: 2px solid #e2e8f0;
    color: #64748b;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.demo-tab.active {
    background: linear-gradient(135deg, var(--primary-violet), var(--dark-violet));
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

.demo-tab:hover:not(.active) {
    border-color: var(--primary-violet);
    color: var(--primary-violet);
    background: rgba(124, 58, 237, 0.05);
}

.demo-content {
    padding: 40px 30px;
    min-height: 500px;
    background: white;
}

.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Onglet Coworking */
.coworking-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.coworking-visual {
    background: linear-gradient(135deg, #fdf2f8, #fce7f3);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid #f3e8ff;
    position: relative;
    min-height: 300px;
}

.virtual-room {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-violet);
    transition: all 0.3s ease;
}

.virtual-room:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.15);
}

.room-title {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.room-users {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-violet), var(--dark-violet));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    border: 2px solid white;
    box-shadow: 0 3px 10px rgba(124, 58, 237, 0.3);
}

.room-activity {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
}

.coworking-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.feature-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Onglet IA Matching */
.matching-demo {
    text-align: center;
}

.matching-process {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0;
    gap: 20px;
}

.matching-step {
    flex: 1;
    background: #f8fafc;
    border-radius: 20px;
    padding: 25px 20px;
    border: 2px solid #e2e8f0;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-violet), var(--dark-violet));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.step-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.4;
}

.arrow-between {
    font-size: 1.5rem;
    color: var(--accent-pink);
    font-weight: 900;
}

.match-result {
    background: rgba(124, 58, 237, 0.08);
    border: 2px solid rgba(124, 58, 237, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
}

.match-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-violet);
    margin-bottom: 15px;
}

.match-profiles {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.profile-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    flex: 1;
    max-width: 200px;
}

.profile-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-violet), var(--dark-violet));
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.profile-name {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.profile-skill {
    color: #64748b;
    font-size: 0.9rem;
}

.heart-icon {
    font-size: 2rem;
    color: var(--accent-pink);
    animation: pulse-heart 1.5s infinite;
}

@keyframes pulse-heart {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Onglet Communauté */
.community-demo {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.chat-simulation {
    background: #f8fafc;
    border-radius: 20px;
    padding: 25px;
    border: 2px solid #e2e8f0;
    max-height: 400px;
    overflow-y: auto;
}

.chat-message {
    background: white;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary-violet);
}

.message-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.message-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-violet), var(--dark-violet));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 3px 10px rgba(124, 58, 237, 0.3);
}

.message-author {
    font-weight: 700;
    color: #1e293b;
}

.message-time {
    color: #64748b;
    font-size: 0.8rem;
}

.message-content {
    color: #475569;
    line-height: 1.5;
}

.responses-count {
    color: var(--accent-pink);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
}

/* Flip Card Fondatrice */
.flip-card-mini {
    width: 100%;
    max-width: 900px;
    height: 260px;
    margin: 0 auto;
    perspective: 1000px;
}

.flip-card-inner-mini {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    transition: transform 0.8s ease;
    transform-style: preserve-3d;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 1px solid #f1f5f9;
}

.flip-card-mini:hover .flip-card-inner-mini,
.flip-card-mini:active .flip-card-inner-mini {
    transform: rotateY(180deg);
}

.flip-card-front-mini,
.flip-card-back-mini {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    backface-visibility: hidden;
    background: white;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
}

.flip-card-back-mini {
    background: linear-gradient(135deg, #4c1d95, #ec4899);
    color: white;
    transform: rotateY(180deg);
}

.founder-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    justify-content: center;
}

.founder-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 3px solid white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.founder-info h3 {
    font-size: 1.8rem;
    color: #1e293b;
    font-weight: 900;
    margin: 0;
    letter-spacing: -0.5px;
}

.founder-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
    justify-content: center;
}

.founder-tag {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
}

.founder-intro {
    font-size: 1.15rem;
    color: #334155;
    line-height: 1.4;
    margin: 15px 0 0;
    flex: 1;
    font-weight: 600;
    text-align: center;
}

.flip-hint {
    text-align: center;
}

.flip-hint span {
    margin-top: auto;
    font-size: 0.9rem;
    color: #ec4899;
    background: rgba(236, 72, 153, 0.08);
    padding: 10px 16px;
    border-radius: 20px;
    font-weight: 700;
    text-align: center;
    display: inline-block;
}

.founder-story-mini {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    font-size: 1rem;
    line-height: 1.5;
}

.founder-story-mini p {
    text-align: center;
    color: #fff;
}

.cta-link {
    margin-top: 20px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    background: rgba(255,255,255,0.15);
    padding: 12px 24px;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-link:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* Pack Section - Tarifs */
.pack-section {
    background: linear-gradient(135deg, #0f0726 0%, #1a0b4d 25%, #2d1b69 50%, #4c1d95 75%, #5b21b6 100%);
    color: white;
    padding: 100px 0;
    position: relative;
}

.pack-header {
    text-align: center;
    margin-bottom: 60px;
}

.pack-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 900;
    background: linear-gradient(45deg, #ffffff, var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.places-counter {
    background: linear-gradient(90deg, var(--accent-pink), var(--dark-pink));
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.2rem;
    display: inline-block;
    margin-bottom: 30px;
    animation: pulse-glow 2s infinite;
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.4);
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.pack-card {
    background: rgba(255,255,255,0.1);
    border: 3px solid var(--accent-pink);
    border-radius: 30px;
    padding: 50px 40px;
    max-width: 700px;
    margin: 0 auto;
    backdrop-filter: blur(20px);
    text-align: center;
}

.pack-badge {
    background: linear-gradient(135deg, var(--accent-pink), var(--dark-pink));
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

.pack-price {
    margin-bottom: 40px;
}

.original-price {
    font-size: 1.4rem;
    text-decoration: line-through;
    opacity: 0.7;
    color: #e2e8f0;
}

.free-price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-pink);
    margin: 15px 0;
    text-shadow: 0 5px 15px rgba(236, 72, 153, 0.3);
}

.pack-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 600;
    color: #e2e8f0;
}

.bonus-section {
    background: rgba(124, 58, 237, 0.15);
    border-radius: 20px;
    padding: 30px 25px;
    margin: 30px 0;
    border: 2px solid rgba(124, 58, 237, 0.3);
    backdrop-filter: blur(10px);
}

.bonus-title {
    color: var(--primary-violet);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.bonus-list {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.bonus-list li {
    padding: 10px 0;
    font-size: 1rem;
    color: #e2e8f0;
    position: relative;
    padding-left: 30px;
}

.bonus-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--accent-pink), var(--dark-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
}

.final-cta {
    background: #e54090;
    color: white;
    padding: 20px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    transition: all 0.4s ease;
    box-shadow: 0 20px 50px rgba(196, 111, 173, 0.4);
    display: inline-block;
    margin: 30px 0;
    border: none;
    cursor: pointer;
}

.final-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 25px 60px rgba(236, 72, 153, 0.6);
    color: white;
    text-decoration: none;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 30px;
    text-align: center;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: inline-block;
    background: linear-gradient(45deg, #ffffff, var(--primary-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.footer-description {
    color: #94a3b8;
    max-width: 400px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid transparent;
}

.footer-links a:hover {
    color: var(--accent-pink);
    border-color: var(--accent-pink);
    background: rgba(236, 72, 153, 0.1);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 25px;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h1 .subtitle-line {
        font-size: 1.8rem;
    }
    
    .main-cta {
        padding: 20px 50px;
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .truth-card {
        padding: 40px 25px;
        border-radius: 25px;
    }

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

    .truth-subtitle {
        font-size: 1.1rem;
    }

    .dream-reality-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vs-separator {
        top: 45%;
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .dream-heading,
    .reality-heading {
        font-size: 1.2rem;
    }

    .timeline-line {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 70px);
        margin-left: 70px !important;
        margin-right: 0 !important;
    }
    
    .timeline-content::before {
        left: -24px !important;
        right: auto !important;
        border-right-color: white !important;
        border-left-color: transparent !important;
    }
    
    .timeline-dot {
        left: 30px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .results-section {
        padding-top: 80px;
        margin-top: 40px;
    }
    
    .result-card {
        padding: 30px 20px;
    }
    
    .result-number {
        font-size: 3rem;
    }
    
    .testimonial-section {
        padding: 35px 25px;
    }
    
    .testimonial-quote {
        font-size: 1.6rem;
    }
    
    .testimonial-description {
        font-size: 1rem;
    }
    
    .demo-title {
        font-size: 2.2rem;
    }
    
    .demo-tabs {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .demo-tab {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .coworking-demo {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .matching-process {
        flex-direction: column;
        gap: 15px;
    }
    
    .arrow-between {
        transform: rotate(90deg);
    }
    
    .match-profiles {
        flex-direction: column;
        gap: 15px;
    }
    
    .founder-header {
        flex-direction: column;
        text-align: center;
    }

    .flip-card-mini {
        height: 300px;
    }

    .founder-info h3 {
        font-size: 1.5rem;
    }

    .founder-intro {
        font-size: 1rem;
    }
    
    .pack-card {
        padding: 40px 25px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Animations supplémentaires */
.fade-in-title {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.fade-in-title.visible {
    opacity: 1;
    transform: translateY(0);
}