/* home.css — homepage styles: hero, achievements, reviews, FAQ, marquee, featured, support card */

/* extracted from index.html so the file isn't 3k+ lines anymore. dynamic stuff (config()) stays inline. */

/* main block — hero, sections, layout */

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

.reviews-section .v1-inner {
        max-width: 100%;
    }

/* achievements layout */

.achievements-section {
        position: relative;
        overflow: visible !important;
        /* Allow side images to bridge gaps */
    }

.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: -80px;
        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;
            /* Fade as screen narrows */
        }
}

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

/* reviews */

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

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

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

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

.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 */

.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%);
        }
    }

.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;
    }

/* bars */

.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);
    }

/* reveal animations */

[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="zoom-fade"] {
        transform: scale(0.94);
        opacity: 0;
    }

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

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

/* faq — scoped so it doesn't bleed into other accordions */

#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;
        /* Restore height spill */
    }

.faq-img-side-right {
        position: absolute;
        left: calc(50% + 450px);
        /* Back to the RIGHT side, shifted inward */
        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: clamp(22px, 1.6vw, 36px);
        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: clamp(12px, 0.73vw, 16px);
    }

#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;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !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);
    }

/* scrollbar */

.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);
    }

/* support card — bigger variant */

.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(28px, 2vw, 48px);
        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;
    }

/* featured scripts (f8 variant — frosted) */

.feat-section {
        padding: 60px 0 80px;
        background: transparent;
        overflow: visible;
    }

.feat-wrap {
        padding: 0 40px 40px;
        max-width: 1750px;
        margin: 0 auto;
    }

.feat-hdr {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 28px;
        margin-bottom: 40px;
    }

.feat-hdr::before,
.feat-hdr::after {
        content: '';
        height: 1px;
        flex: 1;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 80%);
    }

.feat-hdr-txt {
        text-align: center;
        flex-shrink: 0;
    }

.feat-title {
        /* mixed case Syne — matches the bundle/Master Collection visual */
        font-size: clamp(22px, 1.5vw, 40px);
        font-weight: 900;
        letter-spacing: -0.03em;
        font-family: 'Syne', sans-serif;
        color: #fff;
    }

.feat-title .accent {
        color: var(--accent-color);
        text-shadow: 0 0 30px var(--accent-glow);
    }

.feat-sub {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.35);
        margin-top: 8px;
        font-weight: 600;
        letter-spacing: 0.05em;
    }

/* Shared marquee */

.reviews-section .v1-inner {
        max-width: 100% !important;
        padding: 0 !important;
    }

.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;
    }

.mq-outer {
        width: 100%;
        overflow: hidden;
        padding: 40px 0 60px;
        /* Increased top padding significantly for the lift effect */
        cursor: grab;
        -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
        mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
        margin-top: -20px;
    }

.mq-outer:active {
        cursor: grabbing;
    }

.mq-track {
        display: flex;
        gap: 30px;
        width: max-content;
        animation: mq-scroll 40s linear infinite;
        will-change: transform;
    }

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

@keyframes mq-scroll {
        from {
            transform: translateX(0);
        }

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

.mq-slide {
        flex-shrink: 0;
    }

.f8-card {
        /* linear vw scale: ~375px @ 1920, ~500px @ 2560 */
        width: clamp(300px, 19.5vw, 560px);
        min-width: clamp(300px, 19.5vw, 560px);
        background: #080808;
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.4s var(--ease-out-cubic);
        cursor: pointer;
        position: relative;
    }

@media (max-width: 768px) {
  .f8-card {
            width: 85vw;
            min-width: 300px;
            max-width: 360px;
        }
}

.f8-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
        z-index: 2;
    }

.f8-card:hover {
        transform: translateY(-12px);
        border-color: var(--accent-color);
        background: #0d0d0d;
        box-shadow:
            0 25px 60px rgba(0, 0, 0, 0.9),
            0 0 20px rgba(225, 29, 72, 0.2);
    }

.f8-img-wrap {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%;
        overflow: hidden;
        border-radius: 22px 22px 0 0;
    }

.f8-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s var(--ease-out-cubic);
    }

.f8-card:hover .f8-img {
        transform: scale(1.1);
    }

.f8-sale {
        position: absolute;
        top: 12px;
        left: 12px;
        background: var(--accent-color);
        color: #fff;
        font-size: 11px;
        font-weight: 900;
        padding: 5px 14px;
        border-radius: 8px;
        letter-spacing: .06em;
        z-index: 3;
        text-transform: uppercase;
    }

.f8-tag {
        position: absolute;
        top: 12px;
        right: 12px;
        background: rgba(0, 0, 0, 0.55);
        color: rgba(255, 255, 255, 0.55);
        font-size: 10px;
        font-weight: 700;
        padding: 5px 10px;
        border-radius: 8px;
        letter-spacing: .06em;
        z-index: 3;
        text-transform: uppercase;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

.f8-discount-badge {
        background: var(--accent-color);
        color: #fff;
        font-size: 12px;
        font-weight: 800;
        padding: 4px 10px;
        border-radius: 8px;
        letter-spacing: .03em;
    }

.f8-body {
        padding: 20px;
    }

.f8-badges {
        display: flex;
        gap: 10px;
        margin-bottom: 12px;
        flex-wrap: wrap;
        min-height: 34px;
        align-items: center;
    }

.f8-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        padding: 5px 12px;
        border-radius: 10px;
        font-size: 11px;
        font-weight: 800;
        color: rgba(255, 255, 255, 0.7);
        text-transform: uppercase;
        letter-spacing: 0.04em;
        transition: 0.3s;
    }

.f8-card:hover .f8-badge {
        border-color: rgba(255, 255, 255, 0.15);
        background: rgba(255, 255, 255, 0.06);
    }

.f8-badge i,
.f8-badge svg,
.f8-badge img {
        width: 16px;
        height: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        object-fit: contain;
    }

.esx-icon {
        font-size: 10px;
        font-weight: 900;
        color: #fff;
        font-family: 'Inter', sans-serif;
    }

.esx-icon .x {
        color: #f59e0b;
    }

.qbox-icon {
        width: 15px;
        height: 15px;
    }

.f8-name {
        font-size: 20px;
        font-weight: 900;
        letter-spacing: -0.02em;
        margin-bottom: 8px;
        color: #fff;
    }

.f8-price-row {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
    }

.f8-price {
        font-size: 32px;
        font-weight: 1000;
        letter-spacing: -0.04em;
        color: #fff;
    }

.f8-old {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.2);
        text-decoration: line-through;
        font-weight: 700;
    }

.f8-btn {
        width: 100%;
        background: #fff;
        color: #000;
        padding: 14px;
        border-radius: 12px;
        font-size: 15px;
        /* Slightly larger since it's not all caps */
        font-weight: 700;
        font-family: 'Outfit', sans-serif;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.4s var(--ease-out-cubic);
        text-transform: none;
        /* Removed uppercase */
        letter-spacing: -0.01em;
        /* Tighter for non-caps */
        text-decoration: none;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        position: relative;
        border: none !important;
        outline: none !important;
    }

.f8-btn i,
.f8-btn svg {
        width: 18px;
        height: 18px;
        transition: 0.4s var(--ease-out-cubic);
        transform: translateY(2px);
        /* Vertical adjustment to prevent cutoff */
    }

.f8-btn:disabled {
        opacity: 0.55 !important;
        cursor: not-allowed !important;
        filter: saturate(0.7) brightness(0.9);
        transform: scale(0.98) !important;
        pointer-events: none;
    }

.f8-btn:hover {
        background: #fff;
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 255, 255, 0.1);
        outline: none;
    }

.f8-btn.removing {
        background: var(--accent-color) !important;
        color: #fff !important;
        box-shadow: 0 8px 20px rgba(var(--accent-rgb), .35);
        border: none !important;
        outline: none !important;
    }

.f8-btn.removing:hover {
        background: var(--accent-color) !important;
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(var(--accent-rgb), .4);
    }

.f8-btn:hover i,
.f8-btn:hover svg {
        transform: translate(6px, 0) scale(1.1);
        filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.1));
    }

@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;
        }

/* mobile — featured cards */

  .feat-section {
            padding: 10px 0 30px;
            overflow: hidden;
        }

/* Stop marquee — swipe-to-scroll instead */

  .mq-outer {
            padding: 16px 0 30px;
            overflow-x: auto !important;
            overflow-y: hidden !important;
            -webkit-overflow-scrolling: touch;
            -webkit-mask-image: none !important;
            mask-image: none !important;
            cursor: default;
        }

  .mq-outer::-webkit-scrollbar {
            display: none;
        }

  .mq-track {
            animation: none !important;
            gap: 14px;
            padding: 0 16px;
            align-items: stretch; /* All cards same height */
        }

  .mq-slide {
            display: flex; /* Let card fill slide height */
        }

/* Card: full flex column so button stays visible */

  .f8-card {
            width: 300px !important;
            min-width: 300px !important;
            max-width: 300px !important;
            display: flex !important;
            flex-direction: column !important;
        }

  .f8-img-wrap {
            flex-shrink: 0;
        }

  .f8-body {
            padding: 14px 16px 16px;
            display: flex !important;
            flex-direction: column !important;
            flex: 1;
        }

  .f8-badges {
            gap: 6px;
            margin-bottom: 8px;
            min-height: 28px;
        }

  .f8-badge {
            font-size: 10px;
            padding: 4px 9px;
            border-radius: 7px;
        }

  .f8-name {
            font-size: 16px;
            margin-bottom: 6px;
        }

  .f8-price-row {
            margin-bottom: 12px;
        }

  .f8-price {
            font-size: 24px;
        }

  .f8-old {
            font-size: 13px;
        }

  .f8-discount-badge {
            font-size: 11px;
            padding: 3px 8px;
        }

  .f8-btn {
            padding: 13px 12px;
            font-size: 13px;
            border-radius: 10px;
            margin-top: auto;
        }
}

/* bundle card — had to force transparency, parent had bg */

.bundle-x-wrap {
        width: 100%;
        max-width: 1300px;
        margin: 40px auto;
        padding: 30px 60px;
        position: relative;
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 60px;
        align-items: center;
        background: transparent !important;
        border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
        border-radius: 24px !important;
        box-shadow: none !important;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        cursor: pointer;
    }

.bundle-x-wrap:hover {
        border-color: var(--accent-color) !important;
        box-shadow: 0 0 40px rgba(var(--accent-rgb), 0.15) !important;
        transform: translateY(-5px);
    }

.bundle-x-btn {
        background: #fff;
        color: #000;
        padding: clamp(14px, 0.78vw, 22px) clamp(28px, 1.95vw, 56px);
        border-radius: 100px;
        font-size: clamp(12px, 0.625vw, 18px);
        font-weight: 900;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        transition: 0.4s;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    }

.bundle-x-btn:hover {
        background: #fff;
        color: #000;
        transform: translateY(-3px);
        box-shadow: 0 20px 50px rgba(255, 255, 255, 0.25);
    }

@media (max-width: 960px) {
  .bundle-x-wrap {
            grid-template-columns: 1fr;
            text-align: center;
            padding: 30px 20px;
            margin: 20px auto;
            gap: 40px;
            width: 90vw;
            box-sizing: border-box;
        }

  .bundle-x-left,
  .bundle-x-right {
            align-items: center !important;
            text-align: center;
        }

  .bundle-x-left h2 {
            font-size: 38px !important;
        }

  .bundle-x-left p {
            margin-left: auto;
            margin-right: auto;
        }

  .bundle-x-left div {
            justify-content: center;
        }

  .bundle-x-right {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 30px;
            align-items: center !important;
            width: 100%;
            display: flex;
            flex-direction: column;
        }

  .bundle-x-right div {
            display: flex;
            flex-direction: column;
            align-items: center !important;
            text-align: center !important;
            width: 100%;
        }

  .bundle-x-right span:last-child {
            font-size: 72px !important;
            margin-top: 5px;
        }

  .bundle-x-btn {
            width: 100%;
            justify-content: center;
            padding: 18px 30px;
        }
}

/* h4 hero — bold typography split */

.h4-sec {
        width: 100%;
        position: relative;
        z-index: 10;
        overflow: hidden;
        background: transparent;
    }

.h4-inner-container {
        padding: 40px 40px 100px;
        max-width: 1750px;
        margin: 0 auto;
        min-height: 75vh;
        display: grid;
        grid-template-columns: 1.25fr 0.75fr;
        gap: 60px;
        align-items: center;
        position: relative;
        z-index: 1; /* Above beams */
        isolation: isolate; /* Prevent blend modes from bleeding through */
    }

.h4-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

.h4-kicker {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: .2em;
        text-transform: uppercase;
        color: var(--accent-color);
        margin-bottom: 24px;
        max-width: 100%;
        word-break: break-word;
    }

.h4-title {
        /* linear vw scale — 52px @ 1920, 68px @ 2560, capped for tablets/4K */
        font-size: clamp(32px, 2.66vw, 80px);
        font-weight: 950;
        line-height: .92;
        letter-spacing: -.05em;
        margin: 0;
        font-family: 'Syne', sans-serif;
        text-transform: uppercase;
        color: #fff;
    }

.h4-title-row2 {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-top: 4px;
        flex-wrap: wrap;
        overflow: visible;
    }

.h4-title-outline {
        -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.2);
        color: transparent;
        font-size: clamp(32px, 2.66vw, 80px);
        font-weight: 950;
        line-height: .92;
        letter-spacing: -.05em;
        font-family: 'Syne', sans-serif;
        text-transform: uppercase;
        flex-shrink: 0;
    }

.h4-desc {
        font-size: 17px;
        color: rgba(255, 255, 255, 0.45);
        max-width: 500px;
        line-height: 1.7;
        margin: 40px 0 44px;
    }

.h4-actions {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-shrink: 0;
        flex-wrap: wrap;
    }

.h4-btn-primary {
        background: #fff;
        color: #000;
        padding: 18px 44px;
        border-radius: 100px;
        font-size: 15px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        transition: 0.4s var(--ease-out-cubic);
        display: inline-flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    }

.h4-btn-primary:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(255, 255, 255, 0.2);
    }

.h4-btn-secondary {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff;
        padding: 18px 36px;
        border-radius: 100px;
        font-size: 15px;
        font-weight: 700;
        transition: 0.4s;
        backdrop-filter: blur(10px);
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

.h4-btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.25);
    }

/* character switcher */

.h4-image-wrap {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        position: relative;
        max-width: 100%;
        width: 100%;
    }

/* aurora beams (behind the char on the right) */

.h4-aurora-stage {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 55%;
        z-index: -1; /* Behind everything */
        pointer-events: none;
        overflow: hidden;
        mask-image:
            radial-gradient(ellipse 75% 90% at 55% 55%, #000 30%, transparent 80%),
            linear-gradient(180deg, #000 0%, #000 55%, transparent 78%);
        mask-composite: intersect;
        -webkit-mask-image:
            radial-gradient(ellipse 75% 90% at 55% 55%, #000 30%, transparent 80%),
            linear-gradient(180deg, #000 0%, #000 55%, transparent 78%);
        -webkit-mask-composite: source-in;
    }

.h4-beam {
        position: absolute;
        top: 0;
        height: 100%;
        width: 2px;
        opacity: 0;
        animation: beamFall 7s linear infinite;
        will-change: opacity, transform;
    }

.h4-beam-core {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg,
            transparent 0%,
            rgba(255, 255, 255, 0.95) 35%,
            rgba(255, 255, 255, 0.85) 55%,
            transparent 100%);
        filter: blur(1px);
    }

.h4-beam-glow {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 24px;
        height: 100%;
        background: linear-gradient(180deg,
            transparent 0%,
            rgba(var(--accent-rgb), 0.9) 35%,
            rgba(var(--accent-rgb), 0.6) 55%,
            transparent 100%);
        filter: blur(8px);
        mix-blend-mode: screen;
    }

.h4-beam-prism-r {
        position: absolute;
        top: 0;
        left: calc(50% + 4px);
        width: 6px;
        height: 100%;
        background: linear-gradient(180deg, transparent 0%, #ec4899 40%, #f43f5e 60%, transparent 100%);
        filter: blur(4px);
        mix-blend-mode: screen;
        opacity: 0.7;
    }

.h4-beam-prism-l {
        position: absolute;
        top: 0;
        left: calc(50% - 10px);
        width: 6px;
        height: 100%;
        background: linear-gradient(180deg, transparent 0%, #3b82f6 40%, #06b6d4 60%, transparent 100%);
        filter: blur(4px);
        mix-blend-mode: screen;
        opacity: 0.7;
    }

.h4-beam-prism-l2 {
        position: absolute;
        top: 0;
        left: calc(50% - 18px);
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, transparent 0%, #6366f1 45%, #8b5cf6 60%, transparent 100%);
        filter: blur(6px);
        mix-blend-mode: screen;
        opacity: 0.5;
    }

.h4-beam-prism-r2 {
        position: absolute;
        top: 0;
        left: calc(50% + 12px);
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, transparent 0%, #a855f7 45%, #d946ef 60%, transparent 100%);
        filter: blur(6px);
        mix-blend-mode: screen;
        opacity: 0.5;
    }

.h4-beam-1 { left: 8%; animation-delay: 0s; animation-duration: 7s; }

.h4-beam-2 { left: 22%; animation-delay: -2.5s; animation-duration: 9s; }

.h4-beam-3 { left: 36%; animation-delay: -1.2s; animation-duration: 7.5s; }

.h4-beam-4 { left: 52%; animation-delay: -4s; animation-duration: 8.5s; }

.h4-beam-5 { left: 68%; animation-delay: -0.8s; animation-duration: 6.5s; }

.h4-beam-6 { left: 82%; animation-delay: -3.2s; animation-duration: 9.5s; }

.h4-beam-7 { left: 92%; animation-delay: -5.5s; animation-duration: 8s; }

@keyframes beamFall {
        0% { transform: translateY(-110%); opacity: 0; }
        12% { opacity: 1; }
        88% { opacity: 1; }
        100% { transform: translateY(110%); opacity: 0; }
    }

/* floating pill tags */

.h4-tags-stage {
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        z-index: 12;
        pointer-events: none;
    }

.h4-float-tag {
        position: absolute;
        display: inline-flex;
        align-items: center;
        gap: 9px;
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.01em;
        white-space: nowrap;
        pointer-events: auto;
        text-shadow: 0 0 12px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.6);
        animation: tagFloat 7s ease-in-out infinite;
    }

.h4-float-tag-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        position: relative;
        color: var(--accent-color);
        filter: drop-shadow(0 0 8px rgba(var(--accent-rgb), 0.6));
    }

/* Tag 1 — Pulse dot (top right) */

.h4-float-tag-1 {
        top: 12%;
        right: 4%;
        animation-delay: 0s;
    }

.h4-float-tag-1 .h4-float-tag-icon::after {
        content: '';
        width: 10px;
        height: 10px;
        background: var(--accent-color);
        border-radius: 50%;
        box-shadow: 0 0 10px var(--accent-color), 0 0 20px rgba(var(--accent-rgb), 0.8);
        animation: pulseDot 2s ease-in-out infinite;
    }

/* Tag 2 — Sparkle icon (middle left) */

.h4-float-tag-2 {
        top: 50%;
        left: 0;
        animation-delay: 2.3s;
    }

.h4-float-tag-2 .h4-float-tag-icon svg {
        width: 16px;
        height: 16px;
        animation: sparkleSpin 5s linear infinite;
    }

/* Tag 3 — Bolt/lightning (bottom right) */

.h4-float-tag-3 {
        bottom: 14%;
        right: 10%;
        animation-delay: 4.6s;
    }

.h4-float-tag-3 .h4-float-tag-icon svg {
        width: 16px;
        height: 16px;
    }

@keyframes tagFloat {
        0%, 100% { transform: translateY(0) rotate(0); }
        50% { transform: translateY(-12px) rotate(0.5deg); }
    }

@keyframes pulseDot {
        0%, 100% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.3); opacity: 0.7; }
    }

@keyframes sparkleSpin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

@media (max-width: 1200px) {
  .h4-float-tag { font-size: 12px; gap: 7px; }

  .h4-float-tag-icon { width: 14px; height: 14px; }

  .h4-float-tag-1 .h4-float-tag-icon::after { width: 8px; height: 8px; }

  .h4-float-tag-2 .h4-float-tag-icon svg,
  .h4-float-tag-3 .h4-float-tag-icon svg { width: 13px; height: 13px; }
}

@media (max-width: 900px) {
  .h4-aurora-stage { display: none; }

  .h4-tags-stage { display: none; }
}

.h4-hero-char {
        width: clamp(320px, 40vw, 750px);
        height: auto;
        object-fit: contain;
        opacity: 0;
        filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.8)) blur(10px);
        mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
        -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
        transition:
            opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1),
            filter 1.5s cubic-bezier(0.4, 0, 0.2, 1),
            transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
        position: relative;
        z-index: 10;
        /* fade out + scale shift at bottom */
        -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 98%);
        mask-image: linear-gradient(to bottom, black 75%, transparent 98%);
        transform: scale(1.1) translateX(-60px) translateY(-20px);
    }

/* char1 — linear scale: 510px @ 1920, 680px @ 2560 */

.h4-char-1 {
        width: clamp(280px, 26.5vw, 800px) !important;
    }

/* L-awal tkon relative bax t3ti l-container l-hajm dyalo */

.h4-hero-char:first-child {
        position: relative;
    }

/* Tanya tkon fo9ha bzabt ltaht */

.h4-hero-char:not(:first-child) {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

.h4-hero-char.active {
        opacity: 1;
        filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.8)) blur(0);
        pointer-events: auto;
    }

/* dots */

/* hero images — responsive */

@media (max-width: 1200px) {
  .h4-hero-char {
            width: clamp(280px, 40vw, 480px);
        }
}

@media (max-width: 900px) {
  .h4-hero-char {
            width: 320px;
        }
}

@media (max-width: 600px) {
  .h4-hero-char {
            width: 240px;
        }
}

.h4-hero-features {
        display: flex;
        align-items: center;
        gap: 60px;
        margin-top: 100px;
    }

.h4-hero-feat-item {
        display: flex;
        align-items: center;
        gap: 20px;
        transition: 0.4s var(--ease-out-cubic);
    }

.h4-hero-feat-item:hover {
        transform: translateY(-5px);
    }

.h4-hero-feat-item i {
        width: 24px;
        height: 24px;
        color: #fff;
        flex-shrink: 0;
    }

.h4-feat-icon-box {
        width: 64px;
        height: 64px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.4s var(--ease-out-cubic);
        position: relative;
        overflow: hidden;
    }

.h4-hero-feat-item:hover .h4-feat-icon-box {
        background: rgba(var(--accent-rgb), 0.1);
        border-color: rgba(var(--accent-rgb), 0.3);
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(var(--accent-rgb), 0.1);
    }

.h4-hero-feat-item:hover i {
        color: var(--accent-color);
        filter: drop-shadow(0 0 8px var(--accent-glow));
    }

.h4-hero-feat-item span {
        font-size: 16px;
        font-weight: 800;
        color: #fff;
        letter-spacing: -0.01em;
    }

.h4-hero-feat-sub {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.4);
        font-weight: 500;
        max-width: 220px;
        line-height: 1.4;
    }

.h4-hero-arrow {
        position: absolute;
        bottom: 170px;
        left: 50%;
        transform: translateX(-50%);
        color: rgba(255, 255, 255, 0.2);
        animation: hero-bounce 2s infinite;
        cursor: pointer;
        transition: 0.3s;
        z-index: 10;
    }

.h4-hero-arrow:hover {
        color: #fff;
    }

@keyframes hero-bounce {

        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateY(0) translateX(-50%);
        }

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

        60% {
            transform: translateY(-5px) translateX(-50%);
        }
    }

.h4-hero-feat-txt {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

.h4-hero-feat-item span {
        font-size: 15px;
        font-weight: 900;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        line-height: 1.2;
    }

.h4-hero-feat-sub {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.35);
        font-weight: 600;
        text-transform: none;
        letter-spacing: 0;
    }

@media (max-width: 1100px) {
  .h4-inner-container {
            grid-template-columns: 1fr;
            gap: 40px;
            text-align: left;
            padding: 60px 24px;
            min-height: auto;
        }

  .h4-content {
            align-items: flex-start;
        }

  .h4-title-row2 {
            justify-content: flex-start;
        }

  .h4-desc {
            margin-left: 0;
            margin-right: auto;
            text-align: left;
        }

  .h4-actions {
            justify-content: flex-start;
            width: 100%;
        }

  .h4-image-wrap {
            display: none !important;
        }
}

@media (max-width: 768px) {
  .h4-sec {
            padding: 40px 20px 0;
            text-align: left;
            overflow-x: hidden !important;
            max-width: 100vw;
        }

  .h4-inner-container {
            display: flex !important;
            flex-direction: column !important;
            align-items: flex-start !important;
            justify-content: flex-start !important;
            text-align: left !important;
            width: 100% !important;
            max-width: 100% !important;
            padding: 40px 20px 10px !important;
            overflow-x: hidden !important;
        }

  .h4-content {
            padding: 0 !important;
            display: flex;
            flex-direction: column;
            align-items: flex-start !important;
            justify-content: flex-start !important;
            text-align: left !important;
            width: 100%;
        }

  .h4-kicker {
            justify-content: flex-start;
            font-size: 11px;
            letter-spacing: .15em;
        }

  .h4-title,
  .h4-title-outline {
            font-size: clamp(22px, 6vw, 34px);
            line-height: 1.05;
            text-align: left;
        }

  .h4-title-row2 {
            flex-direction: row;
            flex-wrap: nowrap;
            gap: 5px;
            margin-top: 4px;
            justify-content: flex-start;
            overflow: hidden;
            white-space: nowrap;
            max-width: 100%;
        }

  .h4-title-row2 .h4-title,
  .h4-title-row2 .h4-title-outline {
            white-space: nowrap;
            overflow: hidden;
            font-size: clamp(18px, 5.5vw, 30px);
        }

  .h4-desc {
            font-size: 14px;
            margin: 20px 0 32px;
            max-width: 100%;
            text-align: left;
        }

  .h4-actions {
            flex-direction: row !important;
            flex-wrap: wrap;
            gap: 12px !important;
            width: 100%;
            align-items: center !important;
            justify-content: center !important;
            margin-top: 8px;
        }

  .h4-btn-primary,
  .h4-btn-secondary {
            padding: 14px 24px !important;
            font-size: 14px !important;
            width: auto !important;
            min-width: 160px;
            justify-content: center;
            white-space: nowrap;
        }

  .feat-title {
            font-size: 24px !important;
            text-align: center;
            width: 100%;
        }

  .feat-hdr {
            flex-direction: column;
            gap: 16px;
            text-align: center;
            padding: 0 10px;
            align-items: center;
        }

  .feat-hdr-txt {
            text-align: center;
        }

  .feat-sub {
            text-align: center;
        }

  .feat-hdr::before,
  .feat-hdr::after {
            display: none;
        }

  .h4-image-wrap,
  .h4-hero-features,
  .h4-aurora-stage,
  .h4-tags-stage,
  .aurora-hero-bg,
  .h4-hero-arrow {
            display: none !important;
        }

  .h4-arrow-mobile {
            display: block !important;
            width: fit-content;
            position: relative;
            left: 50%;
            transform: translateX(-50%);
            margin: 24px 0 0;
            color: rgba(255, 255, 255, 0.3);
            animation: hero-bounce 2s infinite;
            cursor: pointer;
        }

  .h4-arrow-mobile:hover {
            color: #fff;
        }
}

/* aurora hero bg */

.aurora-hero-bg {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 250px;
        z-index: -1;
        pointer-events: none;
        opacity: 0.9;
        filter: blur(1px);
        mask-image: linear-gradient(to top, black, transparent);
        -webkit-mask-image: linear-gradient(to top, black, transparent);
        overflow: hidden;
    }

.aurora-hero-bg canvas {
        width: 100%;
        height: 100%;
    }

/* ─────────────────────────────────────────────────────────
       1080p scaling — shrink everything between 1200px and 1920px
       so the layout matches how it looks at 2K. global rem trick
       (html font-size 14px) + targeted px overrides per section.
       borrowed the approach from apex.
       ───────────────────────────────────────────────────────── */

@media (min-width: 1200px) and (max-width: 1920px) {
  html { font-size: 14px; }

/* hero */

  .h4-inner-container { padding: 40px 32px 50px !important; max-width: 1300px !important; min-height: 78vh !important; gap: 36px !important; }

  .h4-kicker { font-size: 11px !important; margin-bottom: 12px !important; }

  .h4-kicker i { width: 13px !important; height: 13px !important; }

  .h4-title { font-size: clamp(30px, 2.3vw, 46px) !important; line-height: .95 !important; }

  .h4-title-outline { font-size: clamp(30px, 2.3vw, 46px) !important; line-height: .95 !important; }

  .h4-title-row2 { gap: 12px !important; }

  .h4-desc { font-size: 13px !important; max-width: 380px !important; margin: 18px 0 22px !important; line-height: 1.6 !important; }

  .h4-actions { gap: 10px !important; }

  .h4-btn-primary { padding: 12px 24px !important; font-size: 12px !important; gap: 8px !important; }

  .h4-btn-secondary { padding: 12px 22px !important; font-size: 12px !important; gap: 8px !important; }

  .h4-btn-primary svg,
  .h4-btn-secondary svg { width: 13px !important; height: 13px !important; }

/* character image */

  .h4-char-1 { width: clamp(280px, 26.5vw, 520px) !important; }

/* hero feature row — matches 2K shape, scaled down for 1080p */

  .h4-hero-features { gap: 32px !important; margin-top: 32px !important; }

  .h4-hero-feat-item { padding: 0 !important; gap: 16px !important; }

  .h4-feat-icon-box {
            width: 46px !important;
            height: 46px !important;
            border-radius: 12px !important;
            background: rgba(255, 255, 255, 0.04) !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
        }

  .h4-hero-feat-item i { width: 22px !important; height: 22px !important; }

  .h4-hero-feat-item span,
  .h4-hero-feat-txt span { font-size: 13px !important; }

  .h4-hero-feat-sub { font-size: 12px !important; line-height: 1.5 !important; max-width: 220px !important; }

  .h4-hero-feat-txt { gap: 3px !important; }

/* floating tags */

  .h4-float-tag { font-size: 10px !important; padding: 6px 12px !important; gap: 6px !important; }

  .h4-float-tag-icon { width: 12px !important; height: 12px !important; }

  .h4-float-tag-icon svg { width: 11px !important; height: 11px !important; }

/* featured section — this was still showing big */

  .feat-section { padding: 50px 0 60px !important; }

  .feat-wrap { padding: 0 32px 30px !important; max-width: 1300px !important; }

  .feat-title { font-size: clamp(22px, 2.4vw, 36px) !important; letter-spacing: -0.02em !important; }

  .feat-sub { font-size: 12px !important; margin-top: 8px !important; }

  .feat-hdr { margin-bottom: 28px !important; }

/* featured cards — were 500px hardcoded */

  .f8-card { width: 360px !important; min-width: 360px !important; border-radius: 16px !important; }

  .f8-img-wrap { aspect-ratio: 16 / 10 !important; }

  .f8-body { padding: 14px 16px !important; gap: 8px !important; }

  .f8-name { font-size: 14px !important; line-height: 1.3 !important; }

  .f8-price-row { gap: 8px !important; }

  .f8-price { font-size: 22px !important; }

  .f8-old { font-size: 12px !important; }

  .f8-discount-badge { font-size: 10px !important; padding: 3px 8px !important; }

  .f8-btn { padding: 9px 14px !important; font-size: 12px !important; }

  .f8-badges { gap: 5px !important; }

  .f8-badge { font-size: 9px !important; padding: 3px 7px !important; }

  .f8-sale,
  .f8-tag { font-size: 9px !important; padding: 3px 9px !important; }

/* master collection / bundle */

  .bundle-x-wrap { padding: 28px 32px !important; }

  .bundle-x-left h2 { font-size: clamp(28px, 3vw, 44px) !important; }

  .bundle-x-left p { font-size: 13px !important; }

  .bundle-x-right span:last-child { font-size: 42px !important; }

  .bundle-x-btn { padding: 13px 26px !important; font-size: 12px !important; }

/* achievements (v1) */

  .v1-title { font-size: clamp(26px, 2.6vw, 40px) !important; }

  .v1-sub { font-size: 13px !important; }

  .v1-num { font-size: clamp(36px, 4vw, 56px) !important; }

  .v1-grid { gap: 24px !important; }

/* youtube section */

  .lxy-yt-section { padding: 48px 0 !important; }

  .lxy-yt-kicker { font-size: 10px !important; }

  .lxy-yt-title { font-size: clamp(24px, 2.6vw, 40px) !important; }

  .lxy-yt-sub { font-size: 13px !important; }

/* reviews */

  .reviews-section { padding: 50px 0 !important; }

  .r8-score { font-size: clamp(56px, 6vw, 84px) !important; }

  .r1-card { width: 300px !important; padding: 18px !important; }

/* faq */

  .lxy-faq-h2 { font-size: clamp(22px, 2.4vw, 36px) !important; }

  .lxy-faq-q-txt { font-size: 13px !important; }

  .lxy-faq-ans-in { font-size: 12px !important; }

/* support / s3 */

  .s3-editorial-wrap {
            max-width: 1100px !important;
            margin: 60px auto 70px !important;
            padding: 60px 32px 70px !important;
            gap: 50px !important;
        }

  .s3-title { font-size: clamp(26px, 2.8vw, 44px) !important; }

  .s3-kicker { font-size: 10px !important; margin-bottom: 10px !important; }

  .s3-text { font-size: 13px !important; max-width: 460px !important; margin-top: 14px !important; }

  .s3-btn { padding: 12px 26px !important; font-size: 12px !important; }

  .s3-note { font-size: 11px !important; margin-top: 14px !important; }
}

/* typing cursor — kept here since it's small + page-specific */

.typing-cursor {
                    font-weight: 300;
                    color: var(--accent-color);
                    animation: blink-cursor 1s step-end infinite;
                    margin-left: 5px;
                    opacity: 1;
                }

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

/* youtube section dual grid */

.lxy-yt-section {
        padding: 140px 24px;
        position: relative;
        max-width: 1800px;
        width: 75%;
        margin: 0 auto;
    }

.lxy-yt-header {
        text-align: center;
        margin-bottom: 80px;
    }

.lxy-yt-kicker {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: var(--accent-color);
        background: rgba(var(--accent-rgb), 0.1);
        padding: 10px 20px;
        border-radius: 100px;
        margin-bottom: 24px;
        border: 1px solid rgba(var(--accent-rgb), 0.2);
    }

.lxy-yt-kicker::before {
        content: '';
        width: 8px;
        height: 8px;
        background: var(--accent-color);
        border-radius: 50%;
        box-shadow: 0 0 12px var(--accent-color);
    }

.lxy-yt-title {
        font-size: clamp(40px, 7vw, 65px);
        font-weight: 900;
        letter-spacing: -0.03em;
        color: #fff;
        margin-bottom: 20px;
        line-height: 1.1;
    }

.lxy-yt-title span { color: var(--accent-color); text-shadow: 0 0 40px rgba(var(--accent-rgb), 0.45); }

.lxy-yt-sub {
        font-size: 19px;
        color: rgba(255, 255, 255, 0.4);
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }

.lxy-yt-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-top: 20px;
    }

.lxy-yt-card-wrap {
        position: relative;
        border-radius: 24px;
        padding: 1px;
        background: linear-gradient(180deg, rgba(255,255,255,0.1), transparent);
        transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

.lxy-yt-card-wrap:hover {
        transform: translateY(-8px);
        background: linear-gradient(180deg, var(--accent-color), transparent);
        box-shadow: 0 30px 60px -12px rgba(0,0,0,0.6);
    }

.lxy-yt-thumb {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        border-radius: 23px;
        overflow: hidden;
        cursor: pointer;
        background: #0a0a0c;
    }

.lxy-yt-thumb img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s;
        filter: brightness(0.8);
    }

.lxy-yt-card-wrap:hover .lxy-yt-thumb img { 
        transform: scale(1.08); 
        filter: brightness(1);
    }

.lxy-yt-play {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
        z-index: 2;
    }

.lxy-yt-play svg { 
        width: 28px; 
        height: 28px; 
        color: #fff; 
        margin-left: 4px;
        transition: 0.3s;
    }

.lxy-yt-card-wrap:hover .lxy-yt-play {
        background: var(--accent-color);
        border-color: var(--accent-color);
        width: 90px;
        height: 90px;
        box-shadow: 0 0 40px rgba(var(--accent-rgb), 0.5);
    }

.lxy-yt-card-wrap:hover .lxy-yt-play svg { transform: scale(1.15); }

.lxy-yt-frame {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: none;
        z-index: 5;
    }

@keyframes lxyYtPulse {
        0% { box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.55); }
        100% { box-shadow: 0 0 0 30px rgba(var(--accent-rgb), 0); }
    }

@media (max-width: 992px) {
  .lxy-yt-grid { grid-template-columns: 1fr; gap: 24px; }

  .lxy-yt-section { padding: 80px 16px; width: 100%; }
}
