/* --- ZMIENNE I RESET --- */
:root {
    --bg-dark: #021819;
    --bg-card: #0B2A2B;
    --bg-menu: #042224;
    --primary: #4FD1C5;
    --primary-gradient: linear-gradient(135deg, #4FD1C5 0%, #2C7A7B 100%);
    --text-light: #F7FAFC;
    --text-muted: #A0AEC0;
    
    --spacing-section: 120px;
    --radius-btn: 50px;
    --container-width: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

h1, h2, h3, h4 { font-family: 'Manrope', sans-serif; color: #fff; line-height: 1.1; }

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 42px; 
    background: var(--primary-gradient);
    color: #ffffff; 
    font-weight: 700;
    border-radius: var(--radius-btn);
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(79, 209, 197, 0.3);
}
.btn:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 25px rgba(79, 209, 197, 0.5); 
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 12px 35px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
}
.btn-outline:hover { background: rgba(79, 209, 197, 0.1); }

.btn-white {
    background: #fff;
    color: var(--primary);
    padding: 14px 42px;
    border-radius: var(--radius-btn);
    font-weight: 800;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.btn-white:hover { background: #f0f0f0; transform: translateY(-2px); }

.text-accent { color: var(--primary); font-weight: 600; letter-spacing: 1px; font-size: 0.9rem; text-transform: uppercase; }

header {
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}
header.scrolled {
    background: rgba(2, 24, 25, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
nav { display: flex; justify-content: space-between; align-items: center; }

.logo-container {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 6px 18px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}
.logo-img {
    height: 52px;
    width: auto;
    display: block;
}

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-item { position: relative; }

.nav-link { 
    font-size: 0.95rem; 
    color: #ccc; 
    font-weight: 500; 
    padding: 10px 0; 
    display: flex; align-items: center; gap: 5px;
}
.nav-link:hover { color: #fff; }
.nav-link i { font-size: 0.8rem; margin-top: 2px; }

.dropdown-menu {
    position: absolute; top: 100%; left: 0;
    background-color: var(--bg-card);
    min-width: 200px; border-radius: 12px; padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all 0.3s ease; z-index: 1002;
    border: 1px solid rgba(255,255,255,0.05);
}
.nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { display: block; padding: 10px 20px; color: var(--text-muted); font-size: 0.9rem; white-space: nowrap; }
.dropdown-menu li a:hover { color: var(--primary); background: rgba(255,255,255,0.02); }

.burger { display: none; cursor: pointer; z-index: 1001; font-size: 1.8rem; color: var(--primary); margin-left: 20px; }

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 { font-size: 3.8rem; margin-bottom: 30px; font-weight: 800; line-height: 1.1; }
.hero-content p { color: var(--text-muted); font-size: 1.15rem; margin-bottom: 40px; max-width: 500px; line-height: 1.6; }

.hero-visual {
    position: relative;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: levitate 4s ease-in-out infinite;
    animation-delay: 1.5s; 
}

@keyframes levitate {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.circle-bg {
    width: 600px; 
    height: 600px;
    background: var(--primary-gradient);
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 60px rgba(79, 209, 197, 0.4); 
}

.hero-img-popout {
    position: relative;
    z-index: 2;
    width: 115%;
    height: 115%;
    max-width: none;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid #4FD1C5;
    left: 0;
    top: 0;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0.6) translateY(20px);
    animation: driveIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes driveIn {
    0% { opacity: 0; transform: scale(0.6) translateY(50px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-badge {
    position: absolute; bottom: 80px; left: 0; z-index: 3;
    background: rgba(15, 30, 30, 0.9); backdrop-filter: blur(12px);
    padding: 16px 30px; border-radius: 12px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    display: flex; align-items: center; gap: 15px; min-width: 280px;
    
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 1s;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge i { font-size: 1.8rem; color: var(--primary); }
.hero-badge-text { display: flex; flex-direction: column; }
.hero-badge-text span.label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.hero-badge-text span.value { font-size: 1.1rem; color: #fff; font-weight: 700; }

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.features { padding: var(--spacing-section) 0; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-header h2 { font-size: 2.8rem; margin-top: 10px; margin-bottom: 20px; }
.section-header p { color: var(--text-muted); max-width: 700px; margin: 0 auto; font-size: 1.1rem; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.feature-card { padding: 25px; transition: 0.3s; background: transparent; border-radius: 16px; border: 1px solid transparent; }
.feature-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.02); border-color: rgba(255,255,255,0.05); }
.icon-box { width: 64px; height: 64px; background: rgba(79, 209, 197, 0.1); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.8rem; margin-bottom: 24px; }
.feature-card h3 { font-size: 1.3rem; margin-bottom: 16px; font-weight: 700; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

.about-split { padding: var(--spacing-section) 0; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.split-grid img { border-radius: 20px; width: 100%; box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.about-content h2 { font-size: 2.8rem; margin-bottom: 15px; }
.about-content h3 { font-size: 1.2rem; color: var(--primary); margin-bottom: 30px; font-weight: 600; }
.about-content p { color: var(--text-muted); margin-bottom: 20px; font-size: 1rem; }

.offer-section { padding: var(--spacing-section) 0; background: rgba(255,255,255,0.01); }
.offer-intro { text-align: center; max-width: 800px; margin: 0 auto 60px auto; }
.offer-intro h2 { font-size: 2.5rem; margin-bottom: 15px; }
.offer-intro p { color: var(--text-muted); font-size: 1.1rem; }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.offer-card { background: var(--bg-card); padding: 40px 30px; border-radius: 20px; text-align: left; transition: 0.3s; border: 1px solid rgba(255,255,255,0.03); display: flex; flex-direction: column; justify-content: space-between; }
.offer-card:hover { transform: translateY(-10px); border-color: var(--primary); }
.offer-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: #fff; }
.offer-card p { color: var(--text-muted); margin-bottom: 25px; line-height: 1.6; }
.read-more { color: var(--primary); font-weight: 700; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 8px; }
.read-more:hover { gap: 12px; }

.stats-gradient-section { padding: 50px 0; }
.gradient-box { 
    background: var(--primary-gradient); 
    border-radius: 30px; 
    padding: 80px 70px; 
    display: flex; align-items: center; justify-content: space-between; gap: 60px;
}
.gradient-content-left { width: 35%; display: flex; flex-direction: column; gap: 30px; align-items: flex-start; }
.gradient-content-left h2 { color: #fff; font-size: 3rem; margin: 0; line-height: 1; font-weight: 800; }
.gradient-content-left p { color: rgba(255,255,255,0.85); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }
.stats-grid-6 { width: 60%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.stat-item-box { text-align: left; background: none; border: none; padding: 0; }
.stat-item-box h4 { font-size: 2.2rem; font-weight: 800; color: #fff; margin-bottom: 8px; line-height: 1; }
.stat-item-box span { color: #fff; font-size: 0.85rem; font-weight: 600; opacity: 0.85; display: block; line-height: 1.4; }

footer {
    padding: 80px 0 0 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 60px;
    background-color: #011213;
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.contact-block strong { color: #fff; font-size: 1.1rem; display: block; margin-bottom: 5px; }
.contact-block p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
    text-align: right;
}

.contact-list-right { list-style: none; margin-bottom: 10px; }
.contact-list-right li { 
    display: flex; 
    align-items: flex-start; 
    gap: 10px; 
    color: var(--text-muted); 
    margin-bottom: 12px;
    justify-content: flex-end;
}
.contact-list-right li i { color: var(--primary); margin-top: 5px; }

.footer-socials-right { display: flex; gap: 15px; justify-content: flex-end; }
.footer-socials-right i { color: #A0AEC0; font-size: 1.2rem; cursor: pointer; transition: 0.3s; }
.footer-socials-right i:hover { color: var(--primary); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #555;
}

.privacy-link a { color: var(--text-muted); text-decoration: none; font-weight: 500; }
.privacy-link a:hover { color: #fff; }

.pixelshark { color: var(--text-muted); }
.pixelshark a { color: #fff; font-weight: 600; text-decoration: none; }
.pixelshark i { color: var(--primary); animation: beat 1.5s infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } }

@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 60px; }
    .hero-content h1 { font-size: 3.5rem; }
    .hero-content p { margin: 0 auto 40px auto; }
    .hero-visual { height: 500px; margin-top: 0; }
    
    .hero-img-popout { 
        left: 0; right: 0; 
        margin: 0 auto; 
        width: 100%; 
        height: 100%;
        transform: none !important; 
        animation: driveInMobile 1.2s forwards;
    }

    @keyframes driveInMobile {
        0% { opacity: 0; transform: translateY(50px) scale(0.6); }
        100% { opacity: 1; transform: translateY(0) scale(1); }
    }

    .circle-bg { width: 450px; height: 450px; }
    
    .hero-badge { 
        left: 50%; 
        transform: translateX(-50%);
        bottom: -20px; 
        
        width: 90%;
        max-width: 400px;
        min-width: auto; 
        justify-content: center;
        padding: 15px 20px;
        box-sizing: border-box;

        animation: fadeInUpMobile 0.8s ease-out forwards;
        animation-delay: 1s;
    }
    
    @keyframes fadeInUpMobile {
        from { 
            opacity: 0; 
            transform: translate(-50%, 20px); 
        }
        to { 
            opacity: 1; 
            transform: translate(-50%, 0); 
        }
    }
    
    .features-grid, .offer-grid { grid-template-columns: 1fr 1fr; }
    .split-grid { grid-template-columns: 1fr; gap: 50px; }
    
    .gradient-box { flex-direction: column; text-align: center; gap: 40px; padding: 50px 30px; }
    .gradient-content-left { width: 100%; align-items: center; }
    .stats-grid-6 { width: 100%; grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .stat-item-box { text-align: center; } 

    .footer-contact-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-left { align-items: center; }
    .footer-right { align-items: center; text-align: center; }
    .contact-list-right li { justify-content: center; }
    .footer-socials-right { justify-content: center; }
}

@media (max-width: 768px) {
    .burger { display: block; }
    .nav-links {
        position: fixed; right: -100%; top: 0; height: 100vh; background-color: var(--bg-menu);
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        width: 100%; transition: 0.4s ease-in-out; z-index: 1000; gap: 30px;
        overflow-y: auto; padding: 40px 0;
    }
    .nav-links.active { right: 0; }
    .nav-link { font-size: 1.4rem; font-weight: 700; flex-direction: column; }
    .nav-link i { display: none; } 
    
    .dropdown-menu {
        position: static; background: transparent; box-shadow: none; opacity: 1; visibility: visible; transform: none; border: none;
        text-align: center; padding: 0; display: block; margin-bottom: 20px;
    }
    .dropdown-menu li a { font-size: 1.1rem; color: #888; padding: 5px 0; }
    .nav-btn-desktop { display: none; }

    .hero { padding-top: 120px; padding-bottom: 60px; min-height: auto; }
    
    .hero-content h1 { font-size: 2.5rem; margin-bottom: 20px; }
    
    .hero-visual { height: 400px; margin-bottom: 40px; }
    .circle-bg { width: 320px; height: 320px; }
    
    .features-grid, .offer-grid { grid-template-columns: 1fr; gap: 20px; }
    
    .feature-card { text-align: center; }
    .icon-box { margin: 0 auto 20px auto; }
    
    .stats-grid-6 { grid-template-columns: 1fr; gap: 30px; }
    
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}
