
/* ──────────────────────────────────────────
   TOKENS
────────────────────────────────────────── */
        :root {
            --r: #b51619;
            --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);
            --red: #b51619;
          --red-lt: #d9292c;
          --red-dk: #8c1012;
          --red-bg: #fdf2f2;
          --red-bdr: rgba(181, 22, 25, 0.20);
          --red-glow: rgba(181, 22, 25, 0.18);
          --white: #ffffff;
          --bg: #f6f7f9;
          --bg2: #eef0f4;
          --ink: #111111;
          --body-txt: #444444;
          --muted: #888888;
          --card-bdr: #e2e4e8;
          --shadow: rgba(0, 0, 0, 0.07);
          --shadow-h: rgba(181, 22, 25, 0.14);     
          --card-body: #ede8e3;
          --card-head: #f2ede9;  
          --bdr: #e0dbd6;
          --shadow-s: rgba(0, 0, 0, .08); 
        }

        * {
            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;
        }
        
        /* ══════════════════════════════════
       TOP BAR
    ══════════════════════════════════ */
    .dw-topbar {
      background: var(--ink);
      border-bottom: 1px solid rgba(255,255,255,.06);
      padding: 0 24px;
      position: relative;
      overflow: hidden;
    }
    /* subtle dot pattern */
    .dw-topbar::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(181,22,25,.12) 1px, transparent 1px);
      background-size: 22px 22px;
      pointer-events: none;
    }
    .dw-topbar-inner {
      max-width: 1240px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      height: 38px;
      position: relative;
      z-index: 2;
    }
    .dw-topbar-left {
      display: flex;
      align-items: center;
      gap: 22px;
    }
    .dw-topbar-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-family: 'DM Sans';
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: lowercase;
      color: #ffffffd1;
      text-decoration: none;
      transition: color .2s;
      white-space: nowrap;
    }
    .dw-topbar-item i { color: var(--red-lt); font-size: 10px; }
    .dw-topbar-item:hover { color: var(--white); }

    .dw-topbar-right {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .dw-topbar-social {
      width: 24px; height: 24px;
      display: flex; align-items: center; justify-content: center;
      font-size: 11px;
      color: #ffffffd1;
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 3px;
      text-decoration: none;
      transition: background .2s, color .2s, border-color .2s;
    }
    .dw-topbar-social:hover {
      background: var(--red);
      color: var(--white);
      border-color: var(--red);
    }
    .dw-topbar-pill {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--white);
      background: var(--red);
      padding: 3px 10px;
      border-radius: 2px;
      animation: tbPulse 2.5s ease-in-out infinite;
    }
    @media(max-width: 768px) {
      .dw-topbar-left { display: none; }
    }


        /* ──────────────────────────────────────────
   NAV  .nav-mm-
────────────────────────────────────────── */
        .nav-mm {
            position: fixed;
            top: 38px;
            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);
            /*position: sticky;*/
            top: 0px;
        }

        /* 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: #fff;
        }

        .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: 60px;
            width: auto;
            transition: height .35s; 
        }

        @media(max-width: 991px) {
            .nav-mm-brand img {
                height: 45px;
                /* ← normal size on mobile */
                margin-top: 0;
                /* ← remove the offset */
            }

            .nav-mm-scrolled .nav-mm-brand img{
                height: 45px !important;
            }
            .nav-mm-inner { 
                padding: 0 15px; 
            }

            .nav-mm-scrolled .nav-mm-brand img {
                height: 40px;
            }
        }

        .nav-mm-scrolled .nav-mm-brand img {
            height: 55px;
        }

        .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 {
            position: relative;
            overflow: hidden;
        }
        
        .bnr-mm-img {
            width: 100%;
            height: auto;
            display: block;
        }

        .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;
            box-shadow: 2px 2px 3px 2px #ffffffad;
        }

        .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;
                display: none;
            }
            .carousel-control-prev{
                display:none;
            }
            .carousel-control-next{
                display:none;
            }
            .ab-mm {
                padding:20px 0 !important;    
            }
            .carousel-indicators{
                display:none;
            }
            
        }

        @media(max-width:575px) {
            .bnr-mm-btns {
                flex-direction: column;
                display: none;
            }

            .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;
    font-weight: 700;
    letter-spacing: 1px;
}

/* 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 70px 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:var(--r);
    z-index:0;
}

/* Badge */

.ab-mm-badge{
    position:absolute;
    bottom: -45px;
    left: 500px;
    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: 900px;
            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;
            }
        }

          /* ══════════════════════════════════════════
   SECTION WRAPPER
══════════════════════════════════════════ */
    .wcu-sec {
      position: relative;
      padding: 90px 24px 110px;
      background: var(--bg);
      overflow: hidden;
    }

    /* subtle dot-grid bg */
    .wcu-sec-bg {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(181, 22, 25, .07) 1px, transparent 1px);
      background-size: 32px 32px;
      pointer-events: none;
      z-index: 0;
    }

    /* red accent stripe top */
    .wcu-top-stripe {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--red), var(--red-lt), var(--red));
      z-index: 10;
    }


    /* floating particles */
    .wcu-particles {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
      z-index: 1;
    }

    .wcu-pt {
      position: absolute;
      width: 3px;
      height: 3px;
      background: var(--red);
      border-radius: 50%;
      opacity: 0;
      animation: wcuFloat var(--d) var(--dl) ease-in-out infinite;
    }

    .wcu-inner {
      max-width: 1240px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    /* ══════════════════════════════════════════
   HEADER BLOCK
══════════════════════════════════════════ */
    .wcu-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 14px;
      opacity: 0;
      transform: translateY(16px);
      animation: wcuRise .55s .1s ease forwards;
    }

    .wcu-eyebrow .eline {
      display: block;
      width: 34px;
      height: 2px;
      background: var(--red);
    }

    .wcu-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(52px, 8vw, 70px);
      line-height: .9;
      letter-spacing: 2px;
      color: var(--ink);
      opacity: 0;
      transform: translateY(24px);
      animation: wcuRise .7s .25s ease forwards;
    }

    .wcu-title em {
      font-style: normal;
      color: var(--red);
      position: relative;
    }

    .wcu-title em::after {
      content: '';
      position: absolute;
      bottom: 6px;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--red);
      opacity: .25;
      transform: scaleX(0);
      transform-origin: left;
      animation: wcuBar .5s 1s ease forwards;
    }

    .wcu-sub {
      font-size: 15px;
      font-weight: 400;
      color: var(--body-txt);
      line-height: 1.8; 
      margin-top: 18px;
      opacity: 0;
      transform: translateY(16px);
      animation: wcuRise .65s .42s ease forwards;
    }

    /* divider */
    .wcu-divider {
      display: flex;
      align-items: center;
      gap: 14px;
      margin: 10px 0 0;
      opacity: 0;
      animation: wcuRise .5s .58s ease forwards;
    }

    .wcu-divider .dl {
      display: block;
      height: 1px;
      flex: 1;
      background: var(--card-bdr);
    }

    .wcu-divider i {
      color: var(--red);
      font-size: 15px;
    }

    /* ══════════════════════════════════════════
   MAIN 2-COL GRID
══════════════════════════════════════════ */
    .wcu-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 20px;
    }

    @media(max-width: 860px) {
      .wcu-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ── HERO IMAGE BLOCK ────────────────────── */
    .wcu-img-wrap {
      position: relative;
      border-radius: 6px;
      overflow: hidden;
      min-height: auto;
      box-shadow: 0 4px 30px var(--shadow), 0 0 0 1px var(--card-bdr);
      opacity: 0;
      transform: translateX(-32px);
      animation: wcuSlide .8s .5s ease forwards;
    }

    .wcu-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
      transition: transform .8s ease;
    }

    .wcu-img-wrap:hover img {
      transform: scale(1.04);
    }

    /* gradient overlay — separate div, no pseudo conflict */
    .wcu-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom,
          rgba(181, 22, 25, 0.06) 0%,
          rgba(10, 10, 10, 0.78) 100%);
      pointer-events: none;
    }

    /* red corner accents — using inner spans, no pseudo conflict */
    .wcu-corner {
      position: absolute;
      z-index: 6;
      pointer-events: none;
    }

    .wcu-corner.tr {
      top: 0;
      right: 0;
      width: 70px;
      height: 70px;
      border-top: 3px solid var(--red);
      border-right: 3px solid var(--red);
      transition: width .4s, height .4s;
    }

    .wcu-corner.bl {
      bottom: 0;
      left: 0;
      width: 70px;
      height: 70px;
      border-bottom: 3px solid var(--red);
      border-left: 3px solid var(--red);
      transition: width .4s, height .4s;
    }

    .wcu-img-wrap:hover .wcu-corner {
      width: 105px;
      height: 105px;
    }

    /* badge */
    .wcu-badge {
      position: absolute;
      top: 20px;
      left: 20px;
      z-index: 7;
      background: var(--red);
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 7px 18px 7px 12px;
      clip-path: polygon(0 0, 100% 0, 93% 100%, 0 100%);
      display: inline-flex;
      align-items: center;
      gap: 7px;
      animation: wcuPulse 2.5s 2s ease-in-out infinite;
    }

    /* image bottom info */
    .wcu-img-info {
      position: absolute;
      bottom: 24px;
      left: 24px;
      right: 24px;
      z-index: 7;
    }

    .wcu-img-info .iname {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 26px;
      letter-spacing: 2px;
      color: var(--white);
    }

    .wcu-img-info .iname span {
      color: #ff6b6e;
    }

    .wcu-img-info .iaddr {
      font-size: 11px;
      color: rgba(255, 255, 255, .65);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-top: 6px;
      line-height: 1.7;
    }

    .wcu-img-info .iaddr i {
      color: var(--red);
      margin-right: 5px;
    }

    /* ── SIDE CARDS COLUMN ───────────────────── */
    .wcu-col {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    /* ══════════════════════════════════════════
   CARD
══════════════════════════════════════════ */
    .wcu-card {
      background: var(--white);
      border: 1px solid var(--card-bdr);
      border-radius: 6px;
      padding: 26px 24px;
      position: relative;
      overflow: hidden;
      cursor: default;
      opacity: 0;
      transform: translateY(24px);
      transition: border-color .3s, box-shadow .35s, transform .35s;
    }

    .wcu-card.vis {
      opacity: 1;
      transform: translateY(0);
    }

    .wcu-card:hover {
      border-color: var(--red);
      box-shadow: 0 8px 32px var(--shadow-h), 0 2px 8px var(--shadow);
      transform: translateY(-5px) !important;
    }

    /* shimmer sweep */
    .wcu-card-shine {
      position: absolute;
      top: 0;
      left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(105deg, transparent 35%, rgba(181, 22, 25, .04) 50%, transparent 65%);
      transform: skewX(-16deg);
      transition: left .6s ease;
      pointer-events: none;
    }

    .wcu-card:hover .wcu-card-shine {
      left: 140%;
    }

    /* left accent bar */
    .wcu-card-bar {
      position: absolute;
      top: 0;
      left: 0;
      width: 3px;
      height: 0;
      background: var(--red);
      transition: height .4s ease;
      border-radius: 0 2px 2px 0;
    }

    .wcu-card:hover .wcu-card-bar {
      height: 100%;
    }

    /* icon */
    .wcu-card-icon {
      width: 48px;
      height: 48px;
      border-radius: 5px;
      background: var(--red-bg);
      border: 1px solid var(--red-bdr);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 19px;
      color: var(--red);
      margin-bottom: 14px;
      transition: background .3s, transform .3s, color .3s;
    }

    .wcu-card:hover .wcu-card-icon {
      background: var(--red);
      color: var(--white);
      transform: rotate(-8deg) scale(1.08);
    }

    .wcu-card-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 17px;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: var(--ink);
      margin-bottom: 8px;
    }

    .wcu-card-text {
      font-size: 13.5px;
      font-weight: 400;
      color: var(--body-txt);
      line-height: 1.72;
    }

    .wcu-card-num {
      position: absolute;
      bottom: 12px;
      right: 16px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 60px;
      color: rgba(181, 22, 25, .06);
      line-height: 1;
      user-select: none;
      pointer-events: none;
      transition: color .3s;
    }

    .wcu-card:hover .wcu-card-num {
      color: rgba(181, 22, 25, .12);
    }

    /* ══════════════════════════════════════════
   BOTTOM CARDS ROW
══════════════════════════════════════════ */
    .wcu-row2 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }

    /* ══════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════ */
    .wcu-stats {
      display: flex;
      flex-wrap: wrap;
      margin-top: 40px;
      background: var(--white);
      border: 1px solid var(--card-bdr);
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 2px 12px var(--shadow);
      opacity: 0;
      animation: wcuRise .8s 1.2s ease forwards;
    }

    .wcu-stat {
      flex: 1 1 140px;
      padding: 26px 18px;
      text-align: center;
      border-right: 1px solid var(--card-bdr);
      transition: background .3s;
    }

    .wcu-stat:last-child {
      border-right: none;
    }

    .wcu-stat:hover {
      background: var(--red-bg);
    }

    .wcu-stat-icon {
      font-size: 22px;
      color: var(--red);
      margin-bottom: 8px;
      display: block;
      transition: transform .35s;
    }

    .wcu-stat:hover .wcu-stat-icon {
      transform: scale(1.2) rotate(-6deg);
    }

    .wcu-stat-val {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 46px;
      line-height: 1;
      color: var(--ink);
      display: block;
    }

    .wcu-stat-lbl {
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 5px;
      display: block;
    }

    /* ══════════════════════════════════════════
   CONTACT STRIP
══════════════════════════════════════════ */
    .wcu-contact {
      margin-top: 32px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      padding: 26px 30px;
      background: var(--white);
      border: 1px solid var(--card-bdr);
      border-radius: 6px;
      box-shadow: 0 2px 12px var(--shadow);
      border-left: 4px solid var(--red);
      opacity: 0;
      animation: wcuRise .8s 1.45s ease forwards;
    }

    .wcu-citem {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .wcu-citem .ci-ico {
      width: 44px;
      height: 44px;
      flex-shrink: 0;
      background: var(--red);
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
      color: var(--white);
      transition: transform .3s, background .3s;
    }

    .wcu-citem:hover .ci-ico {
      background: var(--red-dk);
      transform: scale(1.08);
    }

    .wcu-citem .ci-lbl {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 3px;
    }

    .wcu-citem .ci-val {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 24px;
      letter-spacing: 1.5px;
      color: var(--ink);
    }

    .wcu-citem .ci-adr {
      font-size: 12px;
      color: var(--body-txt);
      line-height: 1.65;
      max-width: 280px;
    }

    .wcu-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--red);
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 13px;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 14px 30px;
      border: none;
      cursor: pointer;
      border-radius: 4px;
      transition: background .25s, transform .2s, box-shadow .25s;
      text-decoration: none;
      white-space: nowrap;
    }

    .wcu-btn:hover {
      background: var(--red-dk);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(181, 22, 25, .35);
    }

    /* ══════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════ */
    @keyframes wcuRise {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes wcuSlide {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes wcuBar {
      to {
        transform: scaleX(1);
      }
    }

    @keyframes wcuPulse {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: .65;
      }
    }

    @keyframes wcuScan {
      0% {
        top: -2px;
        opacity: 0;
      }

      3% {
        opacity: 1;
      }

      97% {
        opacity: 1;
      }

      100% {
        top: 100%;
        opacity: 0;
      }
    }

    @keyframes wcuFloat {
      0% {
        opacity: 0;
        transform: translateY(0) scale(1);
      }

      15% {
        opacity: .55;
      }

      80% {
        opacity: .25;
      }

      100% {
        opacity: 0;
        transform: translateY(-120px) scale(.3);
      }
    }

    @keyframes wcuSpin {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    /* ── RESPONSIVE ─── */
    @media(max-width: 640px) {
      .wcu-contact {
        flex-direction: column;
        align-items: flex-start;
      }

      .wcu-stats {
        flex-direction: column;
      }

      .wcu-stat {
        border-right: none;
        border-bottom: 1px solid var(--card-bdr);
      }

      .wcu-stat:last-child {
        border-bottom: none;
      }
    }

        /* ──────────────────────────────────────────
   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-fin option{
            background:#000;
        }
        
        .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;
    }
}

/* ── SECTION ── */
    .hiw-sec {
      position: relative;
      padding: 90px 24px 110px;
      overflow: hidden;
      background: var(--bg);
    }

    .hiw-stripe {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--red-dk), var(--red), var(--red-lt), var(--red));
      z-index: 10;
    }

    .hiw-dotgrid {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(181, 22, 25, .07) 1px, transparent 1px);
      background-size: 30px 30px;
      pointer-events: none;
      z-index: 0;
    }

    /* decorative circles */
    .hiw-circle {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      z-index: 1;
    }

    .hiw-c1 {
      width: 12px;
      height: 12px;
      background: var(--red);
      opacity: .3;
      bottom: 180px;
      right: 80px;
      animation: hiwPulse 3s ease-in-out infinite;
    }

    .hiw-c2 {
      width: 52px;
      height: 52px;
      border: 2px solid rgba(181, 22, 25, .2);
      bottom: 140px;
      right: 118px;
      animation: hiwPulse 3s .9s ease-in-out infinite;
    }

    .hiw-c3 {
      width: 8px;
      height: 8px;
      background: var(--red);
      opacity: .2;
      top: 180px;
      left: 60px;
      animation: hiwPulse 4s 1.6s ease-in-out infinite;
    }

    /* large ghost text */
    .hiw-ghost {
      position: absolute;
      right: -20px;
      top: 50%;
      transform: translateY(-50%);
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(100px, 14vw, 200px);
      color: rgba(181, 22, 25, .04);
      letter-spacing: 8px;
      pointer-events: none;
      z-index: 0;
      white-space: nowrap;
      user-select: none;
    }

    .hiw-inner {
      max-width: 1240px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    /* ── HEADER ── */
    .hiw-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 14px;
      opacity: 0;
      transform: translateY(16px);
      animation: hiwRise .55s .1s ease forwards;
    }

    .hiw-eyebrow .eline {
      display: block;
      width: 34px;
      height: 2px;
      background: var(--red);
    }

    .hiw-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(50px, 7.5vw, 70px);
      line-height: .9;
      letter-spacing: 2px;
      color: var(--ink);
      opacity: 0;
      transform: translateY(24px);
      animation: hiwRise .7s .25s ease forwards;
    }

    .hiw-title em {
      font-style: normal;
      color: var(--red);
      position: relative;
    }

    .hiw-title em::after {
      content: '';
      position: absolute;
      bottom: 3px;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--red);
      opacity: .22;
      transform: scaleX(0);
      transform-origin: left;
      animation: hiwBar .5s 1s ease forwards;
    }

    .hiw-sub {
      font-size: 15px;
      font-weight: 400;
      color: var(--body-txt);
      line-height: 1.8;
      /*max-width: 520px;*/
      margin-top: 16px;
      opacity: 0;
      transform: translateY(16px);
      animation: hiwRise .65s .42s ease forwards;
    }

    .hiw-divider {
      display: flex;
      align-items: center;
      gap: 14px;
      margin: 34px 0 0;
      opacity: 0;
      animation: hiwRise .5s .58s ease forwards;
    }

    .hiw-divider .dl {
      display: block;
      height: 1px;
      flex: 1;
      background: var(--bdr);
    }

    .hiw-divider i {
      color: var(--red);
      font-size: 15px;
    }

    /* ── LAYOUT: left column header + right steps grid ── */
    .hiw-body {
      margin-top: 70px;
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 60px;
      align-items: start;
      opacity: 0;
      animation: hiwRise .8s .75s ease forwards;
    }

    @media(max-width:900px) {
      .hiw-body {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    /* ── LEFT SIDEBAR ── */
    .hiw-sidebar {
      position: sticky;
      top: 40px;
    }

    .hiw-sidebar-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--red);
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 2px;
      margin-bottom: 22px;
    }

    .hiw-sidebar-stat {
      border-left: 3px solid var(--red);
      padding: 14px 0 14px 18px;
      margin-bottom: 18px;
    }

    .hiw-sidebar-stat-val {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 42px;
      color: var(--ink);
      line-height: 1;
    }

    .hiw-sidebar-stat-lbl {
      font-size: 11px;
      color: var(--muted);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-top: 4px;
    }

    .hiw-sidebar-note {
      background: var(--white);
      border: 1px solid var(--bdr);
      border-left: 3px solid var(--red);
      border-radius: 3px;
      padding: 16px 18px;
      margin-top: 28px;
      font-size: 13px;
      color: var(--body-txt);
      line-height: 1.7;
    }

    .hiw-sidebar-note strong {
      display: block;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 6px;
    }

    /* ── STEPS GRID ── */
    .hiw-steps {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      position: relative;
    }

    @media(max-width:640px) {
      .hiw-steps {
        grid-template-columns: 1fr;
      }
    }

    /* connecting line between steps */
    .hiw-steps::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 1px;
      background: var(--bdr);
      transform: translateX(-50%);
      pointer-events: none;
    }

    @media(max-width:640px) {
      .hiw-steps::before {
        display: none;
      }
    }

    /* ── SINGLE STEP ── */
    .hiw-step {
      padding: 32px 28px 32px 0;
      border-bottom: 1px solid var(--bdr);
      position: relative;
      transition: background .3s;
    }

    .hiw-step:nth-child(even) {
      padding: 32px 0 32px 28px;
      border-left: 1px solid var(--bdr);
    }

    /* remove bottom border on last row */
    .hiw-step:nth-last-child(-n+2) {
      border-bottom: none;
    }

    @media(max-width:640px) {

      .hiw-step,
      .hiw-step:nth-child(even) {
        padding: 28px 0;
        border-left: none;
        border-bottom: 1px solid var(--bdr);
      }

      .hiw-step:last-child {
        border-bottom: none;
      }
    }

    /* step number badge */
    .hiw-step-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      background: var(--red);
      color: var(--white);
      font-family: 'Bebas Neue', sans-serif;
      font-size: 20px;
      letter-spacing: 1px;
      border-radius: 3px;
      margin-bottom: 18px;
      transition: transform .3s, box-shadow .3s;
      position: relative;
      z-index: 2;
    }

    .hiw-step:hover .hiw-step-num {
      transform: scale(1.1) rotate(-3deg);
      box-shadow: 0 6px 20px var(--shadow-h);
    }

    /* icon row */
    .hiw-step-ico {
      width: 46px;
      height: 46px;
      background: var(--card-head);
      border: 1px solid var(--bdr);
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--red);
      margin-bottom: 14px;
      transition: background .3s, color .3s, transform .3s;
    }

    .hiw-step:hover .hiw-step-ico {
      background: var(--red);
      color: var(--white);
      transform: scale(1.06);
    }

    .hiw-step-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 20px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--ink);
      line-height: 1.1;
      margin-bottom: 10px;
      position: relative;
    }

    /* animated underline on hover */
    .hiw-step-label::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--red);
      transition: width .35s ease;
    }

    .hiw-step:hover .hiw-step-label::after {
      width: 40px;
    }

    .hiw-step-desc {
      font-size: 13.5px;
      color: var(--body-txt);
      line-height: 1.8;
    }

    /* tag pills */
    .hiw-step-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 14px;
    }

    .hiw-tag {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--red);
      background: var(--red-bg);
      border: 1px solid var(--red-bdr);
      padding: 3px 10px;
      border-radius: 2px;
    }

    /* red accent left bar on hover */
    .hiw-step::before {
      content: '';
      position: absolute;
      left: -30px;
      top: 24px;
      bottom: 24px;
      width: 3px;
      background: var(--red);
      border-radius: 2px;
      transform: scaleY(0);
      transform-origin: top;
      transition: transform .35s ease;
    }

    .hiw-step:nth-child(even)::before {
      left: auto;
      right: 0;
      transform: scaleY(0);
    }

    .hiw-step:hover::before {
      transform: scaleY(1);
    }

    /* ── BOTTOM CTA STRIP ── */
    .hiw-cta {
      margin-top: 60px;
      background: var(--ink);
      border-radius: 4px;
      padding: 36px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
      position: relative;
      overflow: hidden;
      opacity: 0;
      animation: hiwRise .8s 1.1s ease forwards;
    }

    /* red left accent */
    .hiw-cta::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 5px;
      background: linear-gradient(180deg, var(--red-lt), var(--red-dk));
    }

    /* faint dot pattern */
    .hiw-cta::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255, 255, 255, .04) 1px, transparent 1px);
      background-size: 24px 24px;
      pointer-events: none;
    }

    .hiw-cta-text {
      position: relative;
      z-index: 2;
    }

    .hiw-cta-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(26px, 3.5vw, 40px);
      color: var(--white);
      letter-spacing: 2px;
      line-height: 1;
    }

    .hiw-cta-title span {
      color: var(--red-lt);
    }

    .hiw-cta-sub {
      font-size: 13px;
      color: rgba(255, 255, 255, .5);
      margin-top: 6px;
      letter-spacing: .5px;
    }

    .hiw-cta-btn {
      position: relative;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--red);
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 14px 28px;
      border: none;
      border-radius: 3px;
      cursor: pointer;
      transition: background .25s, transform .2s, box-shadow .25s;
      text-decoration: none;
      flex-shrink: 0;
    }

    .hiw-cta-btn:hover {
      background: var(--red-lt);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(181, 22, 25, .4);
    }

    .hiw-cta-btn:active {
      transform: translateY(0);
    }

    /* ── KEYFRAMES ── */
    @keyframes hiwRise {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes hiwBar {
      to {
        transform: scaleX(1);
      }
    }

    @keyframes hiwPulse {

      0%,
      100% {
        transform: scale(1);
        opacity: .3;
      }

      50% {
        transform: scale(1.25);
        opacity: .6;
      }
    }

    /* ── SCROLL-IN for steps ── */
    .hiw-step {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .5s ease, transform .5s ease, background .3s;
    }

    .hiw-step.visible {
      opacity: 1;
      transform: translateY(0);
    }