/* ──────────────────────────────────────────
   TOKENS
────────────────────────────────────────── */
        :root {
            --r: #D42B2B;
            --rd: #A61E1E;
            --k: #111111;
            --km: #1C1C1C;
            --sv: #C0C0C0;
            --lt: #F5F5F5;
            --w: #FFFFFF;
            --ff-disp: "Barlow Condensed", sans-serif;
            --ff-ui: "Rajdhani", sans-serif;
            --ff-body: "DM Sans", sans-serif;
            --ease-out: cubic-bezier(.23, 1, .32, 1);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* width */
        ::-webkit-scrollbar {
            width: 10px;
        }

        /* Track */
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        /* Handle */
        ::-webkit-scrollbar-thumb {
            background: #D42B2B;
        }

        /* Handle on hover */
        ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--ff-body);
            background: #f4f4f4;
            color: #222;
            overflow-x: hidden;
        }

        /* Prevent horizontal overflow globally */
        html,
        body {
            overflow-x: hidden;
            max-width: 100%;
        }

        /* Fix any section that might overflow */
        section,
        footer,
        nav {
            max-width: 100%;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            display: block;
        }

        /* ──────────────────────────────────────────
   NAV  .nav-mm-
────────────────────────────────────────── */
        .nav-mm {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 80px;
            z-index: 9999;
            transition: height .35s var(--ease-out), box-shadow .35s;
            overflow: visible;
        }

        .nav-mm.nav-mm-scrolled {
            height: 74px;
            box-shadow: 0 6px 40px rgba(0, 0, 0, .55);
        }

        /* SPLIT – single element approach: steel base + red right layer */
        .nav-mm-bg {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .nav-mm-bg-steel {
            position: absolute;
            inset: 0;
            background: var(--k);
        }

        .nav-mm-bg-red {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            width: 72%;
            background: var(--r);
            clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%);
        }

        .nav-mm-inner {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            align-items: center;
            padding: 0 28px;
            gap: 0;
        }

        .nav-mm-brand {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            padding-right: 40px;
        }

        .nav-mm-brand img {
            height: 100px;
            width: auto;
            transition: height .35s;
            margin-top: 68px;
        }

        @media(max-width: 991px) {
            .nav-mm-brand img {
                height: 70px;
                /* ← normal size on mobile */
                margin-top: 0;
                /* ← remove the offset */
            }

            .nav-mm-scrolled .nav-mm-brand img{
                height: 70px !important;
            }

            .nav-mm-scrolled .nav-mm-brand img {
                height: 40px;
            }
        }

        .nav-mm-scrolled .nav-mm-brand img {
            height: 100px;
        }

        .nav-mm-links {
            display: flex;
            align-items: center;
            gap: 0;
            list-style: none;
            margin: 0 0 0 auto;
            /* ← change from margin: 0 */
            padding: 0;
            flex: 0 0 auto;
            /* ← change from flex: 1 */
        }

        .nav-mm-li {
            position: relative;
        }

        .nav-mm-a {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 10px 16px;
            color: rgba(255, 255, 255, .92);
            font-family: var(--ff-ui);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: .8px;
            text-transform: uppercase;
            white-space: nowrap;
            transition: all .22s;
            border-radius: 2px;
        }

        .nav-mm-a:hover {
            color: #fff;
            background: rgba(0, 0, 0, .2);
        }

        .nav-mm-caret {
            font-size: 9px;
            transition: transform .3s;
        }

        .nav-mm-li:hover .nav-mm-caret {
            transform: rotate(180deg);
        }

        .nav-mm-cta {
            background: var(--k) !important;
            border: 2px solid rgba(255, 255, 255, .25) !important;
            font-weight: 700 !important;
            margin-left: 8px;
            border-radius: 0 !important;
            clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
        }

        .nav-mm-cta:hover {
            border-color: #fff !important;
            background: #000 !important;
            color: #fff !important;
        }

        /* DROPDOWN */
        .nav-mm-drop {
            position: absolute;
            top: calc(100% + 12px);
            left: 0;
            min-width: 280px;
            background: var(--k);
            border-top: 3px solid var(--r);
            padding: 6px 0;
            box-shadow: 0 20px 60px rgba(0, 0, 0, .7);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: opacity .25s, transform .25s, visibility .25s;
            z-index: 9999;
        }

        .nav-mm-li:hover .nav-mm-drop {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-mm-drop-a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 22px;
            color: #888;
            font-family: var(--ff-ui);
            font-size: 13px;
            font-weight: 500;
            border-left: 3px solid transparent;
            transition: all .2s;
        }

        .nav-mm-drop-a:hover {
            color: #fff;
            background: rgba(212, 43, 43, .12);
            border-left-color: var(--r);
            padding-left: 28px;
        }

        .nav-mm-drop-dot {
            color: var(--r);
            font-size: 7px;
            flex-shrink: 0;
        }

        /* HAMBURGER */
        .nav-mm-ham {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
            padding: 8px;
            z-index: 3;
            margin-left: auto;
        }

        .nav-mm-ham-bar {
            width: 25px;
            height: 2px;
            background: #fff;
            transition: all .3s;
            display: block;
        }

        .nav-mm-ham.nav-mm-open .nav-mm-ham-bar:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .nav-mm-ham.nav-mm-open .nav-mm-ham-bar:nth-child(2) {
            opacity: 0;
            transform: translateX(-8px);
        }

        .nav-mm-ham.nav-mm-open .nav-mm-ham-bar:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* MOBILE PANEL */
        .nav-mm-panel {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: 300px;
            max-width: 85vw;
            background: var(--k);
            border-left: 3px solid var(--r);
            transform: translateX(100%);
            transition: transform .4s var(--ease-out);
            z-index: 9997;
            overflow-y: scroll;
            /* ← was 'auto', force scrollbar always visible */
            overflow-x: hidden;
            display: flex;
            /* ← add */
            flex-direction: column;
            /* ← add */
        }

        /* Custom scrollbar for the panel */
        .nav-mm-panel::-webkit-scrollbar {
            width: 4px;
        }

        .nav-mm-panel::-webkit-scrollbar-track {
            background: #1a1a1a;
        }

        .nav-mm-panel::-webkit-scrollbar-thumb {
            background: var(--r);
            border-radius: 2px;
        }

        .nav-mm-panel.nav-mm-panel-open {
            transform: translateX(0);
        }

        /* Overlay backdrop */
        .nav-mm-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 9996;
            opacity: 0;
            visibility: hidden;
            transition: opacity .4s, visibility .4s;
        }

        .nav-mm-overlay.nav-mm-overlay-show {
            opacity: 1;
            visibility: visible;
        }

        .nav-mm-mob-list {
            list-style: none;
            padding: 4px 0 40px;
            margin: 0;
        }

        .nav-mm-mob-li {}

        .nav-mm-mob-a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 28px;
            color: #bbb;
            font-family: var(--ff-ui);
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .8px;
            border-bottom: 1px solid rgba(255, 255, 255, .05);
            cursor: pointer;
            transition: color .2s, background .2s;
        }

        .nav-mm-mob-a:hover {
            color: #fff;
            background: rgba(212, 43, 43, .1);
        }

        .nav-mm-mob-sub {
            max-height: 0;
            overflow: hidden;
            background: rgba(0, 0, 0, .3);
            transition: max-height .35s ease;
        }

        .nav-mm-mob-sub.nav-mm-sub-open {
            max-height: 500px;
        }

        .nav-mm-mob-sub-a {
            display: block;
            padding: 10px 46px;
            color: #666;
            font-family: var(--ff-ui);
            font-size: 13px;
            font-weight: 500;
            border-bottom: 1px solid rgba(255, 255, 255, .03);
            transition: color .2s;
        }

        .nav-mm-mob-sub-a:hover {
            color: #fff;
        }

        .nav-mm-mob-list {
            list-style: none;
            padding: 8px 0 20px;
            margin: 0;
        }

        .nav-mm-mob-li {}

        .nav-mm-mob-a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 13px 28px;
            color: #bbb;
            font-family: var(--ff-ui);
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .8px;
            border-bottom: 1px solid rgba(255, 255, 255, .04);
            cursor: pointer;
            transition: color .2s, background .2s;
        }

        .nav-mm-mob-a:hover {
            color: #fff;
            background: rgba(212, 43, 43, .1);
        }

        .nav-mm-mob-sub {
            max-height: 0;
            overflow: hidden;
            background: rgba(0, 0, 0, .3);
            transition: max-height .35s ease;
        }

        .nav-mm-mob-sub.nav-mm-sub-open {
            max-height: 400px;
        }

        .nav-mm-mob-sub-a {
            display: block;
            padding: 9px 46px;
            color: #666;
            font-family: var(--ff-ui);
            font-size: 13px;
            font-weight: 500;
            border-bottom: 1px solid rgba(255, 255, 255, .03);
            transition: color .2s;
        }

        .nav-mm-mob-sub-a:hover {
            color: #fff;
        }

        @media(max-width:991px) {
            .nav-mm-links {
                display: none !important;
            }

            .nav-mm-ham {
                display: flex !important;
            }

            .nav-mm-bg-red {
                width: 55%;
            }
        }

        /* ──────────────────────────────────────────
   HERO  .bnr-mm-
────────────────────────────────────────── */
        .bnr-mm {
            margin-top: 72px;
        }

        @media(max-width: 991px) {
            .bnr-mm {
                margin-top: 72px;
                /* keep same, nav is normal height now */
            }
        }

        .bnr-mm-slide {
            height: 640px;
            position: relative;
            overflow: hidden;
        }

        .bnr-mm-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transform: scale(1.06);
            transition: transform 8s ease;
        }

        .carousel-item.active .bnr-mm-img {
            transform: scale(1);
        }

        .bnr-mm-overlay {
            position: absolute;
            inset: 0;
            /*background: linear-gradient(105deg, rgba(0, 0, 0, .88) 35%, rgba(0, 0, 0, .45) 70%, rgba(212, 43, 43, .15) 100%);*/
        }

        .bnr-mm-content {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
        }

        .bnr-mm-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--r);
            color: #fff;
            font-family: var(--ff-ui);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            padding: 5px 16px;
            margin-bottom: 20px;
        }

        .bnr-mm-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .6);
        }

        .bnr-mm-title {
            font-family: var(--ff-disp);
            font-size: 82px;
            font-weight: 900;
            color: #fff;
            text-transform: uppercase;
            line-height: .9;
            margin-bottom: 20px;
            letter-spacing: 0px;
        }

        .bnr-mm-acc {
            color: var(--r);
            display: block;
        }

        .bnr-mm-sub {
            color: rgba(255, 255, 255, .58);
            font-size: 16px;
            line-height: 1.75;
            max-width: 460px;
            margin-bottom: 34px;
        }

        .bnr-mm-btns {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .bnr-mm-btn-p {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            background: var(--r);
            color: #fff;
            font-family: var(--ff-ui);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 14px 34px;
            border: none;
            cursor: pointer;
            transition: all .3s;
            clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
        }

        .bnr-mm-btn-p:hover {
            background: var(--rd);
            color: #fff;
            transform: translateY(-3px);
        }

        .bnr-mm-btn-s {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            background: transparent;
            color: rgba(255, 255, 255, .8);
            font-family: var(--ff-ui);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 12px 30px;
            border: 2px solid rgba(255, 255, 255, .3);
            cursor: pointer;
            transition: all .3s;
            clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
        }

        .bnr-mm-btn-s:hover {
            border-color: #fff;
            color: #fff;
        }

        /* Slide decorative right panel */
        .bnr-mm-right {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }

        .bnr-mm-orbit {
            width: 320px;
            height: 320px;
            border-radius: 50%;
            border: 1px solid rgba(212, 43, 43, .25);
            position: relative;
            animation: bnr-spin 20s linear infinite;
        }

        .bnr-mm-orbit::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 50%;
            width: 16px;
            height: 16px;
            background: var(--r);
            border-radius: 50%;
            transform: translateX(-50%);
            box-shadow: 0 0 14px rgba(212, 43, 43, .9);
        }

        .bnr-mm-orbit2 {
            position: absolute;
            width: 210px;
            height: 210px;
            border-radius: 50%;
            border: 1px solid rgba(212, 43, 43, .12);
            animation: bnr-spin 14s linear infinite reverse;
        }

        .bnr-mm-orbit3 {
            position: absolute;
            width: 110px;
            height: 110px;
            border-radius: 50%;
            border: 2px solid rgba(212, 43, 43, .18);
            animation: bnr-spin 8s linear infinite;
        }

        .bnr-mm-orbit-icon {
            position: absolute;
            font-size: 52px;
            color: rgba(212, 43, 43, .1);
        }

        @keyframes bnr-spin {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 52px;
            height: 52px;
            top: 50%;
            transform: translateY(-50%);
            opacity: 1;
            background: var(--r);
        }

        .carousel-control-prev {
            left: 20px;
            clip-path: polygon(0 0, 75% 0, 100% 50%, 75% 100%, 0 100%);
        }

        .carousel-control-next {
            right: 20px;
            clip-path: polygon(25% 0, 100% 0, 100% 100%, 25% 100%, 0 50%);
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background: var(--rd);
        }

        .carousel-indicators button {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, .35);
            transition: all .35s;
            margin: 0 4px;
        }

        .carousel-indicators .active {
            width: 28px;
            border-radius: 4px;
            background: var(--r);
        }

        @media(max-width:991px) {
            .bnr-mm-slide {
                height: 520px;
            }

            .bnr-mm-title {
                font-size: 60px;
            }

            .bnr-mm-right {
                display: none;
            }
        }

        @media(max-width:767px) {
            .bnr-mm-slide {
                height: 440px;
            }

            .bnr-mm-title {
                font-size: 30px;
            }

            .bnr-mm-sub {
                font-size: 14px;
            }
        }

        @media(max-width:575px) {
            .bnr-mm-btns {
                flex-direction: column;
            }

            .bnr-mm-btn-p,
            .bnr-mm-btn-s {
                width: 100%;
                justify-content: center;
            }
        }

        /* ──────────────────────────────────────────
   STATS  .st-mm-
────────────────────────────────────────── */
        .st-mm {
            background: #0d0d0d;
            border-top: 3px solid var(--r);
            position: relative;
            overflow: hidden;
        }

        .st-mm::before {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(90deg, transparent, transparent 140px,
                    rgba(255, 255, 255, .012) 140px, rgba(255, 255, 255, .012) 141px);
        }

        .st-mm-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
        }

        .st-mm-item {
            padding: 40px 16px;
            text-align: center;
            border-right: 1px solid rgba(255, 255, 255, .06);
            position: relative;
            cursor: default;
            transition: background .35s;
        }

        .st-mm-item:last-child {
            border-right: none;
        }

        .st-mm-item:hover {
            background: rgba(212, 43, 43, .07);
        }

        .st-mm-icon-ring {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: rgba(212, 43, 43, .12);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            transition: all .35s;
        }

        .st-mm-item:hover .st-mm-icon-ring {
            background: var(--r);
        }

        .st-mm-icon-ring i {
            color: var(--r);
            font-size: 20px;
            transition: color .3s;
        }

        .st-mm-item:hover .st-mm-icon-ring i {
            color: #fff;
        }

        .st-mm-num {
            font-family: var(--ff-disp);
            font-size: 52px;
            font-weight: 900;
            color: #fff;
            line-height: 1;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2px;
        }

        .st-mm-suf {
            color: var(--r);
            font-size: 36px;
            font-weight: 900;
        }

        .st-mm-label {
            color: rgba(255, 255, 255, .38);
            font-family: var(--ff-ui);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2.5px;
            text-transform: uppercase;
        }

        .st-mm-bar {
            width: 24px;
            height: 2px;
            background: var(--r);
            margin: 10px auto 0;
            transition: width .4s;
        }

        .st-mm-item:hover .st-mm-bar {
            width: 44px;
        }

        @media(max-width:991px) {
            .st-mm-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .st-mm-item:nth-child(3) {
                border-right: none;
            }
        }

        @media(max-width:575px) {
            .st-mm-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .st-mm-item:nth-child(2),
            .st-mm-item:nth-child(4) {
                border-right: none;
            }
        }

        /* ──────────────────────────────────────────
   ABOUT  .ab-mm-
────────────────────────────────────────── */
        .ab-mm {
            padding: 110px 0;
            background: #fff;
            position: relative;
            overflow: hidden;
        }

        .ab-mm::after {
            content: 'MM';
            position: absolute;
            font-family: var(--ff-disp);
            font-size: 340px;
            font-weight: 900;
            color: rgba(0, 0, 0, .022);
            bottom: -60px;
            right: -30px;
            line-height: 1;
            pointer-events: none;
            letter-spacing: -10px;
        }

        .ab-mm-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--r);
            font-family: var(--ff-ui);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .ab-mm-tag::before {
            content: '';
            width: 30px;
            height: 2px;
            background: var(--r);
        }

        .ab-mm-disp {
            font-family: var(--ff-disp);
            font-size: 54px;
            font-weight: 900;
            color: var(--k);
            text-transform: uppercase;
            line-height: .98;
            margin-bottom: 22px;
        }

        .ab-mm-disp-acc {
            color: var(--r);
        }

        .ab-mm-lead {
            color: #555;
            font-size: 15px;
            line-height: 1.85;
            margin-bottom: 12px;
        }

        .ab-mm-checks {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin: 26px 0 32px;
        }

        .ab-mm-check {
            display: flex;
            align-items: center;
            gap: 13px;
            font-size: 14px;
            font-weight: 500;
            color: #333;
        }

        .ab-mm-chk-icon {
            width: 24px;
            height: 24px;
            background: var(--r);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .ab-mm-chk-icon i {
            color: #fff;
            font-size: 9px;
        }

        .ab-mm-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--r);
            color: #fff;
            font-family: var(--ff-ui);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 14px 34px;
            transition: all .3s;
            clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
        }

        .ab-mm-cta:hover {
            background: var(--rd);
            color: #fff;
            transform: translateY(-3px);
        }

        /* Visual */
        .ab-mm-visual {
            position: relative;
            margin-top: 40px;
        }

        .ab-mm-photo {
            width: 100%;
            height: 460px;
            object-fit: cover;
            filter: grayscale(20%);
            position: relative;
            z-index: 1;
        }

        .ab-mm-photo-frame {
            position: relative;
        }

        .ab-mm-photo-frame::before {
            content: '';
            position: absolute;
            top: 16px;
            left: 16px;
            right: -16px;
            bottom: -16px;
            background: var(--r);
            z-index: 0;
        }

        .ab-mm-badge {
            position: absolute;
            bottom: 0;
            left: -24px;
            width: 130px;
            height: 130px;
            background: var(--k);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 5;
            border-top: 4px solid var(--r);
        }

        .ab-mm-badge-num {
            font-family: var(--ff-disp);
            font-size: 50px;
            font-weight: 900;
            color: #fff;
            line-height: 1;
        }

        .ab-mm-badge-txt {
            font-family: var(--ff-ui);
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .6);
            text-align: center;
        }

        .ab-mm-info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-top: 36px;
        }

        .ab-mm-info-cell {
            background: #f7f7f7;
            padding: 14px 18px;
            border-left: 3px solid var(--r);
        }

        .ab-mm-info-lbl {
            font-family: var(--ff-ui);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #bbb;
            margin-bottom: 4px;
        }

        .ab-mm-info-val {
            font-family: var(--ff-ui);
            font-size: 14px;
            font-weight: 700;
            color: #222;
            word-break: break-word;
        }

        .ab-mm-info-val a {
            color: inherit;
        }

        .ab-mm-info-val a:hover {
            color: var(--r);
        }

        @media(max-width:991px) {
            .ab-mm-visual {
                margin-top: 60px;
            }

            .ab-mm-photo-frame::before {
                display: none;
            }
        }
        
        /* ──────────────────────────────────────────
   ABOUT  .ab-mm-
────────────────────────────────────────── */

.ab-mm{
    padding:110px 0;
    background:#fff;
    position:relative;
    overflow:hidden;
}

.ab-mm::after{
    content:'MM';
    position:absolute;
    font-size:340px;
    font-weight:900;
    color:rgba(0,0,0,.022);
    bottom:-60px;
    right:-30px;
    line-height:1;
    pointer-events:none;
}

/* Tag */

.ab-mm-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#d21c23;
    font-size:12px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:16px;
}

.ab-mm-tag::before{
    content:'';
    width:30px;
    height:2px;
    background:#d21c23;
}

/* Heading */

.ab-mm-disp{
    font-size:54px;
    font-weight:900;
    text-transform:uppercase;
    line-height:.98;
    margin-bottom:22px;
}

.ab-mm-disp-acc{
    color:#d21c23;
}

/* Text */

.ab-mm-lead{
    color:#555;
    font-size:15px;
    line-height:1.85;
    margin-bottom:14px;
}

/* FLOAT IMAGE WRAP */

.ab-mm-text-wrap::after{
    content:"";
    display:table;
    clear:both;
}

.ab-mm-float-visual{
    float:left;
    width:45%;
    margin:0 35px 20px 0;
}

/* Image Visual */

.ab-mm-visual{
    position:relative;
}

.ab-mm-photo{
    width:100%;
    height:420px;
    object-fit:cover;
    filter:grayscale(20%);
    position:relative;
    z-index:1;
}

.ab-mm-photo-frame{
    position:relative;
}

.ab-mm-photo-frame::before{
    content:'';
    position:absolute;
    top:16px;
    left:16px;
    right:-16px;
    bottom:-16px;
    background:#d21c23;
    z-index:0;
}

/* Badge */

.ab-mm-badge{
    position:absolute;
    bottom:0;
    left:-24px;
    width:130px;
    height:130px;
    background:#111;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    z-index:5;
    border-top:4px solid #d21c23;
}

.ab-mm-badge-num{
    font-size:50px;
    font-weight:900;
    color:#fff;
    line-height:1;
}

.ab-mm-badge-txt{
    font-size:10px;
    font-weight:600;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:rgba(255,255,255,.6);
    text-align:center;
}

/* Checklist */

.ab-mm-checks{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin:26px 0 32px;
}

.ab-mm-check{
    display:flex;
    align-items:center;
    gap:13px;
    font-size:14px;
    font-weight:500;
    color:#333;
}

.ab-mm-chk-icon{
    width:24px;
    height:24px;
    background:#d21c23;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.ab-mm-chk-icon i{
    color:#fff;
    font-size:9px;
}

/* CTA */

.ab-mm-cta{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#d21c23;
    color:#fff;
    font-size:14px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
    padding:14px 34px;
    transition:.3s;
    clip-path:polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}

.ab-mm-cta:hover{
    background:#a50f15;
    color:#fff;
    transform:translateY(-3px);
}

/* Mobile */

@media(max-width:768px){

.ab-mm-float-visual{
    float:none;
    width:100%;
    margin:0 0 25px 0;
}

.ab-mm-photo{
    height:300px;
}

}


        /* ──────────────────────────────────────────
   PRODUCTS  .pr-mm-
────────────────────────────────────────── */
        .pr-mm {
            padding: 110px 0;
            background: var(--lt);
            position: relative;
        }

        .pr-mm::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--r), transparent, var(--r));
        }

        .pr-mm-hd {
            text-align: center;
            margin-bottom: 56px;
        }

        .pr-mm-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--r);
            font-family: var(--ff-ui);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .pr-mm-tag::before,
        .pr-mm-tag::after {
            content: '';
            width: 22px;
            height: 2px;
            background: var(--r);
        }

        .pr-mm-disp {
            font-family: var(--ff-disp);
            font-size: 54px;
            font-weight: 900;
            color: var(--k);
            text-transform: uppercase;
            line-height: .98;
            margin-bottom: 12px;
        }

        .pr-mm-disp-acc {
            color: var(--r);
        }

        .pr-mm-sub {
            color: #777;
            font-size: 15px;
            line-height: 1.7;
            max-width: 520px;
            margin: 0 auto;
        }

        .pr-mm-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .pr-mm-card {
            background: #fff;
            overflow: hidden;
            transition: transform .4s var(--ease-out), box-shadow .4s;
        }

        .pr-mm-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 24px 56px rgba(212, 43, 43, .14);
        }

        .pr-mm-card-bar {
            height: 3px;
            background: rgba(200, 200, 200, .35);
            transition: background .4s;
        }

        .pr-mm-card:hover .pr-mm-card-bar {
            background: var(--r);
        }

        .pr-mm-card-img {
            height: 300px;
            position: relative;
            overflow: hidden;
        }

        .pr-mm-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s ease;
        }

        .pr-mm-card:hover .pr-mm-card-img img {
            transform: scale(1.08);
        }

        .pr-mm-card-img-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(0, 0, 0, .6) -20%, rgba(0, 0, 0, .1) 10%, transparent 25%);
            transition: opacity .35s;
        }

        .pr-mm-card-num {
            position: absolute;
            top: 10px;
            right: 12px;
            font-family: var(--ff-disp);
            font-size: 48px;
            font-weight: 900;
            color: rgba(255, 255, 255, .12);
            line-height: 1;
        }

        .pr-mm-card-body {
            padding: 20px 22px 24px;
        }

        .pr-mm-card-cat {
            font-family: var(--ff-ui);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--r);
            margin-bottom: 7px;
        }

        .pr-mm-card-title {
            font-family: var(--ff-disp);
            font-size: 20px;
            font-weight: 700;
            color: var(--k);
            text-transform: uppercase;
            line-height: 1.2;
            margin-bottom: 10px;
        }

        .pr-mm-card-desc {
            color: #888;
            font-size: 13px;
            line-height: 1.65;
            margin-bottom: 16px;
        }

        .pr-mm-card-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--r);
            font-family: var(--ff-ui);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            transition: gap .25s;
        }

        .pr-mm-card-link:hover {
            gap: 10px;
            color: var(--rd);
        }

        @media(max-width:1199px) {
            .pr-mm-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media(max-width:767px) {
            .pr-mm-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media(max-width:480px) {
            .pr-mm-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ──────────────────────────────────────────
   WHY  .wc-mm-
────────────────────────────────────────── */
        .wc-mm {
            padding: 110px 0;
            background: var(--k);
            position: relative;
            overflow: hidden;
        }

        .wc-mm-wm {
            position: absolute;
            font-family: var(--ff-disp);
            font-size: 260px;
            font-weight: 900;
            color: rgba(255, 255, 255, .015);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            white-space: nowrap;
            pointer-events: none;
            letter-spacing: -10px;
        }

        .wc-mm-hd {
            text-align: center;
            margin-bottom: 56px;
        }

        .wc-mm-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--r);
            font-family: var(--ff-ui);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .wc-mm-tag::before,
        .wc-mm-tag::after {
            content: '';
            width: 22px;
            height: 2px;
            background: var(--r);
        }

        .wc-mm-disp {
            font-family: var(--ff-disp);
            font-size: 54px;
            font-weight: 900;
            color: #fff;
            text-transform: uppercase;
            line-height: .98;
        }

        .wc-mm-disp-acc {
            color: var(--r);
        }

        .wc-mm-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
        }

        .wc-mm-card {
            background: rgba(255, 255, 255, .028);
            padding: 42px 32px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, .05);
            transition: all .4s;
        }

        .wc-mm-card:hover {
            background: rgba(212, 43, 43, .07);
            border-color: rgba(212, 43, 43, .2);
        }

        .wc-mm-card-floor {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--r);
            transition: width .5s ease;
        }

        .wc-mm-card:hover .wc-mm-card-floor {
            width: 100%;
        }

        .wc-mm-card-bgnum {
            position: absolute;
            top: 8px;
            right: 14px;
            font-family: var(--ff-disp);
            font-size: 72px;
            font-weight: 900;
            color: rgba(255, 255, 255, .02);
            line-height: 1;
            pointer-events: none;
        }

        .wc-mm-icon {
            width: 58px;
            height: 58px;
            background: rgba(212, 43, 43, .15);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            transition: background .35s;
            clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
        }

        .wc-mm-card:hover .wc-mm-icon {
            background: var(--r);
        }

        .wc-mm-icon i {
            color: var(--r);
            font-size: 23px;
            transition: color .3s;
        }

        .wc-mm-card:hover .wc-mm-icon i {
            color: #fff;
        }

        .wc-mm-card-title {
            font-family: var(--ff-disp);
            font-size: 23px;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .wc-mm-card-text {
            color: rgba(255, 255, 255, .4);
            font-size: 14px;
            line-height: 1.8;
        }

        @media(max-width:991px) {
            .wc-mm-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media(max-width:575px) {
            .wc-mm-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ──────────────────────────────────────────
   INDUSTRIES  .id-mm-
────────────────────────────────────────── */
        .id-mm {
            padding: 110px 0;
            background: #fff;
            position: relative;
            overflow: hidden;
        }

        .id-mm::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--r), transparent);
        }

        .id-mm-hd {
            text-align: center;
            margin-bottom: 52px;
        }

        .id-mm-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--r);
            font-family: var(--ff-ui);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .id-mm-tag::before,
        .id-mm-tag::after {
            content: '';
            width: 22px;
            height: 2px;
            background: var(--r);
        }

        .id-mm-disp {
            font-family: var(--ff-disp);
            font-size: 54px;
            font-weight: 900;
            color: var(--k);
            text-transform: uppercase;
            line-height: .98;
        }

        .id-mm-disp-acc {
            color: var(--r);
        }

        .id-mm-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            border: 1px solid #e4e4e4;
        }

        .id-mm-item {
            padding: 40px 16px;
            text-align: center;
            border-right: 1px solid #e4e4e4;
            border-bottom: 1px solid #e4e4e4;
            position: relative;
            overflow: hidden;
            cursor: default;
            transition: all .35s;
        }

        .id-mm-item:nth-child(5n) {
            border-right: none;
        }

        .id-mm-item:nth-child(n+6) {
            border-bottom: none;
        }

        .id-mm-item::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--r);
            transform: scaleY(0);
            transform-origin: bottom;
            transition: transform .35s ease;
            z-index: 0;
        }

        .id-mm-item:hover::before {
            transform: scaleY(1);
        }

        .id-mm-ico {
            font-size: 38px;
            color: var(--r);
            margin-bottom: 14px;
            display: block;
            transition: all .35s;
            position: relative;
            z-index: 1;
        }

        .id-mm-item:hover .id-mm-ico {
            color: #fff;
            transform: scale(1.15);
        }

        .id-mm-lbl {
            font-family: var(--ff-ui);
            font-size: 13px;
            font-weight: 700;
            color: var(--k);
            text-transform: uppercase;
            letter-spacing: .5px;
            transition: color .35s;
            position: relative;
            z-index: 1;
        }

        .id-mm-item:hover .id-mm-lbl {
            color: #fff;
        }

        @media(max-width:991px) {
            .id-mm-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media(max-width:575px) {
            .id-mm-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* ──────────────────────────────────────────
   TESTIMONIALS  .tm-mm-
────────────────────────────────────────── */
        .tm-mm {
            padding: 110px 0;
            background: var(--lt);
            position: relative;
        }

        .tm-mm::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--r);
        }

        .tm-mm-hd {
            text-align: center;
            margin-bottom: 54px;
        }

        .tm-mm-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--r);
            font-family: var(--ff-ui);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .tm-mm-tag::before,
        .tm-mm-tag::after {
            content: '';
            width: 22px;
            height: 2px;
            background: var(--r);
        }

        .tm-mm-disp {
            font-family: var(--ff-disp);
            font-size: 54px;
            font-weight: 900;
            color: var(--k);
            text-transform: uppercase;
            line-height: .98;
        }

        .tm-mm-disp-acc {
            color: var(--r);
        }

        .tm-mm-swiper {
            padding-bottom: 52px !important;
        }

        .tm-mm-card {
            background: #fff;
            padding: 36px 30px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
            transition: box-shadow .3s, transform .3s;
        }

        .tm-mm-card:hover {
            box-shadow: 0 12px 44px rgba(212, 43, 43, .1);
            transform: translateY(-5px);
        }

        .tm-mm-card-quote {
            position: absolute;
            top: 10px;
            left: 14px;
            font-size: 100px;
            font-family: Georgia, serif;
            color: rgba(212, 43, 43, .06);
            line-height: 1;
            pointer-events: none;
        }

        .tm-mm-stars {
            color: #f5a623;
            font-size: 13px;
            margin-bottom: 18px;
            display: flex;
            gap: 3px;
        }

        .tm-mm-text {
            color: #555;
            font-size: 14px;
            line-height: 1.85;
            font-style: italic;
            margin-bottom: 22px;
        }

        .tm-mm-div {
            height: 1px;
            background: #f0f0f0;
            margin-bottom: 18px;
        }

        .tm-mm-author {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .tm-mm-ava {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--r);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-family: var(--ff-disp);
            font-size: 18px;
            font-weight: 800;
            flex-shrink: 0;
        }

        .tm-mm-name {
            font-family: var(--ff-ui);
            font-size: 16px;
            font-weight: 700;
            color: #222;
        }

        .tm-mm-role {
            font-size: 12px;
            color: #aaa;
        }

        .tm-mm-swiper .swiper-pagination-bullet {
            background: rgba(212, 43, 43, .3);
            opacity: 1;
            width: 8px;
            height: 8px;
            transition: all .35s;
        }

        .tm-mm-swiper .swiper-pagination-bullet-active {
            background: var(--r);
            width: 26px;
            border-radius: 4px;
        }

        /* ──────────────────────────────────────────
   FAQ  .fq-mm-
────────────────────────────────────────── */
        .fq-mm {
            padding: 110px 0;
            background: var(--k);
            position: relative;
            overflow: hidden;
        }

        .fq-mm-wm {
            position: absolute;
            font-family: var(--ff-disp);
            font-size: 300px;
            font-weight: 900;
            color: rgba(255, 255, 255, .012);
            bottom: -60px;
            right: -30px;
            pointer-events: none;
            line-height: 1;
        }

        .fq-mm-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--r);
            font-family: var(--ff-ui);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .fq-mm-tag::before {
            content: '';
            width: 30px;
            height: 2px;
            background: var(--r);
        }

        .fq-mm-disp {
            font-family: var(--ff-disp);
            font-size: 54px;
            font-weight: 900;
            color: #fff;
            text-transform: uppercase;
            line-height: .98;
        }

        .fq-mm-disp-acc {
            color: var(--r);
        }

        .fq-mm-side-sub {
            color: rgba(255, 255, 255, .36);
            font-size: 15px;
            line-height: 1.72;
            margin-top: 14px;
            max-width: 380px;
        }

        .fq-mm-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .fq-mm-item {
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .06);
            overflow: hidden;
            transition: border-color .3s;
        }

        .fq-mm-item.fq-mm-open {
            border-color: var(--r);
        }

        .fq-mm-q {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            cursor: pointer;
            gap: 16px;
            user-select: none;
        }

        .fq-mm-qtxt {
            font-family: var(--ff-ui);
            font-size: 16px;
            font-weight: 600;
            color: #bbb;
            letter-spacing: .3px;
            transition: color .3s;
        }

        .fq-mm-item.fq-mm-open .fq-mm-qtxt {
            color: #fff;
        }

        .fq-mm-qicon {
            width: 34px;
            height: 34px;
            background: rgba(212, 43, 43, .14);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all .35s;
        }

        .fq-mm-item.fq-mm-open .fq-mm-qicon {
            background: var(--r);
            transform: rotate(45deg);
        }

        .fq-mm-qicon i {
            color: var(--r);
            font-size: 12px;
            transition: color .3s;
        }

        .fq-mm-item.fq-mm-open .fq-mm-qicon i {
            color: #fff;
        }

        .fq-mm-ans {
            max-height: 0;
            overflow: hidden;
            transition: max-height .45s ease;
        }

        .fq-mm-item.fq-mm-open .fq-mm-ans {
            max-height: 260px;
        }

        .fq-mm-ansbody {
            padding: 0 24px 22px;
            border-top: 1px solid rgba(255, 255, 255, .05);
            padding-top: 16px;
            color: rgba(255, 255, 255, .44);
            font-size: 14px;
            line-height: 1.82;
        }

        /* ──────────────────────────────────────────
   CONTACT  .ct-mm-
────────────────────────────────────────── */
        .ct-mm {
            padding: 110px 0;
            background: #fff;
        }

        .ct-mm-hd {
            text-align: center;
            margin-bottom: 62px;
        }

        .ct-mm-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--r);
            font-family: var(--ff-ui);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .ct-mm-tag::before,
        .ct-mm-tag::after {
            content: '';
            width: 22px;
            height: 2px;
            background: var(--r);
        }

        .ct-mm-disp {
            font-family: var(--ff-disp);
            font-size: 54px;
            font-weight: 900;
            color: var(--k);
            text-transform: uppercase;
            line-height: .98;
        }

        .ct-mm-disp-acc {
            color: var(--r);
        }

        .ct-mm-row {
            display: flex;
            gap: 18px;
            align-items: flex-start;
            padding: 20px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .ct-mm-icon {
            width: 50px;
            height: 50px;
            background: #f4f4f4;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
            transition: background .3s;
        }

        .ct-mm-row:hover .ct-mm-icon {
            background: var(--r);
        }

        .ct-mm-icon i {
            color: var(--r);
            font-size: 18px;
            transition: color .3s;
        }

        .ct-mm-row:hover .ct-mm-icon i {
            color: #fff;
        }

        .ct-mm-lbl {
            font-family: var(--ff-ui);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #bbb;
            margin-bottom: 4px;
        }

        .ct-mm-val {
            font-size: 15px;
            font-weight: 600;
            color: #222;
            line-height: 1.55;
        }

        .ct-mm-val a {
            color: inherit;
        }

        .ct-mm-val a:hover {
            color: var(--r);
        }

        .ct-mm-gst {
            background: #f8f8f8;
            padding: 18px 22px;
            border-left: 4px solid var(--r);
            margin-top: 26px;
        }

        .ct-mm-gst-lbl {
            font-family: var(--ff-ui);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #aaa;
            margin-bottom: 5px;
        }

        .ct-mm-gst-val {
            font-family: var(--ff-ui);
            font-size: 20px;
            font-weight: 700;
            color: #333;
        }

        .ct-mm-formbox {
            background: var(--k);
            padding: 44px 40px;
            position: relative;
            overflow: hidden;
        }

        .ct-mm-formbox::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--r), var(--rd));
        }

        .ct-mm-ftitle {
            font-family: var(--ff-disp);
            font-size: 36px;
            font-weight: 800;
            color: #fff;
            text-transform: uppercase;
            margin-bottom: 28px;
        }

        .ct-mm-ftitle-acc {
            color: var(--r);
        }

        .ct-mm-fg {
            margin-bottom: 18px;
        }

        .ct-mm-flbl {
            display: block;
            font-family: var(--ff-ui);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #666;
            margin-bottom: 6px;
        }

        .ct-mm-fin {
            width: 100%;
            padding: 12px 16px;
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(255, 255, 255, .1);
            color: #fff;
            font-family: var(--ff-body);
            font-size: 14px;
            outline: none;
            transition: border-color .3s, background .3s;
        }

        .ct-mm-fin::placeholder {
            color: #444;
        }

        .ct-mm-fin:focus {
            border-color: var(--r);
            background: rgba(255, 255, 255, .08);
        }

        .ct-mm-fgrid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .ct-mm-submit {
            width: 100%;
            padding: 15px;
            background: var(--r);
            color: #fff;
            border: none;
            font-family: var(--ff-ui);
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all .3s;
            clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 8px;
        }

        .ct-mm-submit:hover {
            background: var(--rd);
        }

        @media(max-width:767px) {
            .ct-mm-fgrid {
                grid-template-columns: 1fr;
            }

            .ct-mm-formbox {
                padding: 30px 22px;
            }
        }

        /* ──────────────────────────────────────────
   FOOTER  .ft-mm-
────────────────────────────────────────── */
        .ft-mm {
            background: #090909;
            border-top: 3px solid var(--r);
        }

        .ft-mm-main {
            padding: 64px 0 48px;
        }

        .ft-mm-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 44px;
        }

        .ft-mm-logo {
            height: 70px;
            width: auto;
            margin-bottom: 18px;
            display: block;
        }

        .ft-mm-desc {
            color: #ededed;
            font-size: 13px;
            line-height: 1.9;
            margin-bottom: 22px;
        }

        .ft-mm-socials {
            display: flex;
            gap: 8px;
        }

        .ft-mm-soc {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, .04);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ededed;
            font-size: 14px;
            transition: all .3s;
            border: 1px solid #fff;
        }

        .ft-mm-soc:hover {
            background: var(--r);
            color: #fff;
            border-color: var(--r);
        }

        .ft-mm-colhd {
            font-family: var(--ff-ui);
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid rgba(212, 43, 43, .4);
        }

        .ft-mm-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 9px;
        }

        .ft-mm-links a {
            color: #ededed;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all .25s;
        }

        .ft-mm-links a::before {
            content: '';
            width: 5px;
            height: 1px;
            background: var(--r);
            flex-shrink: 0;
        }

        .ft-mm-links a:hover {
            color: #ccc;
            padding-left: 5px;
        }

        .ft-mm-ci {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            margin-bottom: 13px;
        }

        .ft-mm-ci i {
            color: var(--r);
            font-size: 13px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .ft-mm-ci span,
        .ft-mm-ci a {
            color: #ededed;
            font-size: 13px;
            line-height: 1.55;
        }

        .ft-mm-ci a:hover {
            color: #ccc;
        }

        .ft-mm-bottom {
            background: #040404;
            padding: 18px 0;
            text-align: center;
        }

        .ft-mm-btxt {
            color: #ededed;
            font-size: 12px;
        }

        .ft-mm-btxt span {
            color: var(--r);
        }

        @media(max-width:991px) {
            .ft-mm-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
        }

        @media(max-width:575px) {
            .ft-mm-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ──────────────────────────────────────────
   SCROLL TOP  .scr-mm-
────────────────────────────────────────── */
        .scr-mm-btn {
            position: fixed;
            bottom: 32px;
            right: 32px;
            width: 46px;
            height: 46px;
            background: var(--r);
            color: #fff;
            border: none;
            cursor: pointer;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
            opacity: 0;
            transform: translateY(20px);
            transition: all .4s;
            pointer-events: none;
        }

        .scr-mm-btn.scr-mm-show {
            opacity: 1;
            transform: translateY(0);
            pointer-events: all;
        }

        .scr-mm-btn:hover {
            background: var(--rd);
        }


        /* ============================
RB FLOATING CONTACT
============================ */

.rb-float-contact{
    position:fixed;
    bottom:25px;
    left:25px;
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:9999;
}

/* BUTTON BASE */

.rb-float-btn{
    position:relative;
    display:flex;
    align-items:center;
    gap:10px;
    padding:14px 16px;
    background:linear-gradient(145deg,#0a0a0a,#1b1b1b);
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    box-shadow:
        0px 0px 20px 1px rgb(255 255 255), 0 10px 25px rgba(0, 0, 0, 0.6);
    overflow:hidden;
    transition:.35s;
    width:56px;
}

/* ICON */

.rb-icon{
    min-width:22px;
    font-size:20px;
    text-align:center;
}

/* TEXT */

.rb-text{
    white-space:nowrap;
    opacity:0;
    transform:translateX(-10px);
    transition:.35s;
    font-size:14px;
    font-weight:500;
}

/* HOVER EXPAND */

.rb-float-btn:hover{
    width:160px;
}

/* TEXT SHOW */

.rb-float-btn:hover .rb-text{
    opacity:1;
    transform:translateX(0);
}

/* WHATSAPP STYLE */

.rb-whatsapp:hover{
    background:linear-gradient(135deg,#25D366,#0b7f3c);
    box-shadow:0 10px 30px rgba(37,211,102,.5);
}

/* CALL STYLE */

.rb-call:hover{
    background:linear-gradient(135deg,#ff1f1f,#b10000);
    box-shadow:0 10px 30px rgba(255,0,0,.6);
}

/* PULSE EFFECT */

.rb-float-btn::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:40px;
    box-shadow:0 0 0 rgba(255,0,0,0.6);
    animation:rbPulse 2s infinite;
    border: 2px solid red;
}

@keyframes rbPulse{
    0%{box-shadow:0 0 0 0 rgba(255,0,0,0.5);}
    70%{box-shadow:0 0 0 12px rgba(255,0,0,0);}
    100%{box-shadow:0 0 0 0 rgba(255,0,0,0);}
}

/* MOBILE */

@media(max-width:768px){

.rb-float-btn{
    width:50px;
    padding:12px;
}

.rb-float-btn:hover{
    width:140px;
}

}


.phero-wrap {
  --phero-blue: #3b82f6;
  --phero-blue-light: rgba(59,130,246,0.18);
  --phero-white: #ffffff;
  --phero-muted: rgba(255,255,255,0.65);
  --phero-sep: rgba(255,255,255,0.4);

  font-family: 'DM Sans', sans-serif;
  position: relative;
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background image */
.phero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1400&q=80');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Dark + blue overlay */
.phero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.452) 0%, rgba(0, 0, 0, 0.445) 100%);
  z-index: 1;
}

/* Blue accent line at bottom */
.phero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #000, var(--r), #000000);
  z-index: 3;
}

/* Content */
.phero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 52px 24px 48px;
}

.phero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  color: var(--phero-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

/* Breadcrumb nav */
.phero-nav {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 7px 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.phero-item {
  display: flex;
  align-items: center;
  gap: 2px;
}

.phero-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--phero-muted);
  text-decoration: none;
  padding: 3px 8px;
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.phero-link:hover {
  color: var(--phero-white);
  background: rgba(255, 0, 0, 0.226);
}

.phero-home {
  display: flex;
  align-items: center;
  color: var(--phero-muted);
  padding: 3px 8px;
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
}
.phero-home:hover {
  color: var(--phero-white);
  background: var(--phero-blue-light);
}

.phero-sep {
  color: var(--phero-sep);
  font-size: 0.78rem;
  user-select: none;
  padding: 0 1px;
}

.phero-active {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--phero-white);
  background: var(--r);
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ── DEMO: show multiple examples ── */
 
.demo-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  padding: 28px 0 14px;
}


/* sitemap-sectio  */
.sitemap-container {
    max-width: 1200px;
    margin: 0 auto; 
    padding: 50px 0;
}

.sitemap-title {
    color: #2b2a28;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.sitemap-card {
    background-color: white;
    border: 2px solid var(--rd);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: #2b2a28;
}

.sitemap-card:hover {
    background-color: var(--r);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(213, 158, 6, 0.3);
    text-decoration: none;
}

.card-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.card-description {
    font-size: 0.9rem;
    opacity: 0.8;
}

.sitemap-card:hover .card-description {
    opacity: 1;
}

.category-section {
    margin-bottom: 40px;
}

.category-header {
    color: var(--rd);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--rd);
}

.main-links {
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .sitemap-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .category-header {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .sitemap-card {
        padding: 15px;
    }
    
    .card-label {
        font-size: 1rem;
    }
}