﻿   
        /* ===== RESET & GLOBAL ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: #ffffff;
            color: #1e293b;
            line-height: 1.5;
            scroll-behavior: smooth;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        section {
            padding: 80px 0;
        }
        .bg-light {
            background-color: #f8fafc;
        }
        .text-center {
            text-align: center;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #1a5f3a;
            color: white;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        .btn:hover {
            background: #0e3d24;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #1a5f3a;
            color: #1a5f3a;
        }
        .btn-outline:hover {
            background: #1a5f3a;
            color: white;
        }
        h1, h2, h3 {
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }
        .gradient-text {
            background: linear-gradient(135deg, #1a5f3a, #2b8c54);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }
        /* Nawigacja */
        .navbar {
            position: sticky;
            top: 0;
            background: rgba(255,255,255,0.96);
            backdrop-filter: blur(12px);
            box-shadow: 0 2px 12px rgba(0,0,0,0.05);
            z-index: 1000;
            padding: 16px 0;
        }
        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .logo img {
            height: 52px;
            width: auto;
            display: block;
        }
        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
        }
        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: #1e293b;
            transition: color 0.2s;
        }
        .nav-links a:hover {
            color: #1a5f3a;
        }
        .contact-header {
            display: flex;
            gap: 20px;
            align-items: center;
            font-weight: 500;
        }
        .contact-header span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        /* Slider z jednym napisem na środku */
        .hero-slider {
            width: 100%;
            overflow: hidden;
            background: #eef2f5;
            position: relative;
        }
        .slider-wrapper {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
        }
        .slider-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        .slide {
            flex: 0 0 100%;
            max-width: 100%;
        }
        .slide img {
            width: 100%;
            height: auto;
            max-height: 550px;
            object-fit: cover;
            display: block;
        }
        .slider-static-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            background: rgba(0, 0, 0, 0.65);
            backdrop-filter: blur(8px);
            padding: 32px 48px;
            border-radius: 60px;
            color: white;
            z-index: 20;
            pointer-events: none;
            border-left: 5px solid #1a5f3a;
            border-right: 5px solid #1a5f3a;
            min-width: 320px;
        }
        .slider-static-overlay h2 {
            font-size: 2.8rem;
            margin-bottom: 0.5rem;
            color: white;
            letter-spacing: 2px;
        }
        .slider-static-overlay p {
            font-size: 1.2rem;
            margin: 0.25rem 0;
        }
        .slider-static-overlay .sub {
            font-size: 0.9rem;
            opacity: 0.8;
            letter-spacing: 1px;
        }
        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.5);
            color: white;
            border: none;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 30;
            font-size: 24px;
            transition: 0.2s;
        }
        .slider-btn:hover {
            background: #1a5f3a;
        }
        .btn-prev { left: 20px; }
        .btn-next { right: 20px; }
        .dots {
            text-align: center;
            padding: 16px 0;
            background: #f1f5f9;
        }
        .dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #cbd5e1;
            margin: 0 6px;
            cursor: pointer;
        }
        .dot.active {
            background: #1a5f3a;
            transform: scale(1.2);
        }
        /* Karty produktów – klikalne w całości */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 32px;
            margin-top: 48px;
        }
        .product-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.3s;
            text-decoration: none;
            color: inherit;
            display: block;
            box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
            border: 1px solid #eef2f5;
            cursor: pointer;
        }
        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 35px -10px rgba(0,0,0,0.1);
            border-color: #cbd5e1;
        }
        .product-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
            pointer-events: none;
        }
        .product-card h3 {
            padding: 20px 20px 0;
            font-size: 1.35rem;
        }
        .product-card p {
            padding: 8px 20px 20px;
            color: #475569;
        }
        /* Definicje */
        .definitions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 24px;
            margin-top: 32px;
        }
        .def-card {
            background: white;
            border-radius: 20px;
            padding: 24px;
            border: 1px solid #e2e8f0;
            transition: 0.2s;
        }
        .def-card:hover {
            border-color: #1a5f3a;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
        }
.def-card h3 {
            font-size: 1.25rem;
            margin-bottom: 12px;
            color: #1a5f3a;
        }
        .tooltip {
            border-bottom: 1px dashed #1a5f3a;
            cursor: help;
        }
        /* FAQ */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background: white;
            border-radius: 20px;
            margin-bottom: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            border: 1px solid #e2e8f0;
        }
        .faq-question {
            padding: 20px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            padding: 0 20px 20px;
            display: none;
            color: #334155;
        }
        .faq-item.active .faq-answer {
            display: block;
        }
        /* Kontakt */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: start;
        }
        .contact-details {
            background: #f8fafc;
            padding: 32px;
            border-radius: 28px;
        }
        .contact-details p {
            margin: 12px 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .contact-details a {
            color: #1e293b;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }
        .contact-details a:hover {
            color: #1a5f3a;
            text-decoration: underline;
        }
        .copy-email {
            background: none;
            border: none;
            color: #1a5f3a;
            cursor: pointer;
            font-size: 0.9rem;
            margin-left: 8px;
        }
        .google-maps {
            width: 100%;
            height: 350px;
            border-radius: 28px;
            border: 0;
        }
        .map-facade {
            width: 100%;
            height: 350px;
            border-radius: 28px;
            background: linear-gradient(135deg, #eef2f7, #dce8e1);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 14px;
            padding: 24px;
            text-align: center;
        }
        .map-facade p {
            margin: 0;
            color: #1e293b;
            font-weight: 600;
        }
        .map-icon {
            font-size: 2.5rem;
            line-height: 1;
        }
        .map-load-button {
            border: 0;
            border-radius: 999px;
            background: #1a5f3a;
            color: white;
            padding: 12px 22px;
            font: inherit;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
        }
        .map-load-button:hover {
            background: #12472b;
            transform: translateY(-1px);
        }
        .map-load-button:focus-visible {
            outline: 3px solid #f59e0b;
            outline-offset: 3px;
        }
        /* Flagi */
        .flags-section {
            background: #f1f5f9;
            padding: 48px 0;
            text-align: center;
        }
        .lang-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0;
            list-style: none;
        }
        .lang-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: white;
            padding: 6px 16px;
            border-radius: 40px;
            text-decoration: none;
            color: #1e293b;
            font-weight: 500;
            transition: 0.2s;
            border: 1px solid #e2e8f0;
        }
        .lang-item img {
            width: 24px;
            height: auto;
            border-radius: 2px;
        }
        .lang-item:hover {
            background: #eef2ff;
            border-color: #1a5f3a;
        }
        /* Footer */
        footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 48px 0 24px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-grid a {
            color: #cbd5e1;
            text-decoration: none;
        }
        .footer-legal {
            font-size: 0.8rem;
            border-top: 1px solid #334155;
            padding-top: 24px;
            margin-top: 24px;
            text-align: center;
        }
        .footer-legal p {
            margin: 8px 0;
        }
        .badge {
            display: inline-block;
            background: #1e293b;
            padding: 4px 12px;
            border-radius: 40px;
            font-size: 0.7rem;
            margin: 0 4px;
        }
        @media (max-width: 768px) {
            h2 { font-size: 1.8rem; }
            .navbar .container { flex-direction: column; }
            .nav-links { flex-wrap: wrap; justify-content: center; gap: 20px; }
            .contact-grid { grid-template-columns: 1fr; gap: 32px; }
            .product-grid { gap: 20px; }
            section { padding: 60px 0; }
            .slider-static-overlay { padding: 16px 24px; min-width: 260px; }
            .slider-static-overlay h2 { font-size: 1.8rem; }
            .slider-static-overlay p { font-size: 0.9rem; }
        }
