* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            user-drag: none;
            -webkit-user-drag: none;
            user-select: none;
            -moz-user-select: none;
            -webkit-user-select: none;
            -ms-user-select: none;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #111111;
            color: #e0e0e0;
            line-height: 1.6;
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(17, 17, 17, 0.75);
            
            padding: 1.5rem 2rem;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 197, 125, 0.1);
        }

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

        .nav-links {
            display: flex;
            gap: 4rem;
            list-style: none;
            align-items: center;
        }


        .nav-links:first-child {
            margin-right: auto;
        }

        .nav-links:last-child {
            margin-left: auto;
        }

        .mportfolio {
            margin-top: 3.5vh;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #00c57d;
            flex-shrink: 0;
            z-index: 10;
        }

        .logo img {
            display: block;
        }

        .nav-links a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: #00c57d;
        }

        .nav-links a.active {
            color: #00c57d;
        }

        .emailme a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
        }

        .emailme a:hover {
            color: #00c57d;
        }

        .emailme a.active {
            color: #00c57d;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 7rem 2rem 2rem;
            min-height: 100vh;
        }

        .section {
            display: none;
            opacity: 0;
            animation: fadeIn 0.5s forwards;
        }

        .section.active {
            display: block;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        .hero {
            min-height: 30vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding-bottom: 2rem;
        }

        h1 {
            font-size: 3rem;
            margin-bottom: 0.75rem;
            color: #00c57d;
            font-weight: 700;
        }

        .subtitle {
            font-size: 1.25rem;
            color: #dbdbdb;
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .btn {
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            font-family: 'Montserrat', sans-serif;
            position: relative;
        }

        .btn-primary {
            background: linear-gradient(180deg, #00e68a 0%, #00c57d 50%, #00a569 100%);
            color: #111111;
            box-shadow:
                0 8px 16px rgba(0, 197, 125, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -2px 0 rgba(0, 0, 0, 0.2);
            border: 2px solid #008f5a;
            text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 2px;
            left: 10%;
            right: 10%;
            height: 40%;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
            border-radius: 50px 50px 0 0;
            pointer-events: none;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow:
                0 12px 24px rgba(0, 197, 125, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                inset 0 -2px 0 rgba(0, 0, 0, 0.3);
            background: linear-gradient(180deg, #00ff99 0%, #00d68a 50%, #00b575 100%);
        }

        .btn-primary:active {
            transform: translateY(0);
            box-shadow:
                0 4px 8px rgba(0, 197, 125, 0.3),
                inset 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .portfolio-item {
            background: rgba(22, 22, 22, 0.92);
            
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s;
            border: 1px solid rgba(0, 197, 125, 0.1);
            cursor: pointer;
        }

        .portfolio-item:hover {
            transform: translateY(-5px);
            border-color: rgba(0, 197, 125, 0.3);
        }

        .portfolio-image {
            width: 100%;
            height: 250px;
            background: #1a1a1a;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: rgba(0, 197, 125, 0.3);
            overflow: hidden;
        }

        .portfolio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .portfolio-image span {
            font-weight: 700;
        }

        .portfolio-content {
            padding: 1.5rem;
        }

        .portfolio-content h3 {
            margin-bottom: 0.5rem;
            color: #fff;
            font-weight: 600;
        }

        .portfolio-content p {
            color: #888;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            text-align: center;
            color: #00c57d;
            font-weight: 700;
        }

        .back-btn {
            top: 1vh;
            background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 50%, #0f0f0f 100%);
            border: 2px solid #00c57d;
            color: #00c57d;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Montserrat', sans-serif;
            margin-bottom: 2rem;
            position: relative;
            box-shadow:
                0 4px 12px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                inset 0 -1px 0 rgba(0, 0, 0, 0.3);
            text-shadow: 0 0 8px rgba(0, 197, 125, 0.5);
        }

        .back-btn::before {
            content: '';
            position: absolute;
            top: 3px;
            left: 5%;
            right: 5%;
            height: 40%;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
            border-radius: 50px 50px 0 0;
            pointer-events: none;
        }

        .back-btn:hover {
            background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 50%, #1a1a1a 100%);
            transform: translateX(-5px);
            box-shadow:
                0 6px 16px rgba(0, 0, 0, 0.6),
                0 0 20px rgba(0, 197, 125, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.15),
                inset 0 -1px 0 rgba(0, 0, 0, 0.4);
        }

        .back-btn:active {
            transform: translateX(-3px);
            box-shadow:
                0 2px 8px rgba(0, 0, 0, 0.5),
                inset 0 2px 4px rgba(0, 0, 0, 0.3);
        }

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

        #project-description {
            color: #888;
            font-size: 1.1rem;
            margin-bottom: 3rem;
            text-align: center;
        }

        .project-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit);
            gap: 1.5rem;
        }

        .project-gallery img {
            width: 100%;
            object-fit: cover;
            border-radius: 10px;
            border: 1px solid rgba(0, 197, 125, 0.1);
            transition: transform 0.3s;
            cursor: pointer;
        }

        .project-gallery img:hover {
            transform: scale(1.05);
            border-color: rgba(0, 197, 125, 0.3);
        }

        .carousel-container {
            max-width: 1200px;
            margin: 2rem auto 4rem;
            position: relative;
            overflow: hidden;
            padding: 0 60px;
        }

        .carousel-wrapper {
            overflow: hidden;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease;
            gap: 2rem;
        }

        .carousel-item {
        display: flex;
        flex-direction: column;
        justify-content: flex-start; /* Obrazek zawsze u góry */
        background: rgba(22, 22, 22, 0.92);
        
        border-radius: 15px;
        overflow: hidden;
        border: 1px solid rgba(0, 197, 125, 0.1);
        cursor: pointer;
        transition: transform 0.3s;
        min-width: calc(33.333% - 1.34rem);
        }

        .carousel-item:hover {
            transform: translateY(-5px);
            border-color: rgba(0, 197, 125, 0.3);
        }

        .carousel-image {
        width: 100%;
        /* wysokość dynamiczna, dopasowana do zawartości */
        display: block;
        }

        .carousel-image img {
        width: 100%;
        height: auto; /* zachowuje proporcje */
        object-fit: cover; /* przycina jeśli trzeba */
        display: block;
        }
        .carousel-image span {
            font-weight: 700;
        }

        .carousel-content {
            padding: 1.5rem;
        }

        .carousel-content h3 {
            margin-bottom: 0.5rem;
            color: #fff;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .carousel-content p {
            color: #888;
            font-size: 0.95rem;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 50%, #0f0f0f 100%);
            border: 2px solid #00c57d;
            color: #00c57d;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            z-index: 10;
            box-shadow:
                0 4px 12px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                inset 0 -1px 0 rgba(0, 0, 0, 0.3);
            text-shadow: 0 0 8px rgba(0, 197, 125, 0.5);
        }

        .carousel-btn::before {
            content: '';
            position: absolute;
            top: 2px;
            left: 20%;
            right: 20%;
            height: 30%;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
            border-radius: 50%;
            pointer-events: none;
        }

        .carousel-btn:hover {
            background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 50%, #1a1a1a 100%);
            transform: translateY(-50%) scale(1.1);
            box-shadow:
                0 6px 16px rgba(0, 0, 0, 0.6),
                0 0 20px rgba(0, 197, 125, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.15),
                inset 0 -1px 0 rgba(0, 0, 0, 0.4);
        }

        .carousel-btn:active {
            transform: translateY(-50%) scale(1.05);
            box-shadow:
                0 2px 8px rgba(0, 0, 0, 0.5),
                inset 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .carousel-btn-prev {
            left: 10px;
        }

        .carousel-btn-next {
            right: 10px;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(0, 197, 125, 0.3);
            cursor: pointer;
            transition: all 0.3s;
        }

        .carousel-dot.active {
            background: #00c57d;
            width: 30px;
            border-radius: 5px;
        }

        .about-section {
            max-width: 1000px;
            margin: 4rem auto;
            padding: 3rem 2rem;
            background: rgba(22, 22, 22, 0.92);
            
            border-radius: 20px;
            border: 1px solid rgba(0, 197, 125, 0.1);
            display: flex;
            gap: 3rem;
            align-items: center;
        }

        .about-image {
            flex-shrink: 0;
        }

        .about-image img {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #00c57d;
            box-shadow: 0 8px 24px rgba(0, 197, 125, 0.3);
        }

        .about-content h2 {
            text-align: left;
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }

        .about-content p {
            color: #b5b5b5;
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
            text-align: center;
        }

        .stat h3 {
            font-size: 2.5rem;
            color: #00c57d;
        }

        .stat p {
            color: #888;
        }

        .testimonials {
            margin: 4rem 0;
            text-align: center;
        }

        .testimonials-grid {
            display: grid;
            gap: 2rem;
            margin-top: 2rem;
        }

        .testimonial {
            background: rgba(22, 22, 22, 0.92);
            
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(0, 197, 125, 0.1);
        }

        .testimonial span {
            display: block;
            margin-top: 1rem;
            color: #00c57d;
            font-weight: 500;
        }

        .testimonials-section {
            max-width: 1100px;
            margin: 5rem auto;
            padding: 0 2rem;
            text-align: center;
        }

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

        .testimonial-card {
            background: rgba(22, 22, 22, 0.92);
            
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(0, 197, 125, 0.15);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .testimonial-text {
            color: #ccc;
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-logo img {
            width: 50px;
            height: 50px;
            object-fit: contain;
            border-radius: 10px;
            background: #111;
            padding: 6px;
        }

        .testimonial-author-info h4 {
            color: #fff;
            font-size: 1rem;
            margin-bottom: 0.2rem;
        }

        .testimonial-author-info span {
            font-size: 0.85rem;
            color: #00c57d;
        }

        .pricing-section {
            max-width: 1100px;
            margin: 0rem auto 5rem auto;
            padding: 0 2rem;
            text-align: center;
            content-visibility: auto;
            contain-intrinsic-size: 0 500px;
        }

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

        .pricing-card {
            background: rgba(22, 22, 22, 0.92);
            
            border-radius: 25px;
            padding: 2.5rem 2rem;
            border: 2px solid rgba(0, 197, 125, 0.2);
            position: relative;
        }

        .pricing-card.featured {
            border-color: #00c57d;
            box-shadow: 0 0 30px rgba(0, 197, 125, 0.25);
            
        }

        .pricing-title {
            font-size: 1.3rem;
            color: #fff;
            margin-bottom: 0.5rem;
        }

        .pricing-price {
            font-size: 2.5rem;
            color: #00c57d;
            font-weight: 700;
            margin: 1rem 0;
        }

        .pricing-features {
            list-style: none;
            margin: 2rem 0;
            padding: 0;
        }

        .pricing-features li {
            margin-bottom: 0.8rem;
            color: #aaa;
        }

        .pricing-btn {
            margin-top: 1rem;
        }

        .before-after-section {
            max-width: 900px;
            margin: 5rem auto;
            padding: 0 2rem;
            text-align: center;
        }

        .ba-container {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(0, 197, 125, 0.2);
        }

        .ba-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .ba-img-after {
            clip-path: inset(0 50% 0 0);
        }

        .ba-slider {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            z-index: 10;
            appearance: none;
            background: rgba(0, 0, 0, 0.5);
            height: 4px;
            border-radius: 5px;
        }

        .ba-slider::-webkit-slider-thumb {
            appearance: none;
            width: 20px;
            height: 20px;
            background: #00c57d;
            border-radius: 50%;
            cursor: pointer;
            border: none;
        }

        .ba-slider::-moz-range-thumb {
            width: 20px;
            height: 20px;
            background: #00c57d;
            border-radius: 50%;
            cursor: pointer;
            border: none;
        }

        .faq-section {
            max-width: 900px;
            margin: 5rem auto 3rem;
            padding: 0 2rem;
            content-visibility: auto;
            contain-intrinsic-size: 0 400px;
        }

        .faq-section h2 {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .faq-item {
            border: 1px solid rgba(0, 197, 125, 0.15);
            border-radius: 15px;
            margin-bottom: 1rem;
            overflow: hidden;
            background: rgba(22, 22, 22, 0.92);
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 1.5rem;
            font-size: 1.05rem;
            font-weight: 600;
            color: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }

        .faq-question span {
            color: #00c57d;
            font-size: 1.5rem;
            transition: transform 0.3s;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 1.5rem;
        }

        .faq-answer p {
            color: #aaa;
            padding-bottom: 1.5rem;
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
        }

        .faq-item.active .faq-question span {
            transform: rotate(45deg);
        }



        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            .subtitle{
            text-align: left;}
            .testimonial-card {
                text-align: center;
            }

            .testimonial-author {
                justify-content: center;
                flex-direction: column;
                gap: 0.5rem;
            }

            .testimonial-author-info {
                text-align: center;
            }

            .testimonials-section {
                padding: 0 1rem;
            }

            .subtitle {
                font-size: 1.2rem;
            }

            .nav-container {
                justify-content: space-between;
                gap: 1rem;
            }

            .logo {
                order: -1;
            }

            .nav-links:first-child {
                margin-right: 0;
            }

            .nav-links:last-child {
                margin-left: 0;
            }

            .nav-links {
                gap: 1.5rem;
            }

            .cta-buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn {
                width: 100%;
            }

            h2 {
                font-size: 2rem;
            }

            .carousel-container {
                padding: 0;
                margin: 2rem auto 3rem;
            }

            .carousel-wrapper {
                overflow: hidden;
                width: 100%;
            }

            .carousel-track {
                gap: 0;
            }

            .carousel-item {
                min-width: 100%;
                margin: 0 auto;
            }

            .carousel-btn-prev {
                left: 1vw;
            }

            .carousel-btn-next {
                right: 1vw;
                bottom: 12vh;
            }

            .about-section {
                flex-direction: column;
                text-align: center;
            }

            .about-content h2 {
                text-align: center;
            }

            .about-image img {
                width: 200px;
                height: 200px;
            }

        }

        .lightbox {
            position: fixed;
            inset: 0;
            background: rgba(17, 17, 17, 0.97);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .lightbox img {
            max-width: 90%;
            max-height: 85vh;
            border-radius: 20px;
            border: 2px solid rgba(0, 197, 125, 0.3);
            box-shadow: 0 0 40px rgba(0, 197, 125, 0.25);
        }

        .lightbox .back-btn {
            position: absolute;
            top: 30px;
            left: 30px;
        }

        /* How It Works Section Styles */
        .hiw-section {
            max-width: 1100px;
            margin: 5rem auto;
            padding: 0 2rem;
            text-align: center;
        }

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

        .hiw-card {
            background: rgba(22, 22, 22, 0.92);
            
            border-radius: 20px;
            padding: 2.5rem 2rem;
            border: 1px solid rgba(0, 197, 125, 0.15);
            transition: all 0.5s ease;
            /* Smooth transition for the animation */
            position: relative;
            opacity: 0.7;
            /* Start slightly dimmed */
            transform: scale(0.98);
        }

        /* The Active State (Animation Target) */
        .hiw-card.active {
            border-color: #00c57d;
            box-shadow: 0 0 30px rgba(0, 197, 125, 0.15);
            opacity: 1;
            transform: scale(1.05);
            /* Slight pop effect */
            z-index: 2;
        }

        .hiw-number {
            font-size: 4rem;
            font-weight: 700;
            color: rgba(0, 197, 125, 0.1);
            margin-bottom: -1rem;
            line-height: 1;
            transition: color 0.5s;
        }

        .hiw-card.active .hiw-number {
            color: rgba(0, 197, 125, 0.4);
        }

        .hiw-title {
            font-size: 1.5rem;
            color: #fff;
            margin-bottom: 1rem;
            position: relative;
        }

        .hiw-text {
            color: #aaa;
            font-size: 1rem;
            line-height: 1.6;
        }

        .bg-lights {
        position: fixed;
        inset: 0;
        overflow: hidden;
        z-index: -1;
        pointer-events: none;
        contain: strict;
        }
        
        .bg-lights span {
        position: absolute;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(0, 197, 125, 0.18) 0%, transparent 70%);
        border-radius: 50%;
        animation: floatLights 30s infinite ease-in-out;
        will-change: transform;
        }
        
        .bg-lights span:nth-child(1) {
        top: 10%;
        left: 15%;
        animation-duration: 30s;
        }
        
        .bg-lights span:nth-child(2) {
        bottom: 15%;
        right: 10%;
        animation-duration: 35s;
        }
        
        .bg-lights span:nth-child(3) {
        top: 50%;
        left: 60%;
        animation-duration: 40s;
        }

        @media (max-width: 768px) {
        /* On mobile just show static gradient — no animation, no GPU cost */
        .bg-lights {
        background: radial-gradient(ellipse at 10% 10%, rgba(0, 197, 125, 0.08) 0%, transparent 60%),
                    radial-gradient(ellipse at 90% 80%, rgba(0, 197, 125, 0.06) 0%, transparent 60%);
        }
        .bg-lights span {
        display: none;
        }
        }

        @keyframes floatLights {
        0%   { transform: translate(0, 0) scale(1); }
        50%  { transform: translate(50px, -60px) scale(1.08); }
        100% { transform: translate(0, 0) scale(1); }
        }
        .sticky-announcement {
        position: fixed;
        bottom: 24px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 0.75rem 1.25rem;
        background: rgba(17, 17, 17, 0.55);
        
        border: 1px solid rgba(0, 197, 125, 0.25);
        border-radius: 999px;
        box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.6),
        0 0 25px rgba(0, 197, 125, 0.15);
        z-index: 1500;
        }
        
        /* NEW badge */
        .announcement-badge {
        background: #00c57d;
        color: #111;
        font-weight: 700;
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
        border-radius: 999px;
        letter-spacing: 0.5px;
        }
        
        /* Text */
        .announcement-text {
        color: #e0e0e0;
        font-size: 0.95rem;
        white-space: nowrap;
        }
        
        /* Mobile */
        @media (max-width: 768px) {
        .sticky-announcement {
        left: 16px;
        right: 16px;
        bottom: 16px;
        transform: none;
        border-radius: 16px;
        justify-content: center;
        }
        
        .announcement-text {
        white-space: normal;
        text-align: center;
        font-size: 0.9rem;
        }
        }
        /* Globalny custom scrollbar */
        ::-webkit-scrollbar {
        width: 12px; /* szerokość scrollbara */
        height: 12px; /* wysokość scrollbara poziomego */
        }
        
        ::-webkit-scrollbar-track {
        background: rgba(17, 17, 17, 0.3); /* kolor tła tracka */
        border-radius: 10px;
        }
        
        ::-webkit-scrollbar-thumb {
        background: rgba(0,230,138, 0.35); /* kolor suwaka */
        
        border-radius: 10px;
        border: 3px solid rgba(17, 17, 17, 0.3); /* odstęp od tracka */
        }
        
        ::-webkit-scrollbar-thumb:hover {
        background: rgba(0,230,138, 0.75); /* kolor suwaka */
        
        }
        
        /* Firefox */
        * {
        scrollbar-width: thin;
        scrollbar-color: rgba(0,230,138, 0.35) rgba(17, 17, 17, 0.3);
        }
        .upworkbadge{
        padding: 10px 15px;
        background: rgba(17, 17, 17, 0.55);
        
        border: 1px solid rgba(0, 197, 125, 0.25);
        border-radius: 25px;
        color: #a8a8a8;
        box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.6),
        0 0 25px rgba(0, 197, 125, 0.15);
        }
        @media (max-width: 768px) {
        .upworkbadge{ 
        font-size:0.60rem;
        }
        }
        .upworkbadge img {
        width: 12.5px;
        display: inline-block;
        }
        .upworkbadge div {
        display: inline;
        }
        .upworkbadge #pipe {
        color: #606060;
        }
        .upworkbadge #ocenka {
        font-weight: 800;
        color: white;
        }
        #upworke{
        border: 2px solid #00C57D;
        border-radius: 15px;
        padding: 10px 15px;
        }
        @media (max-width: 768px) {
        .upworkbadge img.fotabadge {
        width: 7.5px;
        height: 7.5px;
        }
        
        .about-left .upworkbadge {
        font-size: 1rem;
        }
        
        .about-left .fotabadge {
        width: 16px;
        }
        .uploadbtn {
        display:none;}
        }
        .about-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        }
        .featured-badge {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 0.5rem 1.4rem;
        border-radius: 999px;
        
        /* FAKE GLASS */
        background:
        linear-gradient(
        180deg,
        rgba(0, 255, 179, 0.95),
        rgba(0, 197, 125, 0.98)
        );
        
        border: 1px solid rgba(0, 255, 179, 0.5);
        
        color: #1a1a1a;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.6px;
        text-transform: uppercase;
        
        box-shadow:
        0 0 25px rgba(0, 255, 179, 0.45),
        inset 0 1px 1px rgba(255, 255, 255, 0.25),
        inset 0 -1px 2px rgba(0, 0, 0, 0.35);
        }

        /* Hero trusted bar */
        .hero-trusted-bar {
            font-size: 0.9rem;
            color: #aaa;
            background: rgba(0, 197, 125, 0.07);
            border: 1px solid rgba(0, 197, 125, 0.2);
            border-radius: 999px;
            padding: 0.5rem 1.4rem;
            margin-bottom: 1.25rem;
            letter-spacing: 0.2px;
        }
        .hero-trusted-bar strong {
            color: #00c57d;
        }
        @media (max-width: 768px) {
            .hero-trusted-bar {
                font-size: 0.78rem;
                text-align: center;
                border-radius: 12px;
                padding: 0.5rem 1rem;
            }
        }

        /* Secondary button */
        .btn-secondary {
            background: transparent;
            color: #00c57d;
            border: 2px solid #00c57d;
            box-shadow: 0 4px 12px rgba(0, 197, 125, 0.1);
        }
        .btn-secondary:hover {
            background: rgba(0, 197, 125, 0.1);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 197, 125, 0.2);
        }

        /* SEO Section */
        .seo-section {
            max-width: 1100px;
            margin: 5rem auto;
            padding: 0 2rem;
            text-align: center;
        }
        .seo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        .seo-card {
            background: rgba(22, 22, 22, 0.92);
            
            border-radius: 20px;
            padding: 2.5rem 2rem;
            border: 1px solid rgba(0, 197, 125, 0.12);
            text-align: left;
        }
        .seo-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        .seo-card h3 {
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 0.75rem;
            font-weight: 600;
        }
        .seo-card p {
            color: #999;
            font-size: 0.98rem;
            line-height: 1.7;
        }

        /* Contact Section */
        .contact-section {
            max-width: 900px;
            margin: 5rem auto;
            padding: 0 2rem;
            text-align: center;
        }
        .contact-subtitle {
            color: #999;
            font-size: 1.05rem;
            margin-bottom: 3rem;
            margin-top: 0.5rem;
        }
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        .contact-card {
            background: rgba(22, 22, 22, 0.92);
            
            border-radius: 20px;
            padding: 2.5rem 2rem;
            border: 1px solid rgba(0, 197, 125, 0.15);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
        }
        .contact-icon {
            font-size: 2.2rem;
        }
        .contact-card h3 {
            color: #fff;
            font-size: 1.2rem;
            font-weight: 600;
        }
        .contact-card p {
            color: #999;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }
        .contact-card .btn {
            font-size: 0.92rem;
            padding: 0.75rem 1.5rem;
            word-break: break-all;
        }

        /* Footer */
        .site-footer {
            border-top: 1px solid rgba(0, 197, 125, 0.1);
            padding: 3rem 2rem;
            text-align: center;
            margin-top: 3rem;
        }
        .footer-inner {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
        .footer-brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.3rem;
            font-weight: 700;
            color: #00c57d;
        }
        .footer-tagline {
            color: #666;
            font-size: 0.9rem;
        }
        .footer-links {
            display: flex;
            gap: 0.75rem;
            align-items: center;
            flex-wrap: wrap;
            justify-content: center;
        }
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #00c57d;
        }
        .footer-divider {
            color: #444;
        }
        .footer-copy {
            color: #444;
            font-size: 0.82rem;
        }

/* ================================
   TESTIMONIAL UPGRADES
================================ */
.testimonial-stars {
    color: #f5c518;
    font-size: 1.05rem;
    letter-spacing: 3px;
    margin-bottom: 0.85rem;
}

.testimonial-card {
    background: rgba(22, 22, 22, 0.95);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 197, 125, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.3s, transform 0.3s;
}

.testimonial-card:hover {
    border-color: rgba(0, 197, 125, 0.4);
    transform: translateY(-3px);
}

.testimonial-text {
    color: #d0d0d0;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.testimonial-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 10px;
    background: #111;
    padding: 5px;
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-author-info h4 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
    font-weight: 700;
}

.testimonial-author-info span {
    font-size: 0.82rem;
    color: #00c57d;
}

.testimonial-niche {
    background: rgba(0, 197, 125, 0.1);
    border: 1px solid rgba(0, 197, 125, 0.25);
    color: #00c57d;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.22rem 0.65rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    white-space: nowrap;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

/* ================================
   MOBILE — COMPLETE OVERHAUL
================================ */

/* Small phones: ≤ 480px */
@media (max-width: 480px) {

    /* Base */
    body { font-size: 15px; }
    .container { padding: 5.5rem 1rem 1rem; }

    /* Typography */
    h1 { font-size: 1.85rem; line-height: 1.2; margin-bottom: 0.6rem; }
    h2 { font-size: 1.5rem; }
    .subtitle { font-size: 0.95rem; text-align: center; line-height: 1.6; }

    /* Nav */
    nav { padding: 0.9rem 1rem; }
    .nav-links { gap: 0.85rem; }
    .nav-links a { font-size: 0.8rem; }
    #upworke { padding: 5px 8px; font-size: 0.78rem; border-radius: 10px; }
    .uploadbtn { display: none; }

    /* Hero */
    .hero { padding-bottom: 1rem; gap: 0.75rem; }
    .hero-trusted-bar {
        font-size: 0.7rem;
        padding: 0.4rem 0.85rem;
        border-radius: 10px;
        text-align: center;
        line-height: 1.5;
    }
    .upworkbadge { font-size: 0.6rem; padding: 7px 10px; }
    .upworkbadge img.fotabadge { width: 9px; height: 9px; }

    /* CTA Buttons */
    .cta-buttons { flex-direction: column; width: 100%; gap: 0.65rem; }
    .btn { width: 100%; text-align: center; font-size: 0.95rem; padding: 0.85rem 1.25rem; }
    .btn-secondary { margin-top: 0; }

    /* Carousel */
    .carousel-container { padding: 0; margin: 1.25rem auto 2rem; }
    .carousel-item { min-width: 100%; border-radius: 12px; }
    .carousel-content { padding: 0.85rem 1rem; }
    .carousel-content h3 { font-size: 0.88rem; }
    .carousel-content p { font-size: 0.8rem; }
    .carousel-btn { width: 36px; height: 36px; font-size: 1rem; }
    .carousel-btn-prev { left: 4px; }
    .carousel-btn-next { right: 4px; }

    /* Stats */
    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        margin: 2rem 0 1.5rem;
    }
    .stat h3 { font-size: 1.45rem; }
    .stat p { font-size: 0.65rem; line-height: 1.3; }

    /* Testimonials */
    .testimonials-section { padding: 0; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
    .testimonial-card { padding: 1.4rem; }
    .testimonial-stars { font-size: 0.95rem; margin-bottom: 0.6rem; }
    .testimonial-text { font-size: 0.88rem; line-height: 1.65; margin-bottom: 1.1rem; }
    .testimonial-author { flex-wrap: nowrap; gap: 0.7rem; }
    .testimonial-author-info h4 { font-size: 0.88rem; }
    .testimonial-author-info span { font-size: 0.75rem; }
    .testimonial-niche { font-size: 0.62rem; padding: 0.18rem 0.5rem; }

    /* About */
    .about-section { padding: 1.75rem 1rem; gap: 1.25rem; }
    .about-image img { width: 150px; height: 150px; }
    .about-content h2 { font-size: 1.5rem; text-align: center; }
    .about-content p { font-size: 0.9rem; line-height: 1.65; }

    /* How It Works */
    .hiw-section { margin: 3rem auto; padding: 0 1rem; }
    .hiw-grid { grid-template-columns: 1fr; gap: 0.85rem; }
    .hiw-card { padding: 1.5rem 1.1rem; }
    .hiw-number { font-size: 2.8rem; }
    .hiw-title { font-size: 1.2rem; }
    .hiw-text { font-size: 0.88rem; }

    /* SEO Cards */
    .seo-section { margin: 3rem auto; padding: 0 1rem; }
    .seo-grid { grid-template-columns: 1fr; gap: 0.85rem; }
    .seo-card { padding: 1.5rem 1.1rem; }
    .seo-icon { font-size: 1.6rem; }
    .seo-card h3 { font-size: 1.05rem; }
    .seo-card p { font-size: 0.88rem; }

    /* Contact */
    .contact-section { margin: 3rem auto; padding: 0 1rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 0.85rem; }
    .contact-card { padding: 1.5rem 1.1rem; }
    .contact-icon { font-size: 1.8rem; }
    .contact-subtitle { font-size: 0.9rem; }
    .contact-card .btn { font-size: 0.8rem; padding: 0.7rem 1rem; word-break: break-all; }

    /* Pricing */
    .pricing-section { padding: 0 1rem; margin-bottom: 3rem; }
    .pricing-grid { grid-template-columns: 1fr; gap: 1rem; }
    .pricing-card { padding: 1.75rem 1.25rem; }
    .pricing-price { font-size: 1.9rem; }
    .pricing-features li { font-size: 0.88rem; }

    /* FAQ */
    .faq-section { margin: 3rem auto 2.5rem; padding: 0 1rem; }
    .faq-question { font-size: 0.9rem; padding: 1.1rem 1rem; }
    .faq-answer { padding: 0 1rem; }
    .faq-answer p { font-size: 0.88rem; padding-bottom: 1.1rem; }

    /* Footer */
    .site-footer { padding: 2rem 1rem; }
    .footer-brand { font-size: 1.1rem; }
    .footer-tagline { font-size: 0.75rem; text-align: center; padding: 0 0.5rem; }
    .footer-links { gap: 0.4rem; font-size: 0.78rem; flex-direction: column; align-items: center; }
    .footer-divider { display: none; }
    .footer-copy { font-size: 0.7rem; }

    /* Portfolio */
    .portfolio-grid { grid-template-columns: 1fr; gap: 1rem; margin-top: 1.5rem; }
    .portfolio-image { height: 175px; }
    .portfolio-content { padding: 1rem; }
    .portfolio-content h3 { font-size: 0.9rem; }
    .portfolio-content p { font-size: 0.8rem; }
}

/* Tablets: 481px – 768px */
@media (min-width: 481px) and (max-width: 768px) {
    .container { padding: 6rem 1.5rem 1.5rem; }
    h1 { font-size: 2.2rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .seo-grid { grid-template-columns: 1fr; }
    .stats { grid-template-columns: repeat(3, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .hiw-grid { grid-template-columns: 1fr; gap: 1rem; }
}
