:root {
    --primary-color: #4facfe; /* Cyber Blue */
    --accent-color: #00f2fe;
    --bg-dark: #080a0c;
    --card-bg: rgba(25, 30, 35, 0.7);
    --text-light: #e0e6ed;
    --text-muted: #8899a6;
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dot-color: rgba(79, 172, 254, 0.1);
}

* {
    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;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Background Effects */
.mesh-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: 
        radial-gradient(at 0% 0%, rgba(79, 172, 254, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(0, 242, 254, 0.05) 0px, transparent 50%);
    z-index: -1;
}

.dot-grid {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(var(--dot-color) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

header {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(8, 10, 12, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
}

.logo img { height: 35px; }

.lang-switch button {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 5px 12px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 4px;
    transition: 0.3s;
}

.lang-switch button:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content { flex: 1; }

.hero-badge {
    color: var(--primary-color);
    font-size: 0.75rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero .accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 550px;
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 25px;
}

.cta-button {
    display: inline-block;
    padding: 16px 35px;
    background: var(--accent-gradient);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    transition: 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79, 172, 254, 0.4);
}

.trial-tag {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pulse {
    width: 8px; height: 8px;
    background: #00f2fe;
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

.hero-image-frame { flex: 1; position: relative; }
.main-hero-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
}

.img-badge {
    position: absolute;
    top: -15px; right: -15px;
    background: #000;
    color: var(--primary-color);
    padding: 8px 15px;
    font-size: 0.7rem;
    font-weight: 900;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
}

/* Triple View Hub */
.triple-view {
    padding: 80px 0;
    text-align: center;
}

.triple-view h2 { margin-bottom: 40px; font-size: 2.2rem; }

.pager-mockup {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.page-item {
    padding: 10px 25px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
}

.page-item.active {
    background: rgba(79, 172, 254, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.section-desc {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-muted);
}

/* Grid */
.features { padding: 60px 0; }
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.glass-card {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.glass-card:hover {
    border-color: rgba(79, 172, 254, 0.3);
    background: rgba(30, 35, 40, 0.9);
    transform: translateY(-5px);
}

.icon-box {
    color: var(--primary-color);
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: 900;
    margin-bottom: 15px;
    opacity: 0.6;
}

.feature-card h3 { margin-bottom: 15px; font-size: 1.3rem; }

/* Pricing */
.pricing { padding: 100px 0; background: rgba(0,0,0,0.2); }
.pricing h2 { text-align: center; margin-bottom: 40px; }

.trial-box {
    max-width: 600px;
    margin: 0 auto 40px;
    background: rgba(79, 172, 254, 0.05);
    border: 1px dashed var(--primary-color);
    padding: 20px;
    text-align: center;
    border-radius: 8px;
}

.table-container { overflow-x: auto; }
table {
    width: 100%;
    border-collapse: collapse;
}

th, td { padding: 20px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.05); }
th { color: var(--primary-color); font-size: 0.85rem; text-transform: uppercase; }

.status-yes { color: #4caf50; font-weight: 700; }
.status-no { color: #f44336; opacity: 0.4; }
.status-pro { color: var(--accent-color); font-weight: 700; }

/* Footer */
footer {
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand { display: flex; align-items: center; gap: 20px; }
.producer { font-size: 0.85rem; color: var(--text-muted); }
.producer a { color: var(--primary-color); text-decoration: none; font-weight: 700; }

.legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.8rem;
}

.copyright {
    width: 100%;
    text-align: center;
    margin-top: 40px;
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.5;
}

/* Lang */
[lang="pl"] { display: none; }
body.lang-pl [lang="pl"] { display: block; }
body.lang-pl [lang="en"] { display: none; }
body.lang-en [lang="en"] { display: block; }
body.lang-en [lang="pl"] { display: none; }

@media (max-width: 900px) {
    .hero { flex-direction: column; text-align: center; }
    .hero h1 { font-size: 2.8rem; }
    .hero p { margin: 0 auto 40px; }
    .cta-group { flex-direction: column; }
    footer { flex-direction: column; gap: 30px; text-align: center; }
}
