@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;600;700&family=Rajdhani:wght@400;500;600;700&display=swap');

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

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

        html, body {
            overflow-x: hidden;
            max-width: 100%;
        }

        body {
            font-family: 'Rajdhani', Arial, sans-serif;
            background-color: #050508;
            color: #e4e4ea;
        }

        header {
            background: rgba(5, 5, 10, 0.72);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(255, 0, 0, 0.25);
            color: white;
            padding: 20px 24px;
            text-align: center;
            position: sticky;
            top: 0;
            z-index: 2000;
            max-width: 100%;
            transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
        }

        header.header-scrolled {
            background: rgba(5, 5, 10, 0.94);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 0 24px rgba(255, 0, 0, 0.08);
            padding: 12px 24px;
        }

        nav {
            display: flex;
            justify-content: Right;
            margin-top: 10px;
        }

        nav a {
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: bold;
            margin: 0 15px;
        }

        nav a:hover {
            background-color: rgba(254, 68, 1, 0.9);
            border-radius: 6px;
            box-shadow: 0 0 18px rgba(254, 68, 1, 0.35);
        }

        nav a.nav-cta {
            border: 1px solid rgba(255, 60, 60, 0.65);
            background: linear-gradient(135deg, rgba(255, 0, 0, 0.35), rgba(254, 68, 1, 0.25));
        }

        nav a.nav-cta:hover {
            background: linear-gradient(135deg, #ff0000, #fe4401);
        }

        /* Logotipo no cabeçalho */
        .logo {
            position: absolute;
            left: 20px;
            top: 5px;
            width: 250px; /* Ajuste o tamanho conforme necessário */
        }

        .hero-section {
            --hero-bg-image: url('Images/background0.png');
            position: relative;
            background-image:
                linear-gradient(180deg, rgba(5, 5, 12, 0.88) 0%, rgba(5, 5, 12, 0.55) 45%, rgba(5, 5, 12, 0.95) 100%),
                var(--hero-bg-image);
            background-size: cover;
            background-position: center;
            color: white;
            margin: 0;
            text-align: center;
            padding: clamp(72px, 12vw, 120px) 24px;
            max-width: 100%;
            overflow-x: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 2px,
                    rgba(255, 0, 0, 0.03) 2px,
                    rgba(255, 0, 0, 0.03) 4px
                );
            pointer-events: none;
        }

        .hero-section h2,
        .hero-section .hero-title {
            color: white;
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2rem, 6vw, 3.25rem);
            margin-bottom: 20px;
            letter-spacing: 0.04em;
            text-shadow: 0 0 40px rgba(255, 0, 0, 0.45);
            position: relative;
            z-index: 1;
        }

        .hero-section p,
        .hero-section .hero-lead {
            font-size: clamp(1.05rem, 2.5vw, 1.45rem);
            margin-bottom: 20px;
            max-width: 42rem;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.88);
            position: relative;
            z-index: 1;
        }

        .services {
            display: flex;
            justify-content: space-evenly;
            padding: 20px 10px;
            background-color: #000000;
            flex-wrap: wrap;
            max-width: 100%;
        }

        .service-item {
            background-color: #000;
            filter: grayscale(100%);
			color: white;
            border-radius: 100px;
            text-align: center;
            width: 25%;
            min-width: 0;
            transition: transform 0.3s ease;
        }

        .service-item:hover {
            filter: grayscale(0%);
            transform: translateY(-5px);
        }

        .service-item img {
			width: 195px;
            max-width: 100%;
            height: 195px;
			border-radius: 50%;
            margin-bottom: 5px;
        }

        .footer {
            background: linear-gradient(90deg, rgba(255, 0, 0, 0.15) 0%, #0a0a0f 40%, #050508 100%);
            border-top: 1px solid rgba(255, 0, 0, 0.3);
            color: rgba(255, 255, 255, 0.85);
            text-align: center;
            padding: 20px 16px;
            position: relative;
            bottom: 0;
            width: 100%;
        }

        .footer a {
            color: #fe4401;
            text-decoration: none;
            font-weight: 600;
        }

        .footer a:hover {
            text-decoration: underline;
        }
		
		.footer p {
            font-size: 1rem;			
            line-height: 1;
            margin: 0px;
		}

        /* Responsividade */
        @media (max-width: 992px) {
            .service-item {
                width: 45%;
                margin-bottom: 15px;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 16px 12px 20px;
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            /* Logo: ver também o 2.º bloco mobile — order fica no <a> pai (flex item do header) */
            .logo {
                position: relative;
                left: auto;
                top: auto;
                display: block;
                width: auto;
                max-width: min(220px, 72vw);
                height: auto;
                margin: 0 auto 14px;
            }

            .hero-section {
                padding: 48px 16px;
            }

            .hero-section h2 {
                font-size: clamp(1.4rem, 7vw, 2.2rem);
                line-height: 1.2;
            }

            .hero-section p {
                font-size: clamp(0.95rem, 4vw, 1.2rem);
                line-height: 1.35;
            }

            .services {
                flex-direction: column;
                align-items: center;
                padding: 16px 12px;
            }

            .service-item {
                width: min(100%, 360px);
                max-width: 100%;
                margin-bottom: 20px;
            }

            /* Páginas com .content em flex (About, Support, etc.): uma coluna */
            .content {
                flex-direction: column;
                padding: 20px 16px;
                gap: 24px;
                margin: 12px auto;
                width: calc(100% - 24px);
                max-width: 100%;
                box-sizing: border-box;
            }

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

            .text {
                max-width: 100%;
                min-width: 0;
            }

            .separator {
                padding: 24px 12px;
            }

            .contact-container {
                flex-direction: column;
                margin: 24px auto;
                padding: 20px 16px;
                width: calc(100% - 24px);
                max-width: 100%;
                box-sizing: border-box;
                gap: 24px;
            }

            .contact-form input,
            .contact-form textarea {
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }

            .container {
                width: calc(100% - 24px);
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
                box-sizing: border-box;
                padding: 20px 16px;
            }
        }
		
		.menu-container {
            position: relative;
            display: inline-block;
        }

        .menu-button {
            /* padding: 10px 20px;
            cursor: pointer;*/
            background-color: transparent;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
			color: white;
            padding: 10px 10px;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: bold;
            margin: 0 10px;
            cursor: pointer;
        }

        .menu-button:hover {
            background-color: #fe4401;
		}


        .menu {
            position: absolute;
            background: rgba(14, 14, 22, 0.96);
            border: 1px solid rgba(255, 0, 0, 0.25);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.08);
            border-radius: 10px;
            min-width: 220px;
            padding: 10px;
            z-index: 1000;
            display: none;
            backdrop-filter: blur(12px);
        }

        .menu a {
            display: block;
            text-decoration: none;
            color: #e8e8ec;
            border-radius: 6px;
            padding: 10px 10px;
            text-transform: uppercase;
            font-weight: bold;
            margin: 0 15px;
        }

        .menu a:hover {
            background-color: #fe4401;
            color: white;
            border-radius: 5px;
        }

        /* Development → links to development.html + flyout with the 4 tools from that page */
        .menu-item-has-sub {
            position: relative;
            margin: 0 15px;
        }

        .menu-item-has-sub > .menu-item-parent {
            display: block;
            text-decoration: none;
            color: #e8e8ec;
            border-radius: 6px;
            padding: 10px 10px;
            text-transform: uppercase;
            font-weight: bold;
            margin: 0;
        }

        .menu-item-has-sub > .menu-item-parent:hover {
            background-color: #fe4401;
            color: white;
            border-radius: 5px;
        }

        .menu-sub {
            display: none;
            position: absolute;
            right: 100%;
            left: auto;
            top: 0;
            margin-right: 6px;
            margin-left: 0;
            background: rgba(14, 14, 22, 0.96);
            border: 1px solid rgba(255, 0, 0, 0.25);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
            border-radius: 10px;
            min-width: 220px;
            padding: 10px;
            z-index: 1001;
            backdrop-filter: blur(12px);
        }

        .menu-sub a {
            display: block;
            text-decoration: none;
            color: #e8e8ec;
            border-radius: 6px;
            padding: 10px 10px;
            text-transform: uppercase;
            font-weight: bold;
            margin: 0 8px;
        }

        .menu-sub a:hover {
            background-color: #fe4401;
            color: white;
            border-radius: 5px;
        }

        .menu-item-has-sub:hover .menu-sub,
        .menu-item-has-sub:focus-within .menu-sub {
            display: block;
        }

        .menu-container:focus-within .menu {
            display: block;
        }

        .menu-container:focus-within .menu-button {
            outline: none; /* remove o outline padrão do foco */
        }

        /* Mobile header: deve vir DEPOIS das regras do .menu acima, senão o desktop sobrescreve */
        @media (max-width: 768px) {
            header {
                padding: 12px 10px 16px;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            /* No header só nav e o link do logo são flex items; order no <img class="logo"> era ignorado. */
            header > a:has(img.logo) {
                order: -1;
                display: block;
                width: 100%;
                text-align: center;
                margin: 0 0 8px;
            }

            .logo {
                position: relative !important;
                left: auto !important;
                top: auto !important;
                display: block;
                width: auto !important;
                max-width: min(200px, 68vw);
                height: auto;
                margin: 0 auto;
            }

            header > nav {
                order: 0;
                width: 100%;
                max-width: 100%;
                flex-direction: column;
                align-items: stretch;
                justify-content: flex-start;
                flex-wrap: nowrap;
                gap: 8px;
                margin-top: 0;
                padding: 0 2px;
                box-sizing: border-box;
            }

            nav > a {
                margin: 0 !important;
                padding: 12px 14px;
                font-size: 0.82rem;
                text-align: center;
                border-radius: 8px;
                border: 1px solid rgba(255, 255, 255, 0.22);
                box-sizing: border-box;
                line-height: 1.25;
            }

            .menu-container {
                width: 100%;
                max-width: 100%;
                margin: 0 !important;
                display: block;
                box-sizing: border-box;
            }

            .menu-button {
                width: 100%;
                margin: 0 !important;
                padding: 12px 14px;
                font-size: 0.82rem;
                box-sizing: border-box;
                border-radius: 8px;
                border: 1px solid rgba(255, 255, 255, 0.28);
                text-align: center;
            }

            .menu {
                position: relative !important;
                left: 0 !important;
                right: auto !important;
                top: auto !important;
                width: 100% !important;
                max-width: 100% !important;
                min-width: 0 !important;
                margin: 8px 0 0 !important;
                padding: 8px 6px;
                box-sizing: border-box;
            }

            .menu a {
                margin: 6px 4px !important;
                padding: 10px 10px;
                font-size: 0.78rem;
            }

            .menu-item-has-sub {
                margin: 6px 4px !important;
            }

            .menu-sub {
                position: static !important;
                right: auto !important;
                left: auto !important;
                top: auto !important;
                margin: 8px 0 0 6px !important;
                margin-right: 0 !important;
                min-width: 0 !important;
                width: auto;
                padding: 6px 0 6px 10px;
                border-left: 3px solid #fe4401;
                box-shadow: none;
                border-top: 0;
                border-right: 0;
                border-bottom: 0;
                background: rgba(0, 0, 0, 0.06);
                border-radius: 0 6px 6px 0;
            }

            .menu-sub a {
                margin: 4px 6px !important;
                font-size: 0.75rem;
            }
        }
		
        .container {
            max-width: 800px;
            margin: 40px auto;
            background: rgba(12, 12, 18, 0.85);
            border: 1px solid rgba(255, 0, 0, 0.2);
            padding: 28px;
            border-radius: 14px;
            box-shadow: 0 0 40px rgba(255, 0, 0, 0.06);
            backdrop-filter: blur(8px);
        }
		
        .container h1,
        .container h2 {
            color: #ff4444;
            font-family: 'Orbitron', sans-serif;
        }

        .content {
            display: flex;
            max-width: 1100px;
            width: calc(100% - 32px);
            margin: 24px auto;
            background: rgba(12, 12, 18, 0.88);
            border: 1px solid rgba(255, 0, 0, 0.22);
            border-radius: 14px;
            padding: clamp(24px, 4vw, 40px);
            box-shadow: 0 0 48px rgba(255, 0, 0, 0.07);
            gap: 40px;
            align-items: center;
            min-width: 0;
            backdrop-filter: blur(10px);
        }

        .content h1 {
            font-family: 'Orbitron', sans-serif;
            color: #ff4444;
            margin-bottom: 12px;
        }

        .content p {
            color: rgba(228, 228, 234, 0.92);
        }

        .content img {
            border-radius: 12px;
            max-width: 50%;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
		
		.separator{
			padding: 60px;
		}

        .text {
            max-width: 60%;
        }

        .text p {
            font-size: 1.1rem;
            line-height: 1.2;
            margin-bottom: 10px;
        }

        .contact-container {
            display: flex;
            justify-content: space-between;
            gap: 40px;
            max-width: 1100px;
            width: calc(100% - 32px);
            margin: 50px auto;
            padding: 30px;
            background: rgba(12, 12, 18, 0.88);
            border: 1px solid rgba(255, 0, 0, 0.22);
            border-radius: 14px;
            box-shadow: 0 0 48px rgba(255, 0, 0, 0.07);
            backdrop-filter: blur(10px);
        }

        .contact-container h2,
        .contact-container h3 {
            font-family: 'Orbitron', sans-serif;
            color: #ff4444;
        }

        .contact-container p,
        .contact-info p {
            color: rgba(228, 228, 234, 0.9);
        }

        .contact-form input,
        .contact-form textarea {
            background: rgba(0, 0, 0, 0.35);
            border-color: rgba(255, 255, 255, 0.15);
            color: #fff;
        }

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

        .contact-form button {
            background: linear-gradient(135deg, #ff0000, #fe4401);
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .contact-form button:hover {
            box-shadow: 0 0 24px rgba(254, 68, 1, 0.45);
        }

        .contact-info, .contact-form-container {
            flex: 1;
            min-width: 0;
        }

        .contact-info h3 {
            font-size: 1.6rem;
            color: red;
            margin-bottom: 10px;
        }

        .contact-info p {
            font-size: 1rem;
            line-height: 1.3;
            margin-bottom: 8px;
        }

        .contact-phone-link {
            color: inherit;
            font-weight: 600;
            text-decoration: none;
        }

        .contact-phone-link:hover {
            text-decoration: underline;
        }

        .contact-phone-icons {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-left: 8px;
            font-size: 1.1rem;
        }

        .contact-phone-icons a {
            color: #128c7e;
            text-decoration: none;
            transition: transform 0.2s ease, color 0.2s ease;
        }

        .contact-phone-icons a:first-child {
            color: #444;
        }

        .contact-phone-icons a:hover {
            transform: translateY(-1px);
            color: #0d6f63;
        }

        .contact-form input, .contact-form textarea {
            width: 90%;
            padding: 12px;
            margin: 12px 0px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        .contact-form button {
            background-color: #ff9800;
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            cursor: pointer;
        }

        .contact-form button:hover {
            background-color: #e68900;
        }

        .contact-info .cnzo-maps {
            width: 100%;
            max-width: 100%;
            margin-top: 16px;
            display: block;
        }

        /* ===== Digital Menu Page ===== */
        .content.digital-menu-page {
            flex-direction: column;
            align-items: stretch;
        }

        .content.digital-menu-page .text {
            max-width: 100%;
        }

        .menu-logos-prompt {
            color: #ff0000;
            font-size: 1.2rem;
            font-weight: bold;
            text-align: center;
            margin: 8px 0 0;
            text-transform: uppercase;
        }

        .menu-logos-section {
            width: 100%;
        }

        .menu-logos {
            display: grid;
            grid-template-columns: repeat(3, minmax(140px, 1fr));
            gap: 18px;
            width: 100%;
            max-width: 840px;
            margin: 0 auto;
        }

        .logo-button {
            border: 4px solid #111;
            border-radius: 10px;
            background: #fff;
            cursor: pointer;
            padding: 10px;
            min-height: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .logo-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
        }

        .logo-button img {
            max-width: 100%;
            max-height: 95px;
            object-fit: contain;
        }

        .video-modal {
            position: fixed;
            inset: 0;
            display: none;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.85);
            z-index: 9999;
            padding: 16px;
        }

        .video-modal.open {
            display: flex;
        }

        .video-modal-content {
            width: min(92vw, 980px);
            background: #000;
            border: 2px solid #fff;
            border-radius: 10px;
            position: relative;
            padding: 12px;
        }

        .video-modal-content.video-rotated {
            width: min(92vh, 980px);
            height: min(92vw, 552px);
            transform: rotate(90deg);
            transform-origin: center center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-modal-content.video-rotated video {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .video-wrapper {
            position: relative;
            width: 100%;
        }

        .video-touch-blocker {
            position: absolute;
            inset: 0;
            cursor: pointer;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            user-select: none;
        }

        .video-modal video {
            width: 100%;
            display: block;
            border-radius: 6px;
            cursor: pointer;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            user-select: none;
        }

        .video-modal-close {
            position: absolute;
            top: -12px;
            right: -12px;
            width: 32px;
            height: 32px;
            border: none;
            border-radius: 50%;
            background: #fe4401;
            color: #fff;
            font-size: 20px;
            cursor: pointer;
            line-height: 1;
        }

        body.video-fullscreen,
        body.video-fullscreen * {
            cursor: none !important;
        }

        .video-modal-content:fullscreen,
        .video-modal-content:fullscreen *,
        .video-modal-content:-webkit-full-screen,
        .video-modal-content:-webkit-full-screen *,
        .video-modal-content:-ms-fullscreen,
        .video-modal-content:-ms-fullscreen *,
        .video-modal-content:-moz-full-screen,
        .video-modal-content:-moz-full-screen * {
            cursor: none !important;
        }

        body.video-fullscreen .video-modal-close {
            display: none !important;
        }

        body.video-fullscreen .video-modal-content {
            border: none;
            border-radius: 0;
            padding: 0;
        }

        body.video-fullscreen .video-modal-content video {
            border-radius: 0;
            cursor: none;
        }

        /* ===== Service Report ===== */
        body.report-page {
            padding-left: clamp(12px, 4vw, 24px);
            padding-right: clamp(12px, 4vw, 24px);
            box-sizing: border-box;
        }

        main.report-main {
            display: block;
            padding-bottom: 2rem;
        }

        .report-container {
            max-width: 920px;
            width: 100%;
            margin: clamp(20px, 4vw, 36px) auto;
            padding: clamp(20px, 4vw, 32px);
            background: white;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            box-sizing: border-box;
            border-top: 4px solid #ff0000;
        }

        .report-container h1 {
            color: #ff0000;
            margin-bottom: 8px;
            text-align: center;
            font-size: clamp(1.5rem, 4vw, 1.85rem);
        }

        .report-intro {
            text-align: center;
            color: #555;
            font-size: 0.95rem;
            line-height: 1.5;
            margin: 0 auto 24px;
            max-width: 36em;
        }

        .report-intro a {
            color: #c00;
            font-weight: 600;
        }

        .report-intro a:hover {
            text-decoration: underline;
        }

        .report-header-contact {
            text-align: center;
            font-size: 0.88rem;
            line-height: 1.45;
            color: #444;
            margin: 0 auto 20px;
            max-width: 38em;
            padding: 12px 14px;
            background: #f7f7f7;
            border: 1px solid #ddd;
            border-radius: 8px;
        }

        .report-header-contact a {
            color: #c00;
            font-weight: 600;
        }

        .report-date-hint {
            font-weight: normal;
            color: #666;
            font-size: 0.85rem;
        }

        .report-form {
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }

        .report-form label {
            display: block;
            font-weight: bold;
            margin-bottom: 6px;
            color: #222;
        }

        .report-form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            column-gap: clamp(16px, 3vw, 28px);
            row-gap: 0;
            align-items: start;
        }

        .report-form .report-field {
            min-width: 0;
        }

        .report-form .report-field label {
            margin-top: 16px;
        }

        .report-form > .report-row-triple {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: clamp(12px, 2vw, 20px);
            align-items: start;
        }

        .report-form > .report-row-triple .report-field > label {
            margin-top: 0;
        }

        .report-form .report-span-2 {
            grid-column: 1 / -1;
        }

        .report-form .report-span-2 > label {
            margin-top: 20px;
        }

        .report-form input[type="text"],
        .report-form input[type="date"],
        .report-form input[type="number"],
        .report-form textarea {
            width: 100%;
            max-width: 100%;
            padding: 12px 14px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
            box-sizing: border-box;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .report-form input[type="text"]:focus-visible,
        .report-form input[type="date"]:focus-visible,
        .report-form input[type="number"]:focus-visible,
        .report-form textarea:focus-visible {
            outline: none;
            border-color: #fe4401;
            box-shadow: 0 0 0 3px rgba(254, 68, 1, 0.2);
        }

        .report-form input[type="text"],
        .report-form textarea.uppercase-input {
            text-transform: uppercase;
        }

        .report-form textarea {
            min-height: 100px;
            resize: vertical;
        }

        .report-form textarea.report-field-compact {
            min-height: 88px;
        }

        @media (max-width: 700px) {
            .report-form-grid {
                grid-template-columns: 1fr;
            }

            .report-form > .report-row-triple {
                grid-template-columns: 1fr;
            }

            .report-form > .report-row-triple .report-field:not(:first-child) > label {
                margin-top: 16px;
            }

            .report-form .report-span-2 > label {
                margin-top: 16px;
            }
        }

        .report-form button {
            padding: 14px 16px;
            font-size: 1.05rem;
            background: linear-gradient(90deg, #000000 25%, #ff0000 100%);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            box-sizing: border-box;
        }

        .report-form button:focus-visible {
            outline: none;
            box-shadow: 0 0 0 3px rgba(254, 68, 1, 0.45);
        }

        .report-form .form-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 28px;
        }

        .report-form .form-actions button {
            flex: 1;
            min-width: 120px;
        }

        .report-form button[type="button"].btn-clear {
            background: #444;
            color: white;
        }

        .report-form button[type="button"].btn-clear:hover {
            background: #222;
        }

        @media (max-width: 480px) {
            .report-form .form-actions {
                flex-direction: column;
            }

            .report-form .form-actions button {
                flex: none;
                width: 100%;
            }
        }

        .report-form button[type="button"].btn-preview {
            background: linear-gradient(90deg, #000000 25%, #ff0000 100%);
            color: #fff;
            border: 2px solid #ff0000;
        }

        .report-form button[type="button"].btn-preview:hover {
            background: linear-gradient(90deg, #1a1a1a 25%, #ff3333 100%);
            opacity: 1;
        }

        /* ----- Report preview popup (mirrors PDF structure) ----- */
        .report-preview-modal {
            position: fixed;
            inset: 0;
            z-index: 200000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: clamp(12px, 3vw, 24px);
            box-sizing: border-box;
        }

        .report-preview-modal.is-open {
            display: flex;
        }

        .report-preview-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.55);
            cursor: pointer;
        }

        /* Dialog dimensions ≈ US Letter (8.5″ × 11″); width matches paper, height fits viewport */
        .report-preview-dialog {
            position: relative;
            z-index: 1;
            width: 8.5in;
            max-width: calc(100vw - clamp(24px, 6vw, 48px));
            max-height: calc(100vh - clamp(24px, 6vw, 48px));
            display: flex;
            flex-direction: column;
            background: #e9e9e9;
            border-radius: 12px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
            overflow: hidden;
        }

        .report-preview-toolbar {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 12px 16px;
            background: #1a1a1a;
            color: #fff;
        }

        .report-preview-toolbar-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .report-preview-toolbar h2 {
            margin: 0;
            font-size: 1.05rem;
            font-weight: 700;
        }

        .report-preview-print {
            padding: 8px 16px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            border: 1px solid #888;
            border-radius: 6px;
            background: #fff;
            color: #111;
        }

        .report-preview-print:hover {
            background: #eee;
        }

        .report-preview-close {
            padding: 8px 16px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            border: 1px solid #666;
            border-radius: 6px;
            background: #333;
            color: #fff;
        }

        .report-preview-close:hover {
            background: #444;
        }

        /* No horizontal padding here: on screen it narrowed the “page” vs print (body padding → 0 in print),
           which changed column widths and line breaks relative to Windows print preview. */
        .report-preview-body {
            flex: 1 1 auto;
            overflow-y: auto;
            padding: clamp(12px, 2.5vh, 20px) 0;
            -webkit-overflow-scrolling: touch;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Inner margins — horizontal slightly tighter than vertical; same in @media print */
        .report-preview-doc {
            background: #fff;
            border-radius: 8px;
            align-self: stretch;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            padding: 12mm 8mm;
            box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
            min-height: min(11in, calc(100vh - clamp(120px, 18vh, 180px)));
        }

        .report-preview-letterhead {
            border: 1px solid #444;
            border-radius: 8px;
            padding: 12px 12px 14px;
            margin-bottom: 4px;
        }

        .report-preview-head-row {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            gap: 14px 20px;
        }

        .report-preview-logo-frame {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #000;
            border: 2px solid #000;
            border-radius: 6px;
            box-sizing: border-box;
            padding: 12px 8px;
            min-width: calc(200px + 16px);
            min-height: calc(64px + 24px);
            -webkit-print-color-adjust: exact;
            print-color-adjust: exact;
        }

        .report-preview-logo {
            display: block;
            max-height: 64px;
            max-width: 200px;
            width: auto;
            height: auto;
            object-fit: contain;
        }

        .report-preview-head-text {
            flex: 1 1 220px;
            min-width: 0;
        }

        .report-preview-title-main {
            font-size: 1.48rem;
            font-weight: 800;
            color: #181818;
            line-height: 1.15;
            margin: 0 0 6px;
        }

        .report-preview-head-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            justify-content: space-between;
            gap: 8px 16px;
        }

        .report-preview-sub {
            font-size: 0.84rem;
            color: #5a5a5a;
            margin: 0;
        }

        .report-preview-date {
            font-size: 0.875rem;
            font-weight: 500;
            color: #222;
            margin: 0;
            text-align: right;
            flex: 0 0 auto;
        }

        .report-preview-contact {
            font-size: 0.76rem;
            line-height: 1.45;
            color: #555;
            margin-top: 12px;
        }

        /* Keep each address / phone / mail segment unbroken (print often splits on “.” inside e-mail). */
        .report-preview-nowrap-chunk {
            white-space: nowrap;
        }

        .report-preview-contact-gap {
            white-space: normal;
        }

        .report-preview-hr {
            border: 0;
            border-top: 1px solid #ccc;
            margin: 16px 0 18px;
        }

        .report-preview-section {
            border: 1px solid #444;
            border-radius: 8px;
            padding: 10px 12px 12px;
            margin-bottom: 14px;
        }

        .report-preview-section:last-of-type {
            margin-bottom: 0;
        }

        .report-preview-sec-title {
            margin: 0 0 10px;
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            font-weight: 700;
            color: #333;
        }

        .report-preview-sec-title span {
            display: inline-block;
            padding-bottom: 4px;
            border-bottom: 2px solid #c00;
        }

        .report-preview-cols {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px 16px;
        }

        @media screen and (max-width: 560px) {
            .report-preview-cols {
                grid-template-columns: 1fr;
            }
        }

        .report-preview-cols .lbl {
            display: block;
            font-size: 0.7rem;
            color: #666;
            margin-bottom: 4px;
        }

        .report-preview-cols .val {
            display: block;
            font-size: 0.92rem;
            font-weight: 700;
            color: #202020;
        }

        .report-preview-body-text {
            margin: 0;
            font-size: 0.9rem;
            line-height: 1.5;
            color: #222;
            white-space: pre-wrap;
            word-break: break-word;
        }

        .report-preview-foot {
            margin-top: 20px;
            padding-top: 14px;
            border-top: 1px solid #ddd;
            font-size: 0.66rem;
            color: #666;
            text-align: center;
            line-height: 1.5;
        }

        @media print {
            @page {
                size: letter;
                margin: 0;
            }

            html:has(body.report-page) {
                overflow: visible !important;
                max-width: none !important;
            }

            body.report-page {
                background: #fff !important;
                overflow: visible !important;
                max-width: none !important;
            }

            body.report-page header,
            body.report-page main.report-main,
            body.report-page footer.footer {
                display: none !important;
            }

            .report-preview-modal {
                position: static !important;
                display: block !important;
                padding: 0 !important;
                inset: auto !important;
            }

            .report-preview-backdrop {
                display: none !important;
            }

            .report-preview-toolbar {
                display: none !important;
            }

            /* Match us Letter column (~8.5in) like the popup; centre so extra printable width stays blank. */
            .report-preview-dialog {
                max-height: none !important;
                width: 100% !important;
                max-width: 8.5in !important;
                margin-left: auto !important;
                margin-right: auto !important;
                box-shadow: none !important;
                background: #fff !important;
                overflow: visible !important;
            }

            .report-preview-body {
                padding: 0 !important;
                overflow: visible !important;
                display: block !important;
            }

            .report-preview-doc {
                box-shadow: none !important;
                padding: 12mm 8mm !important;
                min-height: 0 !important;
            }

            .report-preview-section-client .report-preview-body-text {
                word-break: normal !important;
                overflow-wrap: normal !important;
            }
        }

        /* ===== Futuristic home & global enhancements ===== */
        .page-bg {
            position: fixed;
            inset: 0;
            z-index: -1;
            pointer-events: none;
            overflow: hidden;
        }

        .page-bg-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255, 0, 0, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 0, 0, 0.04) 1px, transparent 1px);
            background-size: 48px 48px;
            mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 20%, transparent 75%);
        }

        .page-bg-glow {
            position: absolute;
            width: min(520px, 70vw);
            height: min(520px, 70vw);
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.35;
        }

        .page-bg-glow--left {
            top: -10%;
            left: -8%;
            background: #ff0000;
        }

        .page-bg-glow--right {
            bottom: 10%;
            right: -6%;
            background: #fe4401;
        }

        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

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

        .page-home .hero-future {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 40px;
            text-align: left;
            padding-top: clamp(88px, 14vw, 140px);
            padding-bottom: clamp(48px, 8vw, 80px);
        }

        .page-home .hero-inner {
            max-width: 720px;
            width: 100%;
            z-index: 1;
        }

        .hero-eyebrow,
        .section-eyebrow {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #fe4401;
            margin-bottom: 16px;
        }

        .hero-title {
            display: flex;
            flex-direction: column;
            gap: 4px;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .hero-title-accent {
            background: linear-gradient(90deg, #ff3333, #fe4401);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 28px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            border-radius: 8px;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            font-size: 1.05rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            text-decoration: none;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .btn-primary {
            background: linear-gradient(135deg, #c40000, #e85a00);
            color: #fff;
            border: none;
            box-shadow: 0 4px 20px rgba(255, 0, 0, 0.2);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(254, 68, 1, 0.35);
        }

        .btn-ghost {
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.35);
            background: rgba(255, 255, 255, 0.06);
        }

        .btn-ghost:hover {
            border-color: #fe4401;
            background: rgba(254, 68, 1, 0.12);
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            width: min(900px, 100%);
            z-index: 1;
        }

        .stat-card {
            padding: 20px 18px;
            background: rgba(12, 12, 20, 0.75);
            border: 1px solid rgba(255, 0, 0, 0.25);
            border-radius: 12px;
            backdrop-filter: blur(8px);
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }

        .stat-card:hover {
            border-color: rgba(254, 68, 1, 0.6);
            box-shadow: 0 0 24px rgba(255, 0, 0, 0.15);
        }

        .stat-value {
            display: block;
            font-family: 'Orbitron', sans-serif;
            font-size: 1.1rem;
            color: #fff;
            margin-bottom: 6px;
        }

        .stat-label {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.35;
        }

        .pillars {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 1100px;
            margin: 0 auto;
            padding: 48px 24px;
        }

        .pillar-card {
            padding: 28px 24px;
            background: rgba(12, 12, 20, 0.8);
            border: 1px solid rgba(255, 0, 0, 0.2);
            border-radius: 14px;
            transition: transform 0.25s ease, border-color 0.25s ease;
        }

        .pillar-card:hover {
            transform: translateY(-4px);
            border-color: rgba(254, 68, 1, 0.5);
        }

        .pillar-icon {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.85rem;
            color: #fe4401;
            letter-spacing: 0.15em;
        }

        .pillar-card h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.35rem;
            margin: 12px 0 10px;
            color: #fff;
        }

        .pillar-card p {
            color: rgba(228, 228, 234, 0.85);
            line-height: 1.5;
            margin-bottom: 16px;
        }

        .pillar-link {
            color: #fe4401;
            font-weight: 700;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.05em;
        }

        .pillar-link:hover {
            text-decoration: underline;
        }

        .services-future {
            flex-direction: column;
            padding: 56px 24px 64px;
            background: transparent;
        }

        .section-head {
            text-align: center;
            margin-bottom: 36px;
            width: 100%;
        }

        .section-head h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.5rem, 4vw, 2rem);
            color: #fff;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 1100px;
            width: 100%;
            margin: 0 auto;
        }

        .service-card {
            display: flex;
            flex-direction: column;
            padding: 0;
            background: rgba(12, 12, 20, 0.85);
            border: 1px solid rgba(255, 0, 0, 0.2);
            border-radius: 14px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            filter: none;
            width: auto;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }

        .service-card:hover {
            transform: translateY(-6px);
            border-color: rgba(254, 68, 1, 0.55);
            box-shadow: 0 12px 40px rgba(255, 0, 0, 0.12);
            filter: none;
        }

        .service-card-visual {
            aspect-ratio: 4 / 3;
            overflow: hidden;
            border-radius: 0;
        }

        .service-card-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0;
            margin: 0;
            filter: saturate(0.85);
            transition: filter 0.35s ease, transform 0.35s ease;
        }

        .service-card:hover .service-card-visual img {
            filter: saturate(1.1);
            transform: scale(1.05);
        }

        .service-card h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1rem;
            padding: 16px 16px 6px;
            color: #fff;
        }

        .service-card p {
            padding: 0 16px 18px;
            font-size: 0.95rem;
            color: rgba(228, 228, 234, 0.75);
            line-height: 1.4;
        }

        .cta-band {
            padding: 0 24px 64px;
        }

        .cta-band-inner {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 32px;
            text-align: center;
            background: linear-gradient(135deg, rgba(255, 0, 0, 0.12), rgba(254, 68, 1, 0.08));
            border: 1px solid rgba(255, 0, 0, 0.35);
            border-radius: 16px;
            box-shadow: 0 0 60px rgba(255, 0, 0, 0.08);
        }

        .cta-band-inner h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.35rem, 3.5vw, 1.85rem);
            color: #fff;
            margin-bottom: 12px;
        }

        .cta-band-inner p {
            color: rgba(228, 228, 234, 0.88);
            margin-bottom: 24px;
            line-height: 1.5;
        }

        /* Inner pages: keep legacy service circles but futuristic tint */
        body:not(.page-home) .services {
            background: transparent;
        }

        body:not(.page-home) .service-item {
            background: rgba(12, 12, 20, 0.85);
            border: 1px solid rgba(255, 0, 0, 0.25);
            border-radius: 16px;
            padding-bottom: 16px;
            filter: grayscale(40%);
        }

        body:not(.page-home) .service-item:hover {
            filter: grayscale(0%);
            border-color: rgba(254, 68, 1, 0.55);
            box-shadow: 0 0 28px rgba(255, 0, 0, 0.15);
        }

        body:not(.page-home) .service-item h3 {
            font-family: 'Orbitron', sans-serif;
            padding-top: 8px;
        }

        @media (max-width: 992px) {
            .pillars {
                grid-template-columns: 1fr;
            }

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

            .hero-stats {
                grid-template-columns: 1fr;
            }
        }

        nav a.nav-active,
        .menu a.nav-active,
        .menu-item-has-sub > a.menu-item-parent.nav-active,
        .menu-sub a.nav-active {
            background-color: rgba(254, 68, 1, 0.35);
            box-shadow: inset 0 0 0 1px rgba(254, 68, 1, 0.5);
        }

        nav a.nav-cta.nav-active {
            background: linear-gradient(135deg, #ff0000, #fe4401);
        }

        @media (max-width: 768px) {
            .page-home .hero-future {
                text-align: center;
            }

            .hero-actions {
                justify-content: center;
            }

            .service-grid {
                grid-template-columns: 1fr;
            }

            header {
                padding: 12px 10px;
            }
        }

        /* ===== Professional site shell (flat nav + inner pages) ===== */
        .page-inner .page-bg-glow {
            opacity: 0.18;
        }

        .page-inner .page-bg-grid {
            opacity: 0.7;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 3000;
            background: rgba(6, 6, 12, 0.82);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding: 0;
            text-align: left;
            transition: background 0.3s ease, box-shadow 0.3s ease;
        }

        .site-header.header-scrolled {
            background: rgba(6, 6, 12, 0.96);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
        }

        .site-header-inner {
            max-width: 1180px;
            margin: 0 auto;
            padding: 14px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .site-header--logo-only .site-header-inner {
            justify-content: center;
            padding: 16px 24px;
        }

        .site-header--logo-only .logo-link {
            display: inline-block;
        }

        .site-header .logo {
            position: relative;
            left: auto;
            top: auto;
            width: min(200px, 42vw);
            margin: 0;
        }

        .site-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .site-nav a {
            color: rgba(255, 255, 255, 0.88);
            padding: 10px 14px;
            margin: 0;
            font-size: 0.88rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            border-radius: 6px;
            text-decoration: none;
            transition: color 0.2s ease, background 0.2s ease;
        }

        .site-nav a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.06);
            box-shadow: none;
        }

        .site-nav a.nav-active {
            color: #fff;
            background: rgba(255, 0, 0, 0.18);
            box-shadow: inset 0 0 0 1px rgba(254, 68, 1, 0.35);
        }

        .site-nav a.nav-cta {
            margin-left: 8px;
            padding: 10px 18px;
            background: linear-gradient(135deg, #c40000, #e85a00);
            color: #fff;
            border: 1px solid rgba(255, 120, 60, 0.35);
        }

        .site-nav a.nav-cta:hover {
            background: linear-gradient(135deg, #e00000, #fe4401);
            box-shadow: 0 4px 20px rgba(255, 0, 0, 0.25);
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 44px;
            height: 44px;
            padding: 10px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.04);
            cursor: pointer;
        }

        .nav-toggle-bar {
            display: block;
            width: 100%;
            height: 2px;
            background: #fff;
            border-radius: 1px;
        }

        .tools-subnav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
            max-width: 1180px;
            margin: 0 auto;
            padding: 12px 24px 16px;
            border-bottom: 1px solid rgba(255, 0, 0, 0.12);
            background: rgba(8, 8, 14, 0.6);
        }

        .tools-subnav a {
            padding: 8px 14px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            border-radius: 6px;
            border: 1px solid transparent;
            transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
        }

        .tools-subnav a:hover {
            color: #fff;
            border-color: rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.04);
        }

        .tools-subnav a.nav-active {
            color: #fff;
            background: rgba(255, 0, 0, 0.15);
            border-color: rgba(254, 68, 1, 0.4);
        }

        .page-hero {
            position: relative;
            max-width: 1180px;
            margin: 0 auto;
            padding: clamp(48px, 8vw, 72px) 24px 32px;
            text-align: left;
        }

        .page-hero h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.75rem, 4.5vw, 2.5rem);
            font-weight: 600;
            color: #fff;
            margin: 0 0 12px;
            letter-spacing: 0.03em;
            line-height: 1.15;
        }

        .page-hero-lead {
            font-size: clamp(1rem, 2.2vw, 1.2rem);
            color: rgba(228, 228, 234, 0.82);
            max-width: 40rem;
            line-height: 1.55;
            margin: 0;
        }

        .page-main {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 24px 64px;
        }

        .page-panel {
            background: rgba(12, 12, 18, 0.88);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: clamp(28px, 4vw, 40px);
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
            backdrop-filter: blur(10px);
        }

        .page-panel--split {
            display: flex;
            gap: clamp(24px, 4vw, 40px);
            align-items: center;
        }

        .page-panel--split .page-panel-media {
            flex: 1;
            min-width: 0;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .page-panel--split .page-panel-media img {
            width: 100%;
            height: 100%;
            min-height: 260px;
            object-fit: cover;
            display: block;
            border-radius: 0;
            max-width: none;
        }

        .page-panel--split .page-panel-body {
            flex: 1;
            min-width: 0;
        }

        .page-panel h1 {
            font-family: 'Orbitron', sans-serif;
            color: #ff5555;
            margin-bottom: 16px;
        }

        .page-panel h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.15rem;
            color: #fe4401;
            margin: 1.5rem 0 0.5rem;
        }

        .page-panel h3 {
            font-size: 1.05rem;
            color: rgba(254, 120, 80, 0.95);
            margin: 1rem 0 0.35rem;
        }

        .page-panel p,
        .page-panel li {
            color: rgba(228, 228, 234, 0.9);
            line-height: 1.6;
        }

        .page-panel ul {
            margin: 0.5rem 0 1rem 1.25rem;
        }

        .page-inner .content,
        .page-inner .contact-container,
        .page-inner .container {
            max-width: none;
            width: 100%;
            margin: 0 0 24px;
        }

        .page-inner .content {
            background: rgba(12, 12, 18, 0.88);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: clamp(28px, 4vw, 40px);
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
        }

        .page-inner .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: start;
        }

        .site-footer {
            margin-top: auto;
            padding: 48px 24px 24px;
            background: rgba(4, 4, 8, 0.95);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .site-footer-inner {
            max-width: 1180px;
            margin: 0 auto 28px;
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 32px;
            text-align: left;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.55);
            font-size: 0.95rem;
            line-height: 1.5;
            margin-top: 12px;
            max-width: 280px;
        }

        .footer-logo {
            display: block;
            max-width: 140px;
            height: auto;
            opacity: 0.9;
        }

        .footer-col h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.7rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #fe4401;
            margin: 0 0 14px;
        }

        .footer-col a {
            display: block;
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
            font-size: 0.95rem;
            padding: 4px 0;
            transition: color 0.2s ease;
        }

        .footer-col a:hover {
            color: #fff;
            text-decoration: none;
        }

        .footer-bottom {
            max-width: 1180px;
            margin: 0 auto;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            text-align: center;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.45);
            font-size: 0.88rem;
            margin: 4px 0;
        }

        .footer-bottom a {
            color: #fe4401;
        }

        .page-inner .services-future {
            padding-top: 0;
        }

        .page-inner .hero-section.page-hero-banner {
            max-width: 1180px;
            margin: 0 auto;
            padding: clamp(56px, 10vw, 88px) 24px;
            text-align: left;
            border-radius: 0;
            min-height: auto;
        }

        .page-inner .hero-section.page-hero-banner h2 {
            font-size: clamp(1.6rem, 4vw, 2.25rem);
            text-shadow: none;
            margin-bottom: 12px;
        }

        .page-inner .hero-section.page-hero-banner p {
            text-shadow: none;
            margin: 0;
            text-align: left;
        }

        body.report-page .page-hero {
            padding-bottom: 16px;
        }

        body.report-page .report-container {
            border-top: none;
        }

        body.report-page .page-main {
            padding-bottom: 48px;
        }

        .page-inner .container.page-panel h2 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: #fe4401;
            margin-top: 1.25rem;
        }

        .page-inner .container.page-panel h2:first-of-type {
            margin-top: 0;
        }

        @media (max-width: 900px) {
            .page-panel--split {
                flex-direction: column;
            }

            .page-inner .contact-container {
                grid-template-columns: 1fr;
            }

            .site-footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

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

            .site-nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                flex-direction: column;
                align-items: stretch;
                padding: 12px 16px 16px;
                background: rgba(8, 8, 14, 0.98);
                border-bottom: 1px solid rgba(255, 0, 0, 0.15);
                gap: 4px;
            }

            .site-nav.is-open {
                display: flex;
            }

            .site-header-inner {
                position: relative;
                flex-wrap: wrap;
            }

            .site-nav a {
                text-align: center;
                border: 1px solid rgba(255, 255, 255, 0.08);
            }

            .site-nav a.nav-cta {
                margin-left: 0;
            }

            .tools-subnav {
                padding: 10px 12px;
                gap: 6px;
            }

            .tools-subnav a {
                font-size: 0.72rem;
                padding: 6px 10px;
            }
        }