:root {
    --primary: #ff0000;
    --primary-dark: #cc0000;
    --primary-glow: rgba(255, 0, 0, 0.5);
    --primary-glow-strong: rgba(255, 0, 0, 0.7);
    --primary-neon: 0 0 20px rgba(255, 0, 0, 0.6), 0 0 40px rgba(255, 0, 0, 0.3);
    --bg-dark: #050505;
    --bg-card: rgba(10, 10, 15, 0.7);
    --glass-bg: rgba(20, 20, 30, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-white: #ffffff;
    --text-gray: #a0a0b0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.5;
    overflow-x: hidden;
    cursor: none;
}

/* ============ OVERLAYS ============ */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.05) 0px, rgba(0, 0, 0, 0.05) 2px, transparent 2px, transparent 4px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 0, 0, 0.08), transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 0, 0.05), transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.vignette-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
    z-index: 1;
}

.grid-overlay-modern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 0, 0, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 0, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
}

.glow-orb-1,
.glow-orb-2,
.glow-orb-3 {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    animation: floatOrb 20s infinite ease-in-out;
}

.glow-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.3), transparent);
    top: -200px;
    left: -200px;
}

.glow-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 50, 50, 0.2), transparent);
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

.glow-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.15), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* ============ NAVBAR ============ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 32px;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    flex-shrink: 0;
}

.logo img {
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.8));
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.logo span:first-child {
    color: white;
}

.logo span:last-child {
    color: var(--primary);
    text-shadow: var(--primary-neon);
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-links li {
    list-style: none;
}

.nav-link {
    color: #ddd;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
    box-shadow: var(--primary-neon);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary);
}

.btn-glow {
    background: rgba(255, 0, 0, 0.15);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 24px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-glow:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 20px var(--primary-glow);
    transform: translateY(-2px);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    flex-shrink: 0;
}

@media (max-width: 1100px) {
    .nav-links {
        gap: 16px;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .btn-glow {
        padding: 6px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {

    .nav-links,
    .btn-glow {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .nav-container {
        padding: 16px 20px;
    }
}

.mobile-dropdown {
    display: none;
    flex-direction: column;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    gap: 16px;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
}

.mobile-dropdown.active {
    display: flex;
}

.mobile-dropdown a {
    color: white;
    text-decoration: none;
    padding: 10px 0;
    font-weight: 600;
}

.btn-glow-mobile {
    background: rgba(255, 0, 0, 0.15);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 10px;
    border-radius: 40px;
    font-weight: 600;
    margin-top: 10px;
}

/* ============ HERO SECTION ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 30%, rgba(255, 0, 0, 0.1), transparent 70%);
    pointer-events: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 0, 0, 0.15);
    border: 1px solid var(--primary);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.85rem;
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--primary);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: 2px 0 blue;
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(31px, 9999px, 94px, 0);
    }

    20% {
        clip: rect(85px, 9999px, 140px, 0);
    }

    40% {
        clip: rect(66px, 9999px, 120px, 0);
    }

    60% {
        clip: rect(12px, 9999px, 54px, 0);
    }

    80% {
        clip: rect(98px, 9999px, 150px, 0);
    }

    100% {
        clip: rect(45px, 9999px, 100px, 0);
    }
}

.red-neon {
    color: var(--primary);
    text-shadow: var(--primary-neon);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--primary-glow);
}

.btn-outline-glow {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline-glow:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 25px var(--primary-glow);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat span {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: var(--primary-neon);
}

.stat p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 5px 0 0;
}

/* ============ SECTION STYLES ============ */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 60px;
}

/* ============ SLIDER PREMIUM ============ */
.slider-premium {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.slider-container-glass {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(255, 0, 0, 0.2);
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-premium {
    flex: 0 0 100%;
    position: relative;
    aspect-ratio: 16/9;
}

.slide-blur-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(20px) brightness(0.35);
    z-index: 1;
    transition: transform 0.5s ease;
}

.slide-premium:hover .slide-blur-bg {
    transform: scale(1.05);
}

.slide-img-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    padding: 20px;
}

.slide-img {
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 0, 0, 0.25);
    transition: transform 0.5s ease;
}

.slide-premium:hover .slide-img {
    transform: scale(1.02);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3), rgba(255, 0, 0, 0.1));
    z-index: 2;
}

.slide-content-premium {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    z-index: 5;
}

.slide-content-premium h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slide-tag {
    display: inline-block;
    background: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-top: 15px;
    letter-spacing: 1px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    z-index: 20;
}

.slider-nav:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.slider-dots-premium {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.dot-premium {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot-premium.active {
    background: var(--primary);
    width: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px var(--primary-glow);
}

/* ============ FEATURES 3D TILT ============ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card-3d {
    perspective: 1000px;
    cursor: pointer;
}

.card-inner {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-card-3d:hover .card-inner {
    transform: translateY(-10px) rotateX(5deg);
    border-color: var(--primary);
    box-shadow: 0 25px 40px -20px var(--primary-glow);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.feature-card-3d:hover .feature-icon {
    transform: scale(1.1);
    text-shadow: 0 0 20px var(--primary-glow);
}

.card-glow-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.1), transparent);
    transition: left 0.6s;
}

.feature-card-3d:hover .card-glow-effect {
    left: 100%;
}

/* ============ GLASS STEPS ============ */
.glass-section {
    background: rgba(255, 0, 0, 0.03);
}

.steps-glass {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.step-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 40px 30px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    position: relative;
    transition: all 0.4s;
}

.step-glass:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px -15px var(--primary-glow);
}

.step-number-glass {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: var(--primary-neon);
    margin-bottom: 20px;
}

.step-arrow {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary);
}

@media (max-width: 992px) {
    .step-arrow {
        display: none;
    }
}

/* ============ TESTIMONIALS MARQUEE ============ */
.testimonials-marquee {
    overflow: hidden;
    width: 100%;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    gap: 30px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

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

.testimonial-card-marquee {
    flex: 0 0 350px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 24px;
    padding: 28px;
    transition: all 0.3s;
}

.testimonial-card-marquee:hover {
    border-color: var(--primary);
    transform: scale(1.02);
}

.testimonial-card-marquee p {
    font-size: 0.95rem;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 25px;
    /* Adds space down to the author section */
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    margin-top: auto;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 0.95rem;
    margin-bottom: 3px;
    color: white;
}

.author-info p {
    font-size: 0.8rem !important;
    color: var(--text-gray) !important;
    margin-bottom: 0 !important;
}

/* ============ PRICING SECTION ============ */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(255, 0, 0, 0.03), transparent);
}

.pricing-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Pricing Card */
.pricing-card {
    width: 360px;
    background: rgba(10, 10, 18, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 28px;
    padding: 32px 28px 38px;
    position: relative;
    transition: all 0.4s ease;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-12px);
    border-color: #ff0000;
    box-shadow: 0 25px 45px -20px rgba(255, 0, 0, 0.4);
}

/* Popular Card */
.pricing-card.popular {
    border-color: #ff0000;
    background: linear-gradient(135deg, rgba(20, 10, 18, 0.95), rgba(12, 8, 18, 0.98));
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.2);
}

/* Discount Badge - Normal (tidak miring) */
.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff0000, #cc0000);
    padding: 6px 22px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 800;
    color: white;
    white-space: nowrap;
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.5);
    animation: glowPulse 2s infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
    }

    50% {
        box-shadow: 0 0 18px rgba(255, 0, 0, 0.8);
    }
}

/* Plan Name */
.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 10px 0 10px;
    background: linear-gradient(135deg, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Current Price */
.price-current {
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff0000, #ff4444);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 10px 0 5px;
}

/* Old Price Wrapper */
.price-old-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 5px 0;
}

.price-old {
    font-size: 0.9rem;
    color: #888;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: #ff0000;
}

/* Duration */
.plan-duration {
    font-size: 0.85rem;
    color: #888;
    margin: 8px 0 20px;
}

/* Feature List */
.feature-list {
    list-style: none;
    margin: 25px 0;
    padding: 0;
    text-align: left;
}

.feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #b0b0c0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(5px);
    color: white;
}

.feature-list li i {
    color: #ff0000;
    font-size: 1rem;
    width: 20px;
}

.feature-list li.disabled {
    opacity: 0.5;
}

.feature-list li.disabled i {
    color: #555;
}

/* Purchase Button */
.purchase-btn {
    width: 100%;
    padding: 14px 20px;
    background: transparent;
    border: 1.5px solid #ff0000;
    border-radius: 50px;
    color: #ff0000;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.purchase-btn:hover {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

.purchase-btn:hover i {
    transform: translateX(5px);
}

.purchase-btn i {
    transition: transform 0.3s ease;
}

.premium-btn {
    background: linear-gradient(135deg, #ff0000, #aa0000);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.premium-btn:hover {
    background: linear-gradient(135deg, #ff2222, #cc0000);
    box-shadow: 0 6px 18px rgba(255, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 850px) {
    .pricing-row {
        gap: 30px;
    }

    .pricing-card {
        width: 100%;
        max-width: 380px;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 28px 20px 32px;
    }

    .price-current {
        font-size: 2.5rem;
    }

    .plan-name {
        font-size: 1.5rem;
    }

    .popular-badge {
        font-size: 0.6rem;
        padding: 4px 16px;
    }

    .discount-badge {
        font-size: 0.65rem;
        padding: 4px 12px;
    }

    .feature-list li {
        font-size: 0.8rem;
        padding: 8px 0;
    }
}

.btn-client-area {
    display: block;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    text-align: center;
    padding: 14px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    margin: 20px 0;
    transition: 0.3s;
}

.btn-client-area:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
}

/* ============ FAQ PREMIUM ============ */
.faq-premium {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-premium {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 20px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item-premium:hover {
    border-color: var(--primary);
}

.faq-question-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
}

.faq-question-premium i:first-child {
    color: var(--primary);
    margin-right: 12px;
}

.faq-question-premium i:last-child {
    transition: transform 0.3s;
}

.faq-item-premium.active .faq-question-premium i:last-child {
    transform: rotate(180deg);
}

.faq-answer-premium {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 28px;
    color: var(--text-gray);
    line-height: 1.6;
}

.faq-item-premium.active .faq-answer-premium {
    max-height: 200px;
    padding: 0 28px 20px 28px;
}

/* ============ CTA PREMIUM ============ */
.cta-premium {
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.15), transparent);
    transform: translate(-50%, -50%);
    filter: blur(80px);
    pointer-events: none;
}

.cta-premium h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-premium p {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary), #990000);
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px var(--primary-glow);
}

/* ============ FOOTER PREMIUM ============ */
.footer-premium {
    background: #020202;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    color: var(--text-gray);
    margin: 15px 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--text-gray);
    font-size: 1.3rem;
    transition: all 0.3s;
}

.social-links a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-links-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-col a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 0, 0, 0.1);
    color: var(--text-gray);
}

/* ============ SLEEK AUTH MODAL ============ */
.sleek-modal-overlay {
    pointer-events: none;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.sleek-modal-overlay.active-modal {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
}

.sleek-modal-card {
    background: linear-gradient(145deg, #120d0d, #0a0808);
    border: 1px solid rgba(255, 0, 0, 0.15);
    border-radius: 24px;
    padding: 50px 45px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sleek-modal-overlay.active-modal .sleek-modal-card {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Red Glow Behind Modal */
.sleek-modal-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.sleek-close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
}

.sleek-close-btn:hover {
    color: #ff3333;
    transform: rotate(90deg);
}

.sleek-modal-header {
    text-align: center;
    margin-bottom: 35px;
}

.sleek-icon-container {
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ff3333;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.15);
}

.sleek-modal-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.sleek-modal-header p {
    font-size: 0.85rem;
    color: #888;
}

.sleek-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sleek-input-container {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s;
}

.sleek-input-container:focus-within {
    border-color: rgba(255, 0, 0, 0.5);
    background: rgba(20, 0, 0, 0.2);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.1);
}

.sleek-input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff4444;
    font-size: 1.1rem;
}

.sleek-input {
    width: 100%;
    padding: 16px 16px 16px 50px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    font-family: 'Inter', monospace;
    letter-spacing: 1px;
}

.sleek-input::placeholder {
    color: #444;
    letter-spacing: normal;
    font-family: 'Inter', sans-serif;
}

.sleek-btn {
    background: #ff0000;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.25);
}

.sleek-btn:hover {
    background: #ff2a2a;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 0, 0, 0.4);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .slide-content-premium h3 {
        font-size: 1.2rem;
    }

    .slide-content-premium {
        padding: 20px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
    }

    .hero-stats {
        gap: 30px;
        justify-content: center;
    }

    .stat span {
        font-size: 1.5rem;
    }

    .footer-grid {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links-grid {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline-glow {
        width: 100%;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-glass {
        flex-direction: column;
    }
}

/* ============ CUSTOM CURSOR & DISABLE SELECTION ============ */
* {
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    -webkit-tap-highlight-color: transparent;
}

input,
textarea,
[contenteditable="true"] {
    user-select: text !important;
    -webkit-user-select: text !important;
}

img,
a img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

body {
    -webkit-touch-callout: none;
}

body,
body * {
    cursor: none !important;
}

.custom-cursor-outer {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 2px solid #ff0000;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.custom-cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: #ff0000;
    border-radius: 50%;
    pointer-events: none;
    z-index: 100000;
    transform: translate(-50%, -50%);
    transition: width 0.1s ease, height 0.1s ease;
    box-shadow: 0 0 8px #ff0000;
}

a:hover~.custom-cursor-outer,
button:hover~.custom-cursor-outer,
.nav-links a:hover~.custom-cursor-outer {
    width: 48px;
    height: 48px;
    border-color: #ff3333;
    background: rgba(255, 0, 0, 0.1);
}

.custom-cursor-outer.active {
    width: 56px !important;
    height: 56px !important;
    border-width: 1px !important;
    background: rgba(255, 0, 0, 0.15);
}

.custom-cursor-dot.active {
    width: 3px !important;
    height: 3px !important;
}

body:not(:hover) .custom-cursor-outer,
body:not(:hover) .custom-cursor-dot {
    opacity: 0;
}