/* ========================================
   BEZPIECZEŃSTWO IT - MINI AUDYT
   Startupowy, nowoczesny design
   ======================================== */

/* Zmienne kolorów - Startup Palette */
:root {
    /* Primary - Głęboki niebieski */
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-primary-light: #3b82f6;
    --color-primary-50: #eff6ff;
    --color-primary-100: #dbeafe;
    --color-primary-600: #2563eb;
    
    /* Secondary - Energetyczny fiolet */
    --color-secondary: #7c3aed;
    --color-secondary-light: #8b5cf6;
    --color-secondary-50: #f5f3ff;
    
    /* Accent - Świeży turkus */
    --color-accent: #06b6d4;
    --color-accent-light: #22d3ee;
    
    /* Success - Zielony */
    --color-success: #10b981;
    --color-success-light: #34d399;
    --color-success-50: #ecfdf5;
    
    /* Warning - Pomarańczowy */
    --color-warning: #f59e0b;
    --color-warning-light: #fbbf24;
    --color-warning-50: #fffbeb;
    
    /* Danger - Czerwony */
    --color-danger: #ef4444;
    --color-danger-light: #f87171;
    --color-danger-50: #fef2f2;
    
    /* Neutral - Szarości */
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    
    /* Tekst */
    --text-primary: var(--color-gray-900);
    --text-secondary: var(--color-gray-600);
    --text-muted: var(--color-gray-500);
    
    /* Tło */
    --bg-primary: #ffffff;
    --bg-secondary: var(--color-gray-50);
    --bg-gradient-start: #f0f9ff;
    --bg-gradient-end: #f5f3ff;
    
    /* Cienie */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 40px -10px var(--color-primary-100);
    
    /* Zaokrąglenia */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Przejścia */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

/* Reset i podstawy */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-dark);
}

/* Kontener */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========================================
   NAWIGACJA
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-gray-200);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
    background: var(--color-primary-50);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--color-primary-100) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    background: var(--color-primary-50);
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Hero Visual - Animowana ilustracja */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.security-illustration {
    position: relative;
    width: 300px;
    height: 300px;
}

.shield-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    z-index: 10;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px dashed var(--color-gray-300);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 150px;
    height: 150px;
    animation: orbit-rotate 10s linear infinite;
}

.orbit-2 {
    width: 220px;
    height: 220px;
    animation: orbit-rotate 15s linear infinite reverse;
}

.orbit-3 {
    width: 290px;
    height: 290px;
    animation: orbit-rotate 20s linear infinite;
}

.orbit-item {
    position: absolute;
    font-size: 1.5rem;
    background: white;
    padding: 0.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.orbit-1 .orbit-item {
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-2 .orbit-item {
    bottom: 20px;
    right: 10px;
}

.orbit-3 .orbit-item {
    bottom: 30px;
    left: 20px;
}

@keyframes orbit-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ========================================
   PRZYCISKI
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn svg {
    flex-shrink: 0;
}

.btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.23);
    color: white;
}

.btn-outline {
    color: var(--text-primary);
    background: transparent;
    border: 2px solid var(--color-gray-200);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: var(--color-primary-50);
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========================================
   SEKCJE
   ======================================== */
.section {
    padding: 80px 0;
}

.section-bg-light {
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    background: var(--color-primary-50);
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* ========================================
   ZAGROŻENIA
   ======================================== */
.threats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.threat-card {
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-100);
    transition: all var(--transition-base);
}

.threat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.threat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.threat-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.threat-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.threats-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--color-warning-50) 0%, var(--color-primary-50) 100%);
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--color-warning);
}

.note-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.threats-note p {
    margin: 0;
    color: var(--text-secondary);
}

/* ========================================
   WYKRESY
   ======================================== */
.chart-container {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.chart-bar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chart-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.chart-bar-bg {
    height: 40px;
    background: var(--color-gray-100);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.chart-bar {
    height: 100%;
    width: var(--bar-width);
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1rem;
    animation: bar-grow 1s ease-out;
}

@keyframes bar-grow {
    from { width: 0; }
    to { width: var(--bar-width); }
}

.bar-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
}

.chart-source {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

/* Kalkulator kosztów - POLSKIE REALIA */
.interactive-chart {
    max-width: 900px;
    margin: 0 auto;
}

.cost-calculator-pl {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

.calculator-controls-pl {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.control-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: var(--color-gray-200);
    border-radius: var(--radius-full);
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.slider-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
}

.select-input {
    padding: 0.75rem;
    font-size: 0.875rem;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    background: white;
    cursor: pointer;
}

.select-input:focus {
    border-color: var(--color-primary);
    outline: none;
}

.cost-summary-pl {
    background: linear-gradient(135deg, var(--color-primary-50) 0%, var(--color-secondary-50) 100%);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.cost-total-box {
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255,255,255,0.5);
}

.cost-total-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.cost-total-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cost-breakdown-pl {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cost-item-pl {
    display: grid;
    grid-template-columns: 140px 1fr 100px;
    align-items: center;
    gap: 1rem;
}

.cost-item-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.cost-item-bar {
    height: 24px;
    width: var(--item-width, 50%);
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: var(--radius-full);
    transition: width 0.3s ease;
}

.cost-item-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: right;
}

.cost-explanation {
    margin-top: 2rem;
    padding: 1.25rem;
    background: var(--color-primary-50);
    border-radius: var(--radius-lg);
}

.cost-explanation p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .cost-calculator-pl {
        grid-template-columns: 1fr;
    }
    
    .cost-item-pl {
        grid-template-columns: 100px 1fr 80px;
    }
    
    .cost-total-value {
        font-size: 2rem;
    }
}

/* ========================================
   5 RZECZY
   ======================================== */
.tips-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.tip-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-100);
    transition: all var(--transition-base);
}

.tip-item:hover {
    box-shadow: var(--shadow-md);
}

.tip-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.tip-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.tip-content p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.tip-example {
    display: block;
    padding: 0.75rem;
    font-size: 0.875rem;
    color: var(--color-primary);
    background: var(--color-primary-50);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-primary);
}

/* ========================================
   MINI-AUDYT
   ======================================== */
.audit-container {
    max-width: 700px;
    margin: 0 auto 3rem;
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.audit-screen {
    padding: 2.5rem;
}

.audit-screen.hidden {
    display: none;
}

.audit-intro {
    text-align: center;
}

.audit-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.audit-intro h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.audit-intro p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.audit-modes {
    margin-bottom: 2rem;
}

.mode-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.mode-toggle {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.mode-btn {
    flex: 1;
    max-width: 200px;
    padding: 1rem;
    background: white;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.mode-btn:hover {
    border-color: var(--color-primary-light);
}

.mode-btn.active {
    border-color: var(--color-primary);
    background: var(--color-primary-50);
}

.mode-title {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.mode-desc {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Progress Bar */
.audit-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: var(--color-gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: var(--radius-full);
    transition: width var(--transition-base);
}

.progress-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    min-width: 45px;
    text-align: right;
}

/* Pytania */
.question-container {
    min-height: 200px;
}

.question-box {
    animation: fade-in 0.3s ease;
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.question-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.question-example {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.question-tooltip {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--color-primary);
    cursor: help;
    margin-bottom: 1.5rem;
    position: relative;
}

.tooltip-content {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 0;
    padding: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-primary);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 300px;
    z-index: 100;
}

.question-tooltip:hover .tooltip-content {
    display: block;
}

.answer-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.answer-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: white;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: left;
    width: 100%;
}

.answer-btn:hover {
    border-color: var(--color-primary-light);
    background: var(--color-primary-50);
}

.answer-btn.selected {
    border-color: var(--color-primary);
    background: var(--color-primary-50);
}

.answer-indicator {
    width: 24px;
    height: 24px;
    border: 2px solid var(--color-gray-300);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.answer-btn.selected .answer-indicator {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.answer-btn.selected .answer-indicator::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    margin: 6px auto;
}

.answer-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.question-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-gray-200);
}

/* Wynik */
.result-container {
    text-align: center;
}

.result-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.result-score {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.score-number {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.score-percent {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-muted);
}

.result-level {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.level-badge {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
}

.level-name {
    font-size: 1.5rem;
    font-weight: 700;
}

.level-name.green { color: var(--color-success); }
.level-name.yellow { color: var(--color-warning); }
.level-name.red { color: var(--color-danger); }

.result-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--color-warning-50);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.result-warning.hidden {
    display: none;
}

.warning-icon {
    font-size: 1.5rem;
}

.result-warning p {
    margin: 0;
    color: var(--text-secondary);
}

.result-description {
    padding: 1.5rem;
    background: var(--color-gray-50);
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    text-align: left;
}

.result-description p {
    margin: 0;
    color: var(--text-secondary);
}

/* Akcje */
.result-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.action-section {
    padding: 1.5rem;
    background: var(--color-primary-50);
    border-radius: var(--radius-lg);
}

.action-section h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.action-icon {
    font-size: 1.25rem;
}

.action-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.action-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.action-list li::before {
    content: '✓';
    color: var(--color-success);
    font-weight: 700;
    flex-shrink: 0;
}

/* Usługi */
.result-services {
    margin-bottom: 2rem;
    text-align: left;
}

.result-services h4 {
    text-align: center;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    text-align: center;
}

.service-icon {
    font-size: 1.5rem;
}

.service-name {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Lead Capture */
.lead-capture {
    padding: 2rem;
    background: linear-gradient(135deg, var(--color-primary-50) 0%, var(--color-secondary-50) 100%);
    border-radius: var(--radius-xl);
    margin-bottom: 1.5rem;
}

.lead-capture h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.lead-capture > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input[type="email"],
.form-group input[type="tel"] {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    outline: none;
    transition: border-color var(--transition-fast);
}

.form-group input:focus {
    border-color: var(--color-primary);
}

.form-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--color-primary);
}

.form-checkbox label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.form-info {
    padding: 1rem;
    background: white;
    border-radius: var(--radius-md);
}

.form-info p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.alternative-cta {
    text-align: center;
}

.alternative-cta p {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.result-disclaimer {
    margin-bottom: 1.5rem;
}

.result-disclaimer p {
    margin: 0;
    color: var(--text-muted);
}

/* Tabela audytu */
.audit-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.audit-table-title {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.audit-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.audit-table th,
.audit-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--color-gray-200);
}

.audit-table th {
    font-weight: 600;
    color: var(--text-primary);
    background: var(--color-gray-50);
}

.audit-table td {
    color: var(--text-secondary);
}

.audit-table tr:hover td {
    background: var(--color-gray-50);
}

/* ========================================
   TABELA WYSIŁEK VS EFEKT
   ======================================== */
.effort-table-wrapper {
    max-width: 900px;
    margin: 0 auto 2rem;
    overflow-x: auto;
}

.effort-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.effort-table th,
.effort-table td {
    padding: 1rem 1.25rem;
    text-align: left;
}

.effort-table th {
    font-weight: 600;
    color: var(--text-primary);
    background: var(--color-gray-50);
}

.effort-table td {
    color: var(--text-secondary);
    border-bottom: 1px solid var(--color-gray-100);
}

.effort-table tr:last-child td {
    border-bottom: none;
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.tag-time {
    color: var(--color-primary);
    background: var(--color-primary-50);
}

.tag-easy {
    color: var(--color-success);
    background: var(--color-success-50);
}

.tag-medium {
    color: var(--color-warning);
    background: var(--color-warning-50);
}

.tag-high {
    color: var(--color-success);
    background: var(--color-success-50);
}

.tag-no {
    color: var(--color-success);
    background: var(--color-success-50);
}

.tag-maybe {
    color: var(--color-warning);
    background: var(--color-warning-50);
}

.section-cta {
    text-align: center;
}

.section-link {
    text-align: center;
    margin-top: 2rem;
}

.threats-note a {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 500;
}

.threats-note a:hover {
    color: var(--color-primary-dark);
}

/* ========================================
   FAQ SHORT
   ======================================== */
.faq-short-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-short-item {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-short-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-short-question:hover {
    background: var(--color-gray-50);
}

.faq-icon {
    transition: transform var(--transition-fast);
}

.faq-short-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-short-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-short-question[aria-expanded="true"] + .faq-short-answer {
    max-height: 500px;
}

.faq-short-answer p {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ========================================
   CTA MAIN
   ======================================== */
.section-cta-main {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.cta-box {
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-box > p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cta-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    transition: all var(--transition-base);
}

.cta-option:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    color: white;
}

.cta-option-icon {
    font-size: 2.5rem;
}

.cta-option-title {
    font-size: 1.125rem;
    font-weight: 600;
}

.cta-option-desc {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ========================================
   STOPKA
   ======================================== */
.footer {
    padding: 60px 0 0;
    background: var(--color-gray-900);
    color: var(--color-gray-400);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--color-gray-400);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.footer-contact address {
    font-style: normal;
    font-size: 0.875rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--color-gray-400);
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--color-gray-800);
}

.footer-bottom p {
    font-size: 0.875rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.875rem;
    color: var(--color-gray-400);
}

.footer-legal a:hover {
    color: white;
}

/* ========================================
   STRONY ARTYKUŁÓW
   ======================================== */
.article-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    text-align: center;
}

.article-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    background: var(--color-primary-50);
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.article-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.article-intro {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.article-content {
    padding: 60px 0;
}

.article-content .container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
}

.article-body {
    max-width: 700px;
}

.article-section {
    margin-bottom: 3rem;
}

.article-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.article-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.5rem 0 0.75rem;
}

.article-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.article-section ul,
.article-section ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.article-section li {
    margin-bottom: 0.5rem;
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-box {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-100);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-box h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
}

.sidebar-nav li {
    margin-bottom: 0.5rem;
}

.sidebar-nav a {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.sidebar-nav a:hover {
    color: var(--color-primary);
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--color-primary-50) 0%, var(--color-secondary-50) 100%);
    border: none;
}

.sidebar-cta p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Boxes in articles */
.stat-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--color-primary-50) 0%, var(--color-secondary-50) 100%);
    border-radius: var(--radius-xl);
    margin: 1.5rem 0;
}

.stat-box-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-box-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.tip-box,
.info-box,
.warning-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    margin: 1.5rem 0;
}

.tip-box {
    background: var(--color-success-50);
    border-left: 4px solid var(--color-success);
}

.info-box {
    background: var(--color-primary-50);
    border-left: 4px solid var(--color-primary);
}

.warning-box {
    background: var(--color-warning-50);
    border-left: 4px solid var(--color-warning);
}

.tip-box-icon,
.info-box-icon,
.warning-box-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tip-box p,
.info-box p,
.warning-box p {
    margin: 0;
    color: var(--text-secondary);
}

/* Article CTA */
.article-cta {
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: var(--radius-xl);
    text-align: center;
    color: white;
}

.article-cta h2 {
    color: white;
    margin-bottom: 0.75rem;
}

.article-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

/* Related articles */
.section-related {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.related-card {
    display: block;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-100);
    text-decoration: none;
    transition: all var(--transition-base);
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.related-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.related-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.related-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ========================================
   FAQ PAGE
   ======================================== */
.faq-content {
    padding: 60px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.faq-item {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-100);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question:hover {
    background: var(--color-gray-50);
}

.faq-icon {
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 1000px;
}

.faq-answer > * {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer ul,
.faq-answer ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-cost-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.faq-cost-table th,
.faq-cost-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--color-gray-200);
}

.faq-cost-table th {
    font-weight: 600;
    background: var(--color-gray-50);
}

.faq-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--color-primary-50) 0%, var(--color-secondary-50) 100%);
    border-radius: var(--radius-xl);
}

.faq-cta h2 {
    margin-bottom: 0.75rem;
}

.faq-cta p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.faq-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* ========================================
   LEGAL PAGES (Regulamin, Polityka)
   ======================================== */
.legal-page {
    padding: 140px 0 80px;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.legal-date {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.5rem 0 0.75rem;
}

.legal-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.legal-section ol,
.legal-section ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.legal-section li > ul,
.legal-section li > ol {
    margin-top: 0.5rem;
}

.admin-address {
    background: var(--color-gray-50);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin: 1rem 0;
}

.admin-address p {
    margin-bottom: 0.25rem;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.875rem;
}

.legal-table th,
.legal-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--color-gray-200);
}

.legal-table th {
    font-weight: 600;
    background: var(--color-gray-50);
}

.contact-box {
    background: var(--color-primary-50);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-top: 1.5rem;
}

/* ========================================
   RESPONSYWNOŚĆ
   ======================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .threats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cost-calculator {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cost-donut {
        margin: 0 auto;
    }
    
    .cost-legend {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .article-content .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-sidebar {
        position: static;
        order: -1;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .threats-grid {
        grid-template-columns: 1fr;
    }
    
    .result-actions {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-options {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .mode-toggle {
        flex-direction: column;
        align-items: center;
    }
    
    .mode-btn {
        max-width: 100%;
        width: 100%;
    }
    
    .article-header h1 {
        font-size: 1.75rem;
    }
    
    .faq-cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .audit-container {
        margin: 0 -1rem 2rem;
        border-radius: 0;
    }
    
    .audit-screen {
        padding: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .audit-table,
    .effort-table {
        font-size: 0.75rem;
    }
    
    .audit-table th,
    .audit-table td,
    .effort-table th,
    .effort-table td {
        padding: 0.75rem;
    }
    
    .stat-box {
        flex-direction: column;
        text-align: center;
    }
    
    .tip-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .tip-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ========================================
   DOSTĘPNOŚĆ
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles */
:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --color-primary: #0000ff;
        --text-primary: #000000;
        --text-secondary: #333333;
    }
}
