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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: #2F2F2F;
            background: #ffffff;
        }

        .header {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            padding: 1.2rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(88, 137, 166, 0.2);
            box-shadow: 0 2px 20px rgba(88, 137, 166, 0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
/* ===== Language dropdown ===== */
.lang-dropdown {
    margin-left: 1.5rem;
}

.lang-dropdown select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: white;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    padding: 4px 28px 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    color: #2F2F2F;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232F2F2F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 12px;
}

/* ===== Hide Google Translate UI ===== */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

.goog-logo-link,
.goog-te-gadget span {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
}

        .logo {
            font-size: 2.4rem;
            font-weight: 700;
            color: #2F2F2F;
            letter-spacing: -0.5px;
            display: flex;
            align-items: baseline;
            gap: 0.5rem;
            cursor: pointer;
            transition: color 0.3s;
        }

        .logo:hover {
            color: #5889A6;
        }

        .logo span {
            color: #5889A6;
            font-style: italic;
            font-weight: 400;
            font-size: 1.1rem;
        }

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

        .nav-links a {
            color: #2F2F2F;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 0.95rem;
            cursor: pointer;
        }

        .nav-links a:hover {
            color: #5889A6;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #2F2F2F;
            cursor: pointer;
        }

        .hero {
            background: linear-gradient(135deg, #f5f9fc 0%, #ffffff 100%);
            padding: 10rem 2rem 6rem;
            text-align: center;
            margin-top: 70px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(88, 137, 166, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 128, 128, 0.06) 0%, transparent 70%);
            border-radius: 50%;
        }

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

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: #2F2F2F;
            font-weight: 700;
            letter-spacing: -1px;
            line-height: 1.2;
        }

        .hero h1 .highlight {
            color: #FFC000;
        }

        .hero p {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            color: #5a6c7d;
            font-weight: 400;
        }

        .cta-button {
            background: #5889A6;
            color: white;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(88, 137, 166, 0.3);
        }

        .cta-button:hover {
            background: #476d87;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(88, 137, 166, 0.4);
        }

        .cta-button-secondary {
            background: #FFC000;
            color: #2F2F2F;
        }

        .cta-button-secondary:hover {
            background: #e6ac00;
        }

        .section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 5rem 2rem;
        }

        .section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #2F2F2F;
            text-align: center;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .section-subtitle {
            text-align: center;
            color: #5a6c7d;
            font-size: 1.1rem;
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .market-intro {
            background: #f5f9fc;
        }

        .market-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .market-card {
            background: white;
            border-radius: 12px;
            border: 2px solid rgba(88, 137, 166, 0.2);
            transition: all 0.3s;
            position: relative;
            height: 400px;
            perspective: 1000px;
            cursor: pointer;
        }

        .market-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.6s;
            transform-style: preserve-3d;
        }

        .market-card:hover .market-card-inner {
            transform: rotateY(180deg);
        }

        .market-card-front,
        .market-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }

        .market-card-front {
            background: white;
        }

        .market-card-back {
            background: linear-gradient(135deg, #FFC000 0%, #e6ac00 100%);
            color: #2F2F2F;
            transform: rotateY(180deg);
        }

        .market-card:hover {
            box-shadow: 0 10px 30px rgba(88, 137, 166, 0.2);
        }

        .market-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
        }

        .market-card-front h3 {
            color: #2F2F2F;
            margin-bottom: 1rem;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .market-card-front p {
            color: #5a6c7d;
            line-height: 1.7;
            font-size: 0.95rem;
            text-align: left;
        }

        .market-card-back h4 {
            color: white;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .market-card-back p {
            color: #2F2F2F;
            line-height: 1.7;
            font-size: 0.95rem;
            font-weight: 500;
            margin: 0;
        }

        .capabilities {
            background: white;
        }

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

        .capability-card {
            background: white;
            border: 2px solid #f0f4f8;
            border-radius: 12px;
            transition: all 0.3s;
            height: 250px;
            perspective: 1000px;
            cursor: pointer;
        }

        .capability-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.6s;
            transform-style: preserve-3d;
        }

        .capability-card:hover .capability-card-inner {
            transform: rotateY(180deg);
        }

        .capability-card-front,
        .capability-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }

        .capability-card-front {
            background: white;
        }

        .capability-card-back {
            background: linear-gradient(135deg, #5889A6 0%, #476d87 100%);
            color: white;
            transform: rotateY(180deg);
        }

        .capability-icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            display: block;
        }

        .capability-card-front h3 {
            margin-bottom: 0;
            font-size: 1.4rem;
            color: #2F2F2F;
            font-weight: 600;
        }

        .capability-card-back p {
            color: white;
            line-height: 1.7;
            font-size: 0.95rem;
            margin: 0;
        }

        .personas {
            background: #f5f9fc;
        }

        .persona-container {
            margin-top: 3rem;
        }

        .persona {
            background: white;
            padding: 2.5rem;
            margin-bottom: 2rem;
            border-radius: 12px;
            border-left: 4px solid #5889A6;
            box-shadow: 0 4px 15px rgba(88, 137, 166, 0.1);
            transition: all 0.3s;
        }

        .persona:hover {
            box-shadow: 0 8px 25px rgba(88, 137, 166, 0.2);
            transform: translateX(5px);
        }

        .persona h3 {
            color: #2F2F2F;
            font-size: 1.6rem;
            margin-bottom: 0.8rem;
            font-weight: 600;
        }

        .persona-desc {
            color: #5a6c7d;
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .persona-benefits {
            margin-top: 1rem;
            display: grid;
            gap: 0.8rem;
        }

        .benefit-item {
            padding: 0.8rem 1rem;
            padding-left: 2.5rem;
            position: relative;
            background: #f5f9fc;
            border-radius: 8px;
            color: #2F2F2F;
            font-size: 0.95rem;
        }

        .benefit-item:before {
            content: "✓";
            position: absolute;
            left: 1rem;
            color: #008080;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .testimonials {
            background: white;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: #f5f9fc;
            padding: 2rem;
            border-radius: 12px;
            border-left: 4px solid #FFC000;
            box-shadow: 0 4px 15px rgba(88, 137, 166, 0.1);
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(88, 137, 166, 0.2);
        }

        .testimonial-text {
            color: #2F2F2F;
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            flex-grow: 1;
            font-style: italic;
        }

        .testimonial-author {
            color: #5889A6;
            font-weight: 600;
            font-size: 1rem;
        }

        .pricing {
            background: #f5f9fc;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .pricing-card {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            border: 2px solid rgba(88, 137, 166, 0.2);
            transition: all 0.3s;
            text-align: center;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(88, 137, 166, 0.2);
            border-color: #5889A6;
        }

        .pricing-card.featured {
            border-color: #FFC000;
            border-width: 3px;
            position: relative;
        }

        .pricing-card.featured::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #FFC000;
            color: #2F2F2F;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .pricing-title {
            color: #2F2F2F;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .pricing-subtitle {
            color: #5a6c7d;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        .pricing-price {
            color: #5889A6;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .pricing-period {
            color: #5a6c7d;
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }

        .pricing-features {
            text-align: left;
            margin-bottom: 2rem;
        }

        .pricing-feature {
            padding: 0.6rem 0;
            color: #2F2F2F;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .pricing-feature:before {
            content: "✓";
            color: #008080;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .contact {
            background: linear-gradient(135deg, #5889A6 0%, #476d87 100%);
            color: white;
        }

        .contact h2 {
            color: white;
        }

        .contact .section-subtitle {
            color: rgba(255, 255, 255, 0.9);
        }

        .contact-form {
            max-width: 600px;
            margin: 2rem auto;
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #2F2F2F;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.9rem;
            border: 2px solid #e8f0f8;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #5889A6;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

       .footer {
    background: #2F2F2F;
    color: #a0aec0;
    padding: 3rem 2rem 1.5rem;
    font-size: 0.9rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            color: white;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .footer-section p {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: #a0aec0;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #5889A6;
        }

        .linkedin-link {
            display: inline-block;
            color: #a0aec0;
            transition: all 0.3s;
        }

        .linkedin-link:hover {
            color: #0077B5;
            transform: translateY(-3px);
        }

        .linkedin-link svg {
            width: 32px;
            height: 32px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(160, 174, 192, 0.2);
        }

        .video-popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .video-popup.active {
            display: flex;
        }

        .video-container {
            position: relative;
            width: 90%;
            max-width: 1000px;
            background: #000;
            border-radius: 12px;
            overflow: hidden;
        }

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

        .close-video {
            position: absolute;
            top: -40px;
            right: 0;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            padding: 0.5rem;
            line-height: 1;
        }

        .close-video:hover {
            color: #FFC000;
        }

        .video-button-container {
            text-align: center;
            margin-top: 2rem;
        }

        .faq-section {
            margin-top: 4rem;
        }

        .faq-title {
            text-align: center;
            font-size: 2rem;
            color: #2F2F2F;
            margin-bottom: 2rem;
            font-weight: 700;
        }

        .faq-item {
            background: white;
            border: 2px solid rgba(88, 137, 166, 0.2);
            border-radius: 12px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s;
        }

        .faq-item:hover {
            border-color: #5889A6;
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: #f5f9fc;
        }

        .faq-question h3 {
            color: #2F2F2F;
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0;
            padding-right: 1rem;
        }

        .faq-icon {
            color: #5889A6;
            font-size: 1.5rem;
            transition: transform 0.3s;
            flex-shrink: 0;
        }

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

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

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

        .faq-answer p {
            color: #5a6c7d;
            line-height: 1.7;
            margin: 0;
        }

        .scroll-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #5889A6;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 15px rgba(88, 137, 166, 0.3);
            transition: all 0.3s;
            z-index: 1500;
        }

        .scroll-to-top:hover {
            background: #476d87;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(88, 137, 166, 0.4);
        }

        .scroll-to-top.visible {
            display: flex;
        }

        #thank-you-popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 3rem;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            z-index: 3000;
            text-align: center;
            max-width: 400px;
        }

        #thank-you-popup.active {
            display: block;
        }

        #thank-you-popup h3 {
            color: #2F2F2F;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        #thank-you-popup p {
            color: #5a6c7d;
            margin: 0;
        }

        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 2999;
        }

        .popup-overlay.active {
            display: block;
        }

        .g-recaptcha {
            margin-bottom: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        @media (max-width: 968px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 2rem;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
                transition: left 0.3s;
                gap: 1.5rem;
                align-items: flex-start;
            }

            .nav-links.active {
                left: 0;
            }

            .mobile-menu-btn {
                display: block;
            }
            .footer-content {
            grid-template-columns: 1fr;
            text-align: center;
            }

        }

        @media (max-width: 768px) {
            .hero {
                padding: 8rem 1.5rem 4rem;
            }

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

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

            .section {
                padding: 3rem 1.5rem;
            }

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

            .market-content,
            .capabilities-grid,
            .testimonials-grid,
            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .persona {
                padding: 1.5rem;
            }

            .contact-form {
                padding: 1.5rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }

            .logo {
                font-size: 1.3rem;
            }

            .section h2 {
                font-size: 1.7rem;
            }

            .pricing-price {
                font-size: 2rem;
            }
        }
        .persona-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.persona-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    border: 2px solid #5889A6;
    color: #5889A6;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    background: white;
    white-space: nowrap;
}

.persona-btn:hover {
    background: #5889A6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(88, 137, 166, 0.25);
}
section {
    scroll-margin-top: 90px;
}
.persona {
    scroll-margin-top: 90px; /* hauteur du header + marge */
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
/* ===== Hide Google Translate top banner ===== */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

/* ===== Force hide Google Translate banner + UI ===== */

/* La barre du haut (iframe) */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
}

/* Empêche le décalage de page que Google applique */
html, body {
  top: 0 !important;
  position: static !important;
}

/* Cache la popup/bulle de traduction */
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover {
  display: none !important;
}

.goog-text-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
}

/* Cache le widget Google si jamais il apparaît */
.goog-te-gadget,
.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
}
/* Force hide Google top banner */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
}

/* Google sometimes pushes the page down */
html, body {
  top: 0 !important;
}
