/* ============================================
           RESET & BASE
           ============================================ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --green: #2D6A4F;
            --green-dark: #1B4332;
            --green-light: #40916C;
            --orange: #F77F00;
            --orange-hover: #E06F00;
            --white: #FFFFFF;
            --gray-light: #F8F9FA;
            --gray-mid: #E9ECEF;
            --dark: #212529;
            --dark-light: #495057;
            --yellow: #FCBF49;
            --shadow: 0 4px 24px rgba(0,0,0,0.08);
            --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
            --radius: 16px;
            --radius-sm: 10px;
            --transition: 0.3s ease;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: 'Nunito', sans-serif;
            color: var(--dark);
            background: var(--white);
            line-height: 1.7;
            font-size: 17px;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--green);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover { color: var(--orange); }

        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 24px;
        }

        section {
            padding: 80px 0;
        }

        h2 {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 800;
            color: var(--green-dark);
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--dark-light);
            max-width: 600px;
            margin-bottom: 48px;
        }

        .section-center {
            text-align: center;
        }
        .section-center .section-subtitle {
            margin-left: auto;
            margin-right: auto;
        }

        /* ============================================
           NAVBAR
           ============================================ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,0,0,0.06);
            transition: box-shadow var(--transition);
        }
        .navbar.scrolled {
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
        }
        .navbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }
        .navbar-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 18px;
            color: var(--green-dark);
        }
        .navbar-logo .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--green);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        .navbar-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }
        .navbar-links a {
            color: var(--dark);
            font-weight: 600;
            font-size: 15px;
            position: relative;
            padding-bottom: 4px;
        }
        .navbar-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--orange);
            transition: width var(--transition);
        }
        .navbar-links a:hover::after { width: 100%; }
        .navbar-links a:hover { color: var(--green); }

        .navbar-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--orange);
            color: white !important;
            font-weight: 700;
            font-size: 14px;
            padding: 10px 20px;
            border-radius: 50px;
            transition: all var(--transition);
        }
        .navbar-cta:hover {
            background: var(--orange-hover);
            color: white !important;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(247,127,0,0.3);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            color: var(--dark);
        }

        /* ============================================
           HERO
           ============================================ */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding-top: 72px;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(27,67,50,0.82) 0%, rgba(45,106,79,0.65) 50%, rgba(27,67,50,0.5) 100%);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
            max-width: 680px;
            padding: 60px 0;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(6px);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
            border: 1px solid rgba(255,255,255,0.2);
        }
        .hero h1 {
            font-size: clamp(36px, 6vw, 56px);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 20px;
            text-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        .hero h1 span {
            color: var(--yellow);
        }
        .hero-sub {
            font-size: clamp(17px, 2.5vw, 21px);
            opacity: 0.93;
            margin-bottom: 36px;
            line-height: 1.6;
            max-width: 560px;
        }
        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Nunito', sans-serif;
            font-weight: 700;
            font-size: 17px;
            padding: 16px 32px;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all var(--transition);
            text-decoration: none;
        }
        .btn-primary {
            background: var(--orange);
            color: white;
            box-shadow: 0 4px 16px rgba(247,127,0,0.35);
        }
        .btn-primary:hover {
            background: var(--orange-hover);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(247,127,0,0.4);
        }
        .btn-outline {
            background: rgba(255,255,255,0.12);
            color: white;
            border: 2px solid rgba(255,255,255,0.4);
            backdrop-filter: blur(4px);
        }
        .btn-outline:hover {
            background: rgba(255,255,255,0.25);
            color: white;
            border-color: rgba(255,255,255,0.7);
        }
        .hero-stats {
            display: flex;
            gap: 32px;
            margin-top: 48px;
            padding-top: 32px;
            border-top: 1px solid rgba(255,255,255,0.2);
        }
        .hero-stat {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            opacity: 0.9;
        }
        .hero-stat i {
            width: 20px;
            height: 20px;
            opacity: 0.7;
        }
        .hero-stat strong {
            font-weight: 700;
        }

        /* ============================================
           FEATURES (CO ROBIMY)
           ============================================ */
        .features-grid {
            display: grid;
            /* Stałe breakpointy zamiast auto-fit: przy 8 kafelkach
               gwarantuje równe rzędy (4+4, 2+2+2+2) bez osieroconej karty */
            grid-template-columns: 1fr;
            gap: 24px;
            margin-top: 48px;
        }
        @media (min-width: 620px) {
            .features-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (min-width: 1000px) {
            .features-grid { grid-template-columns: repeat(4, 1fr); }
        }
        .feature-card {
            background: var(--white);
            border: 1px solid var(--gray-mid);
            border-radius: var(--radius);
            padding: 32px 28px;
            transition: all var(--transition);
        }
        .feature-card:hover {
            border-color: var(--green-light);
            box-shadow: var(--shadow);
            transform: translateY(-4px);
        }
        .feature-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
        }
        .feature-icon.green { background: var(--green); }
        .feature-icon.orange { background: var(--orange); }
        .feature-icon.yellow { background: var(--yellow); color: var(--dark); }
        .feature-icon.dark-green { background: var(--green-dark); }

        .feature-card h3 {
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 10px;
            color: var(--green-dark);
        }
        .feature-card p {
            font-size: 15px;
            color: var(--dark-light);
            line-height: 1.6;
        }

        .about-text {
            max-width: 740px;
            font-size: 18px;
            line-height: 1.8;
            color: var(--dark-light);
        }
        .about-text strong {
            color: var(--dark);
        }

        /* ============================================
           GALLERY — Interactive showcase
           ============================================ */
        .bg-light {
            background: var(--gray-light);
        }

        .gallery-showcase {
            margin-top: 48px;
        }

        /* Main featured image */
        .gallery-main {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            aspect-ratio: 16/9;
            cursor: pointer;
            box-shadow: var(--shadow-lg);
        }
        .gallery-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.4s ease;
        }
        .gallery-main-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(0,0,0,0.4) 0%, transparent 40%);
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            padding: 24px;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }
        .gallery-main:hover .gallery-main-overlay {
            opacity: 1;
        }
        .gallery-main-hint {
            color: white;
            font-size: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(0,0,0,0.3);
            backdrop-filter: blur(6px);
            padding: 8px 16px;
            border-radius: 50px;
        }
        .gallery-main-counter {
            color: white;
            font-size: 14px;
            font-weight: 700;
            background: rgba(0,0,0,0.3);
            backdrop-filter: blur(6px);
            padding: 6px 14px;
            border-radius: 50px;
        }

        /* Arrow navigation on main image */
        .gallery-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255,255,255,0.85);
            backdrop-filter: blur(6px);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 12px rgba(0,0,0,0.15);
            transition: all 0.2s ease;
            z-index: 3;
            color: var(--dark);
        }
        .gallery-nav:hover {
            background: white;
            transform: translateY(-50%) scale(1.08);
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }
        .gallery-nav.prev { left: 16px; }
        .gallery-nav.next { right: 16px; }

        /* Thumbnail strip */
        .gallery-thumbs {
            display: flex;
            gap: 10px;
            margin-top: 16px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 4px 0 8px;
            -ms-overflow-style: none;
            scrollbar-width: thin;
            scrollbar-color: var(--green-light) transparent;
        }
        .gallery-thumbs::-webkit-scrollbar {
            height: 4px;
        }
        .gallery-thumbs::-webkit-scrollbar-thumb {
            background: var(--green-light);
            border-radius: 4px;
        }
        .gallery-thumb {
            flex-shrink: 0;
            width: 120px;
            height: 80px;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            border: 3px solid transparent;
            transition: all 0.25s ease;
            opacity: 0.6;
        }
        .gallery-thumb:hover {
            opacity: 0.9;
            border-color: var(--green-light);
        }
        .gallery-thumb.active {
            border-color: var(--orange);
            opacity: 1;
            box-shadow: 0 2px 12px rgba(247,127,0,0.3);
        }
        .gallery-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 24px;
            font-weight: 700;
            font-size: 16px;
            color: var(--green);
        }
        .gallery-link:hover { color: var(--orange); }

        /* ============================================
           LIGHTBOX
           ============================================ */
        .lightbox {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 10000;
            background: rgba(0,0,0,0.92);
            backdrop-filter: blur(8px);
            align-items: center;
            justify-content: center;
            padding: 40px;
        }
        .lightbox.open {
            display: flex;
        }
        .lightbox-img {
            max-width: 90vw;
            max-height: 85vh;
            border-radius: 12px;
            box-shadow: 0 8px 60px rgba(0,0,0,0.5);
            object-fit: contain;
            transition: opacity 0.3s ease;
        }
        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 24px;
            width: 48px;
            height: 48px;
            background: rgba(255,255,255,0.1);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: background 0.2s;
        }
        .lightbox-close:hover { background: rgba(255,255,255,0.2); }
        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: background 0.2s;
        }
        .lightbox-nav:hover { background: rgba(255,255,255,0.25); }
        .lightbox-nav.prev { left: 20px; }
        .lightbox-nav.next { right: 20px; }
        .lightbox-counter {
            position: absolute;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255,255,255,0.7);
            font-size: 14px;
            font-weight: 600;
        }
        .lightbox-dots {
            position: absolute;
            bottom: 48px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
        }
        .lightbox-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            border: none;
            padding: 0;
            cursor: pointer;
            transition: all 0.2s;
        }
        .lightbox-dot.active {
            background: var(--orange);
            transform: scale(1.3);
        }

        /* ============================================
           SCHEDULE
           ============================================ */
        .schedule-locations {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
            gap: 32px;
            margin-top: 48px;
        }
        .location-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .location-header {
            background: var(--green);
            color: white;
            padding: 20px 28px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .location-header h3 {
            font-size: 18px;
            font-weight: 800;
        }
        .location-header .location-address {
            font-size: 14px;
            opacity: 0.85;
            font-weight: 400;
        }
        .schedule-table {
            width: 100%;
            border-collapse: collapse;
        }
        .schedule-table th {
            background: var(--gray-light);
            padding: 12px 20px;
            text-align: left;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--dark-light);
        }
        .schedule-table td {
            padding: 14px 20px;
            border-bottom: 1px solid var(--gray-mid);
            font-size: 15px;
        }
        .schedule-table tr:last-child td {
            border-bottom: none;
        }
        .schedule-table .group-tag {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            background: #E8F5E9;
            color: var(--green-dark);
        }
        .schedule-table .group-tag.older {
            background: #FFF3E0;
            color: #E65100;
        }
        .schedule-table .group-tag.teens {
            background: #E3F2FD;
            color: #1565C0;
        }
        .schedule-table .group-tag.preschool {
            background: #F3E5F5;
            color: #6A1B9A;
        }

        .map-custom {
            margin-top: 48px;
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 32px;
            position: relative;
        }
        .map-svg-wrapper {
            width: 100%;
            max-width: 700px;
            margin: 0 auto;
        }
        .map-svg-wrapper svg {
            width: 100%;
            height: auto;
        }
        .map-pin {
            cursor: pointer;
            transition: transform 0.3s ease;
            transform-origin: center bottom;
        }
        .map-pin:hover {
            transform: scale(1.15);
        }
        .map-legend {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        .map-legend-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--dark-light);
        }
        .map-legend-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* ============================================
           PRICING
           ============================================ */
        .pricing-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 48px;
        }
        .pricing-card {
            background: var(--white);
            border: 2px solid var(--green);
            border-radius: var(--radius);
            padding: 48px;
            text-align: center;
            max-width: 520px;
            width: 100%;
            position: relative;
            box-shadow: var(--shadow-lg);
        }
        .pricing-card-label {
            position: absolute;
            top: -16px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--green);
            color: white;
            padding: 6px 24px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .pricing-amount {
            font-size: 56px;
            font-weight: 900;
            color: var(--green-dark);
            line-height: 1;
            margin: 24px 0 8px;
        }
        .pricing-amount span {
            font-size: 22px;
            font-weight: 600;
            color: var(--dark-light);
        }
        .pricing-period {
            font-size: 17px;
            color: var(--dark-light);
            margin-bottom: 24px;
        }
        .pricing-features {
            list-style: none;
            margin: 24px 0;
            padding: 24px 0;
            border-top: 1px solid var(--gray-mid);
            border-bottom: 1px solid var(--gray-mid);
        }
        .pricing-features li {
            padding: 8px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 16px;
            color: var(--dark-light);
        }
        .pricing-features li i {
            color: var(--green);
            width: 20px;
            height: 20px;
        }

        .free-banner {
            background: linear-gradient(135deg, var(--orange), #FF9F43);
            color: white;
            border-radius: var(--radius);
            padding: 32px 40px;
            margin-top: 32px;
            max-width: 520px;
            width: 100%;
            text-align: center;
            box-shadow: 0 6px 24px rgba(247,127,0,0.25);
        }
        .free-banner h3 {
            font-size: 24px;
            font-weight: 900;
            margin-bottom: 8px;
        }
        .free-banner p {
            font-size: 16px;
            opacity: 0.93;
        }

        .pricing-extras {
            margin-top: 32px;
            max-width: 520px;
            width: 100%;
        }
        .pricing-extras p {
            font-size: 14px;
            color: var(--dark-light);
            padding: 6px 0;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }
        .pricing-extras p i {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            margin-top: 3px;
            color: var(--dark-light);
        }

        .pricing-cta {
            margin-top: 32px;
        }

        /* ============================================
           TESTIMONIALS
           ============================================ */
        /* Testimonials carousel */
        .testimonials-carousel-wrap {
            position: relative;
            margin-top: 48px;
        }
        .testimonials-grid {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            padding: 8px 4px 20px;
            scrollbar-width: none;
        }
        .testimonials-grid::-webkit-scrollbar { display: none; }
        .testimonial-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 32px;
            box-shadow: var(--shadow);
            position: relative;
            flex: 0 0 370px;
            scroll-snap-align: start;
            min-height: 240px;
            display: flex;
            flex-direction: column;
        }
        .testimonial-card::before {
            content: '\201E';
            font-size: 80px;
            font-weight: 900;
            color: var(--green);
            opacity: 0.15;
            position: absolute;
            top: 8px;
            left: 24px;
            line-height: 1;
        }
        .testimonial-text {
            font-size: 16px;
            line-height: 1.7;
            color: var(--dark);
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            flex: 1;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .testimonial-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--green);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 16px;
            flex-shrink: 0;
        }
        .testimonial-avatar.orange { background: var(--orange); }
        .testimonial-avatar.dark-green { background: var(--green-dark); }
        .testimonial-avatar.yellow { background: var(--yellow); color: var(--dark); }
        .testimonial-author-info {
            font-size: 14px;
        }
        .testimonial-author-info strong {
            display: block;
            font-weight: 700;
            color: var(--dark);
        }
        .testimonial-author-info span {
            color: var(--dark-light);
        }
        .testimonial-year {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            color: var(--green);
            background: rgba(45,106,79,0.08);
            padding: 2px 10px;
            border-radius: 50px;
            margin-top: 4px;
        }
        /* Carousel nav arrows */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--white);
            border: 1px solid var(--gray-mid);
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 3;
            transition: all var(--transition);
            color: var(--green-dark);
        }
        .carousel-btn:hover { background: var(--green); color: white; border-color: var(--green); }
        .carousel-btn.prev { left: -22px; }
        .carousel-btn.next { right: -22px; }
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }
        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--gray-mid);
            border: none;
            cursor: pointer;
            transition: all 0.2s;
            padding: 0;
        }
        .carousel-dot.active { background: var(--green); transform: scale(1.2); }

        .trust-numbers {
            display: flex;
            justify-content: center;
            gap: 48px;
            margin-top: 56px;
            flex-wrap: wrap;
        }
        .trust-item {
            text-align: center;
        }
        .trust-item .number {
            font-size: 40px;
            font-weight: 900;
            color: var(--green);
            line-height: 1;
        }
        .trust-item .label {
            font-size: 14px;
            color: var(--dark-light);
            margin-top: 4px;
            font-weight: 600;
        }

        /* ============================================
           TEAM
           ============================================ */
        .team-intro {
            max-width: 700px;
            font-size: 17px;
            color: var(--dark-light);
            line-height: 1.7;
            margin-bottom: 48px;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }
        .team-card {
            text-align: center;
        }
        .team-photo {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            margin: 0 auto 20px;
            overflow: hidden;
            border: 4px solid var(--green);
            box-shadow: 0 4px 20px rgba(45,106,79,0.15);
        }
        .team-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .team-card h3 {
            font-size: 20px;
            font-weight: 800;
            color: var(--green-dark);
            margin-bottom: 4px;
        }
        .team-card .team-role {
            font-size: 14px;
            color: var(--orange);
            font-weight: 700;
            margin-bottom: 12px;
        }
        .team-card p {
            font-size: 15px;
            color: var(--dark-light);
            line-height: 1.6;
            max-width: 300px;
            margin: 0 auto;
        }

        /* ============================================
           FAQ
           ============================================ */
        .faq-list {
            max-width: 740px;
            margin: 48px auto 0;
        }
        .faq-item {
            border-bottom: 1px solid var(--gray-mid);
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            background: none;
            border: none;
            font-family: 'Nunito', sans-serif;
            font-size: 17px;
            font-weight: 700;
            color: var(--dark);
            padding: 20px 0;
            cursor: pointer;
            text-align: left;
            gap: 16px;
            transition: color var(--transition);
        }
        .faq-question:hover {
            color: var(--green);
        }
        .faq-question .faq-icon {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            transition: transform var(--transition);
        }
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }
        .faq-answer-inner {
            padding-bottom: 20px;
            font-size: 16px;
            color: var(--dark-light);
            line-height: 1.7;
        }

        /* ============================================
           CONTACT / CTA
           ============================================ */
        .contact-section {
            background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
            color: white;
            padding: 80px 0;
        }
        .contact-section h2 {
            color: white;
        }
        .contact-section .section-subtitle {
            color: rgba(255,255,255,0.85);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            margin-top: 48px;
        }

        .contact-info-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .contact-item {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .contact-item-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: rgba(255,255,255,0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .contact-item-icon i {
            width: 24px;
            height: 24px;
        }
        .contact-item a {
            color: white;
            font-size: 20px;
            font-weight: 700;
        }
        .contact-item a:hover {
            color: var(--yellow);
        }
        .contact-item .contact-label {
            font-size: 14px;
            opacity: 0.7;
            display: block;
            margin-bottom: 2px;
            font-weight: 600;
        }

        .contact-form {
            background: rgba(255,255,255,0.08);
            border-radius: var(--radius);
            padding: 36px;
            backdrop-filter: blur(6px);
            border: 1px solid rgba(255,255,255,0.1);
        }
        .contact-form h3 {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 24px;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 6px;
            opacity: 0.9;
        }
        .form-group input,
        .form-group select {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: var(--radius-sm);
            background: rgba(255,255,255,0.08);
            color: white;
            font-family: 'Nunito', sans-serif;
            font-size: 16px;
            transition: all var(--transition);
        }
        .form-group input::placeholder {
            color: rgba(255,255,255,0.4);
        }
        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--yellow);
            background: rgba(255,255,255,0.12);
        }
        .form-group select {
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            padding-right: 40px;
        }
        .form-group select option {
            background: var(--green-dark);
            color: white;
        }
        .btn-submit {
            width: 100%;
            padding: 16px;
            font-size: 17px;
            margin-top: 8px;
            background: var(--orange);
            color: white;
            border: none;
            border-radius: 50px;
            font-family: 'Nunito', sans-serif;
            font-weight: 800;
            cursor: pointer;
            transition: all var(--transition);
        }
        .btn-submit:hover {
            background: var(--orange-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(247,127,0,0.4);
        }

        .contact-social {
            display: flex;
            gap: 12px;
            margin-top: 32px;
        }
        .social-link {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all var(--transition);
        }
        .social-link:hover {
            background: var(--orange);
            color: white;
            transform: translateY(-2px);
        }

        /* ============================================
           FOOTER
           ============================================ */
        .footer {
            background: var(--green-dark);
            color: rgba(255,255,255,0.6);
            padding: 32px 0;
            text-align: center;
            font-size: 14px;
        }
        .footer a {
            color: rgba(255,255,255,0.8);
        }
        .footer a:hover { color: var(--yellow); }

        /* ============================================
           FLOATING CTA (mobile)
           ============================================ */
        .floating-cta {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 999;
            background: var(--white);
            padding: 12px 16px;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
            border-top: 1px solid var(--gray-mid);
        }
        .floating-cta a {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 14px;
            background: var(--orange);
            color: white !important;
            border-radius: 50px;
            font-weight: 800;
            font-size: 16px;
        }

        /* ============================================
           MOBILE MENU
           ============================================ */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
            z-index: 999;
            padding: 16px 24px 24px;
        }
        .mobile-menu.open { display: block; }
        .mobile-menu a {
            display: block;
            padding: 14px 0;
            font-weight: 600;
            color: var(--dark);
            border-bottom: 1px solid var(--gray-light);
            font-size: 16px;
        }
        .mobile-menu a:last-child { border-bottom: none; }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 992px) {
            .schedule-locations {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            section { padding: 56px 0; }

            .navbar-links { display: none; }
            .navbar-cta.desktop-only { display: none; }
            .mobile-toggle { display: block; }

            .hero-content { padding: 40px 0; }
            .hero-stats { gap: 20px; flex-direction: column; }

            .gallery-thumb {
                width: 90px;
                height: 60px;
            }
            .gallery-nav { width: 40px; height: 40px; }
            .lightbox { padding: 16px; }
            .lightbox-nav { width: 44px; height: 44px; }

            .contact-grid {
                grid-template-columns: 1fr;
            }
            .form-row {
                grid-template-columns: 1fr;
            }

            .floating-cta { display: block; }
            .contact-section { padding-bottom: 120px; }

            .trust-numbers { gap: 24px; }

            .pricing-card { padding: 36px 24px; }
            .pricing-amount { font-size: 48px; }
        }

        @media (max-width: 480px) {
            .hero h1 { font-size: 32px; }
            .hero-buttons { flex-direction: column; align-items: stretch; }
            .btn { justify-content: center; font-size: 16px; padding: 14px 24px; }
            .gallery-thumb {
                width: 72px;
                height: 48px;
            }
            .testimonial-card {
                flex: 0 0 300px;
            }
            .carousel-btn { display: none; }
        }

        /* ============================================
           ANIMATIONS (scroll-triggered)
           ============================================ */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
/* ============================================
   ZAPISY NA ZAJĘCIA PRÓBNE (bez backendu)
   ============================================ */
.signup-fallback {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.signup-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: white;
    text-decoration: none;
    transition: all var(--transition);
}
.signup-btn:hover {
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.4);
    color: white;
    transform: translateY(-2px);
}
.signup-btn i { opacity: 0.85; }
.signup-btn span {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.signup-btn strong {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
}
.signup-btn small {
    font-size: 13px;
    opacity: 0.72;
    font-weight: 600;
    line-height: 1.4;
}
.signup-btn--primary {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 4px 16px rgba(247,127,0,0.3);
}
.signup-btn--primary:hover {
    background: var(--orange-hover);
    border-color: var(--orange-hover);
    box-shadow: 0 6px 22px rgba(247,127,0,0.4);
}
.signup-btn--primary small { opacity: 0.9; }

.signup-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 8px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.06);
    font-size: 13.5px;
    line-height: 1.6;
    opacity: 0.85;
}
.signup-note i { margin-top: 3px; opacity: 0.7; }

@media (max-width: 480px) {
    .signup-btn { padding: 14px 16px; gap: 12px; }
    .signup-btn strong { font-size: 15.5px; }
    .signup-btn small { font-size: 12.5px; }
}

/* ============================================
   OBOZY I PÓŁKOLONIE
   ============================================ */
.camps-wrap {
    margin-top: 72px;
    padding-top: 56px;
    border-top: 1px solid var(--gray-mid);
}
.camps-title {
    font-size: clamp(24px, 3.2vw, 32px);
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 8px;
}
.camps-sub {
    font-size: 17px;
    color: var(--dark-light);
    margin-bottom: 40px;
}
.camps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 24px;
    text-align: left;
}
.camp-card {
    background: var(--white);
    border: 1px solid var(--gray-mid);
    border-radius: var(--radius);
    padding: 30px 28px;
    transition: all var(--transition);
}
.camp-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
    border-color: var(--green-light);
}
.camp-card--featured {
    border: 2px solid var(--orange);
    box-shadow: 0 6px 26px rgba(247,127,0,.14);
}
.camp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .3px;
    margin-bottom: 16px;
}
.camp-badge--sun      { background: #FFF4E0; color: #B35C00; }
.camp-badge--mountain { background: #E8F5E9; color: var(--green-dark); }
.camp-card h4 {
    font-size: 21px;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}
.camp-price {
    font-size: 27px;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 14px;
    line-height: 1;
}
.camp-price span {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-light);
}
.camp-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--dark-light);
}
.camp-card strong { color: var(--dark); }
.camps-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    max-width: 720px;
    margin: 28px auto 0;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    background: var(--gray-light);
    font-size: 14px;
    line-height: 1.65;
    color: var(--dark-light);
    text-align: left;
}
.camps-note i { margin-top: 3px; opacity: .65; }

/* ============================================
   INFORMACJA O GODZINACH (wrzesień–październik)
   ============================================ */
.hours-notice {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 28px;
    padding: 18px 22px;
    border-radius: var(--radius-sm);
    background: #FFF8E7;
    border: 1px solid #FFE3A3;
    font-size: 15px;
    line-height: 1.65;
    color: var(--dark-light);
    text-align: left;
}
.hours-notice > i { color: #B35C00; margin-top: 2px; }
.hours-notice strong { color: var(--green-dark); }
.hours-notice-sub {
    display: block;
    margin-top: 8px;
    font-size: 13.5px;
    opacity: .8;
    font-style: italic;
}

/* Ferie w Hiszpanii */
.camp-card--spain {
    background: linear-gradient(160deg, #FFF9F0 0%, #FFFDFA 60%);
    border-color: #FFD9A0;
}
.camp-badge--spain { background: #FFF0D6; color: #B35C00; }
.camp-price--soon {
    font-size: 19px;
    font-weight: 800;
    color: var(--dark-light);
}
.camp-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 16px;
    font-size: 15px;
    font-weight: 700;
    color: var(--orange);
    text-decoration: none;
}
.camp-link:hover { color: var(--orange-hover); gap: 10px; }

/* ============================================
   OŚ SEZONU (rok szkolny)
   ============================================ */
.season {
    margin-top: 40px;
    padding: 34px 32px;
    border-radius: var(--radius);
    background: var(--gray-light);
    border: 1px solid var(--gray-mid);
}
.season-title {
    font-size: 21px;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 4px;
}
.season-sub {
    font-size: 15px;
    color: var(--dark-light);
    margin-bottom: 26px;
}
.season-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 18px;
}
.season-step {
    position: relative;
    padding: 16px 16px 16px 18px;
    background: var(--white);
    border: 1px solid var(--gray-mid);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--green-light);
}
.season-step--now {
    border-left-color: var(--orange);
    box-shadow: 0 3px 14px rgba(247,127,0,.12);
}
.season-when {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--dark-light);
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}
.season-tag {
    background: var(--orange);
    color: #fff;
    border-radius: 50px;
    padding: 1px 9px;
    font-size: 10.5px;
    letter-spacing: .6px;
}
.season-what {
    font-size: 16.5px;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 6px;
    line-height: 1.3;
}
.season-step p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--dark-light);
}

@media (max-width: 600px) {
    .season { padding: 26px 20px; }
}

/* Notka o równoległych grupach (przedszkolaki + młodsza) */
.parallel-note {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    padding: 13px 20px;
    border-top: 1px solid var(--gray-mid);
    background: #FAF7FD;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--dark-light);
}
.parallel-note i { color: #6A1B9A; margin-top: 2px; }

/* ============================================
   PLAKIETKA „TRWAJĄ ZAPISY" (hero)
   ============================================ */
.hero-badge--enroll {
    background: rgba(247,127,0,0.92);
    border-color: rgba(255,255,255,0.35);
    font-weight: 700;
    letter-spacing: .2px;
    box-shadow: 0 4px 18px rgba(247,127,0,0.35);
}
.hero-badge--enroll strong { font-weight: 900; }
.pulse-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fff;
    flex-shrink: 0;
    animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot {
    0%, 100% { opacity: 1;   box-shadow: 0 0 0 0 rgba(255,255,255,.7); }
    70%      { opacity: .75; box-shadow: 0 0 0 7px rgba(255,255,255,0); }
}
@media (prefers-reduced-motion: reduce) {
    .pulse-dot { animation: none; }
}
@media (max-width: 480px) {
    .hero-badge--enroll { font-size: 12.5px; padding: 8px 14px; }
}

/* Pilność pod przyciskami hero */
.hero-urgency {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--yellow);
    opacity: .95;
}
@media (max-width: 480px) {
    .hero-urgency { font-size: 13.5px; align-items: flex-start; }
    .hero-urgency i { margin-top: 2px; }
}

/* Sygnet FRA/JDA w nawigacji */
.navbar-logo .logo-mark {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: block;
    border-radius: 10px;
}
