<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
    font-family: 'Source Code Pro';
    src: url('../fonts/SourceCodePro-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Quicksand';
    src: url('../fonts/Quicksand-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    background: linear-gradient(45deg, #000000, #0a0015, #0b0015);
    background-size: 300% 600%;
    animation: color 12s ease-in-out infinite;
    margin: 0;
    padding: 0;
    height: 100%;
}


#pricing,
#desc,
#site-previews {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 30vh;
    padding: 20px;
}

/* Kafelki cenowe */

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

@keyframes underlineExpand {
    0% {
        width: 0;
        left: 0;
    }
    100% {
        width: 100%;
        left: 0;
    }
}

#pricing-info {
    text-align: center;
    padding: 3% 0;
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    animation: fadeIn 1s ease-out;
}

#pricing-info h2 {
    display: inline-block;
    position: relative;
    font-size: 36px;
    font-weight: bold;
    overflow: hidden;
}

#pricing-info h2::after {
    content: "";
    position: absolute;
    bottom: -5px;
    height: 4px;
    background-color: #ffffff;
    width: 0;
    left: 0; 
    animation: underlineExpand 1.5s ease-out forwards;
    border: 1px solid #dd00ff;
    border-radius: 25px;
}



#pricing-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    max-width: 1200px;
    width: 100%;
}

.pricing-box {
    padding: 55px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(11.6px);
    -webkit-backdrop-filter: blur(11.6px);
    transition: transform 0.7s ease;
    width: 390px;
}

.pricing-box:hover {
    transform: translateY(-10px);
}

.pricing-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(45deg, #dd00ff, #1c0020);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-name {
    font-size: 28px;
    color: white;
    margin-bottom: 10px;
    font-weight: 600;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #dd00ff;
    margin-bottom: 15px;
}

.price span {
    font-size: 24px;
    color: white;
}

.features {
    list-style: none;
    margin-bottom: 40px;
}

.features h3 {
    text-align: center;
    font-size: 25px;
}

.features li {
    padding: 12px 0;
    color: #666;
    color: white;
    border-bottom: 1px solid #666;
    text-align: center;
}

.features li:last-child {
    border-bottom: none;
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #dd00ff, #1c0020);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

#business-btn {
    margin-top: -20px;
}

.pricing-cta:hover {
    transform: scale(1.05);
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Okna opisowe */

#desc {
    gap: 110px;
    font-size: 13px;
    margin-top: 3%;
}

#info-left,
#info-right {
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
    height: 400px;
    margin-bottom: 50px;
    transition: transform 0.7s ease;
    overflow: hidden;
}

#info-right:hover {
    transform: translateY(-10px);
}

#info-left:hover {
    transform: translateY(-10px);
}

#info-left h3,
#info-right h3 {
    text-align: center;
    font-size: 28px;
    color: #dd00ff;
}

#info-left ul,
#info-right ul {
    list-style: none;
    padding: 0;
    font-size: 18px;
}

#info-left li,
#info-right li {
    padding: 8px 0;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

#info-left li:last-child,
#info-right li:last-child {
    border-bottom: none;
}

/* Przyklady stron */

.site-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.previews {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 25px;
}

.previews-info {
    display: flex;
    width: 70%;
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(11.6px);
    -webkit-backdrop-filter: blur(11.6px);
    padding: 15px;
    margin: 3% 0;
}

.description {
    padding: 10px 35px;
}

.description h2 {
    text-align: center;
    font-size: 28px;
    color: #dd00ff;
    padding: 15px 0;
}

.description p {
    font-size: 18px;
}

.list {
    list-style: none;
    font-size: 18px;
    text-align: left;
    align-items: center;
}

.list li {
    padding: 5px 0;
}

.list-content {
    display: flex;
}

i.fa-solid.fa-plus,
i.fa-solid.fa-circle-dot {
    font-size: 20px;
    padding: 0 20px;
    font-weight: 200;
}

/* Efekt hover dla obrazkĂłw */
.previews a {
    position: relative;
    display: inline-block;
    padding: 10px;
}

.previews img {
    transition: transform 0.7s ease-in-out;
    display: block;
    height: 280px;
    width: 560px;
    border-radius: 2rem;

}

.previews a:hover img {
    transform: scale(1.03);
}

/* NakĹadka z ikonÄ */
.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(221, 0, 255, 0.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Pokazanie ikony po najechaniu */
.previews a:hover .overlay {
    opacity: 1;
}

/* Styl dla ikony */
.overlay i {
    color: white;
    font-size: 24px;
}

/* RESPONSYWKA */

@media(max-width: 1180px){
    #container-services{
        width: auto;
    }
    #pricing-info{
        width: auto;
        font-size: 28px;
    }
    #desc{
        flex-direction: column;
        gap: 0px;
    }
    #info-left{
        padding-bottom: 0px;
        margin-bottom: 25px;
        
    }
    #info-right{
        padding-bottom: 0px;
        height: auto;
    }
}

@media(max-width: 480px){
    #info-left h3, #info-right h3{
        font-size: 28px;
    }

    #info-left li, #info-right li{
        font-size: 16px;
    }

    #info-left, #info-right {
        height: auto;
    }
}

@media (max-width: 1180px) {
    .previews {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .previews a {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .previews img {
        width: 90%;
        height: auto;
        border-radius: 1.5rem;
    }

    .previews-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .description {
        padding: 20px;
        width: 100%;
    }
}

@media (max-width: 1305px) {
    #pricing-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }   
    
    #pricing {
        justify-content: center;
        display: flex;
    }

    .pricing-box {
        margin: 10px;
        height: auto;
        padding: 30px;
    }


    .site-preview {
        display: flex;
        justify-content: center;
    }

    .previews-info {
        flex-direction: column;
        justify-content: center;
    }

    .description h2{
        font-size: 28px;
    }

    .description p{
        font-size: 16px;
    }

    .list-content li {
        font-size: 16px;
    }

    .previews {
        justify-items: center;
    }
}</pre></body></html>