 /* ==============================================
           Reset
        ============================================== */

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html,
        body {
            margin: 0;
            padding: 0;
        }

        body {
            color: #332b2d;
            background: #fffdfb;
            font-family: "Source Sans 3", "Segoe UI", sans-serif;
        }

        /* ==============================================
           Main section
        ============================================== */

        .global-map-section {
            width: 100%;
        }

        .global-map-inner {
            width: 100%;
            margin: 0 auto;
        }

        /* ==============================================
           Heading
        ============================================== */

        .map-heading {
            display: grid;
            grid-template-columns: minmax(300px, 0.8fr) 1.2fr;
            gap: 40px;
            margin-bottom: 28px;
            align-items: end;
        }

        .map-heading h1 {
            margin: 0;
            color: #a6003b;
            font-family: "Source Serif 4", Georgia, serif;
            font-size: clamp(2rem, 3vw, 3.1rem);
            font-weight: 700;
            line-height: 1.2;
        }

        .map-heading p {
            margin: 0 0 5px;
            color: #817772;
            font-size: 0.94rem;
            line-height: 1.6;
        }

        /* ==============================================
           World map
        ============================================== */

        .world-map-shell {
            position: relative;
            width: 100%;
            min-height: 520px;
            overflow: hidden;
            /*background: #fff8f0;*/
            /*border: 1px solid #ede1d7;*/
            /*border-radius: 180px;*/
        }

        #worldMap {
            display: block;
            width: 100%;
            height: auto;
            min-height: 520px;
        }

        .map-sphere {
            fill: #fff8f0;
            stroke: #e5d8cc;
            stroke-width: 1;
        }

        .map-grid {
            fill: none;
            stroke: #ece1d7;
            stroke-width: 0.6;
            pointer-events: none;
        }

        .map-country {
            cursor: pointer;
            stroke: #fffdfa;
            stroke-width: 0.7;
            transition:
                opacity 0.15s ease,
                filter 0.15s ease;
        }

        .map-country:hover {
            opacity: 0.78;
            filter: brightness(1.08);
        }

        /* ==============================================
           Loading and error
        ============================================== */

        .map-status {
            position: absolute;
            top: 50%;
            left: 50%;
            z-index: 5;
            color: #a6003b;
            font-size: 0.95rem;
            font-weight: 700;
            line-height: 1.6;
            text-align: center;
            transform: translate(-50%, -50%);
        }

        .map-status small {
            display: block;
            margin-top: 5px;
            color: #756a65;
            font-size: 0.75rem;
            font-weight: 400;
        }

        /* ==============================================
           Tooltip
        ============================================== */

        .map-tooltip {
            position: absolute;
            z-index: 20;
            display: none;
            width: 265px;
            padding: 16px 18px;
            color: #ffffff;
            background: #6e0025;
            border-radius: 9px;
            box-shadow: 0 15px 35px rgba(50, 0, 17, 0.25);
            pointer-events: none;
        }

        .map-tooltip.is-visible {
            display: block;
        }

        .tooltip-country {
            display: block;
            margin-bottom: 12px;
            font-family: "Source Serif 4", Georgia, serif;
            font-size: 1rem;
            font-weight: 700;
        }

        .tooltip-row {
            display: flex;
            gap: 20px;
            padding: 4px 0;
            align-items: baseline;
            justify-content: space-between;
            color: #e9c9d3;
            font-size: 0.76rem;
        }

        .tooltip-row strong {
            color: #ffffff;
            font-weight: 600;
            text-align: right;
        }

        .tooltip-line {
            display: block;
            height: 1px;
            margin: 11px 0;
            background: rgba(255, 255, 255, 0.22);
        }

        .tooltip-label {
            display: block;
            margin-bottom: 5px;
            color: #f7b26a;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .tooltip-industry {
            display: block;
            color: #ffffff;
            font-size: 0.82rem;
            font-weight: 600;
            line-height: 1.45;
        }

        /* ==============================================
           Legend
        ============================================== */

        .map-legend {
            display: flex;
            gap: 18px;
            margin-top: 22px;
            flex-wrap: wrap;
            align-items: center;
        }

        .legend-item {
            display: flex;
            gap: 7px;
            align-items: center;
            color: #756c67;
            font-size: 0.76rem;
        }

        .legend-color {
            display: inline-block;
            width: 10px;
            height: 10px;
            flex: 0 0 10px;
            border-radius: 50%;
        }

        /* ==============================================
           Business tags
        ============================================== */

        .business-tags {
            display: flex;
            gap: 12px;
            margin-top: 35px;
            flex-wrap: wrap;
        }

        .business-tags span {
            display: inline-flex;
            min-height: 48px;
            padding: 10px 25px;
            align-items: center;
            justify-content: center;
            color: #574e4a;
            background: #ffffff;
            border: 1px solid #dfd1c8;
            border-radius: 50px;
            font-size: 0.88rem;
            font-weight: 600;
        }

        /* ==============================================
           Responsive
        ============================================== */

        @media (max-width: 991.98px) {
            .global-map-section {
                padding-top: 45px;
                padding-bottom: 45px;
            }

            .map-heading {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .world-map-shell {
                min-height: 420px;
                border-radius: 110px;
            }

            #worldMap {
                min-height: 420px;
            }
        }

        @media (max-width: 575.98px) {
            .global-map-section {
                padding-top: 35px;
                padding-bottom: 35px;
            }

            .map-heading h1 {
                font-size: 1.8rem;
            }

            .map-heading p {
                font-size: 0.85rem;
            }

            .world-map-shell {
                min-height: 260px;
                border-radius: 45px;
            }

            #worldMap {
                min-height: 260px;
            }

            .map-tooltip {
                width: 215px;
                padding: 13px 14px;
            }

            .map-legend {
                gap: 12px;
            }

            .legend-item {
                width: calc(50% - 6px);
                font-size: 0.67rem;
            }

            .business-tags {
                gap: 8px;
                margin-top: 25px;
            }

            .business-tags span {
                min-height: 42px;
                padding: 8px 15px;
                font-size: 0.78rem;
            }
        }