@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jura:wght@300..700&display=swap');
*{
    padding: 0;
    margin: 0;
    outline: none;
    border: none;
    box-sizing: border-box;
}

.nav-logo img,
.site-footer__brand img {
    width: auto;
    max-width: 65px;
    height: auto;
    display: block;
}

.site-footer__social img {
    width: 26px;
    height: 26px;
    display: block;
    object-fit: contain;
}

a{
    text-decoration: none;
}

body{
    font-family: 'Poppins', sans-serif;
}

.container{
    max-width: 1200px;
    margin: auto;
    padding: 5rem 2rem;
}

.blur{
    position: absolute;
    box-shadow: 0 0 1000px 50px #CC1C39;
    z-index: -100;
}

header{
    position: relative;
    padding-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem;
}

header .content h4{
    margin-bottom: 1rem;
    color: #ccc;
    font-size: 1rem;
    font-weight: 600;
}

header .content h1{
    color: #fff;
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 700;
    line-height: 4rem;
}

header .content h1 span{
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #fff;
}

header .content p{
    margin-bottom: 2rem;
    color: #ccc;
}

header .image{
    position: relative;
}

header .image::before{
    content: "o";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 38rem;
    font-weight: 400;
    line-height: 20rem;
    color: #CC1C39;
    opacity: 0.2;
    z-index: -100;
}

header .image img{
    max-width: 600px;
    margin: auto;
}

section .header{
    margin-bottom: 1rem;
    color: #fff;
    text-align: center;
    font-size: 2.25rem;
    font-weight: 600;
}

.features{
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.features .card{
    background-color: #27272a;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.features .card:hover{
    background-color: #323232;
    border-color: #fff;
    transform: scale(1.05);
}

.features .card span{
    display: inline-block;
    background-color: #A51935;
    padding: 2px 9px;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    color: #fff;
    border-radius: 5px;
}

.features .card h4{
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
}

.features .card p{
    color: #ccc;
    margin-bottom: 1rem;
}

.features .card a{
    color: #fff;
    transition: all 0.3s ease;
}

.features .card a:hover{
    color: #A51935;
}

.sub-header{
    max-width: 600px;
    margin: auto;
    text-align: center;
    color: #ccc;
}

.pricing{
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing .card{
    padding: 1.5rem;
    background-color: #222327;              
    display: flex;
    flex-direction: column;
    border: 1px solid #363a40;              
    border-radius: 16px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
    animation: pricing-card-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
.pricing .card:nth-child(1) { animation-delay: 0.04s; }
.pricing .card:nth-child(2) { animation-delay: 0.08s; }
.pricing .card:nth-child(3) { animation-delay: 0.12s; }
.pricing .card:nth-child(4) { animation-delay: 0.16s; }
.pricing .card:nth-child(5) { animation-delay: 0.20s; }
.pricing .card:nth-child(6) { animation-delay: 0.24s; }
.pricing .card:nth-child(n+7) { animation-delay: 0.28s; }
@keyframes pricing-card-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.pricing .card:hover{
    transform: translateY(-3px);
    border-color: #a0a3a7;
    box-shadow: 0 10px 28px rgba(0,0,0,.35);
}

.pricing .card .content{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.pricing .card h4{
    margin: 0 0 .25rem 0;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: .2px;
}

.pricing .card .card-media {
    position: relative;
    margin: 0.5rem 0 0.75rem 0;
    padding: 0.7rem;
    border-radius: 16px;
    cursor: zoom-in;
    background:
        linear-gradient(155deg, #32343c 0%, #23252b 42%, #18191e 100%);
    box-shadow:
        0 6px 22px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        inset 0 -1px 0 rgba(0, 0, 0, 0.25);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    isolation: isolate;
}
.pricing .card .card-media::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(
        135deg,
        rgba(204, 28, 57, 0.85) 0%,
        rgba(255, 255, 255, 0.1) 38%,
        rgba(204, 28, 57, 0.25) 62%,
        rgba(165, 25, 53, 0.75) 100%
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    opacity: 0.9;
    transition: opacity 0.28s ease;
}
.pricing .card .card-media::after {
    content: "";
    position: absolute;
    inset: 0.7rem;
    border-radius: 11px;
    background-image:
        radial-gradient(rgba(204, 28, 57, 0.22) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 14px 14px, 22px 22px, 22px 22px;
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
}
.pricing .card:hover .card-media {
    transform: translateY(-2px);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.38),
        0 0 0 1px rgba(204, 28, 57, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.09);
}
.pricing .card:hover .card-media::before {
    opacity: 1;
}
.pricing .card .card-media__frame {
    position: relative;
    z-index: 1;
}
.pricing .card .card-media__glow {
    position: absolute;
    inset: 12% 8%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204, 28, 57, 0.28) 0%, transparent 68%);
    filter: blur(18px);
    opacity: 0.55;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.pricing .card:hover .card-media__glow {
    opacity: 0.85;
    transform: scale(1.06);
}
.pricing .card .card-media__inner {
    position: relative;
    border-radius: 11px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #0e0f12;
    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.45),
        inset 0 0 0 1px rgba(255, 255, 255, 0.09),
        inset 0 0 0 3px rgba(0, 0, 0, 0.35);
}
.pricing .card .card-media__inner::before,
.pricing .card .card-media__inner::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    z-index: 2;
    pointer-events: none;
    opacity: 0.75;
    transition: opacity 0.28s ease;
}
.pricing .card .card-media__inner::before {
    top: 0.45rem;
    left: 0.45rem;
    border-top: 2px solid rgba(204, 28, 57, 0.85);
    border-left: 2px solid rgba(204, 28, 57, 0.85);
    border-radius: 3px 0 0 0;
}
.pricing .card .card-media__inner::after {
    right: 0.45rem;
    bottom: 0.45rem;
    border-right: 2px solid rgba(204, 28, 57, 0.85);
    border-bottom: 2px solid rgba(204, 28, 57, 0.85);
    border-radius: 0 0 3px 0;
}
.pricing .card:hover .card-media__inner::before,
.pricing .card:hover .card-media__inner::after {
    opacity: 1;
}
.pricing .card .card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pricing .card .card-media__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.5) 100%);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: 3;
}
.pricing .card .card-media:hover .card-media__overlay {
    opacity: 1;
    transform: translateY(0);
}
.pricing .card .card-media__overlay i {
    font-size: 1.35rem;
    color: #fff;
}
.pricing .card .card-media__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.3;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.pricing .card .card-media:hover .card-media__badge {
    opacity: 1;
    transform: scale(1);
}

.pricing .card h3{
    color: #fff;
    margin: .25rem 0 .75rem 0;
    padding-bottom: .75rem;
    font-size: 1.85rem;                      
    font-weight: 700;
    border-bottom: 1px dashed #a0a3a7;       
}

.pricing .card p{
    color: #dfe3ea;
    margin: 0;
    line-height: 1.45;
    display: flex;
    align-items: center;
    gap: .4rem;
}
.pricing .card p + p{ margin-top: .4rem; }
.pricing .card p i{
    color: #CC1C39;                           
    font-size: 1.15rem;
    margin: 0;
}

.pricing .card .btn-add-cart {
    width: 100%;
    margin-top: 0.35rem;
    min-height: 48px;
}

.pricing .card .btn-add-cart--in-cart {
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(34, 197, 94, 0.45);
    box-shadow: none;
    color: #fff;
}

.pricing .card .btn-add-cart--in-cart:hover {
    background: rgba(34, 197, 94, 0.28);
    border-color: rgba(34, 197, 94, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.18);
}

.logo_2{

    inline-size: 65px;
    block-size: 64px;
    margin: 20px;
    position: absolute;
    transition: all 0.4s ease;
    
}
.number p{

    display: flex;

   inline-size: 170px;
   margin-inline-start: 110px;
   padding-block: 5px;
   color: white;

}

.number{
    inline-size: 100px;
    margin-block: auto;
}

.logo_2:hover{
    transform: scale(0.85);
    filter: drop-shadow(10px 5px 0px #a51935b7);
}

#lb-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(8, 8, 12, 0);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
                visibility 0.38s,
                background 0.38s ease,
                backdrop-filter 0.38s ease;
}
#lb-overlay.lb-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: rgba(8, 8, 12, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
#lb-overlay.lb-closing {
    opacity: 0;
    visibility: visible;
    pointer-events: none;
}
.lb-wrap {
    position: relative;
    width: min(96vw, 1180px);
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.94) translateY(12px);
    opacity: 0;
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.38s ease;
}
#lb-overlay.lb-open .lb-wrap {
    transform: scale(1) translateY(0);
    opacity: 1;
}
#lb-overlay.lb-closing .lb-wrap {
    transform: scale(0.96) translateY(8px);
    opacity: 0;
}
.lb-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.65rem, 2vw, 1.25rem);
    width: 100%;
}
.lb-frame {
    position: relative;
    flex: 1;
    min-width: 0;
    max-height: calc(92vh - 4rem);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(204, 28, 57, 0.12);
    background: #111;
}
.lb-viewport {
    width: 100%;
    max-height: calc(92vh - 4rem);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: none;
    cursor: zoom-in;
}
.lb-viewport.is-zoomed {
    overflow: auto;
    cursor: grab;
}
.lb-viewport.is-zoomed.is-dragging {
    cursor: grabbing;
}
#lb-img {
    display: block;
    max-width: 100%;
    max-height: calc(92vh - 4rem);
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
    transform: translate(0, 0) scale(1);
    transform-origin: center center;
    transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    user-select: none;
    -webkit-user-drag: none;
}
#lb-img.lb-img--out-left {
    opacity: 0;
    transform: translate(-28px, 0) scale(0.98);
}
#lb-img.lb-img--out-right {
    opacity: 0;
    transform: translate(28px, 0) scale(0.98);
}
#lb-img.lb-img--in-left {
    opacity: 0;
    transform: translate(28px, 0) scale(0.98);
}
#lb-img.lb-img--in-right {
    opacity: 0;
    transform: translate(-28px, 0) scale(0.98);
}
#lb-img.is-zoomed {
    max-width: none;
    max-height: none;
    transition: opacity 0.28s ease;
}
.lb-nav {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.65rem;
    cursor: pointer;
    user-select: none;
    background: linear-gradient(145deg, #e02445 0%, #cc1c39 45%, #a51935 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 10px 28px rgba(204, 28, 57, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.22s ease,
                filter 0.22s ease;
}
.lb-nav:hover {
    transform: scale(1.08);
    box-shadow:
        0 14px 36px rgba(204, 28, 57, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    filter: brightness(1.06);
}
.lb-nav:active {
    transform: scale(0.96);
}
.lb-nav i {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}
.lb-zoom {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    background: linear-gradient(145deg, #e02445 0%, #cc1c39 50%, #a51935 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 8px 22px rgba(204, 28, 57, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lb-zoom:hover {
    transform: scale(1.06);
    box-shadow: 0 10px 28px rgba(204, 28, 57, 0.5);
}
.lb-zoom.is-active {
    background: linear-gradient(145deg, #ff4d6d 0%, #cc1c39 100%);
}
#lb-close {
    position: absolute;
    top: -54px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(24, 24, 27, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.22s ease, transform 0.22s ease;
}
#lb-close:hover {
    background: rgba(204, 28, 57, 0.9);
    transform: rotate(90deg) scale(1.05);
}
.lb-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    margin-top: 1rem;
    width: 100%;
}
#lb-counter {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
}
.lb-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem;
    max-width: 100%;
    padding: 0 0.5rem;
}
.lb-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    transition: transform 0.22s ease, background 0.22s ease, width 0.22s ease;
}
.lb-dot:hover {
    background: rgba(255, 255, 255, 0.55);
    transform: scale(1.15);
}
.lb-dot.is-active {
    width: 22px;
    border-radius: 999px;
    background: #cc1c39;
}
.lb-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}
.lb-loading.is-visible {
    opacity: 1;
    visibility: visible;
}
.lb-loading::after {
    content: "";
    width: 36px;
    height: 36px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-top-color: #cc1c39;
    border-radius: 50%;
    animation: lb-spin 0.7s linear infinite;
}
@keyframes lb-spin {
    to { transform: rotate(360deg); }
}
@media (max-width: 700px) {
    .lb-stage {
        gap: 0.5rem;
    }
    .lb-nav {
        width: 44px;
        height: 44px;
        font-size: 1.35rem;
    }
    #lb-close { top: 0.5rem; right: 0.5rem; z-index: 2; }
    .lb-zoom {
        width: 38px;
        height: 38px;
        font-size: 1.05rem;
    }
}
@media (prefers-reduced-motion: reduce) {
    #lb-overlay,
    .lb-wrap,
    #lb-img,
    .lb-nav,
    #lb-close,
    .lb-zoom,
    .lb-dot,
    .pricing .card .card-media,
    .pricing .card .card-media__glow,
    .pricing .card {
        transition: none !important;
        animation: none !important;
    }
}

@media (width < 900px){
    header{
        grid-template-columns: repeat(1, 1fr);
    }
    header .image{
        grid-area: 1/1/2/2;
    }
    .swiper{
        display: none;
    }
    .features{
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing{
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (width < 600px){
    header .image::before{
        display: none;
    }
    .ban{
        display: none;
    }

    .features{
        grid-template-columns: repeat(1, 1fr);
    }

    .pricing{
        grid-template-columns: repeat(1, 1fr);
    }
}