        /* ========================= */
        /* BASE THEMES */
        /* ========================= */

        body {
            background: #ffffff;
            color: #111;
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            transition: all .35s ease;
            margin: 0;
            padding: 0;
        }

        /* DARK MODE */

        .dark body {
            background: #05070d;
            color: white;
        }


        /* ========================= */
        /* GLASS NAVBAR */
        /* ========================= */


        /* Force-close utility */
        .nav-force-close {
            opacity: 0 !important;
            visibility: hidden !important;
            pointer-events: none !important;
            transform: translateY(8px) !important;
        }

        .glass-navbar {

            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);

            background: rgba(255, 255, 255, 0.85);

            border-bottom: 1px solid rgba(0, 0, 0, 0.08);

            box-shadow:
                0 6px 25px rgba(0, 0, 0, 0.08);

            transition: all .35s ease;

        }

        /* DARK NAVBAR */

        .dark .glass-navbar {

            background: linear-gradient(180deg,
                    rgba(255, 244, 220, 0.08),
                    rgba(255, 244, 220, 0.04));

            border-bottom: 1px solid rgba(255, 255, 255, 0.12);

            box-shadow:
                0 10px 40px rgba(0, 0, 0, 0.45),
                inset 0 1px 0 rgba(255, 255, 255, 0.35);

        }


        /* ========================= */
        /* GLASS CARDS */
        /* ========================= */

        .glass-card {
            backdrop-filter: blur(28px);

            background: rgba(255, 255, 255, 0.98);
            /* more solid */

            border: 1px solid rgba(0, 0, 0, 0.08);

            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);

            border-radius: 20px;
        }

        /* DARK GLASS CARD */

        .dark .glass-card {
            background: rgb(15, 15, 20);
            /* solid dark */

            backdrop-filter: blur(28px);

            border: 1px solid rgba(255, 255, 255, 0.12);

            box-shadow:
                0 15px 50px rgba(0, 0, 0, 0.6);
        }


        /* ========================= */
        /* HOVER EFFECT */
        /* ========================= */

        .liquid-hover {
            position: relative;
            transition: all .35s ease;
        }

        .liquid-hover:hover {
            color: #e6c37a;
        }

        .liquid-hover::after {

            content: "";
            position: absolute;

            left: 0;
            bottom: -6px;

            width: 0%;
            height: 2px;

            background: linear-gradient(90deg, #e6c37a, #d9a85d);

            transition: width .35s ease;

        }

        .liquid-hover:hover::after {
            width: 100%;
        }




        /* ========================= */
        /* BUTTON */
        /* ========================= */

        .btn-primary {

            background: linear-gradient(135deg, #e6c37a, #d9a85d);

            color: #1a1a1a;

            border-radius: 999px;

            padding: 10px 24px;

            font-weight: 500;

            box-shadow: 0 10px 25px rgba(217, 168, 93, 0.35);

            transition: all .3s ease;

        }

        .btn-primary:hover {

            transform: translateY(-2px);

            box-shadow: 0 16px 40px rgba(217, 168, 93, 0.55);

        }


        /* ========================= */
        /* GLOW BACKGROUND */
        /* ========================= */

        .bg-glow {

            position: absolute;

            width: 700px;
            height: 700px;

            background: radial-gradient(circle,
                    rgba(230, 195, 122, 0.18),
                    transparent 60%);

            filter: blur(140px);

            z-index: -1;

        }



        .stat-card {
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.08);
        }

        /* DARK MODE */
        .dark .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
        }

        /* VALUE */
        .stat-value {
            font-size: 13px;
            font-weight: 700;
            line-height: 1.2;
            color: #111;
            /* dark text for light mode */
        }

        .dark .stat-value {
            color: #ffffff;
        }

        /* LABEL */
        .stat-label {
            font-size: 9px;
            margin-top: 2px;
            text-transform: uppercase;
            letter-spacing: .05em;
            color: rgba(0, 0, 0, 0.5);
        }

        .dark .stat-label {
            color: rgba(255, 255, 255, 0.35);
        }


        /* DEFAULT */
        .gcc-country-btn {
            transition: all .25s ease;
        }

        /* ACTIVE STATE (LIGHT) */
        .gcc-country-btn.active {
            background: rgba(201, 162, 39, 0.12);
            border: 1px solid rgba(201, 162, 39, 0.35);
        }

        /* TEXT */
        .gcc-country-btn.active span {
            color: #c9a227;
        }

        /* ICON ARROW */
        .gcc-country-btn.active .gcc-arrow {
            color: #c9a227;
            opacity: 1;
            transform: rotate(180deg);
        }

        /* DARK MODE */
        .dark .gcc-country-btn.active {
            background: rgba(201, 162, 39, 0.08);
            border: 1px solid rgba(201, 162, 39, 0.25);
        }




        [x-cloak] {
            display: none !important;
        }


        @keyframes pulse-dot {

            0%,
            100% {
                opacity: 1;
                transform: scale(1)
            }

            50% {
                opacity: .4;
                transform: scale(.65)
            }
        }

        :root {
            --bg: #faf9f6;
            --bg-alt: #f4f1ea;
            --bg-card: #ffffff;
            --border: rgba(0, 0, 0, 0.07);
            --border-gold: rgba(180, 130, 20, 0.30);
            --text: #1a1612;
            --text-muted: rgba(0, 0, 0, 0.48);
            --text-dim: rgba(0, 0, 0, 0.25);
            --gold: #c9a227;
            --gold-soft: rgba(201, 162, 39, 0.10);
            --gold-border: rgba(201, 162, 39, 0.25);
            --shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
            --shadow-lg: 0 12px 56px rgba(0, 0, 0, 0.11);
            --green: #059669;
            --green-soft: rgba(5, 150, 105, 0.10);
            --blue: #1d6fb5;
            --blue-soft: rgba(29, 111, 181, 0.10);
            --purple: #6d4ec4;
            --purple-soft: rgba(109, 78, 196, 0.10);
            --coral: #c0432b;
            --coral-soft: rgba(192, 67, 43, 0.10);
            --hero-stat-bg: rgba(255, 255, 255, .93);
            --hero-stat-border: rgba(0, 0, 0, .07);
            --hero-stat-divider: rgba(0, 0, 0, .07);
            --hero-stat-val: #111111;
            --hero-stat-label: rgba(0, 0, 0, .42);
            --hero-stat-trend: #059669;
            --hero-ad-border: rgba(0, 0, 0, .08);

        }

        .dark {
            --bg: #0b0a07;
            --bg-alt: #111009;
            --bg-card: #181610;
            --border: rgba(255, 255, 255, 0.07);
            --border-gold: rgba(201, 162, 39, 0.22);
            --text: #f2ede4;
            --text-muted: rgba(255, 255, 255, 0.45);
            --text-dim: rgba(255, 255, 255, 0.22);
            --gold: #c9a227;
            --gold-soft: rgba(201, 162, 39, 0.09);
            --gold-border: rgba(201, 162, 39, 0.22);
            --shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
            --shadow-lg: 0 12px 56px rgba(0, 0, 0, 0.60);
            --green: #34d399;
            --green-soft: rgba(52, 211, 153, 0.10);
            --blue: #60a5fa;
            --blue-soft: rgba(96, 165, 250, 0.10);
            --purple: #a78bfa;
            --purple-soft: rgba(167, 139, 250, 0.10);
            --coral: #f87171;
            --coral-soft: rgba(248, 113, 113, 0.10);
            --hero-stat-bg: rgba(0, 0, 0, .72);
            --hero-stat-border: rgba(255, 255, 255, .07);
            --hero-stat-divider: rgba(255, 255, 255, .07);
            --hero-stat-val: #ffffff;
            --hero-stat-label: rgba(255, 255, 255, .38);
            --hero-stat-trend: #10b981;
            --hero-ad-border: rgba(255, 255, 255, .07);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0
        }

        html {
            scroll-behavior: smooth
        }

        body {
            background: var(--bg);
            color: var(--text);
            font-family: 'DM Sans', sans-serif;
            transition: background .3s, color .3s;
            overflow-x: hidden
        }

        ::-webkit-scrollbar {
            width: 4px
        }

        ::-webkit-scrollbar-thumb {
            background: rgba(201, 162, 39, 0.3);
            border-radius: 99px
        }

        .glass-navbar {
            background: rgba(250, 249, 246, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border)
        }

        .dark .glass-navbar {
            background: rgba(11, 10, 7, 0.88)
        }

        .cv-wrap {
            position: relative;
            overflow: hidden
        }

        .cv-wrap canvas {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            display: block
        }

        .sl {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 9px;
            font-weight: 800;
            letter-spacing: .22em;
            text-transform: uppercase;
            color: var(--gold)
        }

        .sl::before {
            content: '';
            width: 18px;
            height: 1px;
            background: var(--gold);
            opacity: .7
        }

        .reveal {
            opacity: 0;
            transform: translateY(32px);
            transition: opacity .7s ease, transform .7s ease
        }

        .reveal.in {
            opacity: 1;
            transform: translateY(0)
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-32px);
            transition: opacity .7s ease, transform .7s ease
        }

        .reveal-left.in {
            opacity: 1;
            transform: translateX(0)
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(32px);
            transition: opacity .7s ease, transform .7s ease
        }

        .reveal-right.in {
            opacity: 1;
            transform: translateX(0)
        }

        #heroCanvas {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%
        }

        .mq-track {
            display: flex;
            white-space: nowrap;
            animation: marquee 38s linear infinite
        }

        .mq-track:hover {
            animation-play-state: paused
        }

        @keyframes marquee {
            0% {
                transform: translateX(0)
            }

            100% {
                transform: translateX(-50%)
            }
        }

        .eco-tab {
            padding: 12px 28px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: .04em;
            text-transform: uppercase;
            color: var(--text-muted);
            background: transparent;
            border: none;
            cursor: pointer;
            border-bottom: 2px solid transparent;
            margin-bottom: -1px;
            transition: color .15s, border-color .15s
        }

        .eco-tab.active {
            color: var(--gold);
            border-bottom-color: var(--gold)
        }

        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 20px 24px;
            transition: border-color .2s, box-shadow .2s
        }

        .stat-card:hover {
            border-color: var(--border-gold);
            box-shadow: var(--shadow)
        }

        .prop-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 18px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s, border-color .2s
        }

        .prop-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: var(--border-gold)
        }

        .agent-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 18px;
            overflow: hidden;
            transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), border-color .2s, box-shadow .2s
        }

        .agent-card:hover {
            transform: translateY(-5px);
            border-color: var(--border-gold);
            box-shadow: var(--shadow-lg)
        }

        .prod-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 22px;
            transition: border-color .2s, box-shadow .2s, transform .25s
        }

        .prod-card:hover {
            border-color: var(--border-gold);
            box-shadow: var(--shadow);
            transform: translateY(-3px)
        }

        .prod-card.featured {
            border-color: var(--gold);
            background: linear-gradient(135deg, rgba(201, 162, 39, .06), rgba(201, 162, 39, .02))
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 12px;
            border-radius: 99px;
            font-size: 9px;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase
        }

        .badge-gold {
            background: var(--gold-soft);
            border: 1px solid var(--gold-border);
            color: var(--gold)
        }

        .badge-green {
            background: rgba(16, 185, 129, .12);
            border: 1px solid rgba(16, 185, 129, .22);
            color: #059669
        }

        .dark .badge-green {
            color: #34d399
        }

        .hs-wrap {
            background: rgba(10, 9, 6, 0.72);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, .10);
            border-radius: 20px;
            overflow: hidden
        }

        .hs-tabs {
            display: flex;
            border-bottom: 1px solid rgba(255, 255, 255, .08);
            background: rgba(0, 0, 0, .3)
        }

        .hs-tab {
            padding: 11px 22px;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: .06em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .4);
            background: transparent;
            border: none;
            cursor: pointer;
            border-bottom: 2px solid transparent;
            margin-bottom: -1px;
            transition: color .15s, border-color .15s
        }

        .hs-tab.active {
            color: #c9a227;
            border-bottom-color: #c9a227
        }

        .hs-body {
            display: flex;
            align-items: center;
            padding: 8px 8px 8px 18px
        }

        .hs-input {
            flex: 1;
            background: transparent;
            border: none;
            font-size: 14px;
            color: #fff;
            outline: none;
            padding: 8px 0
        }

        .hs-input::placeholder {
            color: rgba(255, 255, 255, .3)
        }

        .hs-btn {
            margin-left: 10px;
            padding: 12px 26px;
            background: #c9a227;
            color: #000;
            border: none;
            border-radius: 13px;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            white-space: nowrap;
            transition: opacity .15s
        }

        .hs-btn:hover {
            opacity: .88
        }

        .agency-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            transition: border-color .2s, box-shadow .2s, transform .25s cubic-bezier(.34, 1.56, .64, 1)
        }

        .agency-card:hover {
            border-color: var(--border-gold);
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px)
        }

        .sec-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border-gold), transparent)
        }

        .big-num {
            font-family: 'Playfair Display', Georgia, serif;
            font-weight: 700;
            color: var(--text);
            line-height: 1
        }




        /* ═══ HERO SLIDER — CANONICAL RESPONSIVE STYLES ═══
           Defined here BEFORE Tailwind loads — prevents mobile flash.
           No !important needed since there are no competing inline styles. */


.hero-wrap {
    display: grid;
    grid-template-columns: 1fr 280px;
    height: 420px;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    background: #000;
}

        .slider {
            display: block;
            position: relative;
            overflow: hidden;
            width: 100%;
            height: 100%;
            min-height: 420px;
            box-sizing: border-box;
        }

        .slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            visibility: hidden;
            transform: scale(1.04);
            transition: opacity .9s cubic-bezier(.4, 0, .2, 1), transform 1.1s cubic-bezier(.4, 0, .2, 1);
            will-change: opacity, transform
        }

        .slide.active {
            opacity: 1;
            visibility: visible;
            transform: scale(1);
            z-index: 2
        }

        .slide.prev {
            opacity: 0;
            visibility: hidden;
            transform: scale(.98);
            z-index: 1;
            pointer-events: none;
        }

        .slide.prev .slide-content,
        .slide.prev .slide-price,
        .slide.prev .slide-badge,
        .slide.prev .slide-h,
        .slide.prev .slide-sub,
        .slide.prev .slide-cta {
            opacity: 0 !important;
            transition: none !important;
        }

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: 85%;
    background-position: center center;
    background-repeat: no-repeat;
}

        @media(max-width:768px) {
            .slide-bg {
                background-size: cover;
                background-position: center center;
                background-repeat: no-repeat;
            }
        }





        .slide:not(.active) .slide-content {
            opacity: 0 !important;
            pointer-events: none;
            transition: none !important;
        }

        .slide:not(.active) .slide-price {
            opacity: 0 !important;
            pointer-events: none;
            transition: none !important;
        }

        .slide:not(.active) .slide-badge {
            opacity: 0 !important;
            transition: none !important;
        }

        .slide:not(.active) .slide-h {
            opacity: 0 !important;
            transition: none !important;
        }

        .slide:not(.active) .slide-sub {
            opacity: 0 !important;
            transition: none !important;
        }

        .slide:not(.active) .slide-cta {
            opacity: 0 !important;
            transition: none !important;
        }

        .slide-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(105deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .44) 52%, rgba(0, 0, 0, .08) 100%)
        }

        .slide-content {
            position: absolute;
            inset: 0;
            z-index: 4;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 32px 40px
        }

        .slide-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 12px;
            border-radius: 99px;
            border: 1px solid rgba(201, 162, 39, .4);
            background: rgba(201, 162, 39, .1);
            margin-bottom: 12px;
            width: fit-content;
            opacity: 0;
            transform: translateY(14px);
            transition: opacity .5s .3s, transform .5s .3s
        }

        .slide.active .slide-badge {
            opacity: 1;
            transform: none
        }

        .slide-badge span {
            font-size: 8.5px;
            font-weight: 700;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--gold)
        }

        .slide-dot {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--gold);
            animation: pulse-dot 2s ease infinite
        }

        .slide-h {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: clamp(22px, 3vw, 40px);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -.02em;
            color: #fff;
            margin-bottom: 10px;
            max-width: 480px;
            opacity: 0;
            transform: translateY(18px);
            transition: opacity .55s .45s, transform .55s .45s
        }

        .slide.active .slide-h {
            opacity: 1;
            transform: none
        }

        .slide-h em {
            font-style: italic;
            color: var(--gold)
        }

        .slide-sub {
            font-size: 12.5px;
            color: rgba(255, 255, 255, .55);
            line-height: 1.65;
            max-width: 400px;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(14px);
            transition: opacity .55s .58s, transform .55s .58s
        }

        .slide.active .slide-sub {
            opacity: 1;
            transform: none
        }

        .slide-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 9px 20px;
            background: var(--gold);
            color: #000;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .06em;
            text-transform: uppercase;
            border-radius: 4px;
            text-decoration: none;
            width: fit-content;
            opacity: 0;
            transform: translateY(12px);
            transition: opacity .5s .7s, transform .5s .7s, background .2s
        }

        .slide.active .slide-cta {
            opacity: 1;
            transform: none
        }

        .slide-cta:hover {
            background: #e8c04a
        }

        .slide-price {
            position: absolute;
            bottom: 50px;
            right: 20px;
            background: rgba(0, 0, 0, .7);
            border: 1px solid rgba(201, 162, 39, .3);
            backdrop-filter: blur(10px);
            border-radius: 8px;
            padding: 9px 14px;
            text-align: right;
            z-index: 4;
            opacity: 0;
            transform: translateX(16px);
            transition: opacity .5s .8s, transform .5s .8s
        }

        .slide.active .slide-price {
            opacity: 1;
            transform: none
        }

        .slide-price-label {
            font-size: 8.5px;
            color: rgba(255, 255, 255, .45);
            letter-spacing: .1em;
            text-transform: uppercase
        }

        .slide-price-val {
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            line-height: 1.1
        }

        .slide-price-sub {
            font-size: 8.5px;
            color: var(--gold)
        }

        .slider-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: rgba(255, 255, 255, .12);
            z-index: 10;
            overflow: hidden
        }

        .slider-progress-bar {
            height: 100%;
            background: var(--gold);
            width: 0%;
            transition: width linear
        }

        .slider-dots {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 6px;
            z-index: 10
        }

        .sd {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .3);
            cursor: pointer;
            border: none;
            padding: 0;
            transition: background .3s, transform .3s
        }

        .sd.active {
            background: var(--gold);
            transform: scale(1.4)
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(0, 0, 0, .45);
            border: 1px solid rgba(255, 255, 255, .2);
            color: #fff;
            font-size: 18px;
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background .2s, border-color .2s
        }

        .slider-arrow:hover {
            background: rgba(201, 162, 39, .8);
            border-color: transparent
        }

        .slider-arrow.prev-btn {
            left: 12px
        }

        .slider-arrow.next-btn {
            right: 12px
        }

        .ad-block {
            display: flex;
            flex-direction: column;
            width: 280px;
            min-width: 280px;
            max-width: 280px;
            height: 100%;
            flex-shrink: 0;
            border-left: 1px solid var(--hero-ad-border);
            overflow: hidden;
            box-sizing: border-box;
            transition: border-color .35s
        }

        .ad-card {
            flex: 1 1 50%;
            min-height: 0;
            position: relative;
            overflow: hidden;
            box-sizing: border-box;
            cursor: pointer
        }

        .ad-card+.ad-card {
            border-top: 1px solid var(--hero-ad-border)
        }

        .ad-card-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transition: transform .5s ease
        }

        .ad-card:hover .ad-card-bg {
            transform: scale(1.06)
        }

        .ad-card-overlay {
            position: absolute;
            inset: 0;
            transition: background .35s
        }

        .ad-card:nth-child(1) .ad-card-bg {
            background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=600&q=80')
        }

        .ad-card:nth-child(2) .ad-card-bg {
            background-image: url('https://images.unsplash.com/photo-1574362848149-11496d93a7c7?w=600&q=80')
        }

        html.dark .ad-card:nth-child(1) .ad-card-overlay {
            background: linear-gradient(135deg, rgba(8, 38, 22, .9), rgba(3, 14, 8, .52))
        }

        html.dark .ad-card:nth-child(2) .ad-card-overlay {
            background: linear-gradient(135deg, rgba(46, 22, 4, .9), rgba(20, 7, 0, .52))
        }

        html:not(.dark) .ad-card:nth-child(1) .ad-card-overlay {
            background: linear-gradient(135deg, rgba(4, 26, 14, .84), rgba(2, 10, 5, .46))
        }

        html:not(.dark) .ad-card:nth-child(2) .ad-card-overlay {
            background: linear-gradient(135deg, rgba(32, 14, 2, .84), rgba(14, 5, 0, .46))
        }

        .ad-content {
            position: absolute;
            inset: 0;
            z-index: 3;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 18px 20px
        }

        .ad-tag {
            font-size: 7.5px;
            font-weight: 700;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: var(--gold);
            background: rgba(201, 162, 39, .13);
            border: 1px solid rgba(201, 162, 39, .28);
            border-radius: 99px;
            padding: 3px 8px;
            width: fit-content;
            margin-bottom: 7px
        }

        .ad-headline {
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            line-height: 1.15;
            margin-bottom: 5px
        }

        .ad-sub {
            font-size: 10.5px;
            color: rgba(255, 255, 255, .52);
            line-height: 1.5;
            margin-bottom: 11px
        }

        .ad-pill {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 5px 12px;
            background: var(--gold);
            color: #000;
            font-size: 9.5px;
            font-weight: 700;
            letter-spacing: .05em;
            border-radius: 3px;
            width: fit-content;
            transition: background .2s
        }

        .ad-card:hover .ad-pill {
            background: #e8c04a
        }

        .ad-badge-corner {
            position: absolute;
            top: 12px;
            right: 12px;
            background: rgba(0, 0, 0, .58);
            border: 1px solid rgba(255, 255, 255, .14);
            border-radius: 6px;
            padding: 5px 9px;
            text-align: center;
            z-index: 4;
            backdrop-filter: blur(8px)
        }

        .ad-badge-val {
            font-family: 'Playfair Display', serif;
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            line-height: 1
        }

        .ad-badge-label {
            font-size: 7.5px;
            color: var(--gold);
            letter-spacing: .08em;
            text-transform: uppercase;
            margin-top: 2px
        }

        .hero-stat-bar {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            background: var(--hero-stat-bg);
            backdrop-filter: blur(12px);
            border-top: 1px solid var(--hero-stat-border);
            transition: background .35s, border-color .35s
        }

        .hero-stat-cell {
            padding: 13px 22px;
            border-right: 1px solid var(--hero-stat-divider);
            transition: border-color .35s
        }

        .hero-stat-cell:last-child {
            border-right: none
        }

        .hero-stat-val {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--hero-stat-val);
            line-height: 1;
            transition: color .35s
        }

        .hero-stat-label {
            font-size: 9px;
            color: var(--hero-stat-label);
            margin-top: 2px;
            text-transform: uppercase;
            letter-spacing: .08em;
            transition: color .35s
        }

        .hero-stat-trend {
            font-size: 8.5px;
            font-weight: 700;
            color: var(--hero-stat-trend);
            margin-top: 3px;
            transition: color .35s
        }


        /* ═══ PLATFORM SECTION ═══ */
        .platform-section {
            background: var(--bg);
            padding: 80px 0 100px;
        }

        .platform-header {
            text-align: center;
            margin-bottom: 48px
        }

        .platform-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(32px, 4vw, 52px);
            font-weight: 700;
            color: var(--text);
            line-height: 1.1;
            letter-spacing: -.025em
        }

        .platform-title em {
            font-style: italic;
            color: var(--gold)
        }

        .platform-sub {
            font-size: 16px;
            color: var(--text-muted);
            margin-top: 16px;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.65
        }


        .plat-content-grid>div:first-child {
            min-width: 0;
            overflow: hidden;
        }

        .article-hero-title,
        .article-hero-desc,
        .article-item-title,
        .plat-callout-text {
            overflow-wrap: break-word;
            word-break: break-word;
        }

        .tab-strip {
            display: flex;
            justify-content: center;
            background: var(--bg-alt);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 5px;
            width: fit-content;
            max-width: calc(100vw - 32px);
            overflow-x: auto;
            overflow-y: hidden;
            scrollbar-width: none;
            margin: 0 auto 56px;
            box-shadow: var(--shadow)
        }

        .tab-btn {
            flex: 0 0 auto;
            padding: 11px 18px;
            border: none;
            background: transparent;
            border-radius: 11px;
            font-family: 'DM Sans', sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .04em;
            color: var(--text-muted);
            cursor: pointer;
            transition: all .22s cubic-bezier(.4, 0, .2, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            white-space: nowrap
        }

        .tab-btn .tab-icon {
            font-size: 14px
        }

        .tab-btn.active {
            background: var(--bg-card);
            color: var(--text);
            box-shadow: 0 2px 12px rgba(0, 0, 0, .09)
        }

        .tab-btn.active .tab-accent {
            color: var(--gold)
        }

        .tab-btn:hover:not(.active) {
            color: var(--text);
            background: rgba(0, 0, 0, .03)
        }

        .dark .tab-btn:hover:not(.active) {
            background: rgba(255, 255, 255, .04)
        }

        .tab-panel {
            display: none
        }

        .tab-panel.active {
            display: block
        }

        .plat-content-grid {
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 32px;
            align-items: start
        }

        @media(max-width:960px) {
            .plat-content-grid {
                grid-template-columns: 1fr
            }
        }

        .article-hero {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 22px;
            overflow: hidden;
            box-shadow: var(--shadow);
            margin-bottom: 24px
        }

        .article-hero-img {
            width: 100%;
            height: 280px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden
        }

        .article-hero-img::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .1) 55%, transparent 100%)
        }

        .article-hero-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 24px 28px;
            z-index: 1
        }

        .article-tag {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 9px;
            font-weight: 800;
            letter-spacing: .14em;
            text-transform: uppercase;
            padding: 4px 11px;
            border-radius: 99px;
            background: var(--gold);
            color: #000;
            margin-bottom: 10px
        }

        .article-hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            line-height: 1.25
        }

        .article-hero-meta {
            font-size: 11px;
            color: rgba(255, 255, 255, .55);
            margin-top: 8px;
            display: flex;
            gap: 12px;
            align-items: center
        }

        .article-hero-body {
            padding: 24px 28px 28px
        }

        .article-hero-desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.72
        }

        .read-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 18px;
            font-size: 12px;
            font-weight: 700;
            color: var(--gold);
            text-decoration: none;
            border: 1px solid var(--gold-border);
            background: var(--gold-soft);
            padding: 8px 18px;
            border-radius: 99px;
            transition: all .18s
        }

        .read-more-btn:hover {
            background: var(--gold);
            color: #000
        }

        .article-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-bottom: 24px
        }

        .article-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 16px 18px;
            display: flex;
            gap: 14px;
            align-items: flex-start;
            transition: border-color .18s, box-shadow .18s;
            text-decoration: none;
            cursor: pointer
        }

        .article-item:hover {
            border-color: var(--border-gold);
            box-shadow: var(--shadow)
        }

        .article-item-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0
        }

        .article-item-content {
            flex: 1;
            min-width: 0
        }

        .article-item-cat {
            font-size: 9px;
            font-weight: 800;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 4px
        }

        .article-item-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--text);
            line-height: 1.4
        }

        .article-item-meta {
            font-size: 10px;
            color: var(--text-dim);
            margin-top: 5px;
            display: flex;
            gap: 8px
        }

        .article-item-arrow {
            color: var(--text-dim);
            align-self: center;
            flex-shrink: 0;
            transition: color .18s
        }

        .article-item:hover .article-item-arrow {
            color: var(--gold)
        }

        .plat-sidebar {
            display: flex;
            flex-direction: column;
            gap: 15px;
            overflow: hidden;
            min-width: 0;
            max-width: 100%;
        }

        .plat-stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: 24px;
            box-shadow: var(--shadow)
        }

        .plat-stat-title {
            font-size: 9px;
            font-weight: 800;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 18px
        }

        .plat-stat-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid var(--border)
        }

        .plat-stat-row:last-child {
            border-bottom: none
        }

        .plat-stat-label {
            font-size: 12px;
            color: var(--text-muted)
        }

        .plat-stat-value {
            font-size: 13px;
            font-weight: 700;
            color: var(--text)
        }

        .plat-badge {
            font-size: 9px;
            font-weight: 700;
            padding: 3px 9px;
            border-radius: 99px
        }

        .plat-badge.up {
            background: var(--green-soft);
            color: var(--green)
        }

        .plat-badge.nu {
            background: var(--blue-soft);
            color: var(--blue)
        }

        .feature-card {
            border-radius: 16px;
            border: 1px dashed var(--gold-border);
            background: var(--gold-soft);
            padding: 22px;
            position: relative;
            overflow: hidden
        }

        .feature-card::before {
            content: 'FEATURED';
            position: absolute;
            top: 10px;
            right: 14px;
            font-size: 7px;
            font-weight: 800;
            letter-spacing: .18em;
            color: var(--text-dim)
        }

        .feature-card-title {
            font-family: 'Playfair Display', serif;
            font-size: 17px;
            font-weight: 700;
            color: var(--text);
            line-height: 1.25;
            margin-top: 8px
        }

        .feature-card-desc {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 8px;
            line-height: 1.6
        }

        .feature-card-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 16px;
            padding: 10px 22px;
            background: var(--gold);
            color: #000;
            border-radius: 10px;
            font-size: 12px;
            font-weight: 700;
            text-decoration: none;
            transition: opacity .15s
        }

        .feature-card-cta:hover {
            opacity: .85
        }

        .step-list {
            display: flex;
            flex-direction: column;
            gap: 12px
        }

        .step-item {
            display: flex;
            gap: 12px;
            align-items: flex-start
        }

        .step-num {
            width: 26px;
            height: 26px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 800;
            flex-shrink: 0;
            background: var(--gold-soft);
            border: 1px solid var(--gold-border);
            color: var(--gold)
        }

        .step-text {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.55;
            padding-top: 4px
        }

        .step-text strong {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 2px
        }

        .metrics-strip {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
            margin-bottom: 28px
        }

        @media(max-width:700px) {
            .metrics-strip {
                grid-template-columns: repeat(2, 1fr)
            }
        }

        .metric-box {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 18px 16px;
            box-shadow: var(--shadow)
        }

        .metric-val {
            font-family: 'Playfair Display', serif;
            font-size: 26px;
            font-weight: 700;
            color: var(--text);
            line-height: 1
        }

        .metric-val span {
            font-size: 14px;
            color: var(--gold)
        }

        .metric-lbl {
            font-size: 10px;
            color: var(--text-muted);
            margin-top: 4px
        }

        .metric-chg {
            display: inline-flex;
            align-items: center;
            gap: 3px;
            font-size: 9px;
            font-weight: 700;
            padding: 2px 7px;
            border-radius: 99px;
            margin-top: 8px
        }

        .metric-chg.up {
            background: var(--green-soft);
            color: var(--green)
        }

        .metric-chg.nu {
            background: var(--blue-soft);
            color: var(--blue)
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px
        }

        .product-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: 22px;
            transition: border-color .2s, transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .2s;
            cursor: pointer
        }

        .product-card:hover {
            border-color: var(--border-gold);
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg)
        }

        .product-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 14px
        }

        .product-name {
            font-size: 15px;
            font-weight: 700;
            color: var(--text);
            font-family: 'Playfair Display', serif
        }

        .product-desc {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 6px;
            line-height: 1.6
        }

        .product-tag {
            display: inline-block;
            margin-top: 12px;
            font-size: 9px;
            font-weight: 800;
            letter-spacing: .10em;
            text-transform: uppercase;
            padding: 3px 10px;
            border-radius: 99px;
            background: var(--gold-soft);
            border: 1px solid var(--gold-border);
            color: var(--gold)
        }

        .product-features {
            margin-top: 14px;
            padding-top: 14px;
            border-top: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            gap: 6px
        }

        .product-feat {
            display: flex;
            align-items: center;
            gap: 7px;
            font-size: 11px;
            color: var(--text-muted)
        }

        .product-feat::before {
            content: '';
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--gold);
            opacity: .7;
            flex-shrink: 0
        }

        .plat-testimonial {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 22px;
            position: relative
        }

        .plat-testimonial::before {
            content: '"';
            position: absolute;
            top: -8px;
            left: 20px;
            font-family: 'Playfair Display', serif;
            font-size: 72px;
            font-style: italic;
            color: var(--gold);
            opacity: .25;
            line-height: 1
        }

        .plat-testimonial-text {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.65;
            font-style: italic;
            padding-top: 12px;
            overflow-wrap: break-word;
            word-break: break-word;
        }


        .plat-sidebar * {
            max-width: 100%;
            overflow-wrap: break-word;
            word-break: break-word;
        }

        .article-hero-desc,
        .article-item-title,
        .plat-stat-label,
        .plat-news-headline {
            overflow-wrap: break-word;
            word-break: break-word;
            max-width: 100%;
        }


        .plat-testimonial-author {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 16px
        }

        .plat-avatar {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            flex-shrink: 0
        }

        .plat-testimonial-name {
            font-size: 12px;
            font-weight: 700;
            color: var(--text)
        }

        .plat-testimonial-role {
            font-size: 10px;
            color: var(--text-dim)
        }

        .plat-cta-block {
            border-radius: 18px;
            padding: 28px 24px;
            background: linear-gradient(135deg, rgba(201, 162, 39, .12) 0%, rgba(201, 162, 39, .04) 100%), var(--bg-alt);
            border: 1px solid var(--gold-border);
            text-align: center
        }

        .plat-cta-title {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--text);
            line-height: 1.2
        }

        .plat-cta-desc {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 8px;
            line-height: 1.55
        }

        .plat-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 18px;
            padding: 12px 28px;
            background: var(--gold);
            color: #000;
            border-radius: 12px;
            font-size: 13px;
            font-weight: 700;
            text-decoration: none;
            transition: opacity .15s
        }

        .plat-cta-btn:hover {
            opacity: .87
        }

        .fade-up {
            opacity: 0;
            transform: translateY(18px);
            transition: opacity .5s ease, transform .5s ease
        }

        .fade-up.in {
            opacity: 1;
            transform: translateY(0)
        }

        .agent-card-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
            margin-bottom: 24px
        }

        .plat-agent-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 18px 16px;
            text-align: center;
            transition: border-color .2s, transform .2s
        }

        .plat-agent-card:hover {
            border-color: var(--border-gold);
            transform: translateY(-3px)
        }

        .plat-agent-avatar {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 700;
            margin: 0 auto 10px;
            border: 2px solid var(--border)
        }

        .plat-agent-name {
            font-size: 13px;
            font-weight: 700;
            color: var(--text)
        }

        .plat-agent-title {
            font-size: 10px;
            color: var(--text-muted);
            margin-top: 2px
        }

        .plat-agent-stats {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid var(--border)
        }

        .plat-agent-stat {
            font-size: 10px;
            color: var(--text-dim)
        }

        .plat-agent-stat strong {
            display: block;
            font-size: 13px;
            font-weight: 700;
            color: var(--text)
        }

        .plat-callout {
            border-left: 3px solid var(--gold);
            background: var(--gold-soft);
            border-radius: 0 12px 12px 0;
            padding: 14px 18px;
            margin: 20px 0
        }

        .plat-callout-label {
            font-size: 9px;
            font-weight: 800;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 5px
        }

        .plat-callout-text {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.55
        }

        .plat-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 12px;
            min-width: 420px;
        }

        .plat-table th {
            font-size: 9px;
            font-weight: 800;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--text-dim);
            padding: 8px 10px;
            border-bottom: 1px solid var(--border);
            text-align: left
        }

        .plat-table td {
            padding: 10px;
            border-bottom: 1px solid var(--border);
            color: var(--text-muted)
        }

        .plat-table tr:last-child td {
            border-bottom: none
        }

        .plat-table tr:hover td {
            background: var(--bg-alt)
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 9px;
            font-weight: 800;
            letter-spacing: .22em;
            text-transform: uppercase;
            color: var(--gold)
        }

        .section-label::before {
            content: '';
            width: 18px;
            height: 1px;
            background: var(--gold);
            opacity: .7
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px
        }


        /* ══════════════════════════════════════════════
   1. GLOBAL OVERFLOW FIX
   This is the #1 cause of the blank right space
══════════════════════════════════════════════ */
        html,
        body {
            overflow-x: hidden !important;
            max-width: 100% !important;
        }

        *,
        *::before,
        *::after {
            max-width: 100%;
        }

        /* ══════════════════════════════════════════════
   0. THEME SWITCH — prevent black flash
   CSS cannot interpolate between two gradient
   values so background transitions just snap
   after the delay, showing black in between.
   Only transition color/border, never background.
══════════════════════════════════════════════ */
        body {
            transition: color .3s !important;
            /* background intentionally NOT transitioned */
        }

        /* Kill background transition on any element
   that uses a gradient CSS variable */
        .pa-ad-card,
        .eco-wrap,
        .eco-panel,
        footer,
        .paf-footer,
        #pac-card,
        #pac-bg,
        .hero-wrap,
        .platform-section,
        .pa-ad-placeholder {
            transition: border-color .3s, color .3s !important;
            /* background: instant swap — no transition */
        }

        /* ══════════════════════════════════════════════
   2. CONTAINER — padding on small screens
══════════════════════════════════════════════ */
        .container {
            padding-left: clamp(16px, 4vw, 32px) !important;
            padding-right: clamp(16px, 4vw, 32px) !important;
        }

        @media(max-width:480px) {
            .container {
                padding-left: 14px !important;
                padding-right: 14px !important;
            }
        }

        /* ══════════════════════════════════════════════
   3. MARQUEE BAR — no overflow
══════════════════════════════════════════════ */
        .mq-track {
            min-width: max-content;
        }

        @media(max-width:480px) {
            .mq-track>span {
                font-size: 10px !important;
                padding: 0 12px !important;
                gap: 6px !important;
            }
        }

        /* ══════════════════════════════════════════════
   4. HERO SLIDER + AD BLOCK
══════════════════════════════════════════════ */
        @media(max-width:1100px) {
            .hero-wrap {
                grid-template-columns: 1fr 230px !important;
                height: 380px !important;
            }
        }

        @media(max-width:768px) {
            .hero-wrap {
                display: flex !important;
                flex-direction: column !important;
                height: auto !important;
                width: 100% !important;
            }

            .slider {
                width: 100% !important;
                height: 420px !important;
                min-height: 420px !important;
                flex-shrink: 0;
            }

            .ad-block {
                display: grid !important;
                grid-template-columns: 1fr 1fr !important;
                height: 190px !important;
                width: 100% !important;
                min-width: 0 !important;
                max-width: 100% !important;
                border-left: none !important;
                border-top: 1px solid var(--hero-ad-border) !important;
            }

            .ad-card+.ad-card {
                border-top: none !important;
                border-left: 1px solid var(--hero-ad-border) !important;
            }

            .ad-sub {
                display: none !important;
            }

            .slide-sub {
                font-size: 11.5px !important;
            }

            .slide-content {
                padding: 22px 18px !important;
            }

            .slide-h {
                font-size: clamp(18px, 5vw, 28px) !important;
            }

            .slide-price {
                bottom: 34px !important;
                right: 10px !important;
            }

            .slider-arrow {
                width: 28px !important;
                height: 28px !important;
            }
        }

        @media(max-width:640px) {
            .slide-sub {
                display: none !important;
            }

            .slider {
                height: 380px !important;
                min-height: 380px !important;
            }

            .ad-block {
                height: 160px !important;
            }

            .slide-price {
                display: none !important;
            }
        }

        @media(max-width:480px) {
            .slider {
                height: 340px !important;
                min-height: 340px !important;
            }

            .ad-block {
                height: 150px !important;
            }

            .slide-h {
                font-size: 18px !important;
            }

            .ad-headline {
                font-size: 13px !important;
            }

            .ad-pill {
                display: none !important;
            }
        }

        @media(max-width:360px) {
            .slider {
                height: 300px !important;
                min-height: 300px !important;
            }

            .ad-block {
                height: 140px !important;
            }
        }

        /* ══════════════════════════════════════════════
   5. STAT BAR — horizontal scroll on mobile
══════════════════════════════════════════════ */
        .hero-stat-bar-wrapper {
            position: relative;
            overflow: hidden;
        }

        @media(max-width:960px) {
            .hero-stat-bar-wrapper .hs-grid {
                grid-template-columns: repeat(3, 1fr) !important;
            }

            .hero-stat-bar-wrapper .hs-cell:nth-child(n+4) {
                border-top: 1px solid var(--border) !important;
            }

            .hero-stat-bar-wrapper .hs-cell:nth-child(3) {
                border-right: none !important;
            }
        }

        @media(max-width:640px) {
            .hero-stat-bar-wrapper .hs-outer {
                overflow-x: auto !important;
                overflow-y: hidden !important;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none !important;
            }

            .hero-stat-bar-wrapper .hs-outer::-webkit-scrollbar {
                display: none;
            }

            .hero-stat-bar-wrapper .hs-grid {
                display: flex !important;
                flex-wrap: nowrap !important;
                width: max-content !important;
                grid-template-columns: unset !important;
            }

            .hero-stat-bar-wrapper .hs-cell {
                flex: 0 0 160px !important;
                min-width: 160px !important;
                padding: 14px 14px !important;
                border-top: none !important;
                border-right: 1px solid var(--border) !important;
            }

            .hero-stat-bar-wrapper .hs-cell:last-child {
                border-right: none !important;
            }

            .hero-stat-bar-wrapper .hs-val {
                font-size: 20px !important;
            }

            /* fade hint right edge */
            .hero-stat-bar-wrapper::after {
                content: '';
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                width: 44px;
                background: linear-gradient(to left, var(--hero-stat-bg), transparent);
                pointer-events: none;
                z-index: 3;
            }
        }

        /* ══════════════════════════════════════════════
   6. PLATFORM SECTION
══════════════════════════════════════════════ */
        @media(max-width:960px) {
            .plat-content-grid {
                grid-template-columns: 1fr !important;
            }
        }

        @media(max-width:700px) {
            .metrics-strip {
                grid-template-columns: repeat(2, 1fr) !important;
            }

            .agent-card-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }

            .product-grid {
                grid-template-columns: 1fr !important;
            }

            .tab-strip {
                overflow-x: auto;
                flex-wrap: nowrap !important;
                justify-content: flex-start !important;
            }

            .tab-btn {
                flex-shrink: 0;
                padding: 10px 14px !important;
                font-size: 11px !important;
            }
        }

        @media(max-width:480px) {
            .metrics-strip {
                grid-template-columns: 1fr 1fr !important;
                gap: 10px !important;
            }

            .agent-card-grid {
                grid-template-columns: 1fr !important;
            }

            .tab-strip {
                padding: 4px !important;
            }
        }

        /* ══════════════════════════════════════════════
   7. ECO SECTION
══════════════════════════════════════════════ */
        @media(max-width:900px) {
            .eco-accordion {
                flex-direction: column !important;
                height: auto !important;
                min-height: unset !important;
                gap: 10px !important;
            }

            .eco-panel {
                flex: none !important;
                width: 100% !important;
                height: auto !important;
                overflow: hidden !important;
                border-radius: 16px !important;
                min-height: unset !important;
            }

            .eco-panel .eco-bar {
                transform: scaleX(1) !important;
            }

            .eco-deco-svg {
                display: none !important;
            }

            /* collapsed = horizontal hint card */
            .eco-idle {
                position: relative !important;
                inset: auto !important;
                opacity: 1 !important;
                pointer-events: auto !important;
                display: flex !important;
                flex-direction: row !important;
                align-items: flex-start !important;
                gap: 14px !important;
                padding: 18px !important;
            }

            .eco-idle-icon {
                width: 42px !important;
                height: 42px !important;
                margin: 0 !important;
                flex-shrink: 0;
            }

            .eco-idle-desc {
                display: -webkit-box !important;
                -webkit-line-clamp: 2 !important;
                -webkit-box-orient: vertical !important;
                overflow: hidden !important;
                font-size: 12px !important;
                margin-bottom: 8px !important;
            }

            .eco-idle-stat {
                display: inline-flex !important;
            }

            /* open state */
            .eco-panel.is-open .eco-idle {
                display: none !important;
            }

            .eco-open {
                position: relative !important;
                inset: auto !important;
                opacity: 1 !important;
                transform: none !important;
                padding: 22px !important;
                overflow: visible !important;
                transition: opacity .3s ease, transform .35s ease !important;
            }

            .eco-panel:not(.is-open) .eco-open {
                opacity: 0;
                transform: translateY(10px);
                pointer-events: none;
            }

            .eco-open-link {
                opacity: 1 !important;
                transform: none !important;
            }

            .eco-accordion {
                padding: 0 16px 44px !important;
            }
        }

        @media(max-width:600px) {
            .eco-header {
                padding: 52px 16px 32px !important;
            }

            .eco-open-title {
                font-size: 22px !important;
            }
        }

        /* ══════════════════════════════════════════════
   8. GCC MARKETS SECTION
══════════════════════════════════════════════ */
        @media(max-width:1000px) {
            .pgcc-grid {
                grid-template-columns: repeat(3, 1fr) !important;
            }
        }

        @media(max-width:640px) {
            .pgcc-grid {
                display: none !important;
            }

            .pgcc-carousel-wrap {
                display: block !important;
            }

            .pgcc-outer {
                padding: 56px 16px !important;
            }
        }

        /* bottom strip responsive */
        @media(max-width:640px) {
            .pgcc-outer>div>div:last-child {
                flex-direction: column !important;
                align-items: flex-start !important;
                gap: 18px !important;
                padding: 16px !important;
            }

            .pgcc-outer>div>div:last-child a {
                width: 100% !important;
                justify-content: center !important;
            }
        }

        /* ══════════════════════════════════════════════
   9. PLATFORM CARD DECK (#pa-platform-section)
══════════════════════════════════════════════ */
        @media(max-width:600px) {
            #pa-platform-section .w-full.max-w-5xl {
                padding-left: 14px !important;
                padding-right: 14px !important;
                padding-top: 4rem !important;
                padding-bottom: 48px !important;
            }

            #pa-tabs {
                gap: 6px !important;
            }

            #pa-tabs button {
                font-size: 11px !important;
                padding: 6px 12px !important;
            }
        }

        /* ══════════════════════════════════════════════
   10. CTA SECTION (#pac)
══════════════════════════════════════════════ */
        @media(max-width:1040px) {
            #pac .pac-2col {
                grid-template-columns: 1fr !important;
            }

            #pac .pac-pgrid {
                grid-template-columns: repeat(4, 1fr) !important;
            }

            #pac #pac-right {
                border-left: none !important;
                border-top: 1px solid rgba(201, 162, 39, 0.15) !important;
                padding-left: 0 !important;
                padding-top: 24px !important;
            }
        }

        @media(max-width:720px) {
            #pac .pac-wrap {
                padding: 56px 16px !important;
            }

            #pac .pac-inner {
                padding: 28px 18px 24px !important;
            }

            #pac .pac-pgrid {
                grid-template-columns: repeat(2, 1fr) !important;
            }

            #pac .pac-btns {
                flex-direction: column !important;
            }

            #pac .pac-btns a {
                text-align: center !important;
                justify-content: center !important;
            }

            #pac .pac-stats {
                grid-template-columns: repeat(2, 1fr) !important;
            }
        }

        @media(max-width:480px) {
            #pac .pac-pgrid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 8px !important;
            }

            #pac .pac-inner {
                padding: 20px 14px 18px !important;
            }
        }

        /* ══════════════════════════════════════════════
   11. AD BANNER
══════════════════════════════════════════════ */
        @media(max-width:768px) {
            .pa-ad-grid {
                grid-template-columns: 1fr !important;
                grid-template-rows: auto 170px !important;
            }

            .pa-ad-right {
                border-left: none !important;
                border-top: 1px solid rgba(201, 162, 39, .12) !important;
                min-height: 170px !important;
            }

            .pa-ad-stats {
                width: 100% !important;
            }

            .pa-ad-stat {
                flex: 1 !important;
            }
        }

        @media(max-width:480px) {
            .pa-ad-left {
                flex-direction: column !important;
                align-items: flex-start !important;
                padding: 16px !important;
                gap: 12px !important;
            }

            .pa-ad-grid {
                grid-template-rows: auto 130px !important;
            }

            .pa-ad-right {
                min-height: 130px !important;
            }

            .pa-ad-stat-val {
                font-size: 14px !important;
            }

            .pa-ad-stat-lbl {
                font-size: 7px !important;
            }
        }

        /* ══════════════════════════════════════════════
   12. PLATFORM SECTION TABS
══════════════════════════════════════════════ */
        @media(max-width:580px) {
            .tab-strip {
                overflow-x: auto !important;
                flex-wrap: nowrap !important;
                justify-content: flex-start !important;
                max-width: 100% !important;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }

            .tab-strip::-webkit-scrollbar {
                display: none;
            }

            .tab-btn {
                white-space: nowrap !important;
                flex-shrink: 0 !important;
            }
        }

        /* ══════════════════════════════════════════════
   13. TRUSTED PARTNERS STRIP
══════════════════════════════════════════════ */
        @media(max-width:600px) {

            .sec-divider+section,
            section[style*="padding:40px 0"] {
                padding: 28px 0 !important;
            }

            section[style*="padding:40px 0"]>div {
                padding: 0 16px !important;
            }

            section[style*="padding:40px 0"]>div>div:last-child {
                gap: 6px !important;
            }

            section[style*="padding:40px 0"]>div>div:last-child>div {
                font-size: 10px !important;
                padding: 6px 12px !important;
            }
        }

        /* ══════════════════════════════════════════════
   14. PLAT-CONTENT: article hero image
══════════════════════════════════════════════ */
        @media(max-width:600px) {
            .article-hero-img {
                height: 200px !important;
            }

            .article-hero-title {
                font-size: 17px !important;
            }

            .article-hero-body {
                padding: 18px 16px 20px !important;
            }

            .plat-stat-card {
                padding: 18px !important;
            }
        }

        /* ══════════════════════════════════════════════
   15. GENERAL section padding on mobile
══════════════════════════════════════════════ */
        @media(max-width:640px) {
            .platform-section {
                padding: 52px 0 64px !important;
            }

            .platform-sub {
                font-size: 14px !important;
            }
        }

        @media(max-width:480px) {
            .platform-section {
                padding: 40px 0 52px !important;
            }
        }

        /* ══════════════════════════════════════════════
   16. NAVBAR gap fix — body gets margin-top:64px
       but on mobile nav is shorter sometimes
══════════════════════════════════════════════ */
        @media(max-width:480px) {
            .hs-wrap {
                border-radius: 14px !important;
            }

            .hs-btn {
                padding: 11px 18px !important;
                font-size: 12px !important;
            }
        }

        /* ══════════════════════════════════════════════
   17. Remove any fixed/absolute elements that
       bleed outside viewport on mobile
══════════════════════════════════════════════ */
        @media(max-width:768px) {

            /* ambient glow blobs — cap them so they don't cause scroll */
            [style*="width:600px"][style*="height:600px"][style*="border-radius:50%"],
            [style*="width:500px"][style*="height:500px"][style*="border-radius:50%"],
            [style*="width:350px"][style*="height:350px"][style*="border-radius:50%"] {
                max-width: 100% !important;
                overflow: hidden !important;
            }
        }