:root {
    --primary-blue: #0033A0;
    --primary-white: #FFFFFF;
    --primary-red: #EF4135;
    --accent-gold: #FFD700;
    --dark-navy: #001f54;
    --light-gray: #e8eef5;
    --text-dark: #001f54;
    --text-gray: #4A5568;
}

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

body {
    font-family: 'Raleway', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 31, 84, 0.98) 0%, rgba(10, 47, 95, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(0, 51, 160, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(0, 31, 84, 0.99) 0%, rgba(10, 47, 95, 0.99) 100%);
    box-shadow: 0 4px 30px rgba(0, 51, 160, 0.4);
    border-bottom-color: rgba(239, 65, 53, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
}

.logo-showcase-mini {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    padding: 0.5rem;
    position: relative;
    display: inline-block;
}

.logo-showcase-mini::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg,
        #0033A0 0%,
        #0033A0 33%,
        #FFFFFF 33%,
        #FFFFFF 66%,
        #EF4135 66%,
        #EF4135 100%);
    border-radius: 1rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.logo-showcase-mini:hover::before {
    opacity: 0.6;
}

.french-flag-accent {
    position: absolute;
    top: -5px;
    right: -5px;
    display: flex;
    gap: 2px;
    opacity: 0.8;
    z-index: 10;
}

.flag-stripe {
    width: 4px;
    height: 20px;
    border-radius: 1px;
}

.flag-stripe.bleu { background: #0033A0; }
.flag-stripe.blanc { background: #FFFFFF; }
.flag-stripe.rouge { background: #EF4135; }

.logo-icon {
    width: 45px;
    height: 45px;
    filter: drop-shadow(0 4px 12px rgba(0, 51, 160, 0.4));
    animation: float-smooth 5s ease-in-out infinite;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-wrapper:hover .logo-icon {
    transform: scale(1.1) rotate(-2deg);
}

@keyframes float-smooth {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(1deg); }
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-white) 50%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-white), var(--primary-red));
    transition: width 0.3s ease;
}

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

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 51, 160, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(239, 65, 53, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--primary-white);
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--primary-white);
    color: var(--primary-white);
}

/* Hero Section */
.hero {
    padding: 140px 2rem 80px;
    background: linear-gradient(135deg, #001f54 0%, #0a2f5f 50%, #001933 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(0, 51, 160, 0.05) 35px, rgba(0, 51, 160, 0.05) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(239, 65, 53, 0.05) 35px, rgba(239, 65, 53, 0.05) 70px);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 51, 160, 0.15) 0%, transparent 70%);
    animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

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

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.stars {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-white);
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-white) 50%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(0, 51, 160, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(239, 65, 53, 0.6));
    }
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease 0.2s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 51, 160, 0.2);
}

.french-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 51, 160, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-white);
}

.french-badge::before {
    content: '';
    font-size: 1.2rem;
}

/* Features Grid */
.features-strip {
    background: white;
    padding: 3rem 2rem;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.features-strip-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.feature-item {
    padding: 1rem;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.feature-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.feature-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Section Standard */
.section {
    padding: 100px 2rem;
}

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

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

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 51, 160, 0.1), rgba(239, 65, 53, 0.1));
    color: var(--primary-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Feature Showcase */
.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 6rem;
}

.feature-showcase:nth-child(even) {
    direction: rtl;
}

.feature-showcase:nth-child(even) > * {
    direction: ltr;
}

.feature-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.feature-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.feature-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 51, 160, 0.15);
}

.feature-image img {
    width: 100%;
    display: block;
}

/* Modules Grid */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.module-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 51, 160, 0.12);
    border-color: var(--primary-blue);
}

.module-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 51, 160, 0.15), rgba(239, 65, 53, 0.15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(0, 51, 160, 0.2);
}

.module-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.module-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.module-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
    text-decoration: none;
}

/* Testimonials */
.testimonials {
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 6rem;
    color: rgba(0, 51, 160, 0.1);
    font-family: Georgia, serif;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h5 {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-gray);
    font-size: 0.85rem;
}

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

.cta-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(255, 255, 255, 0.03) 60px, rgba(255, 255, 255, 0.03) 120px);
    animation: move-grid 30s linear infinite;
}

@keyframes move-grid {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

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

.cta-section h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo svg {
    width: 40px;
    height: 40px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* ===== Module Page Styles ===== */

/* Module Hero */
.module-hero {
    padding: 160px 2rem 80px;
    background: linear-gradient(135deg, #001f54 0%, #0a2f5f 50%, #001933 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.module-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(0, 51, 160, 0.05) 35px, rgba(0, 51, 160, 0.05) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(239, 65, 53, 0.05) 35px, rgba(239, 65, 53, 0.05) 70px);
    pointer-events: none;
}

.module-hero .module-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.module-hero-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.module-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.module-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.module-hero .btn {
    margin-top: 1rem;
}

/* Module Features */
.module-features {
    padding: 80px 2rem;
}

.module-features .section-container {
    max-width: 1100px;
    margin: 0 auto;
}

.module-features h2 {
    font-size: 2.25rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 51, 160, 0.1);
    border-color: var(--primary-blue);
}

.feature-card .feature-card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Module Screenshots */
.module-screenshots {
    padding: 80px 2rem;
    background: var(--light-gray);
}

.module-screenshots .section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.module-screenshots h2 {
    font-size: 2.25rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

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

.screenshot-desktop h3,
.screenshot-mobile h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.screenshot-desktop .screenshot-frame {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 10px 40px rgba(0, 51, 160, 0.12);
    border: 1px solid #e5e7eb;
}

.screenshot-desktop .screenshot-frame img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.screenshot-mobile .phone-frame {
    display: inline-block;
    background: #1a1a2e;
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 280px;
}

.screenshot-mobile .phone-frame img {
    width: 100%;
    border-radius: 24px;
    display: block;
}

/* Module FAQ */
.module-faq {
    padding: 80px 2rem;
}

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

.module-faq h2 {
    font-size: 2.25rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: white;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Raleway', sans-serif;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 51, 160, 0.03);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Module Video */
.module-video {
    padding: 80px 2rem;
    background: var(--light-gray);
    text-align: center;
}

.module-video h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.video-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #FF0000, #CC0000);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.video-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}

.video-link .play-icon {
    font-size: 1.5rem;
}

/* Module CTA */
.module-cta {
    padding: 80px 2rem;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue) 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.module-cta::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(255, 255, 255, 0.03) 60px, rgba(255, 255, 255, 0.03) 120px);
    animation: move-grid 30s linear infinite;
}

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

.module-cta h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.module-cta p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Back link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

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

/* Legal Pages */
.legal-block {
    margin-bottom: 2.5rem;
}

.legal-block h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-block p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.legal-block ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.legal-block ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

.legal-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
}


.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1300px;
    margin: 80px auto;
    align-items: stretch;
}

.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e6eaf0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s ease;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.pricing-card.featured {
    background: linear-gradient(180deg, #2f3e74, #4a5fa3);
    color: white;
    border: none;
}

.pricing-header {
    margin-bottom: 25px;
}

.pricing-subtitle {
    font-size: 0.9rem;
    color: #7b8494;
    margin-bottom: 15px;
}

.pricing-card.featured .pricing-subtitle {
    color: rgba(255,255,255,0.8);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
}

.pricing-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #7b8494;
}

.pricing-card.featured .pricing-price span {
    color: rgba(255,255,255,0.8);
}

.pricing-extra,
.pricing-period {
    font-size: 0.85rem;
    margin-top: 5px;
    color: #7b8494;
}

.pricing-card.featured .pricing-extra,
.pricing-card.featured .pricing-period {
    color: rgba(255,255,255,0.8);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.pricing-footer {
    margin-top: auto;
}

.pricing-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    background: #2f3e74;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

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

.pricing-card.featured .pricing-btn {
    background: white;
    color: #2f3e74;
}
#tarifs .section-container {
  max-width: 1500px;
  padding: 0 50px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links, .cta-buttons {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 120px 1.5rem 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section {
        padding: 60px 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .module-hero {
        padding: 120px 1.5rem 60px;
    }

    .module-hero h1 {
        font-size: 2rem;
    }

    .module-features,
    .module-screenshots,
    .module-faq,
    .module-video,
    .module-cta {
        padding: 60px 1.5rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .module-cta h2 {
        font-size: 2rem;
    }
}
