        :root {
            --vibrant-red: #ED1C24;
            --bright-orange: #F7941E;
            --golden-yellow: #FFD200;
            --solid-black: #000000;
            --dark-grey: #808080;
            --cream: #f9f9f9;
            --transition-speed: 0.8s;
            --nav-bg: rgba(255, 255, 255, 0.95);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            overflow-x: hidden;
            background-color: #f9f9f9;
        }

        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 1s ease;
        }

        .loader-logo {
            width: 200px;
            animation: pulse 2s infinite ease-in-out;
        }

        @keyframes pulse {
            0% {
                transform: scale(0.8);
                opacity: 0.5;
            }
            50% {
                transform: scale(1.1);
                opacity: 1;
            }
            100% {
                transform: scale(0.8);
                opacity: 0.5;
            }
        }

        .reveal {
            opacity: 0;
            transform: translateY(60px) scale(0.95);
            transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform, opacity;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .reveal.reversing {
            opacity: 0;
            transform: translateY(-60px) scale(0.95);
        }

        .subtle-float {
            animation: float 4s infinite ease-in-out;
        }

        @keyframes float {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        nav {
            background: var(--nav-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 10px 4%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(237, 28, 36, 0.08);
            border-bottom: 1px solid rgba(237, 28, 36, 0.06);
            transition: all 0.3s ease;
            min-height: 60px;
            gap: 10px;
        }

        nav.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 30px rgba(237, 28, 36, 0.12);
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-container img {
            height: 38px;
            width: auto;
            transition: all 0.3s ease;
        }

        .logo-container .brand-text {
            font-size: 18px;
            font-weight: 800;
            color: var(--solid-black);
            letter-spacing: -0.5px;
            white-space: nowrap;
        }

        .logo-container .brand-text span {
            color: var(--vibrant-red);
        }

        .desktop-nav {
            display: flex;
            list-style: none;
            gap: 4px;
            align-items: center;
            flex-wrap: nowrap;
        }

        .desktop-nav li {
            position: relative;
            flex-shrink: 0;
        }

        .desktop-nav a {
            text-decoration: none;
            color: #333;
            font-weight: 600;
            font-size: 12px;
            padding: 6px 14px;
            border-radius: 50px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
            letter-spacing: 0.2px;
            white-space: nowrap;
        }

        .desktop-nav a i {
            font-size: 12px;
            color: var(--vibrant-red);
            transition: all 0.3s ease;
        }

        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2.5px;
            background: linear-gradient(90deg, var(--vibrant-red), var(--golden-yellow));
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .desktop-nav a:hover::after {
            width: 40%;
        }

        .desktop-nav a:hover {
            color: var(--vibrant-red);
            background: rgba(237, 28, 36, 0.08);
        }

        .desktop-nav a:hover i {
            transform: scale(1.15);
        }

        .desktop-nav a.active {
            color: var(--vibrant-red);
            background: rgba(237, 28, 36, 0.12);
        }

        .desktop-nav a.active::after {
            width: 40%;
        }

        .nav-whatsapp {
            background: linear-gradient(135deg, #25d366, #128C7E) !important;
            color: white !important;
            padding: 6px 18px !important;
            border-radius: 50px !important;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
            transition: all 0.3s ease !important;
            animation: whatsappBlink 1.5s ease-in-out infinite;
            position: relative;
            font-weight: 700 !important;
            font-size: 12px !important;
        }

        .nav-whatsapp i {
            color: white !important;
            font-size: 14px !important;
        }

        .nav-whatsapp:hover {
            transform: translateY(-2px) scale(1.06) !important;
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6) !important;
            animation-play-state: paused;
        }

        .nav-whatsapp::after {
            display: none !important;
        }

        @keyframes whatsappBlink {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
                transform: scale(1);
            }
            25% {
                box-shadow: 0 0 20px 8px rgba(37, 211, 102, 0.2);
                transform: scale(1.04);
            }
            50% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
                transform: scale(1);
            }
            75% {
                box-shadow: 0 0 20px 8px rgba(37, 211, 102, 0.2);
                transform: scale(1.04);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
                transform: scale(1);
            }
        }

        .nav-whatsapp::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            border-radius: 50px;
            border: 2px solid rgba(37, 211, 102, 0.3);
            animation: pulseRing 1.5s ease-in-out infinite;
        }

        @keyframes pulseRing {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.25);
                opacity: 0;
            }
        }

        .mobile-nav-wrapper {
            display: none;
            flex-direction: column;
            align-items: center;
            width: 100%;
            gap: 4px;
            padding: 4px 0;
        }

        .mobile-nav-row {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4px;
        }

        .mobile-nav-links {
            display: flex;
            list-style: none;
            gap: 4px;
            align-items: center;
            flex-wrap: nowrap;
            justify-content: center;
        }

        .mobile-nav-links li {
            position: relative;
            flex-shrink: 0;
        }

        .mobile-nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 600;
            font-size: 12px;
            padding: 5px 12px;
            border-radius: 50px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
            letter-spacing: 0.2px;
            white-space: nowrap;
        }

        .mobile-nav-links a i {
            font-size: 12px;
            color: var(--vibrant-red);
            transition: all 0.3s ease;
        }

        .mobile-nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2.5px;
            background: linear-gradient(90deg, var(--vibrant-red), var(--golden-yellow));
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .mobile-nav-links a:hover::after {
            width: 40%;
        }

        .mobile-nav-links a:hover {
            color: var(--vibrant-red);
            background: rgba(237, 28, 36, 0.08);
        }

        .mobile-nav-links a:hover i {
            transform: scale(1.15);
        }

        .mobile-nav-links a.active {
            color: var(--vibrant-red);
            background: rgba(237, 28, 36, 0.12);
        }

        .mobile-nav-links a.active::after {
            width: 40%;
        }

        .mobile-whatsapp {
            background: linear-gradient(135deg, #25d366, #128C7E) !important;
            color: white !important;
            padding: 5px 16px !important;
            border-radius: 50px !important;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
            transition: all 0.3s ease !important;
            animation: whatsappBlink 1.5s ease-in-out infinite;
            position: relative;
            font-weight: 700 !important;
            font-size: 12px !important;
        }

        .mobile-whatsapp i {
            color: white !important;
            font-size: 14px !important;
        }

        .mobile-whatsapp:hover {
            transform: translateY(-2px) scale(1.06) !important;
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6) !important;
            animation-play-state: paused;
        }

        .mobile-whatsapp::after {
            display: none !important;
        }

        .mobile-whatsapp::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            border-radius: 50px;
            border: 2px solid rgba(37, 211, 102, 0.3);
            animation: pulseRing 1.5s ease-in-out infinite;
        }

        .hero {
            min-height: 150vh;
            height: 150vh;
            padding: 0;
            background-image: url('./images/hero.jpeg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: block;
            position: relative;
        }

        .hero-content-section {
            padding: 60px 20px;
            background: #f9f9f9;
            text-align: center;
        }
        .hero-content-wrapper {
            max-width: 800px;
            margin: 0 auto;
        }
        .hero-content-wrapper h1 {
            font-size: 3.8rem;
            margin-bottom: 15px;
            line-height: 1.2;
            color: var(--solid-black);
        }
        .hero-content-wrapper h2 {
            font-size: 2rem;
            color: var(--golden-yellow);
        }
        .hero-content-wrapper p {
            max-width: 800px;
            margin-top: 15px;
            font-size: 1.2rem;
            line-height: 1.6;
            color: #555;
        }
        .hero-content-wrapper .hero-helpline {
            font-weight: bold;
            margin-top: 15px;
            font-size: 1.3rem;
            color: var(--vibrant-red);
        }

        .installation-section {
            padding: 60px 8%;
            text-align: center;
        }

        .section-title {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--vibrant-red);
            font-weight: bold;
        }

        .systems-section {
            background-color: #FFF8F0;
            padding: 60px 8%;
            text-align: center;
        }

        .systems-desc {
            max-width: 900px;
            margin: 0 auto 40px;
            color: #555;
            line-height: 1.6;
        }

        .systems-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            text-align: left;
        }

        .system-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            transition: 0.3s ease;
        }

        .system-item:hover {
            transform: scale(1.03);
        }

        .system-icon {
            width: 80px;
            height: 80px;
            flex-shrink: 0;
            background: linear-gradient(135deg, var(--vibrant-red), var(--bright-orange));
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 32px;
            border: 6px solid rgba(237, 28, 36, 0.15);
            transition: 0.5s;
        }

        .system-item:hover .system-icon {
            transform: rotate(360deg);
        }

        .system-text h3 {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 5px;
        }

        .system-text p {
            color: #666;
            line-height: 1.4;
        }

        .golden-banner {
            background: linear-gradient(135deg, var(--golden-yellow), var(--bright-orange));
            margin-top: 40px;
            padding: 25px;
            border-radius: 15px;
            font-weight: 600;
            color: var(--solid-black);
            box-shadow: 0 5px 15px rgba(255, 210, 0, 0.25);
            line-height: 1.5;
        }

        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: 0.5s;
            border: 1px solid rgba(237, 28, 36, 0.06);
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(237, 28, 36, 0.12);
            border-color: rgba(237, 28, 36, 0.15);
        }

        .card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: 1s;
        }

        .card:hover img {
            animation: imgMove 3s infinite alternate ease-in-out;
        }

        @keyframes imgMove {
            0% {
                transform: scale(1) rotate(0deg);
            }
            50% {
                transform: scale(1.1) rotate(2deg);
            }
            100% {
                transform: scale(1.2) rotate(-2deg);
            }
        }

        .card-body {
            padding: 18px;
        }

        .card-body h3 {
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: var(--vibrant-red);
        }

        .card-body p {
            color: #666;
            font-size: 0.95rem;
        }

        .slider-container {
            overflow: hidden;
            width: 100%;
            background: #fff;
            padding: 40px 0;
            position: relative;
            border-radius: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(237, 28, 36, 0.06);
        }

        .slider-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            min-width: 100%;
            padding: 30px;
            text-align: center;
        }

        .floating-contacts {
            position: fixed;
            right: 15px;
            bottom: 15px;
            z-index: 1001;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .floating-contacts a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 20px;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            transition: 0.3s;
        }

        .whatsapp {
            background: #25d366;
        }

        .phone {
            background: linear-gradient(135deg, var(--vibrant-red), var(--bright-orange));
        }

        .email {
            background: #ea4335;
        }

        .floating-contacts a:hover {
            transform: scale(1.15);
        }

        footer {
            background: linear-gradient(135deg, var(--solid-black), #1a1a1a);
            padding: 40px 8%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            color: white;
        }

        footer h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--golden-yellow);
        }

        footer p {
            font-size: 0.9rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.85);
        }

        footer a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.85);
            transition: 0.3s;
        }

        footer a:hover {
            color: var(--golden-yellow);
        }

        footer i {
            color: white;
            transition: 0.3s;
        }

        footer i:hover {
            color: var(--golden-yellow);
            transform: scale(1.2);
        }

        footer .social-links {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 5px;
        }

        footer .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            color: white;
            font-size: 17px;
            transition: all 0.3s ease;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        footer .social-links a:hover {
            transform: translateY(-5px) scale(1.1);
            background: var(--golden-yellow);
            color: var(--solid-black);
            border-color: var(--golden-yellow);
            box-shadow: 0 8px 25px rgba(255, 210, 0, 0.3);
        }

        .product-range-section {
            text-align: center;
            padding: 60px 8%;
            background-color: #fff;
        }

        .section-desc {
            max-width: 850px;
            margin: 0 auto 40px;
            color: #666;
            line-height: 1.6;
            font-size: 15px;
        }

        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .product-card {
            background: #fff;
            border: 1px solid rgba(237, 28, 36, 0.08);
            border-radius: 20px;
            overflow: hidden;
            text-align: left;
            transition: 0.5s ease;
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(237, 28, 36, 0.12);
            border-color: var(--vibrant-red);
        }

        .card-img-box {
            height: 220px;
            overflow: hidden;
        }

        .product-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .product-card:hover img {
            transform: scale(1.15) rotate(2deg);
        }

        .product-card .card-body {
            padding: 20px;
        }

        .product-card .card-body h3 {
            font-size: 1.1rem;
            color: var(--vibrant-red);
            margin-bottom: 10px;
            font-weight: 800;
        }

        .product-card .card-body p {
            color: #555;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .red-callout-banner {
            background: linear-gradient(135deg, var(--vibrant-red), var(--bright-orange));
            color: white;
            padding: 20px 30px;
            border-radius: 15px;
            margin-top: 40px;
            font-weight: 600;
            font-size: 14px;
            box-shadow: 0 5px 15px rgba(237, 28, 36, 0.3);
        }

        .stats-section {
            text-align: center;
            padding: 60px 8%;
            background-color: #ffffff;
        }

        .title-black {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--solid-black);
            margin-bottom: 40px;
            letter-spacing: -1px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
        }

        .stat-card {
            background: #FFF8F0;
            padding: 30px 20px;
            border-radius: 12px;
            transition: 0.4s ease;
            text-align: left;
            padding-left: 25px;
            border: 1px solid rgba(237, 28, 36, 0.06);
        }

        .stat-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 35px rgba(237, 28, 36, 0.08);
            background: #fff;
            border-color: var(--vibrant-red);
        }

        .stat-icon {
            font-size: 26px;
            color: var(--vibrant-red);
            margin-bottom: 15px;
            transition: 0.3s;
        }

        .stat-card:hover .stat-icon {
            transform: rotateY(360deg);
        }

        .stat-card h3 {
            display: inline-block;
            font-size: 24px;
            font-weight: 800;
            color: var(--vibrant-red);
            margin-bottom: 3px;
        }

        .stat-card .plus {
            font-size: 20px;
            font-weight: 800;
            color: var(--vibrant-red);
        }

        .stat-card p {
            color: var(--dark-grey);
            font-size: 14px;
            font-weight: 500;
        }

        .mission-section {
            background-color: #ffffff;
            padding: 80px 8%;
            overflow: hidden;
        }

        .mission-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 60px;
            flex-wrap: wrap;
        }

        .mission-image-box {
            flex: 1;
            min-width: 280px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(237, 28, 36, 0.12);
        }

        .mission-img {
            width: 100%;
            height: auto;
            display: block;
            transition: 1.5s ease-in-out;
        }

        .mission-image-box:hover .mission-img {
            transform: scale(1.1) rotate(-2deg);
        }

        .mission-text-box {
            flex: 1.2;
            min-width: 280px;
            text-align: left;
        }

        .mission-label {
            color: var(--vibrant-red);
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 20px;
            text-transform: capitalize;
            display: inline-block;
        }

        .mission-quote {
            font-size: 24px;
            line-height: 1.5;
            color: var(--solid-black);
            font-weight: 500;
            font-style: normal;
            border-left: 5px solid var(--vibrant-red);
            padding-left: 25px;
        }

        .features-section {
            padding: 80px 5%;
            background-color: #fff;
            text-align: center;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .feature-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: 0.4s ease;
        }

        .feature-img-box {
            width: 100%;
            max-width: 280px;
            height: 220px;
            border-radius: 25px;
            overflow: hidden;
            margin-bottom: 25px;
            box-shadow: 0 10px 20px rgba(237, 28, 36, 0.12);
        }

        .feature-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s ease;
        }

        .moving-img {
            animation: imageFloat 5s infinite ease-in-out;
        }

        @keyframes imageFloat {
            0%,
            100% {
                transform: translateY(0) scale(1);
            }
            50% {
                transform: translateY(-12px) scale(1.02);
            }
        }

        .feature-card:hover .feature-img-box img {
            transform: scale(1.15) rotate(2deg);
        }

        .feature-content h3 {
            font-size: 22px;
            color: var(--vibrant-red);
            font-weight: 700;
            margin-bottom: 15px;
        }

        .feature-content p {
            color: var(--dark-grey);
            font-size: 14px;
            line-height: 1.6;
            padding: 0 10px;
        }

        @media (max-width: 768px) {
            .hero-content-wrapper h1 {
                font-size: 2.2rem;
            }
            .hero-content-wrapper h2 {
                font-size: 1.5rem;
            }
            .hero-content-wrapper p {
                font-size: 1rem;
            }
            .hero-content-wrapper .hero-helpline {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .hero-content-wrapper h1 {
                font-size: 1.8rem;
            }
            .hero-content-wrapper h2 {
                font-size: 1.1rem;
            }
            .hero-content-wrapper p {
                font-size: 0.9rem;
            }
            .hero-content-wrapper .hero-helpline {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 360px) {
            .hero-content-wrapper h1 {
                font-size: 1.5rem;
            }
            .hero-content-wrapper h2 {
                font-size: 0.9rem;
            }
            .hero-content-wrapper p {
                font-size: 0.75rem;
            }
            .hero-content-wrapper .hero-helpline {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 768px) {
            .desktop-nav {
                display: none !important;
            }

            .mobile-nav-wrapper {
                display: flex !important;
            }

            nav {
                flex-direction: column;
                padding: 6px 2%;
                min-height: auto;
                gap: 3px;
            }

            .logo-container img {
                height: 28px;
            }

            .logo-container .brand-text {
                font-size: 15px;
                letter-spacing: -0.3px;
            }

            .mobile-nav-links {
                gap: 2px;
            }

            .mobile-nav-links a {
                font-size: 11px;
                padding: 4px 10px;
                border-radius: 30px;
                gap: 4px;
            }

            .mobile-nav-links a i {
                font-size: 11px;
            }

            .mobile-whatsapp {
                padding: 4px 12px !important;
                font-size: 11px !important;
                border-radius: 30px !important;
            }

            .mobile-whatsapp i {
                font-size: 12px !important;
            }

            .mobile-whatsapp::before {
                top: -2px;
                left: -2px;
                right: -2px;
                bottom: -2px;
            }

            .hero {
                min-height: 100vh;
                height: 100vh;
                background-size: cover;
                background-position: center;
            }

            .mission-container {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }

            .mission-text-box {
                text-align: center;
            }

            .mission-quote {
                font-size: 18px;
                border-left: none;
                border-top: 3px solid var(--vibrant-red);
                padding-top: 20px;
                padding-left: 0;
            }

            .mission-image-box {
                min-width: 200px;
            }

            .features-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 480px) {
            nav {
                padding: 4px 1.5%;
                gap: 2px;
            }

            .logo-container img {
                height: 22px;
            }

            .logo-container .brand-text {
                font-size: 12px;
                letter-spacing: -0.2px;
            }

            .logo-container {
                gap: 5px;
            }

            .mobile-nav-links {
                gap: 1px;
            }

            .mobile-nav-links a {
                font-size: 9px;
                padding: 3px 7px;
                border-radius: 20px;
                gap: 3px;
            }

            .mobile-nav-links a i {
                font-size: 8px;
            }

            .mobile-whatsapp {
                padding: 3px 8px !important;
                font-size: 9px !important;
                border-radius: 20px !important;
            }

            .mobile-whatsapp i {
                font-size: 9px !important;
            }

            .mobile-whatsapp::before {
                display: none;
            }

            .hero {
                min-height: 30vh;
                height: 30vh;
                background-size: cover;
                background-position: center;
            }

            .section-title {
                font-size: 1.4rem;
            }

            .title-black {
                font-size: 1.4rem;
                margin-bottom: 25px;
            }

            .installation-section {
                padding: 40px 5%;
            }

            .systems-section {
                padding: 40px 5%;
            }

            .systems-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .system-icon {
                width: 55px;
                height: 55px;
                font-size: 22px;
                border-width: 4px;
            }

            .system-text h3 {
                font-size: 1.1rem;
            }

            .system-text p {
                font-size: 0.8rem;
            }

            .grid-container {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .card img {
                height: 160px;
            }

            .card-body {
                padding: 14px;
            }

            .card-body h3 {
                font-size: 1rem;
            }

            .card-body p {
                font-size: 0.8rem;
            }

            .product-range-section {
                padding: 40px 5%;
            }

            .card-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .card-img-box {
                height: 160px;
            }

            .product-card .card-body {
                padding: 14px;
            }

            .product-card .card-body h3 {
                font-size: 1rem;
            }

            .product-card .card-body p {
                font-size: 0.8rem;
            }

            .red-callout-banner {
                padding: 15px 20px;
                font-size: 12px;
            }

            .golden-banner {
                padding: 15px;
                font-size: 12px;
            }

            .stats-section {
                padding: 40px 5%;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }

            .stat-card {
                padding: 15px 12px;
                padding-left: 15px;
            }

            .stat-card h3 {
                font-size: 16px;
            }

            .stat-card .plus {
                font-size: 12px;
            }

            .stat-card p {
                font-size: 10px;
            }

            .stat-icon {
                font-size: 18px;
                margin-bottom: 8px;
            }

            .slider-container {
                padding: 25px 0;
            }

            .slide {
                padding: 20px;
            }

            .slide p {
                font-size: 0.85rem;
            }

            .slide strong {
                font-size: 0.8rem;
            }

            .mission-section {
                padding: 40px 5%;
            }

            .mission-container {
                gap: 20px;
            }

            .mission-image-box {
                min-width: 150px;
                border-radius: 12px;
            }

            .mission-label {
                font-size: 16px;
                margin-bottom: 12px;
            }

            .mission-quote {
                font-size: 14px;
                padding-top: 15px;
                border-top-width: 3px;
            }

            .features-section {
                padding: 40px 5%;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .feature-img-box {
                height: 160px;
                max-width: 100%;
                border-radius: 18px;
            }

            .feature-content h3 {
                font-size: 18px;
            }

            .feature-content p {
                font-size: 13px;
                padding: 0 5px;
            }

            footer {
                padding: 30px 5%;
                grid-template-columns: 1fr;
                gap: 20px;
            }

            footer h3 {
                font-size: 1rem;
            }

            footer p {
                font-size: 0.8rem;
            }

            .floating-contacts a {
                width: 38px;
                height: 38px;
                font-size: 16px;
            }

            .floating-contacts {
                right: 10px;
                bottom: 10px;
                gap: 6px;
            }
        }

        @media (max-width: 360px) {
            nav {
                padding: 3px 1%;
                gap: 2px;
            }

            .logo-container img {
                height: 18px;
            }

            .logo-container .brand-text {
                font-size: 10px;
                letter-spacing: -0.1px;
            }

            .logo-container {
                gap: 3px;
            }

            .mobile-nav-links a {
                font-size: 7px;
                padding: 2px 5px;
                border-radius: 16px;
                gap: 2px;
            }

            .mobile-nav-links a i {
                font-size: 6px;
            }

            .mobile-whatsapp {
                padding: 2px 6px !important;
                font-size: 7px !important;
                border-radius: 16px !important;
            }

            .mobile-whatsapp i {
                font-size: 7px !important;
            }

            .hero {
                min-height: 30vh;
                height: 30vh;
                background-size: cover;
                background-position: center;
            }

            .section-title {
                font-size: 1.2rem;
            }

            .title-black {
                font-size: 1.2rem;
            }
        }