/* ============================================
   CASHBACKI - SUPER ADVANCED 2026 STYLESHEET
   ============================================ */

/* ============================================
   CSS VARIABLES / DESIGN TOKENS
   ============================================ */
:root {
    /* Primary Colors */
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;

    /* Accent Colors */
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    --accent-dark: #d97706;

    /* Gradient Definitions */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ef4444 50%, #ec4899 100%);
    --gradient-login: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #6366f1 100%);
    --gradient-register: linear-gradient(135deg, #f59e0b 0%, #ef4444 50%, #ec4899 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-dark: linear-gradient(180deg, #0a0e27 0%, #131842 50%, #0a0e27 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    --gradient-card: linear-gradient(145deg, rgba(99,102,241,0.1) 0%, rgba(139,92,246,0.05) 100%);

    /* Background Colors */
    --bg-dark: #0a0e27;
    --bg-dark-secondary: #131842;
    --bg-dark-tertiary: #1a1f4e;
    --bg-card: rgba(255, 255, 255, 0.03);
    --footer-bg: #080b1f;

    /* Text Colors */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-accent: #fbbf24;

    /* Border Colors */
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(99, 102, 241, 0.3);

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.15);
    --shadow-glow-accent: 0 0 40px rgba(245, 158, 11, 0.15);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Orbitron', sans-serif;

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--primary);
    color: white;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    transition: var(--transition-base);
}

/* Utility: py-6 */
.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    animation: preloader-spin 1.5s linear infinite;
}

.preloader-ring:nth-child(1) {
    border-top-color: var(--primary);
    animation-delay: 0s;
}

.preloader-ring:nth-child(2) {
    width: 85%;
    height: 85%;
    border-right-color: var(--accent);
    animation-delay: 0.2s;
    animation-direction: reverse;
}

.preloader-ring:nth-child(3) {
    width: 70%;
    height: 70%;
    border-bottom-color: #ec4899;
    animation-delay: 0.4s;
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-primary);
    text-transform: uppercase;
}

@keyframes preloader-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================
   PARTICLES BACKGROUND
   ============================================ */
.particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) translateX(100px);
        opacity: 0;
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
.glass-nav {
    background: rgba(10, 14, 39, 0.8) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.8rem 0;
    transition: var(--transition-base);
    z-index: 1050;
}

.glass-nav.scrolled {
    background: rgba(10, 14, 39, 0.95) !important;
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

/* Brand */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
}

.brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary) !important;
    letter-spacing: 1px;
}

.brand-highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Nav Links */
.nav-glow {
    color: var(--text-secondary) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}

.nav-glow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-base);
    transform: translateX(-50%);
}

.nav-glow:hover {
    color: var(--text-primary) !important;
}

.nav-glow:hover::after {
    width: 70%;
}

/* ============================================
   GRADIENT BUTTONS
   ============================================ */
.btn-login-gradient {
    background: var(--gradient-login);
    color: white !important;
    border: none;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    transition: var(--transition-base);
    z-index: 1;
}

.btn-login-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-slow);
    z-index: -1;
}

.btn-login-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
    color: white !important;
}

.btn-login-gradient:hover::before {
    left: 100%;
}

.btn-register-gradient {
    background: var(--gradient-register);
    color: white !important;
    border: none;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
    transition: var(--transition-base);
    z-index: 1;
}

.btn-register-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-slow);
    z-index: -1;
}

.btn-register-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
    color: white !important;
}

.btn-register-gradient:hover::before {
    left: 100%;
}

.btn-xl {
    padding: 0.9rem 2.5rem !important;
    font-size: 1.1rem !important;
}

/* ============================================
   MOBILE MENU TOGGLE (HAMBURGER)
   ============================================ */
.mobile-toggle {
    border: none !important;
    padding: 8px;
    background: transparent !important;
    box-shadow: none !important;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-base);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: var(--bg-dark-secondary);
    border-left: 1px solid var(--border-color);
    z-index: 9999;
    transition: var(--transition-slow);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
}

.mobile-menu-overlay.active .mobile-menu-panel {
    right: 0;
}

.mobile-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.mobile-close-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

.mobile-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.mobile-brand i {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 2rem;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.8rem 1rem;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: var(--transition-base);
}

.mobile-link:hover,
.mobile-link:focus {
    color: var(--text-primary);
    background: rgba(99, 102, 241, 0.1);
}

.mobile-link i {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.mobile-action-buttons {
    margin-top: auto;
    padding-top: 1rem;
}

.mobile-footer {
    margin-top: 1.5rem;
    text-align: center;
}

.mobile-footer p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99,102,241,0.4), transparent);
    top: -100px;
    left: -100px;
    animation: orb-float 8s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168,85,247,0.3), transparent);
    bottom: -50px;
    right: -50px;
    animation: orb-float 10s ease-in-out infinite reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245,158,11,0.2), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orb-float 12s ease-in-out infinite;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(99,102,241,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99,102,241,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-light);
}

.badge-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
    50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

/* Hero Title */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typing-text {
    display: inline-block;
    min-width: 140px;
    border-right: 3px solid var(--accent);
    animation: blink-cursor 0.8s step-end infinite;
}

@keyframes blink-cursor {
    0%, 100% { border-color: var(--accent); }
    50% { border-color: transparent; }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-hero-primary {
    background: var(--gradient-register);
    color: white !important;
    border: none;
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 25px rgba(245, 158, 11, 0.4);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.6s;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(245, 158, 11, 0.6);
    color: white !important;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover i {
    transform: translateX(4px);
}

.btn-hero-primary i {
    transition: var(--transition-base);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--text-primary) !important;
    border: 2px solid var(--border-color);
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    transition: var(--transition-base);
}

.btn-hero-secondary:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    color: var(--text-primary) !important;
    transform: translateY(-3px);
}

/* Hero Trust */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-logos {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.trust-logo {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.03);
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    padding: 2rem;
}

.hero-card-stack {
    position: relative;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(10, 14, 39, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-lg);
    z-index: 10;
    box-shadow: var(--shadow-md);
    animation: card-float 6s ease-in-out infinite;
}

.floating-card .fc-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.floating-card .fc-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.floating-card .fc-value {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.card-1 {
    top: 0;
    left: -20px;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    animation-delay: 2s;
}

.card-3 {
    bottom: 0;
    left: 10px;
    animation-delay: 4s;
}

@keyframes card-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.card-2 {
    animation-name: card-float-alt;
}

@keyframes card-float-alt {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(calc(-50% - 10px)); }
}

/* Hero Gallery */
.hero-gallery-main {
    background: var(--gradient-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 1rem;
    box-shadow: var(--shadow-glow);
    margin: 3rem 2rem;
}

.gallery-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 0.8rem;
}

.gallery-frame img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.6));
    pointer-events: none;
}

.gallery-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--gradient-accent);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-thumbnails {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.3rem;
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.gallery-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-base);
    flex-shrink: 0;
    opacity: 0.6;
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--primary);
    opacity: 1;
    transform: scale(1.05);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scroll-wheel {
    0%, 100% { opacity: 1; top: 6px; }
    50% { opacity: 0.3; top: 18px; }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--primary-light);
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   ABOUT / WHY INVEST SECTION
   ============================================ */
.about-section {
    position: relative;
    z-index: 1;
}

.invest-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.invest-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
}

.invest-card:hover {
    border-color: var(--border-glow);
    transform: translateX(8px);
    box-shadow: var(--shadow-glow);
}

.invest-card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    font-size: 1.4rem;
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.invest-card-content h5 {
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
    font-size: 1rem;
}

.invest-card-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.invest-card-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    opacity: 0;
    transition: var(--transition-base);
}

.invest-card:hover .invest-card-glow {
    opacity: 0.1;
}

.glow-red { background: linear-gradient(90deg, transparent, #ef4444); }
.glow-blue { background: linear-gradient(90deg, transparent, #3b82f6); }
.glow-green { background: linear-gradient(90deg, transparent, #22c55e); }
.glow-purple { background: linear-gradient(90deg, transparent, #8b5cf6); }

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories-section {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, var(--bg-dark-secondary) 0%, var(--bg-dark) 100%);
}

.section-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(99,102,241,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(168,85,247,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    background: rgba(99, 102, 241, 0.05);
}

.category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    font-size: 1.3rem;
    color: white;
    margin-bottom: 0.8rem;
    transition: var(--transition-base);
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.category-card h6 {
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    font-size: 0.85rem;
}

.category-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255,255,255,0.03) 50%,
        transparent 60%
    );
    transform: rotate(0deg);
    transition: var(--transition-slow);
}

.category-card:hover .category-shine {
    transform: rotate(180deg);
}

/* ============================================
   SPONSORS / MARQUEE SECTION
   ============================================ */
.sponsors-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.marquee-container {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 3rem;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 60px;
    opacity: 0.5;
    filter: grayscale(100%) brightness(2);
    transition: var(--transition-base);
}

.marquee-item:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
}

.marquee-item img {
    max-height: 40px;
    max-width: 130px;
    object-fit: contain;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 50%, var(--bg-dark) 100%);
}

.product-category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 100%;
    transition: var(--transition-base);
}

.product-category-card:hover {
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.pcc-header {
    background: var(--gradient-accent);
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.pcc-header i {
    font-size: 1.3rem;
}

.pcc-header h5 {
    font-weight: 700;
    margin: 0;
    font-size: 0.95rem;
}

.pcc-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.product-item {
    display: block;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-base);
    text-decoration: none;
}

.product-item:hover {
    border-color: var(--primary);
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.1);
}

.product-img-wrap {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-item:hover .product-img-wrap img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.sale {
    background: var(--gradient-accent);
}

.product-info {
    padding: 0.8rem;
    text-align: center;
}

.product-info h6 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.product-price {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    align-items: center;
}

.price-current {
    font-weight: 700;
    color: #22c55e;
    font-size: 1rem;
}

.price-old {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 0.85rem;
}

/* ============================================
   CTA BANNER SECTION
   ============================================ */
.cta-banner-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: var(--bg-dark-secondary);
}

.cta-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(99, 102, 241, 0.15);
    top: -100px;
    left: -100px;
}

.cta-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(245, 158, 11, 0.15);
    bottom: -100px;
    right: -100px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cta-feature i {
    color: #22c55e;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    position: relative;
    z-index: 1;
    background: var(--bg-dark);
}

.testimonial-slider {
    position: relative;
}

.testimonial-slide {
    padding: 0.5rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card:hover {
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.tc-quote {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: rgba(99, 102, 241, 0.15);
}

.tc-avatar {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
}

.tc-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.tc-avatar-ring {
    position: absolute;
    top: -4px;
    left: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--accent);
    animation: ring-spin 3s linear infinite;
}

@keyframes ring-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.tc-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.tc-location {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: block;
}

.tc-rating {
    margin-bottom: 0.8rem;
}

.tc-rating i {
    color: var(--accent);
    font-size: 0.85rem;
}

.tc-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 0.8rem;
}

.tc-role {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(99, 102, 241, 0.1);
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
}

/* Slick Slider Custom Dots */
.testimonial-slider .slick-dots {
    bottom: -40px;
}

.testimonial-slider .slick-dots li button:before {
    font-size: 10px;
    color: var(--text-muted);
    opacity: 0.5;
}

.testimonial-slider .slick-dots li.slick-active button:before {
    color: var(--primary);
    opacity: 1;
}

.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
    width: 40px;
    height: 40px;
    z-index: 10;
}

.testimonial-slider .slick-prev:before,
.testimonial-slider .slick-next:before {
    font-size: 24px;
    color: var(--primary-light);
    opacity: 0.8;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    position: relative;
    z-index: 1;
    background: var(--footer-bg);
    padding-top: 0;
}

.footer-wave {
    margin-top: -2px;
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: auto;
}

.footer-content {
    padding: 3rem 0 2rem;
}

.footer-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-brand i {
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    color: var(--text-secondary);
    max-width: 450px;
    margin: 0 auto;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: var(--transition-base);
}

.social-icon:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.footer-divider {
    width: 80px;
    height: 2px;
    background: var(--gradient-primary);
    margin: 1.5rem auto;
    border-radius: 1px;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-base);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.6);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1199px) {
    .floating-card.card-1 {
        left: 0;
    }
    .floating-card.card-2 {
        right: -10px;
    }
}

@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding-top: 100px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .floating-card {
        display: none;
    }

    .hero-gallery-main {
        margin: 2rem 0;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-image-container {
        padding: 1rem 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 767px) {
    .py-6 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .invest-card {
        flex-direction: column;
        text-align: center;
    }

    .cta-features {
        gap: 1rem;
    }

    .gallery-frame img {
        height: 220px;
    }

    .product-img-wrap {
        height: 140px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .brand-text {
        font-size: 1.1rem;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    .stat-divider {
        display: none;
    }

    .hero-stats {
        gap: 0.8rem;
    }

    .category-card {
        padding: 1rem 0.5rem;
    }

    .category-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .category-card h6 {
        font-size: 0.75rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .footer-links {
        gap: 1rem;
    }
}

/* ============================================
   ANIMATION ENHANCEMENTS
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Smooth reveal for AOS */
[data-aos] {
    pointer-events: auto !important;
}