--- START OF FILE styles.css ---

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    min-height: 100vh;
    background: url('gradient.png') no-repeat center center fixed;
    background-size: 100% 100%;
    color: #fff;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(20, 20, 20, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.nav-group {
    display: flex;
    align-items: center;
}

.versal-logo {
    height: 50px;
    width: auto;
    margin-right: 15px;
}

.nav-separator {
    width: 2px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
    margin-right: 15px;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-left a {
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-left a:hover {
    color: #ddd;
}

.nav-left a.active {
    color: #1abc9c;
    font-weight: 700;
}

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

.nav-right i {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-right i:hover {
    color: #ddd;
}

.landing {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 50px;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.text-content {
    flex: 1;
    margin-left: -100px;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tagline {
    display: inline-block;
    background: linear-gradient(90deg, #1abc9c, #5776A4, #A4D1FF);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

h1 {
    font-size: 48px;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
}

h1::after {
    content: "~~~";
    position: absolute;
    bottom: -10px;
    left: 0;
    color: #1abc9c;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
}

.subtitle {
    font-size: 18px;
    color: #a2d2ff;
    margin-bottom: 20px;
    line-height: 1.5;
}

.buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn {
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.btn:first-child {
    background-color: #1abc9c;
    color: #fff;
}

.btn:last-child {
    background-color: #333;
    color: #fff;
}

.btn i {
    font-size: 18px;
}

.btn:hover {
    opacity: 0.9;
}

.scroll-down-arrow {
    margin-top: 80px;
    align-self: center;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-down-arrow i {
    font-size: 60px;
    color: #fff;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.scroll-down-arrow:hover i {
    transform: translateY(10px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}

.image-slider {
    flex: 0 0 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slider-stack {
    position: relative;
    width: 100%;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide {
    position: absolute;
    width: 350px;
    height: 450px;
    transition: transform 0.5s ease, opacity 0.5s ease;
    border-radius: 10px;
    background: #1d3557;
}

.slide[data-position="left"] {
    transform: translateX(-175px) rotate(-10deg);
    opacity: 0.5;
    z-index: 1;
}

.slide[data-position="center"] {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
    z-index: 10;
}

.slide[data-position="right"] {
    transform: translateX(175px) rotate(10deg);
    opacity: 0.5;
    z-index: 1;
}

.slide.active {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
    z-index: 10;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.slide-description {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.slider-controls {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.arrow {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: background 0.3s ease;
}

.arrow:hover {
    background: rgba(255, 255, 255, 0.2);
}

.stats {
    padding: 70px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    width: 100%;
    max-width: 1200px;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-number {
    display: block;
    font-size: 64px;
    font-weight: 700;
    color: #1abc9c;
    margin-bottom: 15px;
}

.stat-text {
    font-size: 24px;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
}

.stat-text.animate {
    animation: fadeInUp 1s ease forwards;
}

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

.separator {
    width: 3px;
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
}

.products {
    padding: 70px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.products-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.products-container h2 {
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
}

.products-container h2::after {
    content: "~~~";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: #1abc9c;
    font-size: 24px;
}

.product-tiles {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.product-tile {
    width: 300px;
    height: 400px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.product-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.product-info h3 {
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-desc {
    font-size: 14px;
    color: #a2d2ff;
    text-align: left;
    flex: 1;
}

.product-price {
    background: #1abc9c;
    color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    margin-left: 10px;
}

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

.show-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #1abc9c, #5776A4);
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.show-all-btn i {
    margin-right: 12px;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.show-all-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(26, 188, 156, 0.6);
    background: linear-gradient(135deg, #16a085, #45668e);
}

.show-all-btn:hover i {
    transform: scale(1.2);
}

.show-all-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.show-all-btn:hover::before {
    width: 200%;
    height: 200%;
}

.show-all-btn span,
.show-all-btn i {
    position: relative;
    z-index: 1;
}

.about {
    padding: 70px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.about-container h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
}

.about-container h2::after {
    content: "~~~";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: #1abc9c;
    font-size: 24px;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
    text-align: left;
}

.about-text p {
    font-size: 22px;
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0;
}

.about-text .highlight {
    font-weight: 700;
    background: linear-gradient(90deg, #1abc9c, #5776A4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.code-animation {
    flex: 1;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    text-align: left;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 550px;
    height: 310px; /* Zwiększona wysokość, aby zmieścić cały tekst */
    overflow: hidden;
}

.topo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('topo.png') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
    border-radius: 10px;
    pointer-events: none;
    z-index: 1;
}

.code-animation pre {
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px; /* Zmniejszony rozmiar z 16px na 14px */
    white-space: pre-wrap;
    position: relative;
    z-index: 2;
    line-height: 1.5; /* Zmniejszona wysokość linii z 1.6 na 1.5 */
    padding-top: 0;
}

.code-animation pre::after {
    content: "|";
    color: #1abc9c;
    position: absolute;
    animation: blink-caret 0.75s step-end infinite;
}

.code-animation .keyword {
    color: #5776A4;
}

.code-animation .identifier {
    color: #5776A4;
}

.code-animation .comment {
    color: #5776A4;
}

.code-animation .string {
    color: #A4D1FF;
}

.code-animation .default {
    color: #FFFFFF;
}

@keyframes blink-caret {
    50% {
        opacity: 0;
    }
}

.contacts {
    padding: 70px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contacts-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contacts-container h2 {
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
}

.contacts-container h2::after {
    content: "~~~";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: #1abc9c;
    font-size: 24px;
}

.contacts-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-card {
    width: 300px;
    padding: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 3;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    font-size: 40px;
    color: #1abc9c;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.contact-card:hover .contact-icon {
    transform: scale(1.2);
}

.contact-card h3 {
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 16px;
    color: #a2d2ff;
    margin-bottom: 15px;
}

.contact-link {
    font-size: 18px;
    color: #FFFFFF;
    text-decoration: none;
    background: linear-gradient(90deg, #5776A4, #A4D1FF);
    -webkit-background-clip: text;
    background-clip: text;
    transition: opacity 0.3s ease;
    display: inline-block;
    position: relative;
    z-index: 4;
}

.contact-link:hover {
    opacity: 0.8;
}

.contacts-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    z-index: 1;
}

.orbit {
    position: relative;
    width: 100%;
    height: 100%;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(26, 188, 156, 0.3);
    animation: orbit 6s infinite linear;
}

.circle:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.circle:nth-child(2) {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -2s;
}

.circle:nth-child(3) {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -4s;
}

@keyframes orbit {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.faq {
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.faq-container h2 {
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
}

.faq-container h2::after {
    content: "~~~";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: #1abc9c;
    font-size: 24px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 15px 0;
    padding: 20px;
    text-align: left;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.faq-item input {
    display: none;
}

.faq-item label {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    display: block;
    position: relative;
    padding-right: 30px;
}

.faq-item label::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.faq-item input:checked + label::after {
    transform: translateY(-50%) rotate(180deg);
}

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

.faq-item input:checked ~ .faq-answer {
    max-height: 100px;
}

.faq-answer p {
    font-size: 16px;
    color: #a2d2ff;
    line-height: 1.5;
    margin-top: 10px;
}

.footer {
    padding: 40px 0;
    background: linear-gradient(90deg, rgba(26, 26, 26, 0.8), rgba(87, 118, 164, 0.2));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 0 20px;
    background: transparent;
    border-radius: 0;
}

.footer-left,
.footer-column {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.footer-versal {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer-left p {
    font-size: 16px;
    color: #a2d2ff;
    margin-bottom: 15px;
    line-height: 1.5;
}

.payment-icons {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.payment-icon {
    font-size: 24px;
    color: #5776A4;
    transition: color 0.3s ease;
}

.payment-icon:hover {
    color: #A4D1FF;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #a2d2ff;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #a2d2ff;
}

.forum-floaters {
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(26, 188, 156, 0.08) 0%, rgba(87, 118, 164, 0.04) 60%, transparent 100%);
}

.forum-floaters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(26, 188, 156, 0.06) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 0;
    pointer-events: none;
}

.forum-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.forum-container h2 {
    font-size: 42px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    text-transform: uppercase;
    background: linear-gradient(90deg, #1abc9c, #5776A4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.forum-container h2::after {
    content: "~~~";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    color: #1abc9c;
    font-size: 28px;
}

.forum-subtitle {
    font-size: 20px;
    color: #a2d2ff;
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.floaters-wrapper {
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    height: 300px;
}

.floater {
    width: 220px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: float 4s infinite ease-in-out; /* Default float animation */
}

/* Specific delays for each floater */
.floater:nth-child(1) { animation-delay: 0s; animation-duration: 4.5s; }
.floater:nth-child(2) { animation-delay: -1.5s; animation-duration: 3.8s; }
.floater:nth-child(3) { animation-delay: -0.5s; animation-duration: 4.2s; }
.floater:nth-child(4) { animation-delay: -2.5s; animation-duration: 5.0s; }


.floater-icon {
    font-size: 28px;
    color: #1abc9c;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.floater h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 600;
    background: linear-gradient(90deg, #1abc9c, #5776A4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.floater p {
    font-size: 15px;
    color: #a2d2ff;
    margin-bottom: 12px;
    line-height: 1.5;
}

.floater-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 6px 14px;
    background: linear-gradient(90deg, #1abc9c, #5776A4);
    border-radius: 25px;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(26, 188, 156, 0.3);
}

.floater-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
    background: linear-gradient(90deg, #16a085, #45668e);
}

.floater:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.floater:hover .floater-icon {
    transform: scale(1.2);
}

.forum-btn {
    margin-top: 40px;
    background: linear-gradient(135deg, #1abc9c, #5776A4);
    padding: 14px 28px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    border: none;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.4);
    z-index: 3;
    position: relative;
    text-decoration: none;
}

.forum-btn i {
    font-size: 20px;
}

.forum-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(26, 188, 156, 0.6);
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 15px 20px;
    }

    .nav-group {
        flex-direction: column;
        align-items: center;
    }

    .versal-logo {
        height: 40px;
        margin-bottom: 10px;
    }

    .nav-separator {
        width: 40px;
        height: 2px;
        margin-bottom: 10px;
    }

    .nav-left {
        margin-bottom: 10px;
    }

    .nav-right {
        gap: 15px;
    }

    .content {
        max-width: 100%;
        padding: 0 20px;
        flex-direction: column;
        align-items: center;
    }

    .text-content {
        margin-left: 0;
        margin-bottom: 30px;
        max-width: 100%;
        align-items: center;
    }

    .tagline {
        text-align: center;
    }

    h1 {
        font-size: 36px;
        text-align: center;
    }

    h1::after {
        display: none;
    }

    .subtitle {
        font-size: 16px;
        text-align: center;
    }

    .buttons {
        justify-content: center;
        margin-top: 30px;
    }

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

    .scroll-down-arrow {
        margin-top: 50px;
        align-self: center;
    }

    .scroll-down-arrow i {
        font-size: 40px;
        color: #fff;
    }

    .image-slider {
        width: 100%;
    }

    .slider-stack {
        width: 100%;
        height: 350px;
    }

    .slide {
        width: 250px;
        height: 300px;
    }

    .slide[data-position="left"] {
        transform: translateX(-125px) rotate(-10deg);
    }

    .slide[data-position="right"] {
        transform: translateX(125px) rotate(10deg);
    }

    .stats {
        padding: 40px 0;
    }

    .stats-container {
        flex-direction: column;
        gap: 40px;
    }

    .stat-number {
        font-size: 48px;
    }

    .stat-text {
        font-size: 18px;
    }

    .separator {
        width: 80px;
        height: 3px;
    }

    .products-container h2 {
        font-size: 28px;
    }

    .product-tile {
        width: 250px;
        height: 350px;
    }

    .product-info h3 {
        font-size: 20px;
    }

    .product-desc {
        font-size: 12px;
    }

    .product-price {
        font-size: 14px;
        padding: 6px 10px;
    }

    .show-all-btn {
        padding: 12px 20px;
        font-size: 16px;
    }

    .about-container h2 {
        font-size: 28px;
    }

    .about-content {
        flex-direction: column;
        gap: 20px;
    }

    .about-text {
        text-align: center;
    }

    .about-text p {
        font-size: 18px;
    }

    .code-animation {
        max-width: 100%;
        height: 300px; /* Bez zmian, wydaje się OK dla mobilnych */
    }

    .code-animation pre {
        font-size: 13px; /* Zmniejszony rozmiar z 14px na 13px dla mobilnych */
        line-height: 1.4; /* Dostosowana wysokość linii */
    }

    .contacts-container h2 {
        font-size: 28px;
    }

    .contacts-grid {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        width: 100%;
        max-width: 300px;
    }

    .contacts-animation {
        width: 300px;
        height: 300px;
    }

    .circle:nth-child(1) {
        width: 100px;
        height: 100px;
    }

    .circle:nth-child(2) {
        width: 150px;
        height: 150px;
    }

    .circle:nth-child(3) {
        width: 200px;
        height: 200px;
    }

    .faq-container h2 {
        font-size: 28px;
    }

    .faq-item label {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .footer {
        padding: 20px 0;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-left {
        margin-bottom: 20px;
        padding-left: 0;
    }

    .footer-versal {
        font-size: 20px;
    }

    .footer-left p {
        font-size: 14px;
    }

    .payment-icons {
        justify-content: center;
    }

    .payment-icon {
        font-size: 20px;
    }

    .footer-column {
        width: 100%;
    }

    .footer-column h3 {
        font-size: 16px;
    }

    .footer-column a {
        font-size: 14px;
    }

    .forum-floaters {
        padding: 60px 0;
    }

    .forum-container h2 {
        font-size: 32px;
    }

    .forum-container h2::after {
        font-size: 22px;
    }

    .forum-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .floaters-wrapper {
        flex-wrap: wrap;
        gap: 30px;
        height: auto;
    }

    .floater {
        width: 200px;
        height: 180px;
        padding: 15px;
    }

    .floater-icon {
        font-size: 24px;
    }

    .floater h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .floater p {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .floater-link {
        font-size: 12px;
        padding: 5px 12px;
    }

    .forum-btn {
        padding: 12px 20px;
        font-size: 16px;
    }

    .forum-btn i {
        font-size: 18px;
    }
}

--- END OF FILE styles.css ---