

        /* Animations */
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(32px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideUpDevice {
            from {
                opacity: 0;
                transform: translateY(50px) scale(0.96);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes gradientShift {

            0%,
            100% {
                background-position: 0% center;
            }

            50% {
                background-position: 200% center;
            }
        }

        @keyframes floatPhone {

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

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

        @keyframes shimmer {
            0% {
                left: -100%;
            }

            100% {
                left: 200%;
            }
        }

        .anim-slide-up {
            opacity: 0;
            animation: slideUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .anim-slide-device {
            opacity: 0;
            animation: slideUpDevice 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .gradient-text {
            background: linear-gradient(135deg, #e67e22, #f39c12, #e67e22);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 4s ease infinite;
        }

        .float-anim {
            animation: floatPhone 4s ease-in-out infinite;
        }


        /* ═══════════════ LOTTIE CONTAINER ═══════════════ */
        .lottie-container {
            position: relative;
            background: #e4e7f0;
            box-shadow:
                inset 5px 5px 12px #c5c8d4,
                inset -5px -5px 12px #ffffff;
            border-radius: 16px;
            border: 1px solid rgba(197, 200, 212, 0.35);
            overflow: hidden;
            transition: box-shadow 0.4s ease;
        }

        .nm-card:hover .lottie-container,
        .nm-card-featured:hover .lottie-container {
            box-shadow:
                inset 6px 6px 14px #c0c3cf,
                inset -6px -6px 14px #ffffff;
        }

        .lottie-container::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(197, 200, 212, 0.08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(197, 200, 212, 0.08) 1px, transparent 1px);
            background-size: 20px 20px;
            pointer-events: none;
            z-index: 0;
        }

        .lottie-container::after {
            content: '';
            position: absolute;
            inset: 10px;
            border: 1px solid rgba(197, 200, 212, 0.15);
            border-radius: 8px;
            pointer-events: none;
            z-index: 0;
            transition: border-color 0.4s ease;
        }

        .nm-card:hover .lottie-container::after,
        .nm-card-featured:hover .lottie-container::after {
            border-color: rgba(230, 126, 34, 0.15);
        }

        .lottie-container-featured {
            border-radius: 20px;
            border: 1.5px solid rgba(230, 126, 34, 0.08);
        }

        .lottie-container-featured::after {
            inset: 12px;
            border-radius: 10px;
            border-color: rgba(230, 126, 34, 0.08);
        }

        .nm-card-featured:hover .lottie-container-featured::after {
            border-color: rgba(230, 126, 34, 0.2);
        }

        .lottie-wrap {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lottie-wrap lottie-player {
            width: 100% !important;
            height: 100% !important;
        }

        /* ═══════════════ FEATURED LOTTIE — 800px wide, auto height ═══════════════ */
        .lottie-featured-wrap {
            width: 770px;
            max-width: 350%;
            height: auto;
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            .lottie-featured-wrap {
                max-width: 80% !important;
            }
        }

        /* ═══════════════ CONTAINER OVERLAY BTN ═══════════════ */
        .container-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: center;
            padding-bottom: 14%;
            z-index: 5;
            opacity: 0;
            transition: opacity 0.35s ease;
            background: linear-gradient(to top, rgba(228, 231, 240, 0.88) 0%, rgba(228, 231, 240, 0.35) 45%, transparent 100%);
            border-radius: inherit;
        }

        .lottie-container:hover .container-overlay {
            opacity: 1;
        }

        .container-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 11px 26px;
            border-radius: 10px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            cursor: pointer;
            border: none;
            color: white;
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #e67e22, #f39c12);
            box-shadow: 0 6px 24px rgba(230, 126, 34, 0.35), 4px 4px 10px rgba(197, 200, 212, 0.3), -4px -4px 10px rgba(255, 255, 255, 0.4);
            transform: translateY(8px);
            transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            text-decoration: none;
        }

        .container-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .container-btn:hover::before {
            left: 100%;
        }

        .container-btn:hover {
            transform: translateY(0);
            box-shadow: 0 10px 36px rgba(230, 126, 34, 0.5), 2px 2px 5px rgba(197, 200, 212, 0.3), -2px -2px 5px rgba(255, 255, 255, 0.4);
        }

        /* ═══════════════ CARD ACCENT BAR ═══════════════ */
        .card-accent-bar {
            height: 3px;
            border-radius: 3px 3px 0 0;
            background: linear-gradient(90deg, #e67e22, #f39c12, #e67e22);
            background-size: 200% 100%;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .nm-card:hover .card-accent-bar {
            opacity: 1;
            animation: barShimmer 2s ease infinite;
        }

        .card-accent-bar-featured {
            height: 4px;
            opacity: 0.5;
            background: linear-gradient(90deg, transparent, #e67e22, #f39c12, #e67e22, transparent);
            background-size: 200% 100%;
            animation: barShimmer 3s ease infinite;
        }

        .nm-card-featured:hover .card-accent-bar-featured {
            opacity: 1;
        }

        @keyframes barShimmer {
            0% {
                background-position: 200% 0;
            }

            100% {
                background-position: -200% 0;
            }
        }

        /* ═══════════════ SHINE SWEEP ═══════════════ */
        .nm-card::before,
        .nm-card-featured::before {
            content: '';
            position: absolute;
            top: 0;
            left: -130%;
            width: 50%;
            height: 100%;
            background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.07) 50%, transparent 70%);
            transition: left 0.75s ease;
            z-index: 20;
            pointer-events: none;
            border-radius: inherit;
        }

        .nm-card:hover::before,
        .nm-card-featured:hover::before {
            left: 130%;
        }

        .nm-card-featured {
            background: #e4e7f0;
            box-shadow: 10px 10px 28px #bfc2ce, -10px -10px 28px #ffffff;
            border-radius: 24px;
            border: 1.5px solid rgba(230, 126, 34, 0.22);
            transition: box-shadow 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
        }

        .nm-card-featured:hover {
            box-shadow: 14px 14px 36px #b8bbc7, -14px -14px 36px #ffffff;
            transform: translateY(-5px);
            border-color: rgba(230, 126, 34, 0.25);
        }

        /* ═══════════════ FEATURED GLOW ═══════════════ */
        .featured-glow {
            position: absolute;
            top: -60px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 140px;
            background: radial-gradient(ellipse, rgba(230, 126, 34, 0.07), transparent 70%);
            pointer-events: none;
            z-index: 0;
            opacity: 0.5;
            transition: opacity 0.4s ease;
        }

        .nm-card-featured:hover .featured-glow {
            opacity: 1;
        }

        /* ═══════════════ TAGS ═══════════════ */
        .nm-tag {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 6px 13px;
            border-radius: 8px;
            font-size: 10.5px;
            font-weight: 600;
            letter-spacing: 0.03em;
            color: #6b7085;
            background: #e4e7f0;
            box-shadow: 2px 2px 5px #c5c8d4, -2px -2px 5px #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.4);
            transition: all 0.25s ease;
        }

        .nm-tag:hover {
            color: #e67e22;
            box-shadow: 1px 1px 3px #c5c8d4, -1px -1px 3px #ffffff;
            transform: translateY(-1px);
        }

        /* ═══════════════ STEP NUMBER ═══════════════ */
        .step-number {
            font-family: 'Manrope', sans-serif;
            font-weight: 800;
            font-size: 52px;
            line-height: 1;
            color: transparent;
            -webkit-text-stroke: 1.5px rgba(197, 200, 212, 0.5);
            transition: -webkit-text-stroke-color 0.4s ease;
            user-select: none;
        }

        .nm-card:hover .step-number,
        .nm-card-featured:hover .step-number {
            -webkit-text-stroke-color: rgba(230, 126, 34, 0.25);
        }

        .step-number span {
            -webkit-text-stroke: 0;
            color: #e67e22;
            font-size: 14px;
            letter-spacing: 0.2em;
            vertical-align: super;
        }

        /* ═══════════════ META ═══════════════ */
        .meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            font-weight: 500;
            color: #8a8fa3;
        }

        .meta-dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #c5c8d4;
            box-shadow: 1px 1px 2px #c5c8d4, -1px -1px 2px #ffffff;
        }

        /* ═══════════════ SEPARATOR ═══════════════ */
        .nm-sep {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(197, 200, 212, 0.5), transparent);
        }

        /* ═══════════════ FLOATING DOTS ═══════════════ */
        .float-dot {
            position: absolute;
            border-radius: 50%;
            background: #e4e7f0;
            box-shadow: 2px 2px 6px #c5c8d4, -2px -2px 6px #ffffff;
            pointer-events: none;
        }

        @keyframes float {

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

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

        .float-1 {
            animation: float 4.5s ease-in-out infinite;
        }

        .float-2 {
            animation: float 5.5s ease-in-out 1.2s infinite;
        }

        .float-3 {
            animation: float 6s ease-in-out 2.5s infinite;
        }


        /* ═══════════════ DESC LIST ═══════════════ */
        .desc-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .desc-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 13px;
            color: #6b7085;
            line-height: 1.6;
            padding: 3px 0;
        }

        .desc-list li .li-dot {
            flex-shrink: 0;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #e67e22;
            margin-top: 7px;
            box-shadow: 0 0 6px rgba(230, 126, 34, 0.3);
        }

        /* ═══════════════ CONTAINER BOTTOM BAR ═══════════════ */
        .container-bottom-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 14px;
            z-index: 4;
            background: linear-gradient(to top, rgba(228, 231, 240, 0.7), transparent);
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        .lottie-container:hover .container-bottom-bar {
            opacity: 0;
        }

        .container-label {
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #a0a4b5;
        }

        .container-dots {
            display: flex;
            gap: 4px;
        }

        .container-dots span {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #c5c8d4;
        }

        .container-dots span:first-child {
            background: #e67e22;
            box-shadow: 0 0 6px rgba(230, 126, 34, 0.3);
        }

        /* ═══════════════ SOCIAL PROOF ═══════════════ */
        .social-proof-card {
            background: #e4e7f0;
            box-shadow: inset 3px 3px 8px #c5c8d4, inset -3px -3px 8px #ffffff;
            border-radius: 14px;
            border: 1px solid rgba(197, 200, 212, 0.3);
            padding: 16px 18px;
            position: relative;
        }

        .social-proof-card .quote-mark {
            position: absolute;
            top: 8px;
            left: 14px;
            font-size: 32px;
            line-height: 1;
            color: rgba(230, 126, 34, 0.15);
            font-family: Georgia, serif;
            pointer-events: none;
        }

        .star-rating {
            display: flex;
            gap: 2px;
        }

        .star-rating iconify-icon {
            color: #f39c12;
            filter: drop-shadow(0 1px 2px rgba(243, 156, 18, 0.3));
        }

        /* ═══════════════ STAT PILL ═══════════════ */
        .stat-pill {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            border-radius: 10px;
            background: #e4e7f0;
            box-shadow: 3px 3px 8px #c5c8d4, -3px -3px 8px #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.4);
        }

        .stat-pill .stat-val {
            font-family: 'Manrope', sans-serif;
            font-weight: 800;
            font-size: 18px;
            color: #e67e22;
            line-height: 1;
        }

        .stat-pill .stat-label {
            font-size: 10px;
            font-weight: 600;
            color: #8a8fa3;
            letter-spacing: 0.04em;
            line-height: 1.3;
        }

        /* ═══════════════ CLIENT AVATAR ═══════════════ */
        .client-avatar {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e67e22, #f39c12);
            box-shadow: 2px 2px 5px #c5c8d4, -2px -2px 5px #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 700;
            color: white;
            font-family: 'Manrope', sans-serif;
            flex-shrink: 0;
        }

        /* ═══════════════ REVIEWS GRID ═══════════════ */
        .reviews-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .review-mini {
            background: #e4e7f0;
            box-shadow: inset 2px 2px 6px #c5c8d4, inset -2px -2px 6px #ffffff;
            border-radius: 12px;
            border: 1px solid rgba(197, 200, 212, 0.2);
            padding: 14px 16px;
            position: relative;
        }

        .review-mini-text {
            font-size: 11.5px;
            color: #6b7085;
            line-height: 1.55;
        }

        .review-mini-text strong {
            color: #1e2028;
            font-weight: 700;
        }

        .review-mini .review-author {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 10px;
        }

        .review-mini .author-avatar {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e67e22, #f39c12);
            box-shadow: 1px 1px 3px #c5c8d4, -1px -1px 3px #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 8px;
            font-weight: 700;
            color: white;
            font-family: 'Manrope', sans-serif;
            flex-shrink: 0;
        }

        .review-mini .author-name {
            font-size: 10px;
            font-weight: 700;
            color: #1e2028;
        }

        .review-mini .author-role {
            font-size: 9px;
            color: #8a8fa3;
        }

        .review-mini .mini-stars iconify-icon {
            width: 9px;
        }

        /* ── Hero Staggered Entrance ── */
        .hero-anim {
            opacity: 0;
            transform: translateY(28px);
            animation: heroSlideUp .9s cubic-bezier(.16, 1, .3, 1) forwards;
            animation-delay: var(--d, 0s);
        }

        .hero-anim-inline {
            opacity: 0;
            transform: translateY(20px);
            animation: heroSlideUpInline 1s cubic-bezier(.16, 1, .3, 1) forwards;
            animation-delay: var(--d, 0s);
        }

        @keyframes heroSlideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes heroSlideUpInline {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }

            55% {
                opacity: 1;
                transform: translateY(-1px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ── H1 Moving Gradient Text ── */
        .hero-gradient-text {
            background: linear-gradient(90deg,
                    #e67e22 0%,
                    #f39c12 15%,
                    #e67e22 30%,
                    #d35400 45%,
                    #f39c12 60%,
                    #e67e22 75%,
                    #f5b041 90%,
                    #e67e22 100%);
            background-size: 300% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 6s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }


        .img-overlay {
            background: linear-gradient(180deg, transparent 0%, transparent 30%, rgba(0, 0, 0, 0.8) 100%);
        }

        .animated-link {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            font-weight: 500;
            color: #1e2028;
            transition: color 0.25s;
        }

        .animated-link:hover {
            color: #e67e22;
        }

        .animated-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #e67e22;
            transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .animated-link:hover::after {
            width: 100%;
        }

        .lottie-frame {
            background: #e4e7f0;
            box-shadow: 8px 8px 20px #c5c8d4, -8px -8px 20px #ffffff;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.6);
        }

        .float-badge {
            background: #e4e7f0;
            box-shadow: 4px 4px 10px #c5c8d4, -4px -4px 10px #ffffff;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .carousel-wrap {
            overflow: hidden;
            position: relative;
            border-radius: 20px;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            width: 100%;
            margin: 0;
            padding: 0;
        }

        .carousel-slide {
            min-width: 100%;
            flex-shrink: 0;
            margin: 0;
            padding: 0;
            width: 100%;
        }

        .carousel-slide img {
            display: block;
            width: 100% !important;
            height: auto !important;
            object-fit: cover;
            border-radius: 1rem;
        }

        @media (min-width: 768px) {
            .carousel-slide img {
                height: 18rem !important;
            }
        }

        @media (max-width: 767px) {
            .lottie-featured-wrap {
                max-width: 70%;
            }

            .carousel-slide img {
                height: 14rem !important;
            }
        }

        .tab-on {
            background: #e67e22;
            color: white;
            box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.15), inset -3px -3px 6px rgba(255, 255, 255, 0.1), 0 0 15px rgba(230, 126, 34, 0.25);
        }

        .tab-off {
            background: #e4e7f0;
            color: #7a7f8e;
            box-shadow: 4px 4px 8px #c5c8d4, -4px -4px 8px #ffffff;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .tab-off:hover {
            color: #e67e22;
        }

        .carousel-nav {
            background: rgba(228, 231, 240, 0.9);
            backdrop-filter: blur(4px);
            box-shadow: 3px 3px 8px #c5c8d4, -3px -3px 8px #ffffff;
            transition: all 0.25s;
            cursor: pointer;
            color: #7a7f8e;
        }

        .carousel-nav:hover {
            background: #e67e22;
            color: white;
        }

        .dot-on {
            background: #e67e22;
            box-shadow: 0 0 8px rgba(230, 126, 34, 0.5);
        }

        .dot-off {
            background: #c5c8d4;
        }

        .image-frame {
            background: #e4e7f0;
            box-shadow: 10px 10px 24px #c5c8d4, -10px -10px 24px #ffffff;
            border-radius: 28px;
            border: 1px solid rgba(255, 255, 255, 0.6);
        }

        .accent-pulse {
            position: relative;
        }

        .accent-pulse::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 100%;
            height: 2px;
            background: #e67e22;
            border-radius: 2px;
            animation: pulseWidth 3s ease-in-out infinite;
        }

        @keyframes pulseWidth {

            0%,
            100% {
                transform: scaleX(0.6);
                opacity: 0.5;
            }

            50% {
                transform: scaleX(1);
                opacity: 1;
            }
        }

        .faq-item {
            background: #e4e7f0;
            box-shadow: 5px 5px 12px #c5c8d4, -5px -5px 12px #ffffff;
            border-radius: 18px;
            cursor: pointer;
            transition: all 0.2s ease;
            border: 1px solid rgba(255, 255, 255, 0.4);
        }

        .faq-item.active {
            box-shadow: inset 3px 3px 8px #c5c8d4, inset -3px -3px 8px #ffffff;
        }

        .faq-arrow {
            transition: transform 0.25s ease;
        }

        .faq-item.active .faq-arrow {
            transform: rotate(180deg);
            box-shadow: inset 2px 2px 4px #c5c8d4, inset -2px -2px 4px #ffffff;
        }

        .faq-answer {
            display: none;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        .faq-number {
            background: #e4e7f0;
            box-shadow: inset 2px 2px 5px #c5c8d4, inset -2px -2px 5px #ffffff;
            transition: all 0.25s;
        }

        .faq-item.active .faq-number {
            background: linear-gradient(135deg, #e67e22, #f39c12);
            color: white;
            box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
            transform: scale(1.05);
        }

        .marquee-track {
            display: flex;
            gap: 3rem;
            animation: marqueeScroll 25s linear infinite;
            width: max-content;
        }

        @keyframes marqueeScroll {
            0% {
                transform: translateX(0);
            }

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

        .marquee-vertical {
            overflow: hidden;
            mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
        }

        .marquee-track-vertical {
            animation: marqueeUp 25s linear infinite;
        }

        .marquee-track-vertical-reverse {
            animation: marqueeDown 25s linear infinite;
        }

        .marquee-horizontal {
            overflow: hidden;
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        }

        .marquee-track-horizontal {
            display: flex;
            width: max-content;
            animation: marqueeLeft 30s linear infinite;
        }

        .marquee-track-horizontal-reverse {
            display: flex;
            width: max-content;
            animation: marqueeRight 30s linear infinite;
        }

        @keyframes marqueeUp {
            0% {
                transform: translateY(0);
            }

            100% {
                transform: translateY(-50%);
            }
        }

        @keyframes marqueeDown {
            0% {
                transform: translateY(-50%);
            }

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

        @keyframes marqueeLeft {
            0% {
                transform: translateX(0);
            }

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

        @keyframes marqueeRight {
            0% {
                transform: translateX(-50%);
            }

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

        .marquee-vertical:hover .marquee-track-vertical,
        .marquee-vertical:hover .marquee-track-vertical-reverse,
        .marquee-horizontal:hover .marquee-track-horizontal,
        .marquee-horizontal:hover .marquee-track-horizontal-reverse {
            animation-play-state: paused;
        }

        .text-nm-txt {
            color: #1e2028;
        }

        .text-nm-muted {
            color: #7a7f8e;
        }

        .text-nm-accent {
            color: #e67e22;
        }

        /*  .sr {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .sr-l {
            opacity: 0;
            transform: translateX(-70px);
            transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .sr-r {
            opacity: 0;
            transform: translateX(70px);
            transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .sr-s {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .sr.on,
        .sr-l.on,
        .sr-r.on,
        .sr-s.on {
            opacity: 1;
            transform: none;
        }

        .d1 {
            transition-delay: .1s;
        }

        .d2 {
            transition-delay: .2s;
        }

        .d3 {
            transition-delay: .3s;
        }

        .d4 {
            transition-delay: .4s;
        }

        .d5 {
            transition-delay: .5s;
        }

        .d6 {
            transition-delay: .6s;
        }

        .d7 {
            transition-delay: 0.56s;
        }

        .d8 {
            transition-delay: 0.64s;
        }

        .fade-up {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-left {
            opacity: 0;
            transform: translateX(-24px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-right {
            opacity: 0;
            transform: translateX(24px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-right.visible {
            opacity: 1;
            transform: translateX(0);
        }*/

        .scale-in {
            opacity: 0;
            transform: scale(0.96);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        .animate-pulse {
            animation: softPulse 3s infinite;
        }

        @keyframes softPulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.7;
            }
        }

        ::-webkit-scrollbar {
            width: 5px;
        }

        ::-webkit-scrollbar-track {
            background: #e4e7f0;
        }

        ::-webkit-scrollbar-thumb {
            background: #e67e22;
            border-radius: 3px;
        }

        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* ══════════ SECTION HEADER (CENTERED ON MOBILE) ══════════ */
        .section-header-row {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            margin-bottom: 1.5rem;
        }

        @media (min-width: 640px) {
            .section-header-row {
                gap: 1.25rem;
                margin-bottom: 1.5rem;
            }
        }

        @media (min-width: 768px) {
            .section-header-row {
                gap: 2rem;
                margin-bottom: 1.5rem;
            }

        }

        .section-header-divider {
            display: none;
            flex: 1;
            min-width: 0;
        }

        @media (min-width: 640px) {
            .section-header-divider {
                display: block;
            }
        }

        .section-header-title {
            font-family: 'Manrope', sans-serif;
            font-weight: 900;
            color: #1e2028;
            line-height: 1.15;
            white-space: normal;
            text-align: center;
            flex-shrink: 0;
            min-width: 0;
            width: 100%;
        }

        /* ══════════ RIBBON-RIGHT (INCREASED SIZE) ══════════ */
        .ribbon-right {
            --r: 2.2em;
            border-block: 0.65em solid transparent;
            padding-inline: 0.55em calc(var(--r) + 0.35em);
            line-height: 2;
            clip-path: polygon(0 0,
                    100% 0,
                    100% 0.3em,
                    calc(100% - var(--r)) 50%,
                    100% calc(100% - 0.3em),
                    100% 100%,
                    0 100%);
            background:
                radial-gradient(0.25em 50% at left, rgba(0, 0, 0, 0.14), transparent) border-box,
                #e67e22 padding-box;
            width: fit-content;
            display: inline-block;
            vertical-align: baseline;
        }

        .ribbon-text {
            font-size: inherit;
            font-weight: inherit;
            color: #fff;
            line-height: 2;
        }

        /* ══════════ RIBBON-VERNOX (INCREASED SIZE) ══════════ */
        .ribbon-vernox {
            font-size: 13px;
            font-weight: 700;
            font-family: 'Sora', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            color: #fff;
            --f: 0.55em;
            position: absolute;
            top: 0;
            left: 0;
            line-height: 2;
            padding-inline: 1.2lh;
            padding-bottom: var(--f);
            border-image: conic-gradient(#0008 0 0) 51% / var(--f);
            clip-path: polygon(100% calc(100% - var(--f)), 100% 100%,
                    calc(100% - var(--f)) calc(100% - var(--f)),
                    var(--f) calc(100% - var(--f)),
                    0 100%, 0 calc(100% - var(--f)),
                    999px calc(100% - var(--f) - 999px),
                    calc(100% - 999px) calc(100% - var(--f) - 999px));
            transform: translate(calc((cos(45deg) - 1) * 100%), -100%) rotate(-45deg);
            transform-origin: 100% 100%;
            z-index: 10;
        }

        .ribbon-bestseller {
            background-color: #e67e22;
        }

        .ribbon-popular {
            background-color: #3b82f6;
        }

        .ribbon-essential {
            background-color: #1e2028;
        }

        /* ══════════ SIDE TILES HIDE ON TINY SCREENS ══════════ */
        @media (max-width: 400px) {
            .side-tiles-col {
                display: none !important;
            }

            .features-list {
                flex: 1 1 100% !important;
            }
        }

        /* Links: inset at rest → full nm-card raised on hover */
        .nm-link-hover {
            transition: box-shadow 0.35s ease, transform 0.35s ease;
        }

        .nm-link-hover:hover {
            box-shadow: 8px 8px 20px #c5c8d4, -8px -8px 20px #ffffff;
            transform: translateY(-2px);
        }

        /* Column separator */
        .col-sep::after {
            content: '';
            position: absolute;
            right: -15px;
            top: 8%;
            height: 84%;
            width: 1px;
            background: linear-gradient(to bottom, transparent, rgba(240, 113, 10, 0.5) 20%, rgb(240, 112, 0.6) 50%, rgba(236, 122, 15, 0.4) 70%, transparent);
            box-shadow: inset -1px 0 2px rgba(255, 255, 255, 0.6);
            border-radius: 2px;
        }

        @media (max-width: 639px) {
            .col-sep::after {
                display: none;
            }
        }

        @media (min-width: 640px) and (max-width: 1023px) {
            .col-sep-md::after {
                display: none;
            }
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(28px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .anim-up {
            opacity: 0;
            animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            animation-play-state: paused;
        }

        #scrollTop {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.4s ease, visibility 0.4s ease;
        }

        #scrollTop.show {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        /* Client logo tooltip */
        .client-logo {
            position: relative;
        }

        .client-logo .tip {
            position: absolute;
            bottom: calc(100% + 10px);
            left: 50%;
            transform: translateX(-50%) translateY(6px);
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .client-logo .tip::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 5px solid transparent;
            border-top-color: #e67e22;
        }

        .client-logo:hover .tip {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }