/* --- VARIABLES --- */
:root {
    --lime: #BDFF00;       /* Tvoja Akcentná */
    --purple: #1A0033;     /* Tvoja Hlavná Textová */
    --bg-light: #F8F9FA;   /* Jemné sivé pozadie (čisté) */
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(26, 0, 51, 0.08); /* Fialový tieň */
    --radius: 24px;        /* Zaoblené rohy ako v inšpirácii */
}

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

body {
    background-color: var(--bg-light);
    color: var(--purple);
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
}

/* --- TYPOGRAFIA --- */
h1, h2, h3 { font-family: 'Antonio', sans-serif; text-transform: uppercase; }

/* --- MINIMAL HEADER --- */
.minimal-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999; /* Najvyššia priorita */
    mix-blend-mode: exclusion; /* Aby bolo logo viditeľné na bielom aj čiernom */
    color: #fff;
}

.logo {
    font-family: 'Antonio', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Hamburger Ikona */
.menu-toggle {
    width: 50px;
    height: 30px;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.line {
    height: 3px;
    background-color: #fff;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.l1 { width: 100%; }
.l2 { width: 70%; }

/* Animácia na krížik (X) */
.menu-toggle:hover .l2 { width: 100%; }

body.menu-open .l1 {
    transform: rotate(45deg) translate(8px, 8px);
    background-color: #9eeb00; /* Zmení na zelenú */
}
body.menu-open .l2 {
    transform: rotate(-45deg) translate(7px, -9px);
    width: 100%;
    background-color: #9eeb00;
}

/* --- PREMIUM MENU (Overlay) --- */
.fullscreen-menu {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-color: #1A0033; /* Brand Purple */
    z-index: 9990;
    padding: 100px 50px 40px 50px; /* Padding zhora kvôli headeru */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
    /* Animácia príchodu (Clip Path) */
    clip-path: inset(0 0 100% 0); /* Skryté hore */
    pointer-events: none;
    transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

/* Otvorený stav */
body.menu-open .fullscreen-menu {
    clip-path: inset(0 0 0% 0); /* Plne odhalené */
    pointer-events: all;
}

.menu-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dva stĺpce */
    height: 100%;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* --- ĽAVÁ STRANA (Hlavné linky) --- */
.menu-left {
    border-right: 1px solid rgba(255,255,255,0.1); /* Čiara v strede */
    height: 100%;
    display: flex;
    align-items: center;
}

.main-nav { list-style: none; }

.nav-item {
    font-family: 'Antonio', sans-serif;
    font-size: clamp(3rem, 6vw, 6rem);
    color: #fff;
    text-decoration: none;
    line-height: 1.1;
    display: block;
    transition: color 0.3s, transform 0.3s;
}

.nav-item:hover {
    color: #9eeb00; /* Lime */
    transform: translateX(20px);
}

/* --- PRAVÁ STRANA (Služby) --- */
.menu-right {
    padding-left: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-label {
    font-family: 'Manrope', sans-serif;
    color: #9eeb00;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    opacity: 0.7;
}

.services-nav { list-style: none; }
.services-nav li { margin-bottom: 30px; }

.service-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.s-name {
    font-family: 'Antonio', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.s-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s;
}

.service-link:hover .s-name { color: #9eeb00; }
.service-link:hover .s-desc { color: #fff; }
.service-link:hover { transform: translateX(10px); }

/* --- SPODOK MENU --- */
.menu-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    font-family: 'Manrope', sans-serif;
}

.menu-contact a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.menu-socials a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 700;
    font-size: 1.1rem;
}
.menu-socials a:hover, .menu-contact a:hover { color: #9eeb00; }

/* --- RESPONSIVITA (Mobile) --- */
@media (max-width: 900px) {
    .fullscreen-menu { padding: 80px 20px 30px 20px; overflow-y: auto; }
    .menu-container { grid-template-columns: 1fr; align-items: start; height: auto; gap: 50px; }
    
    .menu-left {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 40px;
        height: auto;
    }
    
    .menu-right { padding-left: 0; }
    .nav-item { font-size: 3.5rem; }
    .s-name { font-size: 2rem; }
    
    .menu-bottom { flex-direction: column; align-items: flex-start; gap: 20px; margin-top: 40px; }
    .menu-socials a { margin-left: 0; margin-right: 20px; }
}
/* TLAČIDLÁ (Lime + Purple) */
.btn-primary {
    background-color: var(--lime);
    color: var(--purple);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(189, 255, 0, 0.4);
    transition: transform 0.2s;
    display: inline-block;
}
.btn-primary:hover { transform: translateY(-3px); }
/* --- HERO CLEAN (Final Polish) --- */
.hero-clean {
    position: relative;
    min-height: 100vh;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(158, 235, 0, 0.1) 0%, rgba(255,255,255,0) 70%);
    top: -20%; right: -20%;
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    max-width: 1400px; /* Širší kontajner */
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50:50 rozloženie */
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* --- TEXTY --- */
.pill-badge {
    display: inline-block;
    background-color: #F8F8F8;
    color: #25015f;
    padding: 10px 20px;
    border-radius: 50px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border: 1px solid #eee;
}

.clean-headline {
    font-family: 'Antonio', sans-serif;
    font-size: clamp(3.5rem, 6vw, 7rem); /* Responzívne */
    line-height: 0.95;
    color: #25015f;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.lime-box-wrapper {
    display: inline-block;
    transform: rotate(-2deg);
    margin-top: 5px;
}

.lime-box {
    background-color: #9eeb00;
    color: #25015f;
    padding: 5px 15px;
    box-shadow: 8px 8px 0px rgba(37, 1, 95, 0.15); /* Výraznejší tieň */
}

.desc-wrapper {
    border-left: 5px solid #9eeb00;
    padding-left: 25px;
    margin-bottom: 40px;
}

.clean-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    max-width: 550px;
}

.clean-desc strong { color: #25015f; font-weight: 800; }

/* Tlačidlá */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-clean-lime {
    background-color: #9eeb00;
    color: #25015f;
    padding: 20px 45px;
    border-radius: 12px;
    font-family: 'Antonio', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 25px rgba(158, 235, 0, 0.4);
}

.btn-clean-lime:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(158, 235, 0, 0.6);
}

.price-box {
    display: flex;
    flex-direction: column;
    font-family: 'Manrope', sans-serif;
    padding-left: 20px;
    border-left: 2px solid #eee;
}
.price-box .label { font-size: 0.8rem; color: #888; text-transform: uppercase; font-weight: 700; }
.price-box .amount { font-size: 2.2rem; font-weight: 800; color: #25015f; line-height: 1; font-family: 'Antonio'; }

/* --- VIZUÁL DESKTOP (ZVÄČŠENÉ LOGO) --- */
.hero-visual-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-wrapper {
    position: relative;
    /* ZVÄČŠENIE: Predtým 480px, teraz 600px */
    width: 600px;
    height: 600px; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-badge {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 30px 60px rgba(37, 1, 95, 0.2));
    animation: badgeFloat 6s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Bubliny */
.float-bubble {
    position: absolute;
    background: #fff;
    padding: 12px 25px;
    border-radius: 15px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    white-space: nowrap;
    z-index: 2;
    border: 1px solid rgba(0,0,0,0.05);
}

.bubble-top { top: 60px; left: -30px; animation: bubbleFloat 5s ease-in-out infinite 0.5s; }
.bubble-bottom { bottom: 80px; right: 0; animation: bubbleFloat 7s ease-in-out infinite; }
.cross { color: #ff4d4d; margin-left: 5px; }
.check { color: #00cc66; margin-left: 5px; }

@keyframes bubbleFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(0, -10px); }
}

/* --- MOBILE LOGIC --- */
.mobile-visual-placeholder { display: none; } /* Na desktope skryté */

@media (max-width: 1024px) {
    .visual-wrapper { width: 450px; height: 450px; }
    .clean-headline { font-size: 5rem; }
}

@media (max-width: 900px) {
    .hero-clean { padding-top: 120px; text-align: center; }
    .hero-container { grid-template-columns: 1fr; gap: 40px; }
    .hero-text-col { display: flex; flex-direction: column; align-items: center; }

    /* Nadpis a box */
    .clean-headline { font-size: 4rem; margin-bottom: 20px; line-height: 1; }
    .lime-box { padding: 5px 10px; }

    /* Skrytie desktop vizuálu */
    .desktop-visual { display: none; }
    
    /* ZOBRAZENIE MOBILNÉHO LOGA */
    .mobile-visual-placeholder {
        display: block;
        width: 280px;
        height: 280px;
        margin: 20px auto 40px auto; /* Medzery okolo loga */
        position: relative;
    }

    .mobile-badge-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 50%;
        filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
        animation: badgeFloat 5s ease-in-out infinite;
    }

    /* Popis */
    .desc-wrapper {
        border-left: none;
        border-top: 4px solid #9eeb00;
        padding-top: 20px;
        padding-left: 0;
        margin-bottom: 30px;
    }
    
    .hero-actions { flex-direction: column; width: 100%; }
    .btn-clean-lime { width: 100%; text-align: center; }
    .price-box { border-left: none; border-top: 1px solid #eee; padding-top: 15px; padding-left: 0; width: 100%; align-items: center; }
}
/* --- IMPACT STATEMENT SEKCIA --- */
.impact-section {
    background-color: #25015f; /* Fialová (spojí sa so sekciou nižšie) */
    min-height: 60vh; /* Dostatočná výška na scroll efekt */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    position: relative;
}

.impact-container {
    max-width: 1200px;
    text-align: center;
    position: relative;
}

.impact-text {
    font-family: 'Antonio', sans-serif;
    font-size: clamp(3rem, 7vw, 7rem); /* Obrovské písmo */
    line-height: 1.1;
    color: #ffffff;
    text-transform: uppercase;
}

/* Nastavenie slov pre animáciu */
.impact-text span {
    opacity: 0.1; /* Na začiatku takmer neviditeľné */
    display: inline-block; /* Aby sa dalo animovať */
    transition: color 0.3s;
}

/* Slová, ktoré budú svietiť na zeleno */
.impact-text .highlight {
    color: #9eeb00; /* Neon Lime */
}

/* Čiara pod textom */
.impact-line {
    width: 0%; /* Začína na 0 */
    height: 4px;
    background-color: #9eeb00;
    margin: 40px auto 0 auto;
    border-radius: 2px;
}

/* --- SEKCIA 2: IDENTITA (Dark Mode) --- */
.identity-section {
    background-color: #25015f; /* Tvoja nová farba */
    color: var(--white);
    padding: 150px 20px 100px 20px; /* Viac paddingu hore kvôli marquee */
    position: relative;
    overflow: hidden;
}

.identity-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

/* Ľavá strana */
.section-label {
    color: var(--lime);
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.big-headline {
    font-size: clamp(3.5rem, 6vw, 6rem);
    line-height: 0.9;
    margin-bottom: 30px;
}

.lime-outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--lime); /* Outline efekt */
    font-style: italic; /* Dynamika */
}

.dark-desc {
    font-size: 1.2rem;
    color: #ccc; /* Jemne šedá pre čitateľnosť na tmavej */
    max-width: 450px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-lime {
    background-color: var(--lime);
    color: #25015f;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(189, 255, 0, 0.3);
}
.btn-lime:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(189, 255, 0, 0.6);
}

/* Pravá strana - Lietajúce karty */
.floating-cards {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1); /* Glassmorphism */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

/* Štýlovanie jednotlivých kariet */
.card-color {
    top: 10%; right: 10%;
    width: 200px;
    transform: rotate(10deg);
    text-align: center;
    font-weight: 700;
}
.color-swatch {
    height: 100px; background-color: var(--lime);
    border-radius: 10px; margin-bottom: 10px;
}

.card-typo {
    top: 40%; left: 0%;
    width: 220px;
    transform: rotate(-15deg);
    background: var(--white);
    color: #25015f;
    text-align: center;
}
.aa { display: block; font-size: 5rem; font-family: 'Antonio'; line-height: 1; }
.font-name { font-weight: 700; text-transform: uppercase; }

.card-logo {
    bottom: 5%; right: 20%;
    width: 180px; height: 180px;
    background: #25015f;
    border: 2px solid var(--lime);
    border-radius: 50%; /* Kruh */
    display: flex; align-items: center; justify-content: center;
    transform: rotate(5deg);
}
.card-logo img { width: 80%; }

/* Pozadie Glow */
.glow-blob {
    position: absolute;
    top: 50%; right: 0;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(189,255,0,0.15) 0%, rgba(37,1,95,0) 70%);
    transform: translate(30%, -50%);
    pointer-events: none;
}

/* RESPONSIVITA */
@media (max-width: 768px) {
    .identity-content { grid-template-columns: 1fr; text-align: center; }
    .identity-text-col { margin-bottom: 50px; }
    .dark-desc { margin: 0 auto 30px auto; }
    .floating-cards { height: 400px; }
    .card-color { right: 0; }
    .card-typo { left: 0; }
}
/* --- SEKCIA EXPANDING SERVICES --- */
.services-expand-section {
    background-color: #111; /* Tmavé pozadie */
    color: #fff;
    padding: 100px 20px;
    overflow: hidden;
}

.expand-container {
    max-width: 1400px; /* Širší záber */
    margin: 0 auto;
}

.expand-header {
    text-align: center;
    margin-bottom: 60px;
}

.expand-headline {
    font-family: 'Antonio', sans-serif;
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 1;
    margin-top: 10px;
}

/* --- GALÉRIA (FLEXBOX MAGIC) --- */
.expand-gallery {
    display: flex;
    height: 600px; /* Výška galérie na desktope */
    gap: 10px;
    width: 100%;
}

.expand-card {
    position: relative;
    flex: 1; /* Všetky karty majú rovnakú šírku v základe */
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.7s cubic-bezier(0.25, 1, 0.5, 1); /* Hladká animácia */
    border: 1px solid rgba(255,255,255,0.1);
}

/* Hover Efekt (Roztiahnutie) */
.expand-card:hover {
    flex: 4; /* Karta sa roztiahne, ostatné sa zúžia */
}

/* Pozadie */
.bg-img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
    filter: grayscale(100%); /* Čiernobiele v základe */
}

.expand-card:hover .bg-img {
    filter: grayscale(0%); /* Farebné pri hoveri */
    transform: scale(1.1);
}

.overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(37,1,95,0.9), transparent);
    z-index: 1;
}

/* Obsah */
.content {
    position: absolute; bottom: 0; left: 0; width: 100%;
    padding: 40px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.num {
    font-family: 'Antonio'; font-size: 3rem; color: #9eeb00; margin-bottom: 10px;
    opacity: 0.5; transition: 0.3s;
}

.title {
    font-family: 'Antonio'; font-size: 3rem; text-transform: uppercase;
    white-space: nowrap; /* Aby sa text nelámal */
    transform-origin: left;
    transition: 0.3s;
}

/* Detaily sú skryté, kým neprejdeš myšou */
.details {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease 0.2s; /* Oneskorenie */
}

.details p {
    font-family: 'Manrope'; font-size: 1.1rem; color: #ddd; margin-bottom: 15px;
    width: 400px; /* Fixná šírka textu aby neskákal */
}

.tag {
    display: inline-block; border: 1px solid #9eeb00; color: #9eeb00;
    padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 700;
}

/* --- HOVER STAVY --- */
.expand-card:hover .details {
    opacity: 1;
    height: auto;
    margin-top: 10px;
}

.expand-card:hover .num { opacity: 1; transform: translateY(-10px); }

/* --- RESPONSIVITA (Mobile Layout) --- */
@media (max-width: 900px) {
    .expand-gallery {
        flex-direction: column; /* Karty pod seba */
        height: auto;
        gap: 20px;
    }

    .expand-card {
        height: 250px; /* Fixná výška na mobile */
        flex: none; /* Vypneme flex rozťahovanie */
        width: 100%;
    }

    /* Na mobile vidíme detaily stále (žiadne klikanie) */
    .details { opacity: 1; height: auto; margin-top: 10px; }
    .bg-img { filter: grayscale(0%); opacity: 0.6; } /* Hneď farebné */
    .title { font-size: 2.5rem; }
    .num { font-size: 2rem; }
    
    /* Na mobile vypneme hover efekt */
    .expand-card:hover { flex: none; }
}
/* --- SEKCIA PROJEKTY (Stacking Effect) --- */
.projects-section {
    background-color: #111; /* Takmer čierna pre kontrast */
    padding: 100px 20px 200px 20px; /* Extra miesto dole */
    color: #fff;
    position: relative;
}

.projects-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title-small {
    color: #9eeb00;
    font-family: 'Manrope', sans-serif;
    letter-spacing: 3px;
    font-size: 1rem;
    margin-bottom: 20px;
}

.projects-headline {
    font-family: 'Antonio', sans-serif;
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.9;
    text-transform: uppercase;
}

.outline-lime {
    color: transparent;
    -webkit-text-stroke: 2px #9eeb00;
}

/* --- KARTY --- */
.cards-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.project-card {
    position: sticky; /* Kľúčové pre efekt lepenia */
    top: 15vh; /* Kde sa karta zasekne */
    height: 70vh; /* Výška karty */
    margin-bottom: 10vh; /* Rozostup pre scroll */
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 -20px 60px rgba(0,0,0,0.5);
    background-color: #25015f; /* Základná farba karty */
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-origin: center top; /* Pre animáciu zmenšovania */
    transition: transform 0.5s ease;
}

/* Farby kariet pre odlíšenie (voliteľné) */
.card-1 { background-color: #000000; }
.card-2 { background-color: #c47172; }
.card-3 { background-color: #1e0f3d; } 
.card-4 { background-color: #ff6600; }/* Tmavozelená */

.card-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    height: 100%;
}

/* Obrázok vľavo */
.card-image {
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-card:hover .card-image img {
    transform: scale(1.05); /* Zoom efekt pri hoveri */
}

/* Info vpravo */
.card-info {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255,255,255,0.03); /* Jemne iná farba */
    backdrop-filter: blur(10px);
}

.card-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.card-tags span {
    border: 1px solid #9eeb00;
    color: #9eeb00;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.card-info h3 {
    font-family: 'Antonio', sans-serif;
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 20px;
}

.card-info p {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 50px;
}

.btn-arrow {
    font-family: 'Antonio', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    border-bottom: 2px solid #9eeb00;
    display: inline-block;
    width: fit-content;
    padding-bottom: 5px;
    transition: color 0.3s;
}

.btn-arrow:hover {
    color: #9eeb00;
}

/* Mobilná verzia */
@media (max-width: 900px) {
    .card-content { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
    .card-info { padding: 30px; }
    .card-info h3 { font-size: 2.5rem; }
    .project-card { height: 80vh; top: 10vh; }
}
/* --- MOBILE --- */
@media (max-width: 768px) {
    .hero-content { flex-direction: column; text-align: center; }
    .hero-text { text-align: center; }
    .project-showcase-container { flex-direction: column; }
    .cta-group { justify-content: center; }
    .sub-text { margin: 0 auto 30px auto; }
}


/* --- 0. NOISE TEXTURE (Premium Feel) --- */
.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: 9998; opacity: 0.4;
}

/* --- 1. PROCES SECTION --- */
.process-section {
    padding: 100px 20px;
    background-color: var(--white);
    color: var(--purple);
}
.process-container { max-width: 1200px; margin: 0 auto; }
.process-headline { font-size: clamp(3rem, 6vw, 5rem); margin-bottom: 80px; }
.lime-bg { background: var(--lime); padding: 0 10px; display: inline-block; transform: rotate(-2deg); }

.process-steps {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px; border-top: 1px solid #ddd; padding-top: 60px;
}
.step-item { position: relative; padding-right: 20px; }
.step-num {
    font-family: 'Antonio'; font-size: 4rem; color: #eee;
    margin-bottom: 20px; font-weight: 700;
}
.step-item:hover .step-num { color: var(--lime); transition: 0.3s; }
.step-content h3 { font-size: 1.5rem; margin-bottom: 15px; }
.step-content p { color: #555; line-height: 1.6; }


/* --- QUOTE SECTION (Creative Form) --- */
.quote-section {
    background-color: #25015f; /* Brand Purple */
    padding: 120px 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Jemná mriežka v pozadí pre textúru */
.quote-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.quote-container {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 80px; align-items: start; position: relative; z-index: 2;
}

/* Ľavá strana - Text */
.section-label-lime {
    color: var(--lime); font-family: 'Manrope'; letter-spacing: 2px;
    font-size: 0.9rem; margin-bottom: 20px; display: block;
}

.quote-headline {
    font-family: 'Antonio', sans-serif;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1; margin-bottom: 30px;
}

.quote-desc {
    font-size: 1.1rem; color: #ccc; line-height: 1.6; max-width: 400px; margin-bottom: 50px;
}

.quote-decoration {
    display: flex; align-items: center; gap: 15px;
    font-family: 'Manrope'; font-size: 0.9rem; color: var(--lime);
}
.decor-circle {
    width: 12px; height: 12px; background: var(--lime); border-radius: 50%;
    box-shadow: 0 0 15px var(--lime); animation: pulse 2s infinite;
}
@keyframes pulse { 0% { opacity: 0.5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.2); } 100% { opacity: 0.5; transform: scale(1); } }


/* Pravá strana - Formulár */
.quote-form-wrapper {
    background: rgba(255,255,255,0.05); /* Glassmorphism */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 50px;
}

.form-group { margin-bottom: 30px; }
.form-label {
    display: block; font-family: 'Antonio'; font-size: 1.2rem; margin-bottom: 15px; color: #fff;
}

/* Dlaždice (Checkbox Buttons) */
.project-types {
    display: flex; flex-wrap: wrap; gap: 10px;
}

.type-option input { display: none; } /* Skryjeme default checkbox */

.option-box {
    display: inline-block;
    padding: 12px 25px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Manrope'; font-weight: 600; font-size: 0.9rem;
    transition: 0.3s;
}

.type-option:hover .option-box { background: rgba(255,255,255,0.15); }

/* Aktivovaný stav */
.type-option input:checked + .option-box {
    background: var(--lime);
    color: var(--purple);
    border-color: var(--lime);
    font-weight: 800;
}

/* Select */
.styled-select {
    width: 100%; padding: 15px; background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
    color: #fff; font-family: 'Manrope'; cursor: pointer;
    outline: none;
}
.styled-select:focus { border-color: var(--lime); }

/* Inputs (Floating Labels) */
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.input-group { position: relative; margin-bottom: 20px; }

.input-group input, .input-group textarea {
    width: 100%; padding: 15px 0;
    background: transparent; border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: #fff; font-family: 'Manrope'; font-size: 1rem;
    outline: none; transition: 0.3s;
}

.input-group textarea { resize: none; min-height: 40px; }

.floating-label {
    position: absolute; top: 15px; left: 0;
    color: #888; pointer-events: none; transition: 0.3s; font-size: 0.9rem;
}

/* Efekt pri písaní */
.input-group input:focus, .input-group textarea:focus {
    border-bottom-color: var(--lime);
}

.input-group input:focus ~ .floating-label,
.input-group input:not(:placeholder-shown) ~ .floating-label,
.input-group textarea:focus ~ .floating-label,
.input-group textarea:not(:placeholder-shown) ~ .floating-label {
    top: -10px; font-size: 0.75rem; color: var(--lime);
}

/* Submit Button */
.btn-submit-lime {
    width: 100%; padding: 20px; margin-top: 10px;
    background: var(--lime); color: var(--purple); border: none;
    border-radius: 50px; cursor: pointer;
    font-family: 'Antonio'; font-size: 1.5rem; font-weight: 700; text-transform: uppercase;
    display: flex; justify-content: space-between; align-items: center;
    padding-left: 30px; padding-right: 30px;
    transition: 0.3s;
}

.btn-submit-lime:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(158, 235, 0, 0.3);
}

.btn-icon { transition: 0.3s; }
.btn-submit-lime:hover .btn-icon { transform: translateX(10px); }

/* RESPONSIVITA */
@media (max-width: 900px) {
    .quote-container { grid-template-columns: 1fr; gap: 40px; }
    .quote-form-wrapper { padding: 30px; }
    .input-row { grid-template-columns: 1fr; }
}

/* --- 3. MEGA FOOTER --- */
.mega-footer {
    background-color: #111; color: #fff;
    padding: 100px 20px 50px 20px;
    border-top-left-radius: 50px; border-top-right-radius: 50px; /* Moderný look */
    margin-top: -50px; position: relative; z-index: 10;
}
.footer-content { max-width: 1200px; margin: 0 auto; text-align: center; }

.footer-cta {
    font-family: 'Antonio'; font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1; margin-bottom: 60px;
}

.huge-email, .huge-phone {
    display: block; font-family: 'Antonio'; font-size: clamp(2rem, 5vw, 4rem);
    color: var(--lime); text-decoration: none; margin-bottom: 10px;
    transition: 0.3s;
}
.huge-email:hover, .huge-phone:hover { color: #fff; transform: scale(1.05); }

.footer-bottom {
    margin-top: 100px; padding-top: 50px; border-top: 1px solid rgba(255,255,255,0.1);
    display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 30px;
    text-align: left; color: #888; font-family: 'Manrope'; font-size: 0.9rem;
}
.social-links { display: flex; gap: 20px; }
.social-links a { color: #fff; text-decoration: none; font-weight: 700; text-transform: uppercase; }
.social-links a:hover { color: var(--lime); }

@media (max-width: 768px) {
    .process-steps { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; align-items: center; }
    .price-card.popular { transform: scale(1); }
}
/* --- GDPR CHECKBOX (Custom Design) --- */
.form-legal-check {
    margin-bottom: 30px;
    text-align: left;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    position: relative;
    user-select: none;
}

/* Skryjeme škaredý defaultný checkbox */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Náš vlastný štvorček */
.checkmark-box {
    height: 24px;
    width: 24px;
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    flex-shrink: 0; /* Aby sa nezmenšoval */
}

/* Hover efekt */
.checkbox-container:hover .checkmark-box {
    border-color: var(--lime);
}

/* Keď je zaškrtnuté */
.checkbox-container input:checked ~ .checkmark-box {
    background-color: var(--lime);
    border-color: var(--lime);
}

/* Fajka (Vytvoríme ju cez CSS) */
.checkmark-box:after {
    content: "";
    display: none;
    width: 6px;
    height: 12px;
    border: solid var(--purple); /* Fialová fajka na zelenom */
    border-width: 0 3px 3px 0;
    transform: rotate(45deg) translate(-1px, -1px);
}

.checkbox-container input:checked ~ .checkmark-box:after {
    display: block;
}

/* Text vedľa checkboxu */
.legal-text {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.4;
}

.legal-text a {
    color: var(--lime);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.legal-text a:hover { color: #fff; }


/* =========================================
   HOME PAGE: INSIGHTS & BLOG SECTION (OPRAVENÉ FARBY)
   ========================================= */
.home-blog-section { 
    padding: 120px 20px; 
    background: #05000a; /* Natvrdo tmavá farba */
    position: relative; 
    z-index: 2; 
    border-top: 1px solid rgba(255, 255, 255, 0.08); 
}

.home-blog-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Hlavička sekcie */
.section-header-center { text-align: center; margin-bottom: 60px; }
.section-header-center .section-title { 
    font-family: 'Antonio', sans-serif; 
    font-size: clamp(2.5rem, 6vw, 4.5rem); 
    color: #ffffff; margin: 15px 0; text-transform: uppercase; line-height: 1.1;
}
.section-header-center .lime-text { color: #BDFF00; } /* Zladené s tvojou lime na hlavnej stránke */
.section-header-center .section-desc { 
    color: #a0a0a0; font-size: 1.1rem; max-width: 600px; margin: 0 auto; 
}

/* Sklenený odznak (Badge) */
.home-blog-section .badge-glass { 
    display: inline-block; padding: 8px 20px; background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50px; 
    font-weight: 800; font-size: 0.8rem; margin-bottom: 20px; color: #fff;
}

/* Mriežka */
.home-blog-grid { 
    display: grid; grid-template-columns: 1fr; gap: 30px; 
    max-width: 900px; 
    margin: 0 auto 50px auto; 
}

@media (min-width: 768px) { 
    .home-blog-grid { grid-template-columns: 1fr 1fr; } 
}

/* Karty článkov */
.home-blog-card { 
    background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.08); 
    border-radius: 20px; overflow: hidden; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
}
.home-blog-card:hover { 
    border-color: #BDFF00; transform: translateY(-5px); 
    box-shadow: 0 15px 40px rgba(189, 255, 0, 0.15); 
}
.home-blog-card .card-link { 
    text-decoration: none; display: flex; flex-direction: column; height: 100%; 
}

.home-blog-card .card-image { height: 220px; overflow: hidden; }
.home-blog-card .img-placeholder { width: 100%; height: 100%; transition: 0.5s; }
.home-blog-card:hover .img-placeholder { transform: scale(1.05); }

.home-blog-card .card-content { 
    padding: 30px; display: flex; flex-direction: column; flex-grow: 1; 
}
.home-blog-card .card-meta { font-size: 0.85rem; font-weight: 600; margin-bottom: 15px; }
.home-blog-card .card-meta .category { color: #BDFF00; }

.home-blog-card h3 { 
    font-family: 'Antonio', sans-serif; font-size: 1.6rem; color: #ffffff; 
    margin-bottom: 15px; line-height: 1.2; transition: 0.3s; 
}
.home-blog-card:hover h3 { color: #BDFF00; }
.home-blog-card .read-more { 
    margin-top: auto; font-size: 0.9rem; font-weight: bold; color: #ffffff; 
}

/* Tlačidlo na všetky články */
.center-btn-wrapper { text-align: center; }
.btn-outline-lime { 
    display: inline-block; padding: 15px 35px; border: 2px solid #BDFF00; 
    color: #BDFF00; border-radius: 50px; font-family: 'Antonio', sans-serif; 
    font-size: 1.2rem; font-weight: bold; text-decoration: none; transition: 0.3s; 
}
.btn-outline-lime:hover { 
    background: #BDFF00; color: #000; box-shadow: 0 0 20px rgba(189, 255, 0, 0.3); 
}
/* --- PREMIUM COOKIE MODAL --- */
.cookie-modal {
    position: fixed;
    bottom: 30px;
    right: 30px; /* Vpravo dole, neruší obsah */
    width: 400px;
    max-width: 90%;
    background: rgba(26, 0, 51, 0.95); /* Tmavá fialová */
    backdrop-filter: blur(15px); /* Glass efekt */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    z-index: 10000;
    
    /* Animácia príchodu */
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.cookie-modal.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.cookie-content {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.cookie-icon {
    font-size: 2.5rem;
    animation: floatCookie 3s ease-in-out infinite;
}

@keyframes floatCookie {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(10deg); }
}

.cookie-text h3 {
    font-family: 'Antonio', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.cookie-text p {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.btn-cookie-lime {
    flex: 1;
    background: #9eeb00; /* Lime */
    color: #1A0033;
    border: none;
    padding: 12px;
    border-radius: 50px;
    font-family: 'Antonio';
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    font-size: 1rem;
}
.btn-cookie-lime:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(158, 235, 0, 0.3); }

.btn-cookie-outline {
    flex: 1;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 12px;
    border-radius: 50px;
    font-family: 'Manrope';
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}
.btn-cookie-outline:hover { border-color: #fff; background: rgba(255,255,255,0.05); }

.cookie-link-small {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    text-decoration: none;
    transition: 0.2s;
}
.cookie-link-small:hover { color: #9eeb00; }

/* Mobile */
@media (max-width: 600px) {
    .cookie-modal {
        left: 20px; right: 20px; width: auto; bottom: 20px;
        padding: 25px;
    }
    .cookie-buttons { flex-direction: column-reverse; }
}

/* --- LEGAL PAGES & 404 --- */
.legal-page { padding: 150px 20px; max-width: 900px; margin: 0 auto; color: var(--purple); }
.legal-headline { font-size: clamp(3rem, 5vw, 5rem); line-height: 1; margin-bottom: 40px; }
.legal-content h2 { font-family: 'Antonio'; font-size: 2rem; margin-top: 40px; margin-bottom: 20px; }
.legal-content p { font-family: 'Manrope'; font-size: 1.1rem; line-height: 1.6; color: #555; margin-bottom: 20px; }
.legal-content ul { margin-left: 20px; margin-bottom: 20px; font-family: 'Manrope'; color: #555; }
.legal-content li { margin-bottom: 10px; }

/* 404 Specific */
.error-wrap { text-align: center; height: 80vh; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.error-code { font-size: 10rem; font-family: 'Antonio'; color: var(--lime); line-height: 1; }


/* --- PODSTRÁNKA SLUŽIEB --- */
.services-page-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 50px 20px;
}

.service-intro { text-align: center; margin-bottom: 100px; }
.service-main-title { font-size: clamp(3rem, 6vw, 6rem); color: var(--purple); line-height: 1; margin-bottom: 20px; }
.service-main-desc { font-size: 1.5rem; color: #666; font-family: 'Manrope'; }

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 150px;
}

/* Obrátené poradie pre dynamiku (Zig-Zag) */
.service-block.reverse .s-content { order: 2; }
.service-block.reverse .s-image { order: 1; }

.s-num {
    display: block; font-family: 'Antonio'; font-size: 4rem; color: #eee;
    line-height: 1; margin-bottom: 10px;
}

.s-content h2 {
    font-size: 3rem; color: var(--purple); margin-bottom: 20px;
}

.s-content p {
    font-size: 1.1rem; line-height: 1.6; color: #555; margin-bottom: 30px;
}

.s-list {
    list-style: none; margin-bottom: 40px;
}
.s-list li {
    margin-bottom: 15px; font-family: 'Manrope'; color: #444; position: relative; padding-left: 20px;
}
.s-list li::before {
    content: "•"; color: var(--lime); font-size: 2rem; position: absolute; left: 0; top: -5px;
}
.s-list strong { color: var(--purple); }

.s-image img {
    width: 100%; border-radius: 30px;
    box-shadow: 20px 20px 0px var(--lime);
    transition: 0.3s;
}
.s-image img:hover { transform: translate(-5px, -5px); box-shadow: 25px 25px 0px var(--purple); }

.btn-arrow-dark {
    text-decoration: none; color: var(--purple); font-weight: 800; font-family: 'Antonio';
    border-bottom: 2px solid var(--lime); font-size: 1.2rem; transition: 0.3s;
}
.btn-arrow-dark:hover { color: var(--lime); background: var(--purple); padding: 5px 10px; }

/* Mobile */
@media (max-width: 900px) {
    .service-block { grid-template-columns: 1fr; gap: 40px; margin-bottom: 100px; }
    .service-block.reverse .s-content { order: 1; }
    .service-block.reverse .s-image { order: 2; }
    .s-image img { box-shadow: 10px 10px 0px var(--lime); }
}

