:root {
    --bg-dark: #000000;
    --bg-card: rgba(5, 5, 5, 0.6);
    --accent-blue: #00f2fe;
    --accent-blue-dim: rgba(0, 242, 254, 0.15);
    --accent-teal: #4facfe;
    --accent-glow: 0 0 20px rgba(0, 242, 254, 0.4);
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(10, 10, 10, 0.3);
    --transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

a, button, input, textarea, select, .category-card {
    cursor: none;
}

/* Custom Cursor */
.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 1px solid var(--accent-teal);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-outline.hover {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 242, 254, 0.1);
    border-color: transparent;
}

h1, h2, h3, .logo {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}

.glass::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    pointer-events: none;
}

/* Navigation */
#main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(8, 8, 8, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
    background: linear-gradient(
        120deg,
        rgba(0, 242, 254, 1) 0%,
        rgba(79, 172, 254, 1) 40%,
        #ffffff 50%,
        rgba(79, 172, 254, 1) 60%,
        rgba(0, 242, 254, 1) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 4s linear infinite;
    position: relative;
    z-index: 1001; 
}

@keyframes shineText {
    to { background-position: 200% center; }
}



.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-blue);
    text-shadow: 0 0 10px var(--accent-blue-glow);
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at center, #0a0a0a 0%, #000000 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 0%, var(--bg-dark) 100%);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
}

#hero-branding {
    text-align: left;
}

.hero-label {
    display: inline-block;
    color: var(--accent-teal);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 242, 254, 0.3);
    border-radius: 4px;
    background: rgba(0, 242, 254, 0.05);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    animation: sweepBeam 4s infinite ease-in-out;
}

@keyframes sweepBeam {
    0% { left: -100%; }
    40% { left: 200%; }
    100% { left: 200%; }
}

.glitch-text {
    font-size: 4.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.1;
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-dim);
    letter-spacing: 2px;
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: var(--transition);
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: transparent;
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

.btn-primary:hover {
    background: var(--accent-blue);
    color: #000;
    box-shadow: 0 0 30px var(--accent-blue);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Hero Graphics & HUD */
.hero-graphics {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-ring {
    width: 400px;
    height: 400px;
    position: relative;
    filter: drop-shadow(0 0 15px rgba(0,242,254,0.3));
}

.rings-svg {
    width: 100%;
    height: 100%;
}

.product-scanner-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 260px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: inset 0 0 40px rgba(0, 242, 254, 0.2);
}

.scanner-feed-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(0,242,254,0) 0%, rgba(0,242,254,0.1) 50%, rgba(0,242,254,0) 100%);
    background-size: 100% 4px;
    z-index: 5;
    pointer-events: none;
    animation: scanline 4s linear infinite;
}

@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

#scanner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: opacity 0.4s ease;
}

.scanner-data {
    position: absolute;
    bottom: 25px;
    font-size: 0.6rem;
    color: var(--accent-blue);
    letter-spacing: 2px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 0 5px var(--accent-blue);
}

.data-pulse {
    width: 6px;
    height: 6px;
    background: red;
    border-radius: 50%;
    animation: flash 1s infinite alternate;
}

@keyframes flash {
    0% { opacity: 0.3; }
    100% { opacity: 1; box-shadow: 0 0 10px red; }
}

.spin-slow {
    transform-origin: center;
    animation: spin 30s linear infinite;
}

.spin-fast-reverse {
    transform-origin: center;
    animation: spinReverse 15s linear infinite;
}

.pulse-opacity {
    animation: pulseOp 2s ease-in-out infinite alternate;
}

@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes spinReverse { 100% { transform: rotate(-360deg); } }
@keyframes pulseOp { 0% { opacity: 0.2; } 100% { opacity: 1; } }

.hud-panel {
    position: absolute;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    border-left: 2px solid var(--accent-teal);
    animation: float 6s ease-in-out infinite;
}

.hud-1 { top: 20%; left: -10%; }
.hud-2 { bottom: 20%; right: -10%; animation-delay: -3s; }

.hud-value {
    color: var(--accent-blue);
    font-weight: 900;
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.hud-label {
    color: var(--text-dim);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-dim);
    font-size: 0.7rem;
    letter-spacing: 2px;
}

.mouse {
    width: 25px;
    height: 45px;
    border: 2px solid var(--text-dim);
    border-radius: 15px;
    position: relative;
}

.mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 20px); opacity: 0; }
}

/* About Section */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.section-title.centered { text-align: center; }
.section-subtitle.centered { text-align: center; margin-bottom: 4rem; color: var(--text-dim); }

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
}

.vision-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.vision-card {
    padding: 2rem;
}

.vision-card h3 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.about-stats {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.stat-label {
    color: var(--accent-blue);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.category-card {
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: border-color 0.5s ease;
}

.category-card::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-25deg);
    transition: left 0.8s ease-in-out;
    z-index: 3;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.category-card:hover::after {
    left: 150%;
}

.category-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.8), inset 0 0 0 1px rgba(255,255,255,0.1);
    border-color: var(--glass-border);
}

.category-card .card-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.category-card:hover .card-bg {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    z-index: 2;
}

.category-card h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: var(--text-dim);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Product Details View */
.hidden { display: none; }

.product-details-view {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 2rem;
}

.btn-back {
    background: transparent;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    font-weight: 700;
}

.btn-back:hover { color: var(--accent-blue); }

.product-list-container {
    display: grid;
    gap: 4rem;
}

.sub-brand-section h4 {
    color: var(--accent-blue);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-blue);
    padding-left: 1.5rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    transition: var(--transition);
}

.product-item:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: var(--accent-blue);
    transform: translateY(-5px);
}

.product-item strong {
    display: block;
    color: #fff;
    margin-bottom: 0.2rem;
}

.product-item small {
    display: block;
    color: var(--text-dim);
    margin-bottom: 1rem;
}

.btn-enquire {
    background: transparent;
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-enquire:hover {
    background: var(--accent-blue);
    color: #000;
}

/* Enquiry Drawer */
.drawer {
    position: fixed;
    top: 0; right: 0;
    width: 450px; height: 100%;
    background: rgba(8, 8, 8, 0.95);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.drawer.active {
    transform: translateX(0);
}

.drawer-content {
    height: 100%;
    padding: 3rem;
    overflow-y: auto;
    border-left: 1px solid var(--accent-blue);
}

.close-modal {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-dim);
    font-size: 2rem;
    cursor: pointer;
}

.drawer-header h3 {
    font-size: 1.5rem;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.drawer-header p {
    color: #fff;
    font-weight: 600;
    margin-bottom: 3rem;
}

/* Premium Background Visuals */
.bg-visuals {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-blue-dim) 0%, transparent 70%);
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.5;
}

.blob-1 {
    top: -10%;
    right: -10%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    animation: morph 15s infinite alternate;
}

.blob-2 {
    bottom: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(0, 255, 204, 0.1) 0%, transparent 70%);
    animation: morph 20s infinite alternate-reverse;
}

@keyframes morph {
    0% { border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%; transform: translate(0, 0) rotate(0deg); }
    33% { border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%; transform: translate(5vw, 5vh) rotate(90deg); }
    66% { border-radius: 40% 60% 40% 60% / 50% 40% 60% 50%; transform: translate(-5vw, 2vh) rotate(180deg); }
    100% { border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%; transform: translate(0, 0) rotate(360deg); }
}

.grid-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
}

.noise-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.15;
    pointer-events: none;
    z-index: 3;
    mix-blend-mode: overlay;
}

/* B2B Bulk Section */
.premium-section {
    position: relative;
    z-index: 10;
    background: linear-gradient(to bottom, #000000, #030811);
}

.b2b-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.gradient-text {
    background: linear-gradient(135deg, var(--text-main) 0%, var(--accent-teal) 50%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Enquiry Type Toggle */
.enquiry-type-toggle {
    display: flex;
    background: rgba(0,0,0,0.5);
    border-radius: 8px;
    padding: 6px;
    margin-bottom: 2rem;
    border: 1px solid var(--glass-border);
    position: relative;
    z-index: 20;
}

.toggle-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-dim);
    padding: 0.8rem;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 6px;
}

.toggle-btn.active {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-teal));
    color: #000;
    box-shadow: 0 0 20px rgba(0,242,254,0.4);
}

.toggle-btn:not(.active):hover {
    color: #fff;
    background: rgba(255,255,255,0.05);
}

/* Ultra Glow Button */
.ultra-glow-btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, transparent, rgba(0,242,254,0.2), transparent);
    background-size: 200% 100%;
    animation: shine-bg 3s infinite linear;
    border-color: var(--accent-blue);
}

.ultra-glow-btn:hover {
    box-shadow: 0 0 35px var(--accent-blue), inset 0 0 15px rgba(0,242,254,0.5);
    transform: translateY(-2px);
}

@keyframes shine-bg {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.gradient-text {
    background: linear-gradient(135deg, var(--text-main) 0%, var(--accent-teal) 50%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.b2b-desc {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
}

.b2b-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.highlight-item .check {
    color: var(--accent-blue);
    margin-right: 15px;
    font-size: 1.5rem;
    text-shadow: var(--accent-glow);
}

.b2b-form-container {
    padding: 3.5rem;
    border: 1px solid rgba(0, 242, 254, 0.2);
    box-shadow: 0 0 40px rgba(0, 242, 254, 0.05);
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.premium-select {
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    color: var(--text-dim);
    border-radius: 4px;
    font-family: inherit;
    appearance: none;
}

.premium-select option {
    background: var(--bg-dark);
    color: #fff;
}

.enquiry-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.enquiry-type-toggle {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.enquiry-type-toggle input { display: none; }

.enquiry-type-toggle label {
    flex: 1;
    padding: 0.8rem;
    text-align: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: var(--transition);
}

.enquiry-type-toggle input:checked + label {
    border-color: var(--accent-blue);
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-blue);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    color: #fff;
    border-radius: 4px;
    font-family: inherit;
}

.form-group textarea { height: 100px; resize: none; }

.full-width { width: 100%; margin-top: 1rem; }

/* Contact Section */
.contact-card {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    padding: 4rem;
}

.contact-list {
    list-style: none;
    margin-top: 3rem;
}

.contact-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-list .icon {
    font-size: 1.5rem;
}

.contact-list strong {
    display: block;
    color: var(--accent-blue);
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature {
    padding: 2rem;
}

.feature strong {
    color: #fff;
    display: block;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0;
    margin-top: 8rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dim);
    font-size: 0.8rem;
}

.footer-branding span {
    color: var(--accent-blue);
    letter-spacing: 3px;
    font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .about-grid, .contact-card, .hero-content-wrapper, .b2b-grid, .vision-cards {
        grid-template-columns: 1fr;
    }
    
    .hero-graphics {
        height: 300px;
    }
    
    .tech-ring {
        width: 250px;
        height: 250px;
    }

    .product-scanner-container {
        width: 160px;
        height: 160px;
    }

    .glitch-text { font-size: 2.5rem; }
    
    .nav-links { display: none; }
    
    .section-padding { padding: 4rem 0; }
    
    .form-row {
        flex-direction: column;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .hud-1 { left: 5%; top: 10%; }
    .hud-2 { right: 5%; bottom: 10%; }
}
