/* ========================================
   CSS VARIABLES - INDUSTRIAL ELEGANCE 2026
   ======================================== */
:root {
    /* Colors - Industrial Elegance */
    --color-anthracite: #1A1A1B;
    --color-charcoal: #2A2A2C;
    --color-slate: #3A3A3C;
    --color-white: #FFFFFF;
    --color-off-white: #F5F5F7;
    --color-vibrant-orange: #FF5F1F;
    --color-orange-glow: rgba(255, 95, 31, 0.15);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;

    /* Borders */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 32px var(--color-orange-glow);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   RESET & BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-white);
    background: var(--color-anthracite);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-xl) 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   NAVBAR - GLASSMORPHISM
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: rgba(26, 26, 27, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-white);
    position: relative;
}

.nav-brand h1::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30%;
    height: 3px;
    background: var(--color-vibrant-orange);
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-md);
}

.nav-menu a {
    color: var(--color-off-white);
    font-weight: 500;
    font-size: 0.95rem;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    letter-spacing: 0.02em;
}

.nav-menu a:hover {
    color: var(--color-vibrant-orange);
    background: rgba(255, 95, 31, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
    gap: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* ========================================
   HERO SECTION - SPLIT SCREEN
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background:
        linear-gradient(135deg, rgba(26, 26, 27, 0.95) 0%, rgba(42, 42, 44, 0.9) 100%),
        url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1920') center/cover fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, var(--color-orange-glow) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    padding: var(--space-lg) var(--space-md);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-off-white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--color-off-white);
    margin-bottom: var(--space-lg);
    font-weight: 400;
    letter-spacing: 0.02em;
    opacity: 0.9;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition-base);
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-vibrant-orange);
    color: var(--color-white);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 48px rgba(255, 95, 31, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--color-vibrant-orange);
    background: rgba(255, 95, 31, 0.1);
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-lg);
    font-weight: 400;
}

/* ========================================
   O NAS SECTION
   ======================================== */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: var(--space-md);
    color: rgba(255, 255, 255, 0.85);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-base);
}

.stat-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 95, 31, 0.05);
    border-color: rgba(255, 95, 31, 0.2);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-vibrant-orange);
    margin-bottom: var(--space-xs);
    letter-spacing: -0.02em;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.02em;
}

/* ========================================
   USŁUGI - 3 COLUMN GRID
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-vibrant-orange), transparent);
    opacity: 0;
    transition: var(--transition-base);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 95, 31, 0.3);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    filter: grayscale(0);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
    color: var(--color-white);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.service-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-sm);
}

.service-list li {
    padding: var(--space-xs) 0;
    padding-left: 1.75rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-vibrant-orange);
    border-radius: 50%;
}

/* ========================================
   REALIZACJE - BENTO GRID + HOVER EFFECTS
   ======================================== */
.realizacje-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.realizacja-item {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-base);
}

.realizacja-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 95, 31, 0.3);
}

/* Bento Grid Layout for Realizacje */
.realizacja-item:nth-child(1) {
    grid-column: span 6;
}

.realizacja-item:nth-child(2) {
    grid-column: span 6;
}

.realizacja-item:nth-child(3) {
    grid-column: span 12;
}

.realizacja-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    padding: var(--space-md);
    background: rgba(255, 95, 31, 0.1);
    color: var(--color-white);
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.01em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.realizacja-images {
    display: grid;
    position: relative;
}

.realizacja-images:not(.multi) {
    grid-template-columns: 1fr 1fr;
}

.realizacja-images.multi {
    grid-template-columns: repeat(4, 1fr);
}

.realizacja-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.realizacja-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(20%);
}

.realizacja-image-wrapper:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 27, 0.95), transparent);
    color: var(--color-white);
    padding: var(--space-md) var(--space-sm);
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

/* ========================================
   KONTAKT SECTION
   ======================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
}

.contact-info {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: var(--space-md);
    color: var(--color-vibrant-orange);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.contact-item {
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item strong {
    display: block;
    margin-bottom: var(--space-xs);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-item p {
    line-height: 1.8;
    color: var(--color-white);
}

.contact-item a {
    color: var(--color-vibrant-orange);
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* ========================================
   FORMULARZ - FLOATING LABELS
   ======================================== */
.contact-form {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-group {
    margin-bottom: var(--space-md);
    position: relative;
}

.form-group label {
    position: absolute;
    left: var(--space-sm);
    top: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition-fast);
    pointer-events: none;
    background: transparent;
    padding: 0 0.5rem;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label {
    top: -0.75rem;
    left: var(--space-sm);
    font-size: 0.85rem;
    color: var(--color-vibrant-orange);
    background: var(--color-anthracite);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem var(--space-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--color-white);
    transition: var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
}

.form-group select option {
    background: var(--color-charcoal);
    color: var(--color-white);
    padding: 0.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-vibrant-orange);
    background: rgba(255, 95, 31, 0.05);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ff4444;
}

.error-message {
    display: none;
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: var(--space-xs);
}

.form-group.error .error-message {
    display: block;
}

.checkbox-group {
    margin-top: var(--space-md);
    margin-bottom: var(--space-lg);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
    accent-color: var(--color-vibrant-orange);
}

.checkbox-label span {
    font-weight: normal;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.checkbox-label a {
    color: var(--color-vibrant-orange);
    text-decoration: underline;
}

.contact-form .btn[type="submit"] {
    margin-top: var(--space-lg);
}

.form-status {
    margin-top: var(--space-md);
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    text-align: center;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(39, 174, 96, 0.2);
    color: #2ecc71;
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.form-status.error {
    display: block;
    background: rgba(231, 76, 60, 0.2);
    color: #ff4444;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: rgba(26, 26, 27, 0.8);
    backdrop-filter: blur(20px);
    color: var(--color-off-white);
    padding: var(--space-lg) 0 var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: var(--space-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
    color: var(--color-vibrant-orange);
    font-weight: 700;
}

.footer-section p {
    margin-bottom: var(--space-xs);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-section a {
    color: var(--color-off-white);
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--color-vibrant-orange);
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: var(--space-xs);
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--color-vibrant-orange);
    padding-left: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: var(--space-md);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 27, 0.95);
    backdrop-filter: blur(20px);
    color: var(--color-white);
    padding: var(--space-md);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
}

/* ========================================
   COOKIE MODAL
   ======================================== */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: var(--color-charcoal);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-modal-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
    color: var(--color-white);
    font-weight: 700;
}

.cookie-option {
    margin-bottom: var(--space-md);
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-option label {
    display: flex;
    gap: var(--space-sm);
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
    accent-color: var(--color-vibrant-orange);
}

.cookie-option strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--color-white);
}

.cookie-option p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.cookie-modal-buttons {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.cookie-modal-buttons .btn {
    flex: 1;
}

/* ========================================
   RESPONSIVE - MOBILE FIRST
   ======================================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .realizacja-item:nth-child(1),
    .realizacja-item:nth-child(2) {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    :root {
        --space-lg: 3rem;
        --space-xl: 4rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 27, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: var(--space-lg);
        transition: left 0.3s ease;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .realizacja-item {
        grid-column: span 12 !important;
    }

    .realizacja-images.multi {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .checkbox-group {
        margin-bottom: 6rem !important;
    }

    .contact-form .btn[type="submit"] {
        margin-top: 2rem !important;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .service-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }

    .checkbox-group {
        margin-bottom: 7rem !important;
    }

    .contact-form .btn[type="submit"] {
        margin-top: 3rem !important;
    }

    .realizacja-images.multi {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .navbar,
    .cookie-banner,
    .cookie-modal {
        display: none;
    }
}
