/* Réinitialisation et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4169e1; /* Bleu primaire */
    --secondary-color: #D4EAFE; /* Bleu clair */
    --green-color: #158237; /* Vert */
    --light-green: #d1fae5; /* Vert clair */
    --purple-color: #6D3FC0; /* Violet */
    --light-purple: #EFE7FD; /* Violet clair */
    --text-color: #333333;
    --light-text: #666666;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --container-width: 1200px;
    --red-color: #dc2626;
    --light-red: #fee2e2;
    --yellow-color: #d97706;
    --light-yellow: #fef3c7;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #f9fafb;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Typographie */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1rem;
    color: var(--light-text);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--text-color);
}

ul {
    list-style-type: none;
    margin-bottom: 1.5rem;
}

ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

ul li i {
    margin-right: 10px;
    color: var(--primary-color);
    min-width: 20px;
    text-align: center;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 5px;
}

/* Boutons */
.btn, .btn-nav {
    display: inline-block;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: var(--box-shadow);
}

.btn-primary, .btn-nav.blue {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover, .btn-nav.blue:hover {
    background-color: #3050c0;
    color: white;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-blue {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

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

.btn-green {
    background-color: var(--green-color);
    color: white;
    border: 2px solid var(--green-color);
}

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

.btn-purple {
    background-color: var(--purple-color);
    color: white;
    border: 2px solid var(--purple-color);
}

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

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

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Header et navigation */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
/*     position: sticky;
    top: 0; */
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    gap: 20px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
}

.nav-links a {
    padding: 8px 12px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.action-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: auto;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
    border-radius: 3px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    opacity: 0.05;
    border-radius: 50%;
    top: -150px;
    right: -100px;
}

.hero::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    opacity: 0.05;
    border-radius: 50%;
    bottom: -50px;
    left: -80px;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: translateY(-10px);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
}

/* Tagline Section */
.tagline {
    background-color: var(--primary-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.tagline-text {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.tagline-text i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.tagline .subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Video Section */
.demo-videos {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.video-container {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.video-box {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

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

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-box p {
    padding: 15px;
    text-align: center;
    font-weight: 500;
    margin: 0;
}

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

/* Products Section */
.products {
    background-color: white;
}

.product-card {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.product-card.reversed {
    flex-direction: row-reverse;
}

.product-content {
    flex: 1;
    padding: 40px;
}

.product-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-content ul li {
    margin-bottom: 30px;
    display: block !important;
}

.product-image {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f4f8;
}

.product-image img {
    max-width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.product-image img:hover {
    transform: scale(1.05);
}

/* Pricing Section */
.pricing {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    opacity: 0.03;
    border-radius: 50%;
    bottom: -150px;
    right: -100px;
}

.pricing-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.price-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.price-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--purple-color);
    position: relative;
}

.price-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.price-card.featured::before {
    content: 'Recommandé';
    position: absolute;
    top: 10px;
    right: -30px;
    background: var(--purple-color);
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: var(--box-shadow);
}

.price-header {
    padding: 30px 20px;
    text-align: center;
    color: white;
}

.price-header.blue {
    background-color: var(--primary-color);
}

.price-header.green {
    background-color: var(--green-color);
}

.price-header.purple {
    background-color: var(--purple-color);
}

.price-header h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 15px;
    min-height: 50px;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.price-sub {
    font-size: 0.9rem;
    opacity: 0.9;
}

.price-features {
    padding: 30px 20px;
    flex-grow: 1;
}

.price-features ul {
    margin-bottom: 0;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.price-features li.unavailable {
    color: #aaa;
    text-decoration: line-through;
}

.price-features li i {
    margin-right: 10px;
}

.price-action {
    padding: 20px;
    text-align: center;
}

.pricing-note {
    text-align: center;
    font-style: italic;
    color: var(--light-text);
}

/* Testimonials */
.testimonials {
    background-color: white;
    position: relative;
}

.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial {
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    flex: 1;
    min-width: 250px;
    max-width: 500px;
    transition: var(--transition);
    position: relative;
}

.testimonial::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
}

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

.testimonial-text {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-name {
    font-weight: bold;
    color: var(--primary-color);
    text-align: right;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a4cb7 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    color: white;
    margin-bottom: 20px;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 30px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    opacity: 0.8;
    color: white;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: white;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Animations */
.animate {
    opacity: 1;
    transform: translateY(0);
    transition: var(--transition);
}

/* Media Queries */
@media (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .product-card, 
    .product-card.reversed {
        flex-direction: column;
    }
    
    .product-content {
        padding: 30px;
    }
    
    .product-image {
        width: 100%;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .navbar {
        flex-wrap: wrap;
        position: relative;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 0;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: white;
        transform: none;
        z-index: 1000;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        text-align: center;
    }
    
    .nav-links a {
        padding: 15px 20px;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .menu-toggle {
        display: flex;
        margin-left: auto;
        order: 3;
        z-index: 1001;
    }
    
    .action-buttons {
        order: 2;
        margin-right: 20px;
    }
    
    .video-container {
        flex-direction: column;
    }
    
    .video-box {
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .btn, .btn-nav {
        width: 100%;
        margin-bottom: 10px;
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }
    
    .price-card {
        max-width: 100%;
    }
}

.fake-link {
    cursor: pointer;
}
