/*
 * File: landing-style.css
 * Description: Styles for Landing Page
 * Version: 1.0.0
 */

/* --- 1. VARIABLES --- */
:root {
    --vidnok-glass: rgba(255, 255, 255, 0.05); 
    --vidnok-border: rgba(255, 255, 255, 0.15); 
    --vidnok-primary: #a855f7;
    --vidnok-secondary: #ec4899;
    --vidnok-text-main: #ffffff;
    --vidnok-text-muted: #cbd5e1;
    --bg-dark: #0f172a;
}

/* --- 2. RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg-dark);
    color: var(--vidnok-text-main);
    line-height: 1.6;
    margin: 0; padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

a { text-decoration: none; transition: 0.3s; color: inherit; }
.wp-site-blocks > footer, .site-footer, #colophon { display: none !important; }

/* --- 3. BACKGROUND --- */
.vidnok-fixed-bg {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: radial-gradient(circle at 50% 0%, #2e1065 0%, #0f172a 100%);
    z-index: -999; pointer-events: none;
}
.vidnok-fixed-bg::before { content: ''; position: absolute; width: 60vw; height: 60vh; background: #a855f7; top: -10%; left: -10%; border-radius: 50%; filter: blur(100px); opacity: 0.5; z-index: -1; animation: vidnokPulse 8s infinite alternate; }
.vidnok-fixed-bg::after { content: ''; position: absolute; width: 60vw; height: 60vh; background: #ec4899; bottom: -10%; right: -10%; border-radius: 50%; filter: blur(100px); opacity: 0.5; z-index: -1; animation: vidnokPulse 8s infinite alternate; }
@keyframes vidnokPulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.1); opacity: 0.7; } }

/* --- 4. HEADER --- */
.vidnok-header { position: fixed; top: 0; left: 0; width: 100%; height: 80px; display: flex; align-items: center; justify-content: space-between; padding: 0 40px; z-index: 1000; background: rgba(15, 23, 42, 0.5); backdrop-filter: blur(15px); border-bottom: 1px solid var(--vidnok-border); }
.vidnok-logo a { font-size: 1.5rem; font-weight: 800; color: white; text-transform: uppercase; }
.vidnok-logo img { height: 40px; width: auto; }
.vidnok-nav { display: flex; gap: 30px; position: absolute; left: 50%; transform: translateX(-50%); }
.vidnok-nav a { color: var(--vidnok-text-muted); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; }
.vidnok-nav a:hover { color: white; text-shadow: 0 0 15px var(--vidnok-primary); }
.v-cta-btn { background: rgba(255,255,255,0.1); border: 1px solid var(--vidnok-border); padding: 8px 20px; border-radius: 50px; color: white; font-weight: 700; font-size: 0.85rem; }
.v-cta-btn:hover { background: var(--vidnok-primary); border-color: var(--vidnok-primary); }
.vidnok-mobile-trigger { display: none; }

@media (max-width: 900px) {
    .vidnok-nav, .v-cta-btn { display: none !important; }
    .vidnok-header { padding: 0 20px; justify-content: flex-start; }
    .vidnok-mobile-trigger { display: flex; align-items: center; z-index: 1002; }
    .vidnok-logo { position: absolute; left: 50%; transform: translateX(-50%); margin: 0; z-index: 1001; }
    .vidnok-menu-btn { background: rgba(255,255,255,0.1); border: 1px solid var(--vidnok-border); border-radius: 8px; cursor: pointer; padding: 8px 12px; color: white; font-size: 1.2rem; }
}

/* --- 5. SIDEBAR --- */
.vidnok-sidebar-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); backdrop-filter: blur(5px); z-index: 2000; opacity: 0; visibility: hidden; transition: 0.3s; }
.vidnok-sidebar-overlay.active { opacity: 1; visibility: visible; }
.vidnok-mobile-sidebar { position: fixed; top: 0; left: 0; height: 100%; width: 300px; background: radial-gradient(circle at 0% 0%, #4c1d95 0%, #0f172a 100%); border-right: 1px solid rgba(255, 255, 255, 0.15); box-shadow: 10px 0 50px rgba(0,0,0,0.5); z-index: 2001; transform: translateX(-100%); transition: 0.4s; padding: 30px; display: flex; flex-direction: column; }
.vidnok-mobile-sidebar.active { transform: translateX(0); }
.vidnok-sidebar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; }
.v-menu-title { font-weight: 800; color: white; letter-spacing: 1px; }
.v-close-btn { color: white; font-size: 1.5rem; cursor: pointer; }
.vidnok-sidebar-links { display: flex; flex-direction: column; gap: 15px; }
.vidnok-sidebar-links a { display: flex; align-items: center; padding: 15px 20px; color: var(--vidnok-text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border-radius: 12px; background: linear-gradient(90deg, rgba(255,255,255,0.05) 0%, rgba(168, 85, 247, 0.05) 100%); border: 1px solid rgba(255, 255, 255, 0.08); transition: all 0.3s ease; }
.vidnok-sidebar-links a i { width: 24px; text-align: center; margin-right: 15px; color: white; }
.vidnok-sidebar-links a:hover { color: white; background: rgba(168, 85, 247, 0.25); border-color: var(--vidnok-primary); box-shadow: 0 0 25px rgba(168, 85, 247, 0.3); transform: translateX(5px); }

/* --- 6. LANDING CONTENT --- */
.vidnok-container { max-width: 1200px; margin: 0 auto; padding: 160px 20px 80px; position: relative; z-index: 1; }

.vidnok-hero-sec { text-align: center; margin-bottom: 100px; }
.vidnok-hero-sec h1 { font-size: 4rem; font-weight: 900; margin-bottom: 20px; line-height: 1.1; background: linear-gradient(135deg, #fff 0%, #a855f7 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.4)); }
.vidnok-hero-sec p { font-size: 1.3rem; color: var(--vidnok-text-muted); margin-bottom: 40px; max-width: 800px; margin: 0 auto; }
.v-hero-btn { display: inline-flex; align-items: center; background: linear-gradient(90deg, var(--vidnok-primary), var(--vidnok-secondary)); color: white; padding: 18px 40px; border-radius: 50px; font-size: 1.1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 10px 40px rgba(168, 85, 247, 0.4); transition: 0.3s; }
.v-hero-btn:hover { transform: translateY(-5px); box-shadow: 0 15px 50px rgba(236, 72, 153, 0.6); color: white; }

.vidnok-features-sec { margin-bottom: 100px; }

.v-sec-title { text-align: center; font-size: 1.7rem; margin-bottom: 50px; font-weight: 800; color: white; letter-spacing: 1px; }
.vidnok-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.vidnok-card { background: var(--vidnok-glass); border: 1px solid var(--vidnok-border); border-radius: 24px; padding: 40px; backdrop-filter: blur(20px); transition: 0.3s; height: 100%; display: flex; flex-direction: column; }
.vidnok-card:hover { transform: translateY(-10px); background: rgba(255,255,255,0.08); }
.v-glow-blue { border-bottom: 4px solid #38bdf8; } .v-glow-blue:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 10px 30px rgba(56, 189, 248, 0.2); border-color: #38bdf8; }
.v-glow-green { border-bottom: 4px solid #4ade80; } .v-glow-green:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 10px 30px rgba(74, 222, 128, 0.2); border-color: #4ade80; }
.v-glow-orange { border-bottom: 4px solid #fb923c; } .v-glow-orange:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 10px 30px rgba(251, 146, 60, 0.2); border-color: #fb923c; }
.v-icon-box { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 20px; }
.blue { background: rgba(56, 189, 248, 0.2); color: #38bdf8; } .green { background: rgba(74, 222, 128, 0.2); color: #4ade80; } .orange { background: rgba(251, 146, 60, 0.2); color: #fb923c; }
.vidnok-card h3 { font-size: 1.5rem; font-weight: 700; color: white; margin-bottom: 10px; }
.vidnok-card p { font-size: 1rem; color: var(--vidnok-text-muted); margin-bottom: 25px; }

.v-card-link {
    display: inline-flex; align-items: center;
    font-weight: 700; text-transform: uppercase; font-size: 0.9rem;
    color: white; transition: 0.3s;
    margin-top: auto; 
}
.v-card-link i { margin-left: 8px; transition: 0.3s; }
.v-card-link:hover { color: var(--vidnok-primary); text-shadow: 0 0 10px rgba(168, 85, 247, 0.5); }
.v-card-link:hover i { transform: translateX(5px); }

/* CTA Section */
.vidnok-cta-box { background: linear-gradient(135deg, rgba(46, 16, 101, 0.8), rgba(124, 58, 237, 0.8)); border: 1px solid var(--vidnok-border); border-radius: 30px; padding: 80px 40px; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,0.4); margin-bottom: 0px; }
.vidnok-cta-box h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 20px; color: white; }
.vidnok-cta-box p { font-size: 1.2rem; color: #e9d5ff; margin-bottom: 40px; max-width: 600px; margin: 0 auto; }
.v-cta-big-btn { display: inline-flex; align-items: center; background: white; color: var(--vidnok-primary); padding: 15px 40px; border-radius: 50px; font-size: 1rem; font-weight: 800; text-transform: uppercase; transition: 0.3s; }
.v-cta-big-btn:hover { background: #f0f0f0; transform: scale(1.05); }

/* --- 7. FOOTER --- */
.vidnok-landing-footer {
    background: rgba(15, 23, 42, 0.9);
    border-top: 1px solid var(--vidnok-border);
    padding: 60px 0 40px;
    margin-top: 50px;
}

.v-footer-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 40px;
    text-align: center;
    justify-content: center;
}

.v-footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.v-footer-col h4 { color: white; font-weight: 800; font-size: 1.2rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.v-footer-col p { color: var(--vidnok-text-muted); font-size: 0.9rem; max-width: 300px; }

.v-footer-col ul { 
    list-style: none; 
    padding: 0;
    margin: 0;
    width: 100%;
}
.v-footer-col ul li { margin-bottom: 12px; }
.v-footer-col a { color: var(--vidnok-text-muted); text-decoration: none; font-size: 0.95rem; transition: 0.3s; }
.v-footer-col a:hover { color: var(--vidnok-secondary); text-shadow: 0 0 10px var(--vidnok-secondary); padding-left: 5px; }

/* --- Social Links */
.v-social-links { 
    display: flex; 
    gap: 15px; 
    margin-top: 20px; 
    justify-content: center;
}

.v-social-links a { 
    background: rgba(255,255,255,0.1);
    width: 40px; 
    height: 40px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 50%;
    color: white; 
    transition: 0.3s; 
    font-size: 1.1rem; 
}

.v-social-links a:hover { 
    background: #334155;
    transform: translateY(-3px); 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); 
    color:
}
