
        /* ── Brand tokens ── */
        :root {
            --brand-primary: #0D967E;
            --brand-primary-dark: #CE9D30;
            --brand-secondary: #F7C244;
            --brand-accent: #0D967E;
            --brand-bg: #FFFFFF;
            --brand-surface: #FFFFFF;
            --brand-text: #212529;
            --brand-text-secondary: #333333;
            --brand-text-on-primary: #FFFFFF;
            --brand-text-on-secondary: #333333;
            --brand-border: #CED4DA;
            --brand-logo-yellow: #F7C244;
            --brand-logo-shadow: #CE9D30;

            /* Spacing base unit: 4px */
            --space-xs: 4px;
            --space-sm: 8px;
            --space-md: 16px;
            --space-lg: 24px;
            --space-xl: 32px;
            --space-xxl: 48px;

            /* Border radius */
            --radius-sm: 5px;
            --radius-input: 32px;
            --radius-button: 30px;
            --radius-pill: 50px;

            /* Shadows */
            --shadow-button: rgba(0, 0, 0, 0.1) 3px 3px 5px 0px;
        }

        /* ── Base typography ── */
        body {
            font-family: 'Open Sans', sans-serif;
            font-size: 18px;
            color: var(--brand-text);
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: Segoe, 'Open Sans', sans-serif;
        }

        h1 {
            font-size: 58px;
        }

        h2 {
            font-size: 38px;
        }

        /* ── Layout helpers ── */
        .e-btn-wrapper-before_bottom>button+div {
            position: relative;
            z-index: 10;
            margin-top: 45px !important;
        }

        .e-btn-wrapper-before_bottom>p {
            position: relative;
            z-index: 10;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .card {
            border-radius: var(--radius-button) !important;
            overflow: hidden;
            background: var(--brand-surface);
            box-shadow: var(--shadow-button);
            border: 1px solid var(--brand-border);
        }

        .hover-lift {
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
        }

        .e-fixed-btn-wrapper {
            z-index: 990;
        }

        .e-mw-300 {
            min-width: 280px;
            max-width: 320px;
        }

        .e-radius-20 {
            border-radius: 20px;
        }

        /* ── Brand colour utilities ── */
        .text-brand-yellow {
            color: var(--brand-secondary) !important;
        }

        .bg-brand-yellow {
            background-color: var(--brand-secondary) !important;
        }

        .badge.bg-warning {
            background-color: var(--brand-secondary) !important;
            color: var(--brand-text-on-secondary) !important;
        }

        .alert-warning {
            border-color: var(--brand-primary-dark);
        }

        /* ── Buttons ── */
        .e-btn.bg-contrast-color {
            background-color: var(--brand-secondary);
            color: var(--brand-text-on-secondary);
            border-radius: var(--radius-button);
            box-shadow: var(--shadow-button);
        }

        .e-btn {
            border-radius: var(--radius-button);
            box-shadow: var(--shadow-button);
        }

        /* ── Inputs ── */
        .form-control {
            border-radius: var(--radius-input);
            border-color: var(--brand-border);
        }

        /* ── Links ── */
        a {
            color: var(--brand-primary);
        }

        a:hover {
            color: var(--brand-primary-dark);
        }

        /* ── Pill badges ── */
        .rounded-pill {
            border-radius: var(--radius-pill) !important;
        }

        /* ── Nav pills (override Bootstrap blue) ── */
        .nav-pills .nav-link {
            color: var(--brand-text);
            border-radius: var(--radius-button);
            border: 1px solid var(--brand-border);
            transition: background .2s, color .2s, border-color .2s;
        }

        .nav-pills .nav-link:hover {
            background: rgba(13, 150, 126, 0.08);
            border-color: var(--brand-primary);
            color: var(--brand-primary);
        }

        .nav-pills .nav-link.active,
        .nav-pills .show>.nav-link {
            background-color: var(--brand-primary) !important;
            color: var(--brand-text-on-primary) !important;
            border-color: var(--brand-primary) !important;
        }

        /* ── Alert-info (override Bootstrap blue) ── */
        .alert-info {
            background-color: rgba(13, 150, 126, 0.08);
            border-color: var(--brand-primary);
            color: var(--brand-text);
        }

        .alert-info i {
            color: var(--brand-primary);
        }

        /* ── Kill every remaining Bootstrap blue ── */
        :root {
            --bs-primary: #0D967E;
            --bs-primary-rgb: 13, 150, 126;
            --bs-link-color: #0D967E;
            --bs-link-color-rgb: 13, 150, 126;
            --bs-link-hover-color: #CE9D30;
            --bs-link-hover-color-rgb: 206, 157, 48;
            --bs-info: #0D967E;
            --bs-info-rgb: 13, 150, 126;
        }

        /* Focus rings & outlines */
        *:focus,
        *:focus-visible {
            outline-color: var(--brand-primary) !important;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--brand-primary) !important;
            box-shadow: 0 0 0 0.25rem rgba(13, 150, 126, 0.25) !important;
        }

        .btn:focus,
        .btn:focus-visible {
            box-shadow: 0 0 0 0.25rem rgba(13, 150, 126, 0.25) !important;
        }

        /* Selection highlight */
        ::selection {
            background: rgba(13, 150, 126, 0.2);
            color: var(--brand-text);
        }

        .e-doc-item {
            display: flex;
            align-items: flex-start;
            gap: var(--space-md);
            padding: var(--space-md) 0;
        }

        .e-doc-item+.e-doc-item {
            border-top: 1px solid var(--brand-border);
        }

        .e-doc-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1rem;
            background: rgba(13, 150, 126, 0.08);
            color: var(--brand-primary);
        }

        .e-doc-label {
            font-weight: 600;
            font-size: 0.95rem;
            line-height: 1.4;
        }

        .e-doc-hint {
            font-size: 0.82rem;
            color: #6c757d;
            margin-top: 2px;
        }

        .e-acte-tab-card {
            background: var(--brand-surface);
            border: 1px solid var(--brand-border);
            border-radius: var(--radius-button);
            padding: var(--space-lg) var(--space-xl);
            box-shadow: var(--shadow-button);
        }

        .e-acte-callout {
            display: flex;
            align-items: flex-start;
            gap: var(--space-sm);
            padding: var(--space-md);
            border-radius: 12px;
            margin-top: var(--space-md);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .e-acte-callout--warn {
            background: rgba(206, 157, 48, 0.1);
            border-left: 3px solid var(--brand-secondary);
        }

        .e-acte-callout--info {
            background: rgba(13, 150, 126, 0.06);
            border-left: 3px solid var(--brand-primary);
        }

        .e-acte-callout i {
            margin-top: 3px;
            flex-shrink: 0;
        }

        .e-tab-selector {
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
        }

        .e-tab-selector .nav-link {
            display: flex;
            align-items: center;
            gap: var(--space-md);
            text-align: left;
            padding: var(--space-md) var(--space-lg);
            font-weight: 500;
            font-size: 0.95rem;
        }

        .e-tab-selector .nav-link i {
            width: 20px;
            text-align: center;
            font-size: 1rem;
        }

        @media (max-width: 991.98px) {
            .e-tab-selector {
                flex-direction: row;
                flex-wrap: wrap;
            }

            .e-tab-selector .nav-link {
                padding: var(--space-sm) var(--space-md);
                font-size: 0.85rem;
            }
        }
        .brands-carousel {
            padding: 40px 48px;
            background: #fff;
            border-radius: 24px;
            border: 1px solid var(--brand-border);
            box-shadow: var(--shadow-button);
        }

        .brands-carousel h2 {
            font-size: 1.6rem;
            margin-bottom: 32px;
            text-align: left;
        }

        .carousel-container {
            position: relative;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .carousel-track {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 8px 4px;
            flex: 1;
        }

        .carousel-track::-webkit-scrollbar {
            display: none;
        }

        .brand-card {
            flex: 0 0 auto;
            width: 200px;
            text-align: center;
            text-decoration: none;
            color: var(--brand-primary);
            background: #fff;
            border: 1px solid var(--brand-border);
            border-radius: 16px;
            padding: 28px 16px 24px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .brand-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            color: var(--brand-primary);
        }

        .brand-logo {
            width: 90px;
            height: 90px;
            margin: 0 auto 16px;
            border-radius: 50%;
            background: #f1f3f5;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .brand-logo img {
            max-width: 55px;
            max-height: 55px;
            object-fit: contain;
        }

        .brand-name {
            font-size: 0.92rem;
            font-weight: 600;
            color: var(--brand-primary);
        }

        .carousel-button {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid var(--brand-border);
            background: #fff;
            font-size: 1.4rem;
            line-height: 1;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-button);
            color: var(--brand-text);
            transition: background 0.2s, border-color 0.2s;
        }

        .carousel-button:hover {
            background: var(--brand-primary);
            border-color: var(--brand-primary);
            color: #fff;
        }

        @media (max-width: 767.98px) {
            .carousel-button {
                display: none;
            }

            .brands-carousel {
                padding: 24px 20px;
            }

            .brand-card {
                width: 160px;
                padding: 20px 12px 18px;
            }

            .brand-logo {
                width: 72px;
                height: 72px;
            }
        }
        .e-vs-table {
                    width: 100%;
                    border-collapse: separate;
                    border-spacing: 0;
                }

                .e-vs-table th,
                .e-vs-table td {
                    padding: 18px 24px;
                    vertical-align: middle;
                }

                .e-vs-table thead th {
                    text-align: center;
                    font-size: 1.05rem;
                    font-weight: 700;
                    letter-spacing: 0.02em;
                }

                .e-vs-table thead th:first-child {
                    background: #f0f4f3;
                    border-radius: var(--radius-button) 0 0 0;
                    color: var(--brand-text);
                    width: 45%;
                }

                .e-vs-table thead th:nth-child(2) {
                    background: #e8eeec;
                    width: 10%;
                    padding: 18px 8px;
                }

                .e-vs-table thead th:last-child {
                    background: var(--brand-primary);
                    border-radius: 0 var(--radius-button) 0 0;
                    color: var(--brand-text-on-primary);
                    width: 45%;
                }

                .e-vs-table tbody tr {
                    border-top: 1px solid var(--brand-border);
                }

                .e-vs-table tbody td:first-child {
                    text-align: right;
                    color: #6c757d;
                }

                .e-vs-table tbody td:nth-child(2) {
                    text-align: center;
                }

                .e-vs-table tbody td:last-child {
                    text-align: left;
                    font-weight: 500;
                }

                .e-vs-table tbody tr:nth-child(odd) {
                    background: rgba(13, 150, 126, 0.03);
                }

                .e-vs-badge {
                    width: 32px;
                    height: 32px;
                    border-radius: 50%;
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 0.7rem;
                    font-weight: 700;
                }

                .e-vs-badge--eq {
                    background: var(--brand-primary);
                    color: #fff;
                }

                .e-vs-badge--diff {
                    background: var(--brand-secondary);
                    color: var(--brand-text-on-secondary);
                }

                .e-vs-vs-pill {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    width: 44px;
                    height: 44px;
                    border-radius: 50%;
                    background: var(--brand-secondary);
                    color: var(--brand-text-on-secondary);
                    font-weight: 800;
                    font-size: 0.85rem;
                    box-shadow: var(--shadow-button);
                }

                @media (max-width: 767.98px) {

                    .e-vs-table th,
                    .e-vs-table td {
                        padding: 12px 10px;
                        font-size: 0.82rem;
                    }

                    .e-vs-table thead th {
                        font-size: 0.85rem;
                    }

                    .e-vs-badge {
                        width: 26px;
                        height: 26px;
                        font-size: 0.6rem;
                    }

                    .e-vs-vs-pill {
                        width: 34px;
                        height: 34px;
                        font-size: 0.75rem;
                    }
                }
                 img {
            max-width: 100%;
            display: block;
        }
        .card {
            border-radius: 30px !important;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(0, 89, 76, 0.08);
        }
        /* Carousel Styles */
        .brands-carousel {
            padding: 48px 56px;
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .carousel-container {
            position: relative;
            overflow: hidden;
            padding: 0 48px;
        }

        .carousel-track {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 8px 0;
        }

        .carousel-track::-webkit-scrollbar {
            display: none;
        }

        .brand-card {
            flex: 0 0 280px;
            background: #FFFFFF;
            border: 1px solid rgba(0, 130, 108, 0.12);
            border-radius: 20px;
            padding: 32px 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        }

        .brand-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(51, 51, 51, 0.12);
            border-color: rgba(0, 130, 108, 0.3);
        }

        .brand-logo {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(13, 150, 126, 0.08);
            border-radius: 50%;
            padding-left: 8px;
            padding-right: 8px;
        }

        .brand-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--brand-dark);
            text-align: center;
        }

        .carousel-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: #FFFFFF;
            border: 1px solid rgba(0, 130, 108, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .carousel-button:hover {
            background: var(--brand-green);
            border-color: var(--brand-green);
            color: #FFFFFF;
        }

        .carousel-button--prev {
            left: 0;
        }

        .carousel-button--next {
            right: 0;
        }

        @media (max-width: 560px) {
            .brands-carousel {
                padding: 32px 20px;
            }

            .carousel-container {
                padding: 0;
            }

            .carousel-button {
                display: none;
            }

            .brand-card {
                flex: 0 0 240px;
            }

            .rate-table th,
            .rate-table td {
                font-size: 0.85rem;
                padding: 10px 8px;
            }

            .rate-table th {
                font-size: 0.8rem;
                padding: 10px 6px;
            }

            .rate-table caption {
                font-size: 0.9rem;
            }
        }
