/* ===== GLOBAL - ULTRA-PREMIUM 1% DESIGN ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* RAREST FUTURISTIC TIER - Top 0.1% */
    --primary: #00FFFF;
    --secondary: #FF00FF;
    --accent: #00FF41;
    --cyan: #00E5FF;
    --gold: #FFD700;
    --purple: #9D00FF;
    --electric: #39FF14;
    --neon-pink: #FF10F0;
    --text-dark: #000000;
    --text-light: #E0E0FF;
    --bg-dark: #0A0A0F;
    --bg-gradient: linear-gradient(135deg, #0A0A0F 0%, #1A0033 25%, #001A33 50%, #1A0033 75%, #0A0A0F 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-gradient);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Animated gradient background */
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating glow particles in background */
body::before {
    content: '';
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary)33 0%, transparent 70%);
    border-radius: 50%;
    top: -300px;
    right: -300px;
    animation: float 8s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary)22 0%, transparent 70%);
    border-radius: 50%;
    bottom: -250px;
    left: -250px;
    animation: float 10s ease-in-out infinite reverse;
    z-index: 0;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

/* ===== RARE 1% BACKGROUND TEXT CAROUSEL ===== */
.bg-text-carousel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    max-width: 1400px;
    text-align: center;
    z-index: 0;
    pointer-events: none;
    opacity: 0.03;
    font-size: clamp(2rem, 5vw, 6rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-light);
    mix-blend-mode: overlay;
}

.bg-text-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    animation: bg-text-fade 20s ease-in-out infinite;
}

.bg-text-item:nth-child(1) { animation-delay: 0s; }
.bg-text-item:nth-child(2) { animation-delay: 4s; }
.bg-text-item:nth-child(3) { animation-delay: 8s; }
.bg-text-item:nth-child(4) { animation-delay: 12s; }
.bg-text-item:nth-child(5) { animation-delay: 16s; }

@keyframes bg-text-fade {
    0%, 100% { 
        opacity: 0; 
        transform: scale(0.95) translateY(20px);
        filter: blur(10px);
    }
    5%, 15% { 
        opacity: 1; 
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
    20%, 25% {
        opacity: 0;
        transform: scale(1.05) translateY(-20px);
        filter: blur(10px);
    }
}

/* ===== RARE 1% ANIMATIONS & MICRO-INTERACTIONS ===== */

/* Button Animations */
@keyframes button-press {
    0% { transform: scale(1); box-shadow: 0 0 40px rgba(0, 255, 255, 0.4); }
    50% { transform: scale(0.98); }
    100% { transform: scale(1); box-shadow: 0 0 60px rgba(0, 255, 255, 0.6); }
}

@keyframes button-glow {
    0%, 100% { box-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary); }
    50% { box-shadow: 0 0 30px var(--primary), 0 0 60px var(--primary); }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* Card Animations */
@keyframes card-lift {
    0% { transform: translateY(0) rotateX(0deg); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }
    100% { transform: translateY(-10px) rotateX(2deg); box-shadow: 0 30px 60px rgba(0, 255, 255, 0.3); }
}

@keyframes card-glow {
    0%, 100% { border-color: rgba(0, 255, 255, 0.3); background: rgba(0, 255, 255, 0.03); }
    50% { border-color: rgba(0, 255, 255, 0.6); background: rgba(0, 255, 255, 0.08); }
}

/* Text Reveal Animation */
@keyframes text-reveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
        clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

/* Gradient Animation */
@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Parallax Text */
@keyframes parallax-up {
    0% { transform: translateY(0); opacity: 0; }
    100% { transform: translateY(-30px); opacity: 1; }
}

/* Smooth Fade In */
@keyframes fade-in-up {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Number Counter */
@keyframes counter {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Pulse Glow */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.7); }
    50% { box-shadow: 0 0 0 15px rgba(255, 0, 255, 0); }
}

/* Input Focus Glow */
@keyframes input-glow {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 159, 0.3); }
    100% { box-shadow: 0 0 20px rgba(0, 255, 159, 0.6); }
}

/* Smooth Underline */
@keyframes underline {
    0% { width: 0; left: 0; }
    100% { width: 100%; left: 0; }
}

/* Bounce Animation */
@keyframes bounce-in {
    0% { transform: scale(0.8); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

/* Slide In */
@keyframes slide-in-right {
    0% { transform: translateX(100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

/* ===== NAVBAR - GLASSMORPHISM ULTRA-PREMIUM ===== */
.navbar {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 255, 255, 0.2);
    padding: 15px 0;
    position: sticky;
    top: 45px; /* Account for crypto ticker */
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--primary);
    letter-spacing: -0.02em;
    font-size: 1.5em;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent);
}

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

.btn-nav {
    background: var(--primary) !important;
    padding: 10px 24px !important;
    border-radius: 50px;
    color: white !important;
    font-weight: 700;
    box-shadow: 0 0 30px var(--primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-nav:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 0 40px var(--primary), 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== HERO - ULTRA-PREMIUM WITH GLOW ===== */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 80px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
    min-height: 90vh;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fade-in-up 0.8s ease;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    animation: text-reveal 1s ease 0.2s backwards;
    will-change: transform, opacity;
}

.gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px var(--primary);
    animation: glow-pulse 3s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes glow-pulse {
    0%, 100% { 
        filter: drop-shadow(0 0 20px var(--primary));
        background-position: 0% 50%;
    }
    50% { 
        filter: drop-shadow(0 0 40px var(--primary)) drop-shadow(0 0 60px var(--accent));
        background-position: 100% 50%;
    }
}

.hero-content > p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: text-reveal 1s ease 0.3s backwards;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fade-in-up 0.8s ease 0.4s backwards;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    min-width: 140px;
    transition: all 0.3s ease;
    will-change: transform, box-shadow;
    animation: bounce-in 0.6s ease backwards;
}

.stat:nth-child(1) { animation-delay: 0.5s; }
.stat:nth-child(2) { animation-delay: 0.6s; }
.stat:nth-child(3) { animation-delay: 0.7s; }

.stat:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 50px rgba(0, 255, 255, 0.4), 0 0 30px rgba(255, 0, 255, 0.3);
}

.stat strong {
    font-size: 2.5em;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    will-change: transform, box-shadow;
    touch-action: manipulation;
}

/* Ripple Effect */
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Active Press State */
.btn:active {
    animation: button-press 0.4s ease;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 40px var(--primary), 0 0 20px var(--electric);
    position: relative;
    z-index: 1;
    animation: button-glow 3s ease-in-out infinite;
}

.btn-primary:hover {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 0 80px var(--primary), 0 20px 50px rgba(0, 255, 255, 0.4), 0 0 40px var(--electric);
}

.btn-primary:active {
    transform: scale(0.96);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    box-shadow: 0 0 20px var(--accent), 0 0 10px var(--electric);
}

.btn-secondary:hover {
    background: rgba(0, 255, 159, 0.1);
    border-color: var(--accent);
    box-shadow: 0 0 50px var(--accent), 0 0 30px rgba(0, 255, 159, 0.2);
    transform: scale(1.08) translateY(-4px);
}

.btn-secondary:active {
    transform: scale(0.96);
}

.trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fade-in-up 0.8s ease 0.6s both;
}

.trust-badges span {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95em;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fade-in-up 0.6s ease backwards;
}

.trust-badges span:nth-child(1) { animation-delay: 0.7s; }
.trust-badges span:nth-child(2) { animation-delay: 0.8s; }
.trust-badges span:nth-child(3) { animation-delay: 0.9s; }
}

.trust-badges span:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.3), 0 0 15px var(--electric);
}

/* ===== ABOUT ME SECTION - SURESH SUNAR ===== */
.about-me {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
    z-index: 1;
}

.about-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.about-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    animation: rotate-glow 20s linear infinite;
    pointer-events: none;
}

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

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.about-header h2 .gradient {
    background: linear-gradient(135deg, #00FFFF, #FF00FF, #00FF41, #39FF14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift-text 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shift-text {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-text {
    text-align: center;
    line-height: 2;
}

.about-text p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.about-text .intro {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}

.about-text .intro strong {
    color: var(--accent);
    font-weight: 700;
}

.about-text strong {
    color: var(--gold);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.about-text .highlight {
    font-size: clamp(1.15rem, 2.2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin: 35px 0;
    padding: 25px;
    background: rgba(255, 215, 0, 0.05);
    border-left: 3px solid var(--gold);
    border-radius: 10px;
}

.about-text .highlight strong {
    color: var(--accent);
    font-size: 1.1em;
}

.about-text .manifesto {
    font-size: clamp(1.3rem, 2.8vw, 1.6rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.about-text .manifesto strong {
    background: linear-gradient(135deg, #FFD700, #00FF9F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-style: italic;
}

/* ===== SECTIONS - GLASSMORPHISM CARDS ===== */
.features, .products, .included, .referral-section, .faq, .cta {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
    position: relative;
    z-index: 1;
}

section h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 60px;
    text-align: center;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px var(--primary);
    letter-spacing: -0.02em;
    -webkit-text-fill-color: transparent;
}

section > p {
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.2em;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FEATURES GRID - GLASSMORPHISM CARDS ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
    animation: fade-in-up 0.6s ease backwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary)22 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    will-change: opacity;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    animation: card-lift 0.4s ease forwards;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 255, 255, 0.4), 0 0 60px var(--primary), 0 0 30px var(--neon-pink);
}

.feature-card:active {
    transform: translateY(-5px) scale(0.99);
}

.feature-card .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    padding: 12px 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 14px;
    font-size: 0.95em;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(0, 255, 159, 0.06));
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    will-change: transform, box-shadow;
}

.feature-card:hover .icon {
    transform: translateY(-5px) scale(1.05) rotateY(5deg);
    border-color: var(--accent);
    box-shadow: 0 16px 50px rgba(0, 255, 159, 0.3);
}

.feature-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: var(--text-light);
    font-weight: 700;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1em;
    line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.price-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
    animation: fade-in-up 0.6s ease backwards;
    overflow: hidden;
}

.price-card:nth-child(1) { animation-delay: 0.1s; }
.price-card:nth-child(2) { animation-delay: 0.2s; }
.price-card:nth-child(3) { animation-delay: 0.3s; }

.price-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 255, 159, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.price-card:hover::after {
    opacity: 1;
}

.price-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    transform: scale(1.05);
    animation: card-glow 3s ease-in-out infinite;
}

.price-card:hover {
    animation: card-lift 0.4s ease forwards !important;
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.25), rgba(255, 0, 255, 0.25));
    box-shadow: 0 30px 80px rgba(0, 255, 255, 0.4), 0 0 50px rgba(255, 0, 255, 0.3), 0 0 30px var(--electric);
}

.price-card .badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--primary);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    animation: bounce-in 0.6s ease 0.2s both;
}

.price-card .badge.featured {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    animation: pulse-glow 2s ease-in-out infinite;
}

.price-card h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    margin-top: 20px;
    animation: text-reveal 0.8s ease;
}

.price {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 30px;
    animation: text-reveal 0.8s ease 0.1s backwards;
}

.price span {
    font-size: 0.6em;
    color: #b0b0b0;
}

.price-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.price-card li {
    padding: 10px 0;
    color: #b0b0b0;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    animation: fade-in-up 0.6s ease backwards;
}

.price-card:hover li {
    color: #fff;
    padding-left: 5px;
}

.price-card li:nth-child(1) { animation-delay: 0.2s; }
.price-card li:nth-child(2) { animation-delay: 0.25s; }
.price-card li:nth-child(3) { animation-delay: 0.3s; }
.price-card li:nth-child(4) { animation-delay: 0.35s; }
.price-card li:nth-child(5) { animation-delay: 0.4s; }

.price-card li.muted {
    color: #6f7080;
    font-style: italic;
}

.price-card .btn {
    width: 100%;
    text-align: center;
    animation: fade-in-up 0.6s ease 0.45s backwards;
}

.year-option {
    text-align: center;
    color: #666;
    font-size: 0.85em;
    margin-top: 10px;
    animation: fade-in-up 0.6s ease 0.5s backwards;
}

/* ===== INCLUDED ===== */
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.included-item {
    background: rgba(102, 126, 234, 0.05);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
    animation: fade-in-up 0.6s ease backwards;
    will-change: transform, box-shadow;
}

.included-item:hover {
    transform: translateX(5px);
    background: rgba(102, 126, 234, 0.1);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
}

.included-item .number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    font-weight: 800;
    margin-bottom: 15px;
}

.included-item h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.included-item p {
    color: #b0b0b0;
}

/* ===== REFERRAL ===== */
.referral-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 15px;
    text-align: center;
}

.referral-section h2 {
    margin-bottom: 10px;
}

.referral-section > p {
    margin-bottom: 40px;
}

.referral-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.ref-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.ref-item .ref-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 12px;
    background: rgba(255, 215, 0, 0.08);
    color: #f5f5f5;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ref-item strong {
    display: block;
    color: var(--primary);
}

/* ===== FAQ ===== */
.faq-container {
    display: grid;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(102, 126, 234, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: var(--text-light);
    text-align: left;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-q:hover {
    background: rgba(102, 126, 234, 0.1);
}

.faq-q span {
    color: var(--primary);
    font-size: 1.5em;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #b0b0b0;
    padding: 0 20px;
}

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

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(240, 147, 251, 0.2));
    border-radius: 15px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    text-align: center;
}

.cta h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.cta > p {
    margin-bottom: 30px;
}

/* ===== FOOTER ===== */
footer {
    background: rgba(15, 23, 42, 0.95);
    border-top: 1px solid rgba(102, 126, 234, 0.2);
    padding: 60px 20px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--primary);
    margin-bottom: 15px;
}

.footer-col p {
    color: #b0b0b0;
    font-size: 0.9em;
    margin-bottom: 8px;
}

.footer-faith {
    color: #f093fb !important;
    font-weight: 600;
    margin-top: 10px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(102, 126, 234, 0.2);
    padding-top: 20px;
    color: #666;
    font-size: 0.9em;
}

/* ===== FORM ANIMATIONS ===== */
.form-group {
    margin-bottom: 24px;
    position: relative;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #e0e0e0;
    font-weight: 500;
    font-size: 0.95em;
    animation: label-in 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes label-in {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #e0e0e0;
    font-size: 1em;
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: border-color, box-shadow, background;
    animation: input-slide-in 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes input-slide-in {
    from {
        opacity: 0;
        transform: translateX(-8px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
textarea::placeholder {
    color: rgba(224, 224, 224, 0.4);
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(102, 126, 234, 0.1);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3), inset 0 0 20px rgba(102, 126, 234, 0.05);
    animation: input-glow 0.4s ease forwards;
}

@keyframes input-glow {
    from {
        box-shadow: 0 0 10px rgba(102, 126, 234, 0.2), inset 0 0 10px rgba(102, 126, 234, 0.02);
    }
    to {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.4), inset 0 0 20px rgba(102, 126, 234, 0.08);
    }
}

textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Form validation states */
input.is-valid,
textarea.is-valid {
    border-color: #4ade80;
    background: rgba(74, 222, 128, 0.05);
}

input.is-valid:focus,
textarea.is-valid:focus {
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.3), inset 0 0 20px rgba(74, 222, 128, 0.05);
}

input.is-invalid,
textarea.is-invalid {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

input.is-invalid:focus,
textarea.is-invalid:focus {
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3), inset 0 0 20px rgba(239, 68, 68, 0.05);
}

.form-error {
    color: #ef4444;
    font-size: 0.85em;
    margin-top: 6px;
    animation: error-shake 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes error-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

.form-success {
    color: #4ade80;
    font-size: 0.85em;
    margin-top: 6px;
    animation: success-bounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes success-bounce {
    0% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

/* ===== NAVIGATION SCROLL EFFECTS ===== */
.navbar.scroll-active {
    backdrop-filter: blur(12px);
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 4px 30px rgba(102, 126, 234, 0.15);
    animation: navbar-blur-in 0.4s ease;
}

@keyframes navbar-blur-in {
    from {
        backdrop-filter: blur(4px);
        background: rgba(15, 23, 42, 0.9);
    }
    to {
        backdrop-filter: blur(12px);
        background: rgba(15, 23, 42, 0.98);
    }
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    animation: underline-expand 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes underline-expand {
    from {
        width: 0;
        left: 50%;
    }
    to {
        width: 100%;
        left: 0;
    }
}

/* ===== LOADING STATES ===== */
.loading-spinner {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(102, 126, 234, 0.2);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    will-change: transform;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loading-pulse {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dots 1.4s ease-in-out infinite;
    will-change: opacity, transform;
}

.loading-pulse:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-pulse:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes pulse-dots {
    0%, 60%, 100% {
        opacity: 0.5;
        transform: scale(0.8);
    }
    30% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.skeleton-loader {
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.1) 25%, rgba(102, 126, 234, 0.2) 50%, rgba(102, 126, 234, 0.1) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 8px;
    will-change: background-position;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-line {
    height: 12px;
    margin-bottom: 8px;
    border-radius: 6px;
}

.skeleton-line.large {
    height: 16px;
}

.skeleton-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* ===== PROGRESS BAR ===== */
.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 8px 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: width;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.6);
}

.progress-fill.indeterminate {
    width: 30%;
    animation: progress-indeterminate 2s ease-in-out infinite;
}

@keyframes progress-indeterminate {
    0% {
        width: 10%;
        left: 0;
    }
    50% {
        width: 50%;
        left: 50%;
    }
    100% {
        width: 10%;
        left: 90%;
    }
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 16px 24px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    color: #e0e0e0;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.2);
    animation: toast-slide-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 300px;
    z-index: 1000;
}

@keyframes toast-slide-in {
    from {
        opacity: 0;
        transform: translateX(400px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toast.slide-out {
    animation: toast-slide-out 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes toast-slide-out {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(400px);
    }
}

.toast.success {
    border-left: 4px solid #4ade80;
}

.toast.error {
    border-left: 4px solid #ef4444;
}

.toast.warning {
    border-left: 4px solid #f59e0b;
}

.toast.info {
    border-left: 4px solid var(--primary);
}

/* ===== MODAL ANIMATIONS ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    animation: overlay-fade-in 0.3s ease;
    z-index: 999;
}

@keyframes overlay-fade-in {
    from { opacity: 0; backdrop-filter: blur(0); }
    to { opacity: 1; backdrop-filter: blur(4px); }
}

.modal {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 16px;
    animation: modal-scale-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(12px);
}

@keyframes modal-scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== RIPPLE EFFECT ===== */
.btn,
button {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-spread 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-spread {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===== ADDITIONAL KEYFRAMES ===== */
@keyframes fade-out {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .loading-spinner,
    .loading-pulse,
    .skeleton-loader,
    .progress-fill.indeterminate,
    .btn {
        animation: none !important;
    }
}

/* ===== 1% RARE UPGRADES ===== */

/* Cursor Trail Effect */
.cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.8) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    animation: cursor-fade 0.8s ease-out forwards;
    will-change: transform, opacity;
}

@keyframes cursor-fade {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.3);
    }
}

/* Custom Cursor (Premium) */
body {
    cursor: none;
}

.custom-cursor {
    position: fixed;
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    mix-blend-mode: difference;
    will-change: transform;
}

.custom-cursor.hover {
    width: 48px;
    height: 48px;
    background: rgba(102, 126, 234, 0.1);
    border-color: var(--accent);
}

/* Noise Grain Overlay (Film Effect) */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.03"/></svg>');
    pointer-events: none;
    opacity: 0.4;
    z-index: 9998;
    animation: grain-shift 8s steps(10) infinite;
}

@keyframes grain-shift {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-5%, -10%); }
    50% { transform: translate(-10%, 5%); }
    75% { transform: translate(5%, -5%); }
}

/* 3D Card Tilt Effect */
.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.card-3d:hover {
    transform: perspective(1000px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg)) scale(1.02);
}

.card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.08), transparent 50%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.card-3d:hover::before {
    opacity: 1;
}

/* Holographic Text Effect */
.text-holographic {
    background: linear-gradient(90deg, 
        #00FFFF 0%, 
        #FF00FF 25%, 
        #00FF41 50%, 
        #39FF14 75%, 
        #00FFFF 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: holographic-shift 3s linear infinite;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
    will-change: background-position;
}

@keyframes holographic-shift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Magnetic Button Effect */
.btn-magnetic {
    position: relative;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.btn-magnetic:hover {
    transform: translate(var(--magnetic-x, 0), var(--magnetic-y, 0));
}

/* Scanline Effect (Retro Futuristic) */
.scanline-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        transparent 50%,
        rgba(102, 126, 234, 0.02) 50%
    );
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 9997;
    animation: scanline-move 8s linear infinite;
}

@keyframes scanline-move {
    0% { background-position: 0 0; }
    100% { background-position: 0 100%; }
}

/* Glitch Text Effect */
.text-glitch {
    position: relative;
    animation: glitch-skew 2s infinite;
}

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

.text-glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--primary);
    animation: glitch-anim-1 3s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.text-glitch::after {
    left: -2px;
    text-shadow: 2px 0 var(--accent);
    animation: glitch-anim-2 2s infinite linear alternate-reverse;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes glitch-skew {
    0%, 100% { transform: skewX(0deg); }
    20% { transform: skewX(2deg); }
    40% { transform: skewX(-2deg); }
    60% { transform: skewX(1deg); }
    80% { transform: skewX(-1deg); }
}

@keyframes glitch-anim-1 {
    0%, 100% { clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%); }
    20% { clip-path: polygon(0 10%, 100% 10%, 100% 35%, 0 35%); }
    40% { clip-path: polygon(0 20%, 100% 20%, 100% 50%, 0 50%); }
}

@keyframes glitch-anim-2 {
    0%, 100% { clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%); }
    30% { clip-path: polygon(0 60%, 100% 60%, 100% 90%, 0 90%); }
    60% { clip-path: polygon(0 70%, 100% 70%, 100% 100%, 0 100%); }
}

/* Liquid Button Effect */
.btn-liquid {
    position: relative;
    overflow: hidden;
}

.btn-liquid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-liquid:hover::before {
    width: 300%;
    height: 300%;
}

/* Premium Loader */
.premium-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #000 0%, #1a0033 50%, #000 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    animation: loader-fade-out 1s ease 2.5s forwards;
}

@keyframes loader-fade-out {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.loader-ring {
    width: 120px;
    height: 120px;
    border: 4px solid transparent;
    border-top-color: var(--primary);
    border-right-color: var(--secondary);
    border-radius: 50%;
    animation: loader-spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

@keyframes loader-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    margin-top: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Parallax Layer Effect */
.parallax-layer {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.parallax-layer-1 {
    transform: translateZ(0) translateY(calc(var(--scroll-y, 0) * -0.1px));
}

.parallax-layer-2 {
    transform: translateZ(0) translateY(calc(var(--scroll-y, 0) * -0.2px));
}

.parallax-layer-3 {
    transform: translateZ(0) translateY(calc(var(--scroll-y, 0) * -0.3px));
}

/* Neon Glow Text */
.text-neon {
    color: var(--accent);
    text-shadow: 
        0 0 10px rgba(0, 255, 159, 0.8),
        0 0 20px rgba(0, 255, 159, 0.6),
        0 0 30px rgba(0, 255, 159, 0.4),
        0 0 40px rgba(0, 255, 159, 0.2);
    animation: neon-flicker 4s infinite;
}

@keyframes neon-flicker {
    0%, 100% { opacity: 1; }
    10% { opacity: 0.95; }
    20% { opacity: 1; }
    30% { opacity: 0.9; }
    40%, 80% { opacity: 1; }
    85% { opacity: 0.95; }
    90% { opacity: 1; }
}

/* Depth Shadow (3D) */
.shadow-3d {
    box-shadow: 
        0 1px 0 rgba(102, 126, 234, 0.4),
        0 2px 0 rgba(102, 126, 234, 0.35),
        0 3px 0 rgba(102, 126, 234, 0.3),
        0 4px 0 rgba(102, 126, 234, 0.25),
        0 5px 0 rgba(102, 126, 234, 0.2),
        0 8px 15px rgba(0, 0, 0, 0.5);
}

/* ===== RESPONSIVE ===== */
/* ===== MOBILE RESPONSIVE (768px and below) ===== */
@media (max-width: 768px) {
    /* NAVBAR */
    .navbar {
        padding: 12px 0;
    }

    .nav-container {
        padding: 0 15px;
        flex-direction: column;
        gap: 15px;
    }

    .logo {
        font-size: 1.2em;
        font-weight: 900;
        letter-spacing: 0.05em;
        text-align: center;
        width: 100%;
    }

    .nav-links {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        font-size: 0.8em;
        align-items: center;
    }

    .nav-links a {
        text-align: center;
        padding: 8px 10px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: rgba(0, 255, 255, 0.1);
    }

    .btn-nav {
        grid-column: 1 / -1;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        padding: 10px 15px !important;
        border-radius: 8px;
        font-weight: 700;
        font-size: 0.85em;
    }

    /* HERO */
    .hero {
        grid-template-columns: 1fr;
        padding: 30px 15px;
        gap: 20px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 1.8em;
        line-height: 1.2;
        margin: 15px 0;
    }

    .hero-content p {
        font-size: 0.95em;
        line-height: 1.5;
        color: #aaa;
    }

    .hero-stats {
        flex-direction: row;
        gap: 10px;
        justify-content: space-around;
        margin: 20px 0;
        flex-wrap: wrap;
    }

    .stat {
        font-size: 0.85em;
        padding: 10px 12px;
        background: rgba(0, 255, 255, 0.08);
        border-radius: 8px;
        border: 1px solid rgba(0, 255, 255, 0.2);
    }

    .stat strong {
        display: block;
        font-size: 1.3em;
        color: var(--primary);
        margin-bottom: 3px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin: 20px 0;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.95em;
    }

    .trust-badges {
        flex-direction: column;
        gap: 8px;
        margin-top: 15px;
    }

    .trust-badges span {
        font-size: 0.8em;
        padding: 8px 12px;
        background: rgba(0, 255, 159, 0.08);
        border-radius: 6px;
    }

    /* ABOUT */
    .about-me {
        padding: 30px 15px;
    }

    .about-container {
        max-width: 100%;
    }

    .about-text {
        padding: 20px;
    }

    .about-text p {
        font-size: 0.95em;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    /* SECTIONS */
    section h2 {
        font-size: 1.6em;
        margin: 20px 0;
        padding: 0 15px;
    }

    section {
        padding: 30px 15px;
    }

    /* FEATURES GRID */
    .features-grid, .pricing-grid, .included-grid, .referral-info {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0;
    }

    .feature-card {
        padding: 20px 15px;
        gap: 10px;
    }

    .feature-card .icon {
        font-size: 1.8em;
        min-width: 40px;
    }

    .feature-card h3 {
        font-size: 1.1em;
    }

    .feature-card p {
        font-size: 0.9em;
    }

    /* PRICING CARDS */
    .price-card {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .price-card.featured {
        transform: scale(1);
        border: 2px solid var(--primary);
    }

    .price-card h3 {
        font-size: 1.3em;
        margin: 12px 0;
    }

    .price-card .price {
        font-size: 1.8em;
        margin: 12px 0;
    }

    .price-card .price span {
        font-size: 0.5em;
    }

    .price-card ul {
        margin: 15px 0;
        gap: 8px;
    }

    .price-card li {
        font-size: 0.9em;
        padding: 6px 0;
    }

    .price-card .btn {
        width: 100%;
        padding: 12px 15px;
        font-size: 0.95em;
        margin-top: 12px;
    }

    /* INCLUDED FEATURES */
    .included-item {
        padding: 15px;
        font-size: 0.9em;
    }

    .included-item h4 {
        font-size: 1em;
        margin-bottom: 8px;
    }

    /* REFERRAL */
    .referral-tier {
        padding: 15px;
    }

    .referral-tier h3 {
        font-size: 1.1em;
    }

    /* FOOTER */
    footer {
        padding: 25px 15px;
    }

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

    .footer-section h4 {
        font-size: 1em;
        margin-bottom: 10px;
    }

    .footer-section ul li {
        font-size: 0.9em;
        margin-bottom: 6px;
    }

    .footer-bottom {
        font-size: 0.85em;
        text-align: center;
        margin-top: 15px;
    }

    /* BUTTONS */
    .btn {
        padding: 12px 20px;
        font-size: 0.95em;
        border-radius: 8px;
    }

    .btn-primary {
        min-height: 44px;
    }

    /* TEXT CONTENT */
    p {
        font-size: 0.95em;
    }

    h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.6em;
    }

    h3 {
        font-size: 1.2em;
    }

    /* BACKGROUND PARTICLES */
    body::before {
        width: 400px;
        height: 400px;
        top: -200px;
        right: -200px;
    }

    body::after {
        width: 350px;
        height: 350px;
        bottom: -175px;
        left: -175px;
    }
}

/* ===== EXTRA SMALL DEVICES (480px and below) ===== */
@media (max-width: 480px) {
    .nav-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .btn-nav {
        grid-column: 1 / -1;
    }

    .hero {
        padding: 20px 12px;
    }

    .hero-content h1 {
        font-size: 1.5em;
        line-height: 1.15;
    }

    .hero-content p {
        font-size: 0.9em;
    }

    .hero-stats {
        gap: 8px;
    }

    .stat {
        font-size: 0.75em;
        padding: 8px 10px;
    }

    .stat strong {
        font-size: 1.1em;
    }

    section {
        padding: 20px 12px;
    }

    section h2 {
        font-size: 1.4em;
        padding: 0;
        margin: 15px 0;
    }

    .feature-card {
        padding: 15px 12px;
        gap: 8px;
    }

    .feature-card .icon {
        font-size: 1.5em;
        min-width: 35px;
    }

    .feature-card h3 {
        font-size: 1em;
    }

    .feature-card p {
        font-size: 0.85em;
    }

    .price-card {
        padding: 15px 12px;
    }

    .price-card h3 {
        font-size: 1.2em;
    }

    .price-card .price {
        font-size: 1.6em;
    }

    .hero-buttons {
        gap: 10px;
    }

    .hero-buttons .btn {
        padding: 12px 15px;
        font-size: 0.9em;
    }

    footer {
        padding: 20px 12px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 1.5em;
    }

    h2 {
        font-size: 1.3em;
    }

    h3 {
        font-size: 1.1em;
    }

    p {
        font-size: 0.9em;
    }

    /* BACKGROUND PARTICLES */
    body::before {
        width: 300px;
        height: 300px;
        top: -150px;
        right: -150px;
    }

    body::after {
        width: 250px;
        height: 250px;
        bottom: -125px;
        left: -125px;
    }
}

/* ===== CRYPTO 1% RARE EFFECTS ===== */

/* Crypto Ticker - Floating Top Bar */
.crypto-ticker {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.2), 0 0 40px rgba(255, 0, 255, 0.1);
    padding: 8px 0;
    overflow: hidden;
}

.ticker-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    animation: ticker-slide 20s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 15px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.ticker-item:hover {
    background: rgba(0, 255, 255, 0.15);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.crypto-icon {
    font-size: 1.3em;
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

.crypto-name {
    font-weight: 700;
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.05em;
}

.crypto-price {
    font-weight: 600;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Courier New', monospace;
}

.crypto-change {
    font-size: 0.8em;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
}

.crypto-change.positive {
    color: #00FF41;
    background: rgba(0, 255, 65, 0.1);
}

.crypto-change.negative {
    color: #FF3131;
    background: rgba(255, 49, 49, 0.1);
}

@keyframes ticker-slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(10px); }
}

/* Blockchain Matrix Background */
.blockchain-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

/* Crypto Floating Particles */
.crypto-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.crypto-particle {
    position: absolute;
    font-size: 30px;
    font-weight: bold;
    animation: crypto-float linear infinite;
    text-shadow: 0 0 20px currentColor;
    opacity: 0.6;
}

@keyframes crypto-float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Bitcoin Rain Effect */
.bitcoin-rain-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    pointer-events: none;
    overflow: hidden;
}

.bitcoin-coin {
    position: absolute;
    top: -50px;
    font-size: 40px;
    color: #FFD700;
    text-shadow: 0 0 30px #FFD700, 0 0 60px #FFD700;
    animation: bitcoin-fall linear forwards;
    filter: drop-shadow(0 0 10px #FFD700);
}

@keyframes bitcoin-fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0.3;
    }
}

/* Crypto Payment Button */
.btn-crypto {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5), 0 10px 30px rgba(255, 165, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    margin-left: 15px;
}

.btn-crypto::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-crypto:hover::before {
    width: 300px;
    height: 300px;
}

.btn-crypto:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.7), 0 15px 40px rgba(255, 165, 0, 0.5);
}

/* Crypto Payment Modal */
.crypto-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: modal-fade-in 0.3s ease;
}

@keyframes modal-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.crypto-modal-content {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 30px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 255, 255, 0.3), 0 0 60px rgba(255, 0, 255, 0.2);
    animation: modal-scale-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modal-scale-in {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.crypto-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.5);
    color: #FF3131;
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.crypto-modal-close:hover {
    background: rgba(255, 0, 0, 0.4);
    transform: rotate(90deg);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.crypto-modal-content h2 {
    margin-bottom: 10px;
    font-size: 2em;
    text-align: center;
}

/* Crypto Payment Options Grid */
.crypto-payment-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.crypto-option {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.crypto-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.crypto-option:hover::before,
.crypto-option.selected::before {
    opacity: 1;
}

.crypto-option:hover,
.crypto-option.selected {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.4);
}

.crypto-logo {
    font-size: 3em;
    filter: drop-shadow(0 0 10px currentColor);
    position: relative;
    z-index: 1;
}

.crypto-label {
    font-weight: 700;
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
}

.crypto-network {
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

/* Wallet Info Section */
.crypto-wallet-info {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    padding: 25px;
    margin-top: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.crypto-wallet-info h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.2em;
}

.wallet-address-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.wallet-address {
    flex: 1;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    padding: 12px 15px;
    color: #00FF41;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.btn-copy-wallet {
    background: var(--primary);
    color: #000;
    border: none;
    border-radius: 10px;
    padding: 12px 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-copy-wallet:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--primary);
}

.qr-code-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-bottom: 15px;
}

.qr-icon {
    font-size: 3em;
    margin-bottom: 10px;
}

.wallet-warning {
    color: #FFA500;
    font-size: 0.9em;
    text-align: center;
    padding: 10px;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

/* Crypto Advantages */
.crypto-advantages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 25px;
}

.advantage-item {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 10px 15px;
    text-align: center;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .crypto-ticker {
        padding: 6px 0;
    }
    
    .ticker-wrapper {
        gap: 15px;
        font-size: 0.85em;
    }
    
    .ticker-item {
        padding: 4px 10px;
    }
    
    .crypto-payment-options {
        grid-template-columns: 1fr;
    }
    
    .crypto-advantages {
        grid-template-columns: 1fr;
    }
    
    .btn-crypto {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }
    
    .crypto-modal-content {
        padding: 25px;
        border-radius: 20px;
    }
    
    /* Disable blockchain canvas on mobile */
    .blockchain-canvas {
        display: none;
    }
}
