:root {
    /* Paleta kolorów z obrazka */
    --bg-dark: #020611;
    --bg-card: rgba(18, 24, 43, 0.6);
    --primary: #0066ff;
    --gradient: linear-gradient(90deg, rgba(0, 102, 255, 1) 0%, rgba(0, 212, 255, 1) 100%);
    --cyan: #00ccff;
    --purple: #7000ff;
    --text-main: #ffffff;
    --border-color: rgba(255, 255, 255, 0.08);
    --font-main: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
    position: relative;
    font-size: 18px
}
.container{
    max-width: 1420px
}
blockquote{
    padding: 25px;
    border-radius: 15px;
    background: rgba(255,255,255,0.03); 
    border: 1px solid rgba(255,255,255,0.05);
    color: rgba(229, 229, 229, 0.76)
}
/* --- Tło i Pattern --- */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('pattern12.png');
    /* Pattern z załącznika */
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.15;
    /* Subtelna widoczność patternu */
    z-index: -1;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* Ambient Lights (Niebieskie poświaty) */
.ambient-light {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.25) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -2;
    pointer-events: none;
}

.light-1 {
    top: -200px;
    left: -100px;
}

.light-2 {
    bottom: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(0, 204, 255, 0.15) 0%, transparent 70%);
}

/* --- Nawigacja --- */
.navbar {
    padding-top: 15px;
    padding-bottom: 15px;
    transition: background 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
    background: rgba(2, 6, 17, 0.86);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding-top: 10px;
    padding-bottom: 10px;
}

.nav-logo {
    height: 50px;
    transition: height 0.3s ease
}
.navbar.scrolled .nav-logo {
    height: 40px;
}

/* Desktop Menu Styling */
@media (min-width: 992px) {
    .offcanvas {
        background: transparent !important;
        visibility: visible !important;
        position: static !important;
        transform: none !important;
        width: auto !important;
        height: auto !important;
        border: none !important;
        display: flex !important;
        flex-grow: 1;
        align-items: center;
    }

    .offcanvas-header,
    .offcanvas-backdrop {
        display: none !important;
    }

    .offcanvas-body {
        display: flex !important;
        flex-direction: row !important;
        justify-content: flex-end;
        width: 100%;
        padding: 0 !important;
        overflow: visible !important;
    }

    .navbar-nav {
        margin: 0 auto !important;
        gap: 30px;
    }

    .nav-link {
        color: rgba(255, 255, 255, 0.7) !important;
        font-weight: 500;
        position: relative;
    }

    .nav-link.active,
    .nav-link:hover {
        color: white !important;
    }

    /* Mała kropka pod aktywnym linkiem */
    .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 5px;
        height: 5px;
        background: var(--primary);
        border-radius: 50%;
        box-shadow: 0 0 10px var(--primary);
    }
}

/* Mobile Styling */
@media (max-width: 991px) {
    .navbar-collapse {
        display: none;
        /* Ukrywamy standardowy collapse, używamy offcanvas */
    }
}

/* --- POPRAWKA MENU MOBILNEGO (HAMBURGER) --- */

/* 1. Stylizacja przycisku Hamburgera */
.navbar-toggler:focus {
    box-shadow: none;
    /* Usuwa niebieską poświatę po kliknięciu */
    outline: none;
}

/* 2. Stylizacja panelu bocznego (Offcanvas) tylko na mobile */
@media (max-width: 991px) {
    .offcanvas {
        /* Bardzo ciemne tło z lekkim rozmyciem (Glassmorphism) */
        background: rgba(2, 6, 17, 0.98) !important;
        backdrop-filter: blur(20px);
        width: 85% !important;
        /* Szerokość panelu (nie na cały ekran, żeby było widać tło) */
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        /* Subtelna krawędź */
        height: 100vh
    }

    /* Nagłówek menu (Logo + Krzyżyk) */
    .offcanvas-header {
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Przycisk zamknięcia (Krzyżyk) */
    .btn-close-white {
        filter: invert(1) grayscale(100%) brightness(200%);
        /* Wymuszenie bieli */
        opacity: 0.8;
    }

    /* Wygląd linków w środku */
    .offcanvas-body .navbar-nav {
        margin-top: 40px;
        text-align: center;
        /* Wyśrodkowanie tekstu */
        width: 100%;
    }

    .offcanvas-body .nav-link {
        font-size: 1.2rem;
        /* Duże litery */
        font-weight: 600;
        margin-bottom: 15px;
        color: rgba(255, 255, 255, 0.8) !important;
        transition: color 0.3s ease;
    }

    .offcanvas-body .nav-link:hover,
    .offcanvas-body .nav-link.active {
        color: var(--cyan) !important;
        /* Kolor po najechaniu */
        transform: scale(1.05);
    }

    /* Przycisk w menu mobilnym */
    .offcanvas-body .btn {
        width: 100%;
        padding: 15px;
        margin-top: 20px;
        font-size: 1.1rem;
    }
}

/* --- Glassmorphism & Cards --- */
.glass-panel {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

.glass-badge {
    background: rgba(0, 102, 255, 0.15);
    border: 1px solid rgba(0, 102, 255, 0.3);
    color: var(--cyan);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.75rem;
}

/* --- Typografia & Gradienty --- */
.text-primary-gradient {
    background: linear-gradient(90deg, var(--cyan), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-main {
    background: linear-gradient(90deg, #4da6ff, #0059ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(0, 102, 255, 0.3));
}

.text-gradient-cyan {
    background: linear-gradient(90deg, #00e5ff, #0088ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-purple-gradient {
    background: linear-gradient(90deg, #d000ff, #7000ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Przyciski --- */
.btn {
    border-radius: 10px !important;
    padding: 14px 30px;
    font-size: 15px
}

.btn-primary-glow {
    background: var(--gradient);
    color: white;
    border: none;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.4);
    transition: all 0.3s ease;
}

.btn-primary-glow:hover {
    background: #0052cc;
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.6);
    color: white;
    transform: translateY(-2px);
}

.icon-link i {
    transition: transform 0.3s ease;
}

.icon-link:hover i {
    transform: scale(1.1);
}

/* --- Sekcja Features --- */
.feature-card {
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border-color: rgba(255, 255, 255, 0.2);
}

.icon-square {
    width: 60px;
    height: 60px;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #4da6ff;
}

.icon-cyan {
    background: rgba(0, 204, 255, 0.1);
    border-color: rgba(0, 204, 255, 0.2);
    color: var(--cyan);
}

.icon-purple {
    background: rgba(112, 0, 255, 0.1);
    border-color: rgba(112, 0, 255, 0.2);
    color: #b366ff;
}

/* --- Stats & Overlay --- */
.bg-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 1;
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    background-attachment: fixed !important;
}

/* --- Pricing --- */
.border-gradient {
    position: relative;
    background: rgba(12, 20, 35, 0.8);
    z-index: 1;
}

.border-gradient::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, var(--cyan), var(--primary));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.transform-scale {
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

@media(max-width: 991px) {
    .transform-scale {
        transform: scale(1);
        margin: 20px 0;
    }
}

/* --- Animacje Przejścia (Reveal) --- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Footer --- */
.hover-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

footer {
    background: rgba(12, 18, 30, 0.46);
}

/* --- Inne detale --- */
.tracking-wider {
    letter-spacing: 0.1em;
}

.hero-image-wrapper {
    position: relative;
}

.floating-ui {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: rgba(12, 18, 30, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
    border-radius: 12px;
}

.floating-ui-right {
    position: absolute;
    top: 10px;
    right: -30px;
    background: rgba(12, 18, 30, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
    border-radius: 12px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

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

/* --- Poprawka Sekcji Hero --- */
.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-section .bg {
    background: rgba(12, 18, 30, 0.85);
    position: absolute;
    width: 100%;
    height: 85vh;
    z-index: -999;
    opacity: .5
}

.hero-section .bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0, 102, 255, 0.77) 0%, rgba(0, 102, 255, 0.3) 50%);
    border-radius: 100%;
    z-index: 0;
    box-shadow: 0px 0px 250px rgba(0, 102, 255, 0.70);

}

/* --- Style dla sekcji Kroki (Steps) --- */
.step-icon-wrapper {
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.step-card:hover .step-icon-wrapper {
    transform: scale(1.1);
    border-color: var(--primary);
    background: rgba(0, 102, 255, 0.1);
}

.text-success {
    color: var(--cyan) !important;
}

.gradient {
    background-image: linear-gradient(90deg, rgba(0, 102, 255, 1) 0%, rgba(0, 212, 255, 1) 100%) !important;
    color: transparent;
    background-clip: text;
}

/* --- Sekcja Only Benefits (Korzyści) --- */

/* Tło z ukośnymi paskami (jak w załączniku, ale subtelniejsze) */
.bg-striped-dark {
    background-color: rgba(5, 10, 20, 0.6);
    background-image: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.03) 0px,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px,
            transparent 10px);
}

/* Styl ikonek (Outline z gradientem) */
.benefit-icon {
    font-size: 2.5rem;
    min-width: 50px;
    /* Gradient na samym obrysie ikony (trik CSS) */
    background: linear-gradient(135deg, var(--cyan), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    /* Opcjonalnie: Cień pod ikoną dla efektu głębi */
    filter: drop-shadow(0 0 10px rgba(0, 102, 255, 0.3));

    transition: transform 0.3s ease;
}

.benefit-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Dopasowanie obrazka na mobile */
@media (max-width: 991px) {
    .bg-striped-dark {
        padding: 30px !important;
    }
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgb(0, 102, 255) 0%, rgba(0, 102, 255, 0.29) 50%);
    border-radius: 100%;
    z-index: 0;
    box-shadow: 0 0 300px rgba(0, 102, 255, 0.76);
}

@media (max-width: 768px) {
    .glow-effect {
        display: none !important
    }
}

/* --- Sekcja Enjoy CTA (Przycisk Play) --- */

/* Kontener przycisku Play (Glassmorphism) */
.play-button-overlay {
    width: 90px;
    height: 90px;
    /* Półprzezroczyste szkło */
    background: rgba(0, 102, 255, 0.3);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
    /* Animacja pulsowania */
    animation: pulse-blue 2s infinite;
}

/* Efekt hover na przycisku */
.play-button-overlay:hover {
    /* Powiększenie i zmiana koloru na główny niebieski */
    background: var(--gradient);
    border-color: var(--primary);
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.6);
}

/* Definicja animacji pulsowania (niebieska fala) */
@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.7);
    }

    70% {
        /* Rozszerzanie cienia i zanikanie */
        box-shadow: 0 0 0 25px rgba(0, 102, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0);
    }
}

/* Subtelny efekt 3D na kontenerze obrazka przy najechaniu */
.col-lg-6:hover .position-relative.rounded-4 {
    transform: perspective(1000px) rotateY(0deg) scale(1.02) !important;
}

.icon-small {
    font-size: 40px
}

.mr-5 {
    padding-right: 5px
}

.paypal {
    max-height: 30px;
    margin-bottom: 15px
}

.revolut {
    max-height: 20px;
    margin-bottom: 15px
}

.przelew {
    max-height: 45px;
    margin-bottom: 15px
}


/* --- Sekcja Kanały (Channels Tabs) --- */

/* Wrapper dla scrollowania zakładek na mobile */
.channel-tabs-wrapper .nav-pills {
    gap: 10px;
    padding-bottom: 5px;
    /* miejsce na cień */
}

/* Ukrywanie scrollbara dla estetyki */
.channel-tabs-wrapper .nav-pills::-webkit-scrollbar {
    height: 4px;
}

.channel-tabs-wrapper .nav-pills::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.channel-tabs-wrapper .nav-pills::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

/* Styl pojedynczej zakładki */
.channel-tabs-wrapper .nav-link {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 30px;
    white-space: nowrap;
    /* Zapobiega łamaniu tekstu */
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.channel-tabs-wrapper .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.channel-tabs-wrapper .nav-link.active {
    background: linear-gradient(90deg, var(--primary), var(--cyan));
    color: white;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.4);
}

/* Siatka Logo (Grid) */
.logo-grid {
    display: grid;
    /* Automatyczne dopasowanie kolumn, min 100px szerokości */
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 20px;
    justify-items: center;
    align-items: center;
}

/* Pojedynczy element logo */
.channel-item {
    width: 100%;
    height: 80px;
    /* Stała wysokość kafelka */
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

/* Styl obrazka w środku */
.channel-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0%) opacity(1);
    /* Domyślnie szare */
    transition: all 0.4s ease;
}

/* Efekt Hover */
.channel-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.channel-item:hover img {
    filter: grayscale(10%) opacity(.9);
    /* Pełny kolor po najechaniu */
    transform: scale(1.1);
}

/* --- Style formularza w Modalu --- */

/* Inputy typu Glass */
.glass-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white !important;
    border-radius: 8px;
    padding: 12px;
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.2);
    color: white;
}

/* Kolor placeholderów */
.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Select option fix (opcje muszą mieć tło, bo inaczej będą przezroczyste na białym tle przeglądarki) */
.glass-input option {
    background: #020611;
    color: white;
}

/* Animacja pojawiania się sekcji MAC/Instrukcja */
.fade-in-section {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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


/* --- FAQ Accordion Custom Dark Styles --- */

.accordion-button::after {
    filter: invert(1);
    /* Zmienia kolor strzałki na biały */
    opacity: 0.5;
}

.accordion-button:not(.collapsed) {
    color: var(--cyan) !important;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
}


.accordion-item {
    background: transparent;
    border: none;
    margin-bottom: 15px;
}

.accordion-button {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px !important;
    box-shadow: none !important;
    padding: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: rgba(0, 102, 255, 0.15);
    /* Aktywny kolor */
    color: white;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.2) !important;
}

/* Ikona strzałki */
.accordion-button::after {
    filter: invert(1);
}

.accordion-collapse {
    background: transparent;
    border: none;
}

.accordion-body {
    padding: 25px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(2, 6, 17, 0.5);
    border-radius: 0 0 12px 12px;
    margin-top: 10px;
    padding-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: none;
}

.display-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.item {
    box-sizing: border-box;
    flex: 1 0 100%;
}

/* --- TABLET (np. od 768px) --- */
@media (min-width: 768px) {
    .item {
        flex: 1 0 calc(50% - 10px);
    }
}

/* --- DESKTOP (np. od 1024px) --- */
@media (min-width: 1024px) {
    .item {
        /* Baza ~25% (czyli 4 kolumny) minus poprawka na odstępy */
        /* Wzór: (100% - (3 * gap)) / 4 */
        flex: 1 0 calc(25% - 15px);
    }
}

@media (max-width: 1100px) {
    .hero-section {
        padding-top: 100px;
        text-align: center;
    }
    .floating-ui {
        display: none !important
    }

    .floating-ui-right {
        display: none !important
    }

    .logo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 10px;
    }

    /* Pojedynczy element logo */
    .channel-item {
        height: 60px;
        padding: 10px;

    }
}

.main-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.sidebar-menu {
    background: rgba(21, 26, 35, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px;
    height: 100%;
}

.menu-link {
    display: flex;
    align-items: center;
    padding: 18px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    border-radius: 12px;
    transition: 0.3s;
    margin-bottom: 8px;
    border: 1px solid transparent;
}

.menu-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-color: rgba(255, 255, 255, 0.1);
}

.menu-link.active {
    background: var(--primary);
    /* Używa koloru z root */
    background: linear-gradient(135deg, var(--primary) 0%, #00ccff 100%);
    color: white;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
    font-weight: 600;
}

.menu-link i {
    font-size: 1.6rem;
    margin-right: 15px;
}

.content-area {
    background: rgba(21, 26, 35, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
    min-height: 600px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Stylizacja treści */
.content-area img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-area h1,
.content-area h2 {
    color: white;
    margin-top: 30px;
    font-weight: 700;
}

.content-area h3,
.content-area h4 {
    color: white;
    margin-top: 20px;
    font-weight: 600;
}

.content-area p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.05rem;
}

.content-area ul,
.content-area ol {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.content-area a {
    color: #00ccff;
}

.back-btn-container {
    margin-top: 40px;
    text-align: center;
}

.btn-back {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-back:hover {
    border-color: white;
    color: white;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

@media (max-width: 768px) {

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

    .hero-section .d-flex.gap-3 {
        justify-content: center;
    }

    .hero-section .mt-5.d-flex {
        justify-content: center;
        flex-wrap: wrap;
    }

    .section-spacing {
        padding: 20px 0px !important
    }

    #features .p-5 {
        padding: 25px !important
    }

    #steps .p-4 {
        padding: 0px !important
    }
    .content-area, .sidebar-menu{
        padding: 20px
    }
    .menu-link {
        padding: 10px;
        font-size: 16px;
        margin-bottom: 4px;

    }
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;

    /* Oficjalny zielony kolor marki */
    background-color: #25D366; 

    width: 60px;
    height: 60px;
    border-radius: 50%;

    /* Centrowanie ikony wewnątrz kółka */
    display: flex;
    align-items: center;
    justify-content: center;

    /* Cień i animacja */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Dostosowanie rozmiaru samej ikony SVG wewnątrz */
.whatsapp-btn svg {
    width: 35px;
    height: 35px;
    fill: #ffffff; /* Biały kolor ikony */
    vertical-align: middle;
}

/* Efekt najechania myszką */
.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #1DA851; /* Ciemniejszy zielony przy hover */
    box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.3);
}

/* Opcjonalnie: Delikatna pulsacja, żeby zwrócić uwagę */
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-btn {
    animation: pulse-green 2s infinite;
}

.form-check-input {
    --bs-form-check-bg: rgba(255,255,255,0.03);
    border: var(--bs-border-width) solid var(--border-color);

}