/* =============================================================
   PLIK CSS: NIS2 LANDING PAGE - WERSJA POPRAWNA (MARZEC 2026)
   ============================================================= */

/* --- RESET I PODSTAWY --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #002D5B;      /* Granat biznesowy */
    --accent: #FF5A1F;       /* Pomarańcz konwersji */
    --accent-hover: #E04E1A; 
    --text: #333333;
    --light-bg: #F4F7F9;
    --white: #FFFFFF;
    --border: #E2E8F0;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
    scroll-behavior: smooth;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #001A35 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.highlight { color: var(--accent); }

.badge {
    background: rgba(255, 90, 31, 0.15);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.cta-group {
    margin-top: 30px;
}

.btn-primary, .btn-secondary {
    padding: 16px 30px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary { background: var(--accent); color: white; border: none; margin-right: 10px; }
.btn-secondary { background: transparent; color: white; border: 2px solid white; }

/* --- SEKCJA AUDYTU - TUTAJ DZIEJE SIĘ MAGIA KOLUMN --- */
.audit-section {
    padding: 80px 0;
}

/* Wymuszamy układ poziomy (Flex) */
.audit-grid {
    display: flex; /* To ustawia elementy obok siebie */
    flex-direction: row; /* Kierunek: rządek (kolumny obok siebie) */
    gap: 60px; /* Odstęp między kolumnami */
    align-items: flex-start;
    justify-content: space-between;
}

/* Lewa kolumna (Tekst) */
.audit-info-col {
    flex: 1; /* Zajmuje 50% szerokości */
    max-width: 50%;
}

/* Prawa kolumna (Formularz) */
.audit-form-col {
    flex: 1; /* Zajmuje drugie 50% szerokości */
    max-width: 50%;
    background-color: #F8FAFC;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

/* Stylizacja elementów wewnątrz lewej kolumny */
.audit-info-col h2 { font-size: 2rem; color: var(--primary); margin-bottom: 20px; }
.audit-info-col p { margin-bottom: 20px; }

.audit-features { list-style: none; margin-bottom: 30px; }
.audit-features li { padding-left: 25px; position: relative; margin-bottom: 8px; font-weight: 600; }
.audit-features li::before { content: "✓"; color: var(--accent); position: absolute; left: 0; font-weight: 900; }

/* Kroki marketingowe */
.marketing-steps {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    border-top: 4px solid var(--accent);
    margin-bottom: 30px;
}

.step { display: flex; gap: 15px; margin-bottom: 15px; }
.step-num { 
    background: var(--accent); color: white; width: 28px; height: 28px; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    font-weight: 700; flex-shrink: 0; font-size: 0.8rem;
}

/* --- WYMUSZENIE SZEROKOŚCI FORMULARZA ML --- */
.ml-embedded, .ml-embedded-wrapper, .ml-form-embedWrapper {
    width: 100% !important;
    max-width: 100% !important;
}

/* --- SEKCJA NEWSLETTER --- */
.newsletter { padding: 80px 0; background: var(--light-bg); }
.newsletter-box {
    background: var(--primary); color: white; padding: 40px;
    border-radius: 20px; text-align: center; max-width: 800px; margin: 0 auto;
}

.newsletter-inline { display: flex; gap: 10px; justify-content: center; margin-top: 20px; }
.newsletter-inline input { padding: 12px; width: 300px; border-radius: 4px; border: none; }
.newsletter-inline .btn-submit { background: var(--accent); color: white; padding: 12px 25px; border: none; border-radius: 4px; font-weight: 700; cursor: pointer; }

/* --- STOPKA --- */
footer { padding: 40px 0; text-align: center; background: #00152B; color: #BDC3C7; font-size: 0.9rem; }

/* --- MOBILE: KOLUMNA POD KOLUMNĄ --- */
@media (max-width: 900px) {
    .audit-grid {
        flex-direction: column; /* Na telefonach kolumny spadają jedna pod drugą */
    }
    .audit-info-col, .audit-form-col {
        max-width: 100%; /* Na telefonach zajmują całą szerokość */
        flex: none;
    }
}