:root {
    --primary: #03aebc;
    --primary-dark: #047e89;
    --secondary: #597EF7;
    --accent: #13C2C2;
    --dark: #0f3852;
    --gray-dark: #595959;
    --gray: #8C8C8C;
    --gray-light: #D9D9D9;
    --light: #FAFAFA;
    --white: #fff;
    --light2: #b7d1d3;
    --success: #03aebc;
    --warning: #FAAD14;
    --error: #F5222D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: white;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
nav {
    background-color: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
}

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

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s;
}

.cta-nav {
    background-color: var(--primary);
    color: white !important;
    padding: 10px 25px;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: 500;
}

.cta-nav:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 84, 235, 0.3);
}

.cta-nav:hover::after {
    display: none;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    z-index: 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    padding-right: 50px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-10deg);
    transition: all 0.5s ease;
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 500;
}

.highlight {
    color: var(--primary);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(47, 84, 235, 0.2);
    z-index: -1;
}

.subtitle {
    font-size: 18px;
    color: var(--light2);
    margin-bottom: 30px;
    max-width: 600px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: white;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(2, 121, 131, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(2, 121, 131, 0.4);
}

.cta-button i {
    margin-left: 10px;
    transition: transform 0.3s;
}

.cta-button:hover i {
    transform: translateX(5px);
}

.secondary-button {
    background-color: white;
    color: var(--primary);
    border: 1px solid var(--primary);
    margin-left: 15px;
    box-shadow: none;
}

.secondary-button:hover {
    background-color: rgba(47, 84, 235, 0.05);
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.button-group {
    display: flex;
    align-items: center;
}

/* Stats */
.stats {
    display: flex;
    margin-top: 50px;
}

.stat-item {
    margin-right: 40px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 10px;
    width: 1px;
    height: 40px;
    background-color: var(--gray-light);
}

.stat-number {
    font-size: 36px;
    font-weight: 500;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--light2);
}

/* Clients */
.clients {
    padding: 30px 0;
    background-color: var(--white);
}

.clients-title {
    text-align: center;
    font-size: 20px;
    color: var(--gray);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.client-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.client-logo {
    opacity: 0.6;
    transition: all 0.3s;
    margin: 15px 25px;
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.client-logo img {
    height: 80px;
    max-width: 150px;
    object-fit: contain;
}

/* Features */
.features {
    padding: 100px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 500;
}

.section-title p {
    color: var(--light2);
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
}

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

.feature-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(47, 84, 235, 0.2);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background-color: var(--primary);
    transition: height 0.3s;
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
    background-color: rgba(47, 84, 235, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-card p {
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.feature-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.feature-link i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.feature-link:hover {
    color: var(--primary-dark);
}

.feature-link:hover i {
    transform: translateX(5px);
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background-color: var(--light);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://leads-go.com/wp-content/uploads/2023/05/bg-dots.png') no-repeat;
    background-position: right center;
    opacity: 0.1;
    z-index: 0;
}

.steps-container {
    position: relative;
    z-index: 1;
}

.steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.step-number1 {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(47, 84, 235, 0.3);
}

.step h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 500;
}

.step p {
    color: var(--light2);
    font-size: 15px;
}

.steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--gray-light);
    z-index: 0;
}


/* Style pour l'icône de connexion */
.login-icon a {
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
    text-decoration: none;
    padding: 10px 0;
}

.login-icon a:hover {
    color: var(--primary);
    background-color: transparent;
    transform: none;
}

.login-icon a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s;
}

.login-icon a:hover::after {
    width: 100%;
}

.login-icon i {
    font-size: 15px;
    margin-right: 5px;
}

/* Ajustez l'alignement vertical si nécessaire */
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
}

/* Demo */
.demo {
    padding: 100px 0;
    background-color: white;
}

.demo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.demo-text {
    flex: 1;
    padding-right: 50px;
}

.demo-video {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.demo-video video {
    width: 100%;
    display: block;
}

.demo-buttons {
    display: flex;
    margin-top: 30px;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background-color: var(--light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--gray-dark);
    position: relative;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: -10px;
    font-size: 60px;
    color: rgba(47, 84, 235, 0.1);
    font-family: serif;
    line-height: 1;
    z-index: 0;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #eee;
    margin-right: 15px;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 500;
}

.author-info p {
    color: var(--gray);
    font-size: 14px;
}

.rating {
    color: var(--warning);
    margin-bottom: 10px;
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background-color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background-color: white;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    transform: translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: bold;
}

.pricing-card h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}

.price {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 20px;
}

.price span {
    font-size: 16px;
    color: var(--gray);
    font-weight: normal;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: var(--gray-dark);
    display: flex;
    align-items: center;
}

.pricing-features li i {
    color: var(--success);
    margin-right: 10px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* FAQ */
.faq {
    padding: 100px 0;
    background-color: var(--light);
}

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

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    background-color: white;
}

.faq-question {
    padding: 20px;
    background-color: white;
    color: var(--dark);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background-color: rgba(47, 84, 235, 0.05);
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    color: var(--gray-dark);
}

.faq-item.active .faq-question {
    background-color: rgba(47, 84, 235, 0.05);
    color: var(--primary);
}

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

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

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://leads-go.com/wp-content/uploads/2023/05/bg-dots-white.png') no-repeat;
    background-position: right center;
    opacity: 0.1;
    z-index: 0;
}

.cta-container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
    font-size: 18px;
}

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

.cta-button.white:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 500;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: white;
}

.footer-about p {
    color: #bbb;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    transition: all 0.3s;
    font-size: 14px;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #777;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content, .demo-content {
        flex-direction: column;
    }
    
    .hero-text, .demo-text {
        padding-right: 0;
        margin-bottom: 20px;
        text-align: center;
    }
    
    h1 {
        font-size: 30px;
    }
    
    .button-group {
        justify-content: center;
    }
    
    .stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stat-item {
        margin: 10px 20px;
    }
    
    .stat-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step {
        margin-bottom: 40px;
    }
    
    .steps::before {
        display: none;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-title p {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}