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

html {
    scroll-behavior: smooth;
}

:root {
    --color-primary: #187d0f;
    --color-text: #111728;
    --color-white: #ffffff;
    --color-black: #000000;
    --spacing-section: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: white;
    color: var(--color-text);
    overflow-x: hidden;
}

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

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

/* Animation en cascade au chargement */
.fade-in-up.initial-load {
    animation: fadeInUpInitial 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInUpInitial {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Délais pour l'animation en cascade */
.hero.fade-in-up.initial-load {
    animation-delay: 0.1s;
}

.video-section.fade-in-up.initial-load {
    animation-delay: 0.2s;
}

.testimonials-wrapper.fade-in-up.initial-load {
    animation-delay: 0.3s;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 8px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.header .cta-btn {
    padding: 14px 16px;
    transition: all 0.3s ease;
}

.header .cta-btn.scrolled {
    background: var(--color-primary);
    color: white;
}

.logo {
    font-size: 19px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.38px;
    line-height: 32px;
    width: 760px;
}

.cta-btn {
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 24px 32px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    background: transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
    width: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.cta-btn:hover {
    background: var(--color-primary);
    color: white;
}

.cta-btn-primary {
    background: var(--color-black);
    color: white;
    border: none;
}

.cta-btn-primary:hover {
    background: rgba(0, 0, 0, 0.8);
}

.cta-btn-green {
    background: var(--color-primary);
    color: white;
    border: none;
    width: auto;
}

.cta-btn-green:hover {
    background: #145e0b;
}

/* Container */
.container {
    max-width: 874px;
    margin: 132px auto 0;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.hero-title {
    font-size: 64px;
    font-weight: 600;
    line-height: 70px;
    letter-spacing: -2.56px;
    text-align: center;
    max-width: 760px;
}

.hero-title .highlight {
    color: var(--color-primary);
    display: block;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    opacity: 0.8;
}

.hero-features {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    border-radius: 100px;
    backdrop-filter: blur(126px);
}

.feature-item {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 8px 0;
}

.feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 15px;
    height: 11px;
}

.feature-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
}

/* Video Section */
.video-section {
    margin-bottom: 48px;
}

.video-player {
    width: 100%;
    height: auto;
    max-height: 466px;
    border-radius: 20px;
    margin-bottom: 48px;
    object-fit: cover;
}

/* Testimonials Carousel */
.testimonials-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: var(--spacing-section);
    overflow: hidden;
}

.testimonials-carousel {
    display: flex;
    gap: 24px;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0;
    scroll-behavior: auto;
    padding-left: 24px;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    5% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-450px * 8 - 24px));
    }
}

.testimonials-track {
    display: flex;
    gap: 24px;
    animation: scroll 50s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    min-width: 426px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(26px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 32px;
    scroll-snap-align: start;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 24px;
}

.testimonial-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: -0.72px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    width: 21px;
    height: 19px;
}

.testimonial-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    opacity: 0.8;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 600;
    margin-top: 12px;
    color: #111728;
}

/* Sticky Section */
.sticky-section {
    display: grid;
    grid-template-columns: 425px 1fr;
    gap: 24px;
    margin-bottom: var(--spacing-section);
}

.sticky-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
    flex-direction: column;
    gap: 16px;
}

.sticky-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: -1.2px;
    padding-bottom: 20px;
}

.sticky-subtitle {
    font-size: 17px;
    font-weight: 500;
    line-height: 24px;
    color: rgba(17, 23, 40, 0.5);
    padding-bottom: 20px;
}

.sticky-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.content-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: opacity 0.3s;
}

.content-item.inactive {
    opacity: 0.5;
}

.content-item.active {
    opacity: 1;
}

.content-icon {
    display: flex;
    width: 30px;
    height: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: rgba(24, 125, 15, 0.10);
}

.content-icon svg {
    width: 14px;
    height: 10px;
}

.content-title {
    font-size: 19px;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: -0.76px;
}

.content-description {
    font-size: 17px;
    font-weight: 500;
    line-height: 24px;
    color: rgba(17, 23, 40, 0.5);
}

/* Video Testimonials Section */
.video-testimonials {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: var(--spacing-section);
}

.section-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: -1.2px;
    text-align: center;
}

.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 21px;
}

.video-testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(26px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.video-content {
    width: 100%;
    height: 466px;
    background: #000;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.video-content video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    background: #000;
}

.video-content video::before {
    content: '';
    display: block;
    background: #eee;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.play-icon svg {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    color: white;
}

.video-content video:not([paused]) ~ .play-icon,
.video-content:has(video:not([paused])) .play-icon {
    opacity: 0;
}

.view-all {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
    color: var(--color-primary);
}

/* What's Included Section */
.whats-included {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: var(--spacing-section);
}

.whats-included-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.badge {
    background: var(--color-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
}

.whats-included-title {
    font-size: 60px;
    font-weight: 600;
    line-height: 64px;
    letter-spacing: -2.4px;
    text-align: center;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.accordion-item {
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(26px);
    padding: 56px;
    cursor: pointer;
    transition: all 0.3s;
}

.accordion-item:first-child {
    border-radius: 40px 40px 0 0;
}

.accordion-item:last-child {
    border-radius: 0 0 40px 40px;
}

.accordion-header {
    font-size: 35px;
    font-weight: 500;
    line-height: 48px;
    letter-spacing: -1.4px;
}

.accordion-item:not(.active) .accordion-header {
    opacity: 0.5;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    margin-top: 40px;
}

.accordion-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    opacity: 0.8;
}

/* FAQ Section */
.faq-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}

.faq-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.badge-dark {
    background: var(--color-black);
    color: white;
    padding: 4px 8px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.faq-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: -2px;
    text-align: center;
    max-width: 429px;
}

.faq-container {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 40px;
    padding: 4px;
}

.faq-input-container {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 40px;
    padding: 10px 10px 10px 30px;
    display: flex;
    gap: 71px;
    align-items: center;
}

.faq-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 500;
    opacity: 0.5;
    font-family: 'Poppins', sans-serif;
}

.submit-btn {
    border: 1px solid #111e42;
    color: #111e42;
    background: transparent;
    padding: 20px 32px;
    border-radius: 1000px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.faq-list {
    padding: 0 30px;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 30px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 20px;
}

.faq-question {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    opacity: 0.8;
    flex: 1;
    margin: 0;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 400;
    color: var(--color-text);
    transition: transform 0.3s;
    flex-shrink: 0;
}

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

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

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 16px;
}

.faq-answer p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    opacity: 0.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
    }
}

@media (max-width: 968px) {
    .header {
        padding: 8px 16px;
    }

    .logo {
        width: auto;
        font-size: 16px;
    }

    .cta-btn {
        padding: 16px 32px;
        font-size: 16px;
    }

    .container {
        margin-top: 70px;
    }

    .hero-title {
        font-size: 40px;
        line-height: 48px;
    }

    .sticky-section {
        grid-template-columns: 1fr;
    }

    .sticky-sidebar {
        position: relative;
        top: 0;
    }

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

    .testimonial-card {
        min-width: 320px;
    }

    .whats-included-title {
        font-size: 40px;
        line-height: 48px;
    }

    .accordion-item {
        padding: 32px 24px;
    }

    .accordion-header {
        font-size: 24px;
        line-height: 32px;
    }
}

@media (max-width: 640px) {
    .header {
        justify-content: center;
    }

    .logo {
        text-align: center;
        width: 100%;
    }

    .header .cta-btn {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--color-primary);
        color: white;
        border: none;
        border-radius: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        z-index: 1001;
        width: 100%;
        padding: 15px;
        margin: 0;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    }

    .hero-title {
        font-size: 32px;
        line-height: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

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

    .feature-text {
        text-align: center;
    }

    .video-player {
        max-height: none;
        aspect-ratio: 9 / 16;
        object-fit: cover;
    }

    .video-content {
        max-height: 300px;
    }

    .testimonials-carousel {
        gap: 16px;
    }

    .testimonial-card {
        min-width: 280px;
        padding: 24px;
    }

    .sticky-title {
        font-size: 24px;
        line-height: 32px;
    }

    .content-title {
        font-size: 16px;
        line-height: 22px;
    }

    .content-description {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .whats-included-title {
        font-size: 32px;
        line-height: 40px;
    }

    .faq-title {
        font-size: 28px;
        line-height: 36px;
    }

    .faq-input-container {
        flex-direction: column;
        gap: 16px;
    }

    .faq-input {
        width: 100%;
    }

    .submit-btn {
        width: auto;
    }
}

/* ==================== Legal Footer ==================== */
.legal-footer {
    padding: 40px;
    text-align: center;
    background-color: #ffffff;
}

.legal-text {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    max-width: 550px;
    margin: 0 auto;
}
