﻿        /* ═══════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════ */
        :root {
            --orange: #E8520A;
            --orange-lt: #FF6B2B;
            --orange-pale: #FFF0EA;
            --orange-mid: rgba(232, 82, 10, 0.12);
            --navy: #0F1E33;
            --navy-mid: #1A2E4A;
            --navy-lt: #233A5C;
            --slate: #4A5568;
            --silver: #8EA0B4;
            --mist: #F4F1EC;
            --rule: #E2D9CF;
            --white: #FFFFFF;
            --sh: 0 4px 24px rgba(15, 30, 51, 0.08);
            --sh-lg: 0 20px 60px rgba(15, 30, 51, 0.14);
            --sh-xl: 0 32px 80px rgba(15, 30, 51, 0.20);
            --radius: 10px;
            --radius-lg: 16px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Sora', sans-serif;
            background: var(--white);
            color: var(--navy);
            overflow-x: hidden;
            cursor: none;
        }

        * { cursor: none !important; }

        /* ── LOADER ── */
        #loader {
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: var(--navy);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 28px;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }

        #loader.done {
            opacity: 0;
            visibility: hidden;
        }

        .loader-logo {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 48px;
            letter-spacing: 4px;
            color: white;
        }

        .loader-logo span {
            color: var(--orange);
        }

        .loader-bar-wrap {
            width: 200px;
            height: 3px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 99px;
            overflow: hidden;
        }

        .loader-bar {
            height: 100%;
            background: var(--orange);
            border-radius: 99px;
            width: 0;
            animation: loadBar 1.6s ease forwards;
        }

        @keyframes loadBar {
            to {
                width: 100%;
            }
        }

        .loader-text {
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.35);
        }

        /* ── SCROLL PROGRESS ── */
        #sbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--orange);
            z-index: 200;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.1s linear;
        }

        /* ── CUSTOM CURSOR ── */
        .cursor {
            position: fixed;
            pointer-events: none;
            z-index: 999;
            width: 10px;
            height: 10px;
            background: var(--orange);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: transform 0.08s, width 0.2s, height 0.2s, opacity 0.2s;
            mix-blend-mode: multiply;
        }

        .cursor-ring {
            position: fixed;
            pointer-events: none;
            z-index: 998;
            width: 36px;
            height: 36px;
            border: 1.5px solid var(--orange);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: transform 0.18s, width 0.2s, height 0.2s, opacity 0.2s;
            opacity: 0.5;
        }

        body:hover .cursor {
            opacity: 1;
        }

        /* ── NAVBAR ── */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 500;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5vw;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(20px) saturate(160%);
            border-bottom: 1px solid transparent;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        nav.scrolled {
            border-color: var(--rule);
            box-shadow: var(--sh);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-emblem {
            position: relative;
            width: 44px;
            height: 44px;
        }

        .logo-emblem svg {
            width: 44px;
            height: 44px;
        }

        .logo-wordmark {
            line-height: 1.1;
        }

        .logo-nm {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 21px;
            letter-spacing: 1.5px;
            color: var(--navy);
        }

        .logo-tag {
            font-size: 8.5px;
            font-weight: 600;
            letter-spacing: 1.8px;
            text-transform: uppercase;
            color: var(--silver);
        }

        .nav-center {
            display: flex;
            gap: 0;
            list-style: none;
        }

        .nav-center a {
            display: block;
            padding: 8px 18px;
            font-size: 12.5px;
            font-weight: 600;
            letter-spacing: 0.4px;
            text-transform: uppercase;
            color: var(--slate);
            text-decoration: none;
            border-radius: 6px;
            transition: color 0.2s, background 0.2s;
            position: relative;
        }

        .nav-center a::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 18px;
            right: 18px;
            height: 2px;
            background: var(--orange);
            border-radius: 1px;
            transform: scaleX(0);
            transition: transform 0.22s;
        }

        .nav-center a:hover {
            color: var(--navy);
        }

        .nav-center a:hover::after {
            transform: scaleX(1);
        }

        .nav-right {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .btn-quote {
            background: var(--orange);
            color: white;
            padding: 10px 22px;
            border-radius: var(--radius);
            font-size: 12.5px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            box-shadow: 0 6px 20px rgba(232, 82, 10, 0.32);
            transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
        }

        .btn-quote:hover {
            background: var(--orange-lt);
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(232, 82, 10, 0.42);
        }

        /* mobile nav toggle */
        .nav-burger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 6px;
        }

        .nav-burger span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--navy);
            border-radius: 2px;
            transition: all 0.3s;
        }

        .nav-burger.open span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .nav-burger.open span:nth-child(2) {
            opacity: 0;
        }

        .nav-burger.open span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            z-index: 499;
            background: white;
            border-bottom: 1px solid var(--rule);
            padding: 20px 5vw 28px;
            box-shadow: var(--sh-lg);
            flex-direction: column;
            gap: 4px;
        }

        .mobile-menu.open {
            display: flex;
        }

        .mobile-menu a {
            display: block;
            padding: 12px 14px;
            font-size: 14px;
            font-weight: 600;
            color: var(--slate);
            text-decoration: none;
            border-radius: 8px;
            transition: background 0.15s, color 0.15s;
        }

        .mobile-menu a:hover {
            background: var(--mist);
            color: var(--navy);
        }

        .mobile-menu .mm-cta {
            background: var(--orange);
            color: white;
            text-align: center;
            margin-top: 10px;
        }

        /* ── FLOATING QUOTE BUTTON ── */
        .float-cta {
            position: fixed;
            bottom: 32px;
            right: 32px;
            z-index: 400;
            background: var(--orange);
            color: white;
            border-radius: 50px;
            padding: 14px 24px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 12px 36px rgba(232, 82, 10, 0.45);
            transform: translateY(80px);
            opacity: 0;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.4s ease,
                background 0.2s,
                box-shadow 0.2s;
        }

        .float-cta.show {
            transform: translateY(0);
            opacity: 1;
        }

        .float-cta:hover {
            background: var(--orange-lt);
            box-shadow: 0 16px 48px rgba(232, 82, 10, 0.55);
        }

        .float-icon {
            font-size: 16px;
            animation: truckMove 2s ease-in-out infinite;
        }

        @keyframes truckMove {

            0%,
            100% {
                transform: translateX(0);
            }

            50% {
                transform: translateX(4px);
            }
        }

        /* ── SECTION COMMONS ── */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: none;
        }

        .d1 {
            transition-delay: 0.08s;
        }

        .d2 {
            transition-delay: 0.16s;
        }

        .d3 {
            transition-delay: 0.24s;
        }

        .d4 {
            transition-delay: 0.32s;
        }

        .d5 {
            transition-delay: 0.40s;
        }

        .d6 {
            transition-delay: 0.48s;
        }

        .tag {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            background: var(--orange-pale);
            border: 1px solid rgba(232, 82, 10, 0.18);
            border-radius: 99px;
            padding: 5px 14px;
            font-size: 10.5px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.8px;
            color: var(--orange);
        }

        .tag-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--orange);
            animation: blink 2s infinite;
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.3;
            }
        }

        h2.big {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(44px, 5.5vw, 76px);
            line-height: 0.93;
            letter-spacing: 0.5px;
            color: var(--navy);
        }

        h2.big .o {
            color: var(--orange);
        }

        h2.big .i {
            font-family: 'DM Serif Display', serif;
            font-style: italic;
            color: var(--orange);
        }

        .body-txt {
            font-size: 15.5px;
            line-height: 1.82;
            color: var(--slate);
            font-weight: 300;
        }

        .rule-accent {
            width: 36px;
            height: 3px;
            background: var(--orange);
            border-radius: 2px;
        }

        /* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
        #hero {
            min-height: 100vh;
            background: var(--mist);
            position: relative;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1fr;
            padding-top: 72px;
        }

        /* animated road-line background */
        .road-lines {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .road-lines::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(-60deg,
                    transparent, transparent 80px,
                    rgba(232, 82, 10, 0.025) 80px, rgba(232, 82, 10, 0.025) 81px);
        }

        .road-lines::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 20% 50%, rgba(232, 82, 10, 0.05) 0%, transparent 55%);
        }

        .hero-l {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 80px 5vw 80px 8vw;
            position: relative;
            z-index: 2;
        }

        .hero-l .tag {
            margin-bottom: 32px;
            align-self: flex-start;
        }

        .hero-l h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(72px, 9vw, 120px);
            line-height: 0.88;
            color: var(--navy);
            margin-bottom: 10px;
        }

        .hero-l h1 .accent-o {
            color: var(--orange);
        }

        .hero-l h1 .accent-i {
            font-family: 'DM Serif Display', serif;
            font-style: italic;
        }

        .hero-tagline {
            font-size: 17px;
            line-height: 1.72;
            color: var(--slate);
            font-weight: 300;
            max-width: 430px;
            margin: 28px 0 44px;
        }

        .hero-btns {
            display: flex;
            gap: 14px;
            align-items: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--orange);
            color: white;
            padding: 15px 34px;
            border-radius: var(--radius);
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.9px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 9px;
            box-shadow: 0 8px 26px rgba(232, 82, 10, 0.34);
            transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
        }

        .btn-primary:hover {
            background: var(--orange-lt);
            transform: translateY(-2px);
            box-shadow: 0 14px 36px rgba(232, 82, 10, 0.44);
        }

        .btn-outline {
            color: var(--navy);
            border: 1.5px solid var(--rule);
            background: white;
            padding: 14px 28px;
            border-radius: var(--radius);
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.9px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: border-color 0.2s, color 0.2s, transform 0.15s;
        }

        .btn-outline:hover {
            border-color: var(--orange);
            color: var(--orange);
            transform: translateY(-1px);
        }

        .hero-kpis {
            margin-top: 60px;
            padding-top: 44px;
            border-top: 1px solid var(--rule);
            display: flex;
            gap: 44px;
            flex-wrap: wrap;
        }

        .kpi-num {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 48px;
            line-height: 1;
            color: var(--navy);
        }

        .kpi-num span {
            color: var(--orange);
        }

        .kpi-lbl {
            font-size: 10.5px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--silver);
            margin-top: 5px;
        }

        /* hero right — stacked image collage */
        .hero-r {
            position: relative;
            overflow: hidden;
            clip-path: polygon(6% 0%, 100% 0%, 100% 100%, 0% 100%);
        }

        .hero-img-bg {
            position: absolute;
            inset: 0;
            background: url('/img/ngj_bg.jpg') center/cover no-repeat;
        }

        .hero-img-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, rgba(15, 30, 51, 0.40) 0%, transparent 55%);
        }

        /* floating cards on hero */
        .hero-card {
            position: absolute;
            z-index: 5;
            background: white;
            border-radius: var(--radius-lg);
            padding: 18px 22px;
            box-shadow: var(--sh-xl);
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .hero-card.c1 {
            bottom: 100px;
            left: -16px;
            animation: hfloat 4s ease-in-out infinite;
        }

        .hero-card.c2 {
            top: 140px;
            left: -8px;
            animation: hfloat 4s 1.5s ease-in-out infinite;
        }

        @keyframes hfloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .hc-icon {
            width: 46px;
            height: 46px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .hc-icon.o {
            background: var(--orange-pale);
        }

        .hc-icon.b {
            background: rgba(15, 30, 51, 0.07);
        }

        .hc-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 26px;
            line-height: 1;
            color: var(--navy);
        }

        .hc-sub {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: var(--silver);
            margin-top: 3px;
        }

        .hero-stamp {
            position: absolute;
            top: 50%;
            right: 5%;
            transform: translateY(-50%);
            width: 100px;
            height: 100px;
            z-index: 5;
        }

        .hero-stamp svg {
            width: 100%;
            height: 100%;
            animation: spin 18s linear infinite;
        }

        /* ── MARQUEE ── */
        .marquee-band {
            background: var(--navy);
            overflow: hidden;
            white-space: nowrap;
            padding: 15px 0;
        }

        .marquee-inner {
            display: inline-flex;
            animation: roll 28s linear infinite;
        }

        @keyframes roll {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        .m-item {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 0 36px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.4);
        }

        .m-dot {
            color: var(--orange);
            font-size: 14px;
        }

        /* ═══════════════════════════════════
   ABOUT
═══════════════════════════════════ */
        #about {
            padding: 110px 8vw;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 90px;
            align-items: center;
        }

        .about-mosaic {
            position: relative;
            height: 560px;
        }

        .am-1,
        .am-2,
        .am-3 {
            position: absolute;
            border-radius: var(--radius-lg);
            background-size: cover;
            background-position: center;
            box-shadow: var(--sh-lg);
        }

        .am-1 {
            top: 0;
            left: 0;
            right: 80px;
            bottom: 80px;
            background-image: url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=700&q=80');
        }

        .am-2 {
            bottom: 0;
            right: 0;
            width: 52%;
            height: 52%;
            background-image: url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=500&q=80');
            border: 5px solid white;
        }

        .am-3 {
            top: 50%;
            right: 0;
            transform: translateY(-160%);
            width: 30%;
            height: 22%;
            background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=400&q=80');
            border: 5px solid white;
        }

        .am-badge {
            position: absolute;
            top: 20px;
            right: 64px;
            background: var(--orange);
            color: white;
            border-radius: var(--radius);
            padding: 18px 22px;
            text-align: center;
            box-shadow: 0 10px 28px rgba(232, 82, 10, 0.38);
            z-index: 2;
        }

        .am-badge .yr {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 40px;
            line-height: 1;
        }

        .am-badge .lbl {
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            opacity: 0.75;
        }

        .about-r>*+* {
            margin-top: 24px;
        }

        .about-pills {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-top: 36px;
        }

        .pill {
            background: var(--mist);
            border: 1px solid var(--rule);
            border-radius: var(--radius);
            padding: 18px;
            display: flex;
            gap: 13px;
            align-items: flex-start;
            transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
        }

        .pill:hover {
            border-color: rgba(232, 82, 10, 0.3);
            box-shadow: 0 6px 24px rgba(232, 82, 10, 0.08);
            transform: translateY(-2px);
        }

        .pill-icon {
            width: 38px;
            height: 38px;
            flex-shrink: 0;
            border-radius: 8px;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            box-shadow: var(--sh);
        }

        .pill-hd {
            font-size: 13px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 3px;
        }

        .pill-bd {
            font-size: 11.5px;
            color: var(--silver);
            line-height: 1.5;
        }

        /* ═══════════════════════════════════
   STATS COUNTER STRIP
═══════════════════════════════════ */
        #stats-strip {
            background: var(--orange);
            padding: 64px 8vw;
        }

        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
        }

        .stat-item {
            text-align: center;
            border-right: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0 32px;
        }

        .stat-item:last-child {
            border-right: none;
        }

        .stat-n {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 68px;
            line-height: 1;
            color: white;
        }

        .stat-suf {
            font-size: 40px;
            opacity: 0.7;
        }

        .stat-l {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.65);
            margin-top: 8px;
        }

        /* ═══════════════════════════════════
   VISION MISSION VALUES
═══════════════════════════════════ */
        #vmv {
            background: var(--navy);
            padding: 110px 8vw;
            position: relative;
            overflow: hidden;
        }

        #vmv::before {
            content: '';
            position: absolute;
            top: -150px;
            right: -150px;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(232, 82, 10, 0.10) 0%, transparent 65%);
            pointer-events: none;
        }

        #vmv::after {
            content: 'NG&J';
            position: absolute;
            bottom: -40px;
            left: 6vw;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 280px;
            line-height: 1;
            color: rgba(255, 255, 255, 0.025);
            pointer-events: none;
            letter-spacing: 10px;
        }

        .vmv-top {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 64px;
        }

        .vmv-top-r .body-txt {
            color: rgba(255, 255, 255, 0.55);
            max-width: 560px;
        }

        .vmv-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-lg);
            overflow: hidden;
        }

        .vc {
            background: rgba(255, 255, 255, 0.04);
            padding: 44px 36px;
            position: relative;
            overflow: hidden;
            transition: background 0.3s;
        }

        .vc:hover {
            background: rgba(255, 255, 255, 0.07);
        }

        .vc-ghost {
            position: absolute;
            top: 10px;
            right: 16px;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 88px;
            line-height: 1;
            color: rgba(255, 255, 255, 0.04);
            pointer-events: none;
        }

        .vc-emoji {
            font-size: 38px;
            margin-bottom: 22px;
            display: block;
        }

        .vc-ttl {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 26px;
            letter-spacing: 1px;
            color: white;
            margin-bottom: 14px;
        }

        .vc-body {
            font-size: 13.5px;
            line-height: 1.82;
            color: rgba(255, 255, 255, 0.55);
            font-weight: 300;
        }

        .values-ticker {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 52px;
        }

        .vtag {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 99px;
            padding: 10px 20px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.4px;
            color: rgba(255, 255, 255, 0.7);
            transition: background 0.2s, border-color 0.2s;
        }

        .vtag:hover {
            background: var(--orange-mid);
            border-color: rgba(232, 82, 10, 0.4);
            color: white;
        }

        .vtag-icon {
            font-size: 15px;
        }

        /* ═══════════════════════════════════
   SERVICES
═══════════════════════════════════ */
        #services {
            padding: 110px 8vw;
            background: var(--mist);
        }

        .svc-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: flex-end;
            margin-bottom: 60px;
        }

        /* Filter tabs */
        .svc-tabs {
            display: flex;
            gap: 8px;
            margin-bottom: 36px;
            flex-wrap: wrap;
        }

        .stab {
            padding: 8px 18px;
            border-radius: 99px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            border: 1.5px solid var(--rule);
            background: white;
            color: var(--slate);
            cursor: pointer;
            transition: all 0.2s;
        }

        .stab.active,
        .stab:hover {
            background: var(--orange);
            border-color: var(--orange);
            color: white;
        }

        .svc-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .sc {
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--sh);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .sc:hover {
            transform: translateY(-8px);
            box-shadow: var(--sh-xl);
        }

        .sc.wide {
            grid-column: span 2;
        }

        .sc-img {
            height: 200px;
            flex-shrink: 0;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .sc.wide .sc-img {
            height: 260px;
        }

        .sc-img::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(15, 30, 51, 0.65) 0%, transparent 55%);
        }

        .sc-chip {
            position: absolute;
            top: 14px;
            left: 14px;
            z-index: 1;
            background: var(--orange);
            color: white;
            border-radius: 99px;
            padding: 4px 12px;
            font-size: 9.5px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .sc-body {
            padding: 24px 26px 28px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .sc-ttl {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 22px;
            letter-spacing: 0.5px;
            color: var(--navy);
            margin-bottom: 9px;
        }

        .sc-desc {
            font-size: 13px;
            line-height: 1.72;
            color: var(--slate);
            font-weight: 300;
            flex: 1;
        }

        .sc-link {
            margin-top: 18px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 11.5px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--orange);
            text-decoration: none;
            transition: gap 0.2s;
        }

        .sc:hover .sc-link {
            gap: 12px;
        }

        /* ═══════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════ */
        #process {
            padding: 110px 8vw;
            background: white;
            position: relative;
            overflow: hidden;
        }

        #process::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--rule);
        }

        .proc-header {
            max-width: 580px;
            margin-bottom: 72px;
        }

        .proc-track {
            position: relative;
        }

        .proc-line {
            position: absolute;
            top: 36px;
            left: 36px;
            right: 36px;
            height: 2px;
            background: var(--rule);
            z-index: 0;
        }

        .proc-line-fill {
            height: 100%;
            background: var(--orange);
            width: 0;
            transition: width 1.4s ease;
            border-radius: 1px;
        }

        .proc-steps {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            position: relative;
            z-index: 1;
        }

        .ps {
            text-align: center;
            padding: 0 8px;
        }

        .ps-circle {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: white;
            border: 2px solid var(--rule);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            margin: 0 auto 22px;
            transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
            position: relative;
            z-index: 2;
        }

        .ps.active .ps-circle {
            border-color: var(--orange);
            box-shadow: 0 0 0 6px rgba(232, 82, 10, 0.1);
            transform: scale(1.1);
        }

        .ps-n {
            position: absolute;
            top: -8px;
            right: -8px;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: var(--orange);
            color: white;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 13px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ps-ttl {
            font-size: 13px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 7px;
        }

        .ps-desc {
            font-size: 12px;
            line-height: 1.6;
            color: var(--silver);
        }

        /* ═══════════════════════════════════
   QUOTE CALCULATOR
═══════════════════════════════════ */
        #calculator {
            padding: 100px 8vw;
            background: var(--navy);
            position: relative;
            overflow: hidden;
        }

        #calculator::after {
            content: '';
            position: absolute;
            bottom: -80px;
            right: -80px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(232, 82, 10, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }

        .calc-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .calc-l .body-txt {
            color: rgba(255, 255, 255, 0.5);
            margin-top: 20px;
        }

        .calc-form {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-lg);
            padding: 40px;
        }

        .calc-form-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 28px;
            color: white;
            margin-bottom: 28px;
            letter-spacing: 0.5px;
        }

        .cf-group {
            margin-bottom: 18px;
        }

        .cf-group label {
            display: block;
            font-size: 10.5px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 9px;
        }

        .cf-group input,
        .cf-group select {
            width: 100%;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 8px;
            padding: 13px 16px;
            font-family: 'Sora', sans-serif;
            font-size: 14px;
            color: white;
            outline: none;
            transition: border-color 0.2s, background 0.2s;
            -webkit-appearance: none;
        }

        .cf-group input::placeholder {
            color: rgba(255, 255, 255, 0.25);
        }

        .cf-group input:focus,
        .cf-group select:focus {
            border-color: var(--orange);
            background: rgba(255, 255, 255, 0.09);
        }

        .cf-group select option {
            background: var(--navy-mid);
            color: white;
        }

        .cf-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .calc-output {
            background: rgba(232, 82, 10, 0.12);
            border: 1px solid rgba(232, 82, 10, 0.3);
            border-radius: 10px;
            padding: 22px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 22px;
            margin-bottom: 18px;
            display: none;
        }

        .calc-output.show {
            display: flex;
        }

        .co-lbl {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: rgba(255, 255, 255, 0.5);
        }

        .co-price {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 42px;
            color: var(--orange);
            line-height: 1;
        }

        .co-note {
            font-size: 10px;
            color: rgba(255, 255, 255, 0.3);
            margin-top: 3px;
        }

        .btn-calc {
            width: 100%;
            background: var(--orange);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-family: 'Sora', sans-serif;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
        }

        .btn-calc:hover {
            background: var(--orange-lt);
            transform: translateY(-1px);
        }

        /* ═══════════════════════════════════
   TEAM
═══════════════════════════════════ */
        #team {
            padding: 110px 8vw;
            background: var(--mist);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 18px;
            margin-top: 56px;
        }

        .tc {
            background: white;
            border-radius: var(--radius-lg);
            padding: 30px 18px 24px;
            text-align: center;
            border: 1.5px solid var(--rule);
            transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
            position: relative;
            overflow: hidden;
        }

        .tc::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--orange);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s;
        }

        .tc:hover {
            border-color: rgba(232, 82, 10, 0.25);
            box-shadow: 0 10px 36px rgba(232, 82, 10, 0.10);
            transform: translateY(-5px);
        }

        .tc:hover::before {
            transform: scaleX(1);
        }

        .tc-av {
            width: 76px;
            height: 76px;
            border-radius: 50%;
            margin: 0 auto 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 26px;
            color: white;
            position: relative;
        }

        .tc-av::after {
            content: '';
            position: absolute;
            bottom: 1px;
            right: 1px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--orange);
            border: 2.5px solid white;
        }

        .tc-nm {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 16.5px;
            letter-spacing: 0.5px;
            color: var(--navy);
            margin-bottom: 4px;
        }

        .tc-role {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            color: var(--orange);
            margin-bottom: 13px;
        }

        .tc-bio {
            font-size: 11.5px;
            line-height: 1.65;
            color: var(--silver);
            font-weight: 300;
        }

        /* ═══════════════════════════════════
   NETWORK / WHY CHOOSE US
═══════════════════════════════════ */
        #network {
            padding: 110px 8vw;
            background: white;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .network-img-block {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            height: 540px;
        }

        .network-img-block>.nb-bg {
            position: absolute;
            inset: 0;
            background: url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?w=800&q=80') center/cover;
        }

        .network-img-block::after {
            content: 'SHERQ';
            position: absolute;
            bottom: -10px;
            right: -8px;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 130px;
            line-height: 1;
            color: rgba(232, 82, 10, 0.10);
            pointer-events: none;
        }

        .why-list {
            margin-top: 40px;
        }

        .why-item {
            display: flex;
            gap: 20px;
            padding: 22px 0;
            border-bottom: 1px solid var(--rule);
            align-items: flex-start;
            transition: padding-left 0.25s;
        }

        .why-item:hover {
            padding-left: 8px;
        }

        .why-item:last-child {
            border-bottom: none;
        }

        .wi-icon {
            width: 44px;
            height: 44px;
            flex-shrink: 0;
            background: var(--orange-pale);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 19px;
        }

        .wi-hd {
            font-size: 14px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 5px;
        }

        .wi-bd {
            font-size: 13px;
            line-height: 1.65;
            color: var(--slate);
            font-weight: 300;
        }

        /* ═══════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════ */
        #testimonials {
            padding: 110px 8vw;
            background: var(--mist);
            overflow: hidden;
        }

        .testi-track-wrap {
            position: relative;
            margin-top: 56px;
        }

        .testi-track {
            display: flex;
            gap: 24px;
            overflow: hidden;
            padding-bottom: 8px;
        }

        .tcard {
            min-width: 380px;
            max-width: 380px;
            background: white;
            border-radius: var(--radius-lg);
            padding: 36px 32px;
            box-shadow: var(--sh);
            border: 1.5px solid var(--rule);
            position: relative;
            flex-shrink: 0;
            transition: box-shadow 0.3s;
        }

        .tcard:hover {
            box-shadow: var(--sh-lg);
        }

        .tcard-quote {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 72px;
            line-height: 0.8;
            color: var(--orange-pale);
            margin-bottom: -12px;
        }

        .tcard-text {
            font-size: 14.5px;
            line-height: 1.8;
            color: var(--slate);
            font-style: italic;
            font-weight: 300;
            margin-bottom: 28px;
        }

        .tcard-author {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .ta-av {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 16px;
            color: white;
            flex-shrink: 0;
        }

        .ta-name {
            font-size: 13px;
            font-weight: 700;
            color: var(--navy);
        }

        .ta-co {
            font-size: 11px;
            color: var(--silver);
            font-weight: 500;
            margin-top: 2px;
        }

        .stars {
            color: var(--orange);
            font-size: 13px;
            margin-bottom: 4px;
        }

        .testi-arrows {
            display: flex;
            gap: 10px;
            margin-top: 36px;
        }

        .ta-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 1.5px solid var(--rule);
            background: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: all 0.2s;
        }

        .ta-btn:hover {
            border-color: var(--orange);
            background: var(--orange);
            color: white;
        }

        /* ═══════════════════════════════════
   CONTACT + FORM
═══════════════════════════════════ */
        #contact {
            padding: 110px 8vw;
            background: var(--navy);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
            position: relative;
            overflow: hidden;
        }

        #contact::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            width: 40%;
            background: rgba(232, 82, 10, 0.04);
            clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
            pointer-events: none;
        }

        .contact-l .body-txt {
            color: rgba(255, 255, 255, 0.5);
            max-width: 420px;
            margin-top: 20px;
        }

        .contact-deets {
            margin-top: 44px;
        }

        .cd-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            padding: 18px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        }

        .cd-item:last-child {
            border-bottom: none;
        }

        .cd-icon {
            width: 44px;
            height: 44px;
            flex-shrink: 0;
            background: rgba(232, 82, 10, 0.14);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .cd-l {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 5px;
        }

        .cd-v {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.6;
        }

        .contact-form-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-lg);
            padding: 44px;
        }

        .cfc-ttl {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 34px;
            letter-spacing: 0.5px;
            color: white;
            margin-bottom: 6px;
        }

        .cfc-sub {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 36px;
        }

        .fg {
            margin-bottom: 16px;
        }

        .fg label {
            display: block;
            font-size: 10.5px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 8px;
        }

        .fg input,
        .fg select,
        .fg textarea {
            width: 100%;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 8px;
            padding: 13px 16px;
            font-family: 'Sora', sans-serif;
            font-size: 14px;
            color: white;
            outline: none;
            transition: border-color 0.2s, background 0.2s;
            -webkit-appearance: none;
        }

        .fg input::placeholder,
        .fg textarea::placeholder {
            color: rgba(255, 255, 255, 0.25);
        }

        .fg input:focus,
        .fg select:focus,
        .fg textarea:focus {
            border-color: var(--orange);
            background: rgba(255, 255, 255, 0.09);
        }

        .fg select option {
            background: var(--navy-mid);
            color: white;
        }

        .fg textarea {
            resize: vertical;
            min-height: 110px;
        }

        .fg-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .btn-send {
            width: 100%;
            background: var(--orange);
            color: white;
            border: none;
            padding: 16px;
            border-radius: 8px;
            font-family: 'Sora', sans-serif;
            font-size: 13.5px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            margin-top: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: background 0.2s, transform 0.15s;
        }

        .btn-send:hover {
            background: var(--orange-lt);
            transform: translateY(-1px);
        }

        /* success message */
        .success-msg {
            display: none;
            text-align: center;
            padding: 32px;
            color: white;
        }

        .success-msg .sm-icon {
            font-size: 48px;
            margin-bottom: 12px;
        }

        .success-msg h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 28px;
            margin-bottom: 8px;
        }

        .success-msg p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
        }

        /* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
        footer {
            background: #07111F;
            padding: 60px 8vw 36px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            padding-bottom: 48px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        }

        .ft-brand {}

        .ft-brand .logo-nm {
            color: white;
        }

        .ft-brand .logo-tag {
            color: rgba(255, 255, 255, 0.3);
        }

        .ft-desc {
            font-size: 13px;
            line-height: 1.75;
            color: rgba(255, 255, 255, 0.35);
            margin: 18px 0 24px;
            max-width: 280px;
        }

        .ft-social {
            display: flex;
            gap: 10px;
        }

        .social-btn {
            width: 38px;
            height: 38px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            text-decoration: none;
            color: rgba(255, 255, 255, 0.5);
            transition: background 0.2s, color 0.2s;
        }

        .social-btn:hover {
            background: var(--orange);
            color: white;
        }

        .ft-col-ttl {
            font-size: 10.5px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.25);
            margin-bottom: 18px;
        }

        .ft-col ul {
            list-style: none;
        }

        .ft-col ul li {
            margin-bottom: 10px;
        }

        .ft-col ul li a {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.45);
            text-decoration: none;
            transition: color 0.2s;
        }

        .ft-col ul li a:hover {
            color: white;
        }

        .footer-bot {
            padding-top: 28px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 14px;
        }

        .fb-copy {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.22);
        }

        .fb-links {
            display: flex;
            gap: 20px;
        }

        .fb-links a {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.25);
            text-decoration: none;
            transition: color 0.2s;
        }

        .fb-links a:hover {
            color: rgba(255, 255, 255, 0.6);
        }

        /* ── BACK TO TOP ── */
        #btt {
            position: fixed;
            bottom: 96px;
            right: 34px;
            z-index: 300;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: white;
            border: 1.5px solid var(--rule);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            text-decoration: none;
            color: var(--navy);
            box-shadow: var(--sh);
            opacity: 0;
            pointer-events: none;
            transform: translateY(10px);
            transition: opacity 0.3s, transform 0.3s, background 0.2s, color 0.2s;
        }

        #btt.show {
            opacity: 1;
            pointer-events: all;
            transform: translateY(0);
        }

        #btt:hover {
            background: var(--navy);
            color: white;
        }

        /* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
        @media (max-width: 1100px) {
            .team-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .stats-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

            .stat-item {
                border-right: none;
                padding: 16px 0;
            }

            .proc-steps {
                grid-template-columns: repeat(3, 1fr);
            }

            .proc-line {
                display: none;
            }

            .svc-grid {
                grid-template-columns: 1fr 1fr;
            }

            .sc.wide {
                grid-column: span 2;
            }

            .footer-top {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 900px) {
            #hero {
                grid-template-columns: 1fr;
            }

            .hero-r {
                height: 55vw;
                clip-path: none;
            }

            #about {
                grid-template-columns: 1fr;
            }

            .about-mosaic {
                height: 380px;
            }

            .vmv-top {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .vmv-cards {
                grid-template-columns: 1fr;
            }

            .svc-header {
                grid-template-columns: 1fr;
            }

            .calc-wrap {
                grid-template-columns: 1fr;
            }

            #network {
                grid-template-columns: 1fr;
            }

            .network-img-block {
                height: 340px;
            }

            #contact {
                grid-template-columns: 1fr;
            }

            .tcard {
                min-width: 300px;
                max-width: 300px;
            }
        }

        @media (max-width: 700px) {

            .nav-center,
            .nav-right {
                display: none;
            }

            .nav-burger {
                display: flex;
            }

            .team-grid {
                grid-template-columns: 1fr 1fr;
            }

            .svc-grid {
                grid-template-columns: 1fr;
            }

            .sc.wide {
                grid-column: span 1;
            }

            .proc-steps {
                grid-template-columns: 1fr 1fr;
            }

            .fg-row {
                grid-template-columns: 1fr;
            }

            .cf-row {
                grid-template-columns: 1fr;
            }

            .footer-top {
                grid-template-columns: 1fr;
            }

            .hero-kpis {
                gap: 28px;
            }

            .float-cta .cta-label {
                display: none;
            }

            .float-cta {
                padding: 14px 16px;
                border-radius: 50%;
            }

            #btt {
                bottom: 90px;
            }
        }

        /* ═══════════════════════════════════
   UICONS — THIN ROUNDED COLORS
   Replaces emoji icons with Flaticon icon font
═══════════════════════════════════ */
        .hc-icon.o i[class^="fi-tr-"],
        .hc-icon.o i[class*=" fi-tr-"] {
            color: var(--orange);
            font-size: 20px;
        }

        .hc-icon.b i[class^="fi-tr-"],
        .hc-icon.b i[class*=" fi-tr-"] {
            color: var(--navy);
            font-size: 20px;
        }

        .pill-icon i[class^="fi-tr-"],
        .pill-icon i[class*=" fi-tr-"] {
            color: var(--orange);
            font-size: 17px;
        }

        .vc-emoji i[class^="fi-tr-"],
        .vc-emoji i[class*=" fi-tr-"] {
            color: var(--orange);
            font-size: 38px;
            display: block;
            line-height: 1;
        }

        .vtag-icon i[class^="fi-tr-"],
        .vtag-icon i[class*=" fi-tr-"] {
            color: var(--orange);
            font-size: 14px;
        }

        .ps-circle i[class^="fi-tr-"],
        .ps-circle i[class*=" fi-tr-"] {
            color: var(--navy);
            font-size: 26px;
        }

        .ps.active .ps-circle i[class^="fi-tr-"],
        .ps.active .ps-circle i[class*=" fi-tr-"] {
            color: var(--orange);
        }

        .wi-icon i[class^="fi-tr-"],
        .wi-icon i[class*=" fi-tr-"] {
            color: var(--orange);
            font-size: 19px;
        }

        .cd-icon i[class^="fi-tr-"],
        .cd-icon i[class*=" fi-tr-"] {
            color: var(--orange);
            font-size: 18px;
        }

        .sm-icon i[class^="fi-tr-"],
        .sm-icon i[class*=" fi-tr-"] {
            color: var(--orange);
            font-size: 48px;
            display: block;
            line-height: 1;
        }

        .float-icon i[class^="fi-tr-"],
        .float-icon i[class*=" fi-tr-"] {
            font-size: 16px;
            color: white;
        }

        /* calculator inline icon boxes */
        div[style*="rgba(232,82,10,0.15)"] i[class^="fi-tr-"],
        div[style*="rgba(232,82,10,0.15)"] i[class*=" fi-tr-"] {
            color: var(--orange);
            font-size: 16px;
        }
