:root {
    --red: #e60000;
    --red-glow: rgba(230, 0, 0, 0.4);
    --dark: #121214;
    --darker: #0a0a0c;
    --light: #ffffff;
    --gray: #9ba0aa;

    --font-heading: 'Unbounded', sans-serif;
    --font-body: 'Manrope', sans-serif;
}

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

body {
    background-color: var(--darker);
    color: var(--light);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Global Noise Overlay for Texture */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    mix-blend-mode: overlay;
}

/* 3D Background Gyroscope */
.fixed-3d-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    perspective: 1400px;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

#bg-3d-element {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    transform-style: preserve-3d;
}

.ring {
    position: absolute;
    border-radius: 50%;
    transform-style: preserve-3d;
}

.ring-1 {
    width: 700px;
    height: 700px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg) translateZ(50px);
}

.ring-2 {
    width: 950px;
    height: 950px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: radial-gradient(circle at 70% 70%, rgba(230, 0, 0, 0.03) 0%, transparent 60%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%) rotateX(60deg) rotateY(45deg);
}

.ring-3 {
    width: 1200px;
    height: 1200px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translate(-50%, -50%) rotateX(-60deg) rotateY(-45deg) translateZ(-50px);
}

/* Helpers */
.text-red {
    color: var(--red);
}

.text-center {
    text-align: center;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 5%;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(10, 10, 12, 0.95) 0%, transparent 100%);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.navbar.scrolled {
    top: 20px;
    width: calc(100% - 40px);
    max-width: 1200px;
    padding: 16px 40px;
    border-radius: 100px;
    background: rgba(18, 18, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.logo-dot {
    width: 6px;
    height: 6px;
    background-color: var(--red);
    border-radius: 50%;
}

.logo-sub {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gray);
    margin-left: 4px;
}

.nav-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.hover-underline {
    position: relative;
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.hover-underline::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--red);
    transition: width 0.3s ease;
}

.hover-underline:hover::after {
    width: 100%;
}

.theme-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 18px;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: transform 0.3s, background 0.3s;
    color: var(--light);
}

.theme-btn:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.1);
}

.icon-moon {
    display: none;
}

.btn-neon {
    position: relative;
    text-decoration: none;
    color: var(--light);
    font-weight: 700;
    font-size: 15px;
    padding: 12px 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.btn-neon:hover {
    border-color: var(--red);
    background: var(--red);
    box-shadow: 0 0 20px var(--red-glow);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 5% 60px;
    overflow: hidden;
}

.hero::after {
    display: none;
}

/* Background Animated Gradient Mesh */
.bg-gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    animation: drift 20s infinite alternate ease-in-out;
}

.sphere-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(230, 0, 0, 0.15) 0%, transparent 70%);
}

.sphere-2 {
    bottom: -10%;
    right: -20%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(30, 30, 40, 0.8) 0%, transparent 70%);
    animation-delay: -5s;
}

.sphere-3 {
    top: 30%;
    left: 40%;
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, rgba(230, 0, 0, 0.08) 0%, transparent 70%);
    animation-delay: -10s;
}

@keyframes drift {
    100% {
        transform: translate(10%, 10%);
    }
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex: 1;
}

/* Typography */
.hero-typography {
    flex: 1.2;
    max-width: 800px;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--red);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(50px, 7vw, 100px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.title-line {
    display: block;
}

.text-light {
    color: var(--light);
}

.hero-desc {
    font-size: clamp(16px, 1.5vw, 20px);
    color: var(--gray);
    max-width: 500px;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 50px;
}

/* Static Stats Ribbon under hero */
.hero-stats {
    display: flex;
    gap: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 30px 50px;
    border-radius: 20px;
    margin-top: 40px;
    z-index: 2;
    align-self: flex-start;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
}

.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.hero-stat-text {
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}


/* Initial Animations for Entry */
.slide-up-1,
.slide-up-2,
.slide-up-3,
.slide-up-4 {
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.slide-up-1 {
    animation-delay: 0.1s;
}

.slide-up-2 {
    animation-delay: 0.2s;
}

.slide-up-3 {
    animation-delay: 0.3s;
}

.slide-up-4 {
    animation-delay: 0.4s;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(40px);
    animation: revealRight 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards;
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 3D Glassmorphism Panel */
.hero-3d-wrapper {
    flex: 1;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    position: relative;
}

.glass-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(230, 0, 0, 0.5) 0%, rgba(60, 60, 200, 0.3) 50%, transparent 70%);
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
    animation: drift 10s infinite alternate ease-in-out;
}

.glass-panel {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/5;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    z-index: 1;
}

/* Dynamic Glare on Glass */
.glass-glare {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 2;
}

.floating-camera {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(60px);
    width: 110%;
    max-width: none;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(230, 0, 0, 0.2));
    border-radius: 40px;
    object-fit: contain;
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 50%, transparent 95%);
    mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 50%, transparent 95%);
    animation: float-soft 4s infinite alternate ease-in-out;
}

@keyframes float-soft {
    from { transform: translate(-50%, -50%) translateZ(60px) translateY(0px); }
    to { transform: translate(-50%, -50%) translateZ(80px) translateY(-15px); }
}

/* Tech Elements Added */
.tech-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(20px);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.t-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(230, 0, 0, 0.1);
    border-radius: 50%;
}

.circle-1 {
    width: 300px;
    height: 300px;
    border-style: dashed;
    animation: rotate 20s linear infinite;
}

.circle-2 {
    width: 400px;
    height: 400px;
    border-color: rgba(255, 255, 255, 0.05);
    animation: rotate 30s linear infinite reverse;
}

.circle-3 {
    width: 500px;
    height: 500px;
    border-style: dotted;
    opacity: 0.3;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--red), transparent);
    z-index: 3;
    opacity: 0.5;
    box-shadow: 0 0 15px var(--red);
    animation: scan 3s infinite ease-in-out;
}

@keyframes scan {
    0%, 100% { top: 10%; opacity: 0; }
    50% { top: 90%; opacity: 1; }
}

.glass-metric {
    position: absolute;
    background: rgba(10, 10, 12, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px 28px;
    border-radius: 20px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    display: flex;
    flex-direction: column;
    transform: translateZ(100px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    z-index: 10;
}

.metric-1 {
    top: -10px;
    right: -10px;
}

.metric-2 {
    bottom: -10px;
    left: -10px;
}

.metric-val {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--light);
}

.metric-lbl {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Services */
.services {
    padding: 120px 5%;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 64px);
    font-weight: 800;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.4s;
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
}

.card-glow {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(230, 0, 0, 0.3) 0%, transparent 70%);
    filter: blur(30px);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover .card-glow {
    opacity: 1;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p {
    color: var(--gray);
    font-size: 15px;
}

/* Benefits (Why Us) */
.benefits {
    padding: 100px 5%;
    background: var(--darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.benefits-container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.massive-text {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}

.clean-list {
    list-style: none;
    flex: 1.5;
}

.clean-list li {
    display: flex;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.b-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--red);
}

.b-content h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.b-content p {
    font-size: 16px;
    color: var(--gray);
}

/* Sleek Contact Form Layout */
.sleek-contact {
    padding: 140px 5%;
}

.sleek-contact-container {
    display: flex;
    gap: 80px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 60px;
    align-items: center;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.1;
}

.contact-info p {
    color: var(--gray);
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 400px;
}

.contact-phone {
    font-family: var(--font-heading);
    display: block;
    font-size: clamp(32px, 3.5vw, 50px);
    font-weight: 800;
    color: var(--light);
    text-decoration: none;
    margin-bottom: 16px;
    letter-spacing: -1px;
    transition: color 0.3s;
}

.contact-phone:hover {
    color: var(--red);
}

.contact-email {
    display: inline-block;
    font-size: 20px;
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 40px;
}

.contact-email:hover {
    color: var(--light);
}

.contact-details p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Contact Form */
.contact-form-wrapper {
    flex: 1;
}

.glass-form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 24px;
    backdrop-filter: blur(20px);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
    color: var(--light);
    font-size: 18px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-bottom-color: var(--red);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.submit-btn {
    width: 100%;
    background: var(--red);
    color: var(--light);
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #cc0000;
}

/* Expert Showcase */
.expert-showcase {
    padding: 120px 5%;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.showcase-container {
    max-width: 1200px;
    display: flex;
    gap: 80px;
    align-items: center;
}

@media (max-width: 992px) {
    .showcase-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
}

.showcase-image {
    flex: 1;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    background: rgba(255,255,255,0.05);
}

.showcase-image img {
    width: 100%;
    display: block;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.showcase-text {
    flex: 1;
}

.showcase-text p {
    color: var(--gray);
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.expert-stats {
    display: flex;
    gap: 40px;
}

@media (max-width: 992px) {
    .expert-stats {
        justify-content: center;
    }
}

.e-stat {
    display: flex;
    flex-direction: column;
}

.e-num {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--red);
}

.e-lbl {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
}


.form-notice {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.4) !important;
    margin-top: 20px !important;
    margin-bottom: 0 !important;
    text-align: center;
}

/* Footer */
footer {
    padding: 40px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.f-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gray);
    letter-spacing: 1px;
}

.f-links a {
    color: var(--gray);
    text-decoration: none;
    margin-left: 24px;
    font-size: 14px;
}

.f-links a:hover {
    color: var(--light);
}

/* Light Theme Overrides */
body.light-theme {
    background-color: #f2f2f7;
    color: #121214;
}

body.light-theme .text-light,
body.light-theme .hero-title .text-light,
body.light-theme .title-line {
    color: #121214;
}

body.light-theme .hover-underline,
body.light-theme .btn-neon,
body.light-theme .contact-phone {
    color: #121214;
}

body.light-theme .contact-phone:hover {
    color: var(--red);
}

body.light-theme .btn-neon {
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.03);
}

body.light-theme .btn-neon:hover {
    background: var(--red);
    color: white;
    border-color: var(--red);
}

body.light-theme .navbar {
    background: linear-gradient(to bottom, rgba(242, 242, 247, 0.9) 0%, transparent 100%);
}

body.light-theme .navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.light-theme .logo {
    color: #121214;
}

body.light-theme .theme-btn {
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.03);
    color: #121214;
}

body.light-theme .theme-btn:hover {
    background: rgba(0, 0, 0, 0.08);
}

body.light-theme .icon-sun {
    display: none;
}

body.light-theme .icon-moon {
    display: inline;
}

body.light-theme .glass-bg-glow {
    opacity: 0.6;
}

/* Make glow slightly softer in light mode */
body.light-theme .glass-panel {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3));
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

body.light-theme .floating-camera {
    filter: drop-shadow(0 20px 30px rgba(230, 0, 0, 0.15));
    mix-blend-mode: multiply;
}

body.light-theme .glass-metric {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 1);
}

body.light-theme .glass-metric .metric-val {
    color: #121214;
}

body.light-theme .glass-metric .metric-lbl {
    color: #6b7280;
}

body.light-theme .hero-stats {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .hero-stat-num {
    color: #121214;
}

body.light-theme .hero-stat-text {
    color: #6b7280;
}

body.light-theme .service-card {
    background: #ffffff;
    border-color: #e5e5ea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.light-theme .service-card:hover {
    background: #ffffff;
}

body.light-theme .benefits {
    background: #e5e5ea;
    border-top-color: #d1d1d6;
}

body.light-theme .massive-text,
body.light-theme .b-content h4,
body.light-theme .b-content p,
body.light-theme .b-number {
    color: #121214;
}

body.light-theme .b-number {
    color: var(--red);
}

body.light-theme .clean-list li {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .sleek-contact-container {
    background: #ffffff;
    border-color: #e5e5ea;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

body.light-theme .contact-info h2,
body.light-theme .contact-info p,
body.light-theme .contact-details p {
    color: #121214;
}

body.light-theme .contact-details p {
    color: #6b7280;
}

body.light-theme .glass-form {
    background: #f9f9fb;
    border-color: #e5e5ea;
}

body.light-theme .form-group label {
    color: #6b7280;
}

body.light-theme .form-group input {
    color: #121214;
    border-bottom-color: #d1d1d6;
}

body.light-theme .form-group input::placeholder {
    color: #a1a1aa;
}

body.light-theme .form-notice {
    color: #a1a1aa !important;
}

body.light-theme .f-brand,
body.light-theme .f-links a {
    color: #6b7280;
}

body.light-theme .f-links a:hover {
    color: #121214;
}

body.light-theme .ring-1 {
    border-color: rgba(0, 0, 0, 0.1);
    background: radial-gradient(circle at 30% 30%, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body.light-theme .ring-2 {
    border-color: rgba(0, 0, 0, 0.05);
    background: transparent;
}

body.light-theme .ring-3 {
    border-color: rgba(0, 0, 0, 0.03);
    background: transparent;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-stats {
        align-self: center;
        justify-content: center;
        width: 100%;
    }

    .hero-title {
        align-items: center;
    }

    .hero-desc {
        margin: 0 auto 40px;
    }

    .hero-3d-wrapper {
        margin-top: 40px;
        width: 100%;
    }

    .benefits-container {
        flex-direction: column;
    }

    .sleek-contact-container {
        flex-direction: column;
        padding: 40px;
        text-align: center;
    }

    .contact-details p {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    /* Navbar Mobile */
    .nav-links {
        display: none;
    }

    .nav-actions {
        gap: 12px;
    }

    .navbar {
        padding: 16px 5%;
    }

    .navbar.scrolled {
        padding: 12px 20px;
        width: calc(100% - 20px);
        top: 10px;
    }

    .logo-sub {
        display: none;
    }

    .logo {
        font-size: 20px;
    }

    .btn-neon {
        padding: 10px 16px;
        font-size: 13px;
    }

    .theme-btn {
        font-size: 16px;
        padding: 8px;
    }

    /* Hero Mobile */
    .hero {
        padding: 110px 5% 40px;
    }

    .hero-badge {
        margin-bottom: 20px;
        padding: 6px 12px;
        font-size: 11px;
    }

    .hero-title {
        font-size: clamp(38px, 10vw, 60px);
        margin-bottom: 20px;
    }

    .hero-desc {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
        padding: 24px;
        border-radius: 16px;
        margin-top: 20px;
    }

    .hero-stat-item {
        align-items: center;
    }

    .hero-stat-num {
        font-size: 36px;
    }

    /* 3D Panel Mobile */
    .glass-bg-glow {
        width: 250px;
        height: 250px;
    }

    .glass-metric {
        padding: 10px 14px;
    }

    .metric-val {
        font-size: 16px;
    }

    .metric-lbl {
        font-size: 10px;
    }

    .metric-1 {
        top: -10px;
        right: -10px;
    }

    .metric-2 {
        bottom: 10px;
        left: -10px;
    }

    /* Services & Stats Mobile */
    .services {
        padding: 60px 5%;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .service-card {
        padding: 30px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    /* Benefits Mobile */
    .benefits {
        padding: 60px 5%;
    }

    .massive-text {
        font-size: 44px;
        text-align: center;
        margin-bottom: 40px;
    }

    .clean-list li {
        flex-direction: column;
        gap: 12px;
        padding: 24px 0;
        text-align: center;
    }

    .b-number {
        font-size: 28px;
    }

    .b-content h4 {
        font-size: 20px;
    }

    /* Contact Mobile */
    .sleek-contact {
        padding: 60px 5%;
    }

    .sleek-contact-container {
        padding: 24px;
        gap: 40px;
    }

    .contact-info h2 {
        font-size: 32px;
    }

    .contact-phone {
        font-size: 32px;
    }

    .glass-form {
        padding: 24px;
    }

    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .f-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .f-links a {
        margin: 0;
    }
}

/* Custom Cursor */
.cursor-dot,
.cursor-follower {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
}

body.custom-cursor-enabled,
body.custom-cursor-enabled * {
    cursor: none !important;
}

body.custom-cursor-enabled .cursor-dot {
    display: block;
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

body.custom-cursor-enabled .cursor-follower {
    display: block;
    width: 40px;
    height: 40px;
    border: 1.5px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
        height 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
        background 0.3s, border-color 0.3s;
    mix-blend-mode: difference;
    z-index: 9999;
}

body.custom-cursor-enabled .cursor-follower.hover-active {
    width: 70px;
    height: 70px;
    background: #fff;
    border-color: transparent;
}