﻿* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
            background: #ffffff;
            color: #2d2d2d;
            line-height: 1.6;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 32px;
        }

        :root {
            --primary: #2563eb;
            --primary-dark: #1e40af;
            --accent: #dc2626;
            --light-bg: #f9fafb;
            --border: #e5e7eb;
            --text: #2d2d2d;
            --text-light: #6b7280;
        }

        /* ========== HEADER ========== */
        header {
            background: white;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
        }

        .logo img {
            height: 50px;
            width: auto;
        }

        .nav-menu {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text);
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.25s;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.25s;
        }

        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: 100%;
        }

        .nav-menu a:hover {
            color: var(--primary);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--primary);
        }

        /* ========== HERO ========== */
        .hero {
            display: flex;
            align-items: center;
            padding: 100px 0 80px;
            background: linear-gradient(135deg, #f9fafb 0%, white 100%);
        }

        .hero-grid {
            display: flex;
            gap: 60px;
            align-items: center;
            flex-wrap: wrap;
        }

        .hero-content {
            flex: 1;
            min-width: 300px;
        }

        .hero-badge {
            display: inline-block;
            background: #1e3a8a;
            color: #ffffff;
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 20px;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 24px;
            color: var(--text);
        }

        .hero p {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 32px;
            line-height: 1.7;
            max-width: 550px;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-bottom: 36px;
            flex-wrap: wrap;
        }

        .stat span {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            display: block;
        }

        .stat p {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-top: 4px;
            font-weight: 500;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary);
            color: white;
            padding: 14px 32px;
            border-radius: 4px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.25s;
        }

        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background: #dbeafe;
            border-color: var(--primary-dark);
        }

        .hero-image {
            flex: 1;
            text-align: center;
            min-width: 300px;
        }

        .hero-image img {
            width: 100%;
            max-width: 500px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* ========== O FIRMIE ========== */
        .about-section {
            background: var(--light-bg);
            padding: 100px 0;
        }

        .about-wrapper {
            display: flex;
            gap: 60px;
            align-items: center;
            flex-wrap: wrap;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            color: var(--text-light);
            line-height: 1.75;
        }

        .about-highlight {
            background: white;
            padding: 24px;
            border-radius: 8px;
            border-left: 4px solid var(--accent);
            margin-top: 24px;
            font-weight: 500;
            color: var(--text);
            font-size: 0.95rem;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
        }

        .about-image img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* ========== SEKCJA OFERTA ========== */
        .offer-section {
            padding: 100px 0;
            background: white;
        }

        .section-header {
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 12px;
            color: var(--text);
        }

        .section-header p {
            color: var(--text-light);
            font-size: 1.05rem;
            max-width: 600px;
        }

        .category-group {
            margin-bottom: 80px;
        }

        .category-title {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 32px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--primary);
            display: inline-block;
            color: var(--text);
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 28px;
        }

        .product-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.25s;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .product-card:hover {
            border-color: var(--primary);
            box-shadow: 0 12px 30px rgba(37, 99, 235, 0.12);
            transform: translateY(-4px);
        }

        .product-img {
            height: 200px;
            background: var(--light-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            border-bottom: 1px solid var(--border);
        }

        .product-img img {
            max-width: 85%;
            max-height: 160px;
            object-fit: contain;
        }

        .product-card h4 {
            padding: 16px 16px 8px;
            font-size: 1.15rem;
            color: var(--text);
        }

        .product-card p {
            padding: 0 16px 16px;
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* ========== FAQ ========== */
        .faq-section {
            padding: 100px 0;
            background: var(--light-bg);
        }

        .faq-grid {
            max-width: 900px;
        }

        .faq-item {
            margin-bottom: 16px;
        }

        .faq-question {
            background: white;
            border: 1px solid var(--border);
            border-radius: 4px;
            width: 100%;
            text-align: left;
            padding: 20px;
            font-size: 1.1rem;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            color: var(--text);
            transition: all 0.25s;
        }

        .faq-question:hover {
            background: #f3f4f6;
            border-color: var(--primary);
        }

        .faq-icon {
            font-size: 1.4rem;
            color: var(--primary);
            transition: transform 0.25s;
            font-weight: 600;
        }

        .faq-question:hover .faq-icon {
            transform: scale(1.2);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: #f9fafb;
            border-left: 2px solid var(--primary);
        }

        .faq-answer p {
            padding: 20px;
            margin: 0;
            color: var(--text-light);
            line-height: 1.7;
        }

        .faq-answer.show {
            max-height: 500px;
        }

        /* ========== KONTAKT ========== */
        .contact-section {
            padding: 100px 0;
            background: white;
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            background: white;
            border: 1px solid var(--border);
            padding: 48px;
            border-radius: 8px;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 28px;
            color: var(--text);
            font-weight: 700;
        }

        .contact-detail {
            display: flex;
            gap: 16px;
            margin-bottom: 24px;
            align-items: flex-start;
        }

        .contact-detail .icon {
            font-size: 1.4rem;
            margin-top: 2px;
        }

        .contact-detail div {
            color: var(--text-light);
            line-height: 1.6;
        }

        .contact-form-placeholder p:first-child {
            font-size: 1.3rem;
            color: var(--text);
            font-weight: 700;
            margin-bottom: 8px;
        }

        .contact-form-placeholder p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .contact-form-placeholder > div {
            margin: 24px 0;
            color: var(--text);
            font-weight: 500;
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .email-links {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
            margin-top: 4px;
        }

        .email-links a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }

        .email-links a:hover {
            text-decoration: underline;
        }

        /* ========== KRAJE ========== */
        .countries-section {
            background: var(--light-bg);
            padding: 40px 0;
            border-top: 1px solid var(--border);
        }

        .lang-switcher {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 12px;
        }

        .lang-switcher a {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            text-decoration: none;
            background: white;
            padding: 10px 14px;
            border-radius: 4px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text);
            border: 1px solid var(--border);
            transition: all 0.25s;
        }

        .lang-switcher a:hover {
            border-color: var(--primary);
            background: #dbeafe;
            color: var(--primary);
        }

        .flag-icon {
            width: 20px;
            height: 15px;
            object-fit: cover;
            border-radius: 2px;
        }

        /* ========== FOOTER ========== */
        footer {
            background: #1f2937;
            color: #d1d5db;
            padding: 60px 0 24px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            color: white;
            margin-bottom: 16px;
            font-size: 1.05rem;
            font-weight: 700;
        }

        .footer-col p, .footer-col a {
            color: #d1d5db;
            text-decoration: none;
            line-height: 1.7;
            font-size: 0.9rem;
        }

        .footer-col a:hover {
            color: white;
        }

        .copyright {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid #374151;
            font-size: 0.8rem;
            color: #9ca3af;
        }

        /* ========== RESPONSYWNOŚĆ ========== */
        @media (max-width: 1200px) {
            .hero h1 { font-size: 2.8rem; }
            .section-header h2 { font-size: 2.2rem; }
        }

        @media (max-width: 900px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                flex-direction: column;
                gap: 0;
                background: white;
                border-bottom: 1px solid var(--border);
                padding: 16px 32px;
            }
            .nav-menu.active { display: flex; }
            .mobile-toggle { display: block; }
            .hero-grid { flex-direction: column; gap: 40px; }
            .about-wrapper { flex-direction: column; gap: 40px; }
            .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
            .hero h1 { font-size: 2.2rem; }
            .product-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
        }

        @media (max-width: 640px) {
            .container { padding: 0 20px; }
            .hero { padding: 60px 0 40px; }
            .hero h1 { font-size: 1.8rem; }
            .hero-stats { gap: 24px; }
            .stat span { font-size: 1.6rem; }
            .product-grid { grid-template-columns: 1fr; }
            .section-header h2 { font-size: 1.8rem; }
            .category-title { font-size: 1.2rem; }
            .lang-switcher { grid-template-columns: repeat(3, 1fr); }
            .footer-grid { gap: 24px; }
        }

        /* ========== ANIMACJE ========== */
        [data-anim="fade-up"] {
            opacity: 0;
            transform: translateY(30px);
        }

        [data-anim="fade-up"].visible {
            animation: fadeUp 0.6s ease-out forwards;
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        html {
            scroll-padding-top: 70px;
        }

        /* ========== FOOTER STYL MARKAB - SZEROKO, BEZ ŻÓŁCI ========== */
.footer-main {
  background: #111827;
  color: #e5e7eb;
  padding: 56px 0 32px;
  font-size: 0.9rem;
  border-top: 1px solid #1f2937;
}

.footer-main .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

/* 4 KOLUMNY - SZEROKIE ROZSTAWIENIE JAK W MARKAB */
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  border-left: 3px solid #3b82f6;
  padding-left: 12px;
}

.footer-col p {
  line-height: 1.7;
  margin-bottom: 12px;
  color: #d1d5db;
  font-size: 0.85rem;
}

.footer-col a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* DOLNY PASEK - PODZIELONY NA 2 SEKCJE */
.footer-copyright {
  border-top: 1px solid #1f2937;
  padding-top: 32px;
  text-align: center;
  font-size: 0.75rem;
  color: #9ca3af;
}

.copyright-text {
  margin-bottom: 24px;
  line-height: 1.6;
}

.tech-layer {
  background: #0f172a;
  padding: 20px 24px;
  border-radius: 8px;
  margin-top: 8px;
  font-size: 0.7rem;
  line-height: 1.6;
  text-align: left;
  border: 1px solid #1e293b;
}

.tech-layer strong {
  color: #94a3b8;
  font-weight: 600;
}

.tech-layer p {
  margin: 8px 0 0;
  color: #94a3b8;
}

.ai-meta {
  font-size: 0.80rem;
  color: #64748b;
  margin-top: 12px;
  padding-top: 8px;
  border-top: 1px solid #1e293b;
}

.ai-meta a {
  color: #818cf8;
}

.ai-meta a:hover {
  color: #a5b4fc;
}

/* RESPONSYWNOŚĆ - SZEROKIE UKŁADY ZAWSZE */
@media (max-width: 1100px) {
  .footer-columns {
    gap: 32px;
  }
  .footer-col {
    min-width: 220px;
  }
}

@media (max-width: 900px) {
  .footer-columns {
    gap: 40px;
  }
  .footer-col {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 640px) {
  .footer-main .container {
    padding: 0 20px;
  }
  .footer-col {
    flex: 0 0 100%;
  }
  .tech-layer {
    padding: 16px;
  }
}