/* --- SOLO SERVICES STYLE --- */

/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }

body.services-page {
    background-color: #0d001a;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
}

/* TYPOGRAFIA */
h1, h2, h3, h4 { font-family: 'Antonio', sans-serif; text-transform: uppercase; margin: 0; }
a { text-decoration: none; }
.lime-text { color: #9eeb00; }

/* TEXTÚRA */
.noise-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.05"/%3E%3C/svg%3E');
    pointer-events: none; z-index: 0; opacity: 0.4;
}

/* HEADER */
.srv-header {
    position: fixed; top: 0; left: 0; width: 100%; padding: 20px 40px;
    display: flex; justify-content: space-between; align-items: center; z-index: 100;
    background: rgba(13,0,26,0.9); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.05);
}
.logo { font-family: 'Antonio'; font-size: 2rem; font-weight: 700; color: #fff; }
.close-btn { color: #fff; border: 1px solid rgba(255,255,255,0.3); padding: 8px 20px; border-radius: 50px; font-weight: 700; font-size: 0.9rem; transition: 0.3s; }
.close-btn:hover { background: #fff; color: #000; }

/* HERO */
.srv-hero {
    height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center;
    position: relative; padding: 0 20px;
}
.hero-title { font-size: clamp(3rem, 8vw, 7rem); line-height: 1; margin-bottom: 20px; }
.hero-desc { font-size: 1.2rem; color: #ccc; max-width: 600px; margin: 0 auto; }
.scroll-indicator {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px; color: #666; font-size: 0.8rem; letter-spacing: 2px;
}
.line { width: 1px; height: 50px; background: #666; }

/* --- MAIN LAYOUT (STICKY) --- */
.srv-container {
    display: flex;
    max-width: 1400px; margin: 0 auto;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ĽAVÁ STRANA (SCROLL) */
.srv-content {
    width: 50%;
    padding: 100px 50px 100px 20px;
}

.srv-block {
    min-height: 80vh; /* Každý blok má výšku aspoň 80% obrazovky */
    display: flex; flex-direction: column; justify-content: center;
    margin-bottom: 50px; opacity: 0.3; transition: opacity 0.5s;
}
.srv-block.active { opacity: 1; }

.srv-num { font-family: 'Antonio'; font-size: 5rem; color: rgba(255,255,255,0.1); line-height: 1; }
.srv-block h2 { font-size: 4rem; margin-bottom: 20px; color: #fff; }
.lead { font-size: 1.2rem; color: #ccc; margin-bottom: 40px; line-height: 1.6; }

.srv-details { display: flex; gap: 40px; margin-bottom: 40px; }
.detail-box h4 { font-size: 0.9rem; color: #9eeb00; margin-bottom: 5px; }
.detail-box p { font-size: 1rem; color: #fff; }

.srv-list { list-style: none; margin-bottom: 40px; }
.srv-list li { margin-bottom: 15px; color: #bbb; font-size: 1.1rem; }
.srv-list strong { color: #fff; }

.btn-srv, .btn-srv-outline {
    display: inline-block; padding: 15px 40px; border-radius: 50px;
    font-weight: 700; font-family: 'Antonio'; font-size: 1.2rem;
    text-align: center; width: fit-content; transition: 0.3s;
}
.btn-srv { background: #9eeb00; color: #000; }
.btn-srv:hover { box-shadow: 0 0 30px rgba(158,235,0,0.4); }
.btn-srv-outline { border: 1px solid rgba(255,255,255,0.3); color: #fff; }
.btn-srv-outline:hover { background: #fff; color: #000; }

/* PRAVÁ STRANA (STICKY) */
.srv-visuals {
    width: 50%;
    height: 100vh;
    position: sticky;
    top: 0;
    display: flex; align-items: center; justify-content: center;
    border-left: 1px solid rgba(255,255,255,0.1);
    background: radial-gradient(circle at center, rgba(158,235,0,0.05), transparent 70%);
}

.sticky-wrapper {
    position: relative;
    width: 80%; height: 60%;
}

.visual-card {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px; backdrop-filter: blur(10px);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    opacity: 0; transform: scale(0.9) translateY(20px); transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 40px; text-align: center;
}

.visual-card.active {
    opacity: 1; transform: scale(1) translateY(0); z-index: 2;
    border-color: #9eeb00; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.v-icon { font-size: 5rem; margin-bottom: 20px; }
.visual-card h3 { font-size: 2.5rem; color: #fff; margin-bottom: 30px; }

/* Dekorácie v kartách */
.code-decoration { font-family: monospace; color: #9eeb00; background: #000; padding: 20px; border-radius: 10px; text-align: left; width: 100%; }
.color-palette span { display: inline-block; width: 50px; height: 50px; border-radius: 50%; margin: 0 10px; border: 2px solid #fff; }
.stat-bar { width: 100%; height: 20px; background: rgba(255,255,255,0.1); border-radius: 20px; overflow: hidden; }
.bar-fill { height: 100%; width: 85%; background: #9eeb00; }

/* FOOTER */
.srv-footer { padding: 40px; text-align: center; border-top: 1px solid rgba(255,255,255,0.1); }
.back-link { color: #666; font-weight: 700; transition: 0.3s; }
.back-link:hover { color: #9eeb00; }

/* RESPONSIVITA */
@media (max-width: 900px) {
    .srv-container { flex-direction: column; }
    .srv-content { width: 100%; padding: 50px 20px; }
    .srv-visuals { display: none; } /* Na mobile skryjeme sticky vizuál pre jednoduchosť */
    
    .srv-block { min-height: auto; opacity: 1; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 50px; }
    .srv-hero { height: 70vh; }
    .hero-title { font-size: 3.5rem; }
}