        /* ============================================
           CSS CUSTOM PROPERTIES
           ============================================ */
        :root {
            --primary: #046b55;
            --primary-dark: #035a46;
            --primary-light: #058a6e;
            --primary-bg: rgba(4, 107, 85, 0.12);
            --primary-bg-light: rgba(4, 107, 85, 0.06);
            --white: #050505;
            --off-white: #0e0e0e;
            --gray-50: #0e0e0e;
            --gray-100: #141414;
            --gray-200: #1e1e1e;
            --gray-300: #333333;
            --gray-400: #8d8d8d;
            --gray-500: #8d8d8d;
            --gray-600: #b0b0b0;
            --gray-700: #d0d0d0;
            --gray-800: #e4e4e4;
            --gray-900: #ffffff;
            --black: #000000;
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
            --shadow-md: 0 4px 6px rgba(0,0,0,0.4);
            --shadow-lg: 0 10px 15px rgba(0,0,0,0.5);
            --shadow-xl: 0 20px 25px rgba(0,0,0,0.6);
            --radius-sm: 12px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-full: 100px;
            --transition: all 0.3s ease;
            --font-heading: 'Poppins', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        /* ============================================
           SHIMMER TEXT UTILITY
           ============================================ */
        .fx-text-shimmer {
            margin: 0;
            font-size: 36px;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(90deg, var(--gray-400) 0%, var(--gray-400) 40%, #fff 50%, var(--gray-400) 60%, var(--gray-400) 100%);
            background-size: 200% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: fx-shimmer-text 2.2s linear infinite;
        }

        /* ============================================
           RESET & BASE
           ============================================ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
            overflow-x: hidden;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.7;
            color: var(--gray-800);
            background-color: #050505;
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            color: var(--gray-900);
            line-height: 1.25;
            font-weight: 700;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        img, svg, video {
            max-width: 100%;
            height: auto;
            display: block;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ============================================
           SCROLL REVEAL ANIMATIONS
           ============================================ */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }
        .reveal-delay-5 { transition-delay: 0.5s; }

        /* ============================================
           SECTION COMMON
           ============================================ */
        .section-label {
            display: inline-block;
            font-family: var(--font-heading);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--primary);
            background: var(--primary-bg);
            padding: 6px 16px;
            border-radius: var(--radius-full);
            margin-bottom: 16px;
        }

        .section-title {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 800;
            color: var(--gray-900);
            margin-bottom: 16px;
        }

        .section-desc {
            font-size: 1rem;
            color: var(--gray-400);
            max-width: 600px;
            line-height: 1.8;
        }

        section {
            padding: 100px 0;
            max-width: 100%;
            overflow-x: hidden;
        }

        /* ============================================
           BUTTONS
           ============================================ */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-family: var(--font-heading);
            font-size: 0.82rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 14px 28px;
            border-radius: var(--radius-full);
            border: 2px solid transparent;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(4, 107, 85, 0.35);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border-color: var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-2px);
        }

        .btn-white {
            background: #fff;
            color: var(--primary);
            border-color: #fff;
        }

        .btn-white:hover {
            background: transparent;
            color: #fff;
            transform: translateY(-2px);
        }

        .btn-ghost {
            background: transparent;
            color: rgba(255,255,255,0.8);
            border-color: rgba(255,255,255,0.2);
        }

        .btn-ghost:hover {
            background: rgba(255,255,255,0.08);
            border-color: rgba(255,255,255,0.4);
        }

        /* ============================================
           1. NAVBAR
           ============================================ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 16px 0;
            transition: var(--transition);
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(5, 5, 5, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            padding: 10px 0;
            box-shadow: none;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.5px;
            position: relative;
            overflow: hidden;
        }

        .nav-logo-icon {
            height: 40px !important;
            width: auto !important;
            max-height: none !important;
            max-width: none !important;
            object-fit: contain !important;
            position: relative;
            z-index: 1;
        }

        .nav-logo-text {
            height: 24px;
            width: auto;
        }

        /* logo text styled by shimmer above */

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            overflow: visible;
        }

        .navbar .container {
            overflow: visible;
        }

        .nav-links a {
            font-family: var(--font-heading);
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--gray-800);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 8px 18px;
            border-radius: var(--radius-full);
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover:not(.active) {
            background: rgba(4, 107, 85, 0.15);
            color: #ffffff;
            box-shadow: 0 0 16px rgba(4, 107, 85, 0.20);
        }

        .nav-links a.active {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 0 20px rgba(4, 107, 85, 0.30);
        }

        .nav-cta {
            margin-left: 8px;
        }

        .nav-cta .btn {
            padding: 10px 22px;
            font-size: 0.78rem;
            color: #ffffff !important;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 4px;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            width: 26px;
            height: 2.5px;
            background: var(--gray-800);
            border-radius: 2px;
            transition: var(--transition);
        }

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

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

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

        /* Mobile menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(5, 5, 5, 0.98);
            backdrop-filter: blur(20px);
            z-index: 999;
            padding: 100px 32px 40px;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

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

        .mobile-menu a {
            font-family: var(--font-heading);
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--gray-800);
            padding: 14px 24px;
            border-radius: var(--radius-full);
            transition: var(--transition);
            width: 100%;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .mobile-menu a:hover {
            background: var(--primary-bg);
            color: var(--primary);
        }

        .mobile-menu .btn {
            margin-top: 16px;
            width: 100%;
        }

        /* ============================================
           2. HERO SECTION - WEDOES FULL BLEED
           ============================================ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 0;
            background: #050505;
            position: relative;
            overflow: hidden;
        }

        .hero-bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }

        .hero-bg-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 55%;
            font-size: 0;
            line-height: 0;
            color: transparent;
            -webkit-text-fill-color: transparent;
        }

        .hero-bg-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(5,5,5,0.82) 0%, rgba(5,5,5,0.55) 40%, rgba(5,5,5,0.45) 60%, rgba(5,5,5,0.70) 100%);
            z-index: 1;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            left: 20%;
            width: min(900px, 100vw);
            height: min(900px, 100vw);
            background: radial-gradient(circle, rgba(4,107,85,0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 2;
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            right: 10%;
            width: min(600px, 100vw);
            height: min(600px, 100vw);
            background: radial-gradient(circle, rgba(4,107,85,0.05) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 2;
            pointer-events: none;
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
            position: relative;
            z-index: 3;
            min-height: 100vh;
            padding-top: 120px;
            padding-bottom: 80px;
        }

        /* LEFT: Big Headline */
        .hero-headline {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .hero-title {
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 800;
            line-height: 1.02;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: -1px;
            text-shadow: 0 4px 30px rgba(0,0,0,0.4);
        }

        .hero-title .brand-name {
            display: block;
            font-family: 'Poppins', sans-serif;
            font-size: clamp(3.2rem, 9.5vw, 6.5rem);
            font-weight: 800;
            letter-spacing: -2px;
            line-height: 1;
            color: #ffffff;
            text-shadow: 0 4px 40px rgba(0,0,0,0.5);
            margin-bottom: 0;
        }

        .hero-title .tagline {
            display: block;
            font-size: clamp(1.6rem, 2.8vw, 2.4rem);
            font-weight: 600;
            letter-spacing: 1px;
            color: #ffffff;
            text-transform: uppercase;
            line-height: 1.6;
        }

        .hero-title .highlight {
            color: #ffffff;
            position: relative;
        }

        /* RIGHT: Description + Stats + CTA */
        .hero-right {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            gap: 24px;
        }

        .hero-desc {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.75);
            line-height: 1.75;
            max-width: 520px;
        }

        .hero-stat-row {
            display: flex;
            align-items: baseline;
            gap: 8px;
        }

        .hero-stat-big {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-light);
            line-height: 1;
        }

        .hero-stat-label-big {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.55);
            font-weight: 500;
        }

        .hero-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .hero-stats {
            display: flex;
            gap: 36px;
            flex-wrap: wrap;
        }

        .hero-stat {
            text-align: left;
        }

        .hero-stat-number {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary-light);
            display: inline-block;
        }

        .hero-stat-label {
            font-size: 0.82rem;
            color: rgba(255,255,255,0.60);
            font-weight: 500;
            margin-top: 2px;
        }

        /* Hero carousel removed - replaced with full bleed image */

        /* Floating card - removed for clean Wedoes look */

        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: var(--gray-500);
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

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

        @keyframes scroll-line {
            0% { transform: scaleY(0); transform-origin: top; }
            50% { transform: scaleY(1); transform-origin: top; }
            51% { transform: scaleY(1); transform-origin: bottom; }
            100% { transform: scaleY(0); transform-origin: bottom; }
        }

        /* ============================================
           HERO FLOATING PARTICLES
           ============================================ */
        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
            overflow: hidden;
        }
        .hero-particle {
            position: absolute;
            width: 5px;
            height: 5px;
            background: rgba(4, 107, 85, 0.35);
            border-radius: 50%;
            animation: particle-float linear infinite;
        }
        .hero-particle:nth-child(odd) {
            background: rgba(5, 138, 110, 0.25);
            width: 4px;
            height: 4px;
        }
        .hero-particle:nth-child(3n) {
            width: 3px;
            height: 3px;
            background: rgba(255, 255, 255, 0.15);
        }
        @keyframes particle-float {
            0% {
                transform: translateY(100vh) translateX(0) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
                transform: translateY(90vh) translateX(10px) scale(1);
            }
            90% {
                opacity: 0.6;
            }
            100% {
                transform: translateY(-10vh) translateX(-20px) scale(0.5);
                opacity: 0;
            }
        }

        /* ============================================
           HERO TEXT REVEAL STAGGER
           ============================================ */
        .brand-name .char {
            display: inline-block;
            opacity: 0;
            transform: translateY(60px) rotateX(40deg);
            animation: char-reveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }
        @keyframes char-reveal {
            to {
                opacity: 1;
                transform: translateY(0) rotateX(0);
            }
        }
        .brand-name .char:nth-child(1) { animation-delay: 0.1s; }
        .brand-name .char:nth-child(2) { animation-delay: 0.18s; }
        .brand-name .char:nth-child(3) { animation-delay: 0.26s; }
        .brand-name .char:nth-child(4) { animation-delay: 0.34s; }
        .brand-name .char:nth-child(5) { animation-delay: 0.42s; }
        .brand-name .char:nth-child(6) { animation-delay: 0.50s; }

        /* ============================================
           MAGNETIC CURSOR EFFECT
           ============================================ */
        .magnetic {
            transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
        }

        /* ============================================
           SECTION DIVIDER
           ============================================ */
        .section-glow-divider {
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(4,107,85,0.65), transparent);
            position: relative;
            overflow: visible;
            margin: 0;
            padding: 0;
        }



        /* ============================================
           HERO IMAGE PARALLAX
           ============================================ */
        .hero-frame img {
            transition: transform 0.1s linear;
        }

        .product-card:hover {
            box-shadow: 0 20px 40px rgba(0,0,0,0.3) !important;
            border-color: rgba(4,107,85,0.35) !important;
        }

        /* ============================================
           HERO ROLLING TEXT
           ============================================ */
        .hero-rolling-block {
            text-align: left;
            margin-top: -4px;
        }

        .hero-rolling-container {
            position: relative;
            display: inline-block;
            font-family: 'Poppins', sans-serif;
            font-size: clamp(3.2rem, 9.5vw, 6.5rem);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: -2px;
            line-height: 1;
            height: 1em;
            overflow: hidden;
            vertical-align: bottom;
        }

        .hero-rolling-track {
            display: flex;
            flex-direction: column;
            animation: rolling-text 6s cubic-bezier(0.45, 0, 0.55, 1) infinite;
        }

        .hero-rolling-item {
            height: 1em;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            white-space: nowrap;
            flex-shrink: 0;
            color: var(--primary-light);
            text-shadow: 0 0 15px rgba(4, 107, 85, 0.1);
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
        }

        @keyframes rolling-text {
            0%, 20% { transform: translateY(0); }
            33.33%, 53.33% { transform: translateY(-1em); }
            66.66%, 86.66% { transform: translateY(-2em); }
            100% { transform: translateY(-3em); }
        }

        .hero-subtext {
            font-family: 'Inter', sans-serif;
            font-size: clamp(0.7rem, 1.2vw, 0.85rem);
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: rgba(255, 255, 255, 0.75);
            margin-top: 16px;
            line-height: 1.8;
        }

        /* ============================================
           HERO IMAGE FRAME
           ============================================ */
        .hero-frame {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 5;
        }

        .hero-frame img {
            width: 100%;
            height: auto;
            aspect-ratio: 21/9;
            object-fit: cover;
            object-position: center 60% !important;
            border-radius: var(--radius-lg);
            display: block;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
        }

        /* ============================================
           3. ABOUT SECTION
           ============================================ */
        .about {
            background: var(--white);
            padding: 80px 0;
        }

        .about .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        /* About Video Container */
        .about-video-container {
            width: 100%;
            max-width: 400px;
            margin: 0 auto;
        }

        .about-image {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            aspect-ratio: 4/3;
            background: var(--gray-100);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 24px;
            background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
            color: var(--white);
        }

        .about-image-overlay p {
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* Video Player in About */
        .about-video-wrapper {
            position: relative;
            border-radius: var(--radius-md);
            overflow: hidden;
            aspect-ratio: 3/4;
            max-height: 534px;
            background: var(--gray-900);
            box-shadow: var(--shadow-lg);
            cursor: pointer;
        }

        .about-video-wrapper video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .about-video-poster {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            padding-bottom: 20%;
            gap: 12px;
            background: rgba(0,0,0,0.25);
            transition: opacity 0.4s ease;
            z-index: 2;
            overflow: hidden;
        }

        .about-video-poster.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .about-video-poster img {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0; left: 0;
            object-fit: cover;
            filter: brightness(0.7);
        }

        .about-video-play-btn {
            width: 56px;
            height: 56px;
            background: rgba(255,255,255,0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 24px rgba(0,0,0,0.3);
            transition: transform 0.3s ease, background 0.3s ease;
            z-index: 3;
        }

        .about-video-play-btn:hover {
            transform: scale(1.1);
            background: var(--primary);
        }

        .about-video-play-btn:hover svg {
            fill: var(--white);
            stroke: var(--white);
        }

        .about-video-play-btn svg {
            width: 22px;
            height: 22px;
            fill: var(--gray-900);
            stroke: var(--gray-900);
            margin-left: 4px;
            transition: fill 0.3s ease, stroke 0.3s ease;
        }

        .about-video-poster-text {
            color: var(--white);
            font-family: var(--font-heading);
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            z-index: 3;
            text-shadow: 0 2px 8px rgba(0,0,0,0.5);
            padding: 0 10px;
            text-align: center;
            line-height: 1.3;
            max-width: 100%;
            overflow: hidden;
        }

        /* Video Controls Bar */
        .about-video-controls {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 16px 16px 14px;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 4;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .about-video-wrapper:hover .about-video-controls,
        .about-video-wrapper.controls-visible .about-video-controls {
            opacity: 1;
        }

        .about-video-controls-left,
        .about-video-controls-right {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .about-video-ctrl-btn {
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.15);
            border: none;
            border-radius: 50%;
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s ease;
            backdrop-filter: blur(4px);
        }

        .about-video-ctrl-btn:hover {
            background: rgba(255,255,255,0.3);
        }

        .about-video-ctrl-btn svg {
            width: 16px;
            height: 16px;
        }

        .about-video-ctrl-btn.active {
            background: var(--primary);
        }

        .about-video-progress {
            flex: 1;
            height: 4px;
            background: rgba(255,255,255,0.2);
            border-radius: 2px;
            margin: 0 8px;
            cursor: pointer;
            position: relative;
        }

        .about-video-progress-bar {
            height: 100%;
            background: var(--primary);
            border-radius: 2px;
            width: 0%;
            transition: width 0.1s linear;
        }

        .about-video-time {
            color: rgba(255,255,255,0.8);
            font-size: 0.7rem;
            font-family: var(--font-body);
            font-variant-numeric: tabular-nums;
            white-space: nowrap;
        }

        .about-content .section-title {
            margin-bottom: 20px;
        }

        .about-text {
            font-size: 1rem;
            color: var(--gray-500);
            line-height: 1.85;
            margin-bottom: 16px;
        }

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

        .about-feature {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .about-feature-check {
            width: 22px;
            height: 22px;
            background: var(--primary-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .about-feature-check svg {
            width: 12px;
            height: 12px;
            color: var(--primary);
        }

        .about-feature span {
            font-size: 0.9rem;
            color: var(--gray-600);
            font-weight: 500;
        }

        /* ============================================
           4. PRODUCTS SECTION
           ============================================ */
        .products {
            background: #050505;
            padding: 80px 0;
        }

        .products-header {
            text-align: center;
            margin-bottom: 56px;
        }

        .products-header .section-desc {
            margin: 0 auto;
        }

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

        .product-card {
            background: rgba(14, 14, 14, 0.6);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: none;
            transition: all 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 0 40px rgba(4, 107, 85, 0.12);
            border-color: rgba(4, 107, 85, 0.2);
        }

        .product-card-image {
            width: 100%;
            aspect-ratio: 4/3;
            overflow: hidden;
            background: var(--gray-100);
        }

        .product-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-card-image img {
            transform: scale(1.05);
        }

        .product-card-content {
            padding: 24px;
        }

        .product-card-content h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--gray-900);
        }

        .product-card-content p {
            font-size: 0.9rem;
            color: var(--gray-500);
            line-height: 1.7;
        }

        /* CTA Card (6th card) */
        .product-cta-card {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: var(--radius-md);
            padding: 40px 32px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            transition: var(--transition);
        }

        .product-cta-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(4, 107, 85, 0.3);
        }

        .product-cta-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 12px;
        }

        .product-cta-card p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 24px;
            line-height: 1.7;
        }

        .product-cta-card .btn {
            width: 100%;
        }

        /* ============================================
           5. GALLERY DIVIDER SECTION
           ============================================ */
        .gallery-divider {
            background: var(--white);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .gallery-slider-wrapper {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .gallery-slider {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            aspect-ratio: 16/9;
        }

        .gallery-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .gallery-slide.active {
            opacity: 1;
        }

        .gallery-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px 32px 28px;
            background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
            color: var(--white);
        }

        .gallery-slide-overlay h3 {
            font-family: var(--font-heading);
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 4px;
        }

        .gallery-slide-overlay p {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.75);
        }

        .gallery-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(14, 14, 14, 0.85);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.1);
            color: var(--gray-800);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            z-index: 10;
            box-shadow: var(--shadow-md);
        }

        .gallery-nav-btn:hover {
            background: rgba(14, 14, 14, 1);
            border-color: var(--primary);
            color: var(--primary);
        }

        .gallery-nav-btn svg {
            width: 20px;
            height: 20px;
        }

        .gallery-nav-prev {
            left: 16px;
        }

        .gallery-nav-next {
            right: 16px;
        }

        .gallery-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 24px;
        }

        .gallery-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--gray-300);
            cursor: pointer;
            transition: var(--transition);
            border: none;
        }

        .gallery-dot.active {
            background: var(--primary);
            transform: scale(1.2);
        }

        /* ============================================
           6. APPLICATIONS SECTION
           ============================================ */
        .applications {
            background: var(--white);
            padding: 80px 0;
        }

        .applications-header {
            text-align: center;
            margin-bottom: 56px;
        }

        .applications-header .section-desc {
            margin: 0 auto;
        }

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

        .app-card {
            background: rgba(14, 14, 14, 0.6);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: var(--radius-md);
            padding: 36px 28px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .app-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 0 40px rgba(4, 107, 85, 0.1);
            border-color: rgba(4, 107, 85, 0.2);
        }

        .app-card-icon {
            width: 64px;
            height: 64px;
            background: var(--primary-bg);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: var(--transition);
        }

        .app-card:hover .app-card-icon {
            background: var(--primary);
        }

        .app-card-icon svg {
            width: 28px;
            height: 28px;
            color: var(--primary);
            transition: var(--transition);
        }

        .app-card:hover .app-card-icon svg {
            color: var(--white);
        }

        .app-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--gray-900);
        }

        .app-card p {
            font-size: 0.88rem;
            color: var(--gray-500);
            line-height: 1.7;
        }

        .app-cta-card {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: var(--radius-md);
            padding: 36px 28px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            transition: var(--transition);
            border: none;
        }

        .app-cta-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 32px rgba(4, 107, 85, 0.3);
        }

        .app-cta-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 10px;
        }

        .app-cta-card p {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
        }

        /* ============================================
           7. CALCULATOR SECTION
           ============================================ */
        .calculator {
            background: #050505;
            padding: 80px 0;
            overflow: hidden;
        }

        .calculator .container {
            max-width: 1100px;
        }

        .calculator-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .calculator-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: start;
        }

        .calculator-form-left {
            background: rgba(14, 14, 14, 0.8);
            border-radius: var(--radius-lg);
            padding: 32px;
            box-shadow: none;
            border: 1px solid rgba(255,255,255,0.06);
            overflow: hidden;
            max-width: 100%;
        }

        .calculator-form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 24px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            font-family: var(--font-heading);
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--gray-700);
        }

        .form-group input,
        .form-group select {
            padding: 14px 18px;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: var(--radius-sm);
            font-family: var(--font-body);
            font-size: 0.95rem;
            color: var(--gray-800);
            background: rgba(14, 14, 14, 0.8);
            transition: var(--transition);
            outline: none;
            appearance: none;
            -webkit-appearance: none;
            width: 100%;
            min-width: 0;
        }

        .form-group select {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%238d8d8d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            padding-right: 44px;
        }

        .form-group input:focus,
        .form-group select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(4, 107, 85, 0.15);
        }

        .calculator-btn {
            width: 100%;
            padding: 16px;
            font-size: 1rem;
            margin-top: 8px;
        }

        .calculator-result {
            background: rgba(14, 14, 14, 0.8);
            border-radius: var(--radius-lg);
            padding: 32px;
            border: 1px solid rgba(255,255,255,0.06);
            box-shadow: none;
            min-height: 100%;
            overflow: hidden;
            max-width: 100%;
        }

        .calculator-result.show {
            display: block;
        }

        .calculator-result h4 {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .calculator-result-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 20px;
        }

        .calc-result-item {
            text-align: center;
            padding: 16px;
            background: var(--gray-50);
            border-radius: var(--radius-sm);
        }

        .calc-result-item .value {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--primary);
        }

        .calc-result-item .label {
            font-size: 0.78rem;
            color: var(--gray-500);
            margin-top: 4px;
        }

        .calc-result-item .label small {
            font-size: 0.7rem;
            color: var(--gray-400);
        }

        .calculator-result .btn {
            width: 100%;
        }

        /* ============================================
           PROJECT PORTFOLIO CAROUSEL
           ============================================ */
        .portfolio-carousel {
            background: #050505;
            padding: 80px 0;
            overflow: hidden;
        }
        .portfolio-carousel-header {
            text-align: center;
            margin-bottom: 48px;
        }
        .portfolio-carousel-header .section-desc {
            margin: 0 auto;
        }
        .portfolio-carousel-track-wrapper {
            overflow: hidden;
            position: relative;
            width: 100%;
            margin: 0 -24px;
            padding: 0 24px;
        }
        .portfolio-carousel-track {
            display: flex;
            gap: 24px;
            animation: portfolio-scroll 40s linear infinite;
            width: max-content;
        }
        .portfolio-carousel-track:hover {
            animation-play-state: paused;
        }
        .portfolio-carousel-item {
            flex-shrink: 0;
            width: 280px;
            aspect-ratio: 3/4;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.06);
            background: var(--gray-100);
        }
        .portfolio-carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        @keyframes portfolio-scroll {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }
        @media (max-width: 768px) {
            .portfolio-carousel-item {
                width: 220px;
            }
            .portfolio-carousel-track {
                gap: 16px;
            }
        }

        /* ============================================
           7B. CONTAINER CALCULATOR SECTION
           ============================================ */
        .container-calc {
            background: var(--white);
            padding: 80px 0;
            overflow: hidden;
        }

        .container-calc .container {
            max-width: 1100px;
        }

        .container-calc-header {
            text-align: center;
            margin-bottom: 48px;
        }

        /* Unit tabs */
        .container-calc-tabs {
            display: flex;
            justify-content: center;
            gap: 0;
            margin-bottom: 36px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            border: 2px solid var(--primary);
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
        }

        .container-calc-tab {
            padding: 12px 32px;
            font-family: var(--font-heading);
            font-size: 0.9rem;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            background: transparent;
            color: var(--primary);
            border: none;
            letter-spacing: 0.5px;
        }

        .container-calc-tab.active {
            background: var(--primary);
            color: var(--white);
        }

        .container-calc-tab:hover:not(.active) {
            background: var(--primary-bg);
        }

        /* Form layout */
        .container-calc-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: start;
        }

        .container-calc-form-left {
            background: rgba(14, 14, 14, 0.8);
            border-radius: var(--radius-lg);
            padding: 32px;
            box-shadow: none;
            border: 1px solid rgba(255,255,255,0.06);
            overflow: hidden;
            max-width: 100%;
        }

        .container-calc-form-left .calculator-form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 24px;
        }

        .container-calc-btn {
            width: 100%;
            padding: 16px;
            font-size: 1rem;
            margin-top: 8px;
        }

        /* Result */
        .container-calc-result {
            background: rgba(14, 14, 14, 0.8);
            border-radius: var(--radius-lg);
            padding: 32px;
            border: 1px solid rgba(255,255,255,0.06);
            box-shadow: none;
            min-height: 100%;
            overflow: hidden;
            max-width: 100%;
        }

        .container-calc-result.show {
            display: block;
        }

        .container-calc-result h4 {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .container-calc-result-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 20px;
        }

        .cc-result-item {
            text-align: center;
            padding: 16px;
            background: var(--gray-50);
            border-radius: var(--radius-sm);
        }

        .cc-result-item.highlight-item {
            background: var(--primary-bg);
        }

        .cc-result-item .value {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--primary);
        }

        .cc-result-item .label {
            font-size: 0.78rem;
            color: var(--gray-500);
            margin-top: 4px;
        }

        .cc-result-item .label small {
            font-size: 0.7rem;
            color: var(--gray-400);
        }

        .container-calc-result .btn {
            width: 100%;
        }

        /* Container visual info */
        .container-info-bar {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            margin-top: 16px;
            padding: 16px 20px;
            background: rgba(4, 107, 85, 0.08);
            border-radius: var(--radius-sm);
            border: 1px solid rgba(4, 107, 85, 0.15);
        }

        .container-info-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.82rem;
            color: var(--gray-600);
        }

        .container-info-item svg {
            width: 16px;
            height: 16px;
            color: var(--primary);
            flex-shrink: 0;
        }

        .container-info-item strong {
            color: var(--primary);
            font-weight: 700;
        }

        /* ============================================
           8. PARTNERSHIP SECTION
           ============================================ */
        .partnership {
            background: var(--white);
            padding: 80px 0;
        }

        .partnership-header {
            text-align: center;
            margin-bottom: 56px;
        }

        .partnership-header .section-desc {
            margin: 0 auto;
        }

        .partnership-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-bottom: 48px;
        }

        .partner-card {
            text-align: center;
            padding: 32px 20px;
            border-radius: var(--radius-md);
            background: rgba(14, 14, 14, 0.6);
            border: 1px solid rgba(255,255,255,0.06);
            transition: all 0.3s ease;
        }

        .partner-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 0 40px rgba(4, 107, 85, 0.1);
            border-color: rgba(4, 107, 85, 0.2);
        }

        .partner-card-icon {
            width: 56px;
            height: 56px;
            background: var(--primary-bg);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            transition: var(--transition);
        }

        .partner-card:hover .partner-card-icon {
            background: var(--primary);
        }

        .partner-card-icon svg {
            width: 24px;
            height: 24px;
            color: var(--primary);
            transition: var(--transition);
        }

        .partner-card:hover .partner-card-icon svg {
            color: var(--white);
        }

        .partner-card h3 {
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--gray-900);
        }

        .partner-card p {
            font-size: 0.82rem;
            color: var(--gray-500);
            line-height: 1.7;
        }

        .partnership-banner {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: var(--radius-lg);
            padding: 48px 40px;
            text-align: center;
            color: var(--white);
        }

        .partnership-banner h2 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 12px;
        }

        .partnership-banner p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 28px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .partnership-buttons {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ============================================
           9. CONTACT SECTION
           ============================================ */
        .contact {
            background: #050505;
            padding: 100px 0;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 56px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .contact-card {
            background: rgba(14, 14, 14, 0.6);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: var(--radius-md);
            padding: 32px 24px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 0 40px rgba(4, 107, 85, 0.1);
            border-color: rgba(4, 107, 85, 0.2);
        }

        .contact-card-icon {
            width: 56px;
            height: 56px;
            background: var(--primary-bg);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            transition: var(--transition);
        }

        .contact-card:hover .contact-card-icon {
            background: var(--primary);
        }

        .contact-card-icon svg {
            width: 24px;
            height: 24px;
            color: var(--primary);
            transition: var(--transition);
        }

        .contact-card:hover .contact-card-icon svg {
            color: var(--white);
        }

        .contact-card h3 {
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--gray-900);
        }

        .contact-card p {
            font-size: 0.85rem;
            color: var(--gray-500);
            line-height: 1.7;
        }

        .contact-card a {
            color: var(--primary);
            font-weight: 500;
        }

        .contact-card a:hover {
            text-decoration: underline;
        }

        /* ============================================
           10. FOOTER
           ============================================ */
        .footer {
            position: relative;
            background: #050505;
            color: rgba(255, 255, 255, 0.8);
            padding: 0;
            overflow: hidden;
        }
        .footer-bg {
            display: none;
        }
        .footer .container {
            position: relative;
            z-index: 2;
            padding-top: 60px;
            padding-bottom: 32px;
        }
        .footer-nav-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 8px 28px;
            margin-bottom: 32px;
        }
        .footer-nav-links a {
            font-family: var(--font-heading);
            font-size: 0.9rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.85);
            transition: var(--transition);
        }
        .footer-nav-links a:hover {
            color: var(--white);
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        .footer-social {
            display: flex;
            justify-content: center;
            gap: 14px;
            margin-bottom: 32px;
        }
        .footer-social a {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            backdrop-filter: blur(4px);
        }
        .footer-social a:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
        }
        .footer-social svg {
            width: 18px;
            height: 18px;
            color: rgba(255, 255, 255, 0.85);
            transition: var(--transition);
        }
        .footer-social a:hover svg {
            color: var(--white);
        }
        .footer-legal {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 8px 28px;
            margin-bottom: 36px;
        }
        .footer-legal a {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.55);
            transition: var(--transition);
        }
        .footer-legal a:hover {
            color: rgba(255, 255, 255, 0.85);
        }
        .footer-divider {
            width: 100%;
            height: 1px;
            background: rgba(255, 255, 255, 0.18);
            margin-bottom: 24px;
        }
        .section-end-divider {
            width: 100%;
            height: 1px;
            background: rgba(255, 255, 255, 0.25);
            margin: 0;
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.45);
        }
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.55);
            transition: var(--transition);
        }
        .footer-bottom a:hover {
            color: rgba(255, 255, 255, 0.85);
        }

        /* ============================================
           FLOATING ELEMENTS (WhatsApp + Back to Top)
           ============================================ */
        .floating-wa {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 900;
        }

        .floating-wa-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #25D366;
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            cursor: pointer;
            transition: var(--transition);
            border: none;
            animation: wa-pulse 2s ease-in-out infinite;
            text-decoration: none;
        }

        .floating-wa-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
        }

        .floating-wa-btn svg {
            width: 30px;
            height: 30px;
        }

        @keyframes wa-pulse {
            0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
            50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.65); }
        }

        .floating-wa-response {
            display: block;
            font-size: 0.68rem;
            color: var(--gray-400);
            text-align: center;
            margin-top: 2px;
            font-weight: 500;
        }

        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 100px;
            right: 32px;
            z-index: 900;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(14, 14, 14, 0.9);
            border: 1px solid rgba(255,255,255,0.1);
            color: var(--gray-800);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(4, 107, 85, 0.35);
        }

        .back-to-top svg {
            width: 20px;
            height: 20px;
        }

        /* ============================================
           FAQ SECTION
           ============================================ */
        .faq {
            background: #050505;
            padding: 100px 0;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 56px;
        }

        .faq-header .section-desc {
            margin: 0 auto;
        }

        .faq-grid {
            max-width: 860px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: rgba(14, 14, 14, 0.6);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(4, 107, 85, 0.15);
        }

        .faq-item.active {
            border-color: rgba(4, 107, 85, 0.3);
            box-shadow: 0 0 30px rgba(4, 107, 85, 0.08);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            cursor: pointer;
            gap: 16px;
            user-select: none;
        }

        .faq-question h3 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--gray-800);
            line-height: 1.5;
            flex: 1;
        }

        .faq-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--primary-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .faq-item.active .faq-icon {
            background: var(--primary);
        }

        .faq-icon svg {
            width: 16px;
            height: 16px;
            color: var(--primary);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon svg {
            color: var(--white);
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer-inner {
            padding: 0 24px 20px;
            font-size: 0.9rem;
            color: var(--gray-500);
            line-height: 1.8;
        }

        /* ============================================
           COOKIE CONSENT BANNER
           ============================================ */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 950;
            background: #0e0e0e;
            border-top: 1px solid rgba(255,255,255,0.06);
            color: rgba(255, 255, 255, 0.7);
            padding: 16px 24px;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-banner .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cookie-text {
            font-size: 0.82rem;
            line-height: 1.6;
            flex: 1;
            min-width: 200px;
        }

        .cookie-text a {
            color: var(--primary-light);
            text-decoration: underline;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
            flex-shrink: 0;
        }

        .cookie-accept {
            padding: 10px 20px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: var(--radius-full);
            font-family: var(--font-heading);
            font-size: 0.82rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .cookie-accept:hover {
            background: var(--primary-dark);
        }

        .cookie-decline {
            padding: 10px 20px;
            background: transparent;
            color: rgba(255, 255, 255, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-full);
            font-family: var(--font-heading);
            font-size: 0.82rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .cookie-decline:hover {
            border-color: rgba(255, 255, 255, 0.3);
            color: rgba(255, 255, 255, 0.8);
        }

        /* ============================================
           RESPONSIVE DESIGN
           ============================================ */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: left;
            }

            .hero-headline {
                align-items: flex-start;
                text-align: left;
            }

            .hero-right {
                align-items: flex-start;
            }

            .hero-rolling-block {
                text-align: left;
            }

            .hero-frame {
                padding: 0 16px;
                margin-top: 0;
            }

            .hero-frame img {
                aspect-ratio: 16/9;
                border-radius: var(--radius-md);
            }

            .hero-title {
                max-width: 100%;
            }

            .hero-desc {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-buttons {
                justify-content: flex-start;
            }

            .hero-stats {
                justify-content: flex-start;
            }

            .about .container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-video-container {
                max-width: 320px;
            }

            .about-video-wrapper {
                max-height: 426px;
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .partnership-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .contact-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .nav-cta {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .navbar.scrolled .hamburger span {
                background: var(--gray-800);
            }

            section {
                padding: 60px 0;
            }

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

            .section-desc {
                font-size: 0.95rem;
            }

            /* Loading Screen */
            .loading-logo-icon {
                height: 50px;
            }
            .loading-logo-text {
                height: 80px;
            }
            .loading-tagline {
                font-size: 0.72rem;
                letter-spacing: 2px;
            }
            .loading-skip {
                bottom: 24px;
            }

            /* Hero */
            .hero {
                padding-top: 80px;
                min-height: auto;
                padding-bottom: 48px;
            }

            .hero-headline {
                text-align: left !important;
            }

            .hero-particles {
                display: none;
            }

            .hero-badge {
                font-size: 0.7rem;
                padding: 6px 14px;
            }

            .hero-title {
                font-size: clamp(1.8rem, 6vw, 2.5rem);
            }

            .hero-title .brand-name {
                font-size: clamp(3.8rem, 12vw, 5rem);
            }

            .hero-title .tagline {
                font-size: clamp(1rem, 3vw, 1.3rem);
            }

            .hero-desc {
                font-size: 0.95rem;
            }

            .hero-stats {
                gap: 20px;
            }

            .hero-stat-number {
                font-size: 1.25rem;
            }

            .scroll-indicator {
                display: none;
            }

            /* About */
            .about-features {
                grid-template-columns: 1fr;
            }

            .about-video-container {
                max-width: 280px;
            }

            .about-video-wrapper {
                max-height: 373px;
            }

            /* Products */
            .products-grid {
                grid-template-columns: 1fr;
            }

            .products-header {
                margin-bottom: 40px;
            }

            /* Applications */
            .applications-grid {
                grid-template-columns: 1fr;
            }

            .applications-header {
                margin-bottom: 40px;
            }

            /* Calculator - section padding reduced */
            .calculator,
            .container-calc {
                padding: 60px 0;
            }

            .calculator .container,
            .container-calc .container {
                max-width: 100%;
                padding: 0 16px;
            }

            .calculator-header,
            .container-calc-header {
                margin-bottom: 32px;
            }

            .calculator-form {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .calculator-form-left,
            .calculator-result {
                padding: 20px 16px;
                border-radius: var(--radius-md);
            }

            .calculator-form-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
                margin-bottom: 16px;
            }

            .calculator-form-grid .form-group {
                min-width: 0;
            }

            .calculator-form-grid .form-group input,
            .calculator-form-grid .form-group select {
                padding: 12px 14px;
                font-size: 0.9rem;
                min-width: 0;
            }

            .calculator-form-grid .form-group select {
                padding-right: 36px;
            }

            .calculator-result-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }

            .calc-result-item {
                padding: 12px 8px;
                overflow: hidden;
            }

            .calc-result-item .value {
                font-size: 1.15rem;
                word-break: break-all;
            }

            .calc-result-item .label {
                font-size: 0.75rem;
                word-break: break-word;
            }

            .calc-result-item .label small {
                font-size: 0.65rem;
            }

            .calculator-btn {
                padding: 14px;
                font-size: 0.9rem;
            }

            /* Container Calculator */
            .container-calc-form {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .container-calc-form-left {
                padding: 20px 16px;
                border-radius: var(--radius-md);
            }

            .container-calc-form-left .calculator-form-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
                margin-bottom: 16px;
            }

            .container-calc-form-left .calculator-form-grid .form-group {
                min-width: 0;
            }

            .container-calc-form-left .form-group input,
            .container-calc-form-left .form-group select {
                padding: 12px 14px;
                font-size: 0.9rem;
                min-width: 0;
            }

            .container-calc-form-left .form-group select {
                padding-right: 36px;
            }

            .container-calc-result-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }

            .container-calc-result {
                padding: 20px 16px;
                border-radius: var(--radius-md);
            }

            .cc-result-item {
                padding: 12px 8px;
                overflow: hidden;
            }

            .cc-result-item .value {
                font-size: 1.15rem;
                word-break: break-all;
            }

            .cc-result-item .label {
                font-size: 0.75rem;
                word-break: break-word;
            }

            .cc-result-item .label small {
                font-size: 0.65rem;
            }

            .container-calc-btn {
                padding: 14px;
                font-size: 0.9rem;
            }

            .container-info-bar {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 8px;
                padding: 12px 16px;
                margin-top: 12px;
            }

            .container-info-item {
                font-size: 0.78rem;
            }

            .container-calc-tabs {
                width: 100%;
                border-radius: var(--radius-sm);
            }

            .container-calc-tab {
                padding: 10px 20px;
                font-size: 0.82rem;
                flex: 1;
                text-align: center;
            }

            /* Partnership */
            .partnership-grid {
                grid-template-columns: 1fr;
            }

            .partnership-banner {
                padding: 32px 20px;
            }

            .partnership-banner h2 {
                font-size: 1.4rem;
            }

            .partnership-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .partnership-buttons .btn {
                width: 100%;
                text-align: center;
            }

            /* FAQ */
            .faq-grid {
                gap: 12px;
            }

            .faq-question h3 {
                font-size: 0.9rem;
            }

            .faq-answer-inner {
                font-size: 0.88rem;
            }

            /* Contact */
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .contact-header {
                margin-bottom: 40px;
            }

            /* Footer */
            .footer-nav-links {
                gap: 6px 16px;
            }
            .footer-nav-links a {
                font-size: 0.8rem;
            }
            .footer-social a {
                width: 36px;
                height: 36px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }

            /* Gallery */
            .gallery-nav-btn {
                width: 36px;
                height: 36px;
            }


            /* Testimonials */
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .testimonial-card {
                padding: 28px 24px;
            }

            /* Catalog */
            .catalog-card {
                padding: 32px 20px;
            }

            .catalog-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .catalog-buttons .btn {
                width: 100%;
                text-align: center;
            }

            /* Productions */
            .productions-nav-btn {
                width: 36px;
                height: 36px;
            }

            .productions-play-btn {
                width: 52px;
                height: 52px;
            }

            .productions-play-btn svg {
                width: 22px;
                height: 22px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }

            section {
                padding: 48px 0;
            }

            .hero-title {
                font-size: 1.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .hero-buttons .btn {
                width: 100%;
            }

            .hero-stats {
                flex-direction: column;
                gap: 12px;
                align-items: center;
            }

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

            .section-label {
                font-size: 0.7rem;
                padding: 5px 12px;
            }

            .btn {
                padding: 12px 20px;
                font-size: 0.82rem;
            }

            /* Loading */
            .loading-logo-icon {
                height: 50px;
            }
            .loading-logo-text {
                height: 45px;
            }
            .loading-tagline {
                font-size: 0.65rem;
                letter-spacing: 1.5px;
            }
            .loading-bar-wrapper {
                width: 160px;
            }

            /* Calculator */
            .calculator,
            .container-calc {
                padding: 40px 0;
            }

            .calculator-header,
            .container-calc-header {
                margin-bottom: 24px;
            }

            .calculator-form {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .calculator-form-left,
            .calculator-result {
                padding: 16px 12px;
            }

            .calculator-form-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }

            .calculator-form-grid .form-group input,
            .calculator-form-grid .form-group select {
                padding: 10px 10px;
                font-size: 0.82rem;
                min-width: 0;
            }

            .calculator-form-grid .form-group select {
                padding-right: 30px;
                background-position: right 8px center;
                background-size: 16px;
            }

            .calculator-result-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }

            .calc-result-item {
                padding: 10px 4px;
                overflow: hidden;
            }

            .calc-result-item .value {
                font-size: 0.95rem;
                word-break: break-all;
            }

            .calc-result-item .label {
                font-size: 0.68rem;
                word-break: break-word;
                line-height: 1.3;
            }

            .calc-result-item .label small {
                font-size: 0.58rem;
            }

            .calculator-btn,
            .container-calc-btn {
                padding: 12px;
                font-size: 0.82rem;
            }

            .calculator-result .btn,
            .container-calc-result .btn {
                padding: 10px 16px;
                font-size: 0.78rem;
            }

            /* Container Calculator */
            .container-calc-form-left {
                padding: 16px 12px;
            }

            .container-calc-form-left .calculator-form-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }

            .container-calc-form-left .form-group input,
            .container-calc-form-left .form-group select {
                padding: 10px 10px;
                font-size: 0.82rem;
                min-width: 0;
            }

            .container-calc-form-left .form-group select {
                padding-right: 30px;
                background-position: right 8px center;
                background-size: 16px;
            }

            .container-calc-result-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }

            .container-calc-result {
                padding: 16px 12px;
            }

            .cc-result-item {
                padding: 10px 4px;
                overflow: hidden;
            }

            .cc-result-item .value {
                font-size: 0.95rem;
                word-break: break-all;
            }

            .cc-result-item .label {
                font-size: 0.68rem;
                word-break: break-word;
                line-height: 1.3;
            }

            .cc-result-item .label small {
                font-size: 0.58rem;
            }

            .container-info-bar {
                flex-direction: column;
                gap: 6px;
                align-items: flex-start;
                padding: 10px 12px;
            }

            .container-info-item {
                font-size: 0.72rem;
            }

            .container-info-item svg {
                width: 14px;
                height: 14px;
            }

            .container-calc-tab {
                padding: 8px 12px;
                font-size: 0.75rem;
            }

            .form-group label {
                font-size: 0.78rem;
            }

            /* Catalog */
            .catalog-card {
                padding: 24px 16px;
            }
            .catalog-card-icon {
                width: 60px;
                height: 60px;
            }
            .catalog-card-icon svg {
                width: 28px;
                height: 28px;
            }
            .catalog-card h3 {
                font-size: 1.15rem;
            }
            .catalog-features {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }

            /* FAQ */
            .faq-question h3 {
                font-size: 0.85rem;
            }


            /* Testimonials */
            .testimonial-card {
                padding: 24px 20px;
            }
            .testimonial-text {
                font-size: 0.9rem;
            }
            .testimonial-quote-icon {
                font-size: 2rem;
                top: 16px;
                right: 20px;
            }

            /* Contact */
            .contact-card {
                padding: 24px 20px;
            }

            /* Order Modal */
            .order-form-grid {
                grid-template-columns: 1fr;
            }
            .order-form-actions {
                grid-template-columns: 1fr;
            }
            .order-modal-body {
                padding: 20px 16px;
            }
            .order-modal-header {
                padding: 20px 16px 12px;
            }

            /* Portfolio Carousel */
            .portfolio-carousel-item {
                width: 180px;
            }

            /* Country Ticker */
            .country-ticker-item {
                padding: 0 16px;
                font-size: 0.75rem;
            }
            .country-ticker-item span {
                font-size: 1rem;
            }

            /* Mobile Overflow Safety */
            .hero-rolling-container {
                max-width: calc(100vw - 48px);
                overflow: hidden;
                font-size: clamp(3.8rem, 12vw, 5rem);
            }
            .hero-title, .hero-headline, .hero-right {
                max-width: 100%;
                overflow: hidden;
            }
            .hero-subtext {
                max-width: 100%;
                overflow-wrap: break-word;
            }
        }

        /* ============================================
           LOADING SCREEN
           ============================================ */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #050505;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: opacity 0.6s ease, visibility 0.6s ease;
            overflow: hidden;
        }

        .loading-screen.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .loading-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: loading-logo-in 0.8s ease forwards 0.2s;
}

.loading-logo img {
    height: 40px;
    width: auto;
    animation: loading-heart 1.2s ease-in-out infinite;
}

@keyframes loading-heart {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.15); }
    30% { transform: scale(1); }
    45% { transform: scale(1.1); }
    60% { transform: scale(1); }
}

@keyframes loading-logo-in {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

        .loading-tagline {
            font-family: var(--font-body);
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--gray-500);
            letter-spacing: 3px;
            margin-top: 10px;
            opacity: 0;
            animation: loading-tagline-in 0.6s ease forwards 0.6s;
        }

        @keyframes loading-tagline-in {
            0% {
                opacity: 0;
                transform: translateY(10px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .loading-bar-wrapper {
            width: 200px;
            height: 3px;
            background: rgba(255,255,255,0.08);
            border-radius: 10px;
            margin-top: 10px;
            overflow: hidden;
            opacity: 0;
            animation: loading-bar-show 0.4s ease forwards 0.9s;
        }

        @keyframes loading-bar-show {
            to { opacity: 1; }
        }

        .loading-bar {
            width: 0%;
            height: 100%;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
            border-radius: 10px;
            animation: loading-bar-fill 1.8s ease-in-out forwards 1s;
        }

        @keyframes loading-bar-fill {
            0% { width: 0%; }
            60% { width: 75%; }
            100% { width: 100%; }
        }

        .loading-skip {
            position: absolute;
            bottom: 40px;
            font-family: var(--font-body);
            font-size: 0.75rem;
            color: var(--gray-500);
            cursor: pointer;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: var(--transition);
            background: none;
            border: none;
            padding: 8px 16px;
        }

        .loading-skip:hover {
            color: var(--gray-800);
        }
    
        /* ============================================
           SCROLL PROGRESS BAR
           ============================================ */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
            z-index: 10001;
            width: 0%;
            transition: width 0.05s linear;
        }

    
        /* ============================================
           COUNTER ANIMATION
           ============================================ */
        .counter-animated {
            display: inline-block;
            animation: counter-wave 2.5s ease-in-out infinite;
        }
        .wave-1 { animation-delay: 0s; }
        .wave-2 { animation-delay: 0.4s; }
        .wave-3 { animation-delay: 0.8s; }
        @keyframes counter-wave {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

    
        /* ============================================
           3D TILT EFFECT (Product Cards)
           ============================================ */
        .product-card {
            transform-style: preserve-3d;
            will-change: transform;
        }

    
        /* ============================================
           WAVE DIVIDERS
           ============================================ */
        .wave-divider {
            width: 100%;
            overflow: hidden;
            line-height: 0;
            margin-top: -1px;
        }
        .wave-divider svg {
            display: block;
            width: 100%;
            height: 60px;
        }
        .wave-divider.wave-reverse {
            transform: rotate(180deg);
            margin-top: 0;
            margin-bottom: -1px;
        }

    
        /* ============================================
           COUNTRY TICKER
           ============================================ */
        .country-ticker {
            background: var(--primary);
            padding: 16px 0;
            overflow: hidden;
            white-space: nowrap;
            width: 100%;
            max-width: 100%;
        }
        .country-ticker-track {
            display: inline-flex;
            animation: ticker-scroll 35s linear infinite;
        }
        .country-ticker-track:hover {
            animation-play-state: paused;
        }
        .country-ticker-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 0 32px;
            font-family: var(--font-heading);
            font-size: 0.85rem;
            font-weight: 600;
            color: #ffffff;
            letter-spacing: 0.5px;
        }
        .country-ticker-item span {
            font-size: 1.2rem;
        }
        .country-ticker-separator {
            color: rgba(255,255,255,0.3);
            font-size: 1.2rem;
        }
        @keyframes ticker-scroll {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }
        @media (max-width: 768px) {
            .country-ticker-item { padding: 0 20px; font-size: 0.8rem; }
        }

    
        /* ============================================
           TESTIMONIALS SECTION
           ============================================ */
        .testimonials {
            background: #050505;
            padding: 80px 0;
        }
        .testimonials-header {
            text-align: center;
            margin-bottom: 56px;
        }
        .testimonials-header .section-desc {
            margin: 0 auto;
        }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .testimonial-card {
            background: rgba(14, 14, 14, 0.6);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: var(--radius-md);
            padding: 32px 28px;
            transition: all 0.3s ease;
            position: relative;
        }
        .testimonial-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 0 40px rgba(4, 107, 85, 0.1);
            border-color: rgba(4, 107, 85, 0.2);
        }
        .testimonial-stars {
            color: #f59e0b;
            font-size: 0.85rem;
            margin-bottom: 16px;
            letter-spacing: 2px;
        }
        .testimonial-text {
            font-size: 0.95rem;
            color: var(--gray-600);
            line-height: 1.8;
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .testimonial-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--primary-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-heading);
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--primary);
            flex-shrink: 0;
        }
        .testimonial-name {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--gray-900);
        }
        .testimonial-role {
            font-size: 0.78rem;
            color: var(--gray-400);
            margin-top: 2px;
        }
        .testimonial-quote-icon {
            position: absolute;
            top: 20px;
            right: 24px;
            font-size: 2.5rem;
            color: var(--primary-bg);
            font-family: Georgia, serif;
            line-height: 1;
        }
        @media (max-width: 1024px) {
            .testimonials-grid { grid-template-columns: 1fr; }
        }

    
        /* ============================================
           GALLERY LIGHTBOX
           ============================================ */
        .lightbox-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.92);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
            cursor: zoom-out;
        }
        .lightbox-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .lightbox-overlay img {
            max-width: 90vw;
            max-height: 85vh;
            object-fit: contain;
            border-radius: var(--radius-sm);
            transform: scale(0.9);
            transition: transform 0.4s ease;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
        }
        .lightbox-overlay.active img {
            transform: scale(1);
        }
        .lightbox-close {
            position: absolute;
            top: 24px;
            right: 28px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
            z-index: 10001;
        }
        .lightbox-close:hover {
            background: rgba(255,255,255,0.25);
        }
        .lightbox-caption {
            position: absolute;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255,255,255,0.8);
            font-family: var(--font-heading);
            font-size: 0.9rem;
            font-weight: 500;
            text-align: center;
        }

    
        /* ============================================
           ANIMATED GRADIENT BUTTON
           ============================================ */
        .btn-gradient {
            background: linear-gradient(135deg, var(--primary), var(--primary-light), var(--primary));
            background-size: 200% 200%;
            animation: btn-gradient-shift 3s ease infinite;
            border-color: var(--primary);
            color: #ffffff;
        }
        .btn-gradient:hover {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
            background-size: 200% 200%;
            border-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        @keyframes btn-gradient-shift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

    
        /* ============================================
           VARIED REVEAL ANIMATIONS
           ============================================ */
        .reveal-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .reveal-left.revealed {
            opacity: 1;
            transform: translateX(0);
        }
        .reveal-right {
            opacity: 0;
            transform: translateX(40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .reveal-right.revealed {
            opacity: 1;
            transform: translateX(0);
        }
        .reveal-scale {
            opacity: 0;
            transform: scale(0.92);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .reveal-scale.revealed {
            opacity: 1;
            transform: scale(1);
        }

    
        /* ============================================
           OUR PRODUCTIONS SECTION
           ============================================ */
        .productions {
            background: var(--white);
            padding: 80px 0;
        }
        .productions-header {
            text-align: center;
            margin-bottom: 48px;
        }
        .productions-header .section-desc {
            margin: 0 auto;
        }
        .productions-slider-wrapper {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
        }
        .productions-slide {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            display: none;
            background: var(--gray-900);
        }
        .productions-slide.active {
            display: block;
        }
        .productions-slide video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .productions-slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px 32px 24px;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
            color: var(--white);
            z-index: 2;
        }
        .productions-slide-overlay h3 {
            font-family: var(--font-heading);
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 4px;
        }
        .productions-slide-overlay p {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.75);
        }
        .productions-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(14, 14, 14, 0.85);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.1);
            color: var(--gray-800);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            z-index: 10;
            box-shadow: var(--shadow-md);
        }
        .productions-nav-btn:hover {
            background: rgba(14, 14, 14, 1);
            border-color: var(--primary);
            color: var(--primary);
        }
        .productions-nav-btn svg {
            width: 20px;
            height: 20px;
        }
        .productions-nav-prev {
            left: 16px;
        }
        .productions-nav-next {
            right: 16px;
        }
        .productions-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 24px;
        }
        .productions-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--gray-300);
            cursor: pointer;
            transition: var(--transition);
            border: none;
        }
        .productions-dot.active {
            background: var(--primary);
            transform: scale(1.2);
        }
        .productions-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 64px;
            height: 64px;
            background: rgba(255,255,255,0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 24px rgba(0,0,0,0.3);
            cursor: pointer;
            z-index: 5;
            transition: transform 0.3s ease, background 0.3s ease;
            border: none;
        }
        .productions-play-btn:hover {
            transform: translate(-50%, -50%) scale(1.1);
            background: var(--primary);
        }
        .productions-play-btn:hover svg {
            fill: var(--white);
            stroke: var(--white);
        }
        .productions-play-btn svg {
            width: 26px;
            height: 26px;
            fill: var(--gray-900);
            stroke: var(--gray-900);
            margin-left: 4px;
            transition: fill 0.3s ease, stroke 0.3s ease;
        }
        .productions-play-btn.hidden {
            opacity: 0;
            pointer-events: none;
        }
        .productions-mute-btn {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 40px;
            height: 40px;
            background: rgba(0,0,0,0.4);
            border: none;
            border-radius: 50%;
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 5;
            transition: background 0.2s ease;
            backdrop-filter: blur(4px);
        }
        .productions-mute-btn:hover {
            background: rgba(0,0,0,0.6);
        }
        .productions-mute-btn svg {
            width: 18px;
            height: 18px;
        }
        @media (max-width: 768px) {
            .productions-nav-btn { width: 36px; height: 36px; }
            .productions-play-btn { width: 52px; height: 52px; }
            .productions-play-btn svg { width: 22px; height: 22px; }
        }


        /* ============================================
           CATALOG SECTION
           ============================================ */
        .catalog-section {
            background: var(--white);
            padding: 80px 0;
            text-align: center;
        }
        .catalog-header {
            margin-bottom: 48px;
        }
        .catalog-header .section-desc {
            margin: 0 auto;
        }
        .catalog-card {
            max-width: 700px;
            margin: 0 auto;
            background: rgba(14, 14, 14, 0.6);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: var(--radius-lg);
            padding: 48px 40px;
            transition: all 0.3s ease;
        }
        .catalog-card:hover {
            border-color: rgba(4, 107, 85, 0.3);
            box-shadow: 0 0 40px rgba(4, 107, 85, 0.1);
        }
        .catalog-card-icon {
            width: 80px;
            height: 80px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
        }
        .catalog-card-icon svg {
            width: 36px;
            height: 36px;
            color: var(--white);
        }
        .catalog-card h3 {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--gray-900);
            margin-bottom: 12px;
        }
        .catalog-card p {
            font-size: 0.95rem;
            color: var(--gray-500);
            line-height: 1.8;
            margin-bottom: 8px;
        }
        .catalog-features {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            margin: 20px 0 28px;
        }
        .catalog-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--gray-600);
            font-weight: 500;
        }
        .catalog-feature svg {
            width: 18px;
            height: 18px;
            color: var(--primary);
        }
        .catalog-buttons {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
        }
        @media (max-width: 768px) {
            .catalog-card {
                padding: 36px 24px;
            }
            .catalog-features {
                gap: 16px;
            }
        }
        .btn-catalog {
            background: var(--primary) !important;
            color: var(--white) !important;
            border-color: var(--primary) !important;
        }
        .btn-catalog:hover {
            background: var(--primary-dark) !important;
            border-color: var(--primary-dark) !important;
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        /* ============================================
           ORDER FORM MODAL
           ============================================ */
        .order-modal-overlay {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(6px);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            padding: 20px;
        }
        .order-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .order-modal {
            background: #0e0e0e;
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: var(--radius-lg);
            width: 100%;
            max-width: 560px;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 25px 60px rgba(0,0,0,0.3);
            transform: translateY(20px) scale(0.97);
            transition: transform 0.3s ease;
        }
        .order-modal-overlay.active .order-modal {
            transform: translateY(0) scale(1);
        }
        .order-modal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 28px 16px;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .order-modal-header h2 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--gray-900);
        }
        .order-modal-close {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
            border: none;
            color: var(--gray-500);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1.2rem;
        }
        .order-modal-close:hover {
            background: rgba(255,255,255,0.15);
            color: var(--gray-800);
        }
        .order-modal-body {
            padding: 24px 28px 28px;
        }
        .order-form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 16px;
        }
        .order-form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .order-form-group.full-width {
            grid-column: 1 / -1;
        }
        .order-form-group label {
            font-family: var(--font-heading);
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--gray-700);
        }
        .order-form-group input,
        .order-form-group select,
        .order-form-group textarea {
            padding: 12px 14px;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: var(--radius-sm);
            font-family: var(--font-body);
            font-size: 0.9rem;
            color: var(--gray-800);
            background: rgba(14, 14, 14, 0.8);
            transition: var(--transition);
            outline: none;
            appearance: none;
            -webkit-appearance: none;
            resize: vertical;
        }
        .order-form-group select {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%238d8d8d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            padding-right: 40px;
        }
        .order-form-group input:focus,
        .order-form-group select:focus,
        .order-form-group textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(4, 107, 85, 0.15);
        }
        .order-form-group textarea {
            min-height: 80px;
        }
        .order-form-note {
            font-size: 0.78rem;
            color: var(--gray-400);
            margin-bottom: 16px;
            line-height: 1.5;
        }
        .order-form-actions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }
        @media (max-width: 480px) {
            .order-form-grid { grid-template-columns: 1fr; }
            .order-form-actions { grid-template-columns: 1fr; }
            .order-modal-body { padding: 20px; }
        }

        /* ============================================
           3D CARD TILT EFFECT
           ============================================ */
        .tilt-3d {
            transform-style: preserve-3d;
            perspective: 1000px;
        }
        .tilt-3d-inner {
            transition: transform 0.1s ease-out, box-shadow 0.3s ease;
            transform-style: preserve-3d;
        }
        .tilt-3d:hover .tilt-3d-inner {
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15),
                        0 0 0 1px rgba(4, 107, 85, 0.05);
        }
        .tilt-3d-shine {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: inherit;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s ease;
            background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 50%),
                rgba(255,255,255,0.25) 0%,
                transparent 60%);
            z-index: 10;
        }
        .tilt-3d:hover .tilt-3d-shine {
            opacity: 1;
        }
        /* Disable on mobile */
        @media (max-width: 768px) {
            .tilt-3d-inner { transition: none !important; }
            .tilt-3d-shine { display: none; }
        }

