/* product.css — package detail page: gallery, info card, accordions, gift+discount cards, related products */

/* package page */

*,
*::before,
*::after {
        box-sizing: border-box;
    }

.pkg-page {
        min-height: 100vh;
        padding: 40px 0 120px;
        color: #fff;
    }

.pkg-wrap {
        max-width: 1500px;
        margin: 0 auto;
        padding: 0 40px;
    }

/* Breadcrumb */

.pkg-breadcrumb {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        color: rgba(255, 255, 255, .3);
        margin: 0 0 40px;
    }

.pkg-breadcrumb a {
        color: rgba(255, 255, 255, .3);
        text-decoration: none;
    }

.pkg-breadcrumb .sep {
        color: rgba(255, 255, 255, .1);
    }

/* Grid Layout */

.pkg-grid {
        display: grid;
        grid-template-columns: 1.6fr 1fr;
        gap: 60px;
        align-items: start;
    }

@media (max-width: 1024px) {
  .pkg-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

  .gallery-col {
            position: relative !important;
            top: 0 !important;
        }

  .pkg-wrap {
            padding: 0 20px;
        }
}

/* gallery (left col) */

.gallery-col {
        min-width: 0;
        position: sticky;
        top: 120px;
        align-self: start;
        height: fit-content;
    }

.media-box {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9;
        max-height: 75vh;
        background: #0a0a0c;
        border-radius: 24px;
        overflow: hidden;
        margin-bottom: 24px;
        border: 1px solid rgba(255, 255, 255, .05);
    }

.media-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.media-badge {
        position: absolute;
        top: 14px;
        left: 14px;
        background: var(--accent-color);
        color: #fff;
        font-size: 10px;
        font-weight: 900;
        padding: 4px 10px;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: .05em;
    }

.thumb-row {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 20px;
        align-items: center;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, .2) rgba(255, 255, 255, .02);
    }

.thumb-row::-webkit-scrollbar {
        height: 6px;
    }

.thumb-row::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, .03);
        border-radius: 10px;
    }

.thumb-row::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, .2);
        border-radius: 10px;
    }

.thumb-row::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, .4);
    }

.thumb {
        flex: 0 0 180px;
        width: 180px;
        height: 101px;
        border-radius: 10px;
        background: #0a0a0c;
        border: 2px solid transparent;
        cursor: pointer;
        object-fit: cover;
        opacity: .4;
        transition: all .2s ease;
        display: block;
        flex-shrink: 0;
    }

.thumb.active {
        opacity: 1;
        border-color: #fff;
    }

.thumb:hover:not(.active) {
        opacity: .7;
        border-color: rgba(255, 255, 255, .2);
    }

/* video preview iframe */

#videoPreview {
        width: 100%;
        height: 100%;
        border: none;
        display: none;
        position: absolute;
        inset: 0;
        z-index: 5;
        border-radius: 16px;
    }

/* video thumb */

.thumb-video {
        flex: 0 0 180px;
        width: 180px;
        height: 101px;
        border-radius: 10px;
        border: 2px solid transparent;
        cursor: pointer;
        opacity: .55;
        transition: all .2s ease;
        flex-shrink: 0;
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #2a0e0e 0%, #0a0a0c 100%);
    }

.thumb-video-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.thumb-video .play-icon {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, .25);
        z-index: 2;
    }

.thumb-video.active {
        opacity: 1;
        border-color: #fff;
    }

.thumb-video:hover:not(.active) {
        opacity: .85;
        border-color: rgba(255, 255, 255, .25);
    }

/* info card (right col) */

.info-col {
        min-width: 0;
    }

.v1-info-card {
        background: rgba(12, 12, 15, .15);
        backdrop-filter: blur(24px);
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 24px;
        padding: 32px;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

.v1-title {
        font-size: 32px;
        font-weight: 900;
        letter-spacing: -.02em;
        line-height: 1.1;
    }

.v1-cat {
        font-size: 13px;
        color: rgba(255, 255, 255, .3);
        margin-top: 4px;
    }

.tag-row {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

.tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, .03);
        border: 1px solid rgba(255, 255, 255, .08);
        padding: 6px 12px;
        border-radius: 8px;
        font-size: 12px;
        font-weight: 700;
        color: rgba(255, 255, 255, .6);
    }

.tag img {
        width: 14px;
        height: 14px;
        border-radius: 3px;
    }

.price-row {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 4px;
    }

.price-main {
        font-size: 38px;
        font-weight: 950;
        letter-spacing: -.03em;
    }

.price-old {
        font-size: 18px;
        color: rgba(255, 255, 255, .2);
        text-decoration: line-through;
        font-weight: 700;
    }

.price-badge {
        background: var(--accent-color);
        color: #fff;
        font-size: 12px;
        font-weight: 800;
        padding: 4px 10px;
        border-radius: 6px;
    }

.btn-get {
        width: 100%;
        height: 56px;
        background: #fff;
        color: #000;
        border: none;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 800;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-decoration: none;
        transition: all .3s;
    }

.btn-get:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

.btn-get.in-cart {
        background: var(--accent-color);
        color: #fff;
    }

/* Accordions */

.acc-col {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }

.acc {
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 14px;
        overflow: hidden;
        background: rgba(20, 20, 24, .4);
    }

.acc-hdr {
        padding: 18px 22px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        font-weight: 700;
        font-size: 14px;
    }

.acc-hdr-left {
        display: flex;
        align-items: center;
        gap: 10px;
    }

.acc-hdr-left svg {
        width: 16px;
        height: 16px;
        color: var(--accent-color);
    }

.acc-icon {
        font-size: 20px;
        color: rgba(255, 255, 255, .2);
        transition: transform .3s;
    }

.acc.open .acc-icon {
        transform: rotate(45deg);
        color: var(--accent-color);
    }

.acc-body {
        display: none;
        padding: 0 22px 22px;
        color: rgba(255, 255, 255, .5);
        font-size: 14px;
        line-height: 1.7;
    }

.acc-body img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        margin: 12px 0;
        display: block;
    }

.acc.open .acc-body {
        display: block;
    }

.btn-discord {
        width: 100%;
        height: 52px;
        background: #5865F2;
        color: #fff;
        border: none;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        text-decoration: none;
        transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
        margin-bottom: 12px;
    }

.btn-discord:hover {
        background: #4752c4;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(88, 101, 242, 0.3);
    }

.btn-discord svg {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
    }

.trust-row {
        display: flex;
        gap: 16px;
        margin-top: 4px;
    }

.trust-item {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 12px;
        color: rgba(255, 255, 255, .3);
        font-weight: 600;
    }

.trust-item svg {
        width: 14px;
        height: 14px;
        color: var(--accent-color);
    }

/* gallery arrows */

.gallery-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        background: rgba(0, 0, 0, .4);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 50%;
        color: #fff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        transition: all .2s ease;
        font-size: 24px;
        opacity: 0;
    }

.media-box:hover .gallery-nav-btn {
        opacity: 1;
    }

.gallery-nav-btn:hover {
        background: rgba(0, 0, 0, .7);
        transform: translateY(-50%) scale(1.1);
    }

.gallery-prev {
        left: 16px;
    }

.gallery-next {
        right: 16px;
    }

/* expand btn */

.expand-btn {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, .4);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 10px;
        color: #fff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        transition: all .2s ease;
        opacity: 0;
    }

.media-box:hover .expand-btn {
        opacity: 1;
    }

.expand-btn:hover {
        background: rgba(0, 0, 0, .7);
        transform: scale(1.1);
    }

/* yt btn */

.yt-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        background: var(--accent-color);
        border: 1px solid var(--accent-color);
        color: #fff !important;
        padding: 14px 28px;
        border-radius: 14px;
        font-weight: 800;
        text-decoration: none;
        transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
        margin-top: 15px;
        font-size: 14px;
        width: 100%;
        box-sizing: border-box;
        box-shadow: 0 8px 20px rgba(var(--accent-rgb), .2);
    }

.yt-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 24px rgba(var(--accent-rgb), .4);
        filter: brightness(1.1);
    }

.yt-btn svg {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
        fill: #fff;
    }

/* lightbox */

.img-lightbox {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, .95);
        backdrop-filter: blur(20px);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 100000;
        cursor: zoom-out;
        transition: opacity .3s ease;
    }

.img-lightbox.open {
        display: flex;
        animation: lbFade .3s ease;
    }

.img-lightbox img {
        max-width: 90vw;
        max-height: 90vh;
        object-fit: contain;
        border-radius: 12px;
        box-shadow: 0 40px 100px rgba(0, 0, 0, .8);
        transform: scale(0.9);
        transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1);
    }

.img-lightbox.open img {
        transform: scale(1);
    }

@keyframes lbFade {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

/* inline cards (gift + discount) */

.gift-wrap,
.disc-wrap {
        border: 1px solid rgba(255, 255, 255, .06);
        border-radius: 18px;
        overflow: hidden;
        margin-bottom: 6px;
        background: rgba(255, 255, 255, .01);
        transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    }

.gift-wrap {
        margin-top: 8px;
    }

.gift-wrap.open,
.disc-wrap.open {
        border-color: var(--accent-color);
        background: rgba(var(--accent-rgb), .02);
    }

.gift-card,
.disc-header {
        padding: 18px 22px;
        display: flex;
        align-items: center;
        gap: 16px;
        cursor: pointer;
        transition: all .2s;
    }

.gift-card:hover,
.disc-header:hover {
        background: rgba(255, 255, 255, .02);
    }

.gift-icon,
.disc-icon {
        width: 44px;
        height: 44px;
        background: rgba(0, 0, 0, 0.2);
        border: 1px solid var(--accent-color);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent-color);
        flex-shrink: 0;
        box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.25);
        transition: all 0.3s ease;
    }

.gift-card:hover .gift-icon,
.disc-header:hover .disc-icon {
        box-shadow: 0 0 25px rgba(var(--accent-rgb), 0.5);
        transform: scale(1.05);
    }

.gift-title,
.disc-title {
        font-size: 16px;
        font-weight: 800;
        color: #fff;
        letter-spacing: -0.01em;
    }

.gift-sub {
        font-size: 11px;
        color: rgba(255, 255, 255, .3);
        font-weight: 500;
        margin-top: 1px;
    }

.gift-arrow,
.disc-chevron {
        margin-left: auto;
        opacity: .3;
        transition: transform .3s;
    }

.gift-wrap.open .gift-arrow,
.disc-wrap.open .disc-chevron {
        transform: rotate(180deg);
        opacity: 1;
        color: var(--accent-color);
    }

.gift-body,
.disc-body-inner {
        display: none;
        padding: 20px 22px 22px;
        border-top: 1px solid rgba(255, 255, 255, .05);
        gap: 12px;
        animation: slideDown .3s ease;
    }

.gift-wrap.open .gift-body,
.disc-wrap.open .disc-body-inner {
        display: flex;
    }

.gift-input-inline,
.disc-input {
        flex: 1;
        background: rgba(0, 0, 0, .2);
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 14px;
        padding: 14px 18px;
        color: #fff;
        font-size: 14px;
        outline: none;
        transition: all .2s;
    }

.gift-input-inline:focus,
.disc-input:focus {
        border-color: rgba(255, 255, 255, .3);
        background: rgba(0, 0, 0, .4);
    }

.gift-btn-inline,
.disc-apply-btn {
        background: #fff;
        color: #000;
        border: none;
        border-radius: 14px;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all .2s;
        flex-shrink: 0;
    }

.gift-btn-inline:hover,
.disc-apply-btn:hover {
        transform: scale(1.05);
        filter: brightness(0.9);
    }

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

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

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

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

.rel-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        margin-top: 40px;
    }

.rel-grid .rel-card:nth-child(n+4) {
        display: none;
    }

.rel-card {
        background: rgba(255, 255, 255, .02);
        border: 1px solid rgba(255, 255, 255, .07);
        border-radius: 16px;
        overflow: hidden;
        text-decoration: none;
        transition: all .3s;
        display: block;
    }

.rel-card:hover {
        border-color: var(--accent-color);
        transform: translateY(-4px);
    }

.rel-card-img {
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
    }

.rel-card-body {
        padding: 18px;
    }

.rel-card-name {
        font-size: 15px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 6px;
    }

.rel-card-price {
        color: var(--accent-color);
        font-weight: 800;
        font-size: 15px;
    }

.rel-card-disc {
        background: var(--accent-color);
        color: #fff;
        font-size: 11px;
        font-weight: 900;
        padding: 2px 8px;
        border-radius: 6px;
        margin-left: 10px;
    }

.rel-btn {
        margin-top: 18px;
        background: #fff;
        color: #000;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        font-size: 14px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.02em;
        transition: all .3s;
    }

.rel-card:hover .rel-btn {
        background: #f8f8f8;
        transform: translateY(-2px);
    }

/* achievements */

.achievements-section {
        position: relative;
        overflow: visible !important;
    }

.achievements-section .v1-inner {
        max-width: 1100px;
        text-align: center;
        margin: 0 auto;
        position: relative;
        z-index: 5;
    }

.ach-img-side {
        position: absolute;
        right: calc(50% + 550px);
        top: -340px;
        width: 650px;
        z-index: 100;
        opacity: 0.8;
        pointer-events: none;
        transition: opacity 0.3s;
    }

@media (max-width: 1400px) {
  .ach-img-side {
            opacity: 0.5;
        }
}

@media (max-width: 1100px) {
  .ach-img-side {
            display: none !important;
        }
}

.ach-img-side img {
        width: 100%;
        border-radius: 28px;
        filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
    }

.achievements-section .v1-sub,
.reviews-section .v1-sub {
        margin-left: auto;
        margin-right: auto;
    }

/* bar fill anim override */

.r8-bar-fill {
        width: 0%;
        height: 100%;
        background: var(--accent-color);
        border-radius: 10px;
        box-shadow: 0 0 15px var(--accent-glow);
        transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

.r8-bar-fill.animate {
        width: var(--target-width);
    }

/* review card override — fixes layout.html defaults */

.r1-card {
        width: 380px;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 20px;
        padding: 22px 28px;
        transition: transform 0.1s ease-out, border-color 0.3s;
        transform-style: preserve-3d;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        text-align: left;
        min-height: 180px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

/* reviews */

.reviews-section {
        padding: 100px 0;
        background: transparent;
        position: relative;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        overflow: visible !important;
    }

.reviews-section .v1-inner {
        max-width: 100% !important;
        padding: 0 !important;
        text-align: center;
        margin: 0 auto;
        position: relative;
        z-index: 5;
    }

.reviews-section .marquee-outer {
        width: 100%;
        overflow: hidden;
        padding: 40px 0;
    }

.reviews-section .v1-title,
.reviews-section .v1-sub,
.reviews-section .r8-top-row {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 20px;
        padding-right: 20px;
    }

.r8-top-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 48px;
        margin-bottom: 60px;
        flex-wrap: wrap;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 24px;
    }

.marquee-track {
        display: flex;
        width: max-content;
        gap: 24px;
        animation: reviews-scroll 40s linear infinite;
        padding: 20px 0;
    }

.marquee-outer:hover .marquee-track {
        animation-play-state: paused;
    }

@keyframes reviews-scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

/* reveal anims */

[data-reveal] {
        opacity: 0;
        transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        transition-delay: var(--reveal-delay, 0ms);
        will-change: transform, opacity;
    }

[data-reveal="fade-up"] {
        transform: translateY(50px);
    }

[data-reveal="fade-down"] {
        transform: translateY(-50px);
    }

[data-reveal="fade-left"] {
        transform: translateX(50px);
    }

[data-reveal="fade-right"] {
        transform: translateX(-50px);
    }

[data-reveal="scale-up"] {
        transform: scale(0.85);
        opacity: 0;
    }

[data-reveal].revealed {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }

/* faq */

#lxy-faq-wrapper {
        padding: 80px 24px;
        position: relative;
        width: 100% !important;
        display: block !important;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        overflow: visible !important;
    }

.faq-img-side-right {
        position: absolute;
        left: calc(50% + 450px);
        top: 120%;
        transform: translateY(-50%);
        width: 635px;
        z-index: 1;
        opacity: 0.8;
        pointer-events: none;
    }

@media (max-width: 1100px) {
  .faq-img-side-right {
            display: none !important;
        }
}

.faq-img-side-right img {
        width: 100%;
        filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
    }

.lxy-faq-container {
        max-width: 1200px !important;
        margin: 0 auto !important;
    }

.lxy-faq-intro {
        text-align: center;
        margin-bottom: 50px;
    }

.lxy-faq-h2 {
        font-size: 2.8rem;
        font-weight: 800;
        color: #fff;
        margin-bottom: 12px;
    }

.lxy-faq-p {
        color: rgba(255, 255, 255, 0.4);
        max-width: 600px;
        margin: 0 auto;
        font-size: 0.95rem;
    }

#lxy-faq-grid {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 380px !important;
        gap: 40px !important;
        align-items: start !important;
        width: 100% !important;
        margin-top: 40px;
    }

@media (max-width: 960px) {
  #lxy-faq-grid {
            grid-template-columns: 1fr !important;
        }

  .lxy-faq-side {
            display: none !important;
        }

  .lxy-faq-main {
            width: 100% !important;
        }
}

.lxy-faq-main {
        min-width: 0 !important;
    }

.lxy-faq-side {
        position: sticky !important;
        top: 100px !important;
        width: 380px !important;
    }

.lxy-faq-search-box {
        position: relative !important;
        max-width: 600px !important;
        margin: 0 auto 40px !important;
        height: 54px !important;
        display: block !important;
    }

.lxy-faq-search-box i,
.lxy-faq-search-box svg {
        position: absolute !important;
        left: 18px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        color: var(--accent-color) !important;
        z-index: 10 !important;
        pointer-events: none !important;
        width: 20px !important;
        height: 20px !important;
    }

.lxy-faq-input {
        width: 100%;
        height: 100%;
        padding: 0 20px 0 50px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 14px;
        color: #fff;
        outline: none;
        transition: 0.3s;
        font-size: 15px;
    }

.lxy-faq-input:focus {
        border-color: var(--accent-color);
        background: rgba(var(--accent-rgb), 0.03);
    }

.lxy-faq-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        max-height: 385px !important;
        overflow-y: auto !important;
        padding-right: 15px;
        scrollbar-width: thin;
        scrollbar-color: var(--accent-color) rgba(255, 255, 255, 0.05);
    }

.lxy-faq-list::-webkit-scrollbar {
        width: 4px;
    }

.lxy-faq-list::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.02);
        border-radius: 10px;
    }

.lxy-faq-list::-webkit-scrollbar-thumb {
        background: var(--accent-color);
        border-radius: 10px;
        box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.5);
    }

.lxy-faq-list::-webkit-scrollbar-thumb:hover {
        background: #ff5f5f;
    }

.lxy-faq-item {
        background: rgba(255, 255, 255, 0.015);
        border: 1px solid rgba(255, 255, 255, 0.04);
        border-radius: 16px;
        overflow: hidden;
        transition: 0.3s;
        flex-shrink: 0;
    }

.lxy-faq-item.open {
        background: rgba(var(--accent-rgb), 0.02);
        border-color: rgba(var(--accent-rgb), 0.1);
    }

.lxy-faq-q {
        padding: 18px 22px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        gap: 15px;
    }

.lxy-faq-q-left {
        display: flex;
        align-items: center;
        gap: 15px;
    }

.lxy-faq-q-left i {
        color: var(--accent-color);
        width: 18px;
        height: 18px;
        opacity: 0.8;
    }

.lxy-faq-q-txt {
        font-weight: 700;
        font-size: 15px;
        color: #fff;
    }

.lxy-faq-ans {
        max-height: 0;
        overflow: hidden;
        transition: 0.4s ease-in-out;
    }

.lxy-faq-ans-in {
        padding: 0 22px 20px 22px;
        color: rgba(255, 255, 255, 0.4);
        font-size: 14px;
        line-height: 1.6;
    }

.lxy-support-card {
        background: radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.1), #0a0a0c);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 24px;
        padding: 50px 30px;
        text-align: center;
        position: relative;
        overflow: hidden;
        min-height: 380px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

.lxy-support-card::after {
        content: '?';
        font-size: 260px;
        font-weight: 900;
        color: rgba(255, 255, 255, 0.01);
        position: absolute;
        right: -10px;
        bottom: -30px;
        transform: rotate(15deg);
        pointer-events: none;
    }

.lxy-support-icon {
        width: 64px;
        height: 64px;
        background: rgba(var(--accent-rgb), 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        color: var(--accent-color);
        box-shadow: 0 0 25px rgba(var(--accent-rgb), 0.15);
    }

.lxy-support-btn {
        background: #fff;
        color: #000;
        padding: 13px 26px;
        border-radius: 50px;
        font-weight: 800;
        font-size: 14px;
        text-decoration: none;
        transition: 0.3s;
        margin-top: 20px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

.lxy-support-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
    }

/* got a question (s3-editorial) */

.s3-editorial-wrap {
        max-width: 1300px;
        margin: 100px auto 110px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 100px 40px 110px;
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 80px;
        align-items: center;
    }

.s3-kicker {
        font-size: 13px;
        font-weight: 700;
        letter-spacing: .25em;
        text-transform: uppercase;
        color: var(--accent-color);
        margin-bottom: 15px;
    }

.s3-title {
        font-size: clamp(40px, 6.5vw, 72px);
        font-weight: 900;
        letter-spacing: -.03em;
        line-height: 1.05;
        color: #fff;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    }

.s3-title em {
        font-style: normal;
        color: rgba(255, 255, 255, 0.15);
    }

.s3-text {
        font-size: 17px;
        color: rgba(255, 255, 255, 0.45);
        line-height: 1.7;
        margin-top: 20px;
        max-width: 550px;
    }

.s3-right {
        text-align: right;
        flex-shrink: 0;
    }

.s3-btn {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        border: 2px solid rgba(255, 255, 255, 0.25);
        color: #fff;
        padding: 20px 48px;
        border-radius: 60px;
        font-size: 16px;
        font-weight: 900;
        text-decoration: none;
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        letter-spacing: .08em;
        text-transform: uppercase;
    }

.s3-btn:hover {
        background: var(--accent-color);
        color: #fff;
        border-color: var(--accent-color);
        transform: scale(1.05) translateY(-5px);
        box-shadow: 0 20px 40px rgba(var(--accent-rgb), 0.3);
    }

.s3-note {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.3);
        margin-top: 20px;
        font-weight: 700;
        letter-spacing: 0.05em;
    }

@media (max-width: 760px) {
  .s3-editorial-wrap {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 40px;
            margin-top: 40px;
        }

  .s3-text {
            margin: 15px auto 0;
        }

  .rel-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
}

/* payment icons row — scoped to the package sidebar */

.pkg-pay-clean {
                            display: flex;
                            align-items: center;
                            gap: 8px;
                            margin: 10px 0 20px;
                            flex-wrap: wrap;
                        }

.pkg-pay-item {
                            height: 32px;
                            padding: 0 12px;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            background: rgba(255, 255, 255, 0.04);
                            border: 1px solid rgba(255, 255, 255, 0.08);
                            border-radius: 8px;
                            transition: 0.3s ease;
                        }

.pkg-pay-item:hover {
                            background: rgba(255, 255, 255, 0.08);
                            border-color: rgba(255, 255, 255, 0.2);
                            transform: translateY(-2px);
                        }

.pkg-pay-item svg {
                            height: 14px;
                            width: auto;
                            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
                        }

.pkg-pay-more-tag {
                            height: 32px;
                            padding: 0 12px;
                            display: flex;
                            align-items: center;
                            font-size: 11px;
                            font-weight: 900;
                            color: rgba(255, 255, 255, 0.4);
                            border-radius: 8px;
                            background: rgba(255, 255, 255, 0.02);
                            border: 1px solid rgba(255, 255, 255, 0.05);
                        }
