/* ============================================
   GLOBAL VARIABLES & RESET
   ============================================ */
:root {
    --bg-base: #0a0f2c;
    --bg-navy: #060a20;
    --bg-purple-deep: #0f0525;
    --bg-black: #030308;
    --neon-purple: #6a00ff;
    --neon-pink: #ff00cc;
    --neon-cyan: #00f0ff;
    --neon-blue: #3b82f6;
    --gradient-pink-purple: linear-gradient(135deg, #ff00cc 0%, #6a00ff 100%);
    --gradient-purple-cyan: linear-gradient(135deg, #6a00ff 0%, #00f0ff 100%);
    --gradient-pink-cyan: linear-gradient(135deg, #ff00cc 0%, #6a00ff 50%, #00f0ff 100%);
    --gradient-main: linear-gradient(135deg, #ff00cc 0%, #6a00ff 35%, #3b82f6 70%, #00f0ff 100%);
    --gradient-text: linear-gradient(90deg, #ff00cc, #6a00ff, #00f0ff, #ff00cc);
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-bg-hover: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-border-glow: rgba(106, 0, 255, 0.4);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    --neumorphism-shadow: 10px 10px 20px rgba(0, 0, 0, 0.6), -10px -10px 20px rgba(255, 255, 255, 0.02);
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0C0;
    --text-muted: #5A5A7A;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-smooth: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-purple-deep) 40%, var(--bg-black) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   BACKGROUND EFFECTS
   ============================================ */
.bg-effects {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bg-gradient-base {
    position: absolute;
    top: -30%;
    left: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(10, 15, 44, 0.9) 0%, transparent 70%);
    animation: bgFloat 20s ease-in-out infinite;
}

.bg-gradient-purple {
    position: absolute;
    top: 20%;
    right: -15%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(106, 0, 255, 0.15) 0%, transparent 65%);
    animation: bgFloat 25s ease-in-out infinite reverse;
}

.bg-gradient-pink {
    position: absolute;
    bottom: -25%;
    left: 10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 0, 204, 0.12) 0%, transparent 70%);
    animation: bgFloat 22s ease-in-out infinite;
}

.bg-gradient-cyan {
    position: absolute;
    top: 60%;
    right: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 65%);
    animation: bgFloat 18s ease-in-out infinite reverse;
}

@keyframes bgFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -40px) scale(1.05); }
    66% { transform: translate(-30px, 30px) scale(0.95); }
}

.particles-container {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: particleFloat linear infinite;
    opacity: 0;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.7; }
    90% { opacity: 0.7; }
    100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.light-streaks {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(106, 0, 255, 0.04) 40%, rgba(255, 0, 204, 0.04) 60%, transparent 100%);
    animation: streakMove 10s linear infinite;
}

@keyframes streakMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ============================================
   GLASSMORPHISM + NEUMORPHISM
   ============================================ */
.glass-panel {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    box-shadow: var(--glass-shadow), var(--neumorphism-shadow);
}

.gradient-text {
    background: var(--gradient-main);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 8s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.highlight-text {
    background: var(--gradient-pink-purple);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(255, 0, 204, 0.3);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
    border-radius: var(--radius-xl);
}

.btn-primary {
    background: var(--gradient-main);
    background-size: 200% 200%;
    color: var(--text-primary);
    box-shadow: 0 4px 25px rgba(106, 0, 255, 0.4);
}

.btn-primary:hover {
    background-position: 100% 100%;
    box-shadow: 0 8px 45px rgba(106, 0, 255, 0.6);
    transform: translateY(-3px) scale(1.03);
}

.glow-btn {
    position: relative;
}

.glow-btn::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient-main);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    filter: blur(15px);
    transition: var(--transition-smooth);
}

.glow-btn:hover::before {
    opacity: 0.8;
    animation: glowPulse 2s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0% { box-shadow: 0 0 20px rgba(255, 0, 204, 0.4); }
    100% { box-shadow: 0 0 40px rgba(106, 0, 255, 0.6); }
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px rgba(106, 0, 255, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

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

.btn:hover .btn-arrow {
    transform: translateX(6px);
}

.play-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 10px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(6, 10, 32, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-smooth);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-svg {
    width: 36px;
    height: 36px;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #ff00cc, #ff66dd, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: logoShine 3s linear infinite;
    filter: drop-shadow(0 0 8px rgba(255, 0, 204, 0.5));
}

@keyframes logoShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-links a:hover {
    color: var(--text-primary);
}

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

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

.nav-actions {
    display: flex;
    gap: 14px;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

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

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    margin-bottom: 28px;
    width: fit-content;
}

.badge-glow {
    width: 10px;
    height: 10px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
    animation: glowPulseSmall 2s ease-in-out infinite;
}

@keyframes glowPulseSmall {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.badge-text {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-title {
    font-size: clamp(48px, 7vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--neon-purple);
    margin-bottom: 16px;
    text-shadow: 0 0 25px rgba(106, 0, 255, 0.5);
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 18px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.glow-ring {
    position: absolute;
    border-radius: 50%;
    animation: ringRotate linear infinite;
}

.glow-ring-1 {
    width: 700px;
    height: 460px;
    background: conic-gradient(from 0deg, transparent 0%, rgba(255, 0, 204, 0.35) 20%, transparent 40%, rgba(106, 0, 255, 0.35) 60%, transparent 80%, rgba(0, 240, 255, 0.25) 100%);
    animation-duration: 15s;
    filter: blur(3px);
    border-radius: 40%;
}

.glow-ring-2 {
    width: 620px;
    height: 400px;
    background: conic-gradient(from 90deg, transparent 0%, rgba(106, 0, 255, 0.35) 25%, transparent 50%, rgba(0, 240, 255, 0.35) 75%, transparent 100%);
    animation-duration: 12s;
    animation-direction: reverse;
    filter: blur(3px);
    border-radius: 40%;
}

.glow-ring-3 {
    width: 540px;
    height: 350px;
    background: conic-gradient(from 180deg, transparent 0%, rgba(0, 240, 255, 0.3) 30%, transparent 60%, rgba(255, 0, 204, 0.3) 100%);
    animation-duration: 18s;
    filter: blur(4px);
    border-radius: 40%;
}

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

.dashboard-preview {
    position: relative;
    z-index: 2;
    transform: rotateY(-8deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.dashboard-preview:hover {
    transform: rotateY(-2deg) rotateX(2deg);
}

.dashboard-card {
    padding: 24px 28px;
    width: 480px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.6),
        0 0 50px rgba(106, 0, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px) rotateY(0deg) rotateX(0deg); }
    50% { transform: translateY(-15px) rotateY(2deg) rotateX(-2deg); }
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.card-avatar-gradient {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 0 30px rgba(106, 0, 255, 0.6);
}

.card-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.card-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 50px;
    font-size: 11px;
    color: var(--neon-cyan);
    font-weight: 500;
}

.status-dot-pulse {
    width: 6px;
    height: 6px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon-cyan);
    animation: glowPulseSmall 1.5s ease-in-out infinite;
}

.card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-title::before {
    content: '📋';
    font-size: 18px;
}

.task-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.task-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.task-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--glass-border-glow);
    box-shadow: 0 0 20px rgba(106, 0, 255, 0.2);
    transform: translateY(-2px);
}

.task-icon {
    font-size: 20px;
}

.task-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.task-name {
    font-size: 13px;
    font-weight: 600;
}

.task-progress-text {
    font-size: 11px;
    color: var(--text-muted);
}

.task-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    overflow: hidden;
}

.task-progress-fill {
    height: 100%;
    background: var(--gradient-main);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(106, 0, 255, 0.5);
    transition: width 1s ease;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.card-footer-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.card-footer-value {
    font-size: 14px;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, transparent 0%, rgba(3, 3, 8, 0.6) 100%);
    animation: waveMove 4s ease-in-out infinite;
}

@keyframes waveMove {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    padding: 60px 0;
}

.stats-panel {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 48px 40px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    box-shadow: 
        0 0 50px rgba(106, 0, 255, 0.15),
        var(--glass-shadow),
        var(--neumorphism-shadow);
    position: relative;
    overflow: hidden;
}

.stats-panel::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-main);
    border-radius: inherit;
    z-index: -1;
    opacity: 0.15;
    filter: blur(20px);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-icon {
    font-size: 44px;
    margin-bottom: 14px;
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 90px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.15), transparent);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 72px;
}

.section-badge {
    display: inline-block;
    padding: 8px 18px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--neon-pink);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.section-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 900;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.feature-card {
    padding: 36px 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--neumorphism-shadow);
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--glass-border-glow);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(255, 0, 204, 0.25),
        var(--neumorphism-shadow);
}

.feature-icon-wrapper {
    position: relative;
    width: 76px;
    height: 76px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-bg {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    opacity: 0.3;
    transition: var(--transition-smooth);
}

.gradient-1 { background: var(--gradient-pink-purple); }
.gradient-2 { background: var(--gradient-purple-cyan); }
.gradient-3 { background: linear-gradient(135deg, #6a00ff 0%, #ff00cc 100%); }
.gradient-4 { background: linear-gradient(135deg, #00f0ff 0%, #6a00ff 100%); }

.feature-card:hover .feature-icon-bg {
    opacity: 0.6;
    box-shadow: 0 0 40px currentColor;
    transform: scale(1.15);
}

.feature-icon {
    font-size: 38px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 12px rgba(255, 0, 204, 0.6));
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}

.feature-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 0, 204, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

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

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
    padding: 100px 0;
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto 64px;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 160px;
}

.step-icon {
    position: relative;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    transition: var(--transition);
    box-shadow: var(--neumorphism-shadow);
}

.step-icon-glow {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: var(--gradient-main);
    opacity: 0.25;
    filter: blur(12px);
    animation: glowPulseSmall 3s ease-in-out infinite;
}

.step:hover .step-icon {
    border-color: var(--neon-pink);
    box-shadow: 0 0 40px rgba(255, 0, 204, 0.5);
    transform: scale(1.1);
}

.step-content {
    padding: 0 10px;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-description {
    font-size: 14px;
    color: var(--text-secondary);
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 28px;
}

.connector-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--neon-purple), transparent);
    opacity: 0.4;
}

.connector-arrow {
    color: var(--neon-pink);
    font-size: 18px;
    opacity: 0.6;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { opacity: 0.4; transform: translateX(0); }
    50% { opacity: 0.9; transform: translateX(5px); }
}

.cta-container {
    text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(3, 3, 8, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.footer-column a:hover {
    color: var(--text-primary);
    text-shadow: 0 0 15px rgba(106, 0, 255, 0.4);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link,
.footer-socials .social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-link svg,
.footer-socials .social-icon svg {
    width: 18px;
    height: 18px;
}

.social-link:hover,
.footer-socials .social-icon:hover {
    color: var(--text-primary);
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 204, 0.3);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--neon-purple);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--neon-pink);
}

/* Sticky Telegram Float Button */
.telegram-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: linear-gradient(135deg, #0088cc, #00f0ff);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 30px rgba(0, 240, 255, 0.4);
    transition: var(--transition);
    animation: telegramPulse 3s ease-in-out infinite;
}

.telegram-float svg {
    width: 22px;
    height: 22px;
}

.telegram-float-label {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.telegram-float:hover {
    box-shadow: 0 8px 40px rgba(0, 240, 255, 0.6);
    transform: translateY(-4px) scale(1.05);
}

@keyframes telegramPulse {
    0%, 100% { box-shadow: 0 6px 30px rgba(0, 240, 255, 0.4); }
    50% { box-shadow: 0 6px 30px rgba(0, 240, 255, 0.7), 0 0 0 8px rgba(0, 240, 255, 0.1); }
}

/* ============================================
   TRUST & SECURITY SECTION
   ============================================ */
.trust-security { padding: 80px 0; }

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.trust-card {
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(106, 0, 255, 0.3);
    border-color: var(--glass-border-glow);
}

.trust-card-icon {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.trust-card-icon .icon-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    border-radius: var(--radius-md);
    opacity: 0.3;
}

.trust-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.trust-card-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   EARNING SECTION
   ============================================ */
.earning-section { padding: 100px 0; }
.earning-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.earning-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.earning-desc {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.earning-highlight {
    font-size: 17px;
    color: var(--neon-cyan);
    font-weight: 600;
    margin-bottom: 28px;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.earning-list { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 14px; }
.earning-list li { display: flex; align-items: center; gap: 12px; color: var(--text-secondary); font-size: 16px; }
.tick-icon { width: 22px; height: 22px; min-width: 22px; color: var(--neon-cyan); }

/* Crypto Wallet Card */
.earning-visual { position: relative; display: flex; justify-content: center; align-items: center; perspective: 1200px; }
.earning-ring-1 { width: 450px; height: 300px; background: conic-gradient(from 0deg, transparent 0%, rgba(0,240,255,0.3) 25%, transparent 50%, rgba(106,0,255,0.3) 75%, transparent 100%); border-radius: 40%; animation: ringRotate 14s linear infinite; filter: blur(2px); position: absolute; }
.earning-ring-2 { width: 380px; height: 250px; background: conic-gradient(from 90deg, transparent 0%, rgba(106,0,255,0.3) 30%, transparent 60%, rgba(0,240,255,0.2) 100%); border-radius: 40%; animation: ringRotate 11s linear infinite reverse; filter: blur(2px); position: absolute; }
.earning-ring-3 { width: 320px; height: 210px; background: conic-gradient(from 180deg, transparent 0%, rgba(0,240,255,0.2) 40%, transparent 80%); border-radius: 40%; animation: ringRotate 17s linear infinite; filter: blur(3px); position: absolute; }

.crypto-wallet-card { padding: 28px; width: 380px; background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-xl); box-shadow: 0 25px 70px rgba(0,0,0,0.6), 0 0 50px rgba(0,240,255,0.15), inset 0 1px 0 rgba(255,255,255,0.1); animation: floatCard 6s ease-in-out infinite; position: relative; z-index: 2; }

.wallet-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.wallet-label { font-size: 15px; font-weight: 600; color: var(--text-secondary); }
.wallet-badge { padding: 5px 12px; background: rgba(0,240,255,0.1); border: 1px solid rgba(0,240,255,0.2); border-radius: 50px; font-size: 12px; color: var(--neon-cyan); font-weight: 500; }

.wallet-balance { font-size: 42px; font-weight: 900; background: linear-gradient(90deg, #00f0ff, #6a00ff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 8px; }
.wallet-change { font-size: 14px; color: #10B981; font-weight: 500; margin-bottom: 20px; }

.wallet-chart { width: 100%; height: 60px; overflow: hidden; margin-bottom: 20px; }
.wallet-chart .chart-line { stroke: #00f0ff; stroke-dasharray: 300; stroke-dashoffset: 300; animation: drawLine 2s ease-out forwards; }
.wallet-chart .chart-area { animation: fadeIn 1s ease-out 1s forwards; }

.wallet-actions { display: flex; gap: 12px; }
.wallet-btn { flex: 1; text-align: center; padding: 12px; border-radius: var(--radius-md); font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--transition-smooth); }
.wallet-btn.withdraw { background: linear-gradient(135deg, #00f0ff, #6a00ff); color: #fff; }
.wallet-btn.history { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: var(--text-secondary); }
.wallet-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,240,255,0.3); }

/* ============================================
   GROWTH SECTION
   ============================================ */
.growth-section { padding: 100px 0; }
.growth-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.growth-visual { position: relative; display: flex; justify-content: center; align-items: center; perspective: 1200px; }
.growth-ring-1 { width: 480px; height: 320px; background: conic-gradient(from 0deg, transparent 0%, rgba(255,0,204,0.3) 25%, transparent 50%, rgba(106,0,255,0.3) 75%, transparent 100%); border-radius: 40%; animation: ringRotate 15s linear infinite; filter: blur(2px); position: absolute; }
.growth-ring-2 { width: 400px; height: 270px; background: conic-gradient(from 90deg, transparent 0%, rgba(106,0,255,0.3) 30%, transparent 60%, rgba(255,0,204,0.2) 100%); border-radius: 40%; animation: ringRotate 12s linear infinite reverse; filter: blur(2px); position: absolute; }
.growth-ring-3 { width: 340px; height: 230px; background: conic-gradient(from 180deg, transparent 0%, rgba(255,0,204,0.2) 40%, transparent 80%); border-radius: 40%; animation: ringRotate 18s linear infinite; filter: blur(3px); position: absolute; }

.social-screen { padding: 24px; width: 400px; background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-xl); box-shadow: 0 25px 70px rgba(0,0,0,0.6), 0 0 50px rgba(106,0,255,0.2), inset 0 1px 0 rgba(255,255,255,0.1); animation: floatCard 6s ease-in-out infinite; position: relative; z-index: 2; }

.screen-header { margin-bottom: 20px; }
.screen-title { font-size: 16px; font-weight: 700; color: var(--text-primary); }

.screen-metrics { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.screen-metric { display: flex; align-items: center; gap: 12px; padding: 12px; background: rgba(255,255,255,0.04); border-radius: var(--radius-md); }
.metric-emoji { font-size: 22px; }
.metric-data { display: flex; flex-direction: column; }
.metric-name { font-size: 12px; color: var(--text-muted); }
.metric-value { font-size: 18px; font-weight: 800; background: var(--gradient-main); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.screen-chart { display: flex; align-items: flex-end; gap: 12px; height: 100px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.08); }
.chart-bar { flex: 1; border-radius: 8px 8px 0 0; background: linear-gradient(to top, var(--neon-purple), var(--neon-pink)); display: flex; align-items: flex-start; justify-content: center; padding-top: 8px; transition: height 0.5s ease; position: relative; }
.chart-bar span { font-size: 10px; color: rgba(255,255,255,0.8); position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); white-space: nowrap; }
.chart-bar.bar-2 { background: linear-gradient(to top, var(--neon-blue), var(--neon-cyan)); }
.chart-bar.bar-3 { background: linear-gradient(to top, var(--neon-pink), var(--neon-purple)); }
.chart-bar.bar-4 { background: linear-gradient(to top, #10B981, var(--neon-cyan)); }
.chart-bar.bar-5 { background: linear-gradient(to top, var(--neon-cyan), var(--neon-blue)); }

.growth-title { font-size: clamp(28px, 4vw, 40px); font-weight: 900; margin-bottom: 16px; letter-spacing: -0.02em; }
.growth-desc { font-size: 17px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 12px; }
.growth-list { list-style: none; padding: 0; margin: 24px 0 32px; display: flex; flex-direction: column; gap: 14px; }
.growth-list li { display: flex; align-items: center; gap: 12px; color: var(--text-secondary); font-size: 16px; }

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-us-section { padding: 100px 0; }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-card {
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(106, 0, 255, 0.3);
    border-color: var(--glass-border-glow);
}

.why-icon-wrapper {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.why-icon-bg {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    opacity: 0.3;
    transition: var(--transition-smooth);
}

.why-card:hover .why-icon-bg { opacity: 0.5; box-shadow: 0 0 25px currentColor; transform: scale(1.1); }

.why-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; color: var(--text-primary); }
.why-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ============================================
   PAYMENT METHODS SECTION
   ============================================ */
.payment-methods { padding: 80px 0 60px; overflow: hidden; }

.crypto-scroll { overflow: hidden; margin-top: 40px; }
.crypto-track { display: flex; gap: 24px; animation: cryptoScroll 30s linear infinite; width: max-content; }
.crypto-item {
    padding: 16px 24px;
    background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.crypto-item:hover { border-color: var(--glass-border-glow); box-shadow: 0 0 20px rgba(106,0,255,0.2); transform: translateY(-4px); }

.crypto-name { font-size: 16px; font-weight: 700; color: var(--text-primary); white-space: nowrap; }

@keyframes cryptoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   TILT CARD EFFECT
   ============================================ */
.tilt-card {
    transform-style: preserve-3d;
    will-change: transform;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet: two-column */
@media (min-width: 769px) and (max-width: 1024px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .earning-container,
    .growth-container { gap: 60px; }
}

/* Mobile: single-column */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10,15,44,0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 20px;
        flex-direction: column;
        gap: 16px;
        z-index: 1001;
    }
    .nav-links.active {
        display: flex;
    }

    .nav-actions {
        display: none;
        position: absolute;
        top: calc(100% + 200px);
        left: 0;
        right: 0;
        background: rgba(10,15,44,0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 0 20px 20px;
        flex-direction: column;
        gap: 12px;
        z-index: 1001;
    }
    .nav-actions.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: 1px solid rgba(255,255,255,0.15);
        border-radius: 8px;
        padding: 6px;
        cursor: pointer;
        z-index: 1002;
        position: relative;
    }
    .mobile-menu-btn span {
        display: block;
        width: 22px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-badge {
        margin: 0 auto 28px;
    }
    
    .dashboard-preview {
        transform: none;
    }
    
    .dashboard-card {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }
    
    .task-list {
        grid-template-columns: 1fr;
    }
    
    .stats-panel {
        flex-direction: column;
        gap: 28px;
        padding: 32px 24px;
    }
    
    .stat-divider {
        width: 80px;
        height: 1px;
    }
    
    .features-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    
    .step-connector {
        transform: rotate(90deg);
        padding: 10px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .telegram-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 18px;
    }
    
    .telegram-float-label {
        display: none;
    }
    
    .glow-ring-1 { width: 480px; height: 310px; }
    .glow-ring-2 { width: 420px; height: 270px; }
    .glow-ring-3 { width: 360px; height: 230px; }
}

/* Tablet: two-column */
@media (min-width: 769px) and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-container {
        gap: 60px;
    }
}

/* Desktop: four-column (default) */
@media (min-width: 1025px) {
    /* Default grid applies */
}

/* Mobile responsive for new sections */
@media (max-width: 1024px) {
    .earning-container, .growth-container { grid-template-columns: 1fr; gap: 48px; }
    .earning-content, .growth-content { text-align: center; }
    .earning-list, .growth-list { align-items: center; }
    .crypto-wallet-card { width: 100%; max-width: 360px; margin: 0 auto; }
    .social-screen { width: 100%; max-width: 360px; margin: 0 auto; }
    .earning-ring-1, .growth-ring-1 { width: 300px; height: 200px; }
    .earning-ring-2, .growth-ring-2 { width: 250px; height: 170px; }
    .earning-ring-3, .growth-ring-3 { width: 200px; height: 140px; }
}

/* Extra small screens */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}
