* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    background: #fff;
    color: #111827;
}

.gradient-text {
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 50%, #1E3A8A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bg {
    background: linear-gradient(135deg, #FFFFFF 0%, #EFF6FF 50%, #DBEAFE 100%);
}

.glow-effect {
    box-shadow: 0 0 60px rgba(0, 102, 255, 0.3), 0 0 100px rgba(0, 102, 255, 0.1);
}

.card-white {
    background: white;
    border: 1px solid rgba(0, 102, 255, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 102, 255, 0.05), 0 2px 4px -1px rgba(0, 102, 255, 0.03);
    transition: all 0.3s;
}

.card-white:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 102, 255, 0.1), 0 10px 10px -5px rgba(0, 102, 255, 0.04);
    border-color: rgba(0, 102, 255, 0.2);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 180px 24px 80px 24px;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-orb-1 {
    position: absolute;
    top: 80px;
    left: 40px;
    width: 600px;
    height: 600px;
    background: linear-gradient(to right, #DBEAFE, #BFDBFE);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.5;
}

.hero-orb-2 {
    position: absolute;
    bottom: 80px;
    right: 40px;
    width: 500px;
    height: 500px;
    background: linear-gradient(to right, #BFDBFE, #93C5FD);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    background: white;
    border: 1px solid #BFDBFE;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 32px;
    font-size: 14px;
    color: #374151;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 16px;
    color: #111827;
}

.hero h2 {
    font-size: clamp(1.25rem, 3vw, 1.875rem);
    font-weight: 600;
    margin-bottom: 24px;
    color: #374151;
}

.hero-description {
    font-size: 18px;
    color: #6B7280;
    max-width: 576px;
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

@media (max-width: 1024px) {
    .hero-buttons {
        justify-content: center;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(to right, #0066FF, #1E3A8A);
    color: white;
}

.btn-debloque {
    background: linear-gradient(to right, #0066FF, #0066FF) !important;
    color: white;
    width: 100%;
    padding: 16px;
    font-size: 18px;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-outline {
    background: transparent;
    border: 1px solid #93C5FD;
    color: #111827;
}

.btn-outline:hover {
    background: #EFF6FF;
}

.btn-sm {
    padding: 12px 24px;
    font-size: 16px;
}

.btn-ghost {
    background: transparent;
    border: none;
    color: #6B7280;
    cursor: pointer;
    transition: color 0.3s;
}

.btn-ghost:hover {
    color: #111827;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 14px;
    color: #6B7280;
}

@media (max-width: 1024px) {
    .hero-features {
        justify-content: center;
    }
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-icon {
    width: 16px;
    height: 16px;
    color: #22C55E;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    width: 288px;
    height: 288px;
    margin: 0 auto;
}

.visual-glow {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-glow-inner {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(to bottom right, rgba(0, 102, 255, 0.2), rgba(30, 58, 138, 0.3));
    filter: blur(32px);
    animation: pulse 3s infinite;
}

.visual-ring {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring-outer {
    width: 256px;
    height: 256px;
    border-radius: 50%;
    border: 1px solid rgba(191, 219, 254, 0.5);
    animation: spin 20s linear infinite;
    position: relative;
}

.ring-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 12px;
    height: 12px;
    background: #0066FF;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
}

.ring-inner {
    width: 176px;
    height: 176px;
    border-radius: 50%;
    border: 1px solid rgba(147, 197, 253, 0.3);
    animation: spin 15s linear infinite reverse;
    position: relative;
}

.ring-inner .ring-dot {
    top: auto;
    bottom: 0;
    transform: translateX(-50%) translateY(50%);
    width: 8px;
    height: 8px;
    background: #60A5FA;
    box-shadow: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.visual-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-icon-box {
    width: 96px;
    height: 96px;
    border-radius: 16px;
    background: white;
    box-shadow: 0 25px 50px -12px rgba(0, 102, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DBEAFE;
}

.center-icon-box svg {
    width: 40px;
    height: 40px;
    color: #0066FF;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 12px;
    border: 1px solid #DBEAFE;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 3s ease-in-out infinite;
}

.floating-card-1 {
    top: -16px;
    right: -16px;
}

.floating-card-2 {
    bottom: -8px;
    left: -24px;
    animation-delay: 0.5s;
    animation-duration: 4s;
}

.floating-card-3 {
    top: 25%;
    left: -32px;
    animation-delay: 1s;
    animation-duration: 3.5s;
    border-color: #E9D5FF;
}

@keyframes float {

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

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

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

.card-icon svg {
    width: 16px;
    height: 16px;
}

.card-icon-green {
    background: #DCFCE7;
}

.card-icon-green svg {
    color: #16A34A;
}

.card-icon-blue {
    background: #DBEAFE;
}

.card-icon-blue svg {
    color: #0066FF;
}

.card-icon-purple {
    background: #F3E8FF;
}

.card-icon-purple svg {
    color: #9333EA;
}

.card-label {
    font-size: 10px;
    color: #6B7280;
}

.card-value {
    font-size: 12px;
    font-weight: 600;
    color: #111827;
}

/* Section Base */
.section {
    padding: 96px 24px;
    position: relative;
}

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

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.section-badge svg {
    width: 16px;
    height: 16px;
    color: #0066FF;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.section-title-blue {
    color: #1E3A8A;
}

.section-subtitle {
    font-size: 20px;
    color: #6B7280;
    max-width: 672px;
    margin: 0 auto;
}

/* How It Works Section */
.section-how {
    background: linear-gradient(to bottom, white, rgba(239, 246, 255, 0.5));
}

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

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.step-card {
    position: relative;
    padding: 32px;
    border-radius: 24px;
    background: white;
    border: 1px solid #DBEAFE;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
}

.step-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #BFDBFE;
}

.step-number {
    position: absolute;
    top: -16px;
    left: 32px;
    padding: 4px 12px;
    border-radius: 9999px;
    background: linear-gradient(to right, #0066FF, #1E3A8A);
    color: white;
    font-size: 14px;
    font-weight: 700;
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #EFF6FF;
    border: 1px solid #DBEAFE;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    margin-top: 8px;
    transition: all 0.3s;
}

.step-card:hover .step-icon {
    background: linear-gradient(to bottom right, #0066FF, #1E3A8A);
}

.step-icon svg {
    width: 28px;
    height: 28px;
    color: #0066FF;
    transition: color 0.3s;
}

.step-card:hover .step-icon svg {
    color: white;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827;
}

.step-subtitle {
    color: #0066FF;
    font-weight: 500;
    margin-bottom: 12px;
    font-size: 14px;
}

.step-description {
    color: #6B7280;
    line-height: 1.6;
    font-size: 14px;
}

/* Why Choose Us Section */
.section-why {
    background: linear-gradient(to bottom, white, #EFF6FF);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}



.why-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.why-feature {
    display: flex;
    gap: 16px;
}

.why-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: linear-gradient(to bottom right, #0066FF, #1E3A8A);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.why-feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111827;
}

.why-feature-desc {
    color: #6B7280;
    line-height: 1.6;
}

.demo-card {
    border-radius: 16px;
    padding: 32px;
}

.demo-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-radius: 12px;
}

.demo-item-green {
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
}

.demo-item-red {
    background: #FEF2F2;
    border: 1px solid #FECACA;
}

.demo-item-purple {
    background: #FAF5FF;
    border: 1px solid #E9D5FF;
}

.demo-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.demo-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-item-icon-green {
    background: #DCFCE7;
}

.demo-item-icon-green svg {
    color: #16A34A;
}

.demo-item-icon-red {
    background: #FEE2E2;
}

.demo-item-icon-red svg {
    color: #EF4444;
}

.demo-item-icon-purple {
    background: #F3E8FF;
}

.demo-item-icon-purple svg {
    color: #9333EA;
}

.demo-item-icon svg {
    width: 16px;
    height: 16px;
}

.demo-item-text {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.demo-item-badge {
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
}

.badge-green {
    background: #DCFCE7;
    color: #15803D;
}

.badge-red {
    background: #FEE2E2;
    color: #DC2626;
    display: flex;
    align-items: center;
    gap: 4px;
}

.badge-purple {
    background: #F3E8FF;
    color: #7C3AED;
}

/* Testimonials */
.section-testimonials {
    background: white;
}

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

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    padding: 32px;
    border-radius: 16px;
}

.testimonial-quote {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(to bottom right, #0066FF, #1E3A8A);
}

.testimonial-name {
    font-weight: 600;
    color: #111827;
}

.testimonial-role {
    font-size: 14px;
    color: #6B7280;
}

/* Data Sources Section */
.section-data {
    background: white;
}

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

@media (max-width: 768px) {
    .data-grid {
        grid-template-columns: 1fr;
    }
}

.data-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}

.data-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.data-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

.data-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #EFF6FF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.data-icon svg {
    width: 32px;
    height: 32px;
    color: #0066FF;
}

.data-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    padding: 2px 8px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 500;
    color: white;
}

.data-badge-blue {
    background: #0066FF;
}

.data-badge-red {
    background: #EF4444;
}

.data-badge-green {
    background: #22C55E;
}

.data-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.data-desc {
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 24px;
}

.data-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding-top: 16px;
    border-top: 1px solid #F3F4F6;
}

.data-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #0066FF;
}

.data-stat-label {
    font-size: 12px;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Benefits Section */
.section-benefits {
    background: linear-gradient(to bottom, #EFF6FF, white);
}

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

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

@media (max-width: 640px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    background: white;
    border: 1px solid #DBEAFE;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
}

.benefit-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(to bottom right, #0066FF, #1E3A8A);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.benefit-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111827;
}

.benefit-desc {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.6;
}

/* AI Services Section */
.section-ai {
    background: linear-gradient(to bottom, white, #EFF6FF);
    overflow: hidden;
}

.ai-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 96px;
}

.ai-block:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .ai-block {
        grid-template-columns: 1fr;
    }

    .ai-block-reverse .ai-visual {
        order: 1;
    }

    .ai-block-reverse .ai-text {
        order: 2;
    }
}

.ai-label {
    color: #0066FF;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.ai-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
}

.ai-desc {
    color: #6B7280;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.ai-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ai-tag {
    padding: 8px 16px;
    background: #EFF6FF;
    border: 1px solid #DBEAFE;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    color: #0066FF;
}

.ai-visual {
    background: white;
    border-radius: 16px;
    border: 1px solid #DBEAFE;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 32px;
    position: relative;
}

.ai-visual-glow {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(to bottom right, rgba(0, 102, 255, 0.1), rgba(30, 58, 138, 0.2));
    border-radius: 50%;
    filter: blur(32px);
}

.ai-visual-glow-1 {
    top: -16px;
    right: -16px;
}

.ai-visual-glow-2 {
    bottom: -16px;
    left: -16px;
}

.ai-bars {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 24px;
}

.ai-bar-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ai-bar {
    border-radius: 8px;
    width: 48px;
}

.ai-bar-blue {
    background: linear-gradient(to top, #0066FF, #4D94FF);
}

.ai-bar-light {
    background: linear-gradient(to top, #BFDBFE, #DBEAFE);
}

.ai-bar-line {
    height: 4px;
    background: linear-gradient(to right, #0066FF, #93C5FD, transparent);
    border-radius: 9999px;
}

.ai-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #EFF6FF;
    border: 2px solid #BFDBFE;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-icon-circle svg {
    width: 24px;
    height: 24px;
    color: #0066FF;
}

.ai-stats-visual {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ai-stat-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.ai-stat-header-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(to bottom right, #EFF6FF, #DBEAFE);
    border: 1px solid #BFDBFE;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-stat-header-icon svg {
    width: 24px;
    height: 24px;
    color: #0066FF;
}

.ai-stat-header-lines {
    flex: 1;
}

.ai-stat-header-line {
    height: 12px;
    background: #DBEAFE;
    border-radius: 9999px;
    margin-bottom: 8px;
}

.ai-stat-header-line:last-child {
    width: 50%;
    height: 8px;
    background: #EFF6FF;
    margin-bottom: 0;
}

.ai-stat-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ai-stat-num {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #EFF6FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #0066FF;
}

.ai-stat-bar {
    flex: 1;
    height: 12px;
    background: #F3F4F6;
    border-radius: 9999px;
    overflow: hidden;
}

.ai-stat-fill {
    height: 100%;
    background: linear-gradient(to right, #0066FF, #4D94FF);
    border-radius: 9999px;
}

.ai-stat-value {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    min-width: 40px;
    text-align: right;
}

/* Discover Section */
.section-discover {
    background: linear-gradient(to bottom, white, #EFF6FF);
    overflow: hidden;
}

.discover-content {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
}

.discover-label {
    color: #0066FF;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.discover-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
}

.discover-desc {
    color: #6B7280;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.discover-desc-light {
    color: #9CA3AF;
    margin-bottom: 32px;
}

.discover-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* FAQ Section */
.section-faq {
    background: linear-gradient(to bottom, white, #EFF6FF);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
}

@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1E3A8A;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/*.faq-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #BFDBFE;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.faq-item svg {
    width: 20px;
    height: 20px;
    color: #9CA3AF;
    transition: color 0.3s;
    flex-shrink: 0;
}

.faq-item:hover svg {
    color: #0066FF;
}

.faq-item span {
    color: #374151;
    transition: color 0.3s;
}

.faq-item:hover span {
    color: #111827;
}*/

/* new css */


.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    background: white;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: #BFDBFE;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.faq-item.active {
    border-color: #BFDBFE;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Question - en ligne */
.faq-question {
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s;
    user-select: none;
}


.faq-question-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq-arrow {
    width: 20px;
    height: 20px;
    color: #9CA3AF;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-arrow {
    color: #0066FF;
    transform: rotate(90deg);
}

.faq-question span {
    color: #374151;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    flex: 1;
}

.faq-item.active .faq-question span {
    color: #374151;
    transition: color 0.3s;
}

.faq-item.active .faq-question span {
    color: #111827;
}
/* Réponse - en dessous */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Ajustez selon la longueur de votre réponse */
    opacity: 1;
}

.faq-answer-content {
    padding: 0 16px 16px 51px;
    /* 16px (padding) + 20px (icône) + 16px (gap) = 52px, arrondi à 56px */
    border-top: 1px solid transparent;
}

/*.faq-item.active .faq-answer-content {
    border-top-color: #E5E7EB;
}*/

.faq-answer-content span {
    color: #111827;
    line-height: 1.6;
    font-size: 15px;
    display: block;
    transition: color 0.3s;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.faq-item.active .faq-answer-content span {
    animation: fadeInUp 0.5s ease forwards;
}

/* Version mobile */
@media (max-width: 768px) {
    .faq-question {
        padding: 14px;
    }

    .faq-question-content {
        gap: 12px;
    }

    .faq-question span {
        font-size: 15px;
    }

    .faq-answer-content {
        padding: 0 14px 14px 42px;
        /* Ajusté pour mobile */
    }

    .faq-answer-content span {
        font-size: 14px;
    }
}

/* end new css */

/* CTA Section */
.section-cta {
    background: white;
}

.cta-content {
    max-width: 896px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: clamp(1.875rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
}

.cta-desc {
    font-size: 20px;
    color: #6B7280;
    margin-bottom: 48px;
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
}


/* NEW */
:root {
    --primary: #0066FF;
    --primary-dark: #1E3A8A;
    --primary-light: #4D94FF;
    --text-main: #111827;
    /* gray-900 */
    --text-body: #4B5563;
    /* gray-600 */
    --bg-blue-50: #EFF6FF;
    --bg-blue-100: #DBEAFE;
    --white: #FFFFFF;
    --border: #E2E8F0;
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 16px;
}

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

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-1 {
    gap: 5px;
}

.gap-2 {
    gap: 8px;
}

.gap-3 {
    gap: 10px;
}

.gap-4 {
    gap: 16px;
}

.gap-6 {
    gap: 24px;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-6 {
    margin-bottom: 24px;
}

.mb-8 {
    margin-bottom: 32px;
}

.mt-8 {
    margin-top: 70px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 16px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn-outline {
    background: white;
    border: 1px solid #BFDBFE;
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--bg-blue-50);
}

/* --- SECTION 1: TÉMOIGNAGES (Slider) --- */
.testimonials-wrapper {
    width: 80%;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    transition: transform 0.1s cubic-bezier(0.5, 0, 0.2, 1);
    width: 100%;
}

.testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 12px;
    opacity: 0;
    transition: opacity 1s ease;
}

/* Sur desktop, on affiche 3 cartes, donc chaque slide fait 33.33% */
@media (min-width: 768px) {
    .testimonial-slide {
        min-width: 33.333%;
    }
}


@media (max-width: 768px) {

    .title-avis {
        margin: 0 auto;
        width: 80%;
    }

    .testimonials-track {
        display: block !important;
        /* Changement important */
        transition: transform 0.3s cubic-bezier(0.5, 0, 0.2, 1);
        width: 100%;
        white-space: normal;
        /* Important pour le bloc */
    }

    .testimonial-slide {
        display: block;
        width: 100%;
        min-width: 100%;
        padding: 0 12px;
        box-sizing: border-box;
        margin-bottom: 0;
        transition: all 0.3s ease;
    }

    /* Sur mobile, les cartes inactives sont complètement masquées */
    .testimonial-slide:not(.active) {
        opacity: 0;
        height: 0;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }

    /* Seules les cartes actives sont visibles */
    .testimonial-slide.active {
        opacity: 1;
        height: auto;
        margin-bottom: 20px;
        padding: 0 12px;
    }

    .testimonial-card {
        margin-top: 20px;
    }

    .testimonials-wrapper {
        padding-bottom: 60px;
        width: 95%;
        height: auto;
        /* Hauteur automatique */
        min-height: 400px;
        /* Hauteur minimale */
    }

    .nav-btn {
        top: 97% !important;
    }

    .nav-prev {
        left: 115px !important;
    }

    .nav-next {
        right: 115px !important;
    }

    .dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 32px !important;
        /* Changé de -1442px à 32px */
        position: relative;
        z-index: 10;
    }
}

.testimonial-slide.active {
    opacity: 1;
}

.testimonial-card {
    background: white;
    border: 1px solid #E0F2FE;
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-card);
    height: 100%;
    transition: transform 0.1s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #BFDBFE;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid #E2E8F0;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: var(--primary);
}

.nav-btn:hover {
    background: var(--bg-blue-50);
}

.nav-prev {
    left: 0;
}

.nav-next {
    right: 0;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #CBD5E1;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    width: 32px;
    background: var(--primary);
    border-radius: 10px;
}

.lucide {
    width: 16px;
    height: 16px;
    color: var(--primary) !important;
}

.lucide-star {
    color: #FACC15 !important;
}

.lucide-zap {
    color: #fff !important;
}

.p-inclus {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
}

.p-try {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 5px;
    margin-top: 5px;
}

.p-inclut-service {
    font-size: 13px;
    color: var(--text-body);
    font-weight: 400;
}


.p-credit-right {
    font-weight: 500;
    font-size: 15px;
}

/* --- SECTION 2: PRICING (Forfait) --- */

.list-offre {
    font-size: 16px;
    font-weight: 500;
    margin-top: -10px;
}

.pricing-container {
    background: linear-gradient(135deg, var(--bg-blue-50), rgba(219, 234, 254, 0.5));
    border: 1px solid #BFDBFE;
    border-radius: 24px;
    padding: 48px;
    width: 65%;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.div-forfait {
    margin-top: 65px;
}

.price-large {
    margin-top: 9px;
    font-size: 33px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
}

.p-credits {
    font-size: 14px;
    color: var(--text-body);
    margin-bottom: 24px;
    font-weight: 400;
}

.p-forfait {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
}

.trial-box {
    background: white;
    border: 1px solid #BFDBFE;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 24px;
    display: flex;
    gap: 16px;
    align-items: start;
}

.feature-list {
    list-style: none;
    gap: 16px;
    margin-left: 25px;
}

.feature-item {
    margin-top: 40px;
    display: flex;
    gap: 19px;
    align-items: flex-start;
}

/*.check-icon {
    width: 24px;
    height: 24px;
    background: var(--bg-blue-50);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}*/

/* --- SECTION 3: SERVICES IA (Leads & Graph) --- */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 50px;

}

@media (min-width: 768px) {
    .services-grid {
        margin-bottom: 65px;
        grid-template-columns: 1fr 1fr;
    }
}

.tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.tag {
    background: var(--bg-blue-50);
    color: var(--primary);
    border: 1px solid #BFDBFE;
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 500;
}

.graph-card {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--bg-blue-50);
    box-shadow: var(--shadow-lg);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.glow-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Animations Graphique */
.bar-container {
    height: 100px;
    background: #F1F5F9;
    border-radius: 12px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    position: relative;
    padding: 4px;
}

.bar {
    width: 100%;
    border-radius: 8px;
    height: 0;
    /* Initial state for animation */
    transition: height 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bar.animate {
    height: var(--target-height);
}

.stat-value {
    font-size: 14px;
    font-weight: 700;
    margin-top: 8px;
    text-align: center;
}

.stat-label {
    font-size: 11px;
    color: var(--text-body);
    text-align: center;
    margin-bottom: 4px;
    font-weight: 500;
}

.list-p-offre {
    font-size: 14px;
    color: var(--text-body);
    font-weight: 200;
    margin-top: 5px;
}

/* Gradients for bars     */
.grad-blue {
    background: linear-gradient(to top, #0066FF, #60A5FA);
}

.grad-purple {
    background: linear-gradient(to top, #9333EA, #C084FC);
}

.grad-green {
    background: linear-gradient(to top, #16A34A, #4ADE80);
}

.grad-orange {
    background: linear-gradient(to top, #EA580C, #FB923C);
}

.mini-stat {
    background: var(--bg-blue-50);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* END NEW itoeee */
@media (max-width: 768px) {
    .btn-debloque {
        background: linear-gradient(to right, #0066FF, #0066FF) !important;
        color: white;
        width: 100%;
        padding: 14px !important;
        font-size: 18px;
    }

    .pricing-container {
        padding: 30px;
        width: 90%;
    }

    .div-forfait {
        margin-top: 0px;
    }

    .pricing-container {
        background: linear-gradient(135deg, var(--bg-blue-50), rgba(219, 234, 254, 0.5));
        border: 1px solid #BFDBFE;
        border-radius: 24px;
        padding: 25px;
        width: 85%;
        margin: 0 auto;
    }

    .feature-list {
        margin-left: 20px;
    }

    .hero {
        padding: 150px auto 80px auto !important;
    }



    .why-section {
        width: 95%;
        margin: 0 auto 50px auto;
    }

    .section-why {
        /*border: 1px solid red;*/
        width: 100%;
        padding: 96px 2px !important;
    }

    .why-feature-title {
        font-size: 17px;
        font-weight: 600;
        margin-bottom: 8px;
        color: #111827;
    }

    .why-feature {
        display: flex;
        gap: 6px;
        width: 97%;
        margin: 0 auto;
    }

    .why-feature-desc {
        font-size: 15px;
    }

    .why-grid {
        width: 95%;
        margin: 0 auto;
        grid-template-columns: 1fr;
    }

    .demo-card {
        border-radius: 16px;
        padding: 10px 0;
    }

    .demo-item {
        width: 95%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px;
        border-radius: 12px;
        margin: 0 auto;
    }
}