/* ============================================
   SEKCJE SPECJALNE (HERO, KONTAKT, PARTNERZY)
   ============================================ */
.hero {
    padding: 12rem 5% 8rem;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
}

.hero-content {
    flex: 1.2;
    text-align: left;
}

.hero-image {
    flex: 0.8;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 50px var(--glow-purple));
    animation: float 4s ease-in-out infinite;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #fff, var(--light-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.3;
    /* Zwiększono z 1.2 na 1.3, aby nie ucinało liter jak 'g' */
    padding-bottom: 0.2em;
    /* Dodatkowy margines dolny dla bezpieczeństwa 'background-clip' */
    font-weight: 800;
    text-align: left;
}

.hero p {
    font-size: 1.4rem;
    color: var(--text-gray);
    margin: 0 0 3rem 0;
    line-height: 1.8;
    text-align: left;
}

/* Układ Hero z tytułem po lewej i opisem po prawej */
.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: left;
}

.hero-split .hero-title {
    flex: 1;
}

.hero-split .hero-desc {
    flex: 1;
    padding-left: 5%;
    /* Przesunięcie opisu lekko w prawo */
    border-left: 1px solid rgba(123, 63, 228, 0.2);
    /* Opcjonalna linia oddzielająca dla lepszego efektu */
    padding-top: 1rem;
}

.hero-split h1 {
    margin-bottom: 0;
}

.hero-split p {
    margin-bottom: 0;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

@media (max-width: 1024px) {
    .hero {
        padding-top: 10rem;
    }

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 3rem;
    }

    .hero-content,
    .hero h1,
    .hero p {
        text-align: center;
    }

    .hero-image {
        justify-content: center;
    }

    .hero-image img {
        max-width: 280px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-split {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-split .hero-desc {
        padding-left: 0;
        border-left: none;
        padding-top: 0;
    }
}

.server-ip {
    background: rgba(123, 63, 228, 0.1);
    border: 1px solid var(--accent-purple);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 0 20px var(--glow-purple);
}

.server-ip:hover {
    background: var(--accent-purple);
    box-shadow: 0 0 30px var(--accent-purple);
    transform: scale(1.05);
}

/* KONTAKT */
.contact-section {
    padding: 10rem 5%;
    text-align: center;
}

.contact-simple {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(20, 20, 29, 0.6);
    padding: 4rem;
    border-radius: 25px;
    border: 1px solid rgba(123, 63, 228, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.4s;
}

.contact-simple:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 20px 60px rgba(123, 63, 228, 0.15);
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: all 0.3s;
}

.contact-item:hover {
    background: rgba(123, 63, 228, 0.1);
    transform: translateX(10px);
}

.contact-item i {
    font-size: 2rem;
    color: var(--accent-lavender);
}

.contact-details {
    text-align: left;
}

.contact-label {
    display: block;
    font-size: 0.9rem;
    color: var(--accent-lavender);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.contact-value {
    font-size: 1.2rem;
    color: white;
    font-weight: 500;
    text-decoration: none;
}

/* CENNIK I STATYSTYKI - UNIFIKACJA */
.pricing-section,
.stats-section {
    padding: 10rem 5%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header span {
    color: var(--accent-lavender);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 3rem;
    color: white;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* PARTNERZY */
.partners-section {
    padding: 8rem 5%;
    background: rgba(0, 0, 0, 0.2);
}