/* =========================================
   ZMIENNE I RESET
========================================= */

:root {
    --neon: #00ff88;
    --bg: #060b12;
    --card: #0d1622;
    --soft: #aab5c5;
}

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: white;
    font-family: 'Poppins', sans-serif;
}

/* =========================================
       SEKCJE GLOBAL
    ========================================= */

section {
    padding: 90px 10%;
    opacity: 0;
    transform: translateY(40px);
    transition: .8s;
}

section.show {
    opacity: 1;
    transform: translateY(0);
}

.title {
    text-align: center;
    font-family: 'Orbitron';
    letter-spacing: 2px;
    margin-bottom: 25px;
}

/* =========================================
       MENU
    ========================================= */

.nav {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 30px;

    background: rgba(10, 15, 25, .7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 255, 136, .2);

    border-radius: 20px;
    z-index: 999;
}

.logo {
    font-family: 'Orbitron';
    color: #00ff88;
    text-shadow: 0 0 8px #00ff88;
}

.logo a {
    text-decoration: none;
    color: #00ff88;
    font-size: 1.5em;
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid #00ff88;
    border-radius: 12px;
    color: #00ff88;
    text-decoration: none;
    transition: .3s;
    font-size: 14px;
}

.login-btn:hover {
    background: #00ff88;
    color: black;
    box-shadow: 0 0 15px #00ff88;
}


.menu {
    display: flex;
    gap: 25px;
    list-style: none;
}

.menu a {
    color: white;
    text-decoration: none;
    position: relative;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #00ff88;
    transition: .3s;
}

.menu a:hover::after {
    width: 100%;
}

/* HAMBURGER */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #00ff88;
}

/* MOBILE MENU */

@media(max-width:900px) {

    .hamburger {
        display: flex;
    }

    .menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;

        flex-direction: column;
        background: #0a1018ee;
        backdrop-filter: blur(10px);

        padding: 20px;
        border-radius: 20px;

        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
        transition: .4s;
    }

    .menu.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
}

/* =========================================
       HERO
    ========================================= */

/* ===== NOWE HERO 3D ===== */

#hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.hero-bg {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 20% 20%, #00ff8815, transparent 40%),
        radial-gradient(circle at 80% 80%, #00b3ff15, transparent 40%);

    z-index: -1;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.hero-left {
    z-index: 2;
}

.stats {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.stat {
    background: #0d1622;
    padding: 10px 14px;
    border-radius: 12px;
}

.stat b {
    display: block;
    color: #00ff88;
    font-size: 18px;
}

/* PRAWA STRONA – MINI ANIMACJA DRUKARKI */

.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
}

.printer {
    width: 220px;
    height: 220px;
    border: 2px solid #00ff88;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.print-head {
    position: absolute;
    top: 20px;
    left: 10%;
    width: 40px;
    height: 20px;
    background: #00ff88;
    animation: head 3s infinite;
}

.print-item {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 50px;
    opacity: .8;
}

@keyframes head {
    0% {
        left: 10%
    }

    50% {
        left: 70%
    }

    100% {
        left: 10%
    }
}

/* KASA WYSKAKUJĄCA */

.money {
    position: absolute;
    bottom: -10px;
    right: -10px;

    background: #00ff88;
    color: black;
    padding: 6px 12px;
    border-radius: 10px;

    font-weight: bold;

    animation: cash 2.5s infinite;
}

@keyframes cash {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

/* PROOF */

.proof {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.avatars img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: -10px;
    border: 2px solid #060b12;
}

/* MOBILE */

@media(max-width:900px) {

    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stats {
        justify-content: center;
    }

}


/* =========================================
       BUTTONS
    ========================================= */

.btn {
    background: var(--neon);
    border: none;
    padding: 12px 24px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 10px;
    transition: .3s;
}

.btn:hover {
    box-shadow: 0 0 20px var(--neon);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid #00ff88;
    color: #00ff88;
    padding: 12px 22px;
    cursor: pointer;
    transition: .3s;
    border-radius: 10px;
}

.btn-outline:hover {
    background: #00ff88;
    color: black;
}

.gold {
    background: linear-gradient(90deg, #ffd700, #ffb300);
    color: black;
}

/* =========================================
       DROGA
    ========================================= */

.road {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.road-card {
    background: var(--card);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #00ff8815;
    transition: .3s;
}

.road-card:hover {
    transform: translateY(-6px);
    border: 1px solid #00ff88;
}

/* =========================================
       PRODUKTY
    ========================================= */

.g-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.prod {
    position: relative;
}

.prod img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    transition: .4s;
    filter: brightness(.8);
}

.prod img:hover {
    filter: brightness(1);
    transform: scale(1.03);
}

.p-info {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #000b;
    padding: 10px;
    border-radius: 10px;
}

/* =========================================
       MODUŁY
    ========================================= */

.modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.mod {
    background: #0b111a;
    padding: 15px;
    border-radius: 15px;
    transition: .3s;
}

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

/* =========================================
       KURSY
    ========================================= */

.kursy {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.kurs {
    background: linear-gradient(160deg, #0d1622, #090f18);
    padding: 25px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    transition: .4s;
}

.start {
    border: 1px solid #00b3ff55;
}

.pro {
    border: 2px solid var(--neon);
    animation: proPulse 3s infinite;
}

.vip {
    border: 2px solid gold;
    background: linear-gradient(160deg, #0f0d05, #16120a);
}

.price {
    font-size: 32px;
    font-family: 'Orbitron';
    background: linear-gradient(90deg, #fff, #00ff88);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* <--- TU MUSI BYĆ TA KLAMRA. Jeśli jej nie ma, reszta 1200 linii nie działa! */

.badge {
    position: absolute;
    top: -8px;
    right: -10px;

    padding: 6px 14px;
    border-radius: 12px 12px 0 12px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
    backdrop-filter: blur(6px);

    transform: rotate(2deg);
    z-index: 10;
}

/* mały "trójkącik" w rogu */
.badge::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -6px;

    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 6px 0 0;
    opacity: .7;
}

/* --- START --- */
.badge:not(.best):not(.premium) {
    background: linear-gradient(120deg, #00b3ff, #0077ff);
    color: white;
}

.badge:not(.best):not(.premium)::after {
    border-color: #005fcc transparent transparent transparent;
}

/* --- NAJCZĘŚCIEJ WYBIERANE --- */

.best {
    background: linear-gradient(120deg, #00ff88, #00d26a);
    color: #012b18;
    font-weight: 800;
    animation: bestPulse 2.2s infinite;
}

.best::after {
    border-color: #00a85a transparent transparent transparent;
}

/* --- PREMIUM / VIP --- */

.premium {
    background: linear-gradient(120deg, #ffd900, #ff9f00);
    color: #2a1d00;
    font-weight: 800;
    text-shadow: 0 1px 1px rgba(255, 255, 255, .4);
}

.premium::after {
    border-color: #d48900 transparent transparent transparent;
}

/* animacja tylko dla PRO */
@keyframes bestPulse {

    0%,
    100% {
        box-shadow:
            0 0 10px rgba(0, 255, 136, .4),
            0 0 20px rgba(0, 255, 136, .2);
    }

    50% {
        box-shadow:
            0 0 20px rgba(0, 255, 136, .7),
            0 0 35px rgba(0, 255, 136, .4);
    }
}

/* lekki efekt najechania na całą kartę */
.kurs:hover .badge {
    transform: rotate(0deg) scale(1.06);
    transition: .3s;
}



/* =========================================
       TABELA
    ========================================= */

.compare {
    width: 100%;
    background: #0d1622;
    border-radius: 20px;
    overflow: hidden;
}

.compare th,
.compare td {
    padding: 14px;
    text-align: center;
}

.compare tr:nth-child(even) {
    background: #0003;
}

/* =========================================
       PAYMENTS
    ========================================= */

.pay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    text-align: center;
}

.pay {
    background: #0d1622;
    padding: 20px;
    border-radius: 15px;
    transition: .3s;
}

.pay i {
    font-size: 34px;
    display: block;
    margin-bottom: 8px;
}

.pay:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 15px #00ff8833;
}

/* =========================================
       FORM
    ========================================= */

.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 320px;
    margin: auto;
}

input,
textarea {
    background: #0005;
    border: none;
    padding: 10px;
    color: white;
    border-radius: 8px;
}

/* =========================================
       FOOTER
    ========================================= */

.footer {
    margin-top: 80px;
    background: #020407;
    padding: 60px 10%;
}


.f-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 30px;
}

.footer-pay {
    display: flex;
    gap: 12px;
    font-size: 26px;
}

/* =========================================
   FOOTER PREMIUM
========================================= */

.footer-premium {
    background: linear-gradient(180deg, #05080f, #020407);
    border-top: 1px solid #00ff8822;
    padding: 70px 10% 25px;
}

.footer-wrap {
    max-width: 1300px;
    margin: auto;

    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 40px;
}

/* BRAND */
.footer-brand h3 {
    font-family: 'Orbitron';
    color: #00ff88;
    text-shadow: 0 0 12px #00ff88;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 14px;
    opacity: .8;
    line-height: 1.6;
}

/* SOCIAL */
.footer-socials {
    display: flex;
    gap: 14px;
    margin-top: 14px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    border: 1px solid #00ff8833;
    color: #00ff88;

    transition: .3s;
}

.footer-socials a:hover {
    background: #00ff88;
    color: black;
    box-shadow: 0 0 15px #00ff88;
}

/* LINKI */
.footer-links h4,
.footer-cta h4 {
    margin-bottom: 12px;
    font-size: 15px;
    letter-spacing: .5px;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: white;
    opacity: .7;
    font-size: 14px;
    text-decoration: none;
    transition: .3s;
}

.footer-links a:hover {
    opacity: 1;
    color: #00ff88;
}

/* CTA */
.footer-cta p {
    font-size: 14px;
    opacity: .8;
    margin-bottom: 14px;
}

.footer-premium .footer-wrap .footer-cta a {
    text-decoration: none;
    color: black;
    background-color: #00ff88;
    padding: 10px;
    border-radius: 10px;
}

/* płatności */
.footer-payments {
    display: flex;
    gap: 14px;
    font-size: 28px;
    margin-top: 18px;
    color: #00ff88;
    opacity: .85;
}

/* dół */
.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #ffffff11;
    text-align: center;
    font-size: 12px;
    opacity: .6;
}

/* MOBILE */
@media(max-width:900px) {
    .footer-wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-socials,
    .footer-payments {
        justify-content: center;
    }
}


/* =========================================
       TŁO EFEKT
    ========================================= */

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background:
        radial-gradient(circle at 10% 20%, #00ff8811, transparent 40%),
        radial-gradient(circle at 90% 80%, #00b3ff11, transparent 40%);

    pointer-events: none;
}

/* =========================================
       RWD
    ========================================= */

@media(max-width:700px) {

    .hero-benefits {
        flex-direction: column;
    }

    .hero-btns {
        flex-direction: column;
    }

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

/* =========================================
       ANIMACJE
    ========================================= */

@keyframes proPulse {
    50% {
        box-shadow: 0 0 25px #00ff88
    }
}

/* ===== MEGA FORMULARZ ===== */

/* ===== FORMULARZ FULL WIDTH ===== */

.contact-form {
    width: 100%;
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;

    background: linear-gradient(160deg, #0d1622, #090f18);
    padding: 35px;
    border-radius: 26px;

    border: 1px solid #00ff8822;
    box-shadow: 0 0 30px #00ff8811;
}


/* kontener inputa */

.input-box {
    position: relative;
}


.input-box i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #00ff88;
    opacity: .8;
}

.input-box.area i {
    top: 20px;
}

/* pola */

.input-box input,
.input-box textarea {
    width: 100%;
    padding: 12px 12px 12px 38px;

    background: #0005;
    border: 1px solid #00ff8815;
    border-radius: 12px;

    color: white;
    outline: none;
    transition: .3s;
}

.input-box textarea {
    min-height: 120px;
    resize: vertical;
}

/* focus efekt */

.input-box input:focus,
.input-box textarea:focus {
    border: 1px solid #00ff88;
    box-shadow: 0 0 12px #00ff8844;
    background: #0008;
}

/* info */

.form-info {
    font-size: 13px;
    opacity: .8;
    margin: 5px 0 10px 0;
    text-align: center;
}

/* przycisk */

.btn.send {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
}

.input-box.area {
    grid-column: 1 / -1;
}

.btn.send {
    grid-column: 1 / -1;
    margin-top: 10px;
}


/* success */

.form-success {
    display: none;
    margin-top: 10px;
    background: #00ff8815;
    border: 1px solid #00ff8844;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
}

/* animacja pojawiania */

.contact-form {
    animation: formIn .8s ease;
}

@keyframes formIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* mobile */

@media(max-width:600px) {
    .contact-form {
        padding: 18px;
    }
}

/* ===== SYMULATOR HERO ===== */

.sim-panel {
    background: #0d1622;
    padding: 15px;
    border-radius: 15px;
    max-width: 420px;
}

.stage {
    text-align: center;
    margin-bottom: 8px;
    color: #00ff88;
    font-weight: bold;
}

.progress {
    height: 6px;
    background: #0005;
    border-radius: 10px;
    overflow: hidden;
}

.bar {
    width: 0%;
    height: 100%;
    background: #00ff88;
    transition: .4s;
}

.result {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 10px 0;
}

.result .box {
    background: #0004;
    padding: 8px;
    border-radius: 10px;
    text-align: center;
}

.printer {
    width: 240px;
    height: 240px;
    border: 2px solid #00ff88;
    border-radius: 20px;
    position: relative;
}

.print-head {
    position: absolute;
    top: 20px;
    left: 10%;
    width: 40px;
    height: 20px;
    background: #00ff88;
    transition: .4s;
}

.print-area {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.model {
    font-size: 50px;
    opacity: 0;
    transform: translateY(20px);
    transition: .5s;
}

.model.show {
    opacity: 1;
    transform: translateY(0);
}

.cash {
    position: absolute;
    bottom: -10px;
    right: -10px;

    background: #00ff88;
    color: black;
    padding: 6px 12px;
    border-radius: 10px;

    font-weight: bold;
    opacity: 0;
    transition: .4s;
}

.cash.show {
    opacity: 1;
    transform: translateY(-10px);
}

.sim-panel {
    background: #0d1622aa;
    backdrop-filter: blur(8px);
    padding: 14px;
    border-radius: 15px;
    max-width: 420px;
    border: 1px solid #00ff8822;
}

.stage {
    text-align: center;
    margin-bottom: 6px;
    color: #00ff88;
    font-size: 14px;
    opacity: .9;
}

.result .box b {
    font-family: 'Orbitron';
}

.cash {
    pointer-events: none;
}

/* ===== GALERIA INFINITE LOOP – FINAL ===== */

.skew-gallery {
    overflow: hidden;
    padding: 80px 0;
    background: #0e0e14;
}

/* pochylenie całych wierszy */
.skew-row {
    overflow: hidden;
    transform: rotate(-8deg) scale(1.1);
}

/* tor z powielonymi obrazami */
.track {
    display: flex;
    gap: 18px;
    width: max-content;
}

/* styl zdjęć */
.track img {
    width: 260px;
    height: 170px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 0 30px rgba(0, 255, 255, .18);
    transition: .3s;
}

.track img:hover {
    transform: scale(1.08);
}

/* animacje pętli */
.row-a .track {
    animation: infiniteRight 28s linear infinite;
}

.row-b .track {
    animation: infiniteLeft 28s linear infinite;
}

@keyframes infiniteRight {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes infiniteLeft {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* ===== SEKCJA OPINII ===== */

.reviews {
    text-align: center;
}

.sub-title {
    opacity: .8;
    margin-bottom: 25px;
}

.reviews-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

/* karta opinii */

.review {
    background: linear-gradient(160deg, #0d1622, #090f18);
    border: 1px solid #00ff8822;
    border-radius: 22px;
    padding: 16px;

    text-align: left;
    position: relative;

    animation: revIn .8s ease;
    transition: .3s;
}

.review:hover {
    transform: translateY(-6px);
    border-color: #00ff88;
}

/* góra karty */

.rev-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #00ff88;
}

.rev-top span {
    font-size: 12px;
    opacity: .7;
}

/* screen z wypłatą */

.proof-img {
    width: 100%;
    border-radius: 12px;
    margin: 8px 0;
    border: 1px solid #00ff8822;
}

/* kwota */

.amount {
    margin-top: 8px;
    font-family: 'Orbitron';
    color: #00ff88;
    font-size: 20px;
    text-shadow: 0 0 8px #00ff88;
}

/* animacja wejścia */

@keyframes revIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* ===== INTERAKTYWNE OPINIE ===== */

.review-slider {
    overflow: hidden;
    max-width: 900px;
    margin: auto;
}

.review-track {
    display: flex;
    gap: 20px;
    animation: reviewsMove 20s linear infinite;
}

/* pauza na hover */
.review-track:hover {
    animation-play-state: paused;
}

.review {
    min-width: 280px;
    background: linear-gradient(160deg, #0d1622, #090f18);
    border: 1px solid #00ff8822;
    border-radius: 22px;
    padding: 16px;
    text-align: left;
    transition: .3s;
}

.review:hover {
    transform: translateY(-6px);
    border-color: #00ff88;
}

.rev-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #00ff88;
}

.proof-img {
    width: 100%;
    border-radius: 12px;
    margin: 8px 0;
    border: 1px solid #00ff8822;
}

.amount {
    margin-top: 8px;
    font-family: 'Orbitron';
    color: #00ff88;
    font-size: 20px;
}

@keyframes reviewsMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ===== OPINIE FULL WIDTH ===== */

.reviews-full {
    padding: 60px 0;
    overflow: hidden;
}

.reviews-marquee {
    width: 100%;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 20px;
    width: max-content;

    animation: reviewsFlow 26s linear infinite;
}

/* pauza po najechaniu */
.reviews-track:hover {
    animation-play-state: paused;
}

.review {
    width: 320px;
    background: #0d1622;
    border: 1px solid #00ff8822;
    border-radius: 20px;
    padding: 14px;
}

.proof-img {
    width: 100%;
    border-radius: 12px;
}

.amount {
    font-family: 'Orbitron';
    color: #00ff88;
    margin-top: 6px;
    font-size: 18px;
}

.author {
    font-size: 12px;
    opacity: .7;
}

@keyframes reviewsFlow {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.academy {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.module-card {
    background: #0b111a;
    border-radius: 18px;
    padding: 14px;
    border: 1px solid #00ff8815;
}

.m-head {
    font-size: 12px;
    opacity: .6;
}

.path {
    max-width: 800px;
    margin: auto;
}

.step {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    align-items: center;
}

.circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #0d1622;
    border: 1px solid #00ff88;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #00ff88;
    transition: .3s;
}

.step:hover .circle {
    background: #00ff88;
    color: black;
    transform: scale(1.1);
}

.content {
    background: #0d1622;
    padding: 14px;
    border-radius: 14px;
    flex: 1;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.item {
    background: #0d1622;
    border-radius: 18px;
    padding: 12px;
    position: relative;
    transition: .3s;
}

.item:hover {
    transform: translateY(-6px);
}

.badge-profit {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #00ff88;
    color: black;
    padding: 4px 10px;
    border-radius: 10px;
    font-weight: bold;
}

/* ===== STATYCZNE KOŁO SYSTEMU ===== */

.wheel-section {
    text-align: center;
}

.wheel-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.wheel {
    width: 660px;
    height: 660px;
    position: relative;
}

/* środek */

.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    background: #0d1622;
    border: 2px solid #00ff88;
    border-radius: 22px;

    padding: 16px 22px;

    text-align: center;
}

.center h3 {
    font-family: 'Orbitron';
    margin: 0 0 4px 0;
}

.center span {
    font-size: 13px;
    opacity: .8;
}

/* punkty */

.point {
    position: absolute;

    width: 160px;
    background: #0d1622;
    border: 1px solid #00ff8822;
    border-radius: 16px;

    padding: 10px;

    transition: .3s;
    text-align: center;
}

/* ikony */

.point i {
    display: block;
    font-size: 22px;
    color: #00ff88;
    margin-bottom: 4px;
}

/* hover */

.point:hover {
    border-color: #00ff88;
    transform: scale(1.08);
    background: #0f1a28;
    box-shadow: 0 0 20px #00ff8833;
}

/* ROZMIESZCZENIE 8 ELEMENTÓW */

.p1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.p2 {
    top: 18%;
    right: 4%;
}

.p3 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.p4 {
    bottom: 18%;
    right: 4%;
}

.p5 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.p6 {
    bottom: 18%;
    left: 4%;
}

.p7 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.p8 {
    top: 18%;
    left: 4%;
}

/* MOBILE */

@media(max-width:700px) {

    .wheel {
        width: 380px;
        height: 380px;
    }

    .point {
        width: 120px;
        font-size: 12px;
    }

}

/* =========================================
   LOADER
========================================= */

#loader {
    position: fixed;
    inset: 0;

    background: #060b12;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .6s;
}

.loader-box {
    text-align: center;
}

/* ikona */
.cube {
    font-size: 46px;
    color: #00ff88;

    animation: cube 1.2s infinite ease;
}

@keyframes cube {
    50% {
        transform: translateY(-10px) rotate(10deg);
    }
}

/* brand */
.brand {
    font-family: 'Orbitron';
    margin-top: 8px;
    letter-spacing: 2px;
}

/* pasek */
.bar-wrap {
    width: 180px;
    height: 6px;
    background: #0005;

    border-radius: 10px;
    margin: 10px auto;

    overflow: hidden;
}

.bar {
    width: 40%;
    height: 100%;

    background: #00ff88;
    animation: bar 1.4s infinite;
}

@keyframes bar {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(260%);
    }
}

/* tekst */
.txt {
    font-size: 13px;
    opacity: .8;
}

/* ukrycie po załadowaniu */
#loader.hide {
    opacity: 0;
    pointer-events: none;
}

/* USUNIĘCIE KROPEK W PAKIETACH */
.kurs ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.kurs ul li {
    padding-left: 0;
}

/* =========================================
   SEKCJA STORY / HISTORIA
========================================= */

.story {
    padding: 80px 10%;
}

.story-wrap {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}

/* ZDJĘCIE */
.story-img img {
    width: 70%;
    border-radius: 22px;
    border: 1px solid #00ff8822;
    box-shadow: 0 0 40px #00ff8815;
}

/* TEKST */
.story-text {
    font-size: 16px;
    line-height: 1.7;
    opacity: .95;
}

.story-text p {
    margin-bottom: 16px;
}

/* wyróżnienie */
.story-text .highlight {
    padding-left: 14px;
    border-left: 3px solid #00ff88;
    color: #00ff88;
    font-weight: 500;
}

/* tytuł wyrównany do lewej */
.title.left {
    text-align: left;
    margin-bottom: 20px;
}

/* =========================================
   PROFESJONALNE RWD - 3D PROFIT
========================================= */
/* =========================================
   FINALNA RESPONSYWNOŚĆ (BEZ BŁĘDÓW)
========================================= */

@media (max-width: 900px) {
    /* Nawigacja Mobilna */
    .nav { width: 95%; padding: 12px 20px; top: 10px; }
    
    .hamburger { display: flex; z-index: 1001; }

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #060b12; 
        flex-direction: column;
        justify-content: center;
        gap: 35px;
        transition: 0.4s ease-in-out;
        z-index: 1000;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        padding: 20px;
    }

    .menu.active { right: 0; }
    .menu a { font-size: 22px; font-family: 'Orbitron'; }

    /* Hero - Styl Aplikacyjny */
    #hero { height: auto; padding-top: 140px; display: block; }
    .hero-wrapper { display: flex; flex-direction: column; text-align: center; gap: 40px; }
    .hero-left h1 { font-size: 2rem !important; line-height: 1.2; }
    
    /* POPRAWIONA LINIA (Tutaj był błąd) */
    .hero-right { display: none; } 

    /* Sekcja Droga (Koło) -> Lista Pionowa */
    .wheel-wrapper { height: auto; display: block; }
    .wheel { 
        width: 100%; height: auto; border: none; 
        display: flex; flex-direction: column; gap: 15px; 
    }
    .wheel .center { 
        position: static; transform: none; width: 100%; 
        margin-bottom: 20px; background: rgba(0, 255, 136, 0.05);
    }
    .wheel .point { 
        position: static !important; width: 100% !important; 
        transform: none !important; display: flex; align-items: center; 
        text-align: left; gap: 15px; padding: 18px; 
    }
    .wheel .point i { margin: 0; font-size: 22px; width: 30px; }

    /* Historia i Inne siatki */
    .story-wrap { grid-template-columns: 1fr; text-align: center; }
    .story-img img { width: 100%; }
    
    .kursy, .kursy-grid, .road, .modules, .g-grid {
        grid-template-columns: 1fr !important;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .kurs, .kurs-card, .road-card { width: 100%; }

    /* Formularz */
    .contact-form { grid-template-columns: 1fr; padding: 20px; }
    .btn, .btn-ebook, .login-btn { height: 55px; font-size: 15px; }

    /* Footer */
    .footer-wrap { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-socials, .footer-payments { justify-content: center; }
}

@media (max-width: 480px) {
    .title { font-size: 1.6rem !important; }
    .hero-left h1 { font-size: 1.7rem !important; }
    .track img { width: 160px; height: 110px; }
}
@media (max-width: 900px) {
    /* 1. GALERIA (SKEW GALLERY) - WIĘKSZE ZDJĘCIA */
    .skew-gallery { 
        padding: 40px 0; 
        background: #060b12; /* Spójność tła */
    }
    .skew-row { 
        transform: rotate(-4deg) scale(1.05); /* Mniejsze pochylenie na tel lepiej wygląda */
        margin-bottom: 15px;
    }
    .track img { 
        width: 280px !important; /* Znacznie większe zdjęcia */
        height: 200px !important; 
        box-shadow: 0 10px 30px rgba(0, 255, 136, 0.15);
    }

    /* 2. DROGA DO PIENIĘDZY (LISTA) - POPRAWA CZYTELNOŚCI */
    .wheel-section { padding: 60px 5%; }
    .wheel .point {
        background: linear-gradient(160deg, #0d1622, #090f18) !important;
        border: 1px solid rgba(0, 255, 136, 0.2) !important;
        padding: 22px !important;
        margin-bottom: 5px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
    .wheel .point b {
        font-family: 'Orbitron';
        color: var(--neon);
        font-size: 18px !important;
        display: block;
        margin-bottom: 4px;
    }
    .wheel .point small {
        font-size: 13px !important;
        opacity: 0.8;
    }

    /* 3. KONTAKT - WIĘKSZY I WYGODNIEJSZY */
    #kontakt { padding: 60px 5%; }
    .contact-form {
        padding: 30px 20px !important;
        gap: 25px !important; /* Większe odstępy między polami */
        border-radius: 20px !important;
    }
    .input-box input, 
    .input-box textarea {
        padding: 18px 18px 18px 45px !important; /* Większe pola pod palec */
        font-size: 16px !important; /* Zapobiega auto-zoomowaniu na iPhone */
        background: rgba(0,0,0,0.5) !important;
    }
    .btn.send {
        height: 65px !important; /* Wielki przycisk wysyłki */
        font-size: 16px !important;
        letter-spacing: 2px;
        margin-top: 10px;
    }
}