/* =========================================
   CUSTOM SCROLLBAR
========================================= */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--bg-card); border-radius: 4px; border: 1px solid rgba(255,255,255,0.05); }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
html { scrollbar-width: thin; scrollbar-color: var(--bg-card) var(--bg-dark); }

/* =========================================
   ZMIENNE
========================================= */
:root {
    --bg-dark: #080f1a;
    --bg-card: #111c2e;
    --bg-alt: #0d1828;
    --bg-card2: #162035;
    --text-main: #f0f4ff;
    --text-muted: #7a90b0;
    --text-dim: #4a5f7a;
    --accent: #00e896;
    --accent-dim: rgba(0, 232, 150, 0.12);
    --accent-hover: #00c97e;
    --border: rgba(255,255,255,0.06);
    --border-accent: rgba(0, 232, 150, 0.25);
    --glow: 0 0 40px rgba(0,232,150,0.08);
}

/* =========================================
   BAZA
========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: hidden; max-width: 100%; }
body { background-color: var(--bg-dark); color: var(--text-main); line-height: 1.7; overflow-x: hidden; font-family: 'Inter', sans-serif; width: 100%; position: relative; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 110px 24px; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 110px 24px; }
.section-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.section-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 680px; line-height: 1.8; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.text-accent { color: var(--accent); }

/* =========================================
   NAWIGACJA
========================================= */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 40px;
    background: rgba(8, 15, 26, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: fixed; width: 100%; max-width: 100vw; top: 0; z-index: 1000; left: 0; right: 0;
    border-bottom: 1px solid var(--border);
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}
nav.scrolled { padding: 14px 40px; box-shadow: 0 4px 30px rgba(0,0,0,0.4); }

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem; font-weight: 700; letter-spacing: 0.5px;
    display: flex; align-items: center; gap: 8px;
}
.logo-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; display: inline-block; box-shadow: 0 0 8px var(--accent); }

.nav-links { list-style: none; display: flex; gap: 8px; align-items: center; }
.nav-links a {
    color: var(--text-muted); font-size: 0.88rem; font-weight: 500;
    padding: 7px 14px; border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text-main); background: rgba(255,255,255,0.04); }
.btn-nav {
    background: var(--accent-dim) !important;
    color: var(--accent) !important;
    border: 1px solid var(--border-accent) !important;
    font-weight: 600 !important;
}
.btn-nav:hover { background: var(--accent) !important; color: #000 !important; }

.hamburger { display: none; font-size: 1.6rem; color: var(--text-main); cursor: pointer; padding: 4px; }

/* =========================================
   HERO
========================================= */
#hero {
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,232,150,0.07) 0%, transparent 70%), var(--bg-dark);
}

/* Siatka w tle */
#hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 0%, transparent 75%);
    z-index: 0;
}

.hero-content { position: relative; z-index: 2; padding-top: 80px; max-width: 1200px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent-dim); border: 1px solid var(--border-accent);
    color: var(--accent); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 7px 16px; border-radius: 100px; margin-bottom: 32px;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }

.hero-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 700; line-height: 1.1;
    margin-bottom: 28px; letter-spacing: -0.02em;
    max-width: 800px;
}
.hero-content h1 em {
    font-style: normal; color: var(--accent);
    background: linear-gradient(90deg, var(--accent), #00c8ff);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-content p { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin-bottom: 44px; line-height: 1.8; }

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--accent); color: #000; padding: 14px 32px;
    font-size: 0.95rem; font-weight: 700; border-radius: 8px; border: none; cursor: pointer;
    transition: all 0.25s ease; letter-spacing: 0.01em;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,232,150,0.25); }
.btn-primary i { font-size: 0.85rem; transition: transform 0.2s; }
.btn-primary:hover i { transform: translateX(3px); }

.btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    border: 1px solid var(--border); color: var(--text-muted); padding: 13px 28px;
    font-size: 0.95rem; font-weight: 500; border-radius: 8px;
    transition: all 0.25s ease; background: transparent;
}
.btn-outline:hover { border-color: var(--border-accent); color: var(--accent); background: var(--accent-dim); }

/* Stats pod hero */
.hero-stats { display: flex; gap: 48px; margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.hero-stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700; color: var(--text-main); }
.hero-stat-num span { color: var(--accent); }
.hero-stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }

/* =========================================
   MARQUEE
========================================= */
.tech-marquee {
    background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: 18px 0; overflow: hidden; white-space: nowrap;
}
.marquee-track { display: inline-flex; animation: marquee 30s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
    display: inline-flex; align-items: center; gap: 10px;
    margin: 0 28px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--text-dim);
    transition: color 0.2s;
}
.marquee-item:hover { color: var(--accent); }
.marquee-item i { font-size: 1rem; color: var(--text-dim); }
.marquee-sep { color: var(--text-dim); opacity: 0.3; margin: 0 4px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* =========================================
   USŁUGI (KARTY)
========================================= */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px; padding: 32px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--border-accent); box-shadow: var(--glow); }
.service-card:hover::before { opacity: 1; }

.service-card-img {
    width: 100%; height: 180px; object-fit: cover;
    border-radius: 8px; margin-bottom: 24px;
    border: 1px solid var(--border);
    background: var(--bg-alt);
    opacity: 0.8; transition: opacity 0.3s;
}
.service-card:hover .service-card-img { opacity: 1; }

.service-icon {
    width: 48px; height: 48px; background: var(--accent-dim);
    border: 1px solid var(--border-accent); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--accent); margin-bottom: 20px;
}
.service-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em;
    padding: 4px 10px; border-radius: 100px;
    background: rgba(255,255,255,0.04); border: 1px solid var(--border);
    color: var(--text-dim);
}
.service-price { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: nowrap; gap: 8px; }
.price-val { font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--accent); }
.price-type { font-size: 0.78rem; color: var(--text-dim); }

/* =========================================
   KOMPETENCJE
========================================= */
.comp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.comp-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px;
    padding: 28px 22px; text-align: center;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.comp-card:hover { transform: translateY(-5px); border-color: var(--border-accent); box-shadow: var(--glow); }
.comp-icon {
    width: 52px; height: 52px; margin: 0 auto 16px;
    background: var(--accent-dim); border: 1px solid var(--border-accent);
    color: var(--accent); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
    transition: background 0.25s, color 0.25s;
}
.comp-card:hover .comp-icon { background: var(--accent); color: #000; }
.comp-card h4 { font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; }
.comp-card p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.6; }

/* =========================================
   SEKCJA "DLACZEGO JA" — LISTA BENEFITÓW
========================================= */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-item {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px;
    padding: 28px; display: flex; gap: 20px; align-items: flex-start;
    transition: border-color 0.25s;
}
.why-item:hover { border-color: var(--border-accent); }
.why-num {
    font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 700;
    color: var(--accent); opacity: 0.3; min-width: 36px; line-height: 1;
}
.why-item h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.why-item p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.65; }

/* =========================================
   PROCES WSPÓŁPRACY
========================================= */
.process-steps { display: flex; flex-direction: column; gap: 0; max-width: 720px; margin: 0 auto; }
.process-step { display: flex; gap: 28px; align-items: flex-start; padding: 32px 0; position: relative; }
.process-step:not(:last-child)::after {
    content: ''; position: absolute; left: 19px; top: 64px; bottom: 0; width: 1px;
    background: linear-gradient(to bottom, var(--border-accent), transparent);
}
.step-num {
    width: 40px; height: 40px; min-width: 40px; border-radius: 50%;
    background: var(--accent-dim); border: 1px solid var(--border-accent);
    color: var(--accent); font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.step-content h4 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.step-content p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* =========================================
   SEKCJA CTA POŚRODKU STRONY
========================================= */
.cta-band {
    background: linear-gradient(135deg, rgba(0,232,150,0.06) 0%, rgba(0,200,255,0.04) 100%);
    border-top: 1px solid var(--border-accent); border-bottom: 1px solid var(--border-accent);
    padding: 80px 24px; text-align: center;
}
.cta-band h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; margin-bottom: 16px; }
.cta-band p { color: var(--text-muted); font-size: 1rem; margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; }

/* =========================================
   FORMULARZ KONTAKTOWY
========================================= */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.contact-info h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 36px; }
.contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.contact-detail-icon {
    width: 42px; height: 42px; background: var(--accent-dim);
    border: 1px solid var(--border-accent); border-radius: 8px;
    color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.contact-detail-text strong { display: block; font-size: 0.8rem; color: var(--text-dim); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-detail-text span { font-size: 0.95rem; color: var(--text-main); }

.contact-form-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
input:not([type="checkbox"]):not([type="radio"]), textarea, select {
    width: 100%; padding: 13px 16px;
    background: var(--bg-dark); border: 1px solid var(--border);
    color: var(--text-main); border-radius: 8px; font-size: 0.93rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
}
input:focus, textarea:focus, select:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0,232,150,0.1);
}
input::placeholder, textarea::placeholder { color: var(--text-dim); }
textarea { resize: vertical; min-height: 120px; }
.form-status { font-size: 0.88rem; font-weight: 600; text-align: center; margin-top: 12px; min-height: 22px; }

/* Radio — preferowany kontakt */
.contact-pref-row { display: flex; gap: 12px; flex-wrap: wrap; }
.contact-pref-option { flex: 1; min-width: 140px; cursor: pointer; }
.contact-pref-option input[type="radio"] { display: none; }
.contact-pref-option span {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 16px; border-radius: 8px;
    border: 1px solid var(--border); background: var(--bg-dark);
    color: var(--text-muted); font-size: 0.9rem; font-weight: 500;
    transition: all 0.2s; cursor: pointer;
}
.contact-pref-option span i { font-size: 0.95rem; }
.contact-pref-option input[type="radio"]:checked + span {
    border-color: var(--accent);
    background: var(--accent-dim);
    color: var(--accent);
    box-shadow: 0 0 0 2px rgba(0,232,150,0.15);
}
.contact-pref-option span:hover { border-color: var(--border-accent); color: var(--text-main); }
.btn-full { width: 100%; justify-content: center; }

/* =========================================
   FAQ STRONA
========================================= */
.page-hero {
    padding: 160px 24px 80px;
    background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0,232,150,0.06) 0%, transparent 70%), var(--bg-dark);
    text-align: center; border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; margin-bottom: 16px; }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

.faq-cats { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin: 48px 0 40px; }
.faq-cat-btn {
    padding: 8px 20px; border-radius: 100px; font-size: 0.83rem; font-weight: 600;
    border: 1px solid var(--border); background: transparent; color: var(--text-muted);
    cursor: pointer; transition: all 0.2s;
}
.faq-cat-btn:hover, .faq-cat-btn.active { background: var(--accent-dim); border-color: var(--border-accent); color: var(--accent); }

.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
    transition: border-color 0.25s;
}
.faq-item:hover { border-color: rgba(0,232,150,0.2); }
.faq-question {
    width: 100%; text-align: left; background: transparent; border: none;
    padding: 22px 28px; font-size: 1rem; font-weight: 600; color: var(--text-main);
    cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
    font-family: 'Inter', sans-serif; transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-question i { color: var(--accent); font-size: 1rem; flex-shrink: 0; transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); }
.faq-question.active { color: var(--accent); }
.faq-question.active i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.faq-answer p { padding: 0 28px 24px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.85; }
.faq-answer a { color: var(--accent); border-bottom: 1px solid var(--border-accent); }

/* =========================================
   CENNIK STRONA
========================================= */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.pricing-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
    padding: 36px 32px; position: relative; transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.pricing-card:hover { transform: translateY(-6px); border-color: var(--border-accent); box-shadow: var(--glow); }
.pricing-card.featured {
    border-color: var(--border-accent);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0,232,150,0.04) 100%);
}
.featured-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #000; font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 16px; border-radius: 100px;
}
.pricing-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.pricing-card .pricing-desc { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }
.pricing-price { font-family: 'Space Grotesk', sans-serif; font-size: 2.4rem; font-weight: 700; color: var(--accent); margin-bottom: 4px; }
.pricing-price sub { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.pricing-period { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 28px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--text-muted); }
.pricing-features li i { color: var(--accent); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
.pricing-features li.dim { opacity: 0.4; }
.pricing-features li.dim i { color: var(--text-dim); }

.pricing-addons { margin-top: 80px; }
.pricing-addons h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; text-align: center; margin-bottom: 40px; }
.addons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.addon-item {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px;
    padding: 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
    transition: border-color 0.25s;
}
.addon-item:hover { border-color: var(--border-accent); }
.addon-name { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.addon-note { font-size: 0.78rem; color: var(--text-muted); }
.addon-price { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 700; color: var(--accent); white-space: nowrap; }

/* =========================================
   STOPKA
========================================= */
footer {
    background: var(--bg-card); border-top: 1px solid var(--border);
    padding: 40px 40px 30px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-logo { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 0.8rem; color: var(--text-dim); width: 100%; text-align: center; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); }

/* =========================================
   RESPONSYWNOŚĆ
========================================= */
@media (max-width: 1024px) {
    .why-grid { grid-template-columns: 1fr; }
    .contact-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    nav { position: relative; }
    nav { padding: 15px 16px; box-sizing: border-box; }
    .hamburger { display: block; flex-shrink: 0; }
    .nav-links {
        position: absolute; top: 100%; left: 0; right: 0;
        background: #111c2e;
        border-bottom: 0.5px solid rgba(255,255,255,0.06);
        border-radius: 0 0 10px 10px;
        display: flex; flex-direction: column;
        padding: 6px;
        opacity: 0; pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.2s ease, transform 0.2s ease;
        z-index: 999;
        list-style: none;
    }
    .nav-links.nav-active {
        opacity: 1; pointer-events: all;
        transform: translateY(0);
    }
    .nav-links li { width: 100%; }
    .nav-links a {
        display: flex; align-items: center; gap: 8px;
        font-size: 0.92rem; color: var(--text-muted);
        padding: 9px 10px; border-radius: 6px;
        text-decoration: none; font-weight: 500;
        transition: background 0.15s, color 0.15s;
        border: none !important;
    }
    .nav-links a:hover { background: rgba(255,255,255,0.04); color: #f0f4ff; }
    .nav-links li:last-child a {
        background: rgba(0,232,150,0.08);
        color: #00e896; margin-top: 4px;
        border-radius: 6px;
    }
    .container, .container-sm { padding: 70px 20px; }
    .hero-stats { gap: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-box { padding: 28px 20px; }
    .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 500px) {
    .hero-content h1 { font-size: 2rem; }
    .hero-cta { flex-direction: column; }
    .btn-primary, .btn-outline { width: 100%; justify-content: center; }
    .pricing-price { font-size: 2rem; }
}
/* =========================================
   BANER COOKIE
========================================= */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 20px 24px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 -8px 32px rgba(0,0,0,0.3);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-text { flex: 1; min-width: 200px; }
.cookie-banner-text p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.cookie-banner-text a { color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--border-accent); }
.cookie-banner-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.btn-cookie-accept {
    padding: 9px 20px; background: var(--accent); color: #000;
    border: none; border-radius: 6px; font-size: 0.88rem; font-weight: 700;
    cursor: pointer; transition: background 0.2s;
}
.btn-cookie-accept:hover { background: var(--accent-hover); }
.btn-cookie-reject {
    padding: 9px 16px; background: transparent; color: var(--text-muted);
    border: 1px solid var(--border); border-radius: 6px; font-size: 0.88rem;
    cursor: pointer; transition: all 0.2s;
}
.btn-cookie-reject:hover { border-color: var(--border-accent); color: var(--text-main); }

/* =========================================
   CHECKBOX RODO W FORMULARZU
========================================= */
.rodo-group { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }

.rodo-group label {
    font-size: 0.82rem; color: var(--text-muted); line-height: 1.6;
    cursor: pointer; text-transform: none; letter-spacing: 0;
}
.rodo-group label a { color: var(--accent); border-bottom: 1px solid var(--border-accent); }

/* Footer linki prawne */
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; justify-content: center; }
.footer-legal a { font-size: 0.78rem; color: var(--text-dim); transition: color 0.2s; }
.footer-legal a:hover { color: var(--accent); }
