:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-secondary: #a0aab2;
    --accent-blue: #00e5ff;
    --accent-dark-blue: #0044ff;
    --card-bg: rgba(20, 25, 30, 0.6);
    --border-color: rgba(255, 255, 255, 0.05);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: #000 !important;
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    touch-action: pan-x pan-y; /* Permite scroll vertical y horizontal pero bloquea el gesto de pellizco (pinch-to-zoom) */
}

#electric-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
}

/* Force all content to be above the background/animation layers */
section, footer, nav {
    position: relative;
    z-index: 50; /* Base z-index for all content */
}

.scroll-container {
    position: relative;
    z-index: 1; /* Lowest z-index for the hero container */
}

.sticky-wrapper {
    z-index: 1;
}

/* Urgency Bar Ticker */
.urgency-bar {
    position: fixed;
    top: 5px;
    left: 0;
    width: 100%;
    height: 25px;
    background: transparent;
    z-index: 1100;
    display: flex;
    align-items: center;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.6s ease;
}

.urgency-bar.show {
    opacity: 1;
    transform: translateY(0);
}

.ticker-wrapper {
    display: flex;
    white-space: nowrap;
    width: 100%;
}

.ticker-item {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 25s linear infinite;
    color: var(--accent-blue);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Navbar Adjustment */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.4);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.6s ease;
    pointer-events: none;
}

.navbar.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    margin-left: 10px;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.btn-contact-nav {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border: 1px solid var(--accent-blue);
    border-radius: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-contact-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.6s ease;
}

.btn-contact-nav:hover {
    background-color: var(--accent-blue);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
    animation: pulse-hover 1.5s infinite;
}

.btn-contact-nav:hover::before {
    left: 200%;
}

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

/* Hamburger Menu */
.hamburger-menu {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    z-index: 1001; /* Above navbar */
}

.hamburger-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--accent-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 229, 255, 0.5);
}

.hamburger-menu:hover span {
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.8);
    background-color: #fff;
}

/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(10, 12, 16, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1005;
    padding: 80px 40px;
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-left: 1px solid var(--border-color);
    box-shadow: -10px 0 30px rgba(0,0,0,0.8);
}

.side-menu.open {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 30px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-menu:hover {
    color: var(--accent-blue);
}

.side-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.side-menu-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.side-menu-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: width 0.3s ease;
}

.side-menu-links a:hover {
    color: var(--accent-blue);
}

.side-menu-links a:hover::after {
    width: 100%;
}

/* About Modal */
.about-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.about-modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.about-modal-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    border-radius: 20px;
    padding: 50px;
    position: relative;
    overflow-y: auto;
    transform: translateY(30px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 229, 255, 0.1) inset;
}

.about-modal-overlay.show .about-modal-container {
    transform: translateY(0) scale(1);
}

/* Custom scrollbar for modal */
.about-modal-container::-webkit-scrollbar {
    width: 8px;
}
.about-modal-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}
.about-modal-container::-webkit-scrollbar-thumb {
    background: var(--accent-blue);
    border-radius: 10px;
}

.close-about {
    position: absolute;
    top: 20px;
    right: 25px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-about:hover {
    color: var(--accent-blue);
    transform: rotate(90deg);
}

.about-content-inner {
    color: var(--text-primary);
    line-height: 1.8;
}

.about-content-inner h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about-content-inner h2 {
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin: 40px 0 20px;
    font-weight: 600;
}

.about-content-inner h3 {
    font-size: 1.3rem;
    color: #fff;
    margin: 25px 0 10px;
    font-weight: 500;
}

.about-content-inner p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-content-inner strong {
    color: var(--accent-blue);
    font-weight: 600;
}

.about-content-inner hr {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
    margin: 40px 0;
}

.compromise-list {
    list-style: none;
    padding: 0;
}

.compromise-list li {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

/* Typing cursor effect */
.typing-cursor::after {
    content: '|';
    animation: blink 1s step-end infinite;
    color: var(--accent-blue);
    margin-left: 2px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@media (max-width: 768px) {
    .navbar {
        top: 35px; /* Mueve la barra de navegación y el logo más hacia abajo para separarlo de la barra móvil (urgency bar) */
        padding: 15px 20px; /* Ajusta el logo más hacia la izquierda en pantallas móviles */
    }
    .btn-contact-nav {
        display: none;
    }
    .about-modal-container {
        padding: 30px 20px;
        max-height: 90vh;
    }
    .about-content-inner h1 {
        font-size: 2rem;
    }
}

/* Scroll Container & Canvas */
.scroll-container {
    height: 400vh; /* This determines how long the scroll is */
    position: relative;
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* Altura dinámica para evitar recortes con las barras del navegador móvil */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), border-radius 0.6s ease;
}

canvas#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
    pointer-events: none;
    will-change: contents;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

@media (max-width: 768px) {
    canvas#hero-canvas {
        image-rendering: auto;
    }
}


/* Overlay Content (Text and Buttons) */
.overlay-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    pointer-events: none; /* Let canvas handle events if needed */
}

/* Initial state for children to animate */
.overlay-content > * {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    filter: blur(8px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

/* Active state when .show is added via JS */
.overlay-content.show > * {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    pointer-events: auto;
}

/* Staggered delay for child elements */
.overlay-content.show .hero-title { transition-delay: 0.1s; }
.overlay-content.show .hero-subtitle { transition-delay: 0.3s; }
.overlay-content.show .btn-primary { transition-delay: 0.5s; }

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.gradient-text {
    background: linear-gradient(45deg, var(--accent-blue), var(--text-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.cta-phrase {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--accent-blue);
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 0.8; transform: scale(1); }
}

@keyframes pulse-hover {
    0% { transform: scale(1.05); box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.7); }
    50% { transform: scale(1.1); box-shadow: 0 0 0 15px rgba(0, 229, 255, 0); }
    100% { transform: scale(1.05); box-shadow: 0 0 0 0 rgba(0, 229, 255, 0); }
}

.btn-primary {
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(90deg, var(--accent-dark-blue), var(--accent-blue), var(--accent-dark-blue));
    background-size: 200% auto;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 68, 255, 0.3);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.6s ease;
}

.btn-primary:hover {
    background-position: right center;
    color: #fff;
    animation: pulse-hover 1.5s infinite;
}

.btn-primary:hover::before {
    left: 200%;
}

/* Expertise Section */
.expertise-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 5%;
    margin-top: -30vh; /* Sube la sección para eliminar el gran espacio vacío debajo del Hero */
    background-color: transparent;
    position: relative;
    z-index: 10;
    gap: 40px;
}

.expertise-content {
    flex: 1;
    max-width: 60%;
}

.expertise-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.1;
    color: var(--text-primary);
}

.expertise-cards {
    display: flex;
    gap: 20px;
}

.expertise-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    flex: 1;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 5px 20px rgba(0, 229, 255, 0.1);
}

.expertise-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.expertise-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
}

.expertise-image-wrapper {
    flex: 1;
    max-width: 40%;
    display: flex;
    justify-content: flex-end;
}

.expertise-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
    .expertise-section {
        flex-direction: column;
        padding: 60px 5%;
        margin-top: -25vh; /* Ajuste perfecto hacia arriba en pantallas móviles y tablets */
    }
    
    .expertise-content {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .expertise-cards {
        flex-direction: column;
    }
    
    .expertise-image-wrapper {
        max-width: 100%;
        justify-content: center;
    }
}

/* Services Section */
.services-section {
    padding: 80px 5%;
    background-color: transparent;
    position: relative;
    z-index: 10;
}

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

.service-card {
    background: #0f172a;
    border: 1px solid #1e3a8a;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.2);
}

.service-img-placeholder {
    width: 100%;
    height: 250px;
    background-color: #1e293b;
    position: relative;
}

/* This targets actual images when added inside the placeholder */
.service-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.service-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-title {
    font-size: 1.6rem;
    color: #3b82f6;
    margin-bottom: 25px;
    font-weight: 700;
}

.btn-service {
    display: inline-block;
    padding: 12px 25px;
    background-color: #0055ff;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    align-self: flex-start;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.btn-service:hover {
    background-color: #2563eb;
}

/* Features Section */
.features {
    padding: 100px 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    background-color: transparent;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 71, 171, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--accent-blue);
    color: var(--bg-color);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
    transform: scale(1.1);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}
    
    /* Contact Section */
    .contact-section {
        padding: 80px 5% 120px;
        background-color: transparent;
        position: relative;
        z-index: 10;
    }
    
    .contact-container {
        display: flex;
        gap: 40px;
        background: var(--card-bg);
        border: 1px solid var(--border-color);
        border-radius: 20px;
        padding: 40px;
        backdrop-filter: blur(10px);
    }
    
    .contact-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .contact-info h3 {
        font-size: 2rem;
        margin-bottom: 20px;
        color: var(--text-primary);
    }
    
    .contact-info p {
        color: var(--text-secondary);
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .address-text {
        font-size: 1.2rem;
    }
    
    .btn-maps {
        margin-top: 20px;
        align-self: flex-start;
        text-decoration: none;
        text-align: center;
        display: inline-block;
    }
    
    .contact-map {
        flex: 1;
        min-height: 300px;
        border-radius: 15px;
        overflow: hidden;
    }
    
    .map-placeholder {
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.02);
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px dashed var(--accent-blue);
        border-radius: 15px;
        color: var(--text-secondary);
    }
    
    /* Quote Form Section */
    .quote-section {
        padding: 40px 5% 100px;
        background-color: transparent;
        position: relative;
        z-index: 10;
        display: flex;
        justify-content: center;
    }
    
    .quote-container {
        width: 100%;
        max-width: 800px;
        background: var(--card-bg);
        border: 1px solid var(--border-color);
        border-radius: 20px;
        padding: 50px;
        backdrop-filter: blur(10px);
    }
    
    .quote-title {
        font-size: 2.5rem;
        color: var(--text-primary);
        text-align: center;
        margin-bottom: 15px;
        font-weight: 800;
    }
    
    .quote-subtitle {
        text-align: center;
        color: var(--text-secondary);
        margin-bottom: 40px;
        font-size: 1.1rem;
    }
    
    .quote-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .form-row {
        display: flex;
        gap: 20px;
    }
    
    .form-row .form-group {
        flex: 1;
    }
    
    .form-group {
        display: flex;
        flex-direction: column;
    }
    
    .form-group label {
        color: var(--text-primary);
        margin-bottom: 8px;
        font-size: 1rem;
        font-weight: 600;
    }
    
    .opcional {
        color: var(--text-secondary);
        font-size: 0.85rem;
        font-weight: 400;
        margin-left: 5px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        background-color: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        padding: 15px;
        color: var(--text-primary);
        font-family: 'Outfit', sans-serif;
        font-size: 1rem;
        transition: all 0.3s ease;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #0047AB;
        background-color: rgba(0, 71, 171, 0.05);
        box-shadow: 0 0 15px rgba(0, 71, 171, 0.3);
    }
    
    .form-group select option {
        background-color: #111;
        color: #fff;
    }
    
    .form-actions {
        display: flex;
        gap: 20px;
        margin-top: 20px;
        justify-content: flex-end;
    }
    
    .btn-secondary {
        padding: 15px 30px;
        background-color: transparent;
        border: 2px solid #0047AB;
        color: #fff;
        border-radius: 30px;
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .btn-secondary:hover {
        background-color: rgba(0, 71, 171, 0.1);
        box-shadow: 0 0 15px rgba(0, 71, 171, 0.3);
    }
    
    .btn-cobalt {
        padding: 15px 30px;
        background-color: #0047AB;
        border: none;
        color: #fff;
        border-radius: 30px;
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 71, 171, 0.4);
    }
    
    .btn-cobalt:hover {
        background-color: #0056D2;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 71, 171, 0.6);
    }
    
    /* Footer */
    .footer {
        background-color: transparent;
        padding: 60px 5% 40px;
        border-top: 1px solid var(--border-color);
        position: relative;
        z-index: 10;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }
    
    .footer-logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .footer-logo-img {
        height: 40px;
        width: auto;
        object-fit: contain;
    }
    
    .footer-logo-text {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--text-primary);
        letter-spacing: 1px;
    }
    
    .footer-contact p {
        color: var(--text-secondary);
        font-size: 1rem;
        line-height: 1.6;
        margin: 5px 0;
    }
    
    .footer-social {
        display: flex;
        gap: 15px;
        margin-top: 10px;
    }
    
    .social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        color: var(--text-primary);
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .social-icon:hover {
        background-color: #0047AB;
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 71, 171, 0.4);
    }
    
    .footer-copy {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
        max-width: 600px;
    }
    
    .footer-copy p {
        color: var(--text-secondary);
        font-size: 0.9rem;
    }

    /* Electric Brands Bar */
    .electric-brands-bar {
        position: relative;
        width: 100%;
        height: 70px;
        background: linear-gradient(90deg, #000, #001a22, #000);
        overflow: hidden;
        display: flex;
        align-items: center;
        border-top: 2px solid rgba(0, 229, 255, 0.5);
        border-bottom: 2px solid rgba(0, 229, 255, 0.5);
        box-shadow: 0 0 20px rgba(0, 229, 255, 0.3), inset 0 0 30px rgba(0, 229, 255, 0.2);
        z-index: 10;
        margin: 40px 0;
    }

    /* Lightning effect container */
    .electric-brands-bar::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.8), transparent);
        filter: blur(5px);
        animation: electric-flash 3s infinite;
        pointer-events: none;
        z-index: 1;
    }

    /* Static noise/electric texture */
    .electric-brands-bar::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(90deg, rgba(0, 229, 255, 0.1) 1px, transparent 1px),
                          linear-gradient(rgba(0, 229, 255, 0.1) 1px, transparent 1px);
        background-size: 20px 20px;
        animation: electric-grid 10s linear infinite;
        pointer-events: none;
        z-index: 0;
    }

    .brands-ticker {
        display: flex;
        width: max-content;
        animation: ticker-scroll 20s linear infinite;
        z-index: 2;
        position: relative;
    }

    .brands-track {
        display: flex;
        align-items: center;
        white-space: nowrap;
    }

    .brands-track span {
        font-size: 1.5rem;
        font-weight: 800;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 4px;
        padding: 0 15px;
        text-shadow: 0 0 10px rgba(0, 229, 255, 0.8), 0 0 20px rgba(0, 229, 255, 0.5), 0 0 30px rgba(0, 229, 255, 0.3);
    }

    .brands-track span.dot {
        color: var(--accent-blue);
        font-size: 2rem;
    }

    @keyframes ticker-scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    @keyframes electric-flash {
        0% { left: -100%; opacity: 0; }
        10% { opacity: 1; }
        20% { left: 200%; opacity: 0; }
        100% { left: 200%; opacity: 0; }
    }

    @keyframes electric-grid {
        0% { background-position: 0 0; }
        100% { background-position: -40px -40px; }
    }

    /* Portfolio Section */
    .portfolio-section {
        padding: 60px 5%;
        background-color: transparent;
        position: relative;
        z-index: 100; /* Ensure it's above the hero */
        display: flex;
        justify-content: center;
        overflow: visible !important; /* Prevent any clipping */
    }

    /* Prevent reveal transform from breaking position: fixed of focused products */
    .portfolio-container.reveal.active,
    body.product-focused .portfolio-container,
    body.product-focused .scattered-gallery,
    body.product-focused .portfolio-section,
    body.product-focused .video-carousel {
        transform: none !important;
        perspective: none !important;
        filter: none !important;
    }
    
    .portfolio-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Remove overflow-x: hidden to prevent clipping of floating items */
        padding-bottom: 20px;
    }

    .video-carousel {
        position: relative;
        width: 100%;
        max-width: 1000px;
        height: 75vh;
        display: flex;
        justify-content: center;
        align-items: center;
        perspective: 1000px;
        margin-top: 20px;
    }

    .carousel-track {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        transform-style: preserve-3d;
    }

    .carousel-item {
        position: absolute;
        left: 50%;
        top: 50%;
        transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
        opacity: 0;
        pointer-events: none;
        /* Let content dictate size */
    }

    .carousel-item.active {
        transform: translate(-50%, -50%) translateX(0) scale(1) rotateY(0deg);
        opacity: 1;
        z-index: 3;
        pointer-events: auto;
    }

    .carousel-item.prev {
        transform: translate(-50%, -50%) translateX(-90%) scale(0.75) rotateY(25deg);
        opacity: 0.4;
        z-index: 2;
        cursor: pointer;
        pointer-events: auto;
    }

    .carousel-item.next {
        transform: translate(-50%, -50%) translateX(90%) scale(0.75) rotateY(-25deg);
        opacity: 0.4;
        z-index: 2;
        cursor: pointer;
        pointer-events: auto;
    }

    .carousel-item.hidden-left {
        transform: translate(-50%, -50%) translateX(-150%) scale(0.6) rotateY(45deg);
        opacity: 0;
    }

    .carousel-item.hidden-right {
        transform: translate(-50%, -50%) translateX(150%) scale(0.6) rotateY(-45deg);
        opacity: 0;
    }

    /* Scattered Gallery Styles */
    .scattered-gallery {
        position: relative;
        width: 100%;
        max-width: 1200px;
        height: 1200px;
        margin: 0px auto;
        /* Removed perspective as it breaks position: fixed of children */
    }

    .scatter-item {
        position: absolute !important;
        transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
        animation: float-anim 5s ease-in-out infinite alternate !important;
        transform-origin: center center;
    }

    /* Random organic positions and rotations for each item */
    .item-1 { top: 10%; left: 5%; transform: rotate(-15deg); animation-delay: 0s !important; }
    .item-2 { top: 5%; left: 40%; transform: rotate(10deg); animation-delay: 0.5s !important; }
    .item-3 { top: 15%; left: 75%; transform: rotate(-8deg); animation-delay: 1.2s !important; }
    .item-4 { top: 40%; left: 15%; transform: rotate(18deg); animation-delay: 0.8s !important; }
    .item-5 { top: 35%; left: 45%; transform: rotate(-12deg); animation-delay: 1.5s !important; }
    .item-6 { top: 45%; left: 70%; transform: rotate(15deg); animation-delay: 0.3s !important; }
    .item-7 { top: 70%; left: 10%; transform: rotate(-20deg); animation-delay: 1.1s !important; }
    .item-8 { top: 75%; left: 42%; transform: rotate(12deg); animation-delay: 0.6s !important; }
    .item-9 { top: 65%; left: 80%; transform: rotate(-15deg); animation-delay: 1.8s !important; }

    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        background: rgba(0, 5, 10, 0.7);
        border: 2px solid var(--accent-blue);
        border-radius: 50%;
        width: 60px;
        height: 60px;
        color: var(--accent-blue);
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        backdrop-filter: blur(5px);
        box-shadow: 0 0 15px rgba(0, 229, 255, 0.4), inset 0 0 10px rgba(0, 229, 255, 0.2);
        transition: all 0.3s ease;
    }

    .carousel-btn:hover {
        background: rgba(0, 229, 255, 0.2);
        box-shadow: 0 0 25px rgba(0, 229, 255, 0.8), inset 0 0 15px rgba(0, 229, 255, 0.5);
        transform: translateY(-50%) scale(1.1);
    }

    .carousel-btn svg {
        width: 30px;
        height: 30px;
        filter: drop-shadow(0 0 5px var(--accent-blue));
    }

    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }

    .electric-video-wrapper {
        position: relative;
        display: inline-block;
        max-width: 100%;
        border-radius: 20px;
        background: #050505;
        padding: 3px; /* Border thickness */
        overflow: hidden;
        box-shadow: 0 0 40px rgba(0, 229, 255, 0.2);
    }
    
    /* Glowing rotating border */
    .electric-video-wrapper::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(transparent, transparent, transparent, var(--accent-blue));
        animation: rotate-electric 3s linear infinite;
        z-index: 0;
    }

    /* Inner background to mask the middle of the conic gradient */
    .electric-video-wrapper::after {
        content: '';
        position: absolute;
        inset: 3px;
        background: var(--bg-color);
        border-radius: 17px;
        z-index: 1;
    }
    
    .portfolio-video {
        position: relative;
        z-index: 2;
        max-height: 75vh;
        max-width: 80vw;
        width: auto;
        height: auto;
        min-width: 250px;
        min-height: 350px;
        border-radius: 17px;
        display: block;
        box-shadow: inset 0 0 20px rgba(0, 229, 255, 0.3); /* Inner glow */
        background-color: rgba(0, 5, 10, 0.8); /* Dark background for broken state */
        color: white;
        text-align: center;
    }

    /* Floating Product Styles */
    .floating-product-wrapper {
        position: relative;
        display: inline-block;
        max-width: 100%;
        cursor: pointer;
        transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
        animation: float-anim 4s ease-in-out infinite;
        z-index: 2;
        backface-visibility: hidden;
        transform-style: preserve-3d;
        will-change: transform, opacity;
    }

    .scattered-gallery.has-focus .scatter-item:not(.focused-product) {
        opacity: 0 !important;
        pointer-events: none;
        transition: opacity 0.8s ease !important;
    }

    .carousel-item.active .floating-product-wrapper { animation-delay: 0s; }
    .carousel-item.next .floating-product-wrapper { animation-delay: 0.5s; }
    .carousel-item.prev .floating-product-wrapper { animation-delay: 1s; }
    .carousel-item.hidden-right .floating-product-wrapper { animation-delay: 1.5s; }
    .carousel-item.hidden-left .floating-product-wrapper { animation-delay: 2s; }

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

    .floating-product-img {
        max-height: 300px;
        max-width: 300px;
        object-fit: contain;
        display: block;
        filter: drop-shadow(0 15px 35px rgba(0, 229, 255, 0.3));
        transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.3s ease;
    }

    .floating-product-wrapper:hover .floating-product-img {
        transform: scale(1.1) rotate(0deg);
        filter: drop-shadow(0 20px 50px rgba(0, 229, 255, 0.6));
    }

    /* Focused Product State */
    .floating-product-wrapper.focused-product {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) scale(1.4) rotate(0deg) !important;
        z-index: 5000;
        animation: none !important;
        transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
        cursor: default;
    }

    .floating-product-wrapper.focused-product .floating-product-img {
        max-height: 80vh;
        max-width: 80vw;
        filter: drop-shadow(0 0 50px rgba(0, 229, 255, 0.5));
    }

    .product-focus-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: transparent;
        z-index: 4500;
        opacity: 0;
        pointer-events: none;
        transition: opacity 1.2s ease;
    }

    .product-focus-overlay.show {
        opacity: 1;
        pointer-events: auto;
    }

    .back-btn-overlay {
        position: fixed;
        top: 25px;
        left: 25px;
        z-index: 6000;
        background: rgba(0, 10, 20, 0.9);
        border: 2px solid var(--accent-blue);
        border-radius: 50%;
        width: 60px;
        height: 60px;
        color: var(--accent-blue);
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        backdrop-filter: blur(5px);
        box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .back-btn-overlay.show {
        opacity: 1;
        pointer-events: auto;
    }

    .back-btn-overlay:hover {
        background: rgba(0, 229, 255, 0.2);
        box-shadow: 0 0 25px rgba(0, 229, 255, 0.8);
        transform: scale(1.1);
    }

    .back-btn-overlay svg {
        width: 30px;
        height: 30px;
        filter: drop-shadow(0 0 5px var(--accent-blue));
    }

    .electric-mute-btn {
        position: absolute;
        bottom: 20px;
        right: 20px;
        z-index: 10;
        width: 50px;
        height: 50px;
        background: rgba(0, 5, 10, 0.7);
        border: 2px solid var(--accent-blue);
        border-radius: 50%;
        color: var(--accent-blue);
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        backdrop-filter: blur(5px);
        box-shadow: 0 0 15px rgba(0, 229, 255, 0.4), inset 0 0 10px rgba(0, 229, 255, 0.2);
        transition: all 0.3s ease;
    }

    .electric-mute-btn:hover {
        background: rgba(0, 229, 255, 0.2);
        box-shadow: 0 0 25px rgba(0, 229, 255, 0.8), inset 0 0 15px rgba(0, 229, 255, 0.5);
        transform: scale(1.1);
    }

    .electric-mute-btn svg {
        width: 24px;
        height: 24px;
        filter: drop-shadow(0 0 5px var(--accent-blue));
        transition: all 0.3s ease;
    }

    .electric-mute-btn.sound-active {
        border-color: #fff;
        color: #fff;
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.3);
    }
    
    .electric-mute-btn.sound-active svg {
        filter: drop-shadow(0 0 5px #fff);
    }

    /* Electric Shock Animation */
    @keyframes electric-shock {
        0% { filter: brightness(1) sepia(0); transform: scale(1) translate(0, 0); }
        10% { filter: brightness(3) sepia(1) hue-rotate(180deg); transform: scale(1.1) translate(2px, -2px); box-shadow: 0 0 50px rgba(0, 229, 255, 1); }
        20% { filter: brightness(1) sepia(0); transform: scale(1) translate(-2px, 2px); }
        30% { filter: brightness(2) sepia(1) hue-rotate(180deg); transform: scale(1.05) translate(1px, -1px); box-shadow: 0 0 30px rgba(0, 229, 255, 0.8); }
        40% { filter: brightness(1) sepia(0); transform: scale(1) translate(0, 0); }
        100% { filter: brightness(1) sepia(0); transform: scale(1) translate(0, 0); }
    }

    .electric-shock-fx {
        animation: electric-shock 0.4s ease-out;
    }

    @keyframes rotate-electric {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    /* Electric Flicker Reveal */
    .reveal.electric-reveal-fx {
        transform: scale(0.9);
        filter: brightness(2) blur(10px);
        transition: none;
    }

    .reveal.electric-reveal-fx.active {
        animation: electric-flicker-in 1.2s forwards;
    }

    @keyframes electric-flicker-in {
        0% { opacity: 0; filter: brightness(3) blur(15px); transform: scale(0.9); }
        10% { opacity: 1; filter: brightness(1) blur(0); transform: scale(1); }
        15% { opacity: 0; filter: brightness(2) blur(5px); }
        25% { opacity: 1; filter: brightness(1) blur(0); }
        35% { opacity: 0.3; }
        45% { opacity: 1; filter: brightness(2) blur(2px); }
        55% { opacity: 0.5; }
        100% { opacity: 1; transform: scale(1); filter: brightness(1) blur(0); }
    }

    /* Scroll Reveal Animations (Tech Style) */
    .reveal {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
        filter: blur(8px);
        transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    }

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

    /* Electric Text Animation */
    .electric-text {
        color: #fff;
        text-shadow: 0 0 10px rgba(0, 229, 255, 0.8),
                     0 0 20px rgba(0, 229, 255, 0.5),
                     0 0 30px rgba(0, 229, 255, 0.3);
        animation: electric-glow 2s ease-in-out infinite alternate;
    }

    @keyframes electric-glow {
        0% {
            text-shadow: 0 0 10px rgba(0, 229, 255, 0.8), 
                         0 0 20px rgba(0, 229, 255, 0.5), 
                         0 0 30px rgba(0, 229, 255, 0.3);
            filter: brightness(1);
        }
        50% {
            text-shadow: 0 0 15px rgba(0, 229, 255, 1), 
                         0 0 30px rgba(0, 229, 255, 0.8), 
                         0 0 50px rgba(0, 229, 255, 0.6);
            filter: brightness(1.3);
        }
        90% {
            text-shadow: 0 0 10px rgba(0, 229, 255, 0.8), 
                         0 0 20px rgba(0, 229, 255, 0.5), 
                         0 0 30px rgba(0, 229, 255, 0.3);
            filter: brightness(1);
        }
        95% {
            text-shadow: 0 0 2px #fff, 0 0 10px var(--accent-blue);
            filter: brightness(2);
            opacity: 0.8;
        }
        100% {
            text-shadow: 0 0 10px rgba(0, 229, 255, 0.8), 
                         0 0 20px rgba(0, 229, 255, 0.5), 
                         0 0 30px rgba(0, 229, 255, 0.3);
            filter: brightness(1);
        }
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .scattered-gallery {
            height: auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            padding: 20px;
            justify-items: center;
        }

        .scatter-item {
            position: relative !important;
            top: auto !important;
            left: auto !important;
            transform: scale(0.9) !important;
        }

        .floating-product-img {
            max-height: 220px !important;
            max-width: 220px !important;
        }

        .floating-product-wrapper.focused-product {
            position: fixed !important;
            top: 50% !important;
            left: 50% !important;
            transform: translate(-50%, -50%) scale(1.2) rotate(6deg) !important;
            z-index: 5000;
            transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
        }

        .video-carousel {
            height: 50vh !important;
        }

        .portfolio-video {
            max-height: 45vh !important;
            max-width: 85vw !important;
            min-width: 200px !important;
            min-height: 150px !important;
        }
        
        .navbar {
            padding: 15px 20px;
        }
        
        .overlay-content {
            padding: 0 20px;
        }
        
        .cta-phrase {
            font-size: 1.5rem;
        }
        
        .btn-primary {
            padding: 12px 30px;
            font-size: 1rem;
        }

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

        .form-row {
            flex-direction: column;
        }
        
        .form-actions {
            flex-direction: column;
        }
        
        .btn-secondary, .btn-cobalt {
            width: 100%;
        }
        
        .quote-container {
            padding: 30px 20px;
        }
    }

    /* Scroll Down Indicator */
    .scroll-down-indicator {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
        padding-bottom: 40px;
        z-index: 20;
        pointer-events: auto;        /* clickable */
        cursor: pointer;
        transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        width: 100%;
    }

    .scroll-down-indicator:hover .circuit-indicator-container {
        filter: drop-shadow(0 0 18px rgba(0, 229, 255, 0.8));
        transform: scale(1.06);
        transition: transform 0.3s ease, filter 0.3s ease;
    }

    .scroll-down-indicator:hover .indicator-text {
        color: #fff;
        text-shadow: 0 0 20px var(--accent-blue), 0 0 40px var(--accent-blue);
        transition: color 0.3s ease, text-shadow 0.3s ease;
    }

    .scroll-down-indicator:hover .indicator-arrow {
        animation: arrow-bounce-fast 0.6s infinite;
    }

    @keyframes arrow-bounce-fast {
        0%, 100% { transform: translateY(0); }
        50%       { transform: translateY(-10px); }
    }

    .hero-indicator-pos {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0;
        padding-bottom: 0;
        z-index: 20;
    }

    .circuit-indicator-container {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 250px;
        min-height: 90px;
        justify-content: flex-start;
    }

    .circuit-indicator-svg {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 250px;
        height: 80px;
        z-index: 1;
        pointer-events: none;
        filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.6));
    }

    .circuit-trace {
        stroke: var(--accent-blue);
        opacity: 0.7;
    }

    .circuit-node {
        filter: drop-shadow(0 0 5px var(--accent-blue));
    }

    .circuit-node-small {
        opacity: 0.8;
    }

    .circuit-node-glow {
        filter: drop-shadow(0 0 8px #fff) drop-shadow(0 0 15px var(--accent-blue));
        animation: node-pulse 2s infinite alternate;
    }

    .circuit-pulse-left, .circuit-pulse-right {
        stroke-dasharray: 20 100;
        stroke-dashoffset: 120;
        animation: circuit-energy-pulse 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
        filter: drop-shadow(0 0 10px #fff) drop-shadow(0 0 20px var(--accent-blue));
    }

    @keyframes circuit-energy-pulse {
        0% { stroke-dashoffset: 120; opacity: 1; }
        80% { stroke-dashoffset: -10; opacity: 1; }
        100% { stroke-dashoffset: -10; opacity: 0; }
    }

    @keyframes node-pulse {
        0% { transform: scale(0.95); opacity: 0.7; }
        100% { transform: scale(1.2); opacity: 1; }
    }
    
    .circuit-indicator-container .indicator-text {
        font-size: 1.1rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 4px;
        margin-top: 8px;
        margin-bottom: 15px;
        z-index: 2;
    }
    
    .circuit-indicator-container .indicator-arrow {
        width: 45px;
        height: 45px;
        color: var(--accent-blue);
        animation: arrow-bounce 2s infinite;
        filter: drop-shadow(0 0 10px var(--accent-blue));
        z-index: 2;
    }

    @keyframes arrow-bounce {
        0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
        40% { transform: translateY(-12px); }
        60% { transform: translateY(-6px); }
    }

/* ── ENTRAR button ─────────────────────────────────────────────────────────── */
.entrar-btn {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 800;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--accent-blue);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    user-select: none;
    text-shadow:
        0 0 10px rgba(0, 229, 255, 0.7),
        0 0 30px rgba(0, 229, 255, 0.3);
    animation: entrar-pulse 2.4s ease-in-out infinite;
    transition: text-shadow 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.entrar-btn:hover {
    text-shadow:
        0 0 14px rgba(0, 229, 255, 1),
        0 0 50px rgba(0, 229, 255, 0.6),
        0 0 80px rgba(0, 229, 255, 0.3);
    transform: scale(1.08);
    color: #fff;
}

@keyframes entrar-pulse {
    0%, 100% { opacity: 0.85; text-shadow: 0 0 10px rgba(0,229,255,0.6), 0 0 25px rgba(0,229,255,0.25); }
    50%       { opacity: 1;    text-shadow: 0 0 18px rgba(0,229,255,1),   0 0 50px rgba(0,229,255,0.5); }
}
