    /* --- RESET I BAZA --- */
    :root {
        --primary: #5d5bf5;
        --primary-light: #efefff;
        --dark: #2c3e50;
        --darker: #1a252f;
        --light: #f4f7f6;
        --accent: #e74c3c;
        --text: #333;

        /* Kolory gradientu przycisków */
        --btn-grad-start: #5d5bf5;
        --btn-grad-end: #00d2ff;
    }

    html {
        scroll-behavior: smooth;
    }

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

    body {
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        background-color: var(--light);
        color: var(--text);
        line-height: 1.6;
        overflow-x: hidden;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    /* --- NAWIGACJA (ZMNIEJSZONA) --- */
    nav {
        background: rgba(255, 255, 255, 0.98);
        padding: 0.5rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        transition: all 0.3s ease;
        height: 60px;
    }

    .logo {
        font-weight: 900;
        font-size: 1.6rem;
        color: var(--dark);
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .logo img {
        height: 2.2rem;
        width: auto;
    }

    .info-img {
        width: 100%;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        border-radius: 15px;
        margin-bottom: 1rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

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

    .nav-links {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .nav-links a {
        font-weight: 500;
        font-size: 0.95rem;
        transition: color 0.3s;
    }

    .nav-links a.cta {
        color: var(--primary);
        font-weight: 700;
    }

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

    .lang-switcher {
        display: inline-flex;
        gap: 6px;
        align-items: center;
    }

    .lang-btn {
        border: 1px solid rgba(0, 0, 0, .12);
        background: rgba(255, 255, 255, .7);
        padding: 6px 10px;
        border-radius: 999px;
        font-weight: 700;
        font-size: 0.8rem;
        cursor: pointer;
    }

    .lang-btn.active {
        border-color: var(--primary);
        color: var(--primary);
        box-shadow: 0 6px 16px rgba(93, 91, 245, 0.15);
    }


    @media (max-width: 768px) {
        nav {
            flex-direction: column;
            padding: 5px;
            gap: 5px;
            height: auto;
        }

        .nav-links {
            gap: 10px;
            width: 100%;
            justify-content: center;
            font-size: 0.85rem;
            flex-wrap: wrap;
            padding-bottom: 5px;
        }

        .logo {
            font-size: 1.4rem;
        }

        .logo img {
            height: 1.8rem;
        }
    }

    /* --- HERO VIDEO (ZMNIEJSZONE) --- */
    .hero {
        position: relative;
        height: 75vh;
        width: 100%;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 60px;
        background: #000;
    }

    .video-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 0;
        overflow: hidden;
    }

    .video-background video {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100vw;
        height: 56.25vw;
        min-height: 100vh;
        min-width: 177.77vh;
        transform: translate(-50%, -50%);
        opacity: 0.5;
        object-fit: cover;
    }

    .hero-content {
        text-align: center;
        color: white;
        z-index: 2;
        padding: 2rem;
        max-width: 900px;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
        border-radius: 20px;
    }

    .hero h1 {
        font-size: 3rem;
        margin-bottom: 0.8rem;
        text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
        font-weight: 800;
        line-height: 1.1;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
        line-height: 1.5;
        opacity: 0.95;
    }

    .hero-btn {
        background: linear-gradient(90deg, var(--btn-grad-start) 0%, var(--btn-grad-end) 100%);
        color: white;
        padding: 15px 40px;
        border-radius: 50px;
        font-weight: 800;
        font-size: 1.1rem;
        transition: transform 0.2s, box-shadow 0.2s;
        display: inline-block;
        box-shadow: 0 5px 25px rgba(93, 91, 245, 0.5);
        text-transform: uppercase;
        border: none;
        letter-spacing: 1px;
    }

    .hero-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 35px rgba(93, 91, 245, 0.8);
    }

    .hero-note {
        font-size: 1.1rem;
        margin-top: 15px;
        color: #fff;
        font-weight: 500;
        opacity: 1;
        line-height: 1.4;
    }

    .sound-toggle-btn {
        position: absolute;
        bottom: 30px;
        right: 30px;
        z-index: 10;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.6);
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: white;
        font-size: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
        backdrop-filter: blur(5px);
    }

    .sound-toggle-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
    }

    @media (max-width: 768px) {
        .hero {
            margin-top: 85px;
            height: 70vh;
        }

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

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

        .hero-btn {
            padding: 12px 25px;
            font-size: 0.9rem;
        }

        .sound-toggle-btn {
            width: 40px;
            height: 40px;
            font-size: 1.2rem;
            bottom: 20px;
            right: 20px;
        }
    }

    /* --- PASEK SOCIAL MEDIA --- */
    .social-strip {
        background-color: var(--darker);
        color: white;
        padding: 15px 0;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .social-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.15);
        color: white;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .social-link:hover {
        background: white;
        color: var(--darker);
        transform: translateY(-2px);
    }

    /* --- SEKCJE OGÓLNE --- */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 5rem 2rem;
    }

    .product-info {
        padding: 5rem 2rem;
        background: white;
        text-align: center;
    }

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

    .section-subtitle {
        text-align: center;
        margin-bottom: 4rem;
        color: #7f8c8d;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        font-size: 1.1rem;
    }

    /* --- ZMODYFIKOWANA SEKCJA USP (2 KOLUMNY) --- */
    .info-grid {
        display: grid;
        /* Forces exactly 2 columns */
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
        /* Increased gap for better spacing */
        max-width: 1200px;
        margin: 4rem auto 0;
    }

    /* Make text larger to match bigger images */
    .info-item h3 {
        margin: 1.5rem 0 0.8rem;
        color: var(--dark);
        font-size: 1.8rem;
        /* Increased from 1.4rem */
        font-weight: 800;
    }

    .info-item p {
        font-size: 1.15rem;
        /* Increased from 1rem */
        color: #555;
        line-height: 1.7;
    }

    /* Ensure the carousel scales correctly */
    /* --- CAROUSEL STYLES (UPDATED FOR FULL IMAGE VIEW) --- */
    .carousel-wrapper {
        width: 100%;
        aspect-ratio: 4/3;
        /* Changed background to white for cleaner look with 'contain' */
        background: #ffffff;
        border-radius: 20px;
        margin-bottom: 1rem;
        overflow: hidden;
        position: relative;
        cursor: pointer;
        user-select: none;
        touch-action: pan-y;
    }

    .carousel-track {
        display: flex;
        width: 100%;
        height: 100%;
        transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .carousel-img {
        width: 100%;
        height: 100%;
        /* CHANGED: 'contain' ensures the whole image fits inside without cropping */
        object-fit: contain;
        /* OPTIONAL: Adds a little breathing room around the product */
        padding: 15px;
        flex-shrink: 0;
        pointer-events: none;
    }

    /* Dots indicator */
    .carousel-dots {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 6px;
        z-index: 2;
        /* Added a subtle background behind dots to make them visible on white images */
        background: rgba(0, 0, 0, 0.1);
        padding: 4px 8px;
        border-radius: 10px;
    }

    .dot {
        width: 8px;
        height: 8px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 50%;
        transition: all 0.2s;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }

    .dot.active {
        background: var(--primary);
        /* Uses your primary blue color */
        transform: scale(1.2);
    }

    /* Hint for interaction */
    .carousel-hint {
        position: absolute;
        top: 10px;
        right: 10px;
        background: rgba(0, 0, 0, 0.6);
        color: white;
        font-size: 0.7rem;
        padding: 2px 8px;
        border-radius: 10px;
        opacity: 0;
        transition: opacity 0.3s;
        pointer-events: none;
    }

    .carousel-wrapper:hover .carousel-hint {
        opacity: 1;
    }

    /* --- MOBILE RESPONSIVENESS --- */
    @media (max-width: 900px) {
        .info-grid {
            /* On tablets/phones, switch to 1 column */
            grid-template-columns: 1fr;
            gap: 50px;
            padding: 0 1rem;
        }

        .info-item h3 {
            font-size: 1.6rem;
        }
    }

    /* --- SEKCJA: SPECYFIKACJA --- */
    .specs-section {
        /* CHANGED: Blue gradient background to match theme */
        background: linear-gradient(135deg, var(--primary) 0%, var(--btn-grad-end) 100%);
        color: white;
        padding: 5rem 2rem;
        margin-bottom: 0;
    }

    .specs-section .section-title {
        color: white;
    }

    .specs-section .section-subtitle {
        /* CHANGED: Brighter text for better contrast on blue */
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 3rem;
    }

    .specs-video-wrapper {
        max-width: 800px;
        aspect-ratio: 16 / 9;
        /* ✅ proporcje */
        margin: 0 auto 3rem;
        overflow: hidden;
        border-radius: 15px;
        /* ADDED: Fix for the floating volume button bug discussed previously */
        position: relative; 
    }

    .specs-video-wrapper video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .specs-grid-list {
        max-width: 900px;
        margin: 0 auto;
        display: block;
        column-count: 1;
        column-gap: 60px;
    }

    @media (min-width: 768px) {
        .specs-grid-list {
            column-count: 2;
        }
    }

    .spec-row {
        /* podświetlenie kratek*/
        display: flex;
        align-items: flex-start;
        /* ważne! */
        padding: 8px 0;
        /* CHANGED: Lighter divider line */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mini-dot {
        width: 7px;
        height: 7px;
        /* CHANGED: White dot */
        background-color: white;
        /* widoczna kropka */
        border-radius: 50%;
        margin-right: 12px;
        margin-top: 6px;
        /* ustawia ją przy pierwszej linii tekstu */
        flex-shrink: 0;
        opacity: 0.8;
    }

    .spec-text {
        /* tekst w specyfikacji Mats pod*/
        font-size: 0.95rem;
        /* CHANGED: White text */
        color: white;
        line-height: 1.4;
    }

    .disabled-item {
        color: #ffcccc; /* CHANGED: Lighter red for visibility on blue */
        text-decoration: line-through;
        opacity: 0.7;
    }

    /* --- GRY (SEKCJA 8 AKTYWNOŚCI - ZMODYFIKOWANA) --- */
    .training-list {
        display: flex;
        flex-direction: column;
        gap: 0;
        max-width: 1400px;
        margin: 0 auto;
    }

    .training-item {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 0;
        align-items: center;
        min-height: auto;
        position: relative;
        overflow: hidden;
    }

    .training-item:nth-child(odd) {
        background: white;
    }

    .training-item:nth-child(even) {
        background: var(--light);
        grid-template-columns: 1.5fr 1fr;
    }

    /* DESKTOP ORDERING */
    .training-item:nth-child(even) .training-content {
        order: 2;
        /* Tekst na prawo na PC */
        padding-left: 5rem;
        padding-right: 3rem;
    }

    .training-item:nth-child(even) .training-video {
        order: 1;
        /* Wideo na lewo na PC */
    }

    .training-item:nth-child(odd) .training-content {
        padding-left: 3rem;
        padding-right: 5rem;
    }

    .training-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 4rem 3rem;
        z-index: 1;
    }

    .t-name {
        font-weight: 800;
        font-size: 2.2rem;
        color: var(--dark);
        line-height: 1.2;
        margin: 0;
    }

    .t-desc {
        font-size: 1.1rem;
        color: #555;
        line-height: 1.6;
        margin: 0;
    }

    .t-rules {
        background: transparent;
        padding: 0;
        border: none;
        font-size: 0.95rem;
        color: #666;
        line-height: 1.6;
        margin-top: 5px;
    }

    .t-rules strong {
        color: var(--primary);
        display: block;
        margin-top: 15px;
        margin-bottom: 5px;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    .training-video {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        position: relative;
        overflow: hidden;
        background: var(--darker);
    }

    .training-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .training-video.empty {
        background: linear-gradient(135deg, var(--primary) 0%, var(--btn-grad-end) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
        font-weight: 600;
    }

    .unique-badge {
        display: inline-block;
        background: var(--accent);
        color: white;
        font-size: 0.75rem;
        padding: 6px 14px;
        border-radius: 20px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        width: fit-content;
    }

    /* --- MOBILE LAYOUT MODIFICATION --- */
    @media (max-width: 968px) {
        .training-item {
            /* Zmieniamy na flex column, aby łatwo kontrolować kolejność */
            display: flex;
            flex-direction: column;
        }

        /* Resetujemy specyficzne ustawienia siatki dla parzystych */
        .training-item:nth-child(even) {
            grid-template-columns: none;
        }

        /* WYMUSZENIE KOLEJNOŚCI NA MOBILE */
        /* Video zawsze pierwsze (na górze) */
        .training-video {
            order: 1;
            width: 100%;
        }

        /* Treść zawsze druga (na dole) */
        .training-content {
            order: 2;
            width: 100%;
            padding: 3rem 2rem !important;
            /* Reset paddingu */
        }

        /* Reset stylów specyficznych dla desktopu */
        .training-item:nth-child(even) .training-content,
        .training-item:nth-child(even) .training-video {
            order: unset;
            /* Usuwamy order z PC, aby zadziałał ten powyżej */
        }

        /* Ponowne wymuszenie dla pewności przy specyficzności selektorów */
        .training-item:nth-child(even) .training-video,
        .training-item:nth-child(odd) .training-video {
            order: 1;
        }

        .training-item:nth-child(even) .training-content,
        .training-item:nth-child(odd) .training-content {
            order: 2;
            padding-left: 2rem !important;
            padding-right: 2rem !important;
        }

        .t-name {
            font-size: 2rem;
        }

        .t-desc {
            font-size: 1.1rem;
        }
    }

    @media (max-width: 640px) {
        .training-content {
            padding: 2rem 1.5rem !important;
        }

        .t-name {
            font-size: 1.7rem;
        }

        .t-desc {
            font-size: 1rem;
        }
    }

    /* --- CENNIK (POZIOMY SCROLL) --- */
    section.pricing-section.container {
        max-width: 1500px; 
    }

    .pricing-section {
        background: #f9f9f9;
        border-radius: 30px;
        padding: 4rem 1rem;
        overflow: hidden;
    }

    .pricing-scroll-container {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        padding: 20px 5%;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .pricing-scroll-container::-webkit-scrollbar {
        display: none;
    }

    .pricing-card {
        flex: 0 0 85%;
        max-width: 380px;
        background: white;
        border-radius: 20px;
        padding: 3rem 2rem;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        border: 1px solid #eee;
        display: flex;
        flex-direction: column;
        scroll-snap-align: center;
        position: relative;
    }

    .product-img-placeholder-card {
        width: 100%;
        height: 180px;
        background: #f0f2f5;
        border-radius: 15px;
        margin: 15px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #999;
        font-weight: 600;
        border: 2px dashed #d1d8e0;
    }

    @media (min-width: 900px) {
        .pricing-scroll-container {
            justify-content: center;
            overflow-x: hidden;
        }

        .pricing-card {
            flex: 1;
            max-width: 350px;
        }
    }

    .pricing-card.popular {
        border: 2px solid var(--primary);
        box-shadow: 0 10px 40px rgba(93, 91, 245, 0.25);
        z-index: 2;
        transform: scale(1.02);
    }

    .badge {
        background: var(--accent);
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: bold;
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: max-content;
    }

    .set-name {
        font-size: 1.4rem;
        font-weight: 800;
        margin-bottom: 0.5rem;
        color: var(--dark);
    }

    .price-container {
        margin: 1.5rem 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .price-old {
        font-size: 1.2rem;
        color: #95a5a6;
        text-decoration: line-through;
        font-weight: 500;
    }

    .price-promo {
        font-size: 2.5rem;
        font-weight: 900;
        color: var(--accent);
        line-height: 1;
    }

    .price-promo span {
        font-size: 1rem;
        font-weight: normal;
        color: #7f8c8d;
    }

    .features-list {
        list-style: none;
        margin: 1rem 0 2rem;
        flex-grow: 1;
        text-align: left;
    }

    /* .features-list li { padding: 0.8rem 0; border-bottom: 1px dashed #eee; font-size: 0.95rem; display: flex; align-items: center; }
        .features-list li::before { content: "✔"; color: var(--primary); font-weight: bold; margin-right: 10px; }
        
        .features-list li.disabled {
            color: #999 !important;
            text-decoration: line-through !important;
            opacity: 0.7;
        } */

    .features-list li {
        position: relative;
        padding-left: 25px;
    }

    /* ✔ domyślny check */
    .features-list li::before {
        content: "✔";
        color: var(--primary);
        font-weight: bold;
        position: absolute;
        left: 0;
    }

    /* ❌ elementy disabled */
    .features-list li.disabled {
        color: #999 !important;
        opacity: 0.7;
    }

    /* ❌ zamiast ✔ */
    .features-list li.disabled::before {
        content: "✖";
        color: var(--accent);
        font-weight: bold;
    }

    .btn {
        background: linear-gradient(90deg, var(--btn-grad-start) 0%, var(--btn-grad-end) 100%);
        color: white;
        padding: 15px;
        border-radius: 50px;
        font-weight: 800;
        border: none;
        cursor: pointer;
        width: 100%;
        transition: transform 0.3s, box-shadow 0.3s;
        box-shadow: 0 5px 15px rgba(93, 91, 245, 0.3);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 210, 255, 0.5);
    }

    .popular .btn {
        box-shadow: 0 5px 20px rgba(0, 210, 255, 0.4);
    }

    /* --- SEKCJA INFLUENCERA --- */
    .influencer-section {
        background: var(--primary-light);
        text-align: center;
        padding: 4rem 2rem;
        margin-top: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .influencer-section h2 {
        color: var(--dark);
        margin-bottom: 1rem;
        font-size: 2rem;
        font-weight: 800;
    }

    .influencer-section p {
        font-size: 1.1rem;
        color: #555;
        margin-bottom: 2rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

    .influencer-btn {
        background: transparent;
        border: 2px solid var(--primary);
        color: var(--primary);
        padding: 12px 35px;
        font-weight: 700;
        border-radius: 50px;
        transition: all 0.3s;
        font-size: 1.1rem;
        display: inline-block;
    }

    .influencer-btn:hover {
        background: var(--primary);
        color: white;
        box-shadow: 0 5px 15px rgba(93, 91, 245, 0.3);
        transform: translateY(-2px);
    }

    /* --- MODAL --- */
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(5px);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 2000;
    }

    .modal {
        background: white;
        padding: 2.5rem;
        border-radius: 20px;
        max-width: 600px;
        width: 90%;
        position: relative;
        animation: slideUp 0.3s ease-out;
        max-height: 90vh;
        overflow-y: auto;
    }

    @keyframes slideUp {
        from {
            transform: translateY(50px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .close-modal {
        position: absolute;
        top: 20px;
        right: 25px;
        font-size: 2rem;
        cursor: pointer;
        color: #ccc;
    }

    .modal h2 {
        margin-bottom: 1rem;
        color: var(--dark);
        text-align: center;
    }

    .modal-scenario {
        background: #f9f9f9;
        padding: 1.5rem;
        border-radius: 10px;
        border-left: 4px solid var(--primary);
        margin: 1rem 0;
        text-align: left;
    }

    .promo-box {
        background: var(--primary-light);
        border: 2px dashed var(--primary);
        padding: 1rem;
        border-radius: 10px;
        margin: 1.5rem 0;
    }

    .old-price {
        text-decoration: line-through;
        color: #999;
    }

    .new-price {
        color: var(--accent);
        font-size: 1.8rem;
        font-weight: bold;
    }

    input[type="email"] {
        width: 100%;
        padding: 15px;
        margin-bottom: 10px;
        border: 1px solid #ddd;
        border-radius: 8px;
    }

    footer {
        background: var(--dark);
        color: white;
        text-align: center;
        padding: 3rem 2rem;
        margin-top: 0;
    }

    footer a {
        color: #aaa;
        text-decoration: none;
        margin-left: 10px;
        font-size: 0.9rem;
    }

    footer a:hover {
        color: white;
    }

    .specs-video-wrapper {
        position: relative;
    }

/* Container for the image to define its space */
.product-card-image-container {
    width: 100%;
    height: 220px;
    /* Fixed height for all image areas */
    display: flex;
    /* Enables flexbox for centering */
    justify-content: center;
    /* Centers horizontally */
    align-items: center;
    /* Centers vertically */
    margin-bottom: 20px;
    /* Space between image and price */
    padding: 10px;
    /* Padding so the image doesn't touch the card edges */
    box-sizing: border-box;
    /* Ensures padding doesn't affect width/height */
}

/* The image itself */
.product-card-image-container img {
    max-width: 100%;
    /* Never wider than the container */
    max-height: 100%;
    /* Never taller than the container */
    object-fit: contain;
    /* KEY: Scales the image to fit, preserving aspect ratio without cropping */
    transition: transform 0.3s ease;
    /* Smooth transition for hover effect */
}

/* Optional: Subtle zoom on hover */
.pricing-card:hover .product-card-image-container img {
    transform: scale(1.05);
}

/* --- SEO/LLM sections --- */
.seo-intro p strong { color: var(--dark); }

/* --- SEO intro --- */
.seo-intro-inner { padding-top: 3rem; padding-bottom: 3rem; }
.seo-intro-inner h2 { text-align: center; font-size: 2.2rem; margin-bottom: 1rem; color: var(--dark); }
.seo-intro-inner p { max-width: 900px; margin: 0.6rem auto; color:#555; font-size: 1.08rem; line-height: 1.75; }

/* --- FAQ --- */
.faq { background: #fff; }
.faq-grid { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.faq-card { background: var(--primary-light); border: 1px solid rgba(93,91,245,0.18); padding: 18px; border-radius: 16px; }
.faq-card h3 { margin: 0 0 8px; color: var(--dark); font-size: 1.05rem; }
.faq-card p { margin: 0; color:#444; line-height: 1.65; }
@media (max-width: 820px) { .faq-grid { grid-template-columns: 1fr; } }

/* --- Footer --- */
.site-footer { text-align: center; padding: 40px 0; color: #888; }
.site-footer a { color: var(--primary); font-weight: 700; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

/* --- Language dropdown --- */
.lang-dropdown { position: relative; display: inline-block; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  border: 2px solid rgba(93,91,245,0.55);
  background: #fff; color: var(--primary);
  font-weight: 800; cursor: pointer;
}
.lang-toggle:hover { background: rgba(93,91,245,0.08); }
.lang-caret { font-weight: 900; }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  min-width: 160px;
  background: #fff; border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  border-radius: 14px; padding: 8px;
  display: none; z-index: 1000;
}
.lang-menu.open { display: grid; gap: 6px; }
.lang-option {
  text-align: left;
  padding: 10px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: #fff;
  cursor: pointer;
  font-weight: 700;
  color: var(--dark);
}
.lang-option:hover { background: rgba(93,91,245,0.10); }
.lang-option.active { border-color: rgba(93,91,245,0.55); background: rgba(93,91,245,0.08); }
