/* --- BAZA --- */
:root {
    --bg-dark: #0f172a; 
    --bg-card: #1e293b; 
    --accent: #3b82f6; 
    --text-main: #f8fafc; 
    --text-muted: #94a3b8; 
    --success: #10b981;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; scroll-behavior: smooth; }
body { background-color: var(--bg-dark); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- COOKIE BANNER --- */
#cookie-banner {
    position: fixed; bottom: -100px; left: 0; width: 100%;
    background: rgba(15, 23, 42, 0.95); border-top: 1px solid var(--accent);
    padding: 15px 20px; display: flex; justify-content: center; align-items: center; gap: 20px;
    z-index: 2000; transition: bottom 0.5s ease-in-out;
    backdrop-filter: blur(10px); flex-wrap: wrap; text-align: center;
}
#cookie-banner p { font-size: 0.9rem; color: var(--text-muted); }
#cookie-btn {
    background: var(--accent); color: white; border: none; padding: 8px 20px;
    border-radius: 5px; cursor: pointer; font-weight: bold;
}
#cookie-btn:hover { background: #2563eb; }

/* --- NAWIGACJA --- */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.2rem 5%; position: fixed; width: 100%; top: 0;
    background: rgba(15, 23, 42, 0.9); backdrop-filter: blur(15px); z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.logo { font-size: 1.5rem; font-weight: 800; color: var(--text-main); }
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a:hover { color: var(--accent); }
.btn-cta {
    background: linear-gradient(135deg, var(--accent), #2563eb);
    color: white; padding: 0.6rem 1.8rem; border-radius: 50px; font-weight: 600;
}
.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; }

/* --- HERO --- */
.hero {
    min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; padding: 80px 20px 20px;
    background: radial-gradient(circle at 50% 30%, #1e293b 0%, #0f172a 70%);
}
.hero h1 { font-size: 3.5rem; margin-bottom: 1rem; line-height: 1.1; font-weight: 800; }
.hero span { color: var(--accent); }
.hero p { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin-bottom: 2.5rem; }
.badges { display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; justify-content: center; }
.badge { background: rgba(255,255,255,0.05); padding: 5px 15px; border-radius: 20px; font-size: 0.85rem; border: 1px solid rgba(255,255,255,0.1); }

/* --- SEKCJE --- */
.section { padding: 5rem 10%; }
.dark-section { background: #162033; }
.section-title { text-align: center; font-size: 2.2rem; margin-bottom: 3rem; font-weight: 700; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.card {
    background: var(--bg-card); padding: 2rem; border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05); transition: 0.3s;
}
.card:hover { transform: translateY(-5px); border-color: var(--accent); }
.card h3 { font-size: 1.4rem; margin-bottom: 1rem; color: var(--text-main); }
.card-icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 1rem; }
.card ul li { margin-bottom: 0.5rem; color: var(--text-muted); font-size: 0.9rem; }
.card ul li i { color: var(--success); margin-right: 8px; }

/* --- CENNIK --- */
.price-row { display: flex; justify-content: space-between; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.price-val { color: var(--accent); font-weight: 700; }
.pricing-box { background: var(--bg-card); padding: 2rem; border-radius: 20px; max-width: 800px; margin: 0 auto; }
.success-text { color: var(--success); }

/* --- KONTAKT --- */
.contact { text-align: center; background: #162033; border-top: 1px solid var(--accent); }
.phone-big { font-size: 3rem; font-weight: 800; display: block; margin: 1.5rem 0; }
.phone-big:hover { color: var(--accent); }

/* --- MOBILE & FLOATING --- */
.float-btn {
    position: fixed; bottom: 20px; right: 20px; width: 60px; height: 60px;
    background: var(--success); color: white; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; font-size: 1.5rem; z-index: 999;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.5); display: none;
}
footer { text-align: center; padding: 2rem; color: var(--text-muted); font-size: 0.8rem; }

@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; right: 0; width: 100%; background: var(--bg-card); padding: 2rem; }
    .nav-links.active { display: flex; }
    .menu-toggle { display: block; }
    .hero h1 { font-size: 2.2rem; }
    .float-btn { display: flex; }
    .btn-cta { display: none; }
}