* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --accent: #A78BFA;
    --accent2: #C4B5FD;
    --accent3: #7C3AED;
    --accent-warm: #F59E0B;
    --accent-warm2: #FBBF24;
    --accent-rose: #F472B6;
    --accent-cyan: #22D3EE;
    --bg: #030014;
    --bg2: #0A0520;
    --bg3: #110B30;
    --card: #0D0825;
    --card2: #13093A;
    --card3: #1A0F4A;
    --border: rgba(167, 139, 250, 0.08);
    --border2: rgba(167, 139, 250, 0.15);
    --border-accent: rgba(167, 139, 250, 0.25);
    --border-accent2: rgba(167, 139, 250, 0.4);
    --border-warm: rgba(245, 158, 11, 0.25);
    --white: #fff;
    --gray: #8B83A8;
    --light: #BEB8D4;
    --dim: #5A5478;
    --green: #34D399;
    --red: #FB7185;
    --glow-v: 0 0 60px rgba(124, 58, 237, 0.15);
    --grad-main: linear-gradient(135deg, #A78BFA 0%, #F59E0B 50%, #F472B6 100%);
    --grad-violet: linear-gradient(135deg, #7C3AED, #A78BFA, #C4B5FD);
    --grad-card: linear-gradient(135deg, rgba(167, 139, 250, 0.05), rgba(245, 158, 11, 0.03));
    --grad-glow: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    --r: 14px;
    --r2: 20px;
    --r3: 28px;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6
}

#particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .5
}

.ambient {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden
}

.ambient .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .12;
    animation: orbFloat 20s ease-in-out infinite
}

.ambient .orb1 {
    width: 500px;
    height: 500px;
    background: #7C3AED;
    top: -10%;
    left: -10%
}

.ambient .orb2 {
    width: 400px;
    height: 400px;
    background: #F59E0B;
    bottom: 10%;
    right: -5%;
    animation-delay: 5s
}

.ambient .orb3 {
    width: 350px;
    height: 350px;
    background: #F472B6;
    top: 40%;
    left: 30%;
    animation-delay: 10s
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    33% {
        transform: translate(30px, -20px) scale(1.05)
    }

    66% {
        transform: translate(-20px, 30px) scale(.95)
    }
}

.z1 {
    position: relative;
    z-index: 1
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px
}

.text-center {
    text-align: center
}

.gold-text {
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

/* MARQUEE */
.marquee {
    background: var(--grad-main);
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    z-index: 100
}

.marquee-inner {
    display: flex;
    animation: scroll 22s linear infinite;
    white-space: nowrap
}

.marquee-inner span {
    flex-shrink: 0;
    padding: 0 36px;
    font-size: 12px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: .5px;
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.marquee-inner span i {
    font-size: 8px
}

@keyframes scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* NAV */
.nav {
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(3, 0, 20, .65);
    backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--border);
    padding: 12px 0
}

.nav .inner {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px
}

.logo .d {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent)
}

.nav-r {
    display: flex;
    align-items: center;
    gap: 16px
}

.nav-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--gray);
    background: var(--card);
    border: 1px solid var(--border);
    padding: 5px 12px;
    border-radius: 100px
}

.nav-live .dot {
    width: 5px;
    height: 5px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--green);
    animation: blink 1.2s infinite
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

.nav-cta {
    background: var(--grad-main);
    color: #000;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    transition: .2s;
    border: none;
    cursor: pointer
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(167, 139, 250, .3)
}

/* HERO */
.hero {
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden
}

.hero::after {
    content: '';
    position: absolute;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: var(--grad-glow);
    pointer-events: none
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.hero-left {
    position: relative;
    z-index: 2
}

.urgency-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(251, 113, 133, .08);
    border: 1px solid rgba(251, 113, 133, .2);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 16px;
    animation: urgPulse 2s infinite
}

@keyframes urgPulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .7
    }
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 16px
}

.hero h1 .big-num {
    font-size: clamp(40px, 5.5vw, 62px);
    display: block;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-sub {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 480px
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px
}

.trust-chip {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(167, 139, 250, 0.06);
    border: 1px solid var(--border);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--light)
}

.trust-chip i {
    color: var(--accent);
    font-size: 10px
}

.live-counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(52, 211, 153, .06);
    border: 1px solid rgba(52, 211, 153, .15);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 24px
}

.live-counter .ldot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--green);
    animation: blink 1s infinite
}

.price-block {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap
}

.price-old {
    text-decoration: line-through;
    color: var(--dim);
    font-size: 18px
}

.price-new {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #fff
}

.price-save {
    background: rgba(52, 211, 153, .1);
    border: 1px solid rgba(52, 211, 153, .25);
    color: var(--green);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    align-self: center
}

/* CTA */
.cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: .25s;
    position: relative;
    overflow: hidden
}

.cta-main {
    background: var(--grad-main);
    color: #000;
    width: 100%;
    max-width: 420px;
    justify-content: center
}

.cta-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(167, 139, 250, .3), 0 8px 24px rgba(245, 158, 11, .2)
}

.cta-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
    transition: .6s
}

.cta-main:hover::after {
    left: 150%
}

.cta-sub {
    font-size: 11px;
    color: var(--dim);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
    flex-wrap: wrap
}

.cta-sub span {
    display: flex;
    align-items: center;
    gap: 3px
}

.cta-sub i {
    font-size: 9px;
    color: var(--accent)
}

.bought-banner {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(167, 139, 250, 0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    margin-top: 16px;
    font-size: 12px;
    color: var(--light)
}

.bought-banner .avatars {
    display: flex;
    margin-right: 4px
}

.bought-banner .av {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--bg);
    margin-left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: var(--white)
}

.bought-banner .av:first-child {
    margin-left: 0
}

.bought-banner .av:nth-child(1) {
    background: var(--accent3)
}

.bought-banner .av:nth-child(2) {
    background: var(--accent-warm)
}

.bought-banner .av:nth-child(3) {
    background: var(--accent-rose)
}

.bought-banner .av:nth-child(4) {
    background: var(--accent-cyan)
}

.bought-banner .av:nth-child(5) {
    background: var(--accent)
}

/* Hero Right */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center
}

.hero-image-wrap {
    position: relative;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    perspective: 1000px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.7), 0 0 60px rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(167, 139, 250, 0.1);
    animation: floatHero 6s ease-in-out infinite;
    transition: 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.hero-image:hover {
    transform: scale(1.02) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.8), 0 0 80px rgba(124, 58, 237, 0.25);
}

@keyframes floatHero {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

.hero-right::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    z-index: -1;
    filter: blur(40px);
}

.float-badge {
    position: absolute;
    background: rgba(13, 8, 37, .92);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border2);
    border-radius: 12px;
    padding: 10px 14px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    animation: floaty 3s ease-in-out infinite;
    white-space: nowrap
}

.float-badge.fb1 {
    top: 10px;
    left: -30px
}

.float-badge.fb2 {
    bottom: 40px;
    right: -40px;
    animation-delay: 1.5s
}

.float-badge.fb3 {
    top: 45%;
    right: -50px;
    animation-delay: .8s
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }
}

.float-badge .fi {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.float-badge .fi i {
    font-size: 12px
}

.float-badge .fi.fi-v {
    background: rgba(167, 139, 250, .15)
}

.float-badge .fi.fi-v i {
    color: var(--accent)
}

.float-badge .fi.fi-w {
    background: rgba(245, 158, 11, .15)
}

.float-badge .fi.fi-w i {
    color: var(--accent-warm)
}

.float-badge .fi.fi-c {
    background: rgba(34, 211, 238, .15)
}

.float-badge .fi.fi-c i {
    color: var(--accent-cyan)
}

.float-badge strong {
    color: #fff;
    font-weight: 600
}

.float-badge span {
    color: var(--gray)
}

/* PROOF STRIP */
.proof-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    background: var(--bg2)
}

.proof-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--light)
}

.proof-item i {
    font-size: 14px
}

.proof-item i.fa-check-circle {
    color: var(--accent)
}

.proof-item i.fa-star {
    color: var(--accent-warm)
}

.proof-item strong {
    color: #fff
}

/* TIMER */
.timer-bar {
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
    text-align: center;
    position: relative;
    overflow: hidden
}

.timer-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--grad-main);
    opacity: .3
}

.timer-label {
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.timer-boxes {
    display: flex;
    justify-content: center;
    gap: 10px
}

.t-box {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 20px;
    min-width: 72px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.t-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(167, 139, 250, 0.03), transparent);
    pointer-events: none
}

.t-box .tn {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1
}

.t-box .tl {
    font-size: 9px;
    color: var(--dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 3px;
    font-weight: 600
}

/* SECTIONS */
.sec {
    padding: 80px 0
}

.sec-alt {
    background: var(--bg2)
}

.sec-head {
    text-align: center;
    margin-bottom: 48px
}

.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px
}

.sec-tag::before,
.sec-tag::after {
    content: '';
    width: 16px;
    height: 1px;
    background: var(--accent);
    opacity: .3
}

.sec-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.8px;
    margin-bottom: 12px
}

.sec-desc {
    font-size: 15px;
    color: var(--gray);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65
}

/* VIDEO SAMPLES */
.vid-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 0 20px 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none
}

.vid-scroll::-webkit-scrollbar {
    display: none
}

.vid-card {
    flex: 0 0 180px;
    aspect-ratio: 9/16;
    background: #000;
    border: 1px solid var(--border);
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    cursor: pointer;
    transition: .3s
}

.vid-card video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0
}

.vid-card:hover {
    border-color: var(--border-accent);
    transform: scale(1.03)
}

.vid-card .vc-shim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(167, 139, 250, .03), rgba(245, 158, 11, .05))
}

.vid-card .vc-over {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(3, 0, 20, .92) 100%);
    z-index: 1
}

.vid-card .vc-play {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: rgba(167, 139, 250, .12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(167, 139, 250, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: .3s
}

.vid-card:hover .vc-play {
    background: var(--accent);
    border-color: var(--accent)
}

.vid-card .vc-play i {
    color: #fff;
    font-size: 14px;
    margin-left: 2px
}

.vid-card .vc-info {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    z-index: 2
}

.vid-card .vc-cat {
    font-size: 9px;
    font-weight: 700;
    color: var(--accent-warm);
    text-transform: uppercase;
    letter-spacing: 1px
}

.vid-card .vc-title {
    font-size: 12px;
    font-weight: 600;
    margin-top: 2px
}

.vid-card .vc-stat {
    font-size: 10px;
    color: var(--gray);
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 4px
}

.vid-card .vc-stat i {
    font-size: 8px;
    color: var(--accent-rose)
}

/* BENTO */
.bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px
}

.b-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 28px;
    transition: .35s;
    position: relative;
    overflow: hidden
}

.b-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--grad-main);
    opacity: 0;
    transition: .35s
}

.b-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-3px);
    box-shadow: var(--glow-v)
}

.b-card:hover::before {
    opacity: 1
}

.b-span8 {
    grid-column: span 8
}

.b-span4 {
    grid-column: span 4
}

.b-featured {
    background: linear-gradient(135deg, rgba(167, 139, 250, .06), rgba(245, 158, 11, .03));
    border-color: var(--border-accent)
}

.b-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0
}

.b-icon.bi-v {
    background: rgba(167, 139, 250, .1);
    border: 1px solid rgba(167, 139, 250, .15)
}

.b-icon.bi-v i {
    color: var(--accent)
}

.b-icon.bi-w {
    background: rgba(245, 158, 11, .1);
    border: 1px solid rgba(245, 158, 11, .15)
}

.b-icon.bi-w i {
    color: var(--accent-warm)
}

.b-icon.bi-r {
    background: rgba(244, 114, 182, .1);
    border: 1px solid rgba(244, 114, 182, .15)
}

.b-icon.bi-r i {
    color: var(--accent-rose)
}

.b-icon.bi-c {
    background: rgba(34, 211, 238, .1);
    border: 1px solid rgba(34, 211, 238, .15)
}

.b-icon.bi-c i {
    color: var(--accent-cyan)
}

.b-icon i {
    font-size: 18px
}

.b-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.b-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px
}

.b-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.55
}

.b-card.b-flex {
    display: flex;
    gap: 24px;
    align-items: center
}

.b-card.b-flex .b-icon {
    margin-bottom: 0
}

/* COMPARISON */
.compare-table {
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid var(--border);
    border-radius: var(--r2);
    overflow: hidden
}

.ct-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border)
}

.ct-row:last-child {
    border-bottom: 0
}

.ct-head {
    background: var(--card2)
}

.ct-cell {
    padding: 14px 20px;
    font-size: 13px;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 6px
}

.ct-cell:not(:first-child) {
    justify-content: center
}

.ct-cell i.fa-check-circle {
    color: var(--green)
}

.ct-cell i.fa-times-circle {
    color: var(--red);
    opacity: .4
}

.ct-cell.ct-highlight {
    color: var(--accent);
    font-weight: 700
}

.ct-head .ct-cell {
    font-weight: 700;
    color: var(--white)
}

.ct-head .ct-highlight {
    background: linear-gradient(135deg, rgba(167, 139, 250, .1), rgba(245, 158, 11, .05))
}

/* WHO FOR */
.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.who-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 24px;
    transition: .3s
}

.who-card:hover {
    border-color: var(--border-accent);
    background: var(--card2);
    box-shadow: var(--glow-v)
}

.who-card .wi {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px
}

.who-card:nth-child(1) .wi {
    background: rgba(167, 139, 250, .1)
}

.who-card:nth-child(1) .wi i {
    color: var(--accent)
}

.who-card:nth-child(2) .wi {
    background: rgba(245, 158, 11, .1)
}

.who-card:nth-child(2) .wi i {
    color: var(--accent-warm)
}

.who-card:nth-child(3) .wi {
    background: rgba(244, 114, 182, .1)
}

.who-card:nth-child(3) .wi i {
    color: var(--accent-rose)
}

.who-card:nth-child(4) .wi {
    background: rgba(34, 211, 238, .1)
}

.who-card:nth-child(4) .wi i {
    color: var(--accent-cyan)
}

.who-card:nth-child(5) .wi {
    background: rgba(52, 211, 153, .1)
}

.who-card:nth-child(5) .wi i {
    color: var(--green)
}

.who-card:nth-child(6) .wi {
    background: rgba(167, 139, 250, .1)
}

.who-card:nth-child(6) .wi i {
    color: var(--accent2)
}

.who-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px
}

.who-card p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.55
}

/* PLATFORMS */
.plat-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px
}

.plat-chip {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: .3s
}

.plat-chip:hover {
    border-color: var(--border-accent);
    box-shadow: var(--glow-v)
}

.plat-chip i {
    font-size: 20px;
    color: var(--accent)
}

.plat-chip span {
    font-size: 13px;
    font-weight: 600
}

/* MONEY */
.money-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.money-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 24px;
    text-align: center;
    transition: .3s
}

.money-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
    box-shadow: var(--glow-v)
}

.money-card .mi {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px
}

.money-card:nth-child(1) .mi {
    background: rgba(167, 139, 250, .1)
}

.money-card:nth-child(1) .mi i {
    color: var(--accent)
}

.money-card:nth-child(2) .mi {
    background: rgba(245, 158, 11, .1)
}

.money-card:nth-child(2) .mi i {
    color: var(--accent-warm)
}

.money-card:nth-child(3) .mi {
    background: rgba(244, 114, 182, .1)
}

.money-card:nth-child(3) .mi i {
    color: var(--accent-rose)
}

.money-card:nth-child(4) .mi {
    background: rgba(34, 211, 238, .1)
}

.money-card:nth-child(4) .mi i {
    color: var(--accent-cyan)
}

.money-card:nth-child(5) .mi {
    background: rgba(52, 211, 153, .1)
}

.money-card:nth-child(5) .mi i {
    color: var(--green)
}

.money-card:nth-child(6) .mi {
    background: rgba(167, 139, 250, .1)
}

.money-card:nth-child(6) .mi i {
    color: var(--accent2)
}

.money-card h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px
}

.money-card .earn {
    font-size: 11px;
    color: var(--green);
    font-weight: 700;
    margin-bottom: 6px
}

.money-card p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.5
}

/* STEPS */
.steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 800px;
    margin: 0 auto
}

.step {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 28px 24px;
    text-align: center;
    position: relative;
    transition: .3s
}

.step:first-child {
    border-radius: var(--r) 0 0 var(--r)
}

.step:last-child {
    border-radius: 0 var(--r) var(--r) 0
}

.step:hover {
    background: var(--card2);
    border-color: var(--border-accent)
}

.step .sn {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.step h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px
}

.step p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.5
}

.step-arrow {
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--card);
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2
}

.step-arrow i {
    color: var(--accent);
    font-size: 8px
}

/* BONUSES */
.bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.bonus-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: .35s
}

.bonus-card::after {
    content: 'FREE';
    position: absolute;
    top: 14px;
    right: -26px;
    background: var(--green);
    color: #000;
    padding: 3px 32px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    transform: rotate(45deg)
}

.bonus-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
    box-shadow: var(--glow-v)
}

.bonus-card .bn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(167, 139, 250, .1);
    border: 1px solid var(--border-accent);
    border-radius: 7px;
    font-size: 13px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 14px
}

.bonus-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px
}

.bonus-card p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.55;
    margin-bottom: 10px
}

.bonus-card .bv {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(245, 158, 11, .08);
    border: 1px solid var(--border-warm);
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-warm)
}

/* MEGA CTA */
.mega-sec {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden
}

.mega-sec::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: var(--grad-glow);
    pointer-events: none
}

.mega-box {
    background: var(--card);
    border: 1px solid var(--border-accent2);
    border-radius: var(--r3);
    padding: 48px 36px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    box-shadow: var(--glow-v)
}

.mega-box::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--r3);
    padding: 1px;
    background: linear-gradient(135deg, rgba(167, 139, 250, .4), transparent 30%, transparent 70%, rgba(245, 158, 11, .3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    -webkit-mask-composite: exclude;
    mask-composite: exclude;
    pointer-events: none
}

.mega-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(52, 211, 153, .06);
    border: 1px solid rgba(52, 211, 153, .15);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 20px
}

.mega-includes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 20px 0
}

.mega-inc {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--light)
}

.mega-inc i {
    color: var(--accent);
    font-size: 10px
}

.mega-price .mp-old {
    font-size: 20px;
    text-decoration: line-through;
    color: var(--dim)
}

.mega-price .mp-new {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    display: block;
    line-height: 1.1;
    margin: 6px 0
}

.mega-price .mp-note {
    font-size: 12px;
    color: var(--gray)
}

.mega-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 20px
}

.mega-trust span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--gray)
}

.mega-trust span i {
    color: var(--accent);
    font-size: 13px
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(167, 139, 250, 0.04);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    max-width: 420px;
    margin: 20px auto 0;
    text-align: left
}

.guarantee .gi {
    width: 40px;
    height: 40px;
    background: rgba(167, 139, 250, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.guarantee .gi i {
    color: var(--accent);
    font-size: 16px
}

.guarantee p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.4
}

.guarantee p strong {
    color: var(--light)
}

/* REVIEWS */
.rev-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.rev-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 24px;
    transition: .3s
}

.rev-card:hover {
    border-color: var(--border-accent)
}

.rev-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 10px
}

.rev-stars i {
    color: var(--accent-warm);
    font-size: 12px
}

.rev-card .rev-text {
    font-size: 13px;
    color: var(--light);
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic
}

.rev-card .rev-result {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(52, 211, 153, .06);
    border: 1px solid rgba(52, 211, 153, .12);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 12px
}

.rev-author {
    display: flex;
    align-items: center;
    gap: 8px
}

.rev-av {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff
}

.rev-card:nth-child(1) .rev-av {
    background: var(--accent3)
}

.rev-card:nth-child(2) .rev-av {
    background: var(--accent-warm)
}

.rev-card:nth-child(3) .rev-av {
    background: var(--accent-rose)
}

.rev-card:nth-child(4) .rev-av {
    background: var(--accent-cyan)
}

.rev-card:nth-child(5) .rev-av {
    background: var(--green)
}

.rev-card:nth-child(6) .rev-av {
    background: var(--accent)
}

.rev-name {
    font-size: 12px;
    font-weight: 600
}

.rev-role {
    font-size: 10px;
    color: var(--gray)
}

/* FAQ */
.faq-wrap {
    max-width: 640px;
    margin: 0 auto
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 6px;
    overflow: hidden;
    transition: .3s
}

.faq-item:hover {
    border-color: var(--border-accent)
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    background: var(--card)
}

.faq-q h3 {
    font-size: 14px;
    font-weight: 600
}

.faq-q i {
    color: var(--accent);
    font-size: 10px;
    transition: .3s
}

.faq-item.active .faq-q i {
    transform: rotate(180deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: .4s ease
}

.faq-a-inner {
    padding: 10px 20px 16px;
    font-size: 13px;
    color: var(--gray);
    line-height: 1.65
}

.faq-item.active .faq-a {
    max-height: 200px
}

/* FOOTER */
.footer {
    border-top: 1px solid var(--border);
    padding: 40px 0 20px
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px
}

.footer-brand .fl {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px
}

.footer-brand .fl .d {
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent)
}

.footer-brand p {
    font-size: 12px;
    color: var(--gray);
    max-width: 260px;
    line-height: 1.5
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.footer-links a {
    font-size: 12px;
    color: var(--gray);
    text-decoration: none;
    transition: .2s
}

.footer-links a:hover {
    color: var(--accent)
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 16px;
    text-align: center
}

.footer-bottom p {
    font-size: 10px;
    color: #3a3450;
    line-height: 1.6
}

/* TOAST */
.toast {
    position: fixed;
    bottom: 24px;
    left: 20px;
    background: rgba(13, 8, 37, .95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border2);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    max-width: 340px;
    transform: translateX(-120%);
    transition: .5s cubic-bezier(.68, -.55, .265, 1.55);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .6), var(--glow-v)
}

.toast.show {
    transform: translateX(0)
}

.toast-ic {
    width: 32px;
    height: 32px;
    background: rgba(167, 139, 250, .12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.toast-ic i {
    color: var(--accent);
    font-size: 12px
}

.toast-name {
    font-size: 12px;
    font-weight: 600
}

.toast-act {
    font-size: 10px;
    color: var(--gray)
}

.toast-time {
    font-size: 9px;
    color: var(--accent-warm)
}

.toast-close {
    background: none;
    border: none;
    color: var(--dim);
    cursor: pointer;
    font-size: 10px;
    padding: 4px
}

/* EXIT INTENT */
.exit-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 0, 20, .9);
    backdrop-filter: blur(8px);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.exit-overlay.show {
    display: flex
}

.exit-box {
    background: var(--card);
    border: 1px solid var(--border-accent2);
    border-radius: var(--r3);
    padding: 40px 32px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: popIn .4s ease;
    box-shadow: var(--glow-v)
}

@keyframes popIn {
    from {
        transform: scale(.9);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.exit-box .ex-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 16px
}

.exit-box h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px
}

.exit-box p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.5
}

.exit-box .ex-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px
}

.exit-box .ex-price s {
    font-size: 16px;
    color: var(--dim);
    font-weight: 400;
    margin-right: 8px
}

/* SCROLL TOP */
.scroll-top {
    position: fixed;
    bottom: 24px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--card2);
    border: 1px solid var(--border2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    transform: translateY(16px);
    transition: .3s;
    color: var(--accent);
    font-size: 14px
}

.scroll-top.show {
    opacity: 1;
    transform: translateY(0)
}

.scroll-top:hover {
    border-color: var(--accent);
    box-shadow: var(--glow-v)
}

/* STICKY MOBILE */
.sticky-mob {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(3, 0, 20, .95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border2);
    padding: 10px 16px;
    z-index: 98
}

.sticky-mob .si {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px
}

.sticky-mob .sp span {
    font-size: 10px;
    color: var(--gray);
    display: block
}

.sticky-mob .sp strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff
}

.sticky-mob .sp strong s {
    font-size: 12px;
    color: var(--dim);
    font-weight: 400;
    margin-left: 6px
}

.sticky-mob .sb {
    background: var(--grad-main);
    color: #000;
    padding: 11px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    white-space: nowrap
}

/* ====== CHECKOUT POPUP ====== */
.checkout-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 0, 20, 0.85);
    backdrop-filter: blur(16px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.checkout-overlay.show {
    display: flex;
}

.checkout-box {
    background: #0D0825;
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 24px;
    max-width: 480px;
    width: 100%;
    position: relative;
    animation: modalScaleUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8), 0 0 50px rgba(124, 58, 237, 0.15);
    overflow: hidden;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalScaleUp {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.checkout-box::-webkit-scrollbar {
    width: 4px;
}

.checkout-box::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

.checkout-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--light);
    z-index: 10;
    transition: 0.2s;
}

.checkout-close:hover {
    background: rgba(251, 113, 133, 0.1);
    border-color: rgba(251, 113, 133, 0.3);
    color: var(--red);
}

.ch-header {
    padding: 32px 32px 24px;
    background: linear-gradient(180deg, rgba(167, 139, 250, 0.1) 0%, transparent 100%);
    text-align: center;
}

.ch-header .ch-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.2);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ch-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.ch-header p {
    font-size: 14px;
    color: var(--gray);
}

.ch-summary {
    padding: 0 32px 24px;
}

.ch-summary-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
}

.ch-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--light);
}

.ch-item.ch-total {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-bottom: 0;
    align-items: baseline;
}

.ch-item.ch-total .ch-label {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.ch-item.ch-total .ch-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ch-item.ch-total .ch-old {
    font-size: 14px;
    text-decoration: line-through;
    color: var(--dim);
    font-weight: 400;
    margin-right: 8px;
    -webkit-text-fill-color: var(--dim);
}

.ch-form {
    padding: 0 32px 24px;
}

.ch-form h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ch-form h3::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.ch-field {
    margin-bottom: 16px;
}

.ch-field label {
    display: none;
}

.ch-input-icon {
    position: relative;
}

.ch-input-icon i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dim);
    font-size: 16px;
    transition: 0.2s;
}

.ch-input {
    width: 100%;
    padding: 16px 16px 16px 52px;
    background: rgba(3, 0, 20, 0.4);
    border: 1.5px solid var(--border2);
    border-radius: 14px;
    color: #fff;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: 0.25s;
    outline: none;
}

.ch-input::placeholder {
    color: var(--dim);
    font-weight: 500;
}

.ch-input:focus {
    border-color: var(--accent);
    background: rgba(167, 139, 250, 0.05);
    box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.1);
}

.ch-input-icon:focus-within i {
    color: var(--accent);
}

.ch-field.has-error .ch-input {
    border-color: var(--red);
}

.ch-field.has-error .ch-error {
    display: block;
    color: var(--red);
    font-size: 11px;
    margin-top: 6px;
    font-weight: 500;
}

.ch-cta-wrap {
    padding: 0 32px 32px;
}

.ch-cta {
    width: 100%;
    padding: 18px;
    border-radius: 14px;
    background: var(--grad-main);
    color: #000;
    font-family: 'Space Grotesk';
    font-size: 20px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(167, 139, 250, 0.3);
    position: relative;
    overflow: hidden;
}

.ch-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(167, 139, 250, 0.4);
}

.ch-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.ch-cta:hover::after {
    left: 150%;
}

.ch-cta .spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.ch-cta.loading .spinner {
    display: block;
}

.ch-cta.loading .cta-text {
    display: none;
}

.ch-trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
}

.ch-trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ch-trust-badge i {
    color: var(--green);
    font-size: 12px;
}

.ch-success {
    padding: 60px 40px;
    text-align: center;
    display: none;
}

.ch-success-icon {
    width: 80px;
    height: 80px;
    background: rgba(52, 211, 153, 0.1);
    border: 2px solid var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--green);
    margin: 0 auto 24px;
    animation: successCheck 0.5s cubic-bezier(0.12, 0, 0.39, 0) forwards;
}

@keyframes successCheck {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.ch-success h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    margin-bottom: 12px;
}

.ch-success p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 32px;
}

.ch-success .ch-email-highlight {
    color: var(--accent);
    font-weight: 700;
}

/* Countdown in checkout */
.ch-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    background: rgba(251, 113, 133, .06);
    border-top: 1px solid rgba(251, 113, 133, .1);
    font-size: 11px;
    font-weight: 600;
    color: var(--red)
}

.ch-countdown i {
    font-size: 10px;
    animation: urgPulse 1.5s infinite
}

/* Recently bought in checkout */
.ch-recent {
    padding: 12px 32px;
    background: rgba(167, 139, 250, .03);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--light)
}

.ch-recent .ch-ravs {
    display: flex;
    margin-right: 2px
}

.ch-recent .ch-rav {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--card);
    margin-left: -6px;
    font-size: 7px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center
}

.ch-recent .ch-rav:first-child {
    margin-left: 0
}

.ch-recent .ch-rav:nth-child(1) {
    background: var(--accent3)
}

.ch-recent .ch-rav:nth-child(2) {
    background: var(--accent-warm)
}

.ch-recent .ch-rav:nth-child(3) {
    background: var(--accent-rose)
}

.ch-recent strong {
    color: #fff
}

/* Video Popup */
.video-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 0, 20, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: vFadeIn 0.3s ease;
}

.video-overlay.show {
    display: flex;
}

.video-popup-box {
    position: relative;
    max-width: 420px;
    width: 100%;
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(167, 139, 250, 0.2);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    transition: 0.4s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.video-overlay.show .video-popup-box {
    transform: scale(1);
}

.video-popup-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    z-index: 2010;
    transition: 0.2s;
}

.video-popup-close:hover {
    background: var(--red);
    border-color: var(--red);
    transform: rotate(90deg);
}

@keyframes vFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Success state color fix */
.ch-email-highlight {
    color: var(--accent);
    font-weight: 700;
}

.ch-coupon {
    padding: 0 32px 16px
}

.ch-coupon-row {
    display: flex;
    gap: 8px
}

.ch-coupon-input {
    flex: 1;
    padding: 10px 14px;
    background: var(--bg);
    border: 1.5px solid var(--border2);
    border-radius: 8px;
    color: var(--white);
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: .2s
}

.ch-coupon-input:focus {
    border-color: var(--accent)
}

.ch-coupon-input::placeholder {
    color: var(--dim)
}

.ch-coupon-btn {
    background: rgba(167, 139, 250, .1);
    border: 1px solid var(--border-accent);
    color: var(--accent);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
    white-space: nowrap
}

.ch-coupon-btn:hover {
    background: rgba(167, 139, 250, .2)
}

.ch-coupon-msg {
    font-size: 11px;
    margin-top: 6px;
    display: none
}

.ch-coupon-msg.success {
    color: var(--green);
    display: block
}

.ch-coupon-msg.error {
    color: var(--red);
    display: block
}

/* ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: all .55s cubic-bezier(.25, .46, .45, .94)
}

.reveal.vis {
    opacity: 1;
    transform: translateY(0)
}

.reveal-d1 {
    transition-delay: .1s
}

.reveal-d2 {
    transition-delay: .2s
}

.reveal-d3 {
    transition-delay: .3s
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        text-center
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center
    }

    .hero-sub {
        margin: 0 auto 24px
    }

    .trust-row {
        justify-content: center
    }

    .live-counter {
        margin: 0 auto 24px
    }

    .price-block {
        justify-content: center
    }

    .cta-sub {
        justify-content: center
    }

    .bought-banner {
        justify-content: center;
        max-width: 400px;
        margin: 16px auto 0
    }

    .bento .b-span8,
    .bento .b-span4 {
        grid-column: span 6
    }

    .who-grid,
    .money-grid,
    .rev-grid {
        grid-template-columns: 1fr 1fr
    }

    .bonus-grid {
        grid-template-columns: 1fr
    }

    .float-badge.fb3 {
        display: none
    }
}

@media(max-width:768px) {
    .sec {
        padding: 56px 0
    }

    .hero {
        padding: 40px 0 32px
    }

    .phone-mockup {
        max-width: 220px
    }

    .float-badge {
        display: none
    }

    .bento .b-span8,
    .bento .b-span4 {
        grid-column: span 12
    }

    .bento {
        gap: 10px
    }

    .b-card.b-flex {
        flex-direction: column;
        align-items: flex-start
    }

    .who-grid,
    .money-grid,
    .rev-grid {
        grid-template-columns: 1fr
    }

    .steps-row {
        grid-template-columns: 1fr
    }

    .step {
        border-radius: 0 !important
    }

    .step:first-child {
        border-radius: var(--r) var(--r) 0 0 !important
    }

    .step:last-child {
        border-radius: 0 0 var(--r) var(--r) !important
    }

    .step-arrow {
        display: none
    }

    .ct-cell {
        padding: 10px 12px;
        font-size: 11px
    }

    .sticky-mob {
        display: block
    }

    body {
        padding-bottom: 62px
    }

    .toast {
        bottom: 72px;
        left: 10px;
        right: 10px;
        max-width: none
    }

    .scroll-top {
        bottom: 85px;
        left: 10px;
    }

    .mega-box {
        padding: 36px 20px
    }

    .mega-price .mp-new {
        font-size: 38px
    }

    .nav-live {
        display: none
    }

    .hero h1 {
        font-size: 28px
    }

    .hero h1 .big-num {
        font-size: 34px
    }

    .vid-card {
        flex: 0 0 160px
    }

    .ch-header,
    .ch-summary,
    .ch-form,
    .ch-cta-wrap,
    .ch-trust,
    .ch-coupon,
    .ch-recent {
        padding-left: 20px;
        padding-right: 20px
    }

    .ch-success {
        padding: 36px 20px
    }
}

@media(max-width:420px) {
    .container {
        padding: 0 16px
    }

    .hero h1 {
        font-size: 34px;
        letter-spacing: -1px
    }

    .hero h1 .big-num {
        font-size: 36px
    }

    .price-new {
        font-size: 36px
    }

    .t-box {
        padding: 10px 14px;
        min-width: 60px
    }

    .t-box .tn {
        font-size: 22px
    }

    .trust-row {
        gap: 6px
    }

    .trust-chip {
        padding: 4px 8px;
        font-size: 10px
    }

    .plat-flex {
        gap: 6px
    }

    .plat-chip {
        padding: 10px 14px
    }

    .plat-chip span {
        font-size: 11px
    }

    .cta {
        padding: 14px 24px;
        font-size: 14px
    }

    .mega-price .mp-new {
        font-size: 32px
    }
}

/* WHATSAPP FLOAT NEW */
.floating_btn {
    position: fixed;
    bottom: 24px;
    right: 20px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(66, 219, 135, 0);
    }
}

.contact_icon {
    background-color: #42db87;
    color: #fff;
    width: 50px;
    height: 50px;
    font-size: 24px;
    border-radius: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    transition: all 300ms ease-in-out;
}

.floating_btn a {
    text-decoration: none;
}

.text_icon {
    margin-top: 8px;
    color: #BEB8D4;
    font-size: 13px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media(max-width:768px) {
    .floating_btn {
        bottom: 65px;
        right: 10px;
        left: auto;
        width: 70px;
    }

    .contact_icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .text_icon {
        font-size: 11px;
    }
}