:root {
    --primary-color: #FF6D00; /* Factory Orange */
    --bg-dark: #0a0a0a;
    --card-bg: rgba(20, 20, 20, 0.8);
    --text-light: #f5f5f5;
    --text-muted: #888888;
    --accent-gradient: linear-gradient(135deg, #FF6D00 0%, #E65100 100%);
    --grid-color: rgba(255, 109, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Sznyty wyścigowe */
.tech-grid {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
}

.racing-stripe {
    position: fixed;
    top: 0; right: 15%; width: 100px; height: 100%;
    background: rgba(255, 109, 0, 0.03);
    transform: skewX(-15deg);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

header {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 109, 0, 0.1);
}

.logo img { height: 35px; }

.lang-switch button {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 4px 10px;
    cursor: pointer;
    font-weight: 900;
    font-size: 0.7rem;
    transition: 0.3s;
    font-family: 'JetBrains Mono', monospace;
}

.lang-switch button:hover {
    background: var(--primary-color);
    color: white;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content { flex: 1; }

.hero-label {
    font-family: 'JetBrains Mono', monospace;
    color: var(--primary-color);
    font-size: 0.8rem;
    letter-spacing: 4px;
    margin-bottom: 15px;
    opacity: 0.7;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 30px;
    letter-spacing: -3px;
    font-style: italic;
}

.hero .accent {
    color: var(--primary-color);
    text-shadow: 4px 4px 0px rgba(255, 109, 0, 0.2);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 40px;
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 30px;
}

.promo-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.promo-badge .highlight {
    color: var(--primary-color);
    font-weight: 900;
    font-size: 0.9rem;
}

.hero-image-frame {
    flex: 1.2;
    position: relative;
}

.main-hero-img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 20px 20px 0px var(--primary-color);
    filter: contrast(1.1) brightness(0.9);
}

.img-badge {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: var(--primary-color);
    color: black;
    padding: 5px 15px;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transform: skewX(-15deg);
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary-color);
    color: black;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    transition: 0.3s;
    box-shadow: 6px 6px 0px rgba(255, 109, 0, 0.3);
}

.cta-button:hover {
    transform: translate(-3px, -3px);
    box-shadow: 12px 12px 0px rgba(255, 109, 0, 0.2);
}

/* Dashboard Customization */
.dashboard-custom { padding: 60px 0; }
.side-by-side {
    display: flex;
    align-items: center;
    gap: 60px;
}
.text-block { flex: 1.5; }
.widget-preview {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.w-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 900;
    font-size: 0.8rem;
    opacity: 0.5;
}
.w-item.accent {
    border-color: var(--primary-color);
    color: var(--primary-color);
    opacity: 1;
    background: rgba(255, 109, 0, 0.1);
}

/* Features */
.features { padding: 60px 0; }
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.glass-card {
    background: var(--card-bg);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: var(--primary-color);
}

.highlight-border { border: 1px solid rgba(255, 109, 0, 0.3); }

.icon-box {
    font-family: 'JetBrains Mono', monospace;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 0.8rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.feature-card h3 {
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Social Snapshots */
.social-snapshots {
    padding: 100px 0;
    background: linear-gradient(90deg, rgba(255, 109, 0, 0.05) 0%, transparent 100%);
}

.snapshot-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.snapshot-text { flex: 1; }
.snapshot-text h2 { text-transform: uppercase; font-weight: 900; font-size: 2.5rem; margin-bottom: 20px; }

.snapshot-visual { flex: 1; }
.postcard-mockup {
    width: 100%;
    height: 400px;
    background: var(--card-bg);
    border: 2px dashed var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    color: var(--primary-color);
    font-weight: 900;
    letter-spacing: 5px;
    transform: rotate(3deg);
    box-shadow: 20px 20px 60px rgba(0,0,0,0.5);
}

/* Pricing Table */
.pricing { padding: 100px 0; background: rgba(255, 109, 0, 0.02); }
.pricing h2 { text-transform: uppercase; font-weight: 900; margin-bottom: 20px; text-align: center; }

.trial-info {
    text-align: center;
    margin-bottom: 40px;
    background: rgba(255, 109, 0, 0.1);
    padding: 15px;
    border-radius: 4px;
    border: 1px solid var(--primary-color);
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.table-container { overflow-x: auto; }
table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'JetBrains Mono', monospace;
}

th, td { padding: 25px; text-align: left; border-bottom: 1px solid rgba(255, 109, 0, 0.1); }
th { text-transform: uppercase; font-weight: 900; color: var(--primary-color); font-size: 0.9rem; }

.status-yes { color: #4caf50; font-weight: 900; }
.status-no { color: #f44336; opacity: 0.5; }
.status-pro { color: var(--primary-color); font-weight: 900; }

/* Footer */
footer {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 109, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand { display: flex; align-items: center; gap: 20px; }
.producer { font-size: 0.8rem; color: var(--text-muted); }
.producer a { color: var(--primary-color); text-decoration: none; font-weight: 900; }

.legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.8rem;
    font-family: 'JetBrains Mono', monospace;
}

.copyright {
    width: 100%;
    text-align: center;
    margin-top: 40px;
    font-size: 0.7rem;
    color: #333;
}

/* Lang Support */
[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: 3rem; }
    .hero p { margin: 0 auto 40px; border-left: none; border-top: 3px solid var(--primary-color); padding: 20px 0 0; }
    .side-by-side { flex-direction: column; text-align: center; }
    .widget-preview { margin-top: 30px; }
    footer { flex-direction: column; gap: 30px; text-align: center; }
}
