        /* ========================================
           MOBILE-FIRST CSS
           Base = mobile, escala com min-width
        ======================================== */

        /* ===== RESET & BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        :root {
            --orange: #FA7921;
            --orange-dark: #e06a1a;
            --black: #1A1A1A;
            --black-deep: #111111;
            --cream: #F2EFE4;
            --white: #FFFFFF;
            --gray: #888888;
            --gray-light: #cccccc;
        }

        html {
            scroll-behavior: auto;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--cream);
            color: var(--black);
            overflow-x: hidden;
            font-weight: 400;
            font-size: 16px;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* ===== NAVBAR (Mobile base) ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 16px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease, padding 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(10px);
            padding: 12px 20px;
        }

        .nav-logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--white);
            letter-spacing: -0.5px;
        }

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

        /* Mobile: menu escondido, hamburger visível */
        .nav-links {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            height: 100dvh;
            background: rgba(17, 17, 17, 0.98);
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 28px;
            list-style: none;
        }

        .nav-links.active {
            display: flex;
        }

        .nav-links a {
            font-size: 1.1rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 0.5px;
            text-transform: uppercase;
            transition: color 0.3s;
            padding: 8px 16px;
            min-height: 44px;
            display: flex;
            align-items: center;
        }

        .nav-links a:hover,
        .nav-links a:active {
            color: var(--orange);
        }

        .nav-cta {
            background: var(--orange);
            color: var(--white) !important;
            padding: 14px 28px !important;
            border-radius: 8px;
            font-weight: 600;
            transition: background 0.3s;
        }

        .nav-cta:active {
            background: var(--orange-dark);
        }

        .menu-toggle {
            display: flex;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1001;
            padding: 8px;
            min-height: 44px;
            min-width: 44px;
            justify-content: center;
            align-items: center;
        }

        .menu-toggle span {
            width: 26px;
            height: 2px;
            background: var(--white);
            transition: all 0.3s;
            display: block;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* ===== HERO - TEXT IMAGE REVEAL ===== */
        .hero-intro {
            height: 100vh;
            height: 100dvh;
            width: 100%;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .hero-intro-sticky {
            position: absolute;
            inset: 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-bg-video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .hero-bg-gradient {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.65) 60%, var(--black) 100%);
            z-index: 1;
        }

        .hero-intro-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 0 20px;
        }

        .hero-intro h1 {
            font-family: 'Inter', sans-serif;
            font-size: 0.75rem;
            font-weight: 300;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gray);
            opacity: 0;
            animation: fadeInUp 1s ease 0.5s forwards;
            text-align: center;
            line-height: 1.6;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

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

        .hero-scroll-indicator {
            position: absolute;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            opacity: 0;
            animation: fadeInUp 1s ease 1.2s forwards;
        }

        .hero-scroll-indicator span {
            font-size: 0.65rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gray);
        }

        .scroll-line {
            width: 1px;
            height: 32px;
            background: linear-gradient(to bottom, var(--orange), transparent);
            animation: scrollPulse 2s ease-in-out infinite;
        }

        @keyframes scrollPulse {

            0%,
            100% {
                opacity: 0.3;
                transform: scaleY(0.6);
            }

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

        .hero-container {
            width: 100%;
            min-height: 100vh;
            min-height: 100dvh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: var(--black);
            padding: 40px 16px;
        }

        .line {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            transform: translateZ(0);
            line-height: 0.9;
        }

        .line span {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(2.5rem, 7vw + 0.5rem, 7rem);
            font-weight: 800;
            letter-spacing: -1px;
            display: inline-block;
            overflow: hidden;
            color: var(--cream);
            text-transform: uppercase;
            line-height: 0.9;
            padding: 0;
            margin: 0;
        }

        .line .highlight {
            color: var(--orange);
        }

        .img-span {
            height: clamp(48px, 9vw + 5px, 120px);
            width: 0;
            border-radius: 6px;
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
            will-change: width;
            transform: translateZ(0);
        }

        .img-span img,
        .img-span video {
            height: 100%;
            width: 100px;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 6px;
            object-fit: cover;
            object-position: center;
        }

        .hero-outro {
            height: 30vh;
            background: var(--black);
        }

        /* ===== SECTION COMMON ===== */
        section {
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-label {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 12px;
            display: block;
        }

        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--black);
            letter-spacing: -0.5px;
            line-height: 1.15;
        }

        .section-title-light {
            color: var(--cream);
        }

        /* ===== SERVICES ===== */
        .services {
            background: var(--cream);
            padding: 72px 20px;
        }

        /* ===== PORTFOLIO (CAROUSEL) ===== */
        .portfolio {
            background: var(--black);
            padding: 0;
            overflow: hidden;
        }

        .portfolio .section-header {
            padding: 56px 20px 0;
            position: relative;
            z-index: 2;
        }

        /* Carousel container — mobile-first: altura generosa no celular */
        .portfolio-carousel {
            position: relative;
            height: 88vh;
            min-height: 520px;
            overflow: hidden;
            pointer-events: none;
        }

        /* Card: ocupa quase toda a tela no mobile, mas mostra um "pedacinho" do próximo card (Mobile-First) */
        .portfolio-carousel-item {
            --items: 3;
            --width: min(88vw, 480px);
            --height: min(72vh, 600px);
            --x: calc(var(--active) * 280%);
            --y: calc(var(--active) * 5%);
            --rot: calc(var(--active) * 4deg);
            --opacity: calc(var(--zIndex) / var(--items) * 3 - 2);
            overflow: hidden;
            position: absolute;
            z-index: var(--zIndex);
            width: var(--width);
            height: var(--height);
            margin: calc(var(--height) * -0.5) 0 0 calc(var(--width) * -0.5);
            border-radius: 20px;
            top: 50%;
            left: 50%;
            user-select: none;
            transform-origin: 0% 100%;
            box-shadow: 0 20px 80px 10px rgba(0, 0, 0, .7);
            background: var(--black-deep);
            pointer-events: all;
            cursor: pointer;
            transform: translate(var(--x), var(--y)) rotate(var(--rot));
            transition: transform .8s cubic-bezier(0, 0.02, 0, 1);
        }

        /* Em telas maiores, card um pouco mais largo mas ainda grande */
        @media (min-width: 600px) {
            .portfolio-carousel-item {
                --width: min(72vw, 560px);
                --height: min(78vh, 680px);
            }

            .portfolio-carousel {
                height: 92vh;
            }
        }

        @media (min-width: 900px) {
            .portfolio-carousel-item {
                --width: min(52vw, 620px);
                --height: min(82vh, 720px);
                /* Fan out the cards on desktop to show a piece of the next ones */
                --x: calc(var(--active) * 150%);
                --y: calc(var(--active) * 10%);
                --rot: calc(var(--active) * 5deg);
            }
        }

        .portfolio-carousel-box {
            position: absolute;
            z-index: 1;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transition: opacity .8s cubic-bezier(0, 0.02, 0, 1);
            opacity: var(--opacity);
        }

        .portfolio-carousel-box::before {
            content: '';
            position: absolute;
            z-index: 1;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, .75) 100%);
        }

        .portfolio-carousel-item .pc-title {
            position: absolute;
            z-index: 2;
            color: #fff;
            bottom: 22px;
            left: 22px;
            right: 22px;
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(18px, 4vw, 26px);
            font-weight: 700;
            text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
            line-height: 1.2;
        }

        .portfolio-carousel-item .pc-tag {
            position: absolute;
            z-index: 2;
            bottom: 64px;
            left: 22px;
            font-size: 0.6rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--orange);
            border: 1px solid var(--orange);
            padding: 4px 10px;
            border-radius: 20px;
        }

        .portfolio-carousel-item .pc-num {
            position: absolute;
            z-index: 2;
            color: rgba(255, 255, 255, .14);
            top: 14px;
            left: 20px;
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(56px, 14vw, 110px);
            font-weight: 800;
            line-height: 1;
        }

        .portfolio-carousel-item img,
        .portfolio-carousel-item video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            pointer-events: none;
            display: block;
        }

        .portfolio-carousel-item iframe {
            width: 100%;
            height: 100%;
            transform: scale(1.4);
            transform-origin: center center;
            border: none;
            pointer-events: none;
            display: block;
        }

        /* Hint */
        .portfolio-carousel-hint {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 700;
            font-size: 0.75rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            pointer-events: none;
            white-space: nowrap;
        }

        /* ===== SCROLL TEXT (MARQUEE) ===== */
        .scroll-text-section {
            background: var(--orange);
            padding: 40px 0;
            overflow: hidden;
        }

        .scroll-track {
            display: flex;
            gap: 40px;
            white-space: nowrap;
            will-change: transform;
        }

        .scroll-item {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -1px;
            color: var(--orange);
            -webkit-text-stroke: 1.5px var(--black);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .scroll-item .filled {
            color: var(--black);
            -webkit-text-stroke: 0;
        }

        .scroll-dot {
            width: 10px;
            height: 10px;
            background: var(--black);
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* ===== ABOUT (PARALLAX READY) ===== */
        .about {
            background: var(--cream);
            padding: 72px 20px;
            overflow: hidden;
        }

        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 40px;
            align-items: center;
        }

        .about-image {
            position: relative;
            width: 100%;
            max-width: 500px;
            perspective: 1000px;
        }

        .about-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
            background: var(--black);
        }

        .about-image-wrapper img {
            width: 100%;
            height: 480px;
            object-fit: cover;
            display: block;
            filter: grayscale(20%);
            transition: transform 0.1s ease-out;
            transform: scale(1.1);
        }

        .about-image-accent {
            position: absolute;
            top: -15px;
            right: -15px;
            width: 100px;
            height: 100px;
            border: 4px solid var(--orange);
            border-radius: 15px;
            z-index: -1;
            opacity: 0.5;
        }

        .about-text {
            width: 100%;
        }

        .about-text h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 16px;
            color: var(--black);
        }

        .about-text h2 span {
            color: var(--orange);
        }

        .about-text p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: #555;
            margin-bottom: 12px;
        }

        .about-stats {
            display: flex;
            gap: 24px;
            margin-top: 28px;
            padding-top: 28px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            justify-content: center;
        }

        .stat {
            text-align: center;
        }

        .stat strong {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--orange);
            display: block;
        }



        .stat span {
            font-size: 0.7rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--gray);
        }

        /* ===== CONTACT (List) ===== */
        .contact {
            background: var(--black);
            padding: 100px 20px;
        }

        .contact-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-info h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1.15;
            margin-bottom: 16px;
        }

        .contact-info h2 span {
            color: var(--orange);
        }

        .contact-info p {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--gray);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-links {
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
        }

        /* PREMIUM BUTTON STYLES */
        .contact-button {
            position: relative;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px 32px;
            border-radius: 100px;
            /* Pill shape */
            text-decoration: none;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .btn-content {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-button svg {
            width: 28px;
            height: 28px;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        /* PRIMARY (WhatsApp) */
        .primary-btn {
            background: linear-gradient(135deg, #FA7921 0%, #E06A1A 100%);
            color: var(--white);
            box-shadow: 0 10px 30px rgba(250, 121, 33, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .primary-btn svg {
            fill: var(--white);
        }

        .primary-btn:hover {
            box-shadow: 0 15px 40px rgba(250, 121, 33, 0.5);
            transform: translateY(-2px);
        }

        .hover-glow {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transform: skewX(-20deg);
            transition: left 0.5s;
            z-index: 1;
        }

        .primary-btn:hover .hover-glow {
            left: 100%;
            transition: left 0.7s;
        }

        /* SECONDARY ROW (Socials) */
        .secondary-links-row {
            display: flex;
            width: 100%;
            gap: 16px;
        }

        @media (max-width: 480px) {
            .secondary-links-row {
                flex-direction: column;
            }
        }

        /* SECONDARY (Socials) */
        .secondary-btn {
            background: rgba(255, 255, 255, 0.05);
            /* Glass Dark */
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
        }

        .secondary-btn svg {
            fill: rgba(255, 255, 255, 0.8);
        }

        .secondary-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .secondary-btn:hover svg {
            fill: var(--white);
            transform: scale(1.1);
        }

        /* Mobile specific adjustments */
        @media (max-width: 768px) {
            .contact-info h2 {
                font-size: 1.8rem;
            }

            .contact-button {
                padding: 16px 24px;
            }

            .btn-content {
                font-size: 0.95rem;
            }
        }

        /* Floating WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: var(--white);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
        }

        .whatsapp-float:active {
            transform: translateY(-1px) scale(1);
        }

        .whatsapp-icon {
            width: 32px;
            height: 32px;
            fill: var(--white);
        }

        /* Pulse animation when inactive */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        .whatsapp-float.pulse {
            animation: pulse 2s infinite;
        }



        /* ===== FOOTER (EXPLOSION) ===== */
        .footer {
            background: var(--black-deep);
            padding: 80px 20px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .footer-line {
            width: 40px;
            height: 2px;
            background: var(--orange);
            margin: 0 auto 16px;
        }

        .footer p {
            font-size: 0.75rem;
            color: var(--gray);
            letter-spacing: 0.5px;
        }

        /* ========================================
           TABLET (min-width: 768px)
        ======================================== */
        @media (min-width: 768px) {
            .navbar {
                padding: 18px 32px;
            }

            .navbar.scrolled {
                padding: 14px 32px;
            }

            .hero-intro h1 {
                font-size: 0.85rem;
                letter-spacing: 3px;
            }



            .line {
                gap: 14px;
            }

            .img-span {
                height: clamp(60px, 8vw, 120px);
            }

            .img-span img,
            .img-span video {
                width: clamp(170px, 20vw, 300px);
            }

            .section-header {
                margin-bottom: 50px;
            }

            .section-title {
                font-size: 2.4rem;
            }

            .services,
            .about,
            .contact {
                padding: 96px 32px;
            }

            .portfolio .section-header {
                padding: 96px 32px 32px;
            }



            .scroll-item {
                font-size: 3rem;
                gap: 40px;
            }

            .scroll-dot {
                width: 12px;
                height: 12px;
            }

            .about-image-wrapper img {
                height: 420px;
            }

            .about-text h2,
            .contact-info h2 {
                font-size: 2.4rem;
            }

            .about-stats {
                gap: 36px;
            }

            .stat strong {
                font-size: 2.2rem;
            }
        }

        /* ========================================
           DESKTOP (min-width: 1024px)
        ======================================== */
        @media (min-width: 1024px) {
            .navbar {
                padding: 20px 40px;
            }

            .navbar.scrolled {
                padding: 14px 40px;
            }

            .nav-logo {
                font-size: 1.3rem;
            }

            /* Desktop: mostra links, esconde hamburger */
            .nav-links {
                display: flex;
                position: static;
                width: auto;
                height: auto;
                background: none;
                flex-direction: row;
                gap: 32px;
            }

            .nav-links a {
                font-size: 0.85rem;
                padding: 0;
                min-height: auto;
            }

            .nav-cta {
                padding: 10px 24px !important;
            }

            .nav-cta:hover {
                background: var(--orange-dark);
                transform: translateY(-1px);
            }

            .menu-toggle {
                display: none;
            }

            .hero-intro h1 {
                font-size: 0.9rem;
            }



            .line {
                gap: 20px;
            }

            .img-span {
            }

            .img-span img,
            .img-span video {
                width: 260px;
            }

            .hero-outro {
                height: 40vh;
            }

            .section-title {
                font-size: 3rem;
            }

            .services,
            .about,
            .contact {
                padding: 120px 40px;
            }

            .portfolio .section-header {
                padding: 120px 40px 40px;
            }

            .scroll-text-section {
                padding: 80px 0;
            }

            .scroll-item {
                font-size: 5rem;
                -webkit-text-stroke-width: 2px;
                gap: 60px;
            }

            .scroll-dot {
                width: 16px;
                height: 16px;
            }

            .about-content {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 80px;
            }

            .about-image-wrapper img {
                height: 560px;
                filter: grayscale(100%);
                transition: filter 0.6s ease;
            }

            .about-image-wrapper:hover img {
                filter: grayscale(0%);
            }

            .about-image-accent {
                top: -20px;
                right: -20px;
                width: 100px;
                height: 100px;
            }

            .about-text h2 {
                font-size: 2.8rem;
            }

            .about-text p {
                font-size: 1.05rem;
                line-height: 1.8;
            }

            .about-stats {
                gap: 40px;
                justify-content: flex-start;
            }

            .stat strong {
                font-size: 2.5rem;
            }


        }

        /* ========================================
           LARGE DESKTOP (min-width: 1280px)
        ======================================== */
        @media (min-width: 1280px) {
            .img-span {
            }

            .img-span img,
            .img-span video {
                width: 280px;
            }
        }

        /* ===== PRELOADER ===== */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 99999;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #0a0a0a;
            will-change: opacity, filter;
        }

        .preloader-logo {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(2.2rem, 9vw, 5rem);
            font-weight: 900;
            color: #FFFFFF;
            letter-spacing: -1px;
            white-space: nowrap;
            opacity: 0;
            transform: translateY(20px) scale(0.97);
            will-change: transform, opacity;
        }

        .preloader-logo .dot {
            color: #FA7921;
        }

        .preloader.done {
            pointer-events: none;
        }

        /* ===== SERVICES/PRODUCTS TOGGLE ===== */
        .services-toggle-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin: 0 auto 40px;
        }

        .toggle-label {
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: var(--gray);
            cursor: pointer;
            transition: color 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .toggle-label.active {
            color: var(--orange);
            transform: scale(1.1);
        }

        .switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 34px;
        }

        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: var(--black-deep);
            border: 2px solid var(--orange);
            transition: .4s;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 22px;
            width: 22px;
            left: 4px;
            bottom: 4px;
            background-color: var(--orange);
            transition: .4s;
        }

        input:checked + .slider {
            background-color: var(--orange);
        }

        input:checked + .slider:before {
            background-color: var(--white);
            transform: translateX(26px);
        }

        .slider.round {
            border-radius: 34px;
        }

        .slider.round:before {
            border-radius: 50%;
        }

        /* ===== SERVICES VISUAL GRID ===== */
        .products-grid-layout {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 32px;
            max-width: 900px;
            max-width: 1000px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .products-grid-layout > .visual-card {
            flex: 1 1 calc(50% - 24px);
            max-width: 500px;
            width: 100%;
        }

        @media (max-width: 900px) {
            .products-grid-layout {
                flex-direction: column;
                align-items: center;
            }
            .products-grid-layout > .visual-card {
                max-width: 100%;
                flex: none;
                height: 350px;
            }
        }

        .visual-card {
            position: relative;
            height: 500px;
            border-radius: 28px;
            overflow: hidden;
            background: #111;
            cursor: pointer;
            transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.6s ease;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .visual-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            border-color: var(--orange);
        }

        .card-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .card-image img,
        .card-image video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
            filter: brightness(0.6);
        }

        .visual-card:hover .card-image img,
        .visual-card:hover .card-image video {
            transform: scale(1.1);
            filter: brightness(0.4);
        }

        .card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 32px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            transform: translateY(20px);
            transition: transform 0.4s ease;
        }

        .visual-card:hover .card-content {
            transform: translateY(0);
        }

        .card-content h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: #FFF;
            margin-bottom: 8px;
        }

        .card-content p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.5;
            margin-bottom: 16px;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s ease 0.1s;
        }

        .visual-card:hover .card-content p {
            opacity: 1;
            transform: translateY(0);
        }

        .card-action {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--orange);
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0;
            transition: opacity 0.4s ease 0.2s;
        }

        .visual-card:hover .card-action {
            opacity: 1;
        }

        @media (max-width: 900px) {
            .services-visual-grid {
                grid-template-columns: 1fr;
            }

            .card-content {
                transform: translateY(0);
            }

            .card-content p,
            .card-action {
                opacity: 1;
                transform: translateY(0);
            }
        }
