:root { 
    --bg: #000; 
    --primary: #fff; 
    --accent: #00f2ff; 
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    background: var(--bg); 
    color: var(--primary); 
    font-family: 'Inter', sans-serif; 
    overflow-x: hidden; 
}

.noise { 
    position: fixed; top: 0; width: 100%; height: 100%; 
    background: url('https://grainy-gradients.vercel.app/noise.svg'); 
    opacity: 0.04; pointer-events: none; z-index: 10; 
}

.cursor { 
    position: fixed; width: 20px; height: 20px; 
    border: 1px solid var(--accent); border-radius: 50%; 
    pointer-events: none; z-index: 999; transform: translate(-50%, -50%);
}

/* Navigație Sticky - Stilizată */
.ultra-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 22px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1001;
    background: linear-gradient(to bottom, rgba(0,0,0,0.85), transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 242, 255, 0.08);
}

/* Logo */
.logo-wrap {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
}

.logo-text {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 3px;
    transition: 0.3s;
}

.logo-accent {
    color: var(--accent);
    text-shadow: 0 0 12px rgba(0, 242, 255, 0.8);
}

.logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 6px;
}

.logo-wrap:hover .logo-text {
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
}

/* Zona dreaptă */
.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    animation: status-blink 2s infinite;
}

@keyframes status-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Buton Meniu */
.menu-trigger {
    background: rgba(0, 242, 255, 0.05);
    border: 1px solid var(--accent);
    width: 52px;
    height: 44px;
    padding: 0 13px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
    animation: neon-pulse 2s infinite;
    z-index: 1001;
    position: relative;
}

.menu-trigger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-trigger:hover {
    background: rgba(0, 242, 255, 0.15);
    animation: none;
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.5);
}

.menu-trigger:hover span { background: var(--accent); }

.menu-trigger.active span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-trigger.active span:nth-child(2) { transform: translateY(-5px) rotate(-45deg); }

@keyframes neon-pulse {
    0% { box-shadow: 0 0 5px rgba(0, 242, 255, 0.4); transform: scale(1); }
    50% { box-shadow: 0 0 20px rgba(0, 242, 255, 0.6); transform: scale(1.05); }
    100% { box-shadow: 0 0 5px rgba(0, 242, 255, 0.4); transform: scale(1); }
}

/* Mobil - Nav */
@media (max-width: 768px) {
    .ultra-nav { padding: 16px 20px; }
    .nav-status { display: none; }
    .logo-text { font-size: 0.95rem; letter-spacing: 2px; }
    .logo-sub { font-size: 7px; letter-spacing: 3px; }
}

.hero { 
    height: 100vh; display: flex; flex-direction: column; 
    justify-content: center; align-items: center; 
}

.hero h1 { 
    font-family: 'Unbounded', sans-serif; 
    font-size: 8vw; 
    line-height: 0.85; 
    text-transform: uppercase; 
    letter-spacing: -3px;
}

.outline { color: transparent; -webkit-text-stroke: 1px #fff; opacity: 0.3; }

/* FIX SUPRAPUNERE: max-content se dimensionează automat după numărul de slide-uri */
.horizontal-section { 
    height: 100vh; 
    display: flex; 
    width: max-content; 
}

/* FIX SUPRAPUNERE: flex-shrink 0 blochează comprimarea slide-urilor */
.slide { 
    flex: 0 0 100vw;
    width: 100vw; 
    height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 0 10vw; 
    position: relative;
}

.image-wrapper { 
    width: 50vw; height: 65vh; overflow: hidden; 
    border-radius: 10px; background: #111; 
}

.image-wrapper img { 
    width: 100%; height: 100%; object-fit: cover; 
    transform: scale(1.4); transition: transform 0.1s ease-out;
}

.text-content { 
    position: absolute; left: 55%; z-index: 5; max-width: 450px; 
}

.text-content.left-align { left: 15%; }


.image-wrapper.right-align { margin-left: 15%; }

.tag { color: var(--accent); font-weight: bold; font-size: 0.8rem; letter-spacing: 2px; }

/* Titlu domeniu: un singur rând, suprapus pe imagine (stil colantator) */
.text-content h2 { 
    font-family: 'Unbounded'; 
    font-size: clamp(1.4rem, 2.4vw, 2.6rem); 
    margin: 15px 0; 
    white-space: nowrap;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.65);
}

.btn { 
    display: inline-block; padding: 15px 35px; margin-top: 20px;
    border: 1px solid var(--accent); color: var(--accent); 
    text-decoration: none; border-radius: 50px; 
    transition: all 0.4s ease;
}

.btn:hover { background: var(--accent); color: #000; box-shadow: 0 0 20px var(--accent); }

.footer { 
    height: 100vh; display: flex; justify-content: center; align-items: center; 
    flex-direction: column;
    gap: 50px;
}

.giant-cta { 
    font-family: 'Unbounded'; font-size: 6vw; text-align: center; 
    line-height: 0.9;
}

/* CTA Contact Footer */
.cta-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
}

.cta-btn:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 25px var(--accent);
}

.cta-whatsapp {
    border-color: #25D366;
    color: #25D366;
}

.cta-whatsapp:hover {
    background: #25D366;
    color: #000;
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
}

.cta-icon { font-size: 16px; }

/* Stratul de Grain */
.grain-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.05;
    pointer-events: none;
    z-index: 9999;
}

/* Overlay Meniu Fullscreen */
.menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9); backdrop-filter: blur(20px);
    display: flex; align-items: center; justify-content: center;
    z-index: 1000; opacity: 0; pointer-events: none;
    transition: 0.5s;
}

.menu-overlay.active { opacity: 1; pointer-events: all; }

.menu-item {
    display: block; font-family: 'Unbounded'; font-size: 5vw;
    color: var(--primary); text-decoration: none;
    margin: 20px 0; transition: 0.3s;
}

.menu-item:hover { color: var(--accent); transform: skewX(-10deg); }

/* Bento Grid Details */
.bento-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 25px 0;
    max-width: 500px;
}

.detail-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px;
    border-radius: 16px;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.detail-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.full-width {
    grid-column: span 2;
}

.detail-card label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    display: block;
    margin-bottom: 8px;
    font-weight: 900;
}

.detail-card p {
    font-size: 13px !important;
    line-height: 1.4 !important;
    opacity: 0.7;
    margin: 0 !important;
}

/* Stil Buton Cifre (în Slide) */
.btn-specs {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 12px 25px;
    border-radius: 50px;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 20px;
    margin-right: 15px;
    transition: 0.3s;
}

.btn-specs:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 20px var(--accent);
}

/* Cardul de Performanță - Responsive Fix */
.no-scroll { overflow: hidden !important; }

.performance-card {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    margin: auto;
    
    width: 85vw;
    height: fit-content;
    max-width: 420px;
    
    background: rgba(5, 5, 5, 0.98);
    border: 1px solid var(--accent);
    padding: 50px 20px;
    border-radius: 30px;
    z-index: 10001;
    
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 0 60px rgba(0, 242, 255, 0.2);
    cursor: pointer;
    
    box-sizing: border-box;
}

.perf-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.perf-value {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.5rem;
    color: var(--accent);
    line-height: 1;
}

.perf-label {
    font-size: 9px;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

@media (max-width: 480px) {
    .performance-card {
        width: 92vw;
        padding: 35px 10px;
        gap: 5px;
    }
    
    .perf-value {
        font-size: 1.2rem;
    }
}

/* Overlay de închidere */
.close-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2999;
}

#loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.loader-content { text-align: center; }

.loader-logo {
    font-family: 'Unbounded', sans-serif;
    font-size: 2rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 10px;
    margin-bottom: 20px;
}

.loader-bar {
    width: 200px;
    height: 1px;
    background: rgba(0, 242, 255, 0.1);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.loader-bar span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transform: translateX(-100%);
}

/* ============================== */
/* MOBIL (max-width: 768px)       */
/* ============================== */
@media (max-width: 768px) {
    .cursor, .mouse-glow { display: none; }

    .hero h1 {
        font-size: 12vw;
        letter-spacing: -1px;
        white-space: normal;
        width: 100%;
        display: block;
        text-align: center;
    }

    .hero h1.outline {
        font-size: 11vw;
    }

    .horizontal-section {
        flex-direction: column !important;
        width: 100% !important;
        height: auto !important;
    }

    .slide {
        flex: none !important;
        width: 100% !important;
        height: auto !important;
        padding: 40px 20px 100px 20px !important;
        flex-direction: column;
    }

    .image-wrapper {
        width: 100% !important;
        height: 35vh !important;
        margin: 0 0 20px 0 !important;
    }

    .text-content {
        position: relative !important;
        left: 0 !important;
        width: 100% !important;
        max-width: 100%;
        margin-top: 30px;
        text-align: left;
    }

    .text-content h2 {
        white-space: normal;
        overflow-wrap: anywhere;
        font-size: clamp(1.5rem, 7vw, 2.2rem);
        text-shadow: none;
    }

    .bento-details {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .full-width {
        grid-column: span 1;
    }

    .menu-item { font-size: 10vw; }

    .giant-cta { font-size: 12vw; }

    .cta-actions {
        flex-direction: column;
        width: 85%;
    }
    .cta-btn { justify-content: center; }
}
