﻿/* --- RESET & BASE STYLES --- */
            :root {
                --bg-color: #050505;
                --card-bg: #111111;
                --text-main: #ffffff;
                --text-muted: #888888;
                --gold: #D4AF37;
                --header-height: 150px;
            }
            * { box-sizing: border-box; margin: 0; padding: 0; }
            body {
                margin: 0;
                padding: 0;
                background-color: var(--bg-color);
                color: var(--text-main);
                font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
                font-display: swap;
                overflow-x: hidden;
                line-height: 1.6;
            }
            a { text-decoration: none; color: inherit; transition: 0.3s; }
            ul { list-style: none; padding: 0; margin: 0; }
            img { max-width: 100%; height: auto; display: block; }

            /* --- PRELOADER --- */
            #preloader {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: #000;
                z-index: 10000;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                overflow: hidden;
            }
            #matrix-canvas {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                opacity: 0.15;
            }
            .preloader-content {
                position: relative;
                z-index: 2;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .preloader-logo {
                margin-bottom: 30px;
                opacity: 0;
                transform: scale(0.5);
            }
            .preloader-logo img {
                width: 120px;
                height: auto;
                object-fit: contain;
            }
            .preloader-text {
                font-family: 'Syne', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
                font-size: clamp(32px, 5vw, 60px);
                font-weight: 800;
                text-transform: uppercase;
                letter-spacing: 2px;
                color: #fff;
                margin-bottom: 15px;
                opacity: 0;
            }
            .terminal-text {
                font-family: 'Courier New', monospace;
                font-size: 13px;
                color: var(--gold);
                margin-bottom: 30px;
                opacity: 0;
                letter-spacing: 2px;
            }
            @keyframes glitch {
                0%, 100% {
                    transform: translate(0);
                    text-shadow: 0 0 0 var(--gold);
                }
                20% {
                    transform: translate(-2px, 2px);
                    text-shadow: -2px 2px 0 rgba(255, 0, 0, 0.5);
                }
                40% {
                    transform: translate(-2px, -2px);
                    text-shadow: 2px -2px 0 rgba(0, 255, 255, 0.5);
                }
                60% {
                    transform: translate(2px, 2px);
                    text-shadow: -2px -2px 0 rgba(255, 0, 0, 0.5);
                }
                80% {
                    transform: translate(2px, -2px);
                    text-shadow: 2px 2px 0 rgba(0, 255, 255, 0.5);
                }
            }
            .terminal-text.glitch,
            .preloader-logo.glitch {
                animation: glitch 0.3s ease-in-out;
            }
            .terminal-cursor {
                display: inline-block;
                width: 8px;
                height: 16px;
                background: var(--gold);
                margin-left: 2px;
                animation: blink 0.8s infinite;
            }
            @keyframes blink {
                0%, 49% { opacity: 1; }
                50%, 100% { opacity: 0; }
            }
            .progress-bar-container {
                width: 400px;
                height: 2px;
                background: #222;
                overflow: hidden;
                position: relative;
            }
            .progress-bar {
                width: 0%;
                height: 100%;
                background: var(--gold);
                box-shadow: 0 0 10px var(--gold);
            }
            .progress-label {
                position: absolute;
                top: -25px;
                left: 0;
                font-family: 'Courier New', monospace;
                font-size: 11px;
                color: #666;
                letter-spacing: 1px;
            }

            /* --- TYPOGRAPHY --- */
            h1, h2, h3, .logo { 
                text-transform: uppercase; 
                letter-spacing: -1px; 
                margin: 0; 
                font-weight: 800;
                font-family: 'Syne', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            }
            p { line-height: 1.7; color: var(--text-muted); margin: 0 0 1.2rem 0; font-size: 17px; }
            .method p strong {
                color: #fff;
                font-weight: 700;
                letter-spacing: 0.3px;
                font-size: 1.02em;
            }

            /* --- HEADER --- */
            header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 15px 5%;
                position: fixed;
                width: 100%;
                top: 0;
                z-index: 1000;
                background: rgba(5,5,5,0.9);
                backdrop-filter: blur(10px);
                border-bottom: 1px solid #222;
            }
            .logo { 
                font-size: 24px; 
                font-weight: 800; 
                letter-spacing: 2px; 
                display: flex;
                align-items: center;
                gap: 0;
                margin: 0;
                padding: 0;
            }
            .logo img { 
                width: 120px; 
                height: auto; 
                object-fit: contain;
                margin: 0;
                padding: 0;
                display: block;
            }
            .logo span { color: var(--gold); }
            nav ul { display: flex; gap: 30px; }
            nav a { 
                font-size: 14px; 
                font-weight: 600; 
                letter-spacing: 1.5px; 
                color: var(--text-muted);
                transition: color 0.3s;
                text-transform: uppercase;
            }
            nav a:hover { color: var(--gold); }
            .cta-btn {
                border: 2px solid var(--gold);
                color: var(--gold);
                padding: 12px 28px;
                font-size: 12px;
                font-weight: 700;
                letter-spacing: 1.5px;
                text-transform: uppercase;
                transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
                position: relative;
                background: transparent;
                overflow: visible;
            }
            .cta-btn::before {
                content: '';
                position: absolute;
                top: -14px;
                left: -2px;
                width: calc(100% + 4px);
                height: 16px;
                background: #000;
                border: 2px solid var(--gold);
                border-bottom: 3px solid var(--gold);
                border-radius: 2px 2px 0 0;
                transform: scaleX(0) rotate(-2deg);
                transform-origin: left center;
                transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
                z-index: 1;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            }
            .cta-btn::after {
                content: '';
                position: absolute;
                top: 2px;
                right: -12px;
                width: 10px;
                height: calc(100% - 4px);
                background: #000;
                border: 2px solid var(--gold);
                border-left: 3px solid var(--gold);
                border-radius: 0 2px 2px 0;
                transform: scaleY(0) rotate(2deg);
                transform-origin: top right;
                transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.15s;
                z-index: 1;
                box-shadow: 2px 0 8px rgba(0, 0, 0, 0.3);
            }
            .cta-btn:hover {
                background: #fff;
                color: #000;
                border-color: #000;
                transform: perspective(300px) rotateX(8deg) translateY(-2px);
                box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
            }
            .cta-btn:hover::before {
                transform: scaleX(1) rotate(-2deg);
            }
            .cta-btn:hover::after {
                transform: scaleY(1) rotate(2deg);
            }
            .cta-btn span {
                position: relative;
                z-index: 2;
            }

            /* --- HERO SECTION --- */
            .hero {
                min-height: calc(100vh - var(--header-height));
                height: calc(100vh - var(--header-height));
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                text-align: center;
                padding: 0;
                margin-top: var(--header-height);
                background: radial-gradient(circle at center, #1a1a1a 0%, #050505 70%);
                overflow: hidden;
                box-sizing: border-box;
            }
            .hero-content {
                width: 100%;
                max-width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
                padding: 0;
                box-sizing: border-box;
            }
            .hero h1 {
                font-family: 'Syne', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
                font-size: clamp(32px, 5vw, 60px);
                font-weight: 800;
                text-transform: uppercase;
                letter-spacing: 2px;
                color: #fff;
                line-height: 1.2;
                margin: 0 auto 15px auto;
                word-break: break-word;
                overflow-wrap: break-word;
                hyphens: none;
                padding: 0;
                max-width: 100%;
                width: 100%;
            }
            .hero h1 br {
                display: block;
                content: "";
                margin-top: 0.2em;
            }
            .hero-title {
                opacity: 1;
                transform: translateY(0);
            }
            .hero p {
                max-width: 600px;
                font-size: clamp(18px, 1.4rem, 24px);
                margin: 0 auto 50px auto;
                color: var(--text-muted);
                line-height: 1.7;
                padding: 0;
                word-break: break-word;
                overflow-wrap: break-word;
                width: 100%;
            }
            .hero-subtitle {
                opacity: 1;
                transform: translateY(0);
            }
            .hero-location {
                color: var(--gold);
                font-size: 14px;
                letter-spacing: 3px;
                margin-top: 0;
                opacity: 1;
            }
            
            body.loading .hero-title,
            body.loading .hero-subtitle,
            body.loading .hero-location {
                opacity: 0;
                transform: translateY(20px);
            }

            /* --- SECTIONS --- */
            .method {
                padding: 120px 10% 100px;
                border-top: 1px solid #222;
            }
            .section-title {
                color: var(--gold);
                font-size: clamp(24px, 2.5vw, 32px);
                letter-spacing: 5px;
                margin-bottom: 50px;
                display: block;
                font-weight: 800;
                text-transform: uppercase;
                font-family: 'Syne', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            }
            .method-content {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 80px;
                align-items: start;
            }
            .method h2 { 
                font-size: clamp(28px, 3.5vw, 42px); 
                margin-bottom: 0; 
                line-height: 1.4;
                color: #fff;
                letter-spacing: -1.5px;
                display: flex;
                flex-direction: column;
                gap: 12px;
            }
            .check-item {
                display: flex;
                align-items: center;
                gap: 16px;
                transition: all 0.3s ease;
                cursor: pointer;
                user-select: none;
            }
            .check-input {
                position: absolute;
                opacity: 0;
                width: 0;
                height: 0;
            }
            .check-text {
                transition: color 0.3s ease;
            }
            .check-item:hover .check-text {
                color: var(--gold);
            }
            .check-item.checked .check-text {
                color: var(--gold);
            }
            .check-item:hover {
                transform: translateX(5px);
            }
            .check-box {
                width: 24px;
                height: 24px;
                border: 2px solid var(--gold);
                background: transparent;
                position: relative;
                flex-shrink: 0;
                transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            }
            .check-item:hover .check-box {
                background: var(--gold);
                border-color: var(--gold);
                transform: scale(1.1);
            }
            .check-item.checked .check-box {
                background: var(--gold);
                border-color: var(--gold);
                transform: scale(1.1);
            }
            .check-box::after {
                content: '';
                position: absolute;
                left: 50%;
                top: 50%;
                width: 7px;
                height: 14px;
                border: solid #000;
                border-width: 0 3px 3px 0;
                transform: translate(-50%, -65%) rotate(45deg) scale(0);
                transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s;
                opacity: 0;
            }
            .check-item:hover .check-box::after {
                transform: translate(-50%, -65%) rotate(45deg) scale(1);
                opacity: 1;
            }
            .check-item.checked .check-box::after {
                transform: translate(-50%, -65%) rotate(45deg) scale(1);
                opacity: 1;
            }

            /* --- SELECTED WORKS (Asymmetric Grid) --- */
            .works { 
                padding: 120px 5% 100px; 
                border-top: 1px solid #222;
            }
            .works-header {
                margin-bottom: 60px;
                display: flex;
                justify-content: space-between;
                align-items: flex-end;
                gap: 40px;
            }
            .works-header .section-title { 
                margin: 0;
                margin-bottom: 15px;
            }
            .works-header .reveal {
                flex: 1;
            }
            .scroll-hint {
                color: #444;
                font-size: 14px;
                letter-spacing: 2px;
                white-space: nowrap;
                margin-top: auto;
            }
            .grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                grid-auto-rows: 350px;
                gap: 2px;
            }
            .card.hero-card,
            .card:first-child {
                grid-column: span 2;
                grid-row: span 2;
            }
            .card {
                position: relative;
                overflow: hidden;
                cursor: pointer;
                background: #000;
            }
            .card-media {
                width: 100%;
                height: 100%;
                position: relative;
            }
            .card video {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.6s ease, filter 0.3s ease, opacity 0.3s ease;
                filter: grayscale(100%) contrast(110%);
                background: #000;
                display: block;
                opacity: 0;
            }
            .card video[data-loaded="true"] {
                opacity: 1;
            }
            .card:hover video {
                transform: scale(1.05);
                filter: grayscale(0%) contrast(100%);
            }
            .card-overlay {
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                padding: 30px;
                background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
                transform: translateY(20px);
                opacity: 0;
                transition: 0.3s ease;
                z-index: 10;
            }
            .card-fullscreen-btn {
                position: absolute;
                top: 20px;
                right: 20px;
                width: 40px;
                height: 40px;
                background: rgba(0, 0, 0, 0.7);
                border: 2px solid var(--gold);
                border-radius: 4px;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                opacity: 0;
                transition: all 0.3s ease;
                z-index: 20;
            }
            .card:hover .card-fullscreen-btn {
                opacity: 1;
            }
            .card-fullscreen-btn:hover {
                background: var(--gold);
                transform: scale(1.1);
            }
            .card-fullscreen-btn::before,
            .card-fullscreen-btn::after {
                content: '';
                position: absolute;
                width: 12px;
                height: 12px;
                border: 2px solid var(--gold);
            }
            .card-fullscreen-btn::before {
                top: 6px;
                left: 6px;
                border-right: none;
                border-bottom: none;
            }
            .card-fullscreen-btn::after {
                bottom: 6px;
                right: 6px;
                border-left: none;
                border-top: none;
            }
            .card-fullscreen-btn:hover::before,
            .card-fullscreen-btn:hover::after {
                border-color: #000;
            }
            .card:hover .card-overlay {
                transform: translateY(0);
                opacity: 1;
            }
            .card-cat { 
                color: var(--gold); 
                font-size: 12px; 
                letter-spacing: 3px; 
                text-transform: uppercase; 
                margin-bottom: 5px; 
                display: block;
            }
            .card-title { 
                color: #fff; 
                font-size: clamp(20px, 2vw, 28px); 
                font-weight: 700;
                font-family: 'Syne', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            }

            /* --- SERVICES --- */
            .services { 
                padding: 120px 10% 100px; 
                background: #0a0a0a; 
                border-top: 1px solid #222; 
            }
            .services .section-title {
                text-align: center;
                margin-bottom: 20px;
            }
            .service-list { 
                display: grid; 
                grid-template-columns: repeat(3, 1fr); 
                gap: 50px; 
                margin-top: 50px;
            }
            .service-item {
                padding-bottom: 0;
                border-bottom: none;
            }
            .service-item:last-child {
                border-bottom: none;
            }
            .service-item h3 { 
                color: #fff; 
                margin-bottom: 15px; 
                font-size: clamp(22px, 2.2vw, 28px);
                font-weight: 700;
                letter-spacing: 1px;
            }
            .service-item p { 
                font-size: 16px;
                line-height: 1.6;
            }

            /* --- FOOTER --- */
            footer {
                padding: 100px 10% 80px;
                border-top: 1px solid #222;
                background-color: #080808;
            }
            .footer-container {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 80px;
                align-items: start;
            }
            .footer-brand h2 { 
                font-size: clamp(28px, 3vw, 36px); 
                margin-bottom: 20px;
                letter-spacing: 2px;
                line-height: 1.2;
                color: var(--gold);
            }
            .hp-field {
                position: absolute;
                left: -9999px;
                width: 1px;
                height: 1px;
                overflow: hidden;
            }
            .footer-brand span { 
                color: var(--gold); 
            }
            .footer-brand p {
                font-size: 16px;
                opacity: 0.6;
                margin-bottom: 20px;
                line-height: 1.7;
            }
            .footer-brand .location {
                margin-top: 50px;
            }
            .footer-brand .location p {
                color: #fff;
                margin-bottom: 5px;
                font-size: 16px;
            }
            .footer-brand .location p.location-detail {
                font-size: 14px;
                color: var(--text-muted);
                margin-bottom: 15px;
            }
            .footer-brand .email-link {
                margin-top: 40px;
            }
            .footer-brand .email-link a {
                color: var(--gold);
                border-bottom: 1px solid var(--gold);
                padding-bottom: 2px;
            }
            .footer-form h3 {
                margin-bottom: 30px;
                font-size: 16px;
                letter-spacing: 3px;
                color: var(--gold);
                text-transform: uppercase;
            }
            .footer-form input,
            .footer-form textarea {
                width: 100%;
                background: #111;
                border: 1px solid #333;
                color: #fff;
                padding: 15px;
                margin-bottom: 20px;
                font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
                font-size: 16px;
                outline: none;
                transition: border-color 0.3s;
            }
            .footer-form input::placeholder,
            .footer-form textarea::placeholder {
                color: #888;
            }
            .footer-form input:focus,
            .footer-form textarea:focus {
                border-color: var(--gold);
            }
            .footer-form input.error,
            .footer-form textarea.error {
                border-color: #ff4444;
                background: rgba(255, 68, 68, 0.05);
            }
            .footer-form .error-message {
                color: #ff4444;
                font-size: 12px;
                margin-top: -15px;
                margin-bottom: 15px;
                display: none;
                font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            }
            .footer-form .error-message.show {
                display: block;
            }
            .submit-btn {
                background: transparent;
                border: 2px solid #fff;
                color: #fff;
                padding: 15px 40px;
                cursor: pointer;
                text-transform: uppercase;
                font-weight: bold;
                font-size: 14px;
                letter-spacing: 2px;
                transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
                position: relative;
                overflow: visible;
            }
            .submit-btn::before {
                content: '';
                position: absolute;
                top: -14px;
                left: -2px;
                width: calc(100% + 4px);
                height: 16px;
                background: #000;
                border: 2px solid #fff;
                border-bottom: 3px solid #fff;
                border-radius: 2px 2px 0 0;
                transform: scaleX(0) rotate(-2deg);
                transform-origin: left center;
                transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
                z-index: 1;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            }
            .submit-btn::after {
                content: '';
                position: absolute;
                top: 2px;
                right: -12px;
                width: 10px;
                height: calc(100% - 4px);
                background: #000;
                border: 2px solid #fff;
                border-left: 3px solid #fff;
                border-radius: 0 2px 2px 0;
                transform: scaleY(0) rotate(2deg);
                transform-origin: top right;
                transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.15s;
                z-index: 1;
                box-shadow: 2px 0 8px rgba(0, 0, 0, 0.3);
            }
            .submit-btn:hover {
                background: #fff;
                color: #000;
                border-color: #fff;
                transform: perspective(300px) rotateX(8deg) translateY(-2px);
                box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
            }
            .submit-btn:hover::before {
                transform: scaleX(1) rotate(-2deg);
            }
            .submit-btn:hover::after {
                transform: scaleY(1) rotate(2deg);
            }
            .submit-btn:disabled {
                opacity: 0.5;
                cursor: not-allowed;
                pointer-events: none;
            }

            /* --- VERIFICATION MODAL --- */
            .verification-modal {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.85);
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                display: none;
                align-items: center;
                justify-content: center;
                z-index: 10000;
                opacity: 0;
                transition: opacity 0.3s ease;
            }
            .verification-modal.active {
                display: flex;
                opacity: 1;
            }
            .verification-modal-content {
                background: #050505;
                border: 1px solid var(--gold);
                padding: 50px 40px;
                max-width: 500px;
                width: 90%;
                position: relative;
                transform: scale(0.9);
                transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
                box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
            }
            .verification-modal.active .verification-modal-content {
                transform: scale(1);
            }
            .verification-modal-header {
                font-family: 'Syne', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
                font-size: 18px;
                font-weight: 800;
                text-transform: uppercase;
                letter-spacing: 4px;
                color: var(--gold);
                margin-bottom: 25px;
                text-align: center;
            }
            .verification-modal-body {
                color: #fff;
                font-size: 15px;
                line-height: 1.6;
                margin-bottom: 30px;
                text-align: center;
                opacity: 0.9;
            }
            .verification-checkbox-wrapper {
                display: flex;
                align-items: flex-start;
                gap: 15px;
                margin-bottom: 30px;
                padding: 20px;
                border: 1px solid #222;
                background: rgba(212, 175, 55, 0.05);
                transition: border-color 0.3s ease;
            }
            .verification-checkbox-wrapper:hover {
                border-color: rgba(212, 175, 55, 0.3);
            }
            .verification-checkbox {
                position: relative;
                width: 24px;
                height: 24px;
                min-width: 24px;
                flex-shrink: 0;
                cursor: pointer;
            }
            .verification-checkbox input[type="checkbox"] {
                position: absolute;
                opacity: 0;
                width: 0;
                height: 0;
            }
            .verification-checkbox-custom {
                width: 24px;
                height: 24px;
                border: 2px solid var(--gold);
                background: transparent;
                position: relative;
                transition: all 0.3s ease;
                display: block;
            }
            .verification-checkbox input[type="checkbox"]:checked + .verification-checkbox-custom {
                background: var(--gold);
                border-color: var(--gold);
            }
            .verification-checkbox-custom::after {
                content: '';
                position: absolute;
                left: 50%;
                top: 50%;
                width: 6px;
                height: 12px;
                border: solid #000;
                border-width: 0 3px 3px 0;
                transform: translate(-50%, -65%) rotate(45deg) scale(0);
                transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
                opacity: 0;
            }
            .verification-checkbox input[type="checkbox"]:checked + .verification-checkbox-custom::after {
                transform: translate(-50%, -65%) rotate(45deg) scale(1);
                opacity: 1;
            }
            .verification-checkbox-label {
                color: #fff;
                font-size: 13px;
                line-height: 1.6;
                cursor: pointer;
                user-select: none;
                flex: 1;
            }
            .verification-modal-actions {
                display: flex;
                gap: 15px;
                justify-content: center;
            }
            .verification-btn {
                padding: 12px 30px;
                border: 2px solid var(--gold);
                background: transparent;
                color: var(--gold);
                text-transform: uppercase;
                font-weight: 700;
                font-size: 12px;
                letter-spacing: 2px;
                cursor: pointer;
                transition: all 0.3s ease;
                font-family: 'Syne', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            }
            .verification-btn-cancel {
                border-color: #666;
                color: #666;
            }
            .verification-btn-cancel:hover {
                border-color: #999;
                color: #999;
            }
            .verification-btn-execute {
                border-color: var(--gold);
                color: var(--gold);
                position: relative;
                overflow: hidden;
            }
            .verification-btn-execute:disabled {
                opacity: 0.4;
                cursor: not-allowed;
                border-color: #444;
                color: #444;
            }
            .verification-btn-execute:not(:disabled):hover {
                background: var(--gold);
                color: #000;
                box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
            }
            .verification-btn-execute:not(:disabled)::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
                transition: left 0.5s ease;
            }
            .verification-btn-execute:not(:disabled):hover::before {
                left: 100%;
            }
            .footer-bottom {
                margin-top: 80px;
                border-top: 1px solid #222;
                padding-top: 30px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                font-size: 12px;
                color: #555;
            }
            .footer-bottom a {
                margin-left: 20px;
                color: #555;
                transition: color 0.3s;
            }
            .footer-bottom a:hover {
                color: var(--gold);
            }

            /* --- MOBILE RESPONSIVE --- */
            @media (max-width: 768px) {
                .verification-modal-content {
                    padding: 35px 25px;
                    max-width: 95%;
                }
                .verification-modal-header {
                    font-size: 16px;
                    letter-spacing: 3px;
                    margin-bottom: 20px;
                }
                .verification-modal-body {
                    font-size: 14px;
                    margin-bottom: 25px;
                }
                .verification-checkbox-wrapper {
                    padding: 15px;
                    gap: 12px;
                    margin-bottom: 25px;
                }
                .verification-checkbox-label {
                    font-size: 12px;
                }
                .verification-modal-actions {
                    flex-direction: column;
                    gap: 10px;
                }
                .verification-btn {
                    width: 100%;
                    padding: 14px 25px;
                }
                header {
                    flex-wrap: wrap;
                    padding: 12px 5%;
                }
                nav {
                    order: 3;
                    width: 100%;
                    margin-top: 15px;
                }
                nav ul {
                    gap: 20px;
                    flex-wrap: wrap;
                }
                .hero {
                    padding: 0;
                    min-height: calc(100vh - var(--header-height));
                }
                .hero-content {
                    padding: 0 20px;
                }
                .hero h1 { 
                    font-size: clamp(28px, 6vw, 40px);
                    line-height: 1.2;
                    letter-spacing: 1.5px;
                    margin: 0 auto 15px auto;
                    padding: 0;
                    word-break: break-word;
                    overflow-wrap: break-word;
                    hyphens: none;
                }
                .hero p {
                    max-width: 100%;
                    padding: 0;
                    font-size: clamp(16px, 4vw, 18px);
                    margin: 0 auto 30px auto;
                    line-height: 1.6;
                    word-break: break-word;
                    overflow-wrap: break-word;
                }
                .hero-location {
                    font-size: 12px;
                    letter-spacing: 2px;
                    margin-top: 0;
                }
                .method-content { 
                    grid-template-columns: 1fr; 
                }
                .section-title {
                    font-size: 20px;
                    letter-spacing: 3px;
                    font-weight: 700;
                }
                .grid { 
                    grid-template-columns: 1fr; 
                    grid-auto-rows: 300px; 
                }
                .card.hero-card,
                .card:first-child { 
                    grid-column: span 1; 
                    grid-row: span 1; 
                }
                .service-list { 
                    grid-template-columns: 1fr; 
                    gap: 30px;
                }
                .service-item {
                    padding-bottom: 25px;
                    border-bottom: 1px solid #222;
                }
                .footer-container { 
                    grid-template-columns: 1fr; 
                }
                .footer-bottom {
                    flex-direction: column;
                    gap: 15px;
                    align-items: flex-start;
                }
                .footer-bottom a {
                    margin-left: 0;
                    margin-right: 20px;
                }
            }

            /* Hide scrollbar during preload */
            body.loading {
                overflow: hidden;
                height: 100vh;
            }
            
            /* Ensure content is visible */
            .reveal {
                opacity: 1;
            }