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

        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background-color: #ffffff;
            color: #1a2a3a;
            line-height: 1.4;
        }

        :root {
            --ben-blue: #0A3D5E;
            --ben-blue-light: #1E4A76;
            --ben-blue-bg: #E8F0F8;
            --ben-blue-soft: #F0F6FB;
            --ben-accent: #F5A623;
            --ben-accent-dark: #E09515;
            --ben-green: #1E8E4E;
            --ben-green-bg: #E9F6EE;
            --ben-gray: #F7F9FC;
        }

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

        /* HEADER */
        .enhanced-header {
            background: white;
            padding: 0.8rem 0;
            box-shadow: 0px 1px 8px rgba(0,0,0,0.04);
            position: sticky;
            top: 0;
            z-index: 999;
            transition: all 0.3s ease;
        }
        .enhanced-header.scrolled {
            padding: 0.4rem 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }
        .brand-logo img {
            height: 90px;
            width: auto;
            transition: 0.3s ease;
        }
        .enhanced-header.scrolled .brand-logo img {
            height: 70px;
        }
        .header-right {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        /* PHONE LINK */
        .phone-link {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            transition: 0.2s;
        }
        .phone-link:hover .phone-num {
            color: var(--ben-blue-light);
        }
        .phone-icon-circle {
            width: 44px;
            height: 44px;
            background: var(--ben-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.05rem;
            flex-shrink: 0;
        }
        .phone-text {
            display: flex;
            flex-direction: column;
            line-height: 1.25;
        }
        .phone-num {
            color: var(--ben-blue);
            font-weight: 800;
            font-size: 1.05rem;
        }
        .phone-hours {
            color: #4b6b7e;
            font-size: 0.8rem;
            font-weight: 500;
        }

        /* HERO */
        .hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            padding: 48px 0 24px;
            align-items: start;
        }
        .hero-left {
            position: relative;
        }
        .hero-top {
            display: grid;
            grid-template-columns: 1.15fr 1fr;
            gap: 0;
            align-items: center;
        }
        .hero-headline {
            position: relative;
            z-index: 2;
        }
        .badge-rge {
            background: var(--ben-blue-bg);
            display: inline-block;
            padding: 8px 16px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: var(--ben-blue);
            margin-bottom: 18px;
        }
        .hero-left h1 {
            font-size: 2.3rem;
            font-weight: 800;
            line-height: 1.18;
            margin-bottom: 0;
            color: var(--ben-blue);
        }
        .hero-left h1 span {
            color: var(--ben-accent);
        }
        .hero-img {
            position: relative;
            margin-right: -24px; /* l'image file jusqu'au bord de l'écran */
            align-self: start;
        }
        .hero-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        /* Fondu : l'image se dissout dans le blanc (gauche, bas et haut) */
        .hero-img::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 1;
            background:
                linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0) 45%),
                linear-gradient(to top, #ffffff 0%, rgba(255,255,255,0) 32%),
                linear-gradient(to bottom, #ffffff 0%, rgba(255,255,255,0) 18%);
        }

        /* TRUST ICONS */
        .trust-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
            margin-top: 24px;
        }
        .trust-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 10px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #1e3a4a;
            line-height: 1.3;
        }
        .trust-icon {
            width: 54px;
            height: 54px;
            background: var(--ben-blue-soft);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--ben-blue);
        }
        .trust-icon.green {
            color: var(--ben-green);
        }
        .trust-icon img {
            width: 44px;
            height: auto;
        }

        /* FORM */
        .hero-right {
            background: white;
            border-radius: 24px;
            padding: 28px 24px;
            box-shadow: 0 12px 32px rgba(10,61,94,0.10);
            border: 1px solid #e2edf2;
            height: fit-content;
        }
        .form-title {
            font-size: 1.55rem;
            font-weight: 800;
            margin-bottom: 12px;
            color: var(--ben-blue);
            text-align: center;
        }
        .form-badges {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px 10px;
            color: #2d4a5e;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 24px;
        }
        .form-badges i {
            color: var(--ben-blue);
            margin-right: 5px;
        }
        .form-badges .sep {
            color: #9fb4c2;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        label {
            font-weight: 700;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 7px;
            color: #1e3a4a;
        }
        .input-wrap {
            position: relative;
        }
        .input-wrap i {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: #8aa2b2;
            font-size: 0.95rem;
            pointer-events: none;
        }
        .input-wrap input {
            padding-left: 40px;
        }
        input {
            width: 100%;
            padding: 13px 14px;
            border-radius: 12px;
            border: 1px solid #cbd5e6;
            background: white;
            font-size: 0.95rem;
        }
        input::placeholder {
            color: #9fb4c2;
        }
        input:focus {
            outline: none;
            border-color: var(--ben-blue);
            box-shadow: 0 0 0 3px rgba(10,61,94,0.1);
        }
        .radio-group {
            display: flex;
            gap: 28px;
            align-items: center;
            margin-top: 6px;
            flex-wrap: nowrap;
        }
        .radio-group label {
            font-weight: normal;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            white-space: nowrap;
            margin-bottom: 0;
        }
        .radio-group input {
            width: 18px;
            height: 18px;
            accent-color: #1673E6;
            margin: 0;
        }

        /* CEE INFO BOX */
        .cee-box {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            background: var(--ben-blue-soft);
            border-radius: 14px;
            padding: 14px 16px;
            font-size: 0.88rem;
            color: #2d4a5e;
            margin: 6px 0 18px;
        }
        .cee-box .cee-icon {
            width: 34px;
            height: 34px;
            background: var(--ben-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.95rem;
            flex-shrink: 0;
        }

        .btn-submit {
            width: 100%;
            background: #1673E6;
            color: white;
            padding: 13px;
            border: none;
            border-radius: 14px;
            font-weight: 800;
            font-size: 1.05rem;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
            font-family: inherit;
        }
        .btn-submit:hover {
            background: #0F5FC4;
        }
        .btn-submit .btn-main {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .btn-submit .btn-sub {
            font-size: 0.8rem;
            font-weight: 500;
            opacity: 0.9;
        }
        .legal-note {
            font-size: 0.8rem;
            color: #4b6b7e;
            margin-top: 14px;
            text-align: center;
            font-weight: 600;
        }
        .legal-note i {
            margin-right: 6px;
        }
        .legal-note a {
            color: var(--ben-blue);
        }
        .required {
            color: #d9534f;
        }

        .alert-success, .alert-error {
            padding: 12px;
            border-radius: 10px;
            margin-bottom: 20px;
            display: none;
        }
        .alert-success {
            background: #d4edda;
            color: #155724;
        }
        .alert-error {
            background: #f8d7da;
            color: #721c24;
        }

        /* CAROUSEL */
        .carousel-section {
            padding: 40px 0;
            background: var(--ben-blue-soft);
        }
        .carousel-title {
            text-align: center;
            font-size: 1.8rem;
            color: var(--ben-blue);
            margin-bottom: 30px;
        }
        .carousel-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .carousel-slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        .carousel-slide {
            position: relative;
            min-width: 100%;
            height: 500px;
            overflow: hidden;
        }
        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .carousel-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 20px;
            text-align: center;
        }
        .carousel-caption h3 {
            font-size: 1.3rem;
            margin-bottom: 5px;
        }
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.5);
            color: white;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
        }
        .carousel-btn:hover {
            background: var(--ben-blue);
        }
        .btn-prev { left: 15px; }
        .btn-next { right: 15px; }
        .carousel-dots {
            text-align: center;
            padding: 15px 0;
        }
        .dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            margin: 0 5px;
            background: #ccc;
            border-radius: 50%;
            cursor: pointer;
        }
        .dot.active {
            background: var(--ben-blue);
            transform: scale(1.2);
        }

        /* REVIEWS */
        .reviews {
            background: var(--ben-blue-soft);
            padding: 48px 0;
            margin: 40px 0;
            border-radius: 48px;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 32px;
            text-align: center;
            color: var(--ben-blue);
        }
        .reviews-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            align-items: center;
        }
        .trust-score {
            background: white;
            padding: 24px;
            border-radius: 32px;
            flex: 1;
            min-width: 200px;
            text-align: center;
        }
        .stars {
            color: var(--ben-accent);
            font-size: 1.8rem;
            letter-spacing: 4px;
        }
        .review-card {
            background: white;
            padding: 24px;
            border-radius: 32px;
            flex: 2;
            min-width: 260px;
            border: 1px solid #e2e8f0;
        }
        .review-name {
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--ben-blue);
        }
        .review-text {
            margin: 12px 0;
            color: #2f4b5e;
            font-style: italic;
        }

        /* CITIES */
        .cities-section {
            text-align: center;
            padding: 40px 20px;
        }
        .cities-header h2 {
            font-size: 1.8rem;
            color: var(--ben-blue);
            margin-bottom: 8px;
        }
        .cities-header p {
            color: #4b6b7e;
        }
        .villes-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 24px;
            margin: 24px 0;
        }
        .ville-card {
            background: white;
            border-radius: 28px;
            padding: 20px 16px;
            width: 180px;
            text-align: center;
            box-shadow: 0 6px 14px rgba(0,0,0,0.05);
            border: 1px solid #e2e8f0;
        }
        .ville-card i {
            font-size: 2rem;
            color: var(--ben-blue);
            margin-bottom: 12px;
        }
        .ville-name {
            font-weight: 700;
            color: var(--ben-blue);
        }

        /* FEATURES */
        .features {
            padding: 40px 0;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 32px;
            margin-top: 24px;
        }
        .feature-card {
            background: var(--ben-blue-soft);
            padding: 28px 20px;
            border-radius: 28px;
            text-align: center;
        }
        .feature-card i {
            font-size: 2.4rem;
            color: var(--ben-blue);
            margin-bottom: 16px;
        }
        .feature-card h3 {
            color: var(--ben-blue);
        }

        /* FOOTER */
        .footer {
            border-top: 1px solid #e2eaf0;
            padding: 32px 0;
            margin-top: 48px;
            font-size: 0.8rem;
            color: #5e7b8e;
            text-align: center;
        }
        .footer a {
            color: var(--ben-blue);
            text-decoration: none;
        }

        /* SCROLL TO TOP */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--ben-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 100;
            text-decoration: none;
        }
        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        .scroll-to-top:hover {
            background: var(--ben-blue-light);
            transform: translateY(-5px);
        }

        /* PHONE BUTTON */
        .phone-button {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 54px;
            height: 54px;
            background: var(--ben-blue);
            color: white;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            cursor: pointer;
            box-shadow: 0 6px 16px rgba(10,61,94,0.35);
            transition: all 0.3s ease;
            z-index: 100;
            text-decoration: none;
        }
        .phone-button:hover {
            background: var(--ben-blue-light);
            transform: scale(1.1);
        }

        /* TABLETTE */
        @media (max-width: 900px) {
            .hero {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .hero-left h1 {
                font-size: 2.2rem;
            }
        }

        /* MOBILE */
        @media (max-width: 768px) {
            .brand-logo img {
                height: 72px;
            }
            .enhanced-header.scrolled .brand-logo img {
                height: 60px;
            }
            .phone-text .phone-hours {
                font-size: 0.75rem;
            }
            .phone-num {
                font-size: 0.98rem;
            }
            .phone-icon-circle {
                width: 40px;
                height: 40px;
            }

            .phone-button {
                display: flex;
            }

            .hero {
                display: flex;
                flex-direction: column;
                padding: 24px 0 16px;
                gap: 28px;
            }
            .hero-left {
                width: 100%;
            }
            .hero-top {
                grid-template-columns: 1.1fr 0.95fr;
            }
            .hero-left h1 {
                font-size: 1.45rem;
            }
            .badge-rge {
                font-size: 0.72rem;
                padding: 6px 12px;
                margin-bottom: 12px;
            }
            .hero-right {
                width: 100%;
            }

            .trust-row {
                gap: 8px;
            }
            .trust-item {
                font-size: 0.78rem;
            }
            .trust-icon {
                width: 48px;
                height: 48px;
                font-size: 1.3rem;
            }

            .cities-section {
                padding: 30px 15px;
            }
            .carousel-slide {
                height: 350px;
            }
            .carousel-caption h3 {
                font-size: 1rem;
            }
        }

        @media (max-width: 550px) {
            .form-row {
                grid-template-columns: 1fr 1fr;
            }
            .radio-group {
                gap: 20px;
            }
            .cities-header h2 {
                font-size: 1.5rem;
            }
            .ville-card {
                width: calc(50% - 15px);
            }
        }

        @media (max-width: 480px) {
            .reviews-grid {
                flex-direction: column;
            }
            .trust-score, .review-card {
                width: 100%;
            }
            .features-grid {
                grid-template-columns: 1fr;
            }
            .container {
                padding: 0 16px;
            }
            .hero-img {
                margin-right: -16px;
            }
            .hero-right {
                padding: 22px 18px;
            }
            .phone-hours {
                display: none;
            }
        }
    
