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

html {
    background-color: #050a05;
}

body {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    font-family: 'Barlow Condensed', sans-serif;
    background-color: #050a05;
    color: #e0e0e0;
    overflow-x: hidden;
}

img {
    position: relative;
    width: 500px;
    height: auto;
    object-fit: cover;
    will-change: transform;
    transform: translateX(0) scale(1);
}

section {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 1.5em;
    overflow: hidden;
}

section.sticky-cards {
    overflow: visible;
}

/* Hero Section */
section.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #0a1f0a 0%, #050a05 100%);
    perspective: 1000px;
    overflow: hidden;
}

.hero-content {
    z-index: 10;
    text-align: center;
    pointer-events: none;
}

.hero h1 {
    font-size: 8vw;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.8;
    color: #00ff41;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
    margin-bottom: 0.2em;
}

.hero p {
    font-size: 1.5vw;
    color: #88aa88;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 0 #0d2e0d, -2px 0 #0d2e0d, 0 2px #0d2e0d, 0 -2px #0d2e0d;

}

.map-container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
    opacity: 0.8;
}

.map-svg {
    width: 65vh;
    height: 65vh;
    filter: drop-shadow(0 0 30px rgba(0, 255, 65, 0.2));
    animation: glowPulse 4s infinite alternate ease-in-out;
}

@keyframes glowPulse {
    from {
        filter: drop-shadow(0 0 20px rgba(0, 255, 65, 0.1));
    }

    to {
        filter: drop-shadow(0 0 40px rgba(0, 255, 65, 0.3));
    }
}

.grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(#1a4d1a 1px, transparent 1px), linear-gradient(90deg, #1a4d1a 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
    pointer-events: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
}

.scroll-indicator p {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00ff41;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid #00ff41;
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #00ff41;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

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

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

section.sticky {
    background-color: #050a05;
}

section.sticky .slider,
section.sticky .slides {
    height: 100%;
    width: 100%;
}

#sonar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

/* Horizontal Scroll Section Styles */
.horizontal-scroll-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #050a05;
    overflow: hidden;
}

.horizontal-scroll-section .slider {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.horizontal-scroll-section .slides {
    position: relative;
    height: 100%;
    width: 400%;
    display: flex;
    will-change: transform;
}

.horizontal-scroll-section .slide {
    position: relative;
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem;
    border-right: 1px solid rgba(0, 255, 65, 0.1);
    background: radial-gradient(circle at center, #0a1f0a 0%, #050a05 100%);
}

.horizontal-scroll-section .slide.monitorizacion-slide {
    background: linear-gradient(rgba(5, 10, 5, 0.75), rgba(5, 10, 5, 0.95)), url('recursos/hero-map.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.horizontal-scroll-section .slide.phase1-slide {
    background: linear-gradient(rgba(5, 10, 5, 0.75), rgba(5, 10, 5, 0.95)), url('recursos/verderadar.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.horizontal-scroll-section .slide.phase2-slide {
    background: linear-gradient(rgba(5, 10, 5, 0.75), rgba(5, 10, 5, 0.95)), url('recursos/dashboard.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.horizontal-scroll-section .slide.phase3-slide {
    background: linear-gradient(rgba(5, 10, 5, 0.75), rgba(5, 10, 5, 0.95)), url('recursos/phase3.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



.horizontal-scroll-section .slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.horizontal-scroll-section .title {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.horizontal-scroll-section .title h1 {
    color: #00ff41;
    text-transform: uppercase;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 0.85;
    margin: 0;
    will-change: transform;
}

.horizontal-scroll-section .section-tag {
    margin-bottom: 0.5rem;
    color: #00ff41;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 4px;
    font-weight: 700;
}

.horizontal-scroll-section .slide-desc {
    color: #88aa88;
    font-size: 1.4rem;
    max-width: 800px;
    margin: 2rem auto 0;
    line-height: 1.6;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.5px;
}

.horizontal-scroll-section .slide-content img {
    max-width: 100%;
    max-height: 35vh;
    width: auto;
    height: auto;
    display: inline-block;
    transform: none;
    border: 2px solid #00ff41;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
    margin-top: 2.5rem;
}

/* Original Slide styles (might be used elsewhere) */
.slide {
    position: relative;
    width: 100%;
    flex-shrink: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.title {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 2rem;
}

.title h1 {
    color: #00ff41;
    text-shadow: 0 0 25px rgba(0, 255, 65, 0.5);
    text-transform: uppercase;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 0.9;
    margin: 0;
}

.title p {
    color: #fff;
    text-shadow: 0 0 25px rgba(0, 255, 65, 0.5);
    text-transform: uppercase;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 0.9;
    margin: 0.2em 0 0;
}

.title .description {
    color: #88aa88;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.5px;
    max-width: 500px;
    margin: 1.5em auto 0;
    line-height: 1.6;

    text-shadow: 2px 0 #082208, -2px 0 #082208, 0 2px #082208, 0 -2px #082208;


}

.btn-container {
    position: relative;
    z-index: 2;
}

.primary-btn {
    padding: 1rem 2.5rem;
    background: #0d2e0d;
    border: 2px solid #00ff41;
    color: #00ff41;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.1);
}

.primary-btn:hover {
    background: #00ff41;
    color: #050a05;
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.6);
    transform: scale(1.05);
}

/* Contact Section & Form - Minimalist */
.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #050a05;
    padding: 2rem 1rem;
    position: relative;
}

.contact-glass {
    background: rgba(5, 10, 5, 0.8);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 4px;
    padding: 2.5rem;
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-glass .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
    color: #fff;
    text-transform: uppercase;
}

.contact-glass .highlight {
    color: #00ff41;
}

.section-desc {
    color: #88aa88;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.lead-form {
    text-align: left;
}

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
    color: #88aa88;
}

.form-group input {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 2px;
    padding: 0.8rem;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #00ff41;
    background: rgba(0, 255, 65, 0.05);
}

.btn-primary-form {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid #00ff41;
    color: #00ff41;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.btn-primary-form:hover {
    background: #00ff41;
    color: #050a05;
    transform: none;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

.form-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    min-height: 1.2rem;
}

@media (max-width: 500px) {
    .contact-glass {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .contact-glass .section-title {
        font-size: 1.8rem;
    }
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: clip;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

/* Navigation Menu Styles */
:root {
    --nav-bg: #050a05;
    --nav-accent: #00ff41;
    --nav-text: #e0e0e0;
    --nav-border: rgba(0, 255, 65, 0.1);
    --nav-sidebar-bg: #0a1f0a;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5em;
    z-index: 100;
    pointer-events: none;
}

.menu-toggle,
.brand-logo {
    pointer-events: auto;
}

.menu-toggle {
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--nav-accent);
}

.brand-logo {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--nav-text);
}

.brand-logo a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.brand-logo a:hover {
    color: #00ff41;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.menu-container {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 200;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
}


.menu {
    width: 100%;
    max-width: 1400px;
    height: 85vh;
    background-color: var(--nav-bg);
    color: var(--nav-text);
    border: 1px solid var(--nav-border);
    border-radius: 40px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.menu-main {
    flex: 5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-sidebar {
    flex: 0.15;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 1px solid var(--nav-border);
    background: var(--nav-sidebar-bg);
}

.menu-top {
    display: flex;
    flex: 1;
    border-bottom: 1px solid var(--nav-border);
}

.menu-bottom {
    display: flex;
    flex-direction: row;
}

.menu-top-title {
    flex: 1;
    padding: 3em;
    border-right: 1px solid var(--nav-border);
}

.menu-top-title p {
    opacity: 0.4;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.2em;
}

.menu-top-content {
    padding: 2em 0;
    flex: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-item {
    position: relative;
    padding: 0.5em 3em;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.menu-item-link {
    position: relative;
    z-index: 2;
}

.menu-item-link a {
    text-decoration: none;
    color: var(--nav-text);
    font-size: clamp(40px, 6vw, 90px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -0.02em;
    transition: color 0.4s ease;
    display: block;
}

.bg-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--nav-accent);
    z-index: -1;
    transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-item:hover .bg-hover,
.menu-item#active .bg-hover {
    width: 100%;
}

.menu-item:hover a,
.menu-item#active a {
    color: var(--nav-bg);
}

.menu-item .index {
    margin-left: 2em;
    opacity: 0.3;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.4s ease;
}

.menu-item:hover .index,
.menu-item#active .index {
    opacity: 1;
    color: var(--nav-bg);
    transform: translateX(10px);
}

.menu-sub-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    border-top: 1px solid var(--nav-border);
    border-right: 1px solid var(--nav-border);
    padding: 2em 3em;
}

.menu-sub-item:last-child {
    border-right: none;
}

.menu-title p {
    opacity: 0.4;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.1em;
}

.menu-content p a {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    width: max-content;
    color: var(--nav-text);
}

.menu-content p a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--nav-accent);
    transition: width 0.4s ease;
}

.menu-content p a:hover::after {
    width: 100%;
}

.close-btn,
.logo {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    cursor: pointer;
    color: var(--nav-accent);
}

.close-btn {
    border-bottom: 1px solid var(--nav-border);
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: var(--nav-accent);
    color: var(--nav-bg);
}

@media(max-width: 900px) {
    .menu {
        flex-direction: column;
        height: 95vh;
        border-radius: 20px;
    }

    .menu-main {
        flex: 1;
    }

    .menu-sidebar {
        flex-direction: row;
        flex: 0 0 80px;
        border-left: none;
        border-top: 1px solid var(--nav-border);
    }

    .menu-top-title {
        display: none;
    }

    .menu-bottom {
        flex-direction: column;
    }

    .menu-sub-item {
        padding: 1.5em 2em;
        border-right: none;
    }

    .menu-item {
        padding: 0.5em 2em;
    }

    .menu-item-link a {
        font-size: 40px;
    }
}

/* Page Transition Overlay */
.transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #00ff41;
    pointer-events: none;
    z-index: 9999;
    transform: scaleY(1);
    transform-origin: bottom;
}

/* --- ABOUT PAGE SECTIONS --- */

.section-tag {
    color: #00ff41;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.hero-desc {
    max-width: 600px;
    margin: 2rem auto;
    font-size: 1.2rem;
    color: #88aa88;
    line-height: 1.6;
}

/* Sticky Cards Section */
.sticky-cards {
    position: relative;
    width: 100%;
    height: 100vh;

    overflow: hidden;
    isolation: isolate;

    perspective: 1000px;

    background:
        linear-gradient(rgba(5, 10, 5, 0.75),
            rgba(5, 10, 5, 0.95)),
        url('recursos/bg.gif');

    z-index: 1;
}

.cards-intro {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #050a05;
    position: relative;
    overflow: visible;
}

.sticky-cards .card {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 70%;
    height: 60%;

    transform-origin: center bottom;
    will-change: transform;

    display: flex;
    gap: 2rem;

    padding: 4rem;

    border-radius: 10px;
    border: 1px solid rgba(0, 255, 65, 0.2);

    color: #fff;

    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.sticky-cards::before,
.sticky-cards::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 20;
    pointer-events: none;
}

.sticky-cards::before {
    top: 0;
    background: linear-gradient(to bottom,
            #050a05 0%,
            transparent 100%);
}

.sticky-cards::after {
    bottom: 0;
    background: linear-gradient(to top,
            #050a05 0%,
            transparent 100%);
}

.feature-cards {
    height: auto;
    position: relative;
    width: 100%;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    background: linear-gradient(rgba(5, 10, 5, 0.9), rgba(5, 10, 5, 0.98)), url('recursos/bg.gif');
    background-color: #050a05;
    box-sizing: border-box;
}

.feature-card {
    position: relative;
    width: 100%;

    /* CAMBIO CLAVE: Eliminamos el grid. Ahora es un bloque fluido */
    display: block;
    height: auto;
    /* El recuadro se adapta automáticamente a la altura del texto */

    padding: 2.5rem;
    /* Espacio interno alrededor del texto */
    border-radius: 24px;
    background: rgba(10, 25, 10, 0.85);
    border: 1px solid rgba(0, 255, 65, 0.2);
    box-sizing: border-box;
}

/* El efecto blur se mantiene de fondo sin molestar al texto */
@supports (backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px)) {
    .feature-card {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 255, 65, 0.4);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.1);
}

/* Al ser bloques independientes, se apilan verticalmente sin pisarse */
.feature-left {
    margin-bottom: 2rem;
    /* Separación respecto al bloque de texto de abajo */
}

.feature-left p {
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    color: #88aa88;
}

.feature-left h2 {
    margin: 0;
    font-size: 2.2rem;
    /* Tamaño controlado para que nunca se desborde */
    line-height: 1.2;
    color: #00ff41;
}

.feature-right p {
    margin: 0 0 1.5rem 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #d8e6d8;
}

.feature-right ul {
    margin: 0;
    padding-left: 1.2rem;
}

.feature-right li {
    margin-bottom: 0.75rem;
    color: #b7cbb7;
    line-height: 1.5;
}

/* Reducido para que actúe como un separador sutil arriba del texto derecho */
.card-pattern {
    width: 100%;
    height: 40px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    background-image: radial-gradient(#00ff41 1px, transparent 1px);
    background-size: 14px 14px;
    opacity: 0.1;
}


/* Glow */

.feature-card::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(circle at top right,
            rgba(0, 255, 65, 0.12),
            transparent 40%);

    pointer-events: none;
}

/* Mobile */

@media (max-width: 900px) {

    .feature-cards {
        padding: 5rem 1.5rem;
    }

    .feature-card {
        grid-template-columns: 1fr;

        gap: 2rem;

        padding: 2rem;
    }

    .feature-left h2 {
        font-size: 2.5rem;
    }
}

.card .col {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card .col h1 {
    font-size: 4rem;
    line-height: 1;
    margin-top: 1rem;
    color: #00ff41;
}

.card .col p {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #88aa88;
}

.card-pattern {
    width: 100%;
    height: 150px;
    background-image: radial-gradient(#00ff41 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.2;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.card-info p {
    text-transform: none !important;
    font-size: 1.1rem !important;
    line-height: 1.6;
    color: #e0e0e0 !important;
    letter-spacing: 0 !important;
}

.card#card-1 {
    background-color: #051005;
    z-index: 5;
}

.card#card-2 {
    background-color: #081a08;
    z-index: 4;
}

.card#card-3 {
    background-color: #0a240a;
    z-index: 3;
}

.card#card-4 {
    background-color: #0d2e0d;
    z-index: 2;
}

/* Prototype Section replaced by horizontal-scroll-section */

.prototype-section {
    background: linear-gradient(rgba(5, 10, 5, 0.75), rgba(5, 10, 5, 0.95)), url('recursos/bg.gif');
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10vh 5vw;
    min-height: 100vh;
}

.section-container {
    max-width: 1200px;
    width: 100%;
    z-index: 2;
}

.prototype-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem auto;
    padding: 3rem;
    border: 1px solid #00ff41;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.4), inset 0 0 10px rgba(0, 255, 65, 0.1);
    background: #081a08;
    max-width: 450px;
    width: 120%;
    aspect-ratio: 1 / 0.5;
}

.prototype-container2 {
    display: flex;
    justify-content: center;
    align-items: center;

    margin: 1rem auto;
    padding: 1rem;

    border: 1px solid #00ff41;
    border-radius: 10px;

    box-shadow:
        0 0 15px rgba(0, 255, 65, 0.35),
        inset 0 0 6px rgba(0, 255, 65, 0.1);

    background: #081a08;

    width: min(70vw, 510px);
    height: 570px;

    overflow: hidden;
}

.prototype-container2 img {
    position: relative;

    width: 500px;
    height: auto;

    object-fit: cover;

    will-change: transform;
    transform: translateX(0) scale(1);
}

/* Responsive */
@media (max-width: 768px) {
    .prototype-container2 {
        width: 95vw;
        height: 570px;
    }
}

.prototype-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.prototype-item .glow-img {
    max-width: 100%;
    height: auto;
    width: auto;
    display: block;
    transform: none;
    border: 2px solid #00ff41;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
    margin-bottom: 1.5rem;
}

.prototype-legend {
    color: #88aa88;
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: 80%;
    margin: 0 auto;
}

@media(max-width: 1000px) {
    .sticky-cards .card {
        width: calc(100% - 4rem);
        height: 80%;
        flex-direction: column;
        padding: 2rem;
    }

    .card .col h1 {
        font-size: 2.5rem;
    }

    .prototype-container {
        padding: 2rem;
        max-width: 60vw;
    }
}

/* Footer Section */
.footer-section {
    padding: 0.5rem 1rem;
    background: #030803;
    border-top: 1px solid rgba(0, 255, 65, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 10;
    height: 10vh;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 0.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.footer-links p {
    margin: 0;
}

.footer-links p a {
    color: #88aa88;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.footer-links p a:hover {
    color: #00ff41;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.footer-title {
    color: #88aa88;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.footer-logos {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
    transform: none;
    border: 1px solid #00ff41;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.4);
    padding: 3px;
    background: rgba(10, 31, 10, 0.5);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    section {
        padding: 1rem;
    }

    .horizontal-scroll-section .slide {
        padding: 2rem;
    }

    .hero h1 {
        font-size: 16vw;
    }

    .hero p {
        font-size: 5vw;
        letter-spacing: 1px;

    }

    .title h1,
    .horizontal-scroll-section .title h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .title p {
        font-size: clamp(1.2rem, 6vw, 2rem);
    }

    .title .description,
    .horizontal-scroll-section .slide-desc {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-top: 1rem;
    }

    .primary-btn {
        font-size: 1.1rem;
        padding: 0.8rem 1.8rem;
    }

    .footer-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}