:root {
    --primary-black: #111111; 
    --accent-gold: #C5A059;
    --accent-gold-hover: #b08d4d;
    --bg-color: #ffffff;
    --text-main: #333333;
    --text-light: #666666;
    --section-bg: #f8f9fa;
    --nav-height: 80px;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-main); color: var(--text-main); line-height: 1.6; background: var(--bg-color); }

/* Typography */
h1, h2, h3 { font-weight: 700; text-transform: uppercase; letter-spacing: -0.5px; margin-bottom: 1rem; color: var(--primary-black); }
h1 { font-size: 3rem; line-height: 1.1; margin-bottom: 25px; color: #fff; }
h2 { font-size: 2rem; position: relative; padding-bottom: 15px; }
h2::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 4px; background: var(--accent-gold); }
p { margin-bottom: 1.5rem; font-size: 1.1rem; color: var(--text-light); }

/* Layout */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
section { padding: 90px 0; scroll-margin-top: var(--nav-height); }
img { max-width: 100%; display: block; }

/* Navigation */
nav { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; height: var(--nav-height); display: flex; align-items: center; }
nav .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo img { height: 50px; width: auto; }
.nav-links a { text-decoration: none; color: var(--primary-black); margin-left: 30px; font-weight: 600; font-size: 0.9rem; text-transform: uppercase; transition: 0.3s; }
.nav-links a:hover { color: var(--accent-gold); }

/* Buttons */
.btn { display: inline-block; padding: 15px 40px; background: var(--accent-gold); color: #fff; text-decoration: none; font-weight: bold; text-transform: uppercase; border-radius: 4px; transition: 0.3s; border: none; cursor: pointer; letter-spacing: 1px; }
.btn:hover { background: var(--accent-gold-hover); transform: translateY(-2px); }

/* Hero Section */
.hero-mix { 
    height: 85vh;
    background: url('../img/pan-inspektor-fhd.jpg'); 
    background-size: cover; background-position: center; position: relative; display: flex; align-items: center;
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0,0,0,0.2) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 700px; padding-left: 20px; }
.hero-content p { color: #ccc; font-size: 1.3rem; max-width: 600px; }

/* Grids & Common Elements */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; }

.img-placeholder { width: 100%; background-color: #ddd; display: flex; align-items: center; justify-content: center; color: #555; overflow: hidden; border-radius: 4px; }
.img-placeholder img { width: 100%; height: 100%; object-fit: cover; }

.benefit-card { background: #fff; padding: 40px; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border-top: 4px solid var(--accent-gold); }

.expert-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s; }
.expert-card:hover { transform: translateY(-5px); }
.expert-card h3 { color: var(--accent-gold); }

.icon-svg { width: 48px; height: 48px; fill: var(--primary-black); margin-bottom: 15px; }
.contact-icon { width: 24px; height: 24px; fill: var(--accent-gold); margin-right: 15px; vertical-align: middle; }

/* Offer Section */
.offer-section { background: var(--primary-black); color: #fff; }
.offer-section h2 { color: #fff; }
.offer-section h3 { color: var(--accent-gold); }
.offer-section p { color: #ccc; }
.offer-section h2::after { background: var(--accent-gold); }

/* Pricing */
.price-card { border: 1px solid #ddd; padding: 40px; text-align: center; border-radius: 8px; background: #fff; }
.price-card.highlight { background: var(--primary-black); color: #fff; border: none; transform: scale(1.05); box-shadow: 0 10px 30px rgba(0,0,0, 0.3); }
.price-card.highlight h3, .price-card.highlight span { color: #fff; }
.price-card.highlight p { color: #ccc; }
.price { font-size: 3rem; font-weight: 800; display: block; margin: 20px 0; color: var(--primary-black); }

/* SEKCJA PARTNERZY */
.partner-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.partner-card:hover { transform: translateY(-3px); }
.partner-logo { 
    height: 60px; 
    margin-bottom: 20px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}
.partner-logo img { max-height: 100%; max-width: 100%; width: auto; }
.partner-link {
    margin-top: 15px;
    color: var(--accent-gold);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.85rem;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}
.partner-link:hover { border-bottom: 1px solid var(--accent-gold); }

/* CONTACT STYLE RESTORATION (Wariant 3 Style) */
.contact-box { 
    background: var(--section-bg); /* Powrót do tła szarego */
    padding: 40px; 
    border-radius: 8px; 
    /* Usunięto cień i białe tło */
}
.contact-row { display: flex; align-items: center; margin-bottom: 20px; font-size: 1.1rem; }
.contact-row a { color: var(--text-main); text-decoration: none; transition: 0.3s; }
.contact-row a:hover { color: var(--accent-gold); }

/* Stylowanie pól formularza - minimalistyczne */
.form-input { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 4px; font-family: inherit; font-size: 1rem; }
.form-input:focus { border-color: var(--accent-gold); outline: none; }
.form-input:invalid:not(:placeholder-shown) { border-color: red; }

footer { background: #000; color: #888; padding: 40px 0; text-align: center; font-size: 0.9rem; }

.success-box {
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    animation: slideDown 0.5s ease-out;
}

.success-icon {
    background-color: var(--accent-gold);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.success-text {
    color: #333;
    font-family: inherit;
    line-height: 1.5;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; }
    .hero-mix { height: auto; padding: 100px 0; }
    .hero-content h1 { font-size: 2.2rem; }
    .nav-links { display: none; }
}