
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #2f5233;
            --primary-dark: #1f3822;
            --accent: #c87941;
            --accent-light: #d99564;
            --text-dark: #1f2937;
            --text-gray: #6b7280;
            --bg-light: #f6f8f6;
            --white: #ffffff;
            --gradient-1: linear-gradient(135deg, #2f5233 0%, #3d6b45 100%);
            --gradient-2: linear-gradient(135deg, #c87941 0%, #d99564 100%);
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
            --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
            --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
            background: var(--white);
            font-size: 17px;
        }

        h1, h2, h3 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            color: var(--primary);
        }

        /* Animated Background */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: var(--gradient-1);
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .hero-shape {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.08), rgba(200, 121, 65, 0.05));
            border: 2px solid rgba(200, 121, 65, 0.2);
            box-shadow: 
                inset 0 0 20px rgba(200, 121, 65, 0.1),
                0 4px 15px rgba(0, 0, 0, 0.1);
            animation: float 20s infinite ease-in-out;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-family: 'Poppins', sans-serif;
        }
        
        /* Wewnętrzna okrągła linia - PRZERYWANA GRUBSZA */
        .hero-shape::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            height: 80%;
            border-radius: 50%;
            border: 3px dashed rgba(200, 121, 65, 0.25);
            pointer-events: none;
        }
        
        /* Napis CERTIFIED */
        .hero-shape::after {
            content: 'CERTIFIED';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(-15deg);
            font-size: 0.95em;
            font-weight: 700;
            color: rgba(200, 121, 65, 0.25);
            letter-spacing: 0.1em;
            white-space: nowrap;
            z-index: 2;
        }
        
        /* Gwiazdki na górze - równolegle do napisu - WIĘKSZE */
        .stars-top {
            position: absolute;
            top: calc(50% - 4em);
            left: 50%;
            transform: translateX(-50%) rotate(-15deg);
            font-size: 0.65em;
            color: rgba(200, 121, 65, 0.2);
            letter-spacing: 0.15em;
            z-index: 1;
        }
        
        /* Gwiazdki na dole - równolegle do napisu - WIĘKSZE */
        .stars-bottom {
            position: absolute;
            top: calc(50% + 4em);
            left: 50%;
            transform: translateX(-50%) rotate(-15deg);
            font-size: 0.65em;
            color: rgba(200, 121, 65, 0.2);
            letter-spacing: 0.15em;
            z-index: 1;
        }

        .hero-shape:nth-child(1) {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .hero-shape:nth-child(2) {
            width: 200px;
            height: 200px;
            top: 60%;
            right: 20%;
            animation-delay: 3s;
        }

        .hero-shape:nth-child(3) {
            width: 150px;
            height: 150px;
            bottom: 20%;
            left: 30%;
            animation-delay: 6s;
        }

        .hero-shape:nth-child(4) {
            width: 250px;
            height: 250px;
            top: 30%;
            right: 10%;
            animation-delay: 9s;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(30px, -30px) scale(1.1);
            }
            66% {
                transform: translate(-20px, 20px) scale(0.9);
            }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

        nav.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow-md);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.2rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
        }

        .logo:hover {
            color: var(--accent);
            transform: scale(1.05);
        }

        .logo-accent {
            color: var(--accent);
            font-weight: 800;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        .nav-links a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.15rem;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--gradient-2);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }



        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-dark);
            cursor: pointer;
        }

        /* Hero Content */
        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
        }

        .hero-text h1 {
            font-size: 3.2rem;
            color: var(--white);
            margin-bottom: 2rem;
            margin-top: 2rem;
            animation: fadeInUp 0.8s ease;
        }

        .hero-text h2.subtitle {
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            font-size: 1.9rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 3rem;
            line-height: 1.7;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .btn-primary {
            background: var(--accent);
            color: var(--white);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: var(--shadow-lg);
        }

        .btn-primary:hover {
            background: var(--accent-light);
            transform: translateY(-3px);
            box-shadow: var(--shadow-xl);
        }

        .btn-secondary {
            background: rgba(200, 121, 65, 0.15);
            color: var(--white);
            padding: 1rem 2.5rem;
            border: 2px solid var(--accent);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 15px rgba(200, 121, 65, 0.2);
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--accent);
            border-color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Wave Divider */
        .wave-divider {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }

        .wave-divider svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 80px;
        }

        .wave-divider path {
            fill: #ffffff;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.25rem;
            color: var(--text-gray);
        }

        /* Process Timeline */
        .process-section {
            padding: 5rem 2rem;
            background: var(--white);
        }

        .timeline {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-auto-rows: 1fr;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .timeline-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            height: 100%;
        }

        .timeline-item::after {
            content: '→';
            position: absolute;
            right: -1.5rem;
            top: 45%;
            transform: translateY(-50%);
            font-size: 3rem;
            color: var(--accent);
            font-weight: 700;
            z-index: 10;
            animation: arrowPulse 2s ease-in-out infinite;
        }

        .timeline-item:last-child::after {
            display: none;
        }

        @keyframes arrowPulse {
            0%, 100% {
                opacity: 0.4;
                transform: translateY(-50%) translateX(0);
            }
            50% {
                opacity: 1;
                transform: translateY(-50%) translateX(5px);
            }
        }

        .timeline-content {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 25px;
            text-align: center;
            transition: all 0.3s;
            border: 3px solid rgba(200, 121, 65, 0.2);
            width: 100%;
            height: 100%;
            position: relative;
            overflow: visible;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
        }

        .timeline-content:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
            box-shadow: var(--shadow-xl);
        }

        .timeline-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: var(--gradient-1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 2rem;
            transition: transform 0.3s;
            box-shadow: var(--shadow-md);
        }

        .timeline-content:hover .timeline-icon {
            transform: rotate(10deg) scale(1.1);
        }

        .timeline-content h3 {
            color: var(--primary);
            font-size: 1.6rem;
            margin-bottom: 1.2rem;
            font-weight: 700;
        }

        .timeline-content p {
            color: var(--text-gray);
            line-height: 1.8;
            font-size: 1.15rem;
        }

        .timeline-content p strong {
            color: var(--accent);
        }

        /* Quote Section - Bezpłatna wycena */
        .quote-section {
            padding: 5rem 2rem;
            background: var(--gradient-1);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .quote-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

        .quote-section .section-header h2 {
            color: var(--white);
        }

        .quote-section .section-header p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.3rem;
        }

        .quote-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .quote-info-text {
            text-align: center;
            font-size: 1.4rem;
            margin-bottom: 3rem;
            font-weight: 600;
            color: var(--white);
            line-height: 1.6;
        }

        .quote-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .quote-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 25px;
            text-align: center;
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s;
        }

        .quote-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
            border-color: var(--accent-light);
        }

        .quote-card i {
            font-size: 3.5rem;
            color: var(--accent-light);
            margin-bottom: 1.5rem;
        }

        .quote-card .fab.fa-whatsapp {
            color: #25D366;
            font-size: 4rem;
        }

        .quote-whatsapp-link {
            display: inline-block;
            transition: transform 0.3s;
        }

        .quote-whatsapp-link:hover {
            transform: scale(1.1);
        }

        .quote-card h3 {
            font-size: 1.6rem;
            margin-bottom: 1rem;
            color: var(--white);
        }

        .quote-card a {
            color: var(--white);
            text-decoration: none;
            font-size: 1.4rem;
            font-weight: 700;
            transition: color 0.3s;
            word-break: break-word;
        }

        .quote-card a:hover {
            color: var(--accent-light);
        }

        .quote-note {
            margin-top: 1.2rem;
            opacity: 0.9;
            font-size: 1rem;
            line-height: 1.6;
        }

        .quote-highlight {
            background: var(--white);
            padding: 2rem;
            border-radius: 20px;
            border: 2px solid var(--accent-light);
            text-align: center;
        }

        .quote-highlight p {
            font-size: 1.2rem;
            line-height: 1.8;
            margin: 0;
            color: var(--text-dark);
        }

        .quote-highlight strong {
            color: var(--primary);
            font-weight: 700;
        }

        /* Features Section */
        .features-section {
            padding: 5rem 2rem;
            background: var(--bg-light);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .feature-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 25px;
            text-align: center;
            transition: all 0.3s;
            border: 3px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
            box-shadow: var(--shadow-xl);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--accent) 0%, #b36935 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 2rem;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(200, 121, 65, 0.3);
        }

        .feature-card:hover .feature-icon {
            transform: rotate(10deg) scale(1.1);
            box-shadow: 0 6px 20px rgba(200, 121, 65, 0.5);
        }

        .feature-card h3 {
            color: var(--primary);
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .feature-card p {
            color: var(--text-gray);
            line-height: 1.7;
            font-size: 1.1rem;
        }

        /* Acceptance Card - Full Width */
        .acceptance-card {
            background: var(--white);
            border-radius: 25px;
            padding: 3rem;
            box-shadow: var(--shadow-lg);
            border: 3px solid var(--accent);
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 2.5rem;
            align-items: center;
            transition: all 0.3s;
        }

        .acceptance-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
        }

        .acceptance-icon {
            width: 120px;
            height: 120px;
            background: var(--gradient-2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 4rem;
            box-shadow: var(--shadow-lg);
            flex-shrink: 0;
        }

        .acceptance-content h3 {
            color: var(--primary);
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .acceptance-main {
            font-size: 1.15rem;
            color: var(--text-dark);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .acceptance-main strong {
            color: var(--primary);
            font-weight: 700;
        }

        .acceptance-details {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .acceptance-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .acceptance-item i {
            color: var(--accent);
            font-size: 1.3rem;
            margin-top: 0.2rem;
            flex-shrink: 0;
        }

        .acceptance-item span {
            color: var(--text-gray);
            font-size: 1.15rem;
            line-height: 1.7;
        }

        .acceptance-item strong {
            color: var(--primary);
            font-weight: 700;
        }

        /* Services Section */
        .services-section {
            padding: 5rem 2rem;
            background: var(--white);
        }

        .services-accordion {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .service-accordion-item {
            background: var(--white);
            border-radius: 15px;
            box-shadow: var(--shadow-md);
            border-left: 5px solid var(--accent);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .service-accordion-item:hover {
            box-shadow: var(--shadow-lg);
            transform: translateX(5px);
        }

        .service-accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.8rem;
            cursor: pointer;
            transition: background 0.3s ease;
            user-select: none;
        }

        .service-accordion-header:hover {
            background: rgba(200, 121, 65, 0.05);
        }

        .service-header-left {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .service-accordion-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.8rem;
            flex-shrink: 0;
            transition: transform 0.3s;
        }

        .service-accordion-item:hover .service-accordion-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .service-accordion-header h3 {
            color: var(--primary);
            font-size: 1.4rem;
            margin: 0;
            font-weight: 700;
        }

        .service-toggle {
            width: 35px;
            height: 35px;
            background: var(--gradient-2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.1rem;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .service-accordion-item.active .service-toggle {
            transform: rotate(180deg);
        }

        .service-accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .service-accordion-item.active .service-accordion-content {
            max-height: 1000px;
        }

        .service-accordion-content p {
            color: var(--text-gray);
            font-size: 1.15rem;
            line-height: 1.8;
            padding: 0 1.8rem 1.8rem 1.8rem;
            margin: 0;
        }

        /* Pricing Section */
        .pricing-section {
            padding: 5rem 2rem;
            background: var(--gradient-1);
        }

        .pricing-section .section-header h2 {
            color: var(--white);
        }

        .pricing-section .section-header p {
            color: rgba(255, 255, 255, 0.9);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .pricing-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 25px;
            box-shadow: var(--shadow-md);
            transition: all 0.3s;
            border: 3px solid transparent;
            position: relative;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
            border-color: var(--accent);
        }

        .pricing-card.featured {
            border-color: var(--primary);
            transform: scale(1.05);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .price-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-2);
            color: var(--white);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
            box-shadow: var(--shadow-md);
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .pricing-card .price {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            text-align: center;
            margin-bottom: 2rem;
            font-family: 'Poppins', sans-serif;
        }

        .pricing-card .price span {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--text-gray);
        }

        .price-list {
            list-style: none;
        }

        .price-list li {
            padding: 0.8rem 0;
            color: var(--text-gray);
            display: flex;
            align-items: center;
            gap: 0.8rem;
            border-bottom: 1px solid #f3f4f6;
            font-size: 1.15rem;
        }

        .price-list li:last-child {
            border-bottom: none;
        }

        .price-list i {
            color: var(--accent);
            font-size: 1.1rem;
        }

        .pricing-note {
            background: var(--white);
            padding: 2rem;
            border-radius: 20px;
            border-left: 4px solid var(--primary);
            box-shadow: var(--shadow-md);
            max-width: 900px;
            margin: 0 auto;
        }

        .pricing-note p {
            color: var(--text-gray);
            line-height: 1.8;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            font-size: 1.15rem;
        }

        .pricing-note i {
            color: var(--primary);
            font-size: 1.3rem;
            margin-top: 0.2rem;
        }

        /* About Section */
        .about-section {
            padding: 5rem 2rem 4rem 2rem;
            background: var(--white);
        }

        .about-intro {
            max-width: 1000px;
            margin: 0 auto 3rem auto;
            padding: 2rem 2.5rem;
            background: var(--bg-light);
            border-radius: 12px;
            border-left: 4px solid var(--accent);
            box-shadow: var(--shadow-sm);
        }

        .about-intro p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--text-dark);
            margin: 0;
        }

        .about-intro strong {
            color: var(--primary);
            font-weight: 700;
        }

        .about-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .about-text {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--text-dark);
        }

        .about-text p {
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--text-dark);
        }

        .about-text p:last-child {
            margin-bottom: 0;
        }

        .about-text strong {
            color: var(--primary);
            font-weight: 700;
        }

        .about-text strong {
            color: var(--primary);
        }

        /* Coverage Section */
        .coverage-section {
            padding: 5rem 2rem 5rem 2rem;
            background: rgba(200, 121, 65, 0.05);
        }

        .coverage-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
            font-size: 1.3rem;
            color: var(--text-gray);
            line-height: 1.7;
        }

        .locations {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .location-group {
            background: var(--bg-light);
            border-radius: 12px;
            padding: 0;
            box-shadow: var(--shadow-md);
            border-left: 4px solid var(--accent);
            overflow: hidden;
            transition: all 0.3s ease;
            width: 100%;
        }

        .location-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            cursor: pointer;
            transition: background 0.3s ease;
            user-select: none;
        }

        .location-header:hover {
            background: rgba(200, 121, 65, 0.1);
        }

        .location-group h3 {
            color: var(--primary);
            font-size: 1.4rem;
            margin: 0;
            font-weight: 700;
        }

        .location-toggle {
            width: 30px;
            height: 30px;
            background: var(--gradient-2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .location-group.active .location-toggle {
            transform: rotate(180deg);
        }

        .location-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .location-group.active .location-content {
            max-height: 2000px;
        }

        .location-group p {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.8;
            padding: 0 1.5rem 1.5rem 1.5rem;
            margin: 0;
        }


        /* Contact Section */
        .contact-section {
            padding: 5rem 2rem;
            background: var(--gradient-1);
            color: var(--white);
        }

        .contact-section .section-header h2 {
            color: var(--white);
        }

        .contact-section .section-header p {
            color: rgba(255, 255, 255, 0.9);
        }

        .contact-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-info-text {
            text-align: center;
            font-size: 1.3rem;
            margin-bottom: 3rem;
            font-weight: 700;
            color: var(--white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .contact-card {
            background: #ffffff;
            padding: 2.5rem;
            border-radius: 15px;
            text-align: center;
            border: none;
            transition: all 0.3s;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 
                        0 10px 20px rgba(0, 0, 0, 0.1),
                        0 1px 3px rgba(0, 0, 0, 0.05);
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1), 
                        0 20px 40px rgba(0, 0, 0, 0.15),
                        0 2px 6px rgba(0, 0, 0, 0.08);
        }

        .contact-card i {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 1.5rem;
        }

        .contact-card .fab.fa-whatsapp {
            color: #25D366;
            font-size: 3.5rem;
        }

        .whatsapp-link {
            display: inline-block;
            transition: transform 0.3s;
        }

        .whatsapp-link:hover {
            transform: scale(1.1);
        }

        .whatsapp-link i {
            margin-bottom: 1.5rem;
        }

        .contact-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
            font-weight: 700;
        }

        .contact-card a {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 1.3rem;
            font-weight: 700;
            transition: color 0.3s;
        }

        .contact-card a:hover {
            color: var(--accent);
        }

        .contact-note {
            margin-top: 1rem;
            opacity: 0.65;
            font-size: 1rem;
            color: var(--text-gray);
        }

        /* Text-Image Layout */
        .content-with-image {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 3rem;
            align-items: center;
            margin: 3rem 0;
        }

        .content-with-image.reverse {
            direction: rtl;
        }

        .content-with-image.reverse > * {
            direction: ltr;
        }

        .content-text {
            padding: 1rem;
        }

        .content-image {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .content-image img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            transition: transform 0.3s ease;
        }

        .content-image:hover img {
            transform: scale(1.05);
        }

        /* Qualifications with image layout (dla sekcji akceptacji) */
        .qualifications-with-image {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: flex-start;
            margin: 2rem 0;
        }

        .qualifications-text {
            padding-right: 1rem;
        }

        .qualifications-image {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .qualifications-image img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            transition: transform 0.3s ease;
        }

        .qualifications-image:hover img {
            transform: scale(1.05);
        }

        /* Qualifications Boxes (2 boxy obok siebie z logo) */
        .qualifications-boxes {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .qualification-box {
            background: var(--white);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow-lg);
            border: 3px solid rgba(47, 82, 51, 0.1);
            transition: all 0.3s ease;
        }

        .qualification-box:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary);
        }

        .qualification-logo {
            width: 100%;
            height: 280px;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            overflow: hidden;
            background: var(--bg-light);
        }

        .qualification-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 12px;
        }

        .qualification-box h3 {
            color: var(--primary);
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .qualification-box p {
            color: var(--text-gray);
            font-size: 1.1rem;
            line-height: 1.7;
            margin: 0;
        }

        @media (max-width: 768px) {
            .qualifications-boxes {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        /* CTA Button pod obrazkami */
        .image-cta-button {
            display: block;
            margin-top: 1.5rem;
            padding: 0.9rem 2rem;
            background: var(--accent);
            color: var(--white);
            text-align: center;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(200, 121, 65, 0.3);
        }

        .image-cta-button:hover {
            background: #b36935;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(200, 121, 65, 0.4);
        }

        /* Responsive dla text-image layout */
        @media (max-width: 968px) {
            .content-with-image {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .content-with-image.reverse {
                direction: ltr;
            }

            .content-image {
                order: -1;
            }

            .qualifications-with-image {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .qualifications-text {
                padding-right: 0;
            }

            .qualifications-image {
                order: -1;
            }
        }

        /* Footer */
        footer {
            background: #111827;
            color: var(--white);
            padding: 2rem;
            text-align: center;
        }

        footer a {
            color: var(--accent);
            text-decoration: none;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-text h1 {
                font-size: 3rem;
            }

            .hero-text h2.subtitle {
                font-size: 1.5rem;
            }
            
            /* Zmniejsz animowane kółka na tabletach */
            .hero-shape:nth-child(1) {
                width: 200px;
                height: 200px;
            }
            
            .hero-shape:nth-child(2) {
                width: 150px;
                height: 150px;
            }
            
            .hero-shape:nth-child(3) {
                width: 120px;
                height: 120px;
            }
            
            .hero-shape:nth-child(4) {
                width: 180px;
                height: 180px;
            }

            .timeline {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .timeline-item::after {
                content: '↓';
                position: absolute;
                left: 50%;
                bottom: -2rem;
                transform: translateX(-50%);
                font-size: 3rem;
                color: var(--accent);
                font-weight: 700;
                z-index: 10;
                animation: arrowPulseVertical 2s ease-in-out infinite;
                right: auto;
                top: auto;
            }

            .timeline-item:last-child::after {
                display: none;
            }

            @keyframes arrowPulseVertical {
                0%, 100% {
                    opacity: 0.4;
                    transform: translateX(-50%) translateY(0);
                }
                50% {
                    opacity: 1;
                    transform: translateX(-50%) translateY(5px);
                }
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .acceptance-card {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 2.5rem;
            }

            .acceptance-icon {
                margin: 0 auto;
            }

            .acceptance-details {
                grid-template-columns: 1fr;
            }

            .mobile-toggle {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                padding: 2rem;
                box-shadow: 0 4px 20px rgba(0,0,0,0.15);
                transform: translateY(-100%);
                visibility: hidden;
                transition: transform 0.3s ease, visibility 0.3s;
                gap: 1.5rem;
                z-index: 999;
                max-height: calc(100vh - 70px);
                overflow-y: auto;
            }

            .nav-links.active {
                transform: translateY(0);
                visibility: visible;
            }

            .nav-links li {
                width: 100%;
                text-align: center;
            }

            .nav-links a {
                display: block;
                padding: 1rem;
                font-size: 1.1rem;
            }

            .cta-button {
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            body {
                font-size: 16px;
                line-height: 1.65;
            }
            
            /* HERO SECTION - Mobile Fixes */
            .hero {
                min-height: auto;
                padding: 100px 0 80px 0;
            }
            
            .hero-content {
                padding: 0 1.25rem;
            }
            
            .hero-text h1 {
                font-size: 2rem;
                line-height: 1.3;
                margin-bottom: 1.5rem;
                padding: 0;
            }

            .hero-text h2.subtitle {
                font-size: 1.3rem;
                line-height: 1.5;
                margin-bottom: 2rem;
                padding: 0;
            }
            
            /* Hero Buttons - Stack Vertically */
            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
                width: 100%;
                padding: 0 0.5rem;
            }
            
            .hero-buttons a {
                width: 100%;
                text-align: center;
                padding: 0.9rem 2rem;
                font-size: 1rem;
            }
            
            /* Zmniejsz drastycznie animowane kółka na mobile */
            .hero-shape:nth-child(1) {
                width: 120px;
                height: 120px;
                top: 8%;
                left: -10%;
                font-size: 0.6em;
            }
            
            .hero-shape:nth-child(2) {
                width: 80px;
                height: 80px;
                top: 65%;
                right: -5%;
                font-size: 0.5em;
            }
            
            .hero-shape:nth-child(3) {
                width: 60px;
                height: 60px;
                bottom: 20%;
                left: 15%;
                font-size: 0.4em;
            }
            
            .hero-shape:nth-child(4) {
                width: 100px;
                height: 100px;
                top: 30%;
                right: -10%;
                font-size: 0.55em;
            }
            
            /* Ukryj napisy i gwiazdki w kółkach na mobile */
            .hero-shape::after,
            .stars-top,
            .stars-bottom {
                display: none;
            }
            
            /* Zmniejsz wewnętrzną przerywaną linię */
            .hero-shape::before {
                width: 70%;
                height: 70%;
                border-width: 2px;
            }
            
            /* SEKCJE - Lepsze wykorzystanie szerokości */
            section {
                padding: 3.5rem 0;
            }
            
            .container {
                padding-left: 1.25rem;
                padding-right: 1.25rem;
            }
            
            .section-header {
                padding: 0;
                margin-bottom: 2.5rem;
            }
            
            .section-header h2 {
                font-size: 1.9rem;
                line-height: 1.3;
                margin-bottom: 0.75rem;
            }
            
            .section-header p {
                font-size: 1.05rem;
                line-height: 1.6;
            }
            
            /* TIMELINE - Mobile */
            .timeline-content {
                padding: 2rem 1.5rem;
            }
            
            .timeline-icon {
                width: 70px;
                height: 70px;
                font-size: 1.9rem;
                margin-bottom: 1.25rem;
            }
            
            .timeline-content h3 {
                font-size: 1.4rem;
                margin-bottom: 0.9rem;
            }
            
            .timeline-content p {
                font-size: 1.05rem;
                line-height: 1.65;
            }
            
            /* QUOTE SECTION - Szersze boxy */
            .quote-section {
                padding: 4rem 1rem;
            }
            
            .quote-content {
                padding: 0 0.25rem;
            }
            
            .quote-info-text {
                font-size: 1.15rem;
                line-height: 1.6;
                padding: 0 0.5rem;
            }
            
            .quote-card {
                padding: 2rem 1.5rem;
            }
            
            .quote-highlight {
                padding: 2rem 1.25rem;
            }
            
            .quote-highlight p {
                font-size: 1.1rem !important;
                line-height: 1.6 !important;
            }

            /* ACCEPTANCE SECTION */
            .acceptance-card {
                padding: 2rem 1.25rem;
            }
            
            .acceptance-content h3 {
                font-size: 1.65rem;
            }

            .acceptance-main {
                font-size: 1.15rem;
                line-height: 1.7;
            }

            .acceptance-icon {
                width: 95px;
                height: 95px;
                font-size: 3.2rem;
            }
            
            .acceptance-item span {
                font-size: 1.05rem;
            }
            
            /* FEATURES */
            .features-section {
                padding: 4rem 1rem;
            }
            
            .feature-card {
                padding: 2rem 1.5rem;
            }
            
            .feature-card h3 {
                font-size: 1.25rem;
            }
            
            .feature-card p {
                font-size: 1.05rem;
            }

            /* GRIDS */
            .features-grid,
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            /* SERVICES ACCORDION */
            .services-section {
                padding: 4rem 1rem;
            }
            
            .service-accordion-item {
                margin-bottom: 1rem;
            }
            
            .service-accordion-header {
                padding: 1.5rem 1.25rem;
            }
            
            .service-accordion-icon {
                width: 55px;
                height: 55px;
                font-size: 1.6rem;
            }
            
            .service-accordion-header h3 {
                font-size: 1.25rem;
            }
            
            .service-accordion-content p {
                padding: 0 1.25rem 1.5rem 1.25rem;
                font-size: 1.05rem;
            }
            
            /* PRICING */
            .pricing-section {
                padding: 4rem 1rem;
            }
            
            .pricing-card {
                padding: 2rem 1.5rem;
            }
            
            .pricing-note {
                padding: 1.75rem 1.25rem;
                margin: 0 0.5rem;
            }
            
            .pricing-note p {
                font-size: 1.05rem;
            }
            
            /* ABOUT */
            .about-section {
                padding: 4rem 1rem;
            }
            
            .about-intro {
                padding: 1.75rem 1.5rem;
                margin: 0 0 2.5rem 0;
            }
            
            .about-intro p {
                font-size: 1.1rem;
            }
            
            .about-text p {
                font-size: 1.05rem;
                line-height: 1.7;
            }
            
            /* COVERAGE */
            .coverage-section {
                padding: 4rem 1rem;
            }
            
            .coverage-intro {
                font-size: 1.15rem;
                padding: 0 0.5rem;
            }
            
            .location-header {
                padding: 1.25rem 1.25rem;
            }
            
            .location-group h3 {
                font-size: 1.25rem;
            }
            
            .location-group p {
                padding: 0 1.25rem 1.25rem 1.25rem;
                font-size: 1rem;
                line-height: 1.7;
            }
            
            /* CONTACT */
            .contact-section {
                padding: 4rem 1rem;
            }
            
            .contact-info-text {
                font-size: 1.15rem;
                padding: 0 0.5rem;
            }
            
            .contact-card {
                padding: 2rem 1.5rem;
            }
            
            .contact-card h3 {
                font-size: 1.35rem;
            }
            
            .contact-card a {
                font-size: 1.2rem;
            }
            
            .contact-note {
                font-size: 0.95rem;
            }
            
            /* EMAIL COPY - Touch Friendly */
            .email-copy,
            #emailCopy,
            #emailCopyContact {
                padding: 0.6rem !important;
                font-size: 1.2rem !important;
                min-height: 44px !important;
                display: inline-flex !important;
                align-items: center !important;
            }
            
            /* Ukryj tooltips na mobile (nie działają dobrze na touch) */
            #tooltipInline,
            #tooltipContact {
                display: none !important;
            }
            
            /* UKRYJ LISTĘ MIAST NA MOBILE */
            .cities-list {
                display: none !important;
            }
        }

        /* BARDZO MAŁE EKRANY (iPhone SE, stare Androidy) */
        @media (max-width: 480px) {
            body {
                font-size: 15px;
                line-height: 1.6;
            }
            
            /* Hero */
            .hero {
                padding: 85px 0 55px 0;
            }
            
            .hero-content {
                padding: 0 1rem;
            }
            
            .hero-text h1 {
                font-size: 1.7rem;
                margin-bottom: 1.25rem;
                line-height: 1.25;
            }
            
            .hero-text h2.subtitle {
                font-size: 1.15rem;
                line-height: 1.5;
                margin-bottom: 1.75rem;
            }
            
            .hero-buttons {
                padding: 0;
            }
            
            .hero-buttons a {
                padding: 0.85rem 1.75rem;
                font-size: 0.95rem;
            }
            
            /* Sekcje - maksymalne wykorzystanie szerokości */
            section {
                padding: 3rem 0;
            }
            
            .container {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            
            .section-header {
                margin-bottom: 2rem;
            }
            
            .section-header h2 {
                font-size: 1.65rem;
            }
            
            .section-header p {
                font-size: 1rem;
            }
            
            /* Timeline */
            .timeline-content {
                padding: 1.75rem 1.25rem;
            }
            
            .timeline-icon {
                width: 60px;
                height: 60px;
                font-size: 1.6rem;
            }
            
            .timeline-content h3 {
                font-size: 1.25rem;
            }
            
            .timeline-content p {
                font-size: 1rem;
            }
            
            /* Quote section */
            .quote-section {
                padding: 3.5rem 0.75rem;
            }
            
            .quote-info-text {
                font-size: 1.05rem;
            }
            
            .quote-card {
                padding: 1.75rem 1.25rem;
            }
            
            .quote-highlight {
                padding: 1.75rem 1rem;
            }
            
            .quote-highlight p {
                font-size: 1.05rem !important;
            }
            
            /* Acceptance */
            .acceptance-card {
                padding: 1.75rem 1rem;
            }
            
            .acceptance-content h3 {
                font-size: 1.5rem;
            }
            
            .acceptance-main {
                font-size: 1.05rem;
            }
            
            .acceptance-icon {
                width: 80px;
                height: 80px;
                font-size: 2.75rem;
            }
            
            .acceptance-item span {
                font-size: 1rem;
            }
            
            /* Features */
            .features-section {
                padding: 3.5rem 0.75rem;
            }
            
            .feature-card {
                padding: 1.75rem 1.25rem;
            }
            
            .feature-card h3 {
                font-size: 1.2rem;
            }
            
            .feature-card p {
                font-size: 1rem;
            }
            
            /* Services */
            .services-section {
                padding: 3.5rem 0.75rem;
            }
            
            .service-accordion-header {
                padding: 1.25rem 1rem;
            }
            
            .service-accordion-icon {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
            
            .service-accordion-header h3 {
                font-size: 1.15rem;
            }
            
            .service-accordion-content p {
                padding: 0 1rem 1.25rem 1rem;
                font-size: 1rem;
            }
            
            /* Pricing */
            .pricing-section {
                padding: 3.5rem 0.75rem;
            }
            
            .pricing-card {
                padding: 1.75rem 1.25rem;
            }
            
            .pricing-note {
                padding: 1.5rem 1rem;
            }
            
            .pricing-note p {
                font-size: 1rem;
            }
            
            /* About */
            .about-section {
                padding: 3.5rem 0.75rem;
            }
            
            .about-intro {
                padding: 1.5rem 1.25rem;
            }
            
            .about-intro p {
                font-size: 1.05rem;
            }
            
            .about-text p {
                font-size: 1rem;
            }
            
            /* Coverage */
            .coverage-section {
                padding: 3.5rem 0.75rem;
            }
            
            .coverage-intro {
                font-size: 1.05rem;
            }
            
            .location-header {
                padding: 1.1rem 1rem;
            }
            
            .location-group h3 {
                font-size: 1.15rem;
            }
            
            .location-group p {
                padding: 0 1rem 1rem 1rem;
                font-size: 0.95rem;
            }
            
            /* Contact */
            .contact-section {
                padding: 3.5rem 0.75rem;
            }
            
            .contact-info-text {
                font-size: 1.05rem;
            }
            
            .contact-card {
                padding: 1.75rem 1.25rem;
            }
            
            .contact-card h3 {
                font-size: 1.25rem;
            }
            
            .contact-card a {
                font-size: 1.15rem;
            }
            
            /* WhatsApp float button - mniejszy */
            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 26px;
                bottom: 15px;
                right: 15px;
            }
            
            /* Jeszcze bardziej zmniejsz kółka */
            .hero-shape:nth-child(1) {
                width: 90px;
                height: 90px;
            }
            
            .hero-shape:nth-child(2) {
                width: 60px;
                height: 60px;
            }
            
            .hero-shape:nth-child(3) {
                width: 50px;
                height: 50px;
            }
            
            .hero-shape:nth-child(4) {
                width: 75px;
                height: 75px;
            }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 2px 2px 20px rgba(0,0,0,0.4);
}

.whatsapp-float i {
    margin: 0;
    color: #FFF;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}

    