 :root {
            --primary: #47B25B; /* Zelená zo screenshotu aplikácie */
            --secondary: #111827; 
            --bg-light: #F9FAFB;
            --white: #ffffff;
            --text-muted: #6B7280;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', -apple-system, sans-serif; color: var(--secondary); background: var(--white); line-height: 1.6; }

        /* Navigácia */
        header { padding: 1.2rem 8%; display: flex; justify-content: space-between; align-items: center; background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(0,0,0,0.05); }
        .logo { font-size: 1.5rem; font-weight: 800; color: var(--primary); text-decoration: none; letter-spacing: -0.5px; }
        .nav-right { display: flex; align-items: center; gap: 2rem; }
        .lang-link { text-decoration: none; color: var(--text-muted); font-weight: 600; font-size: 0.85rem; padding: 5px 10px; border: 1px solid #E5E7EB; border-radius: 6px; transition: 0.2s; }
        .lang-link:hover { border-color: var(--primary); color: var(--primary); }

        /* Hero Sekcia */
        .hero { padding: 8rem 8% 6rem; display: flex; align-items: center; gap: 5rem; max-width: 1400px; margin: 0 auto; }
        .hero-content { flex: 1.2; }
        .hero-content h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 1.5rem; color: var(--secondary); font-weight: 900; }
        .hero-content p { font-size: 1.25rem; color: #4B5563; margin-bottom: 3rem; max-width: 550px; }

        .app-badges { display: flex; gap: 1rem; flex-wrap: wrap; }
        .badge { background: #000; color: #fff; padding: 0.9rem 2rem; border-radius: 12px; text-decoration: none; font-weight: 600; display: flex; align-items: center; gap: 0.8rem; transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
        .badge:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); }

        .hero-image { flex: 0.8; display: flex; justify-content: center; position: relative; }
        .phone-container { width: 320px; position: relative; }
        .phone-mockup { width: 100%; height: 650px; background: #111; border-radius: 45px; border: 12px solid #18181b; overflow: hidden; box-shadow: 0 50px 100px rgba(0,0,0,0.2); position: relative; z-index: 2; }
        .phone-mockup img { width: 100%; height: 100%; object-fit: cover; }
        /* Dekoratívny prvok za telefónom */
        .phone-bg-blob { position: absolute; width: 400px; height: 400px; background: var(--primary); filter: blur(80px); opacity: 0.15; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1; }

        /* Sekcia Funkcie */
        .features { padding: 8rem 8%; background: var(--bg-light); }
        .features-header { text-align: center; max-width: 700px; margin: 0 auto 5rem; }
        .section-tag { color: var(--primary); font-weight: 800; text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; margin-bottom: 1rem; display: block; }
        .features-header h2 { font-size: 2.8rem; font-weight: 900; color: var(--secondary); }

        .feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; }
        .feature-card { background: var(--white); padding: 4rem 2.5rem; border-radius: 32px; box-shadow: var(--shadow); transition: 0.4s; border: 1px solid rgba(0,0,0,0.02); }
        .feature-card:hover { transform: translateY(-15px); border-color: var(--primary); }
        .feature-icon { width: 60px; height: 60px; background: var(--bg-light); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 2rem; }
        .feature-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
        .feature-card p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; }

        /* Pätička */
        footer { padding: 6rem 8% 3rem; background: var(--secondary); color: #fff; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 4rem; margin-bottom: 5rem; }
        .footer-info p { color: #9CA3AF; margin-top: 1.5rem; max-width: 300px; }
        .footer-col h4 { margin-bottom: 2rem; font-size: 1.1rem; color: var(--white); }
        .footer-col a { color: #9CA3AF; text-decoration: none; display: block; margin-bottom: 1rem; font-size: 0.95rem; transition: 0.2s; }
        .footer-col a:hover { color: var(--primary); padding-left: 5px; }
        
        .legal-footer { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 3rem; display: flex; justify-content: space-between; align-items: center; color: #6B7280; font-size: 0.85rem; }

        @media (max-width: 1100px) {
            .hero { flex-direction: column; text-align: center; padding-top: 5rem; gap: 4rem; }
            .hero-content h1 { font-size: 3rem; }
            .hero-content p { margin: 0 auto 3rem; }
            .app-badges { justify-content: center; }
        }