/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #020617;
    color: #e2e8f0;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-narrow {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: bold;
    background: linear-gradient(to right, #c084fc, #f9a8d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #c084fc;
}

.btn-nav {
    padding: 0.625rem 1.5rem;
    background: #1e293b;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    border: 2px solid rgba(147, 51, 234, 0.5);
    transition: all 0.3s;
}

.btn-nav:hover {
    border-color: #c084fc;
    box-shadow: 0 10px 25px rgba(147, 51, 234, 0.3);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 1.5rem;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.5rem, -0.5rem);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(2, 6, 23, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-mobile.active {
    display: flex;
}

.nav-link-mobile {
    padding: 0.75rem 1rem;
    color: #d1d5db;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.nav-link-mobile:hover {
    background: rgba(192, 132, 252, 0.1);
    color: #c084fc;
}

.btn-nav-mobile {
    padding: 0.75rem 1rem;
    background: #1e293b;
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 0.5rem;
    font-weight: 600;
    border: 2px solid rgba(147, 51, 234, 0.5);
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 0 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #020617 0%, #4c1d95 50%, #020617 100%);
    opacity: 0.3;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.3), transparent);
    border-radius: 50%;
    animation: pulse 4s infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3), transparent);
    border-radius: 50%;
    animation: pulse 4s infinite 2s;
}

.hero-badge {
    padding: 0.5rem 1.5rem;
    background: linear-gradient(to right, #9333ea, #ec4899);
    color: white;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    /* margin-bottom: 3rem; */
    /* width: 500px; */
    margin: 0 auto;
    text-align: center;
    width: fit-content;   /* Le fond s'adapte au texte uniquement */
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    text-align: center;
    margin-top: 40px;
}

.gradient-text {
    background: linear-gradient(to right, #c084fc, #f9a8d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #1e293b;
    color: white;
    text-decoration: none;
    border-radius: 0.75rem;
    font-weight: 600;
    border: 2px solid rgba(147, 51, 234, 0.5);
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(147, 51, 234, 0.3);
}

.btn-primary:hover {
    border-color: #c084fc;
    box-shadow: 0 15px 35px rgba(147, 51, 234, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero-image {
    max-width: 46rem;
    margin: 0 auto;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(147, 51, 234, 0.3);
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

/* Section Styles */
.section-benefits {
    padding: 5rem 0;
    background: #0f172a;
}

.section-usp {
    padding: 5rem 0;
    background: #0f172a;;
}

.section-features {
    padding: 5rem 0;
    background: #0f172a;
}

.section-bonus {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f172a, rgba(76, 29, 149, 0.2), #0f172a);
}

.section-testimonials {
    padding: 5rem 0;
    background: #020617;
}

.section-faq {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f172a, rgba(76, 29, 149, 0.2), #0f172a);
}

.section-cta {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #581c87, #020617, #020617);
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(to right, #9333ea, #ec4899);
    color: white;
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #9ca3af;
    max-width: 42rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.1);
}

.benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon-green {
    background: linear-gradient(135deg, #4ade80, #059669);
}

.benefit-icon-blue {
    background: linear-gradient(135deg, #60a5fa, #4f46e5);
}

.benefit-icon-purple {
    background: linear-gradient(135deg, #c084fc, #ec4899);
}

.benefit-icon-orange {
    background: linear-gradient(135deg, #fb923c, #dc2626);
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.benefit-description {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* USP Grid */
.usp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .usp-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.usp-card {
    position: relative;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.usp-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(147, 51, 234, 0.5);
    box-shadow: 0 25px 50px rgba(147, 51, 234, 0.2);
}

.usp-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.25rem 0.75rem;
    color: white;
    font-size: 0.75rem;
    border-radius: 9999px;
    font-weight: 600;
}

/* --- NOUVELLES COULEURS (À AJOUTER) --- */

/* Vert (Admin/Goodies) */
.usp-badge-green, .usp-icon-green {
    background: linear-gradient(to right, #10b981, #059669);
}

/* Jaune (Data/Analytics) */
.usp-badge-yellow, .usp-icon-yellow {
    background: linear-gradient(to right, #f59e0b, #d97706);
}

/* Rose (Comm/Alertes) */
.usp-badge-pink, .usp-icon-pink {
    background: linear-gradient(to right, #f472b6, #db2777);
}

/* --- RAPPEL DES COULEURS EXISTANTES (VÉRIFIE TES NOMS) --- */

.usp-badge-blue, .usp-icon-blue {
    background: linear-gradient(to right, #3b82f6, #06b6d4);
}

.usp-badge-purple, .usp-icon-purple {
    background: linear-gradient(to right, #9333ea, #ec4899);
}

.usp-badge-orange, .usp-icon-orange {
    background: linear-gradient(to right, #f97316, #dc2626);
}

.usp-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.usp-card:hover .usp-icon {
    transform: scale(1.1);
}

.usp-icon-blue {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.usp-icon-purple {
    background: linear-gradient(135deg, #9333ea, #ec4899);
}

.usp-icon-orange {
    background: linear-gradient(135deg, #f97316, #dc2626);
}

.usp-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.usp-description {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.usp-highlight {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(to right, rgba(88, 28, 135, 0.3), rgba(157, 23, 77, 0.3));
    border-radius: 0.75rem;
    border: 1px solid rgba(147, 51, 234, 0.3);
    margin-top: 1.5rem;
}

.usp-dot {
    width: 0.375rem;
    height: 0.375rem;
    background: #c084fc;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.usp-highlight p {
    font-size: 0.875rem;
    color: #d1d5db;
}

/* Featured Section */
.featured-section {
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.3), rgba(157, 23, 77, 0.3));
    border-radius: 1.5rem;
    border: 2px solid rgba(147, 51, 234, 0.3);
    overflow: hidden;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
}

@media (min-width: 768px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 3rem;
    }
}

.featured-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(147, 51, 234, 0.2);
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #9333ea;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(147, 51, 234, 0.5);
}

.featured-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(147, 51, 234, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    border: 1px solid rgba(147, 51, 234, 0.3);
    color: #c084fc;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.featured-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .featured-title {
        font-size: 2.25rem;
    }
}

.featured-description {
    color: #d1d5db;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.featured-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.featured-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.featured-dot {
    width: 1.5rem;
    height: 1.5rem;
    background: rgba(147, 51, 234, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.featured-dot::after {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: #c084fc;
    border-radius: 50%;
}

.featured-item span {
    color: #d1d5db;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: scale(1.05);
    border-color: rgba(147, 51, 234, 0.5);
    box-shadow: 0 15px 30px rgba(147, 51, 234, 0.1);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Analytics Showcase */
.analytics-showcase {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(147, 51, 234, 0.1);
    width: 60%;
    margin-left: 20%;
}

.analytics-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.analytics-stat {
    position: absolute;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.analytics-stat-1 {
    top: 1.5rem;
    left: 1.5rem;
}

.analytics-stat-2 {
    bottom: 1.5rem;
    right: 1.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-value-green {
    color: #4ade80;
}

.stat-value-purple {
    color: #c084fc;
}

/* Bonus Grid */
.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bonus-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bonus-card {
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.bonus-card:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 15px 30px rgba(147, 51, 234, 0.1);
}

.bonus-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #c084fc, #ec4899);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.bonus-card:hover .bonus-icon {
    transform: rotate(12deg);
}

.bonus-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.bonus-description {
    color: #9ca3af;
    font-size: 0.75rem;
}

/* Logos */
.logos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-badge {
    padding: 0.75rem 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #d1d5db;
    opacity: 0.6;
    transition: all 0.3s;
}

.logo-badge:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(147, 51, 234, 0.5);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.testimonial-content {
    color: #d1d5db;
    font-size: 0.875rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-author img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: white;
}

.author-role {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.3), rgba(157, 23, 77, 0.3));
    border-radius: 0.75rem;
    border: 1px solid rgba(147, 51, 234, 0.3);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    background: linear-gradient(to right, #c084fc, #f9a8d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* FAQ */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(147, 51, 234, 0.5);
    box-shadow: 0 10px 25px rgba(147, 51, 234, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    color: #c084fc;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: #c084fc;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #9ca3af;
    line-height: 1.6;
}

/* CTA Section */
.cta-bg {
    position: absolute;
    inset: 0;
    opacity: 0.2;
}

.cta-bg::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #9333ea, transparent);
    border-radius: 50%;
    animation: pulse 4s infinite;
}

.cta-bg::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #ec4899, transparent);
    border-radius: 50%;
    animation: pulse 4s infinite 2s;
}

.cta-content {
    position: relative;
    text-align: center;
}

.cta-icon {
    display: inline-flex;
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 28rem;
    margin: 0 auto 2rem;
}

@media (min-width: 640px) {
    .cta-form {
        flex-direction: row;
    }
}

.form-group {
    position: relative;
    flex: 1;
}

.form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.form-group input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border-radius: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus {
    outline: none;
    border-color: rgba(192, 132, 252, 0.6);
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #1e293b;
    color: white;
    font-weight: 600;
    border: 2px solid rgba(147, 51, 234, 0.5);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    border-color: #c084fc;
    box-shadow: 0 15px 35px rgba(147, 51, 234, 0.3);
}

.cta-contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    color: #d1d5db;
}

@media (min-width: 640px) {
    .cta-contacts {
        flex-direction: row;
    }
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.contact-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: white;
}

.contact-divider {
    width: 0.25rem;
    height: 0.25rem;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: none;
}

@media (min-width: 640px) {
    .contact-divider {
        display: block;
    }
}

/* Footer */
.footer {
    position: relative;
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #9ca3af;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon-small {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}

.footer-logo span {
    font-weight: 600;
    color: white;
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

.floating-delayed {
    animation: float 3s ease-in-out infinite 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Success Message */
.success-message {
    padding: 1rem;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 0.5rem;
    color: #4ade80;
    text-align: center;
    margin-top: 1rem;
}

/* Cache les fonctionnalités supplémentaires */
.features-extra {
    display: none; /* On passera en grid via JS */
    grid-column: 1 / -1; /* Pour que ça s'insère bien dans ta grid existante */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.expand-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.btn-expand {
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.4);
    color: #e2e8f0;
    padding: 0.8rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-expand:hover {
    background: rgba(147, 51, 234, 0.2);
    border-color: #c084fc;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.icon-arrow {
    transition: transform 0.3s ease;
}

/* Classe active pour le JS */
.btn-expand.active .icon-arrow {
    transform: rotate(180deg);
}