:root {
    --bg-dark: #050A14;
    --bg-deep: #020408;
    --accent-cyan: #00F3FF;
    --accent-purple: #BC13FE;
    --text-main: #FFFFFF;
    --text-muted: #A0AABF;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Orbitron', sans-serif;
    --font-subheading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
}

[data-theme="light"] {
    --bg-dark: #FFFFFF;
    --bg-deep: #F0F4F8;
    --accent-cyan: #007B83;
    /* Darker teal for contrast */
    --accent-purple: #7B00A8;
    /* Darker purple for contrast */
    --text-main: #1A202C;
    --text-muted: #555555;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.1);
}

/* Light Mode Overrides */
[data-theme="light"] .parallax-bg,
[data-theme="light"] .stars-overlay {
    opacity: 0;
    visibility: hidden;
}

[data-theme="light"] .glass-nav {
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .hero-content h1 {
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="light"] .product-card {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .product-image {
    background: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .tech-strip {
    background: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .partners-strip {
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="light"] input,
[data-theme="light"] textarea {
    background: #fff;
    color: var(--text-main);
    border: 1px solid #cbd5e0;
}

[data-theme="light"] input:focus,
[data-theme="light"] textarea:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(0, 123, 131, 0.2);
}

[data-theme="light"] .glass-card {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .stats-section {
    background: radial-gradient(circle at center, rgba(123, 0, 168, 0.05) 0%, transparent 70%);
}

[data-theme="light"] .stat-item {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .nav-links a:hover {
    text-shadow: none;
}

/* Footer Light Mode Overrides */
[data-theme="light"] footer {
    background: var(--bg-deep);
    /* Use lighter background for footer */
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] footer h4,
[data-theme="light"] footer .footer-brand h2,
[data-theme="light"] .social-icon {
    color: var(--text-main);
}

[data-theme="light"] footer p,
[data-theme="light"] footer a {
    color: var(--text-muted);
}

[data-theme="light"] footer a:hover {
    color: var(--accent-cyan);
}

[data-theme="light"] .social-icon {
    background: rgba(0, 0, 0, 0.05);
    /* Light background for icons */
    color: var(--text-main);
}

[data-theme="light"] .social-icon:hover {
    background: var(--accent-cyan);
    color: white;
}


/* Theme Toggle */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
    padding: 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
}

.theme-toggle:hover {
    color: var(--accent-cyan);
    transform: rotate(15deg);
}

.theme-toggle svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Backgrounds & Parallax */
.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/space-bg.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.1);
    /* Prevent edge showing on small moves */
}

.stars-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, var(--bg-deep) 90%);
    z-index: -1;
    pointer-events: none;
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(15px);
    background: rgba(5, 10, 20, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-main);
    letter-spacing: 2px;
}

.logo span {
    color: var(--accent-cyan);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-family: var(--font-subheading);
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.btn-glow-small {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--accent-purple);
    border-radius: 4px;
    color: var(--accent-purple) !important;
    transition: all 0.3s ease;
}

.btn-glow-small:hover {
    background: var(--accent-purple);
    color: #fff !important;
    box-shadow: 0 0 15px var(--accent-purple);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    background: linear-gradient(90deg, #fff, var(--accent-cyan));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content h2 {
    font-family: var(--font-subheading);
    font-size: 2rem;
    color: var(--accent-purple);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    font-family: var(--font-heading);
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
}

.btn-primary:hover {
    background: var(--accent-cyan);
    color: #000;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.4);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    perspective: 1000px;
}

.floating-drone {
    width: 100%;
    max-width: 600px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(0, 243, 255, 0.2));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(2deg);
    }
}

/* Global Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

/* Glitch Effect */
.glitch-text {
    position: relative;
    color: var(--text-main);
    letter-spacing: 4px;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    left: 2px;
    text-shadow: -1px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -1px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(30px, 9999px, 10px, 0);
    }

    5% {
        clip: rect(60px, 9999px, 80px, 0);
    }

    10% {
        clip: rect(85px, 9999px, 30px, 0);
    }

    15% {
        clip: rect(20px, 9999px, 100px, 0);
    }

    20% {
        clip: rect(10px, 9999px, 60px, 0);
    }

    25% {
        clip: rect(45px, 9999px, 20px, 0);
    }

    30% {
        clip: rect(90px, 9999px, 50px, 0);
    }

    35% {
        clip: rect(15px, 9999px, 85px, 0);
    }

    40% {
        clip: rect(70px, 9999px, 40px, 0);
    }

    45% {
        clip: rect(50px, 9999px, 10px, 0);
    }

    50% {
        clip: rect(25px, 9999px, 95px, 0);
    }

    55% {
        clip: rect(80px, 9999px, 30px, 0);
    }

    60% {
        clip: rect(10px, 9999px, 55px, 0);
    }

    65% {
        clip: rect(95px, 9999px, 20px, 0);
    }

    70% {
        clip: rect(35px, 9999px, 75px, 0);
    }

    75% {
        clip: rect(60px, 9999px, 40px, 0);
    }

    80% {
        clip: rect(15px, 9999px, 90px, 0);
    }

    85% {
        clip: rect(75px, 9999px, 25px, 0);
    }

    90% {
        clip: rect(40px, 9999px, 65px, 0);
    }

    95% {
        clip: rect(90px, 9999px, 10px, 0);
    }

    100% {
        clip: rect(20px, 9999px, 85px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(15px, 9999px, 90px, 0);
    }

    5% {
        clip: rect(80px, 9999px, 20px, 0);
    }

    10% {
        clip: rect(35px, 9999px, 75px, 0);
    }

    15% {
        clip: rect(60px, 9999px, 40px, 0);
    }

    20% {
        clip: rect(95px, 9999px, 10px, 0);
    }

    25% {
        clip: rect(20px, 9999px, 60px, 0);
    }

    30% {
        clip: rect(50px, 9999px, 85px, 0);
    }

    35% {
        clip: rect(75px, 9999px, 30px, 0);
    }

    40% {
        clip: rect(10px, 9999px, 55px, 0);
    }

    45% {
        clip: rect(90px, 9999px, 25px, 0);
    }

    50% {
        clip: rect(45px, 9999px, 70px, 0);
    }

    55% {
        clip: rect(30px, 9999px, 95px, 0);
    }

    60% {
        clip: rect(65px, 9999px, 15px, 0);
    }

    65% {
        clip: rect(25px, 9999px, 50px, 0);
    }

    70% {
        clip: rect(85px, 9999px, 35px, 0);
    }

    75% {
        clip: rect(10px, 9999px, 80px, 0);
    }

    80% {
        clip: rect(55px, 9999px, 20px, 0);
    }

    85% {
        clip: rect(35px, 9999px, 65px, 0);
    }

    90% {
        clip: rect(70px, 9999px, 10px, 0);
    }

    95% {
        clip: rect(20px, 9999px, 50px, 0);
    }

    100% {
        clip: rect(50px, 9999px, 90px, 0);
    }
}

/* About Section */
.about-section {
    padding: 4rem 10%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-purple);
    margin: 10px auto 0;
    box-shadow: 0 0 10px var(--accent-purple);
}

.about-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-muted);
}

.about-text span {
    color: var(--accent-cyan);
    font-weight: 600;
}

/* Services Section */
.services-section {
    padding: 6rem 10%;
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Submit Button */
.submit-btn {
    background: transparent;
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan);
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    font-size: 1rem;
    width: 100%;
}

.submit-btn:hover {
    background: var(--accent-cyan);
    color: #000;
    box-shadow: 0 0 20px var(--accent-cyan);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 243, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.card-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(188, 19, 254, 0.4));
    transition: transform 0.3s ease;
}

.glass-card:hover .card-icon img {
    transform: scale(1.1);
}

.glass-card h4 {
    font-family: var(--font-subheading);
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.glass-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Products Section */
.products-section {
    padding: 6rem 10%;
    position: relative;
    z-index: 2;
}

.product-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--glass-border);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
}

.product-info h4 {
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.product-info .sku {
    color: var(--accent-purple);
    font-family: var(--font-subheading);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.product-specs {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.spec-item {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.spec-item span {
    display: block;
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-subheading);
}

/* Tech Strip */
.tech-strip {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 2rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.tech-track {
    display: inline-block;
    animation: slide 20s linear infinite;
}

.tech-item {
    display: inline-block;
    padding: 0 3rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tech-item span {
    color: var(--accent-cyan);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Partners Strip */
.partners-strip {
    background: var(--bg-deep);
    padding: 3rem 0;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    z-index: 2;
    text-align: center;
}

.partners-title {
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    font-family: var(--font-subheading);
}

.partners-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    align-items: center;
}

.partners-grid img {
    height: 60px;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.partners-grid img:hover {
    opacity: 1;
    filter: grayscale(0%) drop-shadow(0 0 10px rgba(0, 243, 255, 0.4));
    transform: scale(1.05);
}

/* Stats Section */
.stats-section {
    padding: 4rem 10%;
    position: relative;
    z-index: 2;
    background: radial-gradient(circle at center, rgba(188, 19, 254, 0.05) 0%, transparent 70%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--text-main);
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 10%;
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.testimonial-card {
    text-align: left;
    padding: 3rem;
}

.quote-icon {
    font-size: 4rem;
    color: var(--accent-purple);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.5;
    font-family: serif;
}

.testimonial-card p {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    font-style: italic;
    line-height: 1.8;
}

.author strong {
    display: block;
    color: var(--accent-cyan);
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.author span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

/* Contact Section */
.contact-section {
    padding: 6rem 10%;
    position: relative;
    z-index: 2;
}

.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    /* Override center form glass-card */
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text-main);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--text-muted);
    outline: none;
    font-family: var(--font-body);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: var(--accent-cyan);
}

.form-group label {
    position: absolute;
    top: 10px;
    left: 0;
    color: var(--text-muted);
    pointer-events: none;
    transition: 0.3s ease all;
    font-size: 1rem;
}

.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
    top: -20px;
    font-size: 0.8rem;
    color: var(--accent-cyan);
}

/* Footer */
/* Footer */
footer {
    padding: 4rem 0 2rem 0;
    background: rgba(0, 5, 10, 0.95);
    backdrop-filter: blur(10px);
    margin-top: 4rem;
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo h2 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: var(--text-muted);
    max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
    color: var(--accent-cyan);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-cyan);
    padding-left: 5px;
}

.footer-social .social-icons {
    display: flex;
    gap: 1rem;
}

.footer-social .social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-heading);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.footer-social .social-icons a:hover {
    background: var(--accent-cyan);
    color: #000;
    box-shadow: 0 0 10px var(--accent-cyan);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-logo p {
        margin: 0 auto;
    }

    .footer-social .social-icons {
        justify-content: center;
    }
}

/* Mobile Responsiveness */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    /* Above mobile Nav */
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    /* Minimal blur for background */
    z-index: 1000;
    transition: right 0.4s ease;
    display: flex;
    justify-content: flex-end;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-content {
    width: 70%;
    max-width: 300px;
    height: 100%;
    background: rgba(10, 10, 20, 0.95);
    border-left: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem;
    gap: 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    position: relative;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
}

.close-menu:hover {
    color: var(--accent-cyan);
}

.mobile-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.5rem;
    font-family: var(--font-subheading);
    text-transform: uppercase;
    transition: color 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.mobile-link:hover {
    color: var(--accent-cyan);
    border-bottom-color: var(--accent-cyan);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        padding-top: 100px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        margin: 0 auto 2rem;
    }

    .hero-visual {
        margin-top: 3rem;
    }

    .glass-nav {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Product Page Mobile Fixes */
    .product-detail {
        flex-direction: column !important;
        padding: 4rem 5%;
        text-align: center;
    }

    .product-detail:nth-child(even) {
        flex-direction: column !important;
    }

    .product-detail-img {
        margin-bottom: 2rem;
        width: 100%;
    }

    .product-detail-info h2 {
        font-size: 2rem;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .page-title {
        font-size: 2.5rem;
    }
}

/* Subpage Header */
.page-header {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 60px;
    background: radial-gradient(circle at center, rgba(0, 243, 255, 0.1) 0%, transparent 70%);
}

.page-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--text-main);
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
    margin-bottom: 1rem;
}

/* Detailed Product Section */
.product-detail {
    padding: 6rem 10%;
    display: flex;
    align-items: center;
    gap: 4rem;
    border-bottom: 1px solid var(--glass-border);
}

.product-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.product-detail-img {
    flex: 1;
    position: relative;
}

.product-detail-img img {
    width: 100%;
    filter: drop-shadow(0 0 30px rgba(0, 243, 255, 0.2));
    animation: float 6s ease-in-out infinite;
}

.product-detail-info {
    flex: 1;
}

.product-detail-info h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.product-detail-info .sku {
    color: var(--accent-cyan);
    font-size: 1.2rem;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 2rem;
}

.product-detail-info p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.spec-value {
    color: var(--text-main);
    font-family: var(--font-heading);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    text-decoration: none;
    font-family: var(--font-subheading);
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary:hover {
    background: var(--accent-cyan);
    color: #000;
    box-shadow: 0 0 20px var(--accent-cyan);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    padding: 0 10% 6rem 10%;
}

.team-member {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    background: var(--bg-deep);
    border: 2px solid var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-cyan);
    object-fit: cover;
}

.member-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--accent-purple);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

/* Office Locations */
.locations-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0 10% 6rem 10%;
    text-align: center;
}

.location-card h3 {
    font-family: var(--font-heading);
    color: var(--accent-cyan);
    margin-bottom: 1rem;
}

.location-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll Progress Button */
.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 243, 255, 0.1);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
    background: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(5px);
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--accent-cyan);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}

.progress-wrap::after {
    position: absolute;
    content: '↑';
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    color: var(--accent-cyan);
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    font-family: 'Inter', sans-serif;
}

.progress-wrap:hover::after {
    opacity: 0;
}

.progress-wrap::before {
    position: absolute;
    content: 'TOP';
    text-align: center;
    line-height: 50px;
    font-size: 14px;
    opacity: 0;
    background: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--accent-cyan);
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
}

.progress-wrap:hover::before {
    opacity: 1;
}