/* RESET I PODSTAWY */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

:root {
    --primary: #1a5f2a;
    --primary-dark: #0d3d16;
    --primary-light: #2d8a3e;
    --accent: #e8b923;
    --accent-dark: #c99a0a;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* IKONY - POŁĄCZONE */
i[class*="fa-"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.2em;
    font-style: normal;
    line-height: 1;
}

/* PASEK JĘZYKOWY */
.lang-bar {
    background: var(--primary-dark);
    padding: 8px 0;
    position: relative;
    z-index: 1000;
}

.lang-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(13, 1fr);
    justify-items: center;
    gap: 5px;
}

.lang-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 3px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-link:hover,
.lang-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.lang-link img {
    width: 16px;
    height: 11px;
    object-fit: cover;
    border-radius: 2px;
}

/* HEADER */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 150px;
    width: 308px;
    max-width: 100%;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 28px;
    color: var(--primary);
    line-height: 1;
}

.logo-text span {
    font-size: 12px;
    color: var(--text-light);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    text-transform: none;
}

.header-contact {
    text-align: right;
}

.header-contact a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.header-contact a:hover {
    color: var(--accent-dark);
}

/* HERO */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #dcead9;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #064C0F;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: none;
}

.hero-content p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.95;
    animation: none;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    animation: none;
}

/* PRZYCISKI */
.btn {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-primary {
    background: var(--accent);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: #064C0F;
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: #064C0F;
}

/* ANIMACJE */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SEKCJA PRODUKTÓW */
.products {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 20px auto 0;
}

/* SIATKA PRODUKTÓW - POPRAWA CLS */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 250px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.product-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card-full-image .product-image img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center;
    margin: 0;
}

.product-content {
    padding: 30px;
}

.product-content h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 15px;
}

.product-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* SPECYFIKACJE */
.product-specs {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.product-specs h4 {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
}

.spec-row:last-child {
    border-bottom: none;
}

/* TABELE */
.tables-section {
    background: var(--bg-light);
    padding: 80px 20px;
}

.tables-container {
    max-width: 1400px;
    margin: 0 auto;
}

.table-wrapper {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
    overflow-x: auto;
}

.table-wrapper h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

th {
    background: var(--primary);
    color: var(--white);
    padding: 15px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
}

td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

tr:hover {
    background: var(--bg-light);
}

/* LISTY */
.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 12px;
}

.features-list li {
    padding: 12px 15px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.features-list li::before {
    content: '✓';
    color: var(--primary-light);
}

.note {
    margin-top: 20px;
    padding: 15px;
    background: #fef3c7;
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    font-size: 14px;
}

/* DEFINICJE */
.definitions-section {
    padding: 80px 20px;
    background:
        radial-gradient(circle at top left, rgba(26, 95, 42, 0.12), transparent 35%),
        linear-gradient(180deg, #f7fbf7 0%, #ffffff 100%);
}

.definitions-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.definition-card {
    background: var(--white);
    border: 1px solid rgba(26, 95, 42, 0.08);
    border-radius: 18px;
    padding: 26px;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.definition-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 95, 42, 0.18);
}

.definition-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
}

.definition-card h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.definition-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* FAQ */
.faq-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f7f4 100%);
}

.faq-list {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 95, 42, 0.08);
    color: var(--primary);
    font-size: 20px;
    line-height: 1;
    transition: transform 0.25s ease, background 0.25s ease;
}

.faq-item[open] summary {
    border-bottom: 1px solid #e5e7eb;
}

.faq-item[open] summary::after {
    content: '−';
    background: rgba(232, 185, 35, 0.16);
}

.faq-answer {
    padding: 22px 26px 26px;
    color: var(--text-light);
    line-height: 1.75;
    background: linear-gradient(180deg, rgba(248, 249, 250, 0.8), rgba(255, 255, 255, 1));
}

/* GALERIA */
.gallery {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 24px;
}

.gallery-item {
    aspect-ratio: 16/10;
    min-height: 280px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--white) 100%);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1100;
    padding: 20px;
}

.gallery-lightbox.open {
    display: flex;
}

.gallery-lightbox img {
    max-width: min(1100px, 95vw);
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55);
}

.gallery-lightbox-close {
    position: absolute;
    top: 18px;
    right: 24px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 44px;
    line-height: 1;
    cursor: pointer;
}

.gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.25s;
}

.gallery-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.35);
}

.gallery-lightbox-prev {
    left: 20px;
}

.gallery-lightbox-next {
    right: 20px;
}

/* KONTAKT */
.contact {
    background: var(--primary-dark);
    color: var(--white);
    padding: 80px 20px;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--accent);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--accent);
}

.map-container {
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 20px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

/* STOPKA */
footer {
    background: #0a2a10;
    color: rgba(255,255,255,0.6);
    padding: 40px 20px;
    text-align: center;
    font-size: 14px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

footer a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    transition: all 0.3s;
    font-weight: 600;
}

footer a:hover {
    color: var(--accent-dark);
    background-color: rgba(232, 185, 35, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

footer a:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}

/* SOCIAL SIDEBAR */
.social-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    display: flex;
    flex-direction: column;
}

.social-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.social-fb { background: #3b5998; }
.social-gp { background: #dd4b39; }
.social-vk { background: #4a76a8; }
.social-pt { background: #bd081c; }
.social-tw { background: #1da1f2; }

/* RESPONSIVE - ZOPTYMALIZOWANE */
@media (max-width: 768px) {
    .hero {
        height: 500px;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .header-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        position: relative;
    }

    .navbar {
        width: 100%;
        margin-left: 0;
    }

    .nav-container {
        width: 100%;
        justify-content: flex-end;
    }
    
    .header-contact {
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        min-height: 240px;
    }

    .definitions-section,
    .faq-section {
        padding: 60px 20px;
    }

    .definitions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .definition-card {
        padding: 22px;
    }

    .faq-item summary {
        padding: 18px 20px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 18px 20px 22px;
    }

    .gallery-lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 26px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .table-wrapper {
        padding: 20px;
    }
    
    th, td {
        padding: 10px;
        font-size: 12px;
    }
    
    .social-sidebar {
        bottom: 0;
        top: auto;
        transform: none;
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }

    /* MENU MOBILNE */
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
        order: 2;
    }

    .nav-container .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1b431f;
        flex-direction: column;
        padding: 10px 0;
        z-index: 1000;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    .nav-container .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 15px;
        color: white;
        text-decoration: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .hamburger {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--primary);
        margin: 5px 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .mobile-menu-btn.open .hamburger:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-btn.open .hamburger:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.open .hamburger:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* NAVIGATION - POPRAWA POZYCJI */
.navbar {
    flex: 1;
    margin-left: auto;
}

.nav-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #2E2E2E;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.mobile-menu-btn {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-container .nav-links a {
        color: var(--white);
    }

    .nav-container .nav-links a:hover,
    .nav-container .nav-links a:focus {
        color: var(--accent);
    }
}

@media (max-width: 560px) {
    .definitions-grid {
        grid-template-columns: 1fr;
    }
}

/* ANIMACJE */
.fade-in {
    opacity: 1;
    transform: none;
    transition: none;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
#kontakt{
       background: var(--primary-dark);
    padding: 40px 30px;
    border: 3px solid var(--accent);
    border-radius: 20px;
}

/* ========== MAPA - POPRAWNIE DZIAŁAJĄCA ========== */
.google-maps {
    width: 100%;
    border: 0;
    border-radius: 12px;
    display: block;
}

/* Dodatkowe zabezpieczenie dla responsywności */
.map-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.map-container iframe {
    width: 100% !important;
    height: 450px;
    border: 0;
    border-radius: 12px;
    display: block;
}

.map-note {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.footer-aktru-link {
    color: var(--accent);
}

/* TRYB BEZ EFEKTÓW - natychmiastowe wyświetlanie treści */
*, *::before, *::after {
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    animation-name: none !important;
    transition: none !important;
}

.fade-in,
.fade-in.visible,
.hero-content h1,
.hero-content p,
.hero-buttons {
    opacity: 1 !important;
    transform: none !important;
}
/* ========== ABOUT US SECTION - STATIC ========== */
.about-us {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8edf2 100%);
    position: relative;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2d5a27, #4a8c3f, #2d5a27);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-header h2 {
    font-size: 2.5rem;
    color: #225a1a;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.about-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #4a8c3f;
    border-radius: 2px;
}

.about-header p {
    font-size: 1.3rem;
    color: #2d5a27;
    font-weight: 500;
    margin-top: 15px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}
.about-content h2 {
    color: #2d5a27;
}
.sr-only{
    color: #2d5a27;
}
.about-text {
    flex: 1.2;
    min-width: 280px;
}

.about-lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a3a15;
    line-height: 1.5;
    margin-bottom: 20px;
    border-left: 4px solid #4a8c3f;
    padding-left: 20px;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 20px;
    border-radius: 40px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    font-weight: 500;
    color: #1a3a15;
}

.feature-icon {
    font-size: 1.3rem;
}

.about-stats {
    flex: 0.8;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #4a8c3f;
    line-height: 1.2;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .about-us {
        padding: 50px 15px;
    }
    
    .about-header h2 {
        font-size: 2rem;
    }
    
    .about-header p {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat-card {
        flex: 1;
        min-width: 120px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

/* ========== STOPKA Z KOLUMNAMI ========== */
.footer-main .footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 30px;
    text-align: left;
}

.footer-main .footer-col {
    padding: 10px;
}

.footer-main .footer-col p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-main .footer-col strong {
    color: var(--accent);
    font-weight: 700;
}

.footer-main .footer-col a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s, background 0.3s;
    border-radius: 4px;
}

.footer-main .footer-col a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

.footer-main .footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 20px;
    text-align: center;
}

.footer-main .footer-copyright p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-main .footer-copyright a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-main .footer-copyright a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

.footer-main .footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.footer-main .footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 15px 0;
}

.footer-main .footer-small {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 10px;
}

/* Linki weryfikacyjne w stopce - przyciski */
.footer-link-btn {
    display: inline-block;
    padding: 12px 16px;
    min-width: 48px;
    min-height: 48px;
    line-height: 1.5;
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
}

.footer-link-btn:hover {
    background: rgba(232, 185, 35, 0.15);
    color: var(--accent-dark);
    text-decoration: underline;
}

.footer-link-btn:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Responsywność stopki */
@media (max-width: 768px) {
    .footer-main .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-main .footer-col {
        padding: 5px;
    }
    
    .footer-link-btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: 14px 16px;
    }
    
    .footer-main .footer-copyright {
        padding-top: 20px;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .footer-main .footer-columns {
        gap: 20px;
    }
    
    .footer-main .footer-col p {
        font-size: 14px;
    }
}