/* --- ULTIMATE INTERACTIVE PROMO STYLE --- */
:root {
    --bg-dark: #05000a;
    --neon-lime: #9eeb00;
    --lime-glow: rgba(158, 235, 0, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background-color: var(--bg-dark); color: var(--text-main); font-family: 'Manrope', sans-serif; overflow-x: hidden; padding-bottom: 80px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.lime-text { color: var(--neon-lime); text-shadow: 0 0 20px var(--lime-glow); }

/* --- EFEKTY POZADIA --- */
.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: 10; opacity: 0.3; }

.glow-orb { position: fixed; border-radius: 50%; filter: blur(80px); opacity: 0.4; z-index: 0; pointer-events: none; animation: floatOrb 10s infinite alternate ease-in-out; }
.orb-1 { width: 400px; height: 400px; background: var(--neon-lime); top: -100px; left: -100px; }
.orb-2 { width: 300px; height: 300px; background: #6000ff; bottom: 10%; right: -50px; animation-duration: 15s; }
.orb-3 { width: 250px; height: 250px; background: #ff007a; top: 40%; left: 30%; opacity: 0.2; animation-duration: 12s; }

@keyframes floatOrb {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(50px) scale(1.1); }
}

/* --- HEADER --- */
.promo-header {
    position: fixed; top: 0; left: 0; width: 100%; padding: 20px; z-index: 50;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(5, 0, 10, 0.7); backdrop-filter: blur(15px); border-bottom: 1px solid var(--glass-border);
}
.logo { font-family: 'Antonio', sans-serif; font-size: 1.8rem; font-weight: bold; letter-spacing: 2px; }
.header-cta { background: var(--glass-bg); color: #fff; text-decoration: none; padding: 10px 20px; border-radius: 50px; border: 1px solid var(--neon-lime); font-size: 0.8rem; font-weight: 800; transition: 0.3s; }

/* --- HERO SEKCIA --- */
.mega-hero { min-height: 100dvh; display: flex; align-items: center; padding-top: 80px; position: relative; z-index: 2; text-align: left; }
.badge-glass { display: inline-flex; align-items: center; gap: 10px; padding: 8px 20px; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 50px; font-weight: 800; font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 30px; backdrop-filter: blur(10px); }
.dot-blink { width: 10px; height: 10px; background: var(--neon-lime); border-radius: 50%; box-shadow: 0 0 10px var(--neon-lime); animation: blink 1.5s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-title { font-family: 'Antonio', sans-serif; font-size: clamp(3rem, 10vw, 6rem); line-height: 1; margin-bottom: 25px; text-transform: uppercase; }
.hero-desc { font-size: clamp(1rem, 4vw, 1.2rem); color: var(--text-muted); max-width: 600px; line-height: 1.6; margin-bottom: 40px; }

.btn-neon {
    display: inline-flex; align-items: center; gap: 15px; padding: 20px 40px;
    background: var(--neon-lime); color: #000; font-family: 'Antonio', sans-serif;
    font-size: 1.3rem; font-weight: bold; border-radius: 50px; text-decoration: none;
    box-shadow: 0 0 30px rgba(158, 235, 0, 0.4); transition: 0.3s;
}
.btn-neon:hover { transform: scale(1.05); box-shadow: 0 0 50px rgba(158, 235, 0, 0.6); background: #fff; }

/* --- MARQUEE --- */
.marquee-wrapper { width: 100%; overflow: hidden; background: var(--neon-lime); color: #000; padding: 15px 0; position: relative; z-index: 2; transform: rotate(-2deg) scale(1.05); margin: 40px 0; }
.marquee-content { display: flex; white-space: nowrap; animation: scrollMarquee 15s linear infinite; font-family: 'Antonio', sans-serif; font-size: 1.5rem; font-weight: bold; }
.marquee-content span { padding: 0 20px; }
.star { opacity: 0.5; }
@keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- KARTY --- */
.pain-points { padding: 80px 0; position: relative; z-index: 2; }
.section-heading { font-family: 'Antonio', sans-serif; font-size: clamp(2.5rem, 8vw, 4rem); margin-bottom: 10px; text-align: center; }
.section-sub { text-align: center; color: var(--text-muted); margin-bottom: 50px; }

.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.glass-card { background: var(--glass-bg); border: 1px solid var(--glass-border); padding: 40px 30px; border-radius: 20px; backdrop-filter: blur(10px); transition: transform 0.2s ease-out; }
.card-icon { font-size: 3rem; margin-bottom: 20px; }
.glass-card h3 { font-family: 'Antonio', sans-serif; font-size: 1.8rem; margin-bottom: 15px; }
.glass-card p { color: var(--text-muted); line-height: 1.6; }

/* --- RIEŠENIA --- */
.benefits-section { padding: 80px 0; position: relative; z-index: 2; border-top: 1px solid var(--glass-border); }
.split-layout { display: grid; grid-template-columns: 1fr; gap: 50px; align-items: center; }
.big-sub { font-family: 'Antonio', sans-serif; font-size: 2.5rem; margin-bottom: 20px; }
.check-list { list-style: none; margin-top: 30px; display: flex; flex-direction: column; gap: 20px; }
.check-list li { display: flex; gap: 15px; align-items: flex-start; }
.check-icon { background: rgba(158, 235, 0, 0.2); color: var(--neon-lime); width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-weight: bold; flex-shrink: 0; }
.check-list strong { display: block; font-size: 1.2rem; margin-bottom: 5px; }
.check-list span { color: var(--text-muted); font-size: 0.95rem; }

/* Fake Mockup UI */
.floating-mockup { background: #111; border: 1px solid #333; border-radius: 15px; padding: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.8); transform: perspective(1000px) rotateY(-5deg) rotateX(5deg); transition: 0.5s; }
.floating-mockup:hover { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }
.mockup-header { display: flex; gap: 8px; margin-bottom: 20px; }
.circle { width: 12px; height: 12px; border-radius: 50%; }
.red { background: #ff5f56; } .yellow { background: #ffbd2e; } .green { background: #27c93f; }
.skeleton-line { height: 10px; background: #333; border-radius: 5px; margin-bottom: 15px; width: 100%; }
.short { width: 60%; }
.mockup-btn { display: inline-block; padding: 10px 20px; background: var(--neon-lime); color: #000; border-radius: 5px; text-decoration: none; font-weight: bold; margin-top: 10px; }

/* --- PROCES --- */
.process-section { padding: 80px 0; position: relative; z-index: 2; text-align: center; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.step { background: linear-gradient(180deg, var(--glass-bg), transparent); border: 1px solid var(--glass-border); padding: 40px 20px; border-radius: 20px; }
.step-num { font-family: 'Antonio', sans-serif; font-size: 4rem; color: rgba(158, 235, 0, 0.2); margin-bottom: 10px; line-height: 1; }
/* --- ULTIMATE UX/UI FORMULÁR (SPLIT-SCREEN & APP FLOW) --- */
.ultimate-form-section {
    width: 100%;
    min-height: 100dvh; /* Plná výška na mobile aj PC */
    position: relative;
    z-index: 2;
    background: #030005; /* Úplne temné pozadie pre kontrast */
    border-top: 1px solid var(--glass-border);
}

.form-split-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100dvh;
}

/* ĽAVÁ STRANA (INFO) */
.form-info-side {
    padding: 60px 20px 40px 20px;
    background: radial-gradient(circle at top left, rgba(158,235,0,0.05) 0%, transparent 70%);
}
.sticky-content { position: relative; }

.massive-form-title { font-family: 'Antonio', sans-serif; font-size: clamp(3rem, 10vw, 5rem); line-height: 1; margin-bottom: 15px; }
.form-sub-text { color: var(--text-muted); font-size: 1.1rem; line-height: 1.6; max-width: 400px; margin-bottom: 40px; }

/* Tracker Krok za Krokom (Namiesto nudnej čiary) */
.ux-progress-tracker { display: flex; align-items: center; gap: 15px; max-width: 400px; }
.tracker-step { display: flex; align-items: center; gap: 10px; opacity: 0.3; transition: 0.3s; }
.tracker-step.active { opacity: 1; }
.track-dot { width: 30px; height: 30px; border-radius: 50%; background: var(--glass-bg); border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; font-family: 'Antonio'; font-weight: bold; font-size: 1rem; transition: 0.3s; }
.tracker-step.active .track-dot { background: var(--neon-lime); color: #000; border-color: var(--neon-lime); box-shadow: 0 0 15px var(--lime-glow); }
.tracker-step.completed .track-dot { background: #fff; color: #000; border-color: #fff; }
.tracker-step span { font-size: 0.9rem; font-weight: bold; display: none; } /* Na mobile skryjeme texty pre čistotu */
.tracker-line { flex-grow: 1; height: 2px; background: var(--glass-border); transition: 0.3s; }
.tracker-line.active { background: var(--neon-lime); }

/* PRAVÁ STRANA (FORMULÁR) */
.form-interactive-side {
    flex-grow: 1;
    padding: 20px 20px 80px 20px; /* Priestor dole pre sticky tlačidlo */
    position: relative;
    overflow: hidden; /* Dôležité pre slide animáciu */
}

.ux-wizard { width: 100%; max-width: 500px; margin: 0 auto; position: relative; }
.steps-container { position: relative; width: 100%; min-height: 400px; }

/* Kroky (App-like slide efekt) */
.ux-step {
    position: absolute; top: 0; left: 0; width: 100%;
    opacity: 0; visibility: hidden;
    transform: translateX(50px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.ux-step.active { opacity: 1; visibility: visible; transform: translateX(0); position: relative; }
.ux-step.slide-out-left { opacity: 0; visibility: hidden; transform: translateX(-50px); position: absolute; }

.step-question { font-family: 'Antonio', sans-serif; font-size: clamp(2rem, 6vw, 2.5rem); margin-bottom: 5px; line-height: 1.1; }
.step-hint { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 30px; }

/* App-like Karty */
.app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.app-grid.one-col { grid-template-columns: 1fr; }
.app-card input[type="radio"] { display: none; }

.card-ui {
    background: rgba(255,255,255,0.02); border: 2px solid rgba(255,255,255,0.05);
    border-radius: 20px; padding: 25px 15px; text-align: center;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    cursor: pointer; transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1); height: 100%;
}
.app-card.horizontal .card-ui { flex-direction: row; text-align: left; justify-content: flex-start; gap: 20px; padding: 25px 20px; }

.card-ui .icon { font-size: 2.5rem; margin-bottom: 15px; transition: 0.3s; }
.app-card.horizontal .icon { margin-bottom: 0; font-size: 2rem; }
.card-ui .title { display: block; font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.1rem; color: #fff; margin-bottom: 5px; }
.card-ui .desc { display: block; font-size: 0.8rem; color: var(--text-muted); }

/* Hover & Active efekty pre karty */
.app-card:hover .card-ui { background: rgba(255,255,255,0.05); transform: translateY(-3px); }
.app-card input[type="radio"]:checked + .card-ui {
    background: rgba(158, 235, 0, 0.05); border-color: var(--neon-lime);
    box-shadow: 0 10px 30px rgba(158, 235, 0, 0.15); transform: scale(0.97);
}
.app-card input[type="radio"]:checked + .card-ui .icon { transform: scale(1.1); }

/* Inputy (Plávajúce štítky) */
.modern-inputs { display: flex; flex-direction: column; gap: 25px; margin-bottom: 30px; }
.input-float { position: relative; }
.input-float input {
    width: 100%; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; color: #fff; padding: 22px 20px 10px 20px; font-family: 'Manrope'; 
    font-size: 16px; /* 16px je MEGA dôležité na iOS proti zoomu */
    transition: 0.3s;
}
.input-float input:focus { border-color: var(--neon-lime); outline: none; background: rgba(158,235,0,0.02); }
.input-float label { position: absolute; top: 18px; left: 20px; color: var(--text-muted); font-size: 1rem; pointer-events: none; transition: 0.3s; }
.input-float input:focus ~ label, .input-float input:not(:placeholder-shown) ~ label { top: 8px; font-size: 0.7rem; color: var(--neon-lime); font-weight: bold; text-transform: uppercase; letter-spacing: 1px; }

/* Akcie a tlačidlá */
.step-actions { margin-top: 20px; display: flex; flex-direction: column; gap: 15px; }
.step-actions.split { flex-direction: column-reverse; }

.btn-text-only { background: transparent; color: var(--text-muted); border: none; font-size: 1rem; font-family: 'Manrope'; font-weight: bold; cursor: pointer; padding: 10px; transition: 0.3s; text-align: left; }
.btn-text-only:hover { color: #fff; }

.btn-mega-submit { width: 100%; background: var(--neon-lime); color: #000; border: none; padding: 22px; border-radius: 15px; font-family: 'Antonio'; font-size: 1.5rem; font-weight: bold; cursor: pointer; transition: 0.3s; box-shadow: 0 0 30px rgba(158, 235, 0, 0.2); }
.btn-mega-submit:hover { background: #fff; box-shadow: 0 0 50px rgba(255, 255, 255, 0.4); }
.gdpr-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 15px;
    line-height: 1.4;
}
.gdpr-disclaimer a {
    color: var(--text-muted);
    text-decoration: underline;
    transition: 0.3s;
}
.gdpr-disclaimer a:hover {
    color: var(--neon-lime);
}
/* --- DESKTOP SPLIT SCREEN ÚPRAVY --- */
@media (min-width: 900px) {
    .form-split-layout { flex-direction: row; align-items: stretch; max-width: 1600px; margin: 0 auto; }
    
    .form-info-side { width: 40%; padding: 100px 50px; background: rgba(255,255,255,0.02); border-right: 1px solid var(--glass-border); }
    .sticky-content { position: sticky; top: 150px; }
    .tracker-step span { display: block; } /* Na PC ukážeme aj text pod guličkami */
    
    .form-interactive-side { width: 60%; padding: 100px 80px; display: flex; align-items: center; }
    .ux-wizard { max-width: 600px; margin: 0; }
    
    .step-actions.split { flex-direction: row; justify-content: space-between; align-items: center; }
    .btn-mega-submit { width: auto; padding: 20px 40px; }
}

/* STICKY CTA */
.sticky-bottom-bar { position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(5,0,10,0.9); backdrop-filter: blur(10px); padding: 15px 20px; z-index: 100; border-top: 1px solid var(--glass-border); display: flex; justify-content: center; }
.sticky-cta { width: 100%; max-width: 400px; background: var(--neon-lime); color: #000; text-align: center; padding: 15px; border-radius: 50px; font-family: 'Antonio', sans-serif; font-size: 1.2rem; font-weight: bold; text-decoration: none; }
.pulse-btn { animation: pulseAnim 2s infinite; }
@keyframes pulseAnim { 0% { transform: scale(1); } 50% { transform: scale(1.02); } 100% { transform: scale(1); } }

/* --- DESKTOP ÚPRAVY --- */
@media (min-width: 600px) { 
    .interactive-form-wrapper { padding: 50px 40px; border-radius: 30px; }
    .choice-grid { gap: 15px; }
    .choice-grid.two-cols { grid-template-columns: 1fr 1fr; } 
    .card-body { padding: 25px 15px; }
    .card-body .icon { font-size: 2.5rem; margin-bottom: 12px; }
    .card-body .text { font-size: 1rem; }
    
    .step-footer { flex-direction: row; gap: 15px; justify-content: flex-end; }
    .step-footer.split { flex-direction: row; justify-content: space-between; align-items: center; }
    
    .btn-step-next, .btn-step-prev { width: auto; padding: 15px 35px; }
    .btn-neon-submit { width: auto; padding: 15px 40px; }
}



/* STICKY CTA */
.sticky-bottom-bar { position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(5,0,10,0.9); backdrop-filter: blur(10px); padding: 15px 20px; z-index: 100; border-top: 1px solid var(--glass-border); display: flex; justify-content: center; }
.sticky-cta { width: 100%; max-width: 400px; background: var(--neon-lime); color: #000; text-align: center; padding: 15px; border-radius: 50px; font-family: 'Antonio', sans-serif; font-size: 1.2rem; font-weight: bold; text-decoration: none; }
.pulse-btn { animation: pulseAnim 2s infinite; }
@keyframes pulseAnim { 0% { transform: scale(1); } 50% { transform: scale(1.02); } 100% { transform: scale(1); } }

/* Desktop */
@media (min-width: 600px) { .choice-grid.two-cols { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) {
    .promo-header { padding: 30px 50px; }
    .mega-hero { text-align: center; padding-top: 150px; justify-content: center; }
    .hero-desc { margin: 0 auto 40px auto; }
    .badge-glass { margin: 0 auto 30px auto; }
    .split-layout { grid-template-columns: 1fr 1fr; }
    .sticky-bottom-bar { display: none; }
    body { padding-bottom: 0; }
}

