:root {
            --navy: #0f172a;
            --navy-soft: #111827;
            --gold: #eab308;
            --gold-soft: #facc15;
            --bg: #f3f4f6;
            --text: #0b1120;
            --text-soft: #4b5563;
            --border-subtle: rgba(15, 23, 42, 0.08);
            --radius-lg: 18px;
            --radius-full: 999px;
            --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.22);
            --shadow-card: 0 18px 40px rgba(15, 23, 42, 0.10);
        }

        * {
            box-sizing: border-box;
        }

        html, body {
            margin: 0;
            padding: 0;
            font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text);
            background: radial-gradient(circle at top, #0b1120 0, #020617 38%, #020617 52%, #0b1120 100%);
            scroll-behavior: smooth;
        }

        body {
            min-height: 100vh;
        }

        .page-shell {
            min-height: 100vh;
            background:
                radial-gradient(circle at 0 0, rgba(234, 179, 8, 0.14), transparent 52%),
                radial-gradient(circle at 100% 0, rgba(15, 23, 42, 0.8), transparent 60%);
        }

        .layout {
            max-width: 1120px;
            margin: 0 auto;
            padding: 88px 20px 40px;
        }

        header.site-header {
            position: sticky;
            top: 0;
            z-index: 40;
            backdrop-filter: blur(20px);
            background: radial-gradient(circle at top left, rgba(234, 179, 8, 0.05), transparent 55%) rgba(15, 23, 42, 0.92);
            border-bottom: 1px solid rgba(148, 163, 184, 0.3);
        }

        .header-inner {
            max-width: 1120px;
            margin: 0 auto;
            padding: 14px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .brand-mark {
            width: 32px;
            height: 32px;
            border-radius: 12px;
            background: radial-gradient(circle at 30% 10%, #fef9c3, #eab308 38%, #854d0e 100%);
            box-shadow: 0 0 0 1px rgba(234, 179, 8, 0.5), 0 18px 30px rgba(245, 158, 11, 0.4);
            position: relative;
            overflow: hidden;
        }

        .brand-mark::after {
            content: "";
            position: absolute;
            inset: 26%;
            border-radius: 999px;
            border: 2px solid rgba(15, 23, 42, 0.9);
            border-bottom-width: 3px;
            border-right-width: 3px;
            transform: rotate(-25deg);
        }

        .brand-text-main {
            font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 1.1rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #f9fafb;
        }

        .brand-text-sub {
            font-size: 0.75rem;
            color: #e5e7eb;
            opacity: 0.82;
        }

        nav.primary-nav {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .nav-links a {
            font-size: 0.9rem;
            color: #e5e7eb;
            text-decoration: none;
            padding-bottom: 2px;
            border-bottom: 1px solid transparent;
            transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
        }

        .nav-links a:hover {
            color: var(--gold-soft);
            border-color: rgba(234, 179, 8, 0.7);
            transform: translateY(-1px);
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 999px;
            border: 1px solid rgba(250, 250, 249, 0.28);
            background: radial-gradient(circle at top left, #facc15 0, #eab308 45%, #a16207 100%);
            color: #111827;
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 14px 35px rgba(250, 204, 21, 0.45);
            white-space: nowrap;
        }

        .nav-cta span.icon {
            display: inline-flex;
            width: 18px;
            height: 18px;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            background: rgba(15, 23, 42, 0.16);
            font-size: 0.8rem;
        }

        .nav-cta:hover {
            filter: brightness(1.05);
        }

        .menu-toggle {
            display: none;
            border: none;
            background: none;
            color: #e5e7eb;
            cursor: pointer;
        }

        .menu-toggle-box {
            width: 22px;
            height: 18px;
            position: relative;
        }

        .menu-line {
            position: absolute;
            left: 0;
            right: 0;
            height: 2px;
            border-radius: 999px;
            background: #e5e7eb;
            transition: transform 0.22s ease, opacity 0.18s ease, top 0.22s ease, bottom 0.22s ease;
        }

        .menu-line:nth-child(1) { top: 0; }
        .menu-line:nth-child(2) { top: 8px; }
        .menu-line:nth-child(3) { bottom: 0; }

        .menu-toggle[aria-expanded="true"] .menu-line:nth-child(1) {
            top: 8px;
            transform: rotate(45deg);
        }

        .menu-toggle[aria-expanded="true"] .menu-line:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle[aria-expanded="true"] .menu-line:nth-child(3) {
            bottom: 8px;
            transform: rotate(-45deg);
        }

        .mobile-menu {
            display: none;
            border-top: 1px solid rgba(148, 163, 184, 0.4);
            background: rgba(15, 23, 42, 0.96);
            backdrop-filter: blur(18px);
        }

        .mobile-menu-inner {
            max-width: 1120px;
            margin: 0 auto;
            padding: 10px 20px 16px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .mobile-menu-inner a {
            color: #e5e7eb;
            font-size: 0.95rem;
            text-decoration: none;
            padding: 6px 0;
        }

        .mobile-menu-inner .nav-cta {
            justify-content: center;
            margin-top: 4px;
        }

        main {
            color: #e5e7eb;
        }

        .hero {
            display: grid;
            grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
            gap: 40px;
            align-items: center;
            padding-top: 40px;
            padding-bottom: 48px;
        }

        .hero-intro {
            max-width: 620px;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 4px 10px 4px 4px;
            border-radius: 999px;
            border: 1px solid rgba(234, 179, 8, 0.35);
            background: radial-gradient(circle at left, rgba(234, 179, 8, 0.22), transparent 60%);
            font-size: 0.8rem;
            color: #fefce8;
            margin-bottom: 16px;
        }

        .eyebrow-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 22px;
            height: 22px;
            border-radius: 999px;
            background: rgba(15, 23, 42, 0.9);
            color: #fde68a;
            font-size: 0.75rem;
            box-shadow: 0 0 0 1px rgba(234, 179, 8, 0.5);
        }

        h1.hero-title {
            font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: clamp(2.3rem, 3.2vw + 1.6rem, 3.4rem);
            line-height: 1.05;
            letter-spacing: 0.01em;
            margin: 0 0 16px;
            color: #f9fafb;
        }

        .hero-title span.keyword {
            color: var(--gold-soft);
        }

        .hero-subtitle {
            font-size: 0.98rem;
            line-height: 1.6;
            color: #cbd5f5;
            max-width: 520px;
            margin-bottom: 20px;
        }

        .hero-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 22px;
        }

        .pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 11px;
            border-radius: 999px;
            border: 1px solid rgba(148, 163, 184, 0.55);
            font-size: 0.8rem;
            color: #e5e7eb;
            background: linear-gradient(120deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.75));
        }

        .pill-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--gold-soft);
            box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.22);
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
            margin-bottom: 16px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 11px 22px;
            border-radius: 999px;
            border: none;
            cursor: pointer;
            background: radial-gradient(circle at top left, #fef9c3 0, #facc15 35%, #eab308 70%, #a16207 100%);
            color: #111827;
            font-weight: 600;
            font-size: 0.95rem;
            box-shadow: 0 18px 40px rgba(250, 204, 21, 0.45);
            text-decoration: none;
        }

        .btn-primary:hover {
            transform: translateY(-1px);
            filter: brightness(1.04);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            border-radius: 999px;
            border: 1px solid rgba(148, 163, 184, 0.7);
            color: #e5e7eb;
            background: rgba(15, 23, 42, 0.3);
            text-decoration: none;
            font-size: 0.9rem;
        }

        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            font-size: 0.78rem;
            color: #9ca3af;
        }

        .hero-meta strong {
            color: #e5e7eb;
        }

        .hero-visual {
            position: relative;
        }

        .panel {
            border-radius: 26px;
            padding: 20px 18px;
            background: radial-gradient(circle at top left, rgba(234, 179, 8, 0.14), rgba(15, 23, 42, 0.96));
            border: 1px solid rgba(148, 163, 184, 0.55);
            box-shadow: var(--shadow-soft);
            position: relative;
            overflow: hidden;
        }

        .panel-grid {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 14px;
        }

        .panel-col {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .small-heading {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: #e5e7eb;
            opacity: 0.86;
        }

        .panel-main-value {
            font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 1.6rem;
            color: #facc15;
        }

        .panel-tag {
            font-size: 0.8rem;
            color: #e5e7eb;
            opacity: 0.92;
        }

        .mini-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 6px;
        }

        .mini-badge {
            font-size: 0.72rem;
            padding: 4px 8px;
            border-radius: 999px;
            border: 1px solid rgba(148, 163, 184, 0.58);
            color: #e5e7eb;
            background: rgba(15, 23, 42, 0.4);
        }

        .panel-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.7), transparent);
            margin: 12px 0;
        }

        .panel-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            font-size: 0.8rem;
            color: #cbd5f5;
        }

        .panel-row span.value {
            font-weight: 600;
            color: #fefce8;
        }

        .badge-highlight {
            position: absolute;
            right: 18px;
            top: 16px;
            padding: 6px 10px;
            border-radius: 999px;
            font-size: 0.74rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            background: rgba(15, 23, 42, 0.7);
            border: 1px solid rgba(250, 250, 249, 0.32);
            color: #fefce8;
        }

        .solutions {
            margin-top: 24px;
            margin-bottom: 32px;
            padding: 26px 24px 24px;
            border-radius: 26px;
            background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98));
            border: 1px solid rgba(148, 163, 184, 0.4);
            box-shadow: var(--shadow-card);
        }

        .section-header {
            display: flex;
            flex-wrap: wrap;
            align-items: baseline;
            justify-content: space-between;
            gap: 10px;
            margin-bottom: 18px;
        }

        .section-title {
            font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 1.4rem;
            color: #f9fafb;
        }

        .section-kicker {
            font-size: 0.85rem;
            color: #9ca3af;
            max-width: 420px;
        }

        .solution-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
        }

        .solution-card {
            border-radius: 18px;
            background: rgba(15, 23, 42, 0.92);
            border-top: 3px solid var(--gold);
            border-left: 1px solid rgba(148, 163, 184, 0.4);
            border-right: 1px solid rgba(15, 23, 42, 0.9);
            border-bottom: 1px solid rgba(15, 23, 42, 0.9);
            padding: 14px 14px 16px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            position: relative;
        }

        .solution-tag {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: #9ca3af;
        }

        .solution-title {
            font-weight: 600;
            font-size: 0.98rem;
            color: #f9fafb;
        }

        .solution-desc {
            font-size: 0.85rem;
            color: #d1d5db;
            line-height: 1.5;
        }

        .solution-meta {
            margin-top: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.78rem;
            color: #e5e7eb;
        }

        .pill-soft {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 4px 8px;
            border-radius: 999px;
            background: rgba(15, 23, 42, 0.8);
            border: 1px solid rgba(148, 163, 184, 0.45);
            font-size: 0.74rem;
        }

        .advantages-layout {
            display: grid;
            grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
            gap: 24px;
            margin-bottom: 30px;
        }

        .list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 14px;
            border-radius: 18px;
            background: radial-gradient(circle at top left, rgba(234, 179, 8, 0.10), rgba(15, 23, 42, 0.96));
            border: 1px solid rgba(148, 163, 184, 0.5);
        }

        .list-item {
            display: grid;
            grid-template-columns: auto minmax(0, 1fr);
            gap: 10px;
            align-items: flex-start;
            padding: 8px 8px 6px;
            border-radius: 12px;
        }

        .list-index {
            width: 24px;
            height: 24px;
            border-radius: 999px;
            border: 1px solid rgba(234, 179, 8, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            color: #fefce8;
        }

        .list-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: #f9fafb;
            margin-bottom: 2px;
        }

        .list-text {
            font-size: 0.84rem;
            color: #d1d5db;
            line-height: 1.6;
        }

        .steps {
            padding: 22px 18px 18px;
            border-radius: 18px;
            background: rgba(15, 23, 42, 0.96);
            border: 1px solid rgba(148, 163, 184, 0.5);
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .step-row {
            display: grid;
            grid-template-columns: auto minmax(0, 1fr);
            gap: 10px;
            position: relative;
        }

        .step-marker {
            width: 22px;
            height: 22px;
            border-radius: 999px;
            background: var(--gold);
            color: #111827;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 600;
            box-shadow: 0 10px 20px rgba(234, 179, 8, 0.4);
        }

        .step-connector {
            position: absolute;
            left: 11px;
            top: 20px;
            bottom: -6px;
            width: 1px;
            background: linear-gradient(to bottom, rgba(148, 163, 184, 0.9), transparent);
        }

        .step-body-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: #f9fafb;
            margin-bottom: 2px;
        }

        .step-body-text {
            font-size: 0.84rem;
            color: #d1d5db;
        }

        .trust {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
            gap: 24px;
            margin-bottom: 32px;
        }

        .trust-panel {
            padding: 18px 18px 16px;
            border-radius: 18px;
            background: radial-gradient(circle at top, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.98));
            border: 1px solid rgba(148, 163, 184, 0.45);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
            margin-top: 10px;
        }

        .stat {
            padding: 10px 10px 8px;
            border-radius: 14px;
            border: 1px solid rgba(148, 163, 184, 0.45);
            background: rgba(15, 23, 42, 0.9);
        }

        .stat-value {
            font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 1.15rem;
            color: #facc15;
        }

        .stat-label {
            font-size: 0.78rem;
            color: #d1d5db;
        }

        .logos-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 10px;
            font-size: 0.8rem;
            color: #9ca3af;
        }

        .dot-separator::before {
            content: "• ";
            opacity: 0.7;
        }

        .form-section {
            margin-bottom: 40px;
        }

        .form-shell {
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.9fr);
            gap: 24px;
            padding: 22px 20px 20px;
            border-radius: 22px;
            background: radial-gradient(circle at top left, rgba(234, 179, 8, 0.10), rgba(15, 23, 42, 0.97));
            border: 1px solid rgba(148, 163, 184, 0.5);
            box-shadow: var(--shadow-card);
        }

        .form-intro-title {
            font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 1.3rem;
            color: #f9fafb;
            margin-bottom: 6px;
        }

        .form-intro-text {
            font-size: 0.9rem;
            color: #d1d5db;
            margin-bottom: 12px;
        }

        .form-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 0.8rem;
            color: #e5e7eb;
        }

        form {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px 14px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .form-group.full {
            grid-column: 1 / -1;
        }

        label {
            font-size: 0.8rem;
            color: #e5e7eb;
        }

        label span.optional {
            color: #9ca3af;
            font-weight: 400;
        }

        input[type="text"],
        input[type="email"],
        select,
        textarea {
            width: 100%;
            border-radius: 999px;
            border: 1px solid rgba(148, 163, 184, 0.6);
            background: rgba(15, 23, 42, 0.92);
            color: #f9fafb;
            padding: 9px 13px;
            font-size: 0.86rem;
            outline: none;
        }

        textarea {
            border-radius: 14px;
            min-height: 80px;
            resize: vertical;
        }

        input::placeholder,
        textarea::placeholder {
            color: #6b7280;
        }

        input:focus,
        select:focus,
        textarea:focus {
            border-color: var(--gold-soft);
            box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.5);
        }

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

        .form-hint {
            font-size: 0.8rem;
            color: #9ca3af;
        }

        .btn-submit {
            border: none;
            cursor: pointer;
        }

        .form-legal {
            font-size: 0.72rem;
            color: #9ca3af;
            margin-top: 4px;
        }

        footer.site-footer {
            border-top: 1px solid rgba(148, 163, 184, 0.35);
            padding: 14px 20px 18px;
            color: #9ca3af;
            font-size: 0.78rem;
            background: radial-gradient(circle at top, rgba(15, 23, 42, 1), rgba(2, 6, 23, 1));
        }

        .footer-inner {
            max-width: 1120px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px 10px;
        }

        .footer-inner a {
            color: #e5e7eb;
            text-decoration: none;
        }

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

        .toast {
            position: fixed;
            bottom: 18px;
            left: 50%;
            transform: translateX(-50%) translateY(100%);
            background: #022c22;
            color: #ecfdf5;
            padding: 10px 16px;
            border-radius: 999px;
            border: 1px solid #34d399;
            font-size: 0.86rem;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 16px 40px rgba(15, 23, 42, 0.4);
            opacity: 0;
            transition: transform 0.25s ease, opacity 0.25s ease;
            z-index: 50;
        }

        .toast.show {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }

        .toast-icon {
            width: 16px;
            height: 16px;
            border-radius: 999px;
            border: 2px solid #bbf7d0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
        }

        @media (max-width: 960px) {
            .hero {
                grid-template-columns: minmax(0, 1fr);
            }

            .hero-visual {
                order: -1;
            }

            .solutions {
                padding: 20px 18px;
            }

            .solutions,
            .advantages-layout,
            .trust,
            .form-shell {
                margin-top: 20px;
            }

            .panel-grid {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        @media (max-width: 800px) {
            .header-inner {
                padding-inline: 18px;
            }

            .layout {
                padding-top: 72px;
            }

            .solution-grid {
                grid-template-columns: minmax(0, 1fr);
            }

            .advantages-layout {
                grid-template-columns: minmax(0, 1fr);
            }

            .stats-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .form-shell {
                grid-template-columns: minmax(0, 1fr);
            }

            form {
                grid-template-columns: minmax(0, 1fr);
            }

            .page-shell {
                background:
                    radial-gradient(circle at 0 0, rgba(234, 179, 8, 0.18), transparent 60%),
                    radial-gradient(circle at 100% 0, rgba(15, 23, 42, 0.96), transparent 60%);
            }
        }

        @media (max-width: 580px) {
            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .btn-primary,
            .btn-secondary {
                justify-content: center;
                width: 100%;
            }

            .stats-grid {
                grid-template-columns: minmax(0, 1fr);
            }
        }

    /* Reviews widget – harmonisé avec le thème navy/gold */
    .reviews-widget-section {
      padding: 2.8rem 0 2.5rem;
    }

    .reviews-widget-inner {
      width: 100%;
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    @media (min-width: 1024px) {
      .reviews-widget-inner {
        padding: 0 2rem;
      }
    }

    .reviews-widget-card {
      background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98));
      border: 1px solid rgba(234, 179, 8, 0.3);
      border-radius: var(--radius-lg);
      box-shadow: 0 18px 46px rgba(15, 23, 42, 0.4);
      padding: 1.4rem 1.3rem 1.5rem;
    }

    .reviews-widget-head {
      margin-bottom: 0.9rem;
    }

    .reviews-widget-title {
      margin: 0;
      font-size: clamp(1.3rem, 2.2vw, 1.85rem);
      line-height: 1.25;
      color: #ffffff;
      letter-spacing: -0.02em;
    }

    .reviews-widget-subtitle {
      margin: 0.5rem 0 0;
      font-size: 0.93rem;
      color: #e2e8f0;
      max-width: 65ch;
    }

    .reviews-widget-proof {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin: 0.9rem 0 1rem;
    }

    .reviews-widget-proof span {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      border-radius: var(--radius-full);
      padding: 0.3rem 0.75rem;
      font-size: 0.8rem;
      font-weight: 600;
      color: #0f172a;
      background: #fef9c3;
      border: 1px solid rgba(234, 179, 8, 0.6);
    }

    .reviews-widget-note {
      margin: 0.8rem 0 0;
      font-size: 0.83rem;
      color: #cbd5e1;
      text-align: center;
    }

    @media (min-width: 768px) {
      .reviews-widget-card {
        padding: 1.55rem 1.45rem 1.6rem;
      }
    }

    @media (max-width: 767px) {
      .reviews-widget-inner {
        padding: 0 1rem;
      }
    }

    /* Texte des avis Elfsight en blanc (fond sombre) */
    .reviews-widget-card [class*="es-review-content"],
    .reviews-widget-card [class*="es-review-content-text"],
    .reviews-widget-card [class*="es-text-shortener"],
    .reviews-widget-card [class*="ShortenedText"] {
      color: #ffffff !important;
    }
    .reviews-widget-card [class*="es-review-author-name"],
    .reviews-widget-card [class*="ReviewAuthorName"] span {
      color: #f9fafb !important;
    }
    .reviews-widget-card [class*="es-review-info-date"],
    .reviews-widget-card [class*="es-review-info-source"] {
      color: #cbd5e1 !important;
    }
    .reviews-widget-card [class*="es-text-shortener-control"] {
      color: #facc15 !important;
    }

  /* header-single-cta */
  header .menu-toggle,
  header .nav-toggle,
  header .hamburger,
  header .mobile-menu,
  header .nav-mobile {
    display: none !important;
  }

  header .nav-links,
  header .links,
  header .nav-link {
    display: none !important;
  }

  header nav,
  header nav.site-nav,
  header nav.primary-nav,
  header .site-nav,
  header .primary-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 0.5rem !important;
  }

  header nav ul,
  header nav .nav-list,
  header nav .links,
  header nav .nav-links {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0.5rem !important;
  }

  header nav ul > li,
  header nav .nav-list > li,
  header nav .links > li,
  header nav .nav-links > li {
    display: none !important;
  }

  header nav ul > li.nav-cta,
  header nav .nav-list > li.nav-cta,
  header nav .links > li.nav-cta,
  header nav .nav-links > li.nav-cta {
    display: inline-flex !important;
  }

  header a.btn,
  header a.btn-primary,
  header a.nav-cta,
  header .nav-cta,
  header .header-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.45rem !important;
    white-space: nowrap !important;
  }

  header .btn-ghost,
  header .btn-outline {
    display: none !important;
  }

/* faq-site-section – fond harmonisé avec le thème navy/gold */
  .faq-site-section {
    padding: 2.6rem 0 1.8rem;
  }

  .faq-site-wrap {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  .faq-site-head {
    margin-bottom: 1rem;
  }

  .faq-site-kicker {
    margin: 0 0 0.25rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--gold-soft);
  }

  .faq-site-title {
    margin: 0;
    font-size: clamp(1.2rem, 2.2vw, 1.8rem);
    line-height: 1.25;
    color: #f9fafb;
  }

  .faq-site-grid {
    display: grid;
    gap: 0.7rem;
  }

  .faq-site-item {
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: 14px;
    background: radial-gradient(circle at top left, rgba(234, 179, 8, 0.08), rgba(15, 23, 42, 0.95));
    padding: 0.85rem 1rem;
  }

  .faq-site-item[open] {
    border-color: rgba(234, 179, 8, 0.4);
    box-shadow: 0 0 0 1px rgba(234, 179, 8, 0.15);
  }

  .faq-site-item summary {
    cursor: pointer;
    font-weight: 600;
    color: #f9fafb;
    list-style: none;
  }

  .faq-site-item summary::-webkit-details-marker {
    display: none;
  }

  .faq-site-answer {
    margin-top: 0.55rem;
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.6;
  }

  @media (max-width: 767px) {
    .faq-site-wrap {
      padding: 0 1rem;
    }
  }