:root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary: #475569;
            --accent: #f97316;
            --light: #f8fafc;
            --dark: #0f172a;
            --success: #10b981;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            color: var(--dark);
            background-color: var(--light);
            line-height: 1.6;
        }
        
        header {
            background-color: var(--dark);
            color: white;
            padding: 1rem;
            position: fixed;
            width: 100%;
            z-index: 100;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
        }
        
        .logo span {
            color: var(--accent);
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--accent);
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
        }
        
        .hamburger span {
            height: 3px;
            width: 100%;
            background-color: white;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .mobile-menu {
            position: absolute;
            top: 60px;
            left: 0;
            right: 0;
            background-color: var(--dark);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            display: none;
            flex-direction: column;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
            padding: 1rem;
        }
        
        .mobile-menu.active {
            opacity: 1;
            pointer-events: auto;
            display: flex;
        }
        
        .mobile-menu a {
            color: white;
            text-decoration: none;
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: color 0.3s;
        }
        
        .mobile-menu a:last-child {
            border-bottom: none;
        }
        
        .mobile-menu a:hover {
            color: var(--accent);
        }
        
        .hero {
            padding: 10rem 0 5rem;
            background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
            color: white;
        }
        
        .hero-content {
            display: flex;
            align-items: center;
            gap: 4rem;
        }
        
        .hero-text {
            flex: 1;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .hero-image {
            flex: 1;
            position: relative;
        }
        
        .hero-img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        .cta-button {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            padding: 1rem 2rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s, transform 0.3s;
            text-align: center;
        }

        .cta-button:hover {
            background-color: #ea580c;
            transform: translateY(-2px);
        }

        section {
            padding: 5rem 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.5rem;
            color: var(--dark);
        }

        .section-subtitle {
            text-align: center;
            margin: -2rem auto 3rem;
            max-width: 700px;
            color: var(--secondary);
            font-size: 1.25rem;
        }

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

 .package-card {
            background: white;
            border-radius: 12px;
            padding: 2.5rem 2rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .package-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
        }

        .package-card.featured {
            border: 3px solid var(--accent);
            transform: scale(1.05);
        }

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

        .featured-badge {
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--accent), #ea580c);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
            text-align: center;
        }

        .package-header {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid #f1f5f9;
        }

        .package-name {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .package-price {
                    font-size: 2.5rem;
                    font-weight: 700;
                    color: var(--accent);
                    margin-bottom: 0.25rem;
                }

                .package-price-label {
                    font-size: 0.9rem;
                    color: var(--secondary);
                }

                .package-features {
                    list-style: none;
                    margin-bottom: 2rem;
                    flex-grow: 1;
                }

                .package-features li {
                    padding: 0.25rem 0;
                    color: var(--dark);
                    display: flex;
                    align-items: flex-start;
                    line-height: 1.5;
                }

                .package-features li::before {
                    content: '✓';
                    color: var(--success);
                    font-weight: bold;
                    font-size: 1.2rem;
                    margin-right: 0.75rem;
                    flex-shrink: 0;
                }

                .package-features li.highlight {
                            padding: 0.1rem;
                            margin: 0 -0.25rem;
                            font-weight: 600;
                        }

                .package-features li.highlight::before {
                    color: var(--accent);
                }

                .package-button {
                    display: block;
                    width: 100%;
                    padding: 1rem 2rem;
                    background-color: var(--primary);
                    color: white;
                    text-align: center;
                    text-decoration: none;
                    border-radius: 8px;
                    font-weight: 600;
                    font-size: 1rem;
                    transition: background-color 0.3s, transform 0.3s;
                    border: none;
                    cursor: pointer;
                }

                .package-button:hover {
                    background-color: var(--primary-dark);
                    transform: translateY(-2px);
                }

                .package-card.featured .package-button {
                    background: linear-gradient(135deg, var(--accent), #ea580c);
                }

                .package-card.featured .package-button:hover {
                    background: linear-gradient(135deg, #ea580c, #c2410c);
                }

                .package-button.disabled {
                    pointer-events: none; /* Blokuje kliknięcia */
                    cursor: default;      /* Zmienia kursor na zwykły zamiast rączki */
                    opacity: 0.5;         /* Przyciemnia przycisk (wizualna informacja) */
                    filter: grayscale(1); /* Opcjonalnie: robi przycisk czarno-białym */
                }

                /* Responsywność */
                @media (max-width: 1024px) {
                    .packages-container {
                        grid-template-columns: 1fr;
                        gap: 2rem;
                    }

                    .package-card.featured {
                        transform: scale(1);
                    }

                    .package-card.featured:hover {
                        transform: translateY(-8px);
                    }
                }

                @media (max-width: 768px) {
                    .section-title {
                        font-size: 2rem;
                    }

                    .section-subtitle {
                        font-size: 1.1rem;
                    }

                    .package-card {
                        padding: 2rem 1.5rem;
                    }

                    .package-name {
                        font-size: 1.5rem;
                    }

                    .package-price {
                        font-size: 2rem;
                    }
                }

                @media (max-width: 480px) {
                    body {
                        padding: 0rem;
                    }

                    .section-title {
                        font-size: 1.75rem;
                    }

                    .package-card {
                        padding: 1.5rem 1rem;
                    }

                    .package-price {
                        font-size: 1.75rem;
                    }
                }

        .user-responsibility {
            margin-top: auto;
            padding-top: 1.0rem;
            margin-bottom: 1.0rem;
            border-top: 2px dashed #e2e8f0;
        }

        .user-responsibility-title {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 0.75rem;
            text-align: center;
        }

        .user-responsibility-list {
            list-style: none;
            padding: 0;
        }

        .user-responsibility-list li {
            padding: 0.5rem 0;
            color: var(--secondary);
            font-size: 0.9rem;
            display: flex;
            align-items: flex-start;
            line-height: 1.4;
        }

        .user-responsibility-list li::before {
            content: '→';
            color: var(--secondary);
            font-weight: bold;
            margin-right: 0.75rem;
            flex-shrink: 0;
        }

        .user-responsibility-list li.none {
            color: var(--success);
            font-weight: 600;
            justify-content: center;
        }

        .user-responsibility-list li.none::before {
            content: '\2713';
            color: var(--success);
        }

        .section-description {
            text-align: center;
            margin: -2rem auto 3rem;
            max-width: 900px;
            color: var(--secondary);
            font-size: 1.15rem;
        }

        .section-rule-title {
            text-align: left;
            margin: 2rem auto 1rem;
            color: var(--dark);
            font-size: 1.1rem;
            font-weight: bold;
        }

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

        .feature {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            background-color: rgba(37, 99, 235, 0.1);
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .feature-icon svg {
            width: 32px;
            height: 32px;
            color: var(--primary);
        }

        .feature h3 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .industries {
            background-color: #f1f5f9;
        }

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

        .industry-card {
            background: white;
            padding: 1.5rem;
            padding-top: 2.5rem;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }

        .industry-card:hover {
            transform: translateY(-5px);
        }

        .industry-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .stats {
            text-align: center;
            padding: 5rem 0;
            background-color: var(--dark);
            color: white;
        }

        .stats-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .stat {
            flex: 1;
            min-width: 200px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--accent);
        }

        .stat-text {
            font-size: 1.25rem;
            opacity: 0.9;
        }

        .testimonials {
            background-color: white;
        }

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

        .testimonial-card {
            background-color: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            border-left: 4px solid var(--primary);
        }

        .testimonial-text {
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .testimonial-author {
            font-weight: 600;
        }

        .testimonial-position {
            color: var(--secondary);
            font-size: 0.9rem;
        }

        .cta-section {
            text-align: center;
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .cta-section p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-form {
            max-width: 500px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-control {
            width: 100%;
            padding: 1rem;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .cta-button-lg {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            padding: 1rem 2rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s, transform 0.3s;
            border: none;
            font-size: 1rem;
            cursor: pointer;
            width: 100%;
        }

        .cta-button-lg:hover {
            background-color: #ea580c;
            transform: translateY(-2px);
        }

        footer {
            background-color: var(--dark);
            color: white;
            padding: 3rem 0;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-logo span {
            color: var(--accent);
        }

        .footer-links h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            margin-top: 3rem;
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Media Queries */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2.25rem;
            }

            .hero-content {
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 1.5rem;
            }

            section {
                padding: 4rem 0;
            }

            .hero {
                padding: 8rem 0 4rem;
            }

            .hero-content {
                flex-direction: column;
                gap: 2rem;
            }

            .hero h1 {
                font-size: 2.25rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .section-title {
                font-size: 2rem;
                margin-bottom: 2rem;
            }

            .section-subtitle {
                font-size: 1.1rem;
                margin: -1.5rem auto 2rem;
            }

            .footer-content {
                flex-direction: column;
            }

            .features {
                gap: 1.5rem;
            }

            .feature {
                padding: 1.5rem;
            }

            .feature h3 {
                font-size: 1.35rem;
            }

            .industry-cards, .testimonial-cards {
                gap: 1.5rem;
            }

            .industry-card-img {
                max-width: 100%;
                width: auto
                height: auto;
                margin-top: 1rem;
                border-radius: 4px;
                box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            }

            .cta-section h2 {
                font-size: 2rem;
            }

            .cta-section p {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }

            section {
                padding: 3rem 0;
            }

            .hero {
                padding: 7rem 0 3rem;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .cta-button {
                padding: 0.85rem 1.5rem;
                font-size: 0.95rem;
                width: 100%;
            }

            .section-title {
                font-size: 1.75rem;
                margin-bottom: 1.5rem;
            }

            .section-subtitle {
                font-size: 1rem;
            }

            .feature-icon {
                width: 50px;
                height: 50px;
            }

            .feature-icon svg {
                width: 25px;
                height: 25px;
            }

            .feature h3 {
                font-size: 1.25rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .stat-text {
                font-size: 1rem;
            }

            .features, .industry-cards, .testimonial-cards {
                grid-template-columns: 1fr;
            }

            .cta-section h2 {
                font-size: 1.75rem;
            }

            .cta-section p {
                font-size: 1rem;
            }
        }

        .industry-card .industry-card-img {
            max-width: 100% !important;
            width: 100% !important;
            height: auto !important;
            display: block !important;
            margin: 4rem auto 0 auto !important;
            border-radius: 4px !important;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
        }

.cta-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.cta-left {
    flex: 1;
    display: flex;
    justify-content: center;
}

.cta-right {
    flex: 1;
    text-align: left;
}

.cta-right p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: none;
}

.cta-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Media queries dla responsywności */
@media (max-width: 768px) {
    .cta-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cta-right {
        text-align: center;
    }
}

/* New Styles for Problem/Solution Features Section */
.features-section-title {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
    font-size: 1.75rem;
    color: var(--dark);
}

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

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

.arrow-wrapper {
    display: flex;
    justify-content: center;
    height: 60px;
}

.arrow-wrapper svg {
    height: 100%;
    width: auto;
}

.problem-feature .feature-icon {
    background-color: rgba(239, 68, 68, 0.1);
}

.problem-feature .feature-icon svg {
    color: #ef4444;
}

.solution-feature .feature-icon {
    background-color: rgba(16, 185, 129, 0.1);
}

.solution-feature .feature-icon svg {
    color: var(--success);
}

/* Media Queries for Responsive Layout */
@media (max-width: 991px) {
    .features-problems-row,
    .features-solutions-row,
    .features-arrows-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .features-problems-row,
    .features-solutions-row,
    .features-arrows-row {
        grid-template-columns: repeat(1, 1fr);
    }

    .arrow-wrapper {
        margin: 0.5rem 0;
    }

    .arrow-wrapper svg {
        transform: rotate(0deg);
        height: 60px;
    }

    /* Ukryj drugi i trzeci strzałki na małych ekranach */
    .features-arrows-row .arrow-wrapper:nth-child(2),
    .features-arrows-row .arrow-wrapper:nth-child(3) {
        display: none;
    }
}

@media (max-width: 480px) {
    .features-section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .feature h3 {
        font-size: 1.2rem;
    }
}


/* Style dla błędów walidacji */
.form-control.error {
    border: 2px solid #ef4444;
    background-color: #fef2f2;
}

.form-control:focus {
    outline: none;
    border: 2px solid var(--primary);
    background-color: white;
}

.form-control.error:focus {
    border: 2px solid #ef4444;
}

.error-message {
    color: #ef4444;
    font-size: 0.9rem;
    margin-top: 0px;
    margin-bottom: 12px;
    display: block;
}

/* Animacja dla płynnego wyświetlania błędów */
.error-message {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

        .delivery-method-button {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    background-color: white;
    color: var(--secondary);
    font-size: 1rem;
    cursor: pointer;
    transition: border-color 0.3s, background-color 0.3s;
    text-align: left;
    margin-bottom: 1rem;
}

.delivery-method-button:hover {
    border-color: var(--primary);
    background-color: #f8fafc;
}

.delivery-method-button.selected {
    border-color: var(--primary);
    background-color: #f0f9ff;
    color: var(--primary);
}

.delivery-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.delivery-dialog.active {
    display: flex;
}

.delivery-dialog-content {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    max-width: 90%;
    max-height: 90%;
    width: 800px;
    height: 600px;
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.delivery-dialog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.delivery-dialog-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
}

.close-dialog {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary);
    padding: 0.5rem;
}

.close-dialog:hover {
    color: var(--dark);
}

.dialog-buttons {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.dialog-button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.dialog-button-cancel {
    background-color: #f1f5f9;
    color: var(--secondary);
}

.dialog-button-cancel:hover {
    background-color: #e2e8f0;
}

.dialog-button-confirm {
    background-color: var(--primary);
    color: white;
}

.dialog-button-confirm:hover {
    background-color: var(--primary-dark);
}

.dialog-button-confirm:disabled {
    background-color: #cbd5e1;
    cursor: not-allowed;
}

#easypack-map {
    width: 100%;
    height: 400px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .delivery-dialog-content {
        width: 95%;
        height: 80%;
        padding: 1rem;
    }

    #easypack-map {
        height: 300px;
    }
}

.input-with-note {
    margin-bottom: 0.2rem;
}
.form-note {
    font-size: 0.7rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

/* Styles for Implementation Section */
.implementation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
}

.implementation-left {
    padding-right: 1rem;
}

.implementation-right {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    position: relative;
}

.implementation-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #ea580c);
    border-radius: 16px 16px 0 0;
}

.customization-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.customization-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #ea580c);
    border-radius: 2px;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    position: relative;
}

.step::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 45px;
    bottom: -25px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), #ea580c);
    opacity: 0.3;
}

.step:last-child::before {
    display: none;
}

.step-number {
    min-width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent), #ea580c);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 1.25rem;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    z-index: 1;
    position: relative;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.75rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.feature-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.feature-item .feature-icon {
    min-width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--accent), #ea580c);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow: 0 2px 10px rgba(249, 115, 22, 0.2);
    flex-shrink: 0;
}

.feature-item .feature-icon::after {
    content: '\2713';
    color: white;
    font-weight: bold;
    font-size: 1rem;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.feature-content p {
    color: var(--secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Mobile responsiveness for implementation section */
@media (max-width: 768px) {
    .implementation-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .implementation-left {
        padding-right: 0;
    }

    .implementation-right {
        padding: 2rem 1.5rem;
    }

    .customization-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .step {
        margin-bottom: 2rem;
    }

    .step-number {
        min-width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-right: 1rem;
    }

    .step-content h3 {
        font-size: 1.2rem;
    }

    .feature-item {
        margin-bottom: 1.5rem;
        padding: 0.75rem 0;
    }
}

@media (max-width: 480px) {
    .implementation-right {
        padding: 1.5rem 1rem;
    }

    .customization-title {
        font-size: 1.4rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .feature-content h4 {
        font-size: 1rem;
    }

    .feature-content p {
        font-size: 0.85rem;
    }
}
/* Order Benefits Section */
.order-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
    width: 100%;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: background 0.3s;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

.benefit-icon {
    min-width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .order-benefits {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .benefit-item {
        padding: 0.5rem;
    }

    .benefit-icon {
        min-width: 30px;
        height: 30px;
    }

    .benefit-content h4 {
        font-size: 0.8rem;
    }
}

/* Floating callback button styles */
.floating-callback {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.callback-button {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.callback-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(249, 115, 22, 0.5);
}

.callback-button.hidden {
    display: none;
}

.callback-popup {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    width: 320px;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s ease;
}

.callback-popup.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.callback-popup-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.callback-popup-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
}

.callback-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
    margin-bottom: 12px;
    box-sizing: border-box;
}

.callback-input:focus {
    outline: none;
    border-color: #f97316;
}

.callback-input.error {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.callback-error {
    color: #ef4444;
    font-size: 13px;
    margin-top: -8px;
    margin-bottom: 12px;
    display: none;
}

.callback-error.visible {
    display: block;
}

.callback-submit {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.callback-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.callback-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.callback-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    color: #94a3b8;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.callback-close:hover {
    color: #64748b;
}

.callback-success {
    text-align: center;
}

.callback-success-icon {
    font-size: 48px;
    color: #10b981;
    margin-bottom: 16px;
}

.callback-success-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.callback-success-message {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .floating-callback {
        bottom: 20px;
        right: 20px;
    }

    .callback-button {
        padding: 14px 20px;
        font-size: 14px;
    }

    .callback-popup {
        width: calc(100vw - 40px);
        right: -10px;
    }
}

/* ========== SEKCJA BETA TESTY ========== */
.beta-section {
    background-color: #fff;
    padding: 5rem 0 4rem;
    border-top: 1px solid #e2e8f0;
}

.beta-main {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin: 2.5rem 0 2.5rem;
}

.beta-img-placeholder {
    flex: 0 0 340px;
}

.beta-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.beta-desc {
    flex: 1;
    font-size: 1rem;
    color: var(--secondary);
    line-height: 1.7;
}

.beta-desc p {
    margin-bottom: 1rem;
}

.beta-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.beta-list li {
    margin-bottom: 0.5rem;
    font-size: 0.97rem;
}

.beta-form-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
}

.beta-input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.beta-input:focus {
    border-color: var(--primary);
}

.beta-submit {
    background-color: var(--primary);
    color: #fff;
    border: none;
    padding: 0.7rem 1.25rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.beta-submit:hover {
    background-color: var(--primary-dark);
}

.beta-privacy {
    font-size: 0.78rem;
    color: #94a3b8;
    margin-bottom: 0 !important;
}

.beta-privacy a {
    color: var(--accent);
    text-decoration: none;
}

.beta-success {
    margin-top: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--success);
}

/* Badge z wolnymi miejscami */
.beta-slots-row {
    display: flex;
    justify-content: left;
    margin-bottom: 1.5rem;
}

.beta-slots-badge {
    display: inline-block;
    background-color: #fef2f2;
    border: 1.5px solid #fca5a5;
    color: #b91c1c;
    border-radius: 999px;
    padding: 0.45rem 1.25rem;
    font-size: 0.9rem;
}

/* Responsywność */
@media (max-width: 768px) {
    .beta-main {
        flex-direction: column;
        gap: 1.5rem;
    }

    .beta-img-placeholder {
        flex: unset;
        width: 100%;
    }

    .beta-form-row {
        flex-direction: column;
    }

    .beta-submit {
        width: 100%;
    }
}
/* ======================================= */