/* Variables */
:root {
    --bg-white: #ffffff;
    --bg-light: #f8fafc; /* very light gray */
    --bg-pink: #fef2f2; /* very light red/pink */
    --bg-dark: #0f172a; /* slate-900 */
    --color-alert: #ef4444; /* red-500 */
    --color-alert-hover: #dc2626; /* red-600 */
    --color-alert-dark: #991b1b; /* red-800 */
    --color-text-dark: #0f172a;
    --color-text-muted: #475569;
    --color-text-light: #f8fafc;
    --color-green: #10b981;
    --color-amber: #f59e0b;
    --font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    --border-light: 1px solid #e2e8f0;
    --border-alert: 1px solid rgba(239, 68, 68, 0.2);
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-white);
    color: var(--color-text-muted);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
}

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

a:hover {
    color: var(--color-alert-hover);
}

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

/* Typography */
h1, h2, h3, h4 {
    color: var(--color-text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.text-white { color: var(--color-text-light) !important; }
.text-gray { color: #94a3b8 !important; }
.text-alert { color: var(--color-alert) !important; }

.mono-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.bg-white { background-color: var(--bg-white); }
.bg-light { background-color: var(--bg-light); }
.bg-pink { background-color: var(--bg-pink); }
.bg-dark { background-color: var(--bg-dark); }

.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    text-align: center;
}

.btn-alert {
    background-color: var(--color-alert);
    color: #fff;
}

.btn-alert:hover {
    background-color: var(--color-alert-hover);
    color: #fff;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--border-light);
    color: var(--color-text-dark);
}

.btn-outline:hover {
    border-color: var(--color-text-dark);
    background-color: var(--bg-light);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: var(--border-light);
    padding: 16px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-img {
    max-width: 160px;
    height: auto;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: var(--border-alert);
    color: var(--color-alert);
    background: var(--bg-pink);
    border-radius: 50px;
    padding: 4px 12px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    font-weight: bold;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-alert);
    border-radius: 50%;
}

.pulse-red {
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.desktop-only { display: none; }

.main-nav {
    display: none;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-list a {
    color: var(--color-text-muted);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-list a:hover {
    color: var(--color-alert);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-actions .btn {
    display: none;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    color: var(--color-text-dark);
    cursor: pointer;
    display: flex;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background-color: var(--bg-white);
    z-index: 200;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    border-left: var(--border-light);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-inner {
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--color-text-dark);
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.mobile-nav-list a {
    font-size: 1.25rem;
    color: var(--color-text-dark);
    font-weight: 500;
}

.mobile-btn {
    margin-top: auto;
    margin-bottom: 40px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: radial-gradient(circle at top right, rgba(239, 68, 68, 0.05), transparent 60%), var(--bg-white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.hero-subdesc {
    color: #64748b;
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-capsules {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.capsule {
    background-color: var(--bg-white);
    border: var(--border-light);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

/* Hero Visual - Incident Panel */
.incident-panel {
    background: var(--bg-white);
    border: var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: relative;
}

.panel-header {
    background: var(--bg-light);
    padding: 16px 24px;
    border-bottom: var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ph-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--color-text-dark);
}

.ph-left svg {
    color: var(--color-alert);
}

.status-badge {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: bold;
}

.status-badge.red {
    background: var(--color-alert);
    color: #fff;
}

.pulse-bg {
    animation: pulse-bg 2s infinite;
}

@keyframes pulse-bg {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.panel-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.symptoms-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.s-item {
    background: var(--bg-pink);
    border: var(--border-alert);
    color: var(--color-alert-dark);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.x-mark {
    font-weight: bold;
    font-size: 0.7rem;
}

.diag-line-container {
    width: 100%;
    height: 2px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.diag-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(239, 68, 68, 0.2);
}

.diag-scanner {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background: var(--color-alert);
    animation: scan 3s infinite linear;
}

@keyframes scan {
    0% { left: -30%; }
    100% { left: 100%; }
}

.d-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.d-mod {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.d-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.d-dot.red { background: var(--color-alert); }
.d-dot.green { background: var(--color-green); }
.d-dot.amber { background: var(--color-amber); }

.panel-footer {
    background: var(--bg-light);
    padding: 16px 24px;
    border-top: var(--border-light);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.pf-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.floating-alert {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: var(--bg-dark);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: var(--shadow-md);
}

/* Status Bar */
.status-bar {
    background: var(--bg-white);
    border-top: var(--border-light);
    border-bottom: var(--border-light);
    padding: 20px 0;
}

.status-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.s-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.s-dot.amber { background: var(--color-amber); }
.s-dot.blue { background: #3b82f6; }
.s-dot.green { background: var(--color-green); }

/* Grids */
.grid-cards-2 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-cards-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-cards-4 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-cards-auto { display: grid; grid-template-columns: 1fr; gap: 20px; }

/* Cards */
.card {
    border-radius: var(--radius);
    transition: var(--transition);
}

.white-card {
    background: var(--bg-white);
    border: var(--border-light);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.white-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.simple-card {
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius);
    border: var(--border-light);
}

.outline-card {
    background: var(--bg-white);
    border: var(--border-light);
    padding: 24px;
}

.outline-card:hover {
    border-color: rgba(239, 68, 68, 0.3);
}

.card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    color: var(--color-text-dark);
}

.alert-icon {
    color: var(--color-alert);
}

/* Tags Grid */
.tags-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.tag-card {
    background: var(--bg-white);
    border: var(--border-alert);
    color: var(--color-alert-dark);
    padding: 12px 20px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Diagnostic Panel (WP) */
.diag-panel {
    background: var(--bg-light);
    border: var(--border-light);
    padding: 40px;
    border-radius: var(--radius-lg);
    max-width: 800px;
    margin: 0 auto;
}

.dp-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.dp-item {
    background: var(--bg-white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--color-text-dark);
    border: var(--border-light);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-sm);
}

.dp-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dp-status.green { background: var(--color-green); }
.dp-status.amber { background: var(--color-amber); }
.dp-status.red { background: var(--color-alert); }

/* Process Timeline */
.incident-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.incident-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(239, 68, 68, 0.2);
}

.i-step {
    display: flex;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.i-marker {
    width: 42px;
    height: 42px;
    background: var(--bg-white);
    border: 2px solid var(--color-alert);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--color-alert);
    flex-shrink: 0;
}

.i-content {
    background: var(--bg-white);
    border: var(--border-light);
    padding: 24px;
    border-radius: var(--radius);
    flex-grow: 1;
    box-shadow: var(--shadow-sm);
}

/* STOP Cards */
.stop-card {
    background: var(--bg-pink);
    border: var(--border-alert);
    padding: 24px;
}

.stop-header {
    font-family: var(--font-mono);
    color: var(--color-alert);
    font-weight: bold;
    font-size: 0.8rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.stop-header::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background: var(--color-alert);
    border-radius: 2px;
}

/* Counters */
.counters-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.counter-card {
    background: var(--bg-white);
    border: var(--border-light);
    padding: 40px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.counter-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-text-dark);
    display: inline-block;
    line-height: 1;
}

.counter-plus {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-muted);
    display: inline-block;
    vertical-align: top;
    margin-left: 2px;
}

.counter-label {
    margin-top: 16px;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.check-icon {
    color: var(--color-green);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Edu Content */
.edu-content {
    max-width: 800px;
}
.edu-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* CodePress Section */
.cp-desc-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 100%; /* Full width */
}

.faq-item {
    background: var(--bg-white);
    border: var(--border-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    color: var(--color-text-dark);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 50px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-content {
    padding: 0 24px 20px;
    color: var(--color-text-muted);
}

/* Form */
.incident-form-wrapper {
    max-width: 100%; /* Full width */
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: var(--border-light);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.form-header {
    background: var(--bg-light);
    padding: 30px 40px;
    border-bottom: var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.form-header h2 {
    margin: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
}

.form-main {
    padding: 40px;
}

.form-sidebar {
    background: var(--bg-light);
    padding: 40px;
    border-top: var(--border-light);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--color-text-dark);
    font-weight: 500;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-white);
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    color: var(--color-text-dark);
    font-family: inherit;
    transition: var(--transition);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--color-alert);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    accent-color: var(--color-alert);
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

.form-actions {
    margin-top: 32px;
}

.alert-box {
    background: var(--bg-pink);
    border: var(--border-alert);
    padding: 32px;
    border-radius: var(--radius);
}

.alert-icon-large {
    color: var(--color-alert);
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.alert-box h3 {
    color: var(--color-alert-dark);
}

.alert-box p {
    color: var(--color-alert-dark);
    font-size: 0.95rem;
}

/* Footer */
.site-footer {
    background: var(--bg-white);
    padding: 60px 0 40px;
    border-top: var(--border-light);
}

.footer-logo {
    max-width: 140px;
    margin: 0 auto 24px;
}

.footer-desc {
    max-width: 600px;
    margin: 0 auto 24px;
    color: var(--color-text-muted);
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto 32px;
    font-size: 0.8rem;
    color: #94a3b8;
}

.footer-copy {
    font-size: 0.9rem;
    color: #64748b;
}

/* Chat Modal */
.chat-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-alert);
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4);
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.chat-toggle:hover {
    transform: translateY(-3px);
}

.chat-modal {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 320px;
    background: var(--bg-white);
    border: var(--border-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    z-index: 95;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-modal.active {
    display: flex;
}

.chat-header {
    background: var(--bg-light);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: var(--border-light);
    color: var(--color-text-dark);
}

.chat-header button {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

.chat-body {
    padding: 20px;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.chat-body p {
    margin-bottom: 12px;
}

.chat-footer {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: var(--border-light);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 35px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-white);
    color: var(--color-text-dark);
    border: var(--border-light);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    z-index: 89;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--bg-light);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    border-top: var(--border-light);
    padding: 20px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

/* Media Queries */
@media (min-width: 768px) {
    .grid-cards-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-cards-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-cards-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-cards-auto { grid-template-columns: repeat(2, 1fr); }
    .counters-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr 1fr; }
    .form-options { flex-direction: row; gap: 24px; }
    .cookie-content { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 992px) {
    .desktop-only { display: inline-flex; }
    .main-nav { display: block; }
    .header-actions .btn { display: inline-flex; }
    .mobile-menu-toggle { display: none; }
    .hero-grid { grid-template-columns: 1fr 1fr; }
    .grid-cards-4 { grid-template-columns: repeat(4, 1fr); }
    .grid-cards-auto { grid-template-columns: repeat(3, 1fr); }
    .counters-grid { grid-template-columns: repeat(4, 1fr); }
    .form-grid { grid-template-columns: 2fr 1fr; }
    .form-sidebar { border-top: none; border-left: var(--border-light); }
}

/* Ukrycie czarnego dymku z alertem w sekcji Hero */
.floating-alert {
    display: none !important;
}

/* Zmniejszenie ikony w czerwonym kółku czatu */
.chat-toggle svg {
    width: 20px !important;
    height: 20px !important;
}