/* IMPORT FONT�W */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Orbitron:wght@600;700;800&display=swap');

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

body {
    font-family: 'Rajdhani', sans-serif;
    background: #050505;
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* BACKGROUND */
.bg-grid {
    position: fixed;
    inset: 0;
    background:
        linear-gradient(rgba(0, 255, 100, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 100, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.15;
    z-index: -3;
}

.overlay {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at center,
            rgba(0, 255, 100, 0.08),
            transparent 60%);
    z-index: -2;
}

/* NAVBAR */
.navbar {
    width: 100%;
    padding: 30px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 255, 100, 0.15);
    position: relative;
    z-index: 2000;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 255, 100, 0.7));
}

/* LOGO - INNA CZCIONKA */
.logo {
    font-size: 32px;
    font-weight: 800;
    font-family: 'Orbitron', sans-serif;
    color: #00ff66;
    letter-spacing: 1px;
}

.logo span {
    color: white;
}

/* NAV */
nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #b5b5b5;
    font-size: 14px;
    letter-spacing: 2px;
    transition: 0.3s;
    position: relative;
}

nav a:hover,
nav a.active {
    color: #00ff66;
}

nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 100%;
    height: 2px;
    background: #00ff66;
    box-shadow: 0 0 10px #00ff66;
}

/* LOGIN */
.login-btn {
    background: transparent;
    border: 1px solid #00ff66;
    color: #00ff66;
    padding: 10px 30px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: none;
    font-family: 'Rajdhani', sans-serif;
}

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

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 3000;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #00ff66;
    border-radius: 10px;
    transition: 0.3s;
}

/* HERO */
.hero {
    width: 100%;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 80px;
}

.hero-left {
    width: 40%;
}

.small-text {
    color: #00ff66;
    font-size: 14px;
    letter-spacing: 3px;
}

.hero-left h1 {
    margin-top: 20px;
    font-size: 80px;
    line-height: 0.95;
    color: #00ff66;
    text-shadow: 0 0 20px rgba(0, 255, 100, 0.6);
}

.hero-left p {
    margin-top: 25px;
    color: #bdbdbd;
    max-width: 450px;
    line-height: 1.6;
}

.cta-btn {
    margin-top: 35px;
    background: #00ff66;
    color: black;
    border: none;
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(0, 255, 100, 0.35);
    font-family: 'Rajdhani', sans-serif;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 100, 0.8);
}

/* PC */
.hero-center {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pc-frame {
    width: 520px;
    height: 520px;
    border: 1px solid rgba(0, 255, 100, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow:
        0 0 30px rgba(0, 255, 100, 0.15),
        inset 0 0 30px rgba(0, 255, 100, 0.08);
}

.pc-frame::before {
    content: "";
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(0, 255, 100, 0.2);
}

.pc-frame img {
    width: 90%;
    filter: brightness(1.1) drop-shadow(0 0 20px #00ff66);
}

/* BOTTOM */
.bottom-panels {
    width: 100%;
    padding: 0 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto 1.4fr 100px;
    gap: 20px;
}

.panel {
    height: 90px;
    border: 1px solid rgba(0, 255, 100, 0.18);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    transition: 0.3s;
}

.panel:hover {
    border-color: #00ff66;
    box-shadow: 0 0 25px rgba(0, 255, 100, 0.15);
}

.icon {
    color: #00ff66;
    font-size: 22px;
}

.panel span {
    color: #d5d5d5;
    letter-spacing: 1px;
    font-size: 14px;
}

.big {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
}

.arrow {
    font-size: 40px;
    color: #00ff66;
    cursor: pointer;
}

.dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff66;
    box-shadow: 0 0 10px #00ff66;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .hero-left,
    .hero-center {
        width: 100%;
    }

    .hero-left p {
        margin: auto;
        margin-top: 20px;
    }

    .bottom-panels {
        grid-template-columns: 1fr 1fr;
    }
}

/* MOBILE NAV */
@media (max-width: 900px) {
    .navbar {
        position: relative;
        padding: 20px 25px;
        z-index: 3000;
    }

    .hamburger {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(-20px);
        width: 240px;
        background: rgba(5, 5, 5, 0.98);
        border: 1px solid rgba(0, 255, 100, 0.2);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        padding: 25px;
        gap: 20px;
        opacity: 0;
        pointer-events: none;
        transition: 0.3s;
        z-index: 3500;
    }

    nav.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

    nav a {
        display: block;
        width: 100%;
        text-align: left;
        padding: 0;
    }

    .logo {
        font-size: 28px;
    }

    .login-btn {
        padding: 10px 22px;
        font-size: 15px;
    }
}

/* DESKTOP RESET */
@media (min-width: 901px) {
    nav {
        display: flex !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: none !important;
        position: static;
    }
}

/* SMALL SCREENS */
@media (max-width: 700px) {

    .navbar,
    .hero,
    .bottom-panels {
        padding-left: 25px;
        padding-right: 25px;
    }

    .hero-left h1 {
        font-size: 48px;
    }

    .pc-frame {
        width: 100%;
        height: auto;
        padding: 40px;
    }

    .bottom-panels {
        grid-template-columns: 1fr;
    }
}

/* NO UNDERLINE */
.no-underline {
    text-decoration: none;
    color: inherit;
}

/* ========================= */
/* SEO CONTENT + FAQ */
/* ========================= */
.seo-content,
.faq {
    width: 100%;
    padding: 80px 80px 20px;
    position: relative;
    z-index: 2;
}

.seo-content h2,
.faq h2 {
    font-size: 38px;
    font-family: 'Orbitron', sans-serif;
    color: #00ff66;
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(0, 255, 100, 0.35);
    letter-spacing: 1px;
}

.seo-content p,
.faq p {
    color: #bdbdbd;
    font-size: 18px;
    line-height: 1.8;
    max-width: 1000px;
    margin-bottom: 25px;
}

.faq h3 {
    margin-top: 40px;
    margin-bottom: 12px;
    color: white;
    font-size: 22px;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

/* OPTIONAL GLOW LINE */
.seo-content::before,
.faq::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #00ff66;
    box-shadow: 0 0 15px #00ff66;
    margin-bottom: 40px;
}

/* MOBILE */
@media (max-width: 700px) {

    .seo-content,
    .faq {
        padding: 60px 25px 10px;
    }

    .seo-content h2,
    .faq h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .faq h3 {
        font-size: 18px;
    }

    .seo-content p,
    .faq p {
        font-size: 16px;
        line-height: 1.7;
    }
}

/* ========================= */
/* SEO BOXES */
/* ========================= */
.seo-content,
.faq {
    width: 100%;
    padding: 40px 80px;
}

.info-box {
    border: 1px solid rgba(0, 255, 100, 0.18);
    background: rgba(255, 255, 255, 0.02);
    padding: 35px;
    margin-bottom: 25px;
    transition: 0.3s;
}

.info-box:hover {
    border-color: #00ff66;
    box-shadow: 0 0 25px rgba(0, 255, 100, 0.12);
}

.info-box h2 {
    color: #00ff66;
    font-size: 30px;
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
}

.info-box p {
    color: #bdbdbd;
    line-height: 1.8;
    font-size: 17px;
}

/* ========================= */
/* FAQ */
/* ========================= */
.faq h2 {
    color: #00ff66;
    font-size: 38px;
    margin-bottom: 35px;
    font-family: 'Orbitron', sans-serif;
}

.faq-item {
    border: 1px solid rgba(0, 255, 100, 0.18);
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 20px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-item:hover {
    border-color: #00ff66;
    box-shadow: 0 0 20px rgba(0, 255, 100, 0.1);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: white;
    padding: 25px;
    font-size: 18px;
    font-family: 'Orbitron', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question span {
    color: #00ff66;
    font-size: 28px;
    transition: 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.35s ease;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: #bdbdbd;
    line-height: 1.8;
    font-size: 16px;
}

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

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

/* MOBILE */
@media (max-width: 700px) {

    .seo-content,
    .faq {
        padding: 30px 25px;
    }

    .info-box h2,
    .faq h2 {
        font-size: 24px;
    }

    .faq-question {
        font-size: 15px;
        padding: 20px;
    }
}