:root {
    --primary: #EF4444;
    --primary-dark: #DC2626;
    --bg: #030712;
    --text: #F9FAFB;
    --text-muted: #9CA3AF;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: 16px;
    --container-max: 1200px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    z-index: 1000;
    backdrop-filter: blur(var(--glass-blur));
    /* Light radial gradient on the left to highlight the black logo text */
    background: radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.4) 15%, transparent 40%), var(--glass);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.container-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--text);
}

.logo-icon {
    color: var(--primary);
    font-size: 1.8rem;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.4);
}

.btn-xl {
    padding: 1.2rem 2.8rem;
    font-size: 1.1rem;
}

.btn-outline {
    border: 1px solid var(--glass-border);
    color: var(--text);
    background: var(--glass);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-white {
    background: white;
    color: var(--bg);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--bg) 40%, transparent 80%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.text-gradient {
    background: linear-gradient(90deg, #F97316, #EF4444);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

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

/* Sections */
.section {
    padding: 2rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 1rem;
}

.bento-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: var(--transition);
}


.bento-item:nth-child(2) {
    grid-column: span 2;
}

.bento-item:nth-child(4) {
    grid-column: span 2;
}

.bento-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}

.bento-accent {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), transparent);
    border-color: rgba(239, 68, 68, 0.2);
}

.bento-icon {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.bento-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.bento-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Product Cards */
.product-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.product-card.reverse {
    flex-direction: row-reverse;
}

.product-image {
    flex: 1;
    border-radius: 32px;
    overflow: hidden;
    background: var(--glass);
    border: 1px solid var(--glass-border);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-info {
    flex: 1;
}

.product-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-info p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.feature-list i {
    color: var(--primary);
    width: 20px;
}

/* CTA */
.cta {
    padding: 2rem 0;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    padding: 2rem 0 1rem;
    border-top: 1px solid var(--glass-border);
    /* Light radial gradient to highlight the black logo text */
    background: radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.4) 15%, transparent 40%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    margin-top: 1rem;
    color: #000000;
    max-width: 300px;
}

.footer-links h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links a {
    display: block;
    text-decoration: none;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

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

.reveal-delay-1 {
    transition-delay: 0.2s;
}

.reveal-delay-2 {
    transition-delay: 0.4s;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

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

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

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

    .btn-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        flex-direction: column;
        padding-top: 90px;
    }

    .hero-bg {
        width: 100%;
        top: auto;
        bottom: 0;
        height: 50%;
    }

    .hero-overlay {
        background: linear-gradient(0deg, var(--bg) 20%, transparent 100%);
    }

    .product-card,
    .product-card.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
}

.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links li {
    margin-bottom: 2rem;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
}

.mobile-nav-links a:hover {
    color: var(--primary);
}

/* Innovation Animation */
.innovation {
    background: radial-gradient(circle at center, rgba(239, 68, 68, 0.05) 0%, transparent 70%);
}

.transition-showcase {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.transition-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 450px;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--bg);
    cursor: crosshair;
}

.real-image,
.digital-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.digital-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(3, 7, 18, 0.6);
    /* The magic clip-path that we will animate */
    clip-path: inset(0 0 0 0);
    transition: clip-path 0.1s linear;
}

.digital-image {
    filter: grayscale(1) invert(1) brightness(1.5) opacity(0.3) sepia(1) hue-rotate(180deg) saturate(5);
    mix-blend-mode: color-dodge;
}

.wireframe-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-image:
        linear-gradient(rgba(34, 211, 238, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

.blueprint-tech-data {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #22d3ee;
    font-family: monospace;
    font-size: 0.7rem;
    text-align: right;
    z-index: 3;
    opacity: 0.8;
}

.scanner-beam {
    position: absolute;
    top: 0;
    left: 100%;
    /* Will be animated */
    width: 3px;
    height: 100%;
    background: #22d3ee;
    box-shadow: 0 0 20px 2px #22d3ee;
    z-index: 4;
    transition: left 0.1s linear;
    pointer-events: none;
}

.hover-tip {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 10;
    pointer-events: none;
    transition: var(--transition);
    opacity: 1;
}

.transition-container:hover .hover-tip {
    opacity: 0;
    transform: translate(-50%, -60%);
}

@media (max-width: 768px) {
    .transition-container {
        height: 300px;
    }
}

/* How It Works */
.how-it-works {
    background: linear-gradient(180deg, var(--bg) 0%, rgba(255, 255, 255, 0.02) 50%, var(--bg) 100%);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 2rem;
}

.step-card {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(239, 68, 68, 0.3);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.step-icon i {
    width: 48px;
    height: 48px;
}

.step-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.step-connector {
    flex: 0 0 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--glass-border);
}

/* Demo Section (Mini Editor) */
.demo-section {
    padding-bottom: 0;
}

.demo-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem !important;
}

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

.mini-editor {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    text-align: left;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid var(--glass-border);
}

.editor-preview {
    flex: 1;
    background: var(--glass);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.editor-preview img {
    max-width: 100%;
    max-height: 300px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
    transition: filter 0.3s ease;
}

.editor-overlay-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Simulate logo placement */
}

.demo-logo-icon {
    font-size: 3rem;
    color: var(--text);
    /* Default logo color */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s;
}

.editor-controls {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.editor-controls h4 {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.color-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.color-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
}

.color-btn:hover {
    transform: scale(1.1);
}

.color-btn.active {
    border-color: var(--primary) !important;
    transform: scale(1.1);
}

.toggle-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Switch UI */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--primary);
}

input:checked+.slider:before {
    transform: translateX(22px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.editor-cta {
    margin-top: auto;
}

@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
    }

    .step-connector {
        width: 2px;
        height: 50px;
        background: linear-gradient(180deg, transparent, var(--glass-border), transparent);
        margin: 0 auto;
    }

    .step-connector::after {
        top: auto;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .mini-editor {
        flex-direction: column;
        padding: 1.5rem;
    }

    .editor-controls {
        flex: auto;
    }

    .demo-card {
        padding: 2rem !important;
    }
}

/* Deep Interactivity Styles */

/* 1. Product Tabs */
.product-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
}

.tab-btn:hover {
    color: var(--text);
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* 2. Drag & Drop */
.draggable {
    cursor: grab;
    user-select: none;
    touch-action: none;
}

.draggable:active {
    cursor: grabbing;
}

#preview-container {
    perspective: 1000px;
    /* For 3D Tilt */
    transform-style: preserve-3d;
}

.tilt-element {
    transition: transform 0.1s ease-out;
    /* Smooth tilt return */
}

/* 3. Slider Control */
.control-group {
    margin-bottom: 2rem;
}

.slider-range {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    outline: none;
}

.slider-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    transition: transform 0.2s;
}

.slider-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* Magnetic Button */
.magnetic-btn {
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.2s;
    display: inline-block;
}

/* --- Visual Enhancements --- */

/* 1. Infinite Marquee */
.marquee-container {
    background: var(--primary);
    color: white;
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
    z-index: 20;
    transform: rotate(-1deg) translateY(-20px);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    font-weight: 800;
    font-size: 1.2rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 2px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 2. Masonry Portfolio */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
}

.masonry-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    cursor: zoom-in;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.masonry-item:hover img {
    transform: scale(1.1);
}

.masonry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.masonry-item:hover .masonry-overlay {
    transform: translateY(0);
}

.masonry-overlay span {
    color: white;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

/* Grid Spans */
.item-large {
    grid-column: span 2;
}

.item-tall {
    grid-row: span 2;
}

@media (max-width: 768px) {
    .masonry-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .item-large,
    .item-tall {
        grid-column: auto;
        grid-row: auto;
        height: 300px;
    }
}


/* 3. Ambient Aura Orbs */
.aura-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -20%;
    left: -10%;
    animation: float-1 20s infinite alternate ease-in-out;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
    animation: float-2 25s infinite alternate ease-in-out;
}

@keyframes float-1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.1);
    }
}

@keyframes float-2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-100px, -50px) scale(1.2);
    }
}

/* Logo Updates */
/* Logo Updates */
.logo-img {
    height: 63px;
    /* Significantly bigger */
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo {
    /* Removed background/padding as requested */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

/* Demo Logo - Keep transparent/no background as it's an overlay */
.demo-logo-img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Footer Adjustments */
.footer .logo-img {
    height: 40px;
    /* Bigger for footer */
    margin-bottom: 0;
}

.footer-brand .logo {
    margin-bottom: 1rem;
    display: inline-flex;
}