/*
Theme Name: Sinnergy Static
Theme URI: https://sinnergy.nl/
Author: Sinnergy Studios
Author URI: https://sinnergy.nl/
Description: Static one-page theme generated from index.html
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sinnergy-static
*/

/* Self-hosted fonts for better cross-platform compatibility */
        @font-face {
            font-family: 'Roc Grotesk';
            src: url('fonts/Kostic - Roc Grotesk Regular.otf') format('opentype');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }
        @font-face {
            font-family: 'Roc Grotesk';
            src: url('fonts/Kostic - Roc Grotesk Medium.otf') format('opentype');
            font-weight: 500;
            font-style: normal;
            font-display: swap;
        }
        @font-face {
            font-family: 'Roc Grotesk';
            src: url('fonts/Kostic - Roc Grotesk Bold.otf') format('opentype');
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }
        @font-face {
            font-family: 'Aux Mono';
            src: url('fonts/Aux Mono.ttf') format('truetype');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            -ms-text-size-adjust: 100%;
        }
        
        /* Windows-specific fixes for better rendering */
        @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
            /* IE/Edge specific fixes */
            .product-block,
            .service-block {
                display: -ms-flexbox;
                display: flex;
                -ms-flex-direction: column;
                flex-direction: column;
            }
        }
        
        /* Better SVG rendering on Windows */
        img[src$=".svg"],
        svg {
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }

        body {
            font-family: 'Roc Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #1a1a1a;
            color: #ffffff;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }

        /* ============================================
           NAVIGATION - CLEAN REBUILD
           ============================================ */
        
        nav {
            background: #151515;
            padding: 1rem 3rem;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1600px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .nav-logo {
            height: 30px;
            flex-shrink: 0;
        }

        .nav-logo img {
            height: 100%;
            width: auto;
            display: block;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 3rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            transition: font-weight 0.3s ease;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 2px;
            background: #FF5722;
            transition: width 0.3s ease;
        }

        .nav-menu a:hover {
            font-weight: 700;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }


        /* Hamburger button - hidden on desktop */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 22px;
            cursor: pointer;
            padding: 0;
            background: transparent;
            border: none;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
            z-index: 10001;
            position: relative;
        }

        .hamburger span {
            display: block;
            width: 100%;
            height: 2px;
            background: #ffffff;
            transition: all 0.3s ease;
            transform-origin: center;
        }

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

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

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

        /* Mobile styles */
        @media (max-width: 768px) {
            nav {
                padding: 1rem 1.5rem;
            }

            .nav-container {
                gap: 1rem;
            }

            /* Show hamburger on mobile */
            .hamburger {
                display: flex;
            }

            /* Hide desktop menu on mobile */
            .nav-menu {
                position: fixed;
                top: 60px;
                left: 0;
                right: 0;
                bottom: 0;
                flex-direction: column;
                background: #151515;
                padding: 2rem;
                gap: 2rem;
                transform: translateX(100%);
                transition: transform 0.3s ease;
                z-index: 10000;
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
            }

            .nav-menu.active {
                transform: translateX(0);
            }

            .nav-menu a {
                font-size: 1.1rem;
                padding: 0.75rem 0;
            }

            .nav-menu a::after {
                display: none;
            }

        }

        main {
            margin-top: 60px;
        }

        .section {
            scroll-margin-top: 80px;
            min-height: calc(100vh - 60px);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 6rem 2rem;
        }

        .section-inner {
            width: 100%;
            max-width: 1100px;
            display: grid;
            gap: 3rem;
            place-items: center;
            text-align: center;
            position: relative;
        }

        .section-inner > * {
            z-index: 1;
        }

        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #1a1a1a;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

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

        .preloader-text {
            font-family: 'Roc Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: #ffffff;
            font-size: 1.5rem;
            letter-spacing: 2px;
        }

        .animation-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -1;
            pointer-events: none;
            overflow: hidden;
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        .animation-container.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .animation-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.2;
            filter: grayscale(100%) contrast(165%);
            z-index: 0;
        }

        .animation-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('images/RBlogopattern.webp');
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            opacity: 1;
            pointer-events: none;
            z-index: 1;
            mix-blend-mode: overlay;
        }

        .section-hero {
            background: transparent;
            align-items: stretch;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        .section-hero .section-inner {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1600px;
            min-height: calc(100vh - 60px);
            padding: 4rem 0 1rem;
            gap: 3rem;
            margin: 0 auto;
        }


        .section-products {
            background: #3c0f0f url('images/bgcine.jpg') center center / cover no-repeat;
            min-height: 100vh;
            padding: 2rem 2rem 6rem 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            scroll-margin-top: 70px;
        }

        .section-stats {
            background: #f0f0f0;
            min-height: 200px;
            padding: 3rem 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .section-stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('images/RBlogopattern.webp') right calc(100% + 40px) / cover no-repeat;
            opacity: 0.05;
            pointer-events: none;
        }

        .stats-container {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            width: 100%;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            align-items: center;
            justify-items: center;
        }

        .section-services {
            background: #3c0f0f url('images/bgservices.webp') center center / cover no-repeat;
            min-height: 100vh;
            padding: 2rem 2rem 6rem 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            scroll-margin-top: 70px;
        }

        .services-title {
            font-family: 'Aux Mono', 'Courier New', 'Courier', 'Lucida Console', 'Monaco', monospace;
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            font-weight: normal;
            text-align: center;
            color: #ffffff;
            margin: 2rem 0 4rem 0;
            letter-spacing: 0.1em;
            width: 100%;
            max-width: 1200px;
            padding: 0 3rem;
        }

        .services-content {
            max-width: 1400px;
            width: 100%;
            padding: 0 1.5rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .service-block {
            background: #151515;
            border-radius: 12px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            position: relative;
            width: 100%;
            min-width: 0;
            overflow: hidden;
        }


        .service-block::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, #1a1a1a 0%, #1a1a1a 50%, #151515 100%);
            border-radius: 12px;
            z-index: 0;
            pointer-events: none;
        }

        .service-block > * {
            position: relative;
            z-index: 1;
        }

        .service-logo {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 1rem;
        }

        .service-logo img {
            max-width: 400px;
            width: 100%;
            height: auto;
            object-fit: contain;
            display: block;
        }
        
        .service-logo svg {
            max-width: 400px;
            width: 100%;
            height: auto;
            display: block;
        }

        .service-title {
            font-family: 'Roc Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            font-weight: 600;
            color: #ffffff;
            margin: 0;
            line-height: 1.3;
        }

        .service-tagline {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .service-tagline .service-title {
            font-size: clamp(0.75rem, 1.2vw, 0.85rem);
            font-weight: 400;
            text-align: center;
            margin: 0;
            padding: 0;
            line-height: 1;
            color: rgba(255, 255, 255, 0.7);
        }

        .service-description {
            font-family: 'Roc Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            font-size: clamp(0.85rem, 1.3vw, 0.95rem);
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.85);
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .service-description p {
            margin: 0;
        }

        .service-video {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .service-video video {
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        .service-image {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .service-image img {
            max-width: 90%;
            height: auto;
            object-fit: contain;
        }

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

        @media (max-width: 768px) {
            .section-services {
                padding: 2rem 2rem 6rem 2rem;
            }
        }

        .section-faq {
            background: #f0f0f0;
            min-height: auto;
            padding: 2rem 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            scroll-margin-top: 70px;
        }

        .section-contact {
            background: #1a1a1a;
            min-height: 100vh;
            padding: 4rem 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            scroll-margin-top: 70px;
        }

        .faq-title {
            font-family: 'Aux Mono', 'Courier New', 'Courier', 'Lucida Console', 'Monaco', monospace;
            font-size: clamp(1rem, 2vw, 1.5rem);
            font-weight: normal;
            text-align: center;
            color: #343636;
            margin: 2rem 0 3rem 0;
            letter-spacing: 0.1em;
            width: 100%;
            max-width: 1200px;
            padding: 0 3rem;
        }

        .faq-content {
            max-width: 1200px;
            width: 100%;
            padding: 0 3rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .faq-item {
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            width: 100%;
            padding: 1.5rem 2rem;
            background: transparent;
            border: none;
            color: #1a1a1a;
            font-family: 'Roc Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            font-size: clamp(1rem, 1.5vw, 1.2rem);
            font-weight: 500;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            transition: background-color 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(0, 0, 0, 0.05);
        }

        .faq-question span:first-child {
            flex: 1;
        }

        .faq-icon {
            font-size: 1.5rem;
            font-weight: 300;
            transition: transform 0.3s ease;
            color: #ff6600;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

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

        .faq-item.active .faq-answer {
            max-height: 2000px;
            padding: 0 2rem 1.5rem 2rem;
        }

        .faq-answer p {
            font-family: 'Roc Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            font-size: clamp(0.9rem, 1.3vw, 1rem);
            line-height: 1.7;
            color: #343636;
            margin: 0 0 1rem 0;
        }

        .faq-answer p:last-child {
            margin-bottom: 0;
        }

        .faq-answer p strong {
            display: block;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .faq-answer p:first-child strong {
            margin-top: 0;
        }

        .stats-item {
            text-align: center;
            color: #343636;
        }

        .stats-number {
            font-family: 'Aux Mono', 'Courier New', 'Courier', 'Lucida Console', 'Monaco', monospace;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: normal;
            line-height: 1;
            margin-bottom: 0.5rem;
            color: rgba(52, 54, 54, 0.8);
        }

        .stats-label {
            font-family: 'Roc Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            font-size: clamp(0.7rem, 1.2vw, 0.85rem);
            font-weight: 400;
            color: rgba(52, 54, 54, 0.6);
            line-height: 1.3;
        }

        .stats-sublabel {
            font-family: 'Roc Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            font-size: clamp(0.65rem, 1vw, 0.75rem);
            font-weight: 400;
            color: rgba(52, 54, 54, 0.5);
            line-height: 1.3;
            margin-top: 0.25rem;
        }

        @media (max-width: 768px) {
            .stats-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .section-stats {
                padding: 2.5rem 2rem;
            }
        }



        .products-title {
            font-family: 'Aux Mono', 'Courier New', 'Courier', 'Lucida Console', 'Monaco', monospace;
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            font-weight: normal;
            text-align: center;
            color: #ffffff;
            margin: 2rem 0 4rem 0;
            letter-spacing: 0.1em;
            width: 100%;
            max-width: 1200px;
            padding: 0 3rem;
        }

        .products-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            width: 100%;
            max-width: 1400px;
            padding: 0 1.5rem;
        }

        .product-block {
            background: #1e1e1e;
            border-radius: 12px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            position: relative;
            width: 100%;
            min-width: 0;
            overflow: hidden;
        }

        .product-block > * {
            position: relative;
            z-index: 1;
        }

        .product-block::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('images/RBlogopattern dark.webp') right bottom / cover no-repeat;
            background-position: right calc(100% + 145px);
            opacity: 0.7;
            pointer-events: none;
            border-radius: 12px;
            z-index: 0;
        }

        .product-logo {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 0.5rem;
        }

        .product-logo img {
            max-width: 300px;
            width: 100%;
            height: auto;
            object-fit: contain;
            display: block;
        }
        
        .product-logo svg {
            max-width: 300px;
            width: 100%;
            height: auto;
            display: block;
        }

        .product-tagline {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 0.75rem;
        }

        .product-tagline p {
            font-family: 'Roc Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            font-size: clamp(0.75rem, 1.2vw, 0.85rem);
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
            margin: 0;
        }

        .learn-more-link {
            color: #ff4e01;
        }

        .product-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            align-items: center;
            margin-bottom: 1rem;
            width: 100%;
        }

        .product-btn {
            font-family: 'Roc Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            font-size: clamp(0.8rem, 1.2vw, 0.9rem);
            font-weight: 500;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .product-btn--primary {
            background: #ff4e01;
            color: #ffffff;
        }

        .product-btn--primary:hover {
            background: #e64500;
        }

        .product-btn--secondary {
            background: transparent;
            color: #ff4e01;
            border: 2px solid #ff4e01;
        }

        .product-btn--secondary:hover {
            background: rgba(255, 78, 1, 0.1);
        }

        .product-3d-image {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 1rem;
        }

        .product-3d-image img,
        .product-3d-image video {
            max-width: 100%;
            height: auto;
            object-fit: contain;
        }

        .product-usps {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 1rem;
        }

        .product-usps img {
            max-width: 90%;
            height: auto;
            object-fit: contain;
        }

        .product-buy-button {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 1rem;
            width: 100%;
        }

        .product-image {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 1;
        }

        .product-image img {
            width: 100%;
            height: auto;
            border-radius: 0;
            object-fit: cover;
        }

        .product-text {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            flex: 1;
        }

        .product-title {
            font-family: 'Roc Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 600;
            color: rgba(255, 255, 255, 0.95);
            margin: 0;
        }

        .product-description {
            font-family: 'Roc Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            font-size: clamp(0.85rem, 1.5vw, 1rem);
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
        }

        @media (max-width: 768px) {
            .products-content {
                grid-template-columns: 1fr;
            }

            .product-block {
                padding: 2rem;
            }

            .section-products {
                padding: 2rem 2rem 6rem 2rem;
            }
        }

        /* Footer */
        .site-footer {
            background: #151515;
            padding: 4rem 2rem 2rem 2rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }

        .footer-tagline {
            font-family: 'Roc Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            font-size: clamp(0.75rem, 1.5vw, 0.9rem);
            font-weight: 600;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.3;
            margin: 0;
        }

        .footer-info {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-company {
            font-family: 'Roc Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            font-size: clamp(0.75rem, 1.2vw, 0.85rem);
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
        }

        .footer-location {
            font-family: 'Roc Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            font-size: clamp(0.7rem, 1.1vw, 0.8rem);
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }

        .footer-social {
            margin: 0.5rem 0;
        }

        .footer-instagram {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.8);
            transition: color 0.3s ease;
        }

        .footer-instagram:hover {
            color: rgba(255, 255, 255, 1);
        }

        .footer-instagram svg {
            width: 24px;
            height: 24px;
        }

        .footer-bottom {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            margin-top: 1rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            width: 100%;
        }

        .footer-copyright {
            font-family: 'Roc Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            font-size: clamp(0.65rem, 1vw, 0.75rem);
            color: rgba(255, 255, 255, 0.6);
            margin: 0;
        }

        .footer-terms {
            font-family: 'Roc Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            font-size: clamp(0.65rem, 1vw, 0.75rem);
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-terms:hover {
            color: rgba(255, 255, 255, 1);
        }

        @media (min-width: 768px) {
            .footer-bottom {
                flex-direction: row;
                justify-content: center;
                gap: 2rem;
            }
        }

        .hero-body {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 3rem;
            width: 100%;
            flex: 1;
            position: relative;
            max-width: min(85%, 1200px);
            margin: 0 auto;
        }

        .partner-strip {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 0.75rem 0;
            cursor: ew-resize;
            contain: layout style paint;
        }

        .partner-strip-inner {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 3rem;
            position: relative;
            -webkit-mask-image: linear-gradient(
                to right,
                rgba(0, 0, 0, 0) 0%,
                rgba(0, 0, 0, 0.2) 10%,
                rgba(0, 0, 0, 1) 20%,
                rgba(0, 0, 0, 1) 80%,
                rgba(0, 0, 0, 0.2) 90%,
                rgba(0, 0, 0, 0) 100%
            );
            mask-image: linear-gradient(
                to right,
                rgba(0, 0, 0, 0) 0%,
                rgba(0, 0, 0, 0.2) 10%,
                rgba(0, 0, 0, 1) 20%,
                rgba(0, 0, 0, 1) 80%,
                rgba(0, 0, 0, 0.2) 90%,
                rgba(0, 0, 0, 0) 100%
            );
            -webkit-mask-size: 100% 100%;
            mask-size: 100% 100%;
            -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
        }

        .section-hero .partner-strip {
            margin-top: auto;
            width: 100%;
        }

        .partner-track {
            display: flex;
            gap: 2.25rem;
            width: fit-content;
            will-change: transform;
            -webkit-mask-size: 100%;
            mask-size: 100%;
            transform: translateZ(0);
            backface-visibility: hidden;
        }

        .partner-logo {
            min-width: 150px;
            min-height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 1rem;
        }

        .partner-logo img {
            height: 70px;
            width: auto;
            max-width: 180px;
            object-fit: contain;
            filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
        }

        .partner-logo--amf img,
        .partner-logo--cl img,
        .partner-logo--paasp img,
        .partner-logo--sonus img,
        .partner-logo--zc img {
            transform: scale(0.75);
            transform-origin: center;
        }

        .hero-copy h1 {
            font-size: clamp(2.5rem, 5vw, 3.75rem);
            font-weight: 400;
            line-height: 1.1;
            letter-spacing: 0.02em;
            font-family: 'Aux Mono', 'Courier New', 'Courier', 'Lucida Console', 'Monaco', monospace;
        }

        .hero-copy p {
            margin-top: 1rem;
            max-width: 100%;
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: rgba(255, 255, 255, 0.85);
            text-align: center;
        }

        .hero-copy {
            width: 100%;
            max-width: min(90%, 1200px);
            text-align: center;
        }

        .hero-title-line {
            display: block;
        }

        .hero-title-line.emphasized {
            color: rgba(0, 0, 0, 1);
            text-shadow:
                1px 0 0 rgba(255, 255, 255, 1),
                -1px 0 0 rgba(255, 255, 255, 1),
                0 1px 0 rgba(255, 255, 255, 1),
                0 -1px 0 rgba(255, 255, 255, 1);
        }

        .hero-title-line.outlined {
            display: inline;
        }

        .hero-title-line.no-outline {
            display: inline;
            color: rgba(255, 255, 255, 1);
            text-shadow: none;
        }

        .hero-sub-line {
            display: block;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
            max-width: 1200px;
            width: 100%;
            padding: 4rem 2rem;
        }

        .contact-left h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .contact-left p {
            font-size: clamp(1rem, 2vw, 1.125rem);
            color: rgba(255, 255, 255, 0.88);
            line-height: 1.6;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-input-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .contact-input-group label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .contact-input-group input,
        .contact-input-group textarea {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            padding: 0.875rem 1rem;
            color: #ffffff;
            font-family: 'Roc Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .contact-input-group input:focus,
        .contact-input-group textarea:focus {
            outline: none;
            border-color: rgba(255, 255, 255, 0.5);
            background: rgba(255, 255, 255, 0.15);
        }

        .contact-input-group input::placeholder,
        .contact-input-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .contact-input-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .contact-submit-btn {
            background: #FF5722;
            border: 1px solid #FF5722;
            border-radius: 8px;
            padding: 1rem 2rem;
            color: #ffffff;
            font-family: 'Roc Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 0.5rem;
        }

        .contact-submit-btn:hover {
            background: #ff6b3d;
            border-color: #ff6b3d;
            transform: translateY(-2px);
        }

        .contact-submit-btn:active {
            transform: translateY(0);
        }

        .contact-submit-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .contact-message {
            padding: 1rem;
            border-radius: 8px;
            font-size: 0.9rem;
            text-align: center;
            display: none;
        }

        .contact-message.success {
            background: rgba(15, 127, 67, 0.3);
            border: 1px solid rgba(15, 127, 67, 0.5);
            color: #64c259;
            display: block;
        }

        .contact-message.error {
            background: rgba(255, 59, 0, 0.3);
            border: 1px solid rgba(255, 59, 0, 0.5);
            color: #ff4e01;
            display: block;
        }

        @media (max-width: 768px) {
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        .grid {
            height: 800px;
            width: 800px;
            background-image: linear-gradient(to right, #0f0f10 1px, transparent 1px), linear-gradient(to bottom, #0f0f10 1px, transparent 1px);
            background-size: 1rem 1rem;
            background-position: center center;
            position: absolute;
            z-index: -1;
            filter: blur(1px);
        }

        .search-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2.5rem;
            width: 100%;
        }

        .search-module {
            --glow-color-one: #402fb5;
            --glow-color-two: #cf30aa;
            --white-color-one: #a099d8;
            --white-color-two: #dfa2da;
            --border-color-one: #402fb5;
            --border-color-two: #cf30aa;
            --dark-color-one: #18116a;
            --dark-color-two: #6e1b60;
            --accent-mask: #cf30aa;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            min-height: 70px;
            min-width: 314px;
        }

        .search-module--orange {
            --glow-color-one: #ff5722;
            --glow-color-two: #ff7c4d;
            --white-color-one: #ffb89d;
            --white-color-two: #ffd0bd;
            --border-color-one: #ff5722;
            --border-color-two: #ff7c4d;
            --dark-color-one: #7f2910;
            --dark-color-two: #b73d1c;
            --accent-mask: #ff5722;
        }

        .search-module .white,
        .search-module .border,
        .search-module .darkBorderBg,
        .search-module .glow {
            max-height: 70px;
            max-width: 314px;
            height: 100%;
            width: 100%;
            position: absolute;
            overflow: hidden;
            z-index: -1;
            border-radius: 12px;
            filter: blur(3px);
        }

        .search-input {
            background-color: #010201;
            border: none;
            width: 301px;
            height: 56px;
            border-radius: 10px;
            color: #ffffff;
            padding-inline: 59px;
            font-size: 18px;
        }

        .search-input::placeholder {
            color: #c0b9c0;
        }

        .search-input:focus {
            outline: none;
        }

        .search-core {
            position: relative;
        }

        .search-core:focus-within > .input-mask {
            display: none;
        }

        .input-mask {
            pointer-events: none;
            width: 100px;
            height: 20px;
            position: absolute;
            background: linear-gradient(90deg, transparent, #000000);
            top: 18px;
            left: 70px;
        }

        .accent-mask {
            pointer-events: none;
            width: 30px;
            height: 20px;
            position: absolute;
            background: var(--accent-mask);
            top: 10px;
            left: 5px;
            filter: blur(20px);
            opacity: 0.8;
            transition: all 2s;
        }

        .search-core:hover > .accent-mask {
            opacity: 0;
        }

        .search-module .white {
            max-height: 63px;
            max-width: 307px;
            border-radius: 10px;
            filter: blur(2px);
        }

        .search-module .white::before {
            content: "";
            z-index: -2;
            text-align: center;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(83deg);
            position: absolute;
            width: 600px;
            height: 600px;
            background-repeat: no-repeat;
            background-position: 0 0;
            filter: brightness(1.4);
            background-image: conic-gradient(rgba(0, 0, 0, 0) 0%, var(--white-color-one), rgba(0, 0, 0, 0) 8%, rgba(0, 0, 0, 0) 50%, var(--white-color-two), rgba(0, 0, 0, 0) 58%);
            transition: all 2s;
        }

        .search-module .border {
            max-height: 59px;
            max-width: 303px;
            border-radius: 11px;
            filter: blur(0.5px);
        }

        .search-module .border::before {
            content: "";
            z-index: -2;
            text-align: center;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(70deg);
            position: absolute;
            width: 600px;
            height: 600px;
            filter: brightness(1.3);
            background-repeat: no-repeat;
            background-position: 0 0;
            background-image: conic-gradient(#1c191c, var(--border-color-one) 5%, #1c191c 14%, #1c191c 50%, var(--border-color-two) 60%, #1c191c 64%);
            transition: all 2s;
        }

        .search-module .darkBorderBg {
            max-height: 65px;
            max-width: 312px;
        }

        .search-module .darkBorderBg::before {
            content: "";
            z-index: -2;
            text-align: center;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(82deg);
            position: absolute;
            width: 600px;
            height: 600px;
            background-repeat: no-repeat;
            background-position: 0 0;
            background-image: conic-gradient(rgba(0, 0, 0, 0), var(--dark-color-one), rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 50%, var(--dark-color-two), rgba(0, 0, 0, 0) 60%);
            transition: all 2s;
        }

        .search-module:hover > .darkBorderBg::before {
            transform: translate(-50%, -50%) rotate(262deg);
        }

        .search-module:hover > .glow::before {
            transform: translate(-50%, -50%) rotate(240deg);
        }

        .search-module:hover > .white::before {
            transform: translate(-50%, -50%) rotate(263deg);
        }

        .search-module:hover > .border::before {
            transform: translate(-50%, -50%) rotate(250deg);
        }

        .search-module:hover > .darkBorderBg::before {
            transform: translate(-50%, -50%) rotate(-98deg);
        }

        .search-module:hover > .glow::before {
            transform: translate(-50%, -50%) rotate(-120deg);
        }

        .search-module:hover > .white::before {
            transform: translate(-50%, -50%) rotate(-97deg);
        }

        .search-module:hover > .border::before {
            transform: translate(-50%, -50%) rotate(-110deg);
        }

        .search-module:focus-within > .darkBorderBg::before {
            transform: translate(-50%, -50%) rotate(442deg);
            transition: all 4s;
        }

        .search-module:focus-within > .glow::before {
            transform: translate(-50%, -50%) rotate(420deg);
            transition: all 4s;
        }

        .search-module:focus-within > .white::before {
            transform: translate(-50%, -50%) rotate(443deg);
            transition: all 4s;
        }

        .search-module:focus-within > .border::before {
            transform: translate(-50%, -50%) rotate(430deg);
            transition: all 4s;
        }

        .search-module .glow {
            overflow: hidden;
            filter: blur(30px);
            opacity: 0.4;
            max-height: 130px;
            max-width: 354px;
        }

        .search-module .glow::before {
            content: "";
            z-index: -2;
            text-align: center;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(60deg);
            position: absolute;
            width: 999px;
            height: 999px;
            background-repeat: no-repeat;
            background-position: 0 0;
            background-image: conic-gradient(#000000, var(--glow-color-one) 5%, #000000 38%, #000000 50%, var(--glow-color-two) 60%, #000000 87%);
            transition: all 2s;
        }

        @keyframes rotate {
            100% {
                transform: translate(-50%, -50%) rotate(450deg);
            }
        }

        @keyframes leftright {
            0% {
                transform: translate(0px, 0px);
                opacity: 1;
            }

            49% {
                transform: translate(250px, 0px);
                opacity: 0;
            }

            80% {
                transform: translate(-40px, 0px);
                opacity: 0;
            }

            100% {
                transform: translate(0px, 0px);
                opacity: 1;
            }
        }

        .filter-icon {
            position: absolute;
            top: 8px;
            right: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            max-height: 40px;
            max-width: 38px;
            height: 100%;
            width: 100%;
            isolation: isolate;
            overflow: hidden;
            border-radius: 10px;
            background: linear-gradient(180deg, #161329, #000000, #1d1b4b);
            border: 1px solid transparent;
        }

        .filterBorder {
            height: 42px;
            width: 40px;
            position: absolute;
            overflow: hidden;
            top: 7px;
            right: 7px;
            border-radius: 10px;
        }

        .filterBorder::before {
            content: "";
            text-align: center;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(90deg);
            position: absolute;
            width: 600px;
            height: 600px;
            background-repeat: no-repeat;
            background-position: 0 0;
            filter: brightness(1.35);
            background-image: conic-gradient(rgba(0, 0, 0, 0), #3d3a4f, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 50%, #3d3a4f, rgba(0, 0, 0, 0) 100%);
            animation: rotate 4s linear infinite;
        }

        .search-icon {
            position: absolute;
            left: 20px;
            top: 15px;
        }
