/* ============================================================================
   HOMEPAGE RIVAL - MODERN DESIGN
   Inspiré de dfns.co - Design moderne et épuré
   ============================================================================ */

/* Base */
.home-page {
    width: 100%;
    overflow-x: hidden;
    background: #fafafa;
}

/* Section commune styles */
section {
    width: 100%;
    padding: 60px 20px;
}

.section-title {
    font-size: var(--text-4xl);
    font-weight: var(--font-semibold);
    text-align: center;
    margin-bottom: 12px;
    color: var(--color-gray-900);
    line-height: 1.2;
}

.section-subtitle {
    font-size: var(--text-lg);
    font-weight: var(--font-regular);
    text-align: center;
    color: var(--color-gray-600);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ============================================================================
   SECTION 1: HERO
   ============================================================================ */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 120px 20px 80px;
    position: relative;
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0px 10px;
}

.hero-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 32px;
}

.hero-video-container {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
}

/* Notifications animées */
.hero-notif {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    background: white;
    padding: 10px 14px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(10px);
    animation: notifAppear 10s ease-in-out infinite;
    max-width: 280px;
}

.hero-notif-left {
    left: 0;
    transform-origin: left center;
}

.hero-notif-right {
    right: 0;
    transform-origin: right center;
}

.hero-notif-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-notif-green .hero-notif-icon {
    background: rgba(34, 197, 94, 0.1);
    color: rgb(34, 197, 94);
}

.hero-notif-blue .hero-notif-icon {
    background: rgba(59, 130, 246, 0.1);
    color: rgb(59, 130, 246);
}

.hero-notif-purple .hero-notif-icon {
    background: rgba(169, 129, 187, 0.1);
    color: var(--color-primary);
}

.hero-notif-content {
    flex: 1;
}

.hero-notif-text {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-gray-900);
    line-height: 1.4;
}

/* Positionnement des notifications */
.hero-notif-1 {
    top: 15%;
    animation-delay: 0s;
}

.hero-notif-2 {
    top: 30%;
    animation-delay: 2s;
}

.hero-notif-3 {
    top: 45%;
    animation-delay: 4s;
}

.hero-notif-4 {
    top: 60%;
    animation-delay: 6s;
}

.hero-notif-5 {
    top: 75%;
    animation-delay: 8s;
}

/* Animation d'apparition/disparition */
@keyframes notifAppear {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }

    10% {
        opacity: 0.9;
        transform: translateY(0) scale(1);
    }

    25% {
        opacity: 0.9;
        transform: translateY(0) scale(1);
    }

    35% {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }

    100% {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
}

.hero-title {
    font-size: var(--text-5xl);
    font-weight: var(--font-semibold);
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--color-gray-900);
}

.hero-action {
    color: var(--color-gray-900);
}

.hero-revolution {
    color: var(--color-primary);
    display: inline-block;
    position: relative;
}

.hero-subtitle {
    font-size: var(--text-xl);
    font-weight: var(--font-regular);
    color: var(--color-gray-700);
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
    max-width: 700px;
    justify-self: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-primary,
.hero-cta-secondary {
    padding: 18px 36px;
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 50px;
}

.hero-cta-primary svg {
    transition: transform 0.2s ease;
}

.hero-cta-primary:hover svg {
    transform: translateX(4px);
}

.hero-cta-primary:hover,
.hero-cta-secondary:hover {
    transform: translate3d(0, -2px, 0);
}

.hero-stats {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    font-size: var(--text-sm);
    color: var(--color-gray-500);
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--color-primary);
    opacity: 0.6;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-8px);
    }

    60% {
        transform: translateX(-50%) translateY(-4px);
    }
}

/* ============================================================================
   SECTION 2: MANIFESTO
   ============================================================================ */
.manifesto-section {
    background: #fff;
    padding: 0px 0px;
}

.manifesto-container {
    padding: 60px 0px;
    background: #fafafa;
}

.manifesto-split {
    display: grid;
    max-width: 1200px;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
    margin: auto;
    margin-bottom: 40px;

}

.manifesto-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 32px;
    transition: all 0.2s ease;
}

.manifesto-card:hover {
    transform: translate3d(0, -4px, 0);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.manifesto-old:hover {
    border-color: rgba(239, 68, 68, 0.2);
}

.manifesto-new:hover {
    border-color: rgba(169, 129, 187, 0.3);
}

.manifesto-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.manifesto-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.manifesto-icon-old {
    background: rgba(239, 68, 68, 0.1);
    color: rgb(239, 68, 68);
}

.manifesto-icon-new {
    background: rgba(169, 129, 187, 0.1);
    color: var(--color-primary);
}

.manifesto-card h3 {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--color-gray-900);
    margin: 0;
}

.manifesto-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.manifesto-list li {
    padding: 12px 0;
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-gray-700);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.manifesto-list li:last-child {
    border-bottom: none;
}

.manifesto-old li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgb(239, 68, 68);
    flex-shrink: 0;
    margin-top: 8px;
    opacity: 0.6;
}

.manifesto-new li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    flex-shrink: 0;
    margin-top: 8px;
}

.manifesto-cta {
    text-align: center;
}

.manifesto-cta .button-base,
.story-container .button-base {
    display: inline-flex;
    width: auto;
    padding: 18px 36px;
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    align-items: center;
    gap: 8px;
    height: 50px;
}

.manifesto-cta .button-base:hover {
    transform: translate3d(0, -2px, 0);
}

/* ============================================================================
   SECTION 3: LES 6 PILIERS
   ============================================================================ */
.pillars-section {
    padding: 60px 0px;
    background: #fff;
}

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

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

.pillar-card {
    padding: 32px;
    border-radius: 10px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.pillar-card:hover {
    transform: translate3d(0, -4px, 0);
    border-color: rgba(169, 129, 187, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(169, 129, 187, 0.1);
    border-radius: 10px;
}

.pillar-card h3 {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: var(--color-gray-900);
    margin-bottom: 12px;
}

.pillar-card p {
    font-size: var(--text-base);
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 400;
}

.pillar-example {
    background: #fff;
    border-radius: 4px;
    font-size: var(--text-sm);
    font-weight: 400;
    color: #A981BB;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 16px;
    padding-top: 16px;
}

/* ============================================================================
   SECTION 4: SUCCESS STORY
   ============================================================================ */
.story-section {
    padding: 0px 0px;
    background: #fff;
}

.story-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 20px;
    background: #fafafa;
    box-sizing: border-box;
}

.story-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 40px 0;
    box-sizing: border-box;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(169, 129, 187, 0.2), rgba(169, 129, 187, 0.5), rgba(169, 129, 187, 0.2));
    transform: translateX(-50%);
}

.story-step {
    position: relative;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 60px;
}

.story-step:last-child {
    margin-bottom: 0;
}

.story-step:nth-child(odd) {
    justify-content: flex-end;
}

.story-step:nth-child(odd) .story-card {
    margin-right: 0;
    text-align: left;
}

.story-step:nth-child(even) .story-card {
    margin-left: 0;
    text-align: left;
}

.story-step .story-card {
    width: calc(50% - 1px);
}

.story-year {
    font-size: var(--text-3xl);
    font-weight: var(--font-semibold);
    color: #A981BB;
    display: inline-block;
}

.story-card {
    background: #fff;
    padding: 24px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
}

.story-step:nth-child(odd) .story-icon {
    margin: 0 0 16px auto;
}

.story-step:nth-child(even) .story-icon {
    margin: 0 auto 16px 0;
}

.story-card:hover {
    transform: translate3d(0, -4px, 0);
    border-color: rgba(169, 129, 187, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.story-icon {
    width: 48px;
    height: 48px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-card h4 {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    margin-bottom: 12px;
    color: var(--color-gray-900);
    margin-top: 10px;
}

.story-card p {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 400;
}

.story-amount {
    font-size: var(--text-base);
    font-weight: var(--font-bold);
    color: var(--color-gray-800);
    padding: 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.story-amount.highlight {
    background: rgba(169, 129, 187, 0.08);
    color: var(--color-primary);
    border-color: rgba(169, 129, 187, 0.2);
}

.story-amount.mega {
    background: var(--color-primary);
    color: white;
    font-size: var(--text-lg);
    border: none;
}

.story-fan-note {
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    color: var(--color-primary);
    margin-top: 12px;
}

.story-cta {
    text-align: center;
}

/* ============================================================================
   SECTION 5: 3 TYPES DE VENTES
   ============================================================================ */
.sales-types-section {
    padding: 60px 0px;
    background: #fff;
}

.sales-types-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

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

.sale-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 32px 24px;
    transition: all 0.2s ease;
    position: relative;
}

.sale-card:hover {
    transform: translate3d(0, -4px, 0);
    border-color: rgba(169, 129, 187, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.sale-card-highlight {
    background: linear-gradient(140deg, rgba(169, 129, 187, 0.04) 0%, rgba(169, 129, 187, 0.02) 100%);
    border: 1px solid rgba(169, 129, 187, 0.2);
}

.sale-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
}

.sale-icon {
    width: 48px;
    height: 48px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(169, 129, 187, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
}

.sale-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.final-cta-buttons {
    display: flex;
    flex-direction: row-reverse;
    gap: 16px;
    justify-content: center;
    margin-bottom: 18px;
}

.sale-icon i {

    color: var(--color-primary);
}

.sale-card h3 {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    text-align: left;
    margin-bottom: 8px;
    color: var(--color-gray-900);

}

.sale-tagline {
    font-size: var(--text-sm);
    text-align: left;
    color: var(--color-gray-600);
    margin-bottom: 20px;
}

.sale-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.sale-features li {
    padding: 8px 0;
    font-size: var(--text-sm);
    color: var(--color-gray-700);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-weight: 400;
}

.sale-features li:last-child {
    border-bottom: none;
}

.sale-features li::before {
    content: "✓ ";
    color: var(--color-primary);
    font-weight: var(--font-bold);
    margin-right: 8px;
}

.sale-feature-last::before {
    content: "✗ " !important;
}

.sale-example {
    padding: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: left;
}

.sale-example-label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    color: var(--color-gray-500);
    margin-bottom: 6px;
    font-weight: var(--font-semibold);
}

.sale-example div:last-child {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--color-primary);
}

/* ============================================================================
   SECTION 6: ÉCONOMIE CIRCULAIRE - ANTI-LEAK
   ============================================================================ */
.antileak-section {
    padding: 60px 0px;
    background: #fafafa;
}

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

.antileak-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 48px;
}

.antileak-problem,
.antileak-solution {
    text-align: left;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.antileak-problem {
    background: rgba(239, 68, 68, 0.03);
}

.antileak-problem:hover {
    transform: translate3d(0, -4px, 0);
    border-color: rgba(239, 68, 68, 0.2);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.1);
}

.antileak-solution {
    background: linear-gradient(140deg, rgba(169, 129, 187, 0.04) 0%, rgba(169, 129, 187, 0.02) 100%);
    border: 1px solid rgba(169, 129, 187, 0.2);
}

.antileak-solution:hover {
    transform: translate3d(0, -4px, 0);
    /* border-color: rgba(34, 197, 94, 0.2);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.1); */
}

.antileak-icon {
    width: 80px;
    height: 80px;
    border-radius: 17%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px 0;
}

.antileak-icon-red {
    background: rgba(239, 68, 68, 0.1);
    color: rgb(239, 68, 68);
}

.antileak-icon-green {
    background: rgba(169, 129, 187, 0.1);

    color: var(--color-primary);
}

.antileak-problem h3,
.antileak-solution h3 {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    margin-bottom: 12px;
    color: var(--color-gray-900);
}

.antileak-problem p,
.antileak-solution p {
    font-size: var(--text-base);
    color: var(--color-gray-700);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.antileak-arrow {
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.antileak-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.antileak-feature {
    text-align: left;
    padding: 24px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.antileak-feature:hover {
    transform: translate3d(0, -4px, 0);
    border-color: rgba(169, 129, 187, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.antileak-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(169, 129, 187, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 16px 0;
}

.antileak-feature h4 {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    margin-bottom: 8px;
    color: var(--color-gray-900);
}

.antileak-feature p {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

/* ============================================================================
   SECTION 7: FEATURES GRID
   ============================================================================ */
.features-section {
    padding: 60px 20px;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
}

.features-section .section-title {
    margin-bottom: 48px;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
}

.feature-card {
    text-align: left;
    padding: 24px;
    background: white;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.feature-card:hover {
    transform: translate3d(0, -4px, 0);
    border-color: rgba(169, 129, 187, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 0 16px 0;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(169, 129, 187, 0.1);
}

.feature-card h4 {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    margin-bottom: 8px;
    color: var(--color-gray-900);
}

.feature-card p {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

/* ============================================================================
   SECTION 7.5: MARCHÉ SECONDAIRE - PUT/CALL
   ============================================================================ */
.secondary-market-section {
    padding: 60px 20px;
    background: #fafafa;
}

.secondary-market-container {
    max-width: 1200px;
    margin: 0 auto;
}

.market-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.market-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 40px 32px;
    transition: all 0.2s ease;
}

.market-card:hover {
    border-color: rgba(169, 129, 187, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.market-card-put:hover {
    border-color: rgba(169, 129, 187, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.market-card-call:hover {
    border-color: rgba(169, 129, 187, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.market-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.market-card-put .market-icon {
    background: rgba(169, 129, 187, 0.1);
    color: #A981BB;
}

.market-card-call .market-icon {
    background: #A981BB;
    color: #fff;
}

.market-card h3 {
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    color: var(--color-gray-900);
    margin-bottom: 12px;
}

.market-tagline {
    font-size: var(--text-base);
    color: var(--color-gray-600);
    margin-bottom: 32px;
    line-height: 1.5;
}

.market-steps {
    margin-bottom: 32px;
}

.market-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.market-step:last-child {
    margin-bottom: 0;
}

.market-step-number {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    background: rgba(169, 129, 187, 0.1);
    color: var(--color-primary);
}

.market-step-text {
    font-size: var(--text-sm);
    color: var(--color-gray-700);
    line-height: 1.6;
    flex: 1;
    padding-top: 4px;
    font-weight: 400;
}

.market-example {
    padding: 20px;
    background: #fafafa;
    border-radius: 8px;
}

.market-example-label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    color: var(--color-gray-500);
    font-weight: var(--font-semibold);
    margin-bottom: 8px;
}

.market-example-text {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-primary);
}

.market-benefits {
    text-align: center;
    padding: 40px 24px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.market-benefits h4 {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: var(--color-gray-900);
    margin-bottom: 24px;
}

.market-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.market-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--text-sm);
    color: var(--color-gray-700);
    text-align: left;
}

.market-benefit svg {
    flex-shrink: 0;
    color: var(--color-primary);
}

/* ============================================================================
   SECTION 8: SOCIAL PROOF - STATS
   ============================================================================ */
.social-proof-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
}

.social-proof-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

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

.stat-number {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    opacity: 0.9;
}

/* ============================================================================
   SECTION 9: FINAL CTA
   ============================================================================ */
.final-cta-section {
    padding: 80px 20px;
    background: white;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.final-cta-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 48px 40px;
    border-radius: 16px;
    border: solid 1px rgba(169, 129, 187, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    width: 100%;
    box-sizing: border-box;
}

.final-cta-section .section-title {
    color: var(--color-gray-900);
    margin-bottom: 30px;
    margin-top: 0px;
}

.final-cta-section .section-subtitle {
    color: var(--color-gray-600);
    margin-bottom: 32px;
}

.final-cta-button {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    margin-bottom: 16px;
    display: inline-block;
    transition: all 0.2s ease;
}

.final-cta-button:hover {
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 8px 24px rgba(169, 129, 187, 0.3);
}

.final-cta-link {
    display: block;
    font-size: var(--text-base);
    color: var(--color-primary);
    text-decoration: none;
    margin-bottom: 32px;
    font-weight: var(--font-medium);
    transition: opacity 0.2s ease;
}

.final-cta-link:hover {
    opacity: 0.7;
}

.final-cta-features {
    display: flex;
    gap: 32px;
    justify-content: center;
    padding-top: 24px;
}

.final-cta-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-sm);
    color: var(--color-gray-700);
    font-weight: var(--font-medium);
}

.final-cta-features span::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(169, 129, 187, 0.1);
    color: var(--color-primary);
    border-radius: 50%;
    font-weight: var(--font-bold);
    font-size: var(--text-xs);
}

/* ============================================================================
   SECTION 8: COLLABORATION & PARTAGE DES REVENUS
   ============================================================================ */
.collaboration-section {
    padding: 60px 0px;
    background: #fff;
}

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

.collaboration-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 48px;
}

/* Visual Diagram */
.collaboration-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.collaboration-diagram {
    display: flex;
    align-items: center;
    gap: 0;
}

.collab-user {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.collab-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(169, 129, 187, 0.2) 0%, rgba(139, 107, 160, 0.1) 100%);
    color: var(--color-primary);
    border: 3px solid rgba(169, 129, 187, 0.3);
}

.collab-avatar-1 {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(79, 82, 221, 0.1) 100%);
    border-color: rgba(99, 102, 241, 0.3);
    color: #6366f1;
}

.collab-avatar-2 {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(216, 52, 133, 0.1) 100%);
    border-color: rgba(236, 72, 153, 0.3);
    color: #ec4899;
}

.collab-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray-900);
}

.collab-percentage {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
}

.collab-connector {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collab-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.collab-media-icon {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(169, 129, 187, 0.1) 0%, rgba(139, 107, 160, 0.05) 100%);
    border: 2px solid rgba(169, 129, 187, 0.3);
    color: var(--color-primary);
}

.collab-media-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray-700);
}

/* Features List */
.collaboration-features {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.collaboration-feature {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: #fafafa;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.collaboration-feature:hover {
    transform: translate3d(0, -2px, 0);
    border-color: rgba(169, 129, 187, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.collaboration-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(169, 129, 187, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.collaboration-feature-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 8px;
}

.collaboration-feature-content p {
    font-size: 14px;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

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

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 768px) {
    .hero-notif {
        display: none;
    }

    .hero-video-container {
        max-width: 200px;
    }

    .hero-title {
        font-size: var(--text-3xl);
    }
}

@media (max-width: 1024px) {
    .hero-video-container {
        max-width: 200px;
    }

    .hero-title {
        font-size: var(--text-3xl);
    }

    .manifesto-split {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-timeline::before {
        display: none;
    }

    .story-step {
        display: block !important;
        margin-bottom: 40px;
        width: 100%;
    }

    .story-step:nth-child(odd),
    .story-step:nth-child(even) {
        justify-content: flex-start;
        display: block !important;
    }

    .story-step .story-card {
        width: 100% !important;
    }

    .story-step:nth-child(odd) .story-card,
    .story-step:nth-child(even) .story-card {
        width: 100% !important;
        text-align: left;
        margin: 0 !important;
        max-width: 100%;
    }

    .story-step:nth-child(odd) .story-year,
    .story-step:nth-child(even) .story-year {
        margin: 0 0 16px 0;
    }

    .story-step:nth-child(odd) .story-icon,
    .story-step:nth-child(even) .story-icon {
        margin: 0 0 16px 0;
    }

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

    .antileak-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .antileak-arrow {
        transform: rotate(90deg);
    }

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collaboration-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .collaboration-features {
        flex-direction: column;
    }

    .collab-connector {
        width: 150px;
    }

    .collab-avatar {
        width: 70px;
        height: 70px;
    }

    .collab-media-icon {
        width: 90px;
        height: 90px;
    }

    .market-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .market-benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Mobile (max 767px) */
@media (max-width: 767px) {
    section {
        padding: 48px 16px;
    }

    .hero-section {
        min-height: 70vh;
        padding: 100px 0px 60px;
    }

    .hero-video-wrapper {
        margin-bottom: 60px;
    }

    .manifesto-list li {
        font-size: var(--text-sm);
    }

    .pillar-card p {
        font-size: var(--text-sm);
    }

    .story-year {
        font-size: var(--text-2xl);
        margin: 0px !important;
    }

    .story-card h4 {
        font-size: var(--text-lg);
    }

    .antileak-problem h3,
    .antileak-solution h3 {
        font-size: var(--text-base);
    }

    .antileak-problem p,
    .antileak-solution p {
        font-size: var(--text-sm);
    }

    .antileak-features {
        gap: 16px;
    }

    .hero-video-container {
        max-width: 140px;
        margin-bottom: 0;
        border-radius: 8px;
    }

    .hero-notif {
        position: absolute;
        left: 10px;
        right: 10px;
        top: auto;
        transform: translateY(10px);
        bottom: -20px;
        max-width: none;
        padding: 8px 10px;
        gap: 8px;
    }

    .hero-notif-icon {
        width: 28px;
        height: 28px;
    }

    .hero-notif-text {
        font-size: var(--text-xs);
        line-height: 1.3;
    }

    .hero-notif-1 {
        animation-delay: 0s;
    }

    .hero-notif-2 {
        animation-delay: 2s;
    }

    .hero-notif-3 {
        animation-delay: 4s;
    }

    .hero-notif-4 {
        animation-delay: 6s;
    }

    .hero-notif-5 {
        animation-delay: 8s;
    }

    @keyframes notifAppear {
        0% {
            opacity: 0;
            transform: translateY(10px) scale(0.95);
        }

        5% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        15% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        20% {
            opacity: 0;
            transform: translateY(-10px) scale(0.95);
        }

        100% {
            opacity: 0;
            transform: translateY(-10px) scale(0.95);
        }
    }

    .hero-title {
        font-size: var(--text-3xl);
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: var(--text-base);
        margin-bottom: 24px;
    }

    .hero-ctas {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .manifesto-container {
        padding: 48px 16px;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        padding: 16px 28px;
    }

    .section-title {
        font-size: var(--text-2xl);
    }

    .section-subtitle {
        font-size: var(--text-base);
        margin-bottom: 32px;
    }

    .manifesto-old,
    .manifesto-new {
        padding: 24px;
    }

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

    .final-cta-buttons {
        flex-direction: column;
    }

    .pillar-card {
        padding: 24px;
    }

    .story-step {

        margin-bottom: 20px;

    }

    .story-section {
        padding: 0;
        overflow-x: hidden;
        width: 100%;
    }

    .story-container {
        padding: 48px 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .story-timeline {
        padding: 20px 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .story-card {
        padding: 24px;
        width: 100% !important;
        box-sizing: border-box;
    }

    .sale-card {
        padding: 24px 20px;
    }


    .antileak-content {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 32px;
    }

    .features-section {
        padding: 48px 16px;
    }

    .features-container {
        width: 100%;
        padding: 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        width: 100%;
    }

    .feature-card {
        padding: 24px;
        width: 100%;
    }

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

    .stat-number {
        font-size: var(--text-3xl);
    }

    .final-cta-section {
        padding: 48px 16px;
        width: 100%;
    }

    .final-cta-container {
        padding: 32px 20px;
        width: 100%;
        max-width: 100%;
    }

    .final-cta-button {
        width: 100%;
        padding: 16px 32px;
        box-sizing: border-box;
    }

    .final-cta-features {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .collaboration-container {
        padding: 0 16px;
    }

    .collaboration-content {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 32px;
    }

    .collaboration-features {
        flex-direction: column;
        gap: 16px;
    }

    .collaboration-diagram {
        flex-direction: column;
        gap: 16px;
    }

    .collab-connector {
        width: 100%;
        height: 40px;
    }

    .collab-connector svg {
        transform: rotate(90deg);
        width: 40px;
        height: 80px;
    }

    .collab-avatar {
        width: 56px;
        height: 56px;
    }

    .collab-avatar svg {
        width: 24px;
        height: 24px;
    }

    .collab-label {
        font-size: 13px;
    }

    .collab-percentage {
        font-size: 16px;
    }

    .collab-media-icon {
        width: 70px;
        height: 70px;
    }

    .collab-media-icon svg {
        width: 28px;
        height: 28px;
    }

    .collab-media-label {
        font-size: 13px;
    }

    .collaboration-feature {
        padding: 16px;
        flex-direction: column;
    }



    .collaboration-feature-content h3 {
        font-size: 15px;
    }

    .collaboration-feature-content p {
        font-size: 13px;
    }

    .market-card {
        padding: 24px 20px;
    }

    .market-card h3 {
        font-size: var(--text-lg);
    }

    .story-amount.mega {
        font-size: var(--text-base);
    }

    .market-icon {
        width: 56px;
        height: 56px;
    }

    .market-benefits {
        padding: 24px 16px;
    }

    .market-benefits h4 {
        font-size: var(--text-lg);
    }

    .secondary-market-section {
        padding: 48px 0px;
    }

    .secondary-market-container {
        padding: 0px 10px;
    }
}

/* Very small mobile (max 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: var(--text-2xl);
    }

    .section-title {
        font-size: var(--text-xl);
    }

    .pillar-card h3,
    .sale-card h3,
    .feature-card h4 {
        font-size: var(--text-base);
    }
}