:root {
    --primary-color: #ff6d00; /* Safety Orange */
    --secondary-color: #4a5d23; /* Moss Green */
    --earth-brown: #3e2723;
    --bg-dark: #121212;
    --card-bg: rgba(30, 30, 30, 0.7);
    --text-light: #ffffff;
    --text-muted: #aaaaaa;
    --accent-gradient: linear-gradient(135deg, #ff6d00 0%, #ffab40 100%);
    --nature-gradient: linear-gradient(135deg, #4a5d23 0%, #3e2723 100%);
}

* {
    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;
}

.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(at 0% 0%, rgba(74, 93, 35, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(255, 109, 0, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(62, 39, 35, 0.2) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(74, 93, 35, 0.1) 0px, transparent 50%);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
header {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(15px);
    z-index: 1000;
}

.logo img {
    height: 40px;
}

.lang-switch button {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 5px 12px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
    transition: 0.3s;
}

.lang-switch button:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

/* Hero Section */
.hero {
    padding: 120px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 20px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-gradient);
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 900;
    border-radius: 4px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-button:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 109, 0, 0.3);
}

.hero-image-container {
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.promo-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.producer-banner {
    margin: 80px 0;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.wide-banner {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.8;
    transition: opacity 0.5s;
}

.wide-banner:hover {
    opacity: 1;
}

/* Glassmorphism Feature Cards */
.features {
    padding: 80px 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.glass-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: 0.4s;
}

.glass-card:hover {
    border: 1px solid rgba(255, 109, 0, 0.3);
    transform: translateY(-10px);
    background: rgba(45, 45, 45, 0.8);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 900;
}

.feature-card h2 {
    margin-bottom: 40px;
    text-align: center;
    font-size: 2.5rem;
}

.manual h2 {
    margin-bottom: 40px;
}

.manual h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Comparison Table */
.pricing {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.pricing h2 {
    text-align: center;
    margin-bottom: 40px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
}

th, td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

th {
    background: rgba(74, 93, 35, 0.2);
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 900;
}

.check { color: #4caf50; font-weight: bold; }
.cross { color: #f44336; font-weight: bold; }

/* Footer */
footer {
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer .producer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.legal-links {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: white;
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

/* Language 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: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .grid { grid-template-columns: 1fr; }
}
