.elementor-215 .elementor-element.elementor-element-2900513{--display:flex;--min-height:20vh;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-215 .elementor-element.elementor-element-2900513:not(.elementor-motion-effects-element-type-background), .elementor-215 .elementor-element.elementor-element-2900513 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-secondary );}.elementor-215 .elementor-element.elementor-element-ff8baa8{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;--padding-top:50px;--padding-bottom:50px;--padding-left:20px;--padding-right:20px;}/* Start custom CSS for html, class: .elementor-element-d85dea3 */:root {
            /* Couleur principale marque */
            --primary: #f4a92b;
            --primary-light: #ffb347;
            --bg-light: #f7f9fc;
            --text: #222;
            --muted: #666;
            --radius: 10px;
            --shadow: 0 10px 25px rgba(0,0,0,0.06);
        }

        * { box-sizing: border-box; }

        body {
            margin: 0;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: var(--text);
            line-height: 1.6;
            background-color: #ffffff;
        }

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

        .page-wrapper {
            max-width: 1100px;
            margin: 0 auto;
            padding: 20px 16px 60px;
        }

        /* HERO */
        .hero {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: #fff;
            padding: 32px 24px;
            border-radius: 18px;
            box-shadow: var(--shadow);
            display: grid;
            grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
            gap: 24px;
            align-items: center;
        }

        .hero h1 {
            margin: 0 0 12px;
            font-size: 2.1rem;
            color: #ffffff;
        }

        .hero p {
            margin: 0 0 16px;
            color: #fff7ea;
        }

        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 16px;
        }

        .hero-badge {
            background: rgba(255,255,255,0.2);
            border-radius: 999px;
            padding: 6px 12px;
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .hero-badge span.icon {
            font-size: 1rem;
        }

        .hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
            margin-top: 4px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            padding: 14px 26px;
            border: none;
            font-weight: 700;
            cursor: pointer;
            font-size: 0.95rem;
            text-decoration: none;
            transition: transform 0.08s ease, box-shadow 0.08s ease, background-color 0.12s ease;
            box-shadow: 0 8px 20px rgba(0,0,0,0.18);
            letter-spacing: 0.02em;
        }

        /* BOUTON ORANGE RECTANGLE (hero + bloc appel) */
        .btn-primary {
            background: var(--primary) !important;
            color: #ffffff !important;      /* texte bien visible */
        }

        .btn-primary:hover {
            transform: translateY(-1px);
            background: #ff9f26 !important;
        }

        .btn-primary .icon-phone {
            margin-right: 10px;
            font-size: 1.1rem;
        }

        .hero-phone {
            font-size: 0.9rem;
            color: #fff7ea;
        }

        .hero-phone strong { color: #ffffff; }

        .hero-side {
            background: rgba(255,255,255,0.16);
            border-radius: 18px;
            padding: 18px 18px 16px;
            font-size: 0.9rem;
        }

        .hero-side-title {
            font-weight: 700;
            margin-bottom: 8px;
        }

        .hero-side-list {
            padding-left: 18px;
            margin: 6px 0 0;
        }

        .section {
            margin-top: 40px;
        }

        .section-header {
            margin-bottom: 18px;
        }

        .section-title {
            font-size: 1.5rem;
            margin: 0 0 6px;
        }

        .section-subtitle {
            margin: 0;
            color: var(--muted);
            font-size: 0.95rem;
        }

        .section-alt {
            background: var(--bg-light);
            border-radius: 16px;
            padding: 24px 20px;
            box-shadow: var(--shadow);
        }

        .grid {
            display: grid;
            gap: 18px;
        }

        @media (min-width: 780px) {
            .grid-3 {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
            .grid-2 {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
            .grid-4 {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }
        }

        .card {
            background: #fff;
            border-radius: var(--radius);
            padding: 18px 16px;
            box-shadow: var(--shadow);
        }

        .card h3 {
            margin-top: 0;
            font-size: 1rem;
            margin-bottom: 6px;
        }

        .card p {
            margin: 0;
            font-size: 0.9rem;
            color: var(--muted);
        }

        .pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(246,149,19,0.08);
            border-radius: 999px;
            padding: 3px 10px;
            font-size: 0.8rem;
            color: var(--muted);
        }

        .pill strong {
            color: var(--primary);
        }
        
         .image-block {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: #000;
        }

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

        .layout-split {
            display: grid;
            gap: 20px;
        }

        @media (min-width: 900px) {
            .layout-split {
                grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
                align-items: center;
            }
        }

        .list-check {
            padding-left: 0;
            list-style: none;
            margin: 0;
        }

        .list-check li {
            position: relative;
            padding-left: 22px;
            margin-bottom: 6px;
            font-size: 0.95rem;
        }

        .list-check li::before {
            content: "✔";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--primary);
            font-size: 0.9rem;
        }

        .table-pricing {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }

        .table-pricing th,
        .table-pricing td {
            border-bottom: 1px solid #e1e5ee;
            padding: 8px 6px;
            text-align: left;
        }

        .table-pricing th {
            font-weight: 600;
            background: #f2f4f9;
        }

        .tagline {
            font-size: 0.92rem;
            color: var(--muted);
        }

        .faq-item {
            border-radius: var(--radius);
            border: 1px solid #e0e4ee;
            padding: 14px 14px 10px;
            margin-bottom: 8px;
            background: #fff;
        }

        .faq-item h3 {
            margin: 0 0 6px;
            font-size: 0.98rem;
        }

        .faq-item p {
            margin: 0 0 4px;
            font-size: 0.9rem;
            color: var(--muted);
        }

        .notice {
            font-size: 0.8rem;
            color: var(--muted);
        }

        footer {
            margin-top: 30px;
            font-size: 0.8rem;
            color: var(--muted);
            text-align: center;
        }

        @media (max-width: 780px) {
            .hero {
                grid-template-columns: 1fr;
            }
        }/* End custom CSS */