/* ==================================
   FUTURE-READY CSS VARIABLES
   ================================== */
:root {
    /* Brand Colors */
    --primary-yellow: #FFD42A;
    --primary-navy: #2B1E67;
    --accent-purple: #6366F1;
    --accent-pink: #EC4899;
    --accent-cyan: #06B6D4;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --black: #000000;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --container-padding: clamp(1rem, 5vw, 3rem);
    --section-padding: clamp(3rem, 8vw, 8rem);
    
    /* Animations */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==================================
   RESET & BASE STYLES
   ================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--gray-900);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==================================
   UTILITY CLASSES
   ================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary-yellow), #FFEB3B);
    color: var(--primary-navy);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 212, 42, 0.3);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================================
   CURSOR TRAIL
   ================================== */
.cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--primary-yellow), transparent);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

/* ==================================
   AMBIENT BACKGROUND
   ================================== */
.ambient-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-yellow), rgba(255, 212, 42, 0.3), transparent);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    box-shadow: 0 0 100px rgba(255, 212, 42, 0.3);
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-purple), rgba(139, 92, 246, 0.3), transparent);
    top: 60%;
    right: 20%;
    animation-delay: -7s;
    box-shadow: 0 0 80px rgba(139, 92, 246, 0.3);
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--accent-cyan), rgba(34, 211, 238, 0.3), transparent);
    bottom: 20%;
    left: 60%;
    animation-delay: -14s;
    box-shadow: 0 0 70px rgba(34, 211, 238, 0.3);
}

.ambient-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 212, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 212, 42, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 30s linear infinite;
}

/* ==================================
   NAVIGATION
   ================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s var(--ease-out-expo);
    animation: slideInFromTop 1s ease-out;
}

.navbar.scrolled {
    background: rgba(17, 24, 39, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--container-padding);
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.nav-logo {
    width: 160px;
    height: 40px;
}

.nav-brand-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    color: var(--gray-300);
    text-decoration: none;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s var(--ease-out-expo);
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg);
    opacity: 0;
    transition: all 0.3s var(--ease-out-expo);
    border-radius: 50px;
}

.nav-link-indicator {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: width 0.3s var(--ease-out-expo);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-yellow) !important;
    background: transparent !important;
    transform: translateY(-2px);
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
}

.nav-link:hover .nav-link-indicator,
.nav-link.active .nav-link-indicator {
    width: 100% !important;
    height: 4px !important;
    background: var(--primary-yellow) !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-yellow), #FFEB3B);
    color: var(--primary-navy);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 212, 42, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    width: 30px;
    height: 30px;
    border: none;
    background: none;
    cursor: pointer;
    gap: 6px;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: all 0.3s var(--ease-out-expo);
}

/* ==================================
   HERO SECTION
   ================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--gray-900), #1E293B);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(255, 212, 42, 0.1), transparent 70%);
}

.hero-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="heroMesh" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,212,42,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23heroMesh)"/></svg>');
    animation: heroMeshFloat 25s ease-in-out infinite;
    opacity: 0.6;
}

.hero-mesh::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="heroMeshSecondary" width="15" height="15" patternUnits="userSpaceOnUse"><circle cx="7.5" cy="7.5" r="1" fill="rgba(139,92,246,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23heroMeshSecondary)"/></svg>');
    animation: heroMeshSecondary 30s ease-in-out infinite reverse;
    opacity: 0.4;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-yellow), transparent);
    animation: heroParticleFloat 8s ease-in-out infinite;
}

.hero-particles::before {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.hero-particles::after {
    width: 6px;
    height: 6px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
    animation-duration: 10s;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 212, 42, 0.8), transparent);
    pointer-events: none;
    animation: particleLifecycle 12s ease-in-out infinite;
}

.particle-1 {
    width: 3px;
    height: 3px;
    top: 15%;
    left: 20%;
    animation-delay: 0s;
    background: radial-gradient(circle, rgba(255, 212, 42, 0.9), transparent);
}

.particle-2 {
    width: 5px;
    height: 5px;
    top: 40%;
    left: 70%;
    animation-delay: 2s;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.7), transparent);
}

.particle-3 {
    width: 4px;
    height: 4px;
    top: 70%;
    left: 30%;
    animation-delay: 4s;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.8), transparent);
}

.particle-4 {
    width: 2px;
    height: 2px;
    top: 25%;
    right: 25%;
    animation-delay: 1s;
    background: radial-gradient(circle, rgba(255, 212, 42, 0.6), transparent);
}

.particle-5 {
    width: 6px;
    height: 6px;
    top: 55%;
    right: 40%;
    animation-delay: 5s;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.7), transparent);
}

.particle-6 {
    width: 3px;
    height: 3px;
    top: 80%;
    left: 60%;
    animation-delay: 3.5s;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.8), transparent);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.hero-content {
    animation: fadeInUp 1s var(--ease-out-expo);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    animation: titleReveal 1.5s ease-out;
}

.title-line {
    display: block;
    color: var(--white);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 900;
}

.title-gradient {
    color: var(--primary-yellow);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 3rem;
    animation: fadeInUp 1.8s ease-out 0.5s both;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: slideInFromBottom 2s ease-out 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-top: 0.5rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.cta-primary {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-yellow), #FFEB3B);
    color: var(--primary-navy);
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    overflow: hidden;
    animation: bounceIn 2.5s ease-out 1.2s both;
}

.cta-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.cta-primary:hover .cta-shimmer {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 212, 42, 0.4);
}

.cta-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--glass-border);
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    animation: slideInRight 2.8s ease-out 1.5s both;
}

.cta-secondary:hover {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s var(--ease-out-expo) 0.3s both;
}

.phone-mockup {
    position: relative;
    z-index: 3;
}

.phone-frame {
    position: relative;
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #2D3748, #1A202C);
    border-radius: 40px;
    padding: 8px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    background: var(--gray-900);
}

.app-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 40px;
    pointer-events: none;
}

.phone-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, var(--primary-yellow), transparent 70%);
    filter: blur(40px);
    opacity: 0.3;
    animation: phoneGlow 4s ease-in-out infinite;
    z-index: -1;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 4px 16px rgba(255, 212, 42, 0.1);
    animation: enhancedFloatCard 8s ease-in-out infinite;
    transform: scale(1.2);
}

.card-1 {
    top: 20%;
    left: -20%;
    animation-delay: 0s;
    background: linear-gradient(135deg, var(--glass-bg), rgba(255, 212, 42, 0.1));
    border: 2px solid rgba(255, 212, 42, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 4px 16px rgba(255, 212, 42, 0.2);
}

.card-2 {
    top: 50%;
    right: -30%;
    animation-delay: 2s;
    background: linear-gradient(135deg, var(--glass-bg), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 4px 16px rgba(139, 92, 246, 0.2);
}

.card-3 {
    bottom: 20%;
    left: -25%;
    animation-delay: 4s;
    background: linear-gradient(135deg, var(--glass-bg), rgba(34, 211, 238, 0.1));
    border: 2px solid rgba(34, 211, 238, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 4px 16px rgba(34, 211, 238, 0.2);
}

.card-1 i {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    animation: savingsPulse 2.5s ease-in-out infinite;
}

.card-2 i {
    color: var(--accent-purple);
    font-size: 1.2rem;
    animation: communityPulse 3s ease-in-out infinite;
}

.card-3 i {
    color: var(--accent-cyan);
    font-size: 1.2rem;
    animation: deliveryPulse 2s ease-in-out infinite;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--gray-400);
    font-size: 0.875rem;
    z-index: 2;
    animation: fadeInUp 3s ease-out 2s both;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary-yellow), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

/* ==================================
   FEATURES SECTION
   ================================== */
.features {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--gray-900);
}

.features-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.features-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="featuresGrid" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,212,42,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23featuresGrid)"/></svg>');
    animation: gridMove 25s linear infinite;
}

.section-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 4rem;
}

.features-showcase {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-navigation {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-nav-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    color: var(--white);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
}

.feature-nav-btn:hover,
.feature-nav-btn.active {
    background: linear-gradient(135deg, var(--primary-yellow), #FFEB3B);
    color: var(--primary-navy);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 212, 42, 0.3);
}

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    font-size: 1.5rem;
}

.feature-nav-btn.active .nav-icon {
    background: rgba(43, 30, 103, 0.2);
}

.nav-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.nav-content p {
    font-size: 0.875rem;
    opacity: 0.8;
}

.feature-display {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-phone {
    position: relative;
    width: 350px;
    height: 700px;
    background: linear-gradient(145deg, #2D3748, #1A202C);
    border-radius: 45px;
    padding: 10px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.feature-phone::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #4A5568;
    border-radius: 2px;
    z-index: 10;
}

.feature-phone::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 4px;
    background: #4A5568;
    border-radius: 2px;
    z-index: 10;
}

.feature-image {
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    object-fit: cover;
    object-position: center;
    border-radius: 35px;
    opacity: 0;
    transition: opacity 0.5s var(--ease-out-expo);
    background: var(--gray-900);
}

.feature-image.active {
    opacity: 1;
}

/* ==================================
   SHOWCASE SECTION
   ================================== */
.showcase {
    position: relative;
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #1E293B, var(--gray-900));
}

.showcase-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.showcase-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,50 C300,100 900,0 1200,50 L1200,120 L0,120 Z" fill="rgba(255,212,42,0.05)"/></svg>');
    animation: waveMove 10s ease-in-out infinite;
}

.showcase-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.showcase-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 2rem;
    transition: all 0.3s var(--ease-out-expo);
}

.showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-yellow), #FFEB3B);
    color: var(--primary-navy);
    border-radius: 20px;
    font-size: 1.5rem;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

.card-content p {
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 80px;
}

.bar {
    width: 20px;
    background: linear-gradient(to top, var(--primary-yellow), #FFEB3B);
    border-radius: 4px 4px 0 0;
    animation: barGrow 2s ease-out infinite;
}

.security-badge {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    border-radius: 50%;
    font-size: 2rem;
    color: var(--white);
}

.security-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    animation: ringPulse 2s ease-out infinite;
}

.ring-1 {
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.ring-2 {
    width: 120px;
    height: 120px;
    animation-delay: 0.5s;
}

.ring-3 {
    width: 140px;
    height: 140px;
    animation-delay: 1s;
}

.network-map {
    position: relative;
    width: 120px;
    height: 80px;
}

.network-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-yellow);
    border-radius: 50%;
    animation: nodePulse 2s ease-in-out infinite;
}

.node-1 {
    top: 10px;
    left: 10px;
    animation-delay: 0s;
}

.node-2 {
    top: 10px;
    right: 10px;
    animation-delay: 0.5s;
}

.node-3 {
    bottom: 10px;
    left: 20px;
    animation-delay: 1s;
}

.node-4 {
    bottom: 10px;
    right: 20px;
    animation-delay: 1.5s;
}

/* ==================================
   PARTNERS SECTION
   ================================== */
.partners {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--gray-900);
}

.partners-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cosmic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.1), transparent 70%);
}

.partners .section-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 4rem;
}

.partners-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.partner-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.3s var(--ease-out-expo);
}

.benefit-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.15);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-yellow), #FFEB3B);
    color: var(--primary-navy);
    border-radius: 15px;
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--ease-out-expo);
    animation: benefitIconFloat 4s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(255, 212, 42, 0.3);
}

.benefit-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
}

.benefit-card:hover .benefit-icon::before {
    left: 100%;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 8px 25px rgba(255, 212, 42, 0.5);
    background: linear-gradient(135deg, #FFEB3B, var(--primary-yellow), var(--accent-cyan));
}

.benefit-icon i {
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
    z-index: 2;
}

/* Specific animations for each icon */
.benefit-card:nth-child(1) .benefit-icon i {
    animation: rocketBoost 3s ease-in-out infinite;
}

.benefit-card:nth-child(2) .benefit-icon i {
    animation: brainPulse 2.5s ease-in-out infinite;
}

.benefit-card:nth-child(3) .benefit-icon i {
    animation: networkPulse 3.5s ease-in-out infinite;
}

.benefit-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--gray-300);
    line-height: 1.6;
}

.partner-form-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 2rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--gray-300);
}

.partner-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--gray-600);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s var(--ease-out-expo);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: var(--primary-yellow);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: var(--gray-400);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s var(--ease-out-expo);
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group select:not([value=""]) + label,
.form-group select[data-selected="true"] + label {
    top: -0.5rem;
    font-size: 0.875rem;
    color: var(--primary-yellow);
}

.form-group select option[value=""] {
    color: var(--gray-500);
    font-style: italic;
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: width 0.3s var(--ease-out-expo);
}

.form-group input:focus ~ .form-line,
.form-group select:focus ~ .form-line {
    width: 100%;
}

.form-submit {
    position: relative;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-yellow), #FFEB3B);
    color: var(--primary-navy);
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    overflow: hidden;
}

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

.form-submit:hover .submit-glow {
    left: 100%;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 212, 42, 0.4);
}

/* ==================================
   COMMUNITY SECTION
   ================================== */
.community {
    position: relative;
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #1E293B, var(--gray-900));
}

.community-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.testimonial-orbits {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(6, 182, 212, 0.1), transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(236, 72, 153, 0.1), transparent 50%);
}

.community .section-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-container {
    position: relative;
    z-index: 2;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    animation: testimonialScroll 30s linear infinite;
}

.testimonial-card {
    flex: 0 0 400px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 2rem;
    transition: all 0.3s var(--ease-out-expo);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-yellow);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-yellow), #FFEB3B);
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.testimonial-info span {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-top: 0.5rem;
}

.testimonial-rating i {
    color: var(--primary-yellow);
    font-size: 0.875rem;
}

.testimonial-content p {
    color: var(--gray-300);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-yellow);
}

.testimonial-stats .stat-label {
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* ==================================
   CONTACT SECTION
   ================================== */
.contact {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--gray-900);
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,50 C300,100 900,0 1200,50 L1200,0 L0,0 Z" fill="rgba(255,212,42,0.05)"/></svg>');
    animation: waveMove 8s ease-in-out infinite reverse;
}

.contact-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.3s var(--ease-out-expo);
}

.contact-method:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.15);
}

.method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-yellow), #FFEB3B);
    color: var(--primary-navy);
    border-radius: 15px;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.method-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.method-content p {
    font-size: 1rem;
    color: var(--primary-yellow);
    margin-bottom: 0.25rem;
}

.method-content span {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.contact-form-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .form-group {
    position: relative;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--gray-600);
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-primary);
    resize: vertical;
    min-height: 120px;
    transition: all 0.3s var(--ease-out-expo);
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-yellow);
}

.contact-form .form-group label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: var(--gray-400);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s var(--ease-out-expo);
}

.contact-form .form-group input:focus + label,
.contact-form .form-group input:valid + label,
.contact-form .form-group textarea:focus + label,
.contact-form .form-group textarea:valid + label {
    top: -0.5rem;
    font-size: 0.875rem;
    color: var(--primary-yellow);
}

/* ==================================
   FOOTER
   ================================== */
.footer {
    position: relative;
    padding: 4rem 0 2rem;
    background: var(--black);
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
}

.footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

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

.footer-links {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

.link-group {
    flex: 1;
    min-width: 120px;
}

.footer-logo {
    width: 270px;
    height: 70px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
}

.social-link:hover {
    background: var(--primary-yellow);
    color: var(--primary-navy);
    transform: translateY(-3px);
}

.link-group h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.link-group a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: all 0.3s var(--ease-out-expo);
}

.link-group a:hover {
    color: var(--primary-yellow);
    transform: translateX(5px);
}

.footer-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
    color: var(--gray-500);
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.badge {
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--gray-300);
    font-size: 0.875rem;
}

/* ==================================
   ANIMATIONS
   ================================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-30px) rotate(2deg) scale(1.05);
    }
    50% {
        transform: translateY(-40px) rotate(0deg) scale(1.1);
    }
    75% {
        transform: translateY(-15px) rotate(-2deg) scale(1.05);
    }
}

@keyframes gridMove {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(50px) translateY(50px);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes phoneGlow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1) translateY(0px);
    }
    25% {
        opacity: 0.7;
        transform: scale(1.08) translateY(-8px);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1) translateY(-12px);
    }
    75% {
        opacity: 0.6;
        transform: scale(1.05) translateY(-5px);
    }
}

@keyframes enhancedFloatCard {
    0%, 100% {
        transform: scale(1.2) translateY(0px) rotate(0deg);
    }
    25% {
        transform: scale(1.25) translateY(-20px) rotate(1deg);
    }
    50% {
        transform: scale(1.3) translateY(-30px) rotate(0deg);
    }
    75% {
        transform: scale(1.25) translateY(-15px) rotate(-1deg);
    }
}

@keyframes savingsPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        color: var(--primary-yellow);
    }
    50% {
        transform: scale(1.3) rotate(180deg);
        color: var(--accent-cyan);
    }
}

@keyframes communityPulse {
    0%, 100% {
        transform: scale(1);
        color: var(--accent-purple);
    }
    33% {
        transform: scale(1.2);
        color: var(--primary-yellow);
    }
    66% {
        transform: scale(1.1);
        color: var(--accent-cyan);
    }
}

@keyframes deliveryPulse {
    0%, 100% {
        transform: scale(1);
        color: var(--accent-cyan);
    }
    50% {
        transform: scale(1.2);
        color: var(--primary-yellow);
    }
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-10px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(50px);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1) translateY(-10px);
    }
    70% {
        transform: scale(0.95) translateY(5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scrollLine {
    0%, 100% {
        opacity: 1;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.5;
        transform: scaleY(0.8);
    }
}

@keyframes meshMove {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(10px) translateY(10px);
    }
}

@keyframes heroMeshFloat {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateX(15px) translateY(-10px) rotate(1deg) scale(1.02);
        opacity: 0.8;
    }
    50% {
        transform: translateX(30px) translateY(-20px) rotate(0deg) scale(1.05);
        opacity: 0.7;
    }
    75% {
        transform: translateX(20px) translateY(-5px) rotate(-1deg) scale(1.03);
        opacity: 0.9;
    }
}

@keyframes heroMeshSecondary {
    0%, 100% {
        transform: translateX(0) translateY(0) scale(1);
        opacity: 0.4;
    }
    33% {
        transform: translateX(-20px) translateY(15px) scale(1.1);
        opacity: 0.6;
    }
    66% {
        transform: translateX(-30px) translateY(25px) scale(0.95);
        opacity: 0.3;
    }
}

@keyframes heroParticleFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-30px) translateX(10px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-60px) translateX(20px) scale(0.8);
        opacity: 1;
    }
    75% {
        transform: translateY(-40px) translateX(15px) scale(1.5);
        opacity: 0.6;
    }
}

@keyframes particleLifecycle {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(0);
        opacity: 0;
    }
    10% {
        transform: translateY(-10px) translateX(5px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-50px) translateX(25px) scale(1.5);
        opacity: 1;
    }
    90% {
        transform: translateY(-80px) translateX(40px) scale(0.8);
        opacity: 0.3;
    }
}

@keyframes waveMove {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(20px);
    }
}

@keyframes barGrow {
    0%, 100% {
        transform: scaleY(0.8);
    }
    50% {
        transform: scaleY(1.2);
    }
}

@keyframes ringPulse {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.4);
    }
}

@keyframes nodePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

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

/* Partner Icon Animations */
@keyframes benefitIconFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.05);
    }
}

@keyframes rocketBoost {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-5px) rotate(5deg) scale(1.1);
    }
    50% {
        transform: translateY(-10px) rotate(0deg) scale(1.2);
    }
    75% {
        transform: translateY(-5px) rotate(-5deg) scale(1.1);
    }
}

@keyframes brainPulse {
    0%, 100% {
        transform: scale(1);
        filter: hue-rotate(0deg);
    }
    33% {
        transform: scale(1.2);
        filter: hue-rotate(60deg);
    }
    66% {
        transform: scale(1.1);
        filter: hue-rotate(120deg);
    }
}

@keyframes networkPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: scale(1.15) rotate(5deg);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.3) rotate(0deg);
        opacity: 0.9;
    }
    75% {
        transform: scale(1.15) rotate(-5deg);
        opacity: 0.8;
    }
}

/* ==================================
   COMMUNITY EVENTS SECTION
   ================================== */
.community-events {
    position: relative;
    padding: 8rem 0;
    background: var(--gray-900);
    overflow: hidden;
}

.events-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.events-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 30%, rgba(255, 212, 42, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 70%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
    animation: float 25s ease-in-out infinite;
}

.events-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 212, 42, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite reverse;
}

.events-content {
    position: relative;
    z-index: 2;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.event-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 212, 42, 0.1), transparent);
    transition: left 0.6s ease;
}

.event-card:hover::before {
    left: 100%;
}

.event-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 212, 42, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.event-card.upcoming {
    border-color: rgba(255, 212, 42, 0.3);
    background: linear-gradient(135deg, var(--glass-bg), rgba(255, 212, 42, 0.05));
}

.event-card.featured {
    border-color: rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, var(--glass-bg), rgba(139, 92, 246, 0.05));
}

.event-image {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.event-icon {
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
}

.event-status {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 20px;
    background: var(--primary-yellow);
    color: var(--primary-navy);
}

.event-card.featured .event-status {
    background: var(--accent-purple);
    color: var(--white);
}

.event-info {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    padding: 1rem;
    background: var(--primary-yellow);
    color: var(--primary-navy);
    border-radius: 15px;
    font-weight: 700;
}

.event-date .day {
    font-size: 1.5rem;
    line-height: 1;
}

.event-date .month {
    font-size: 0.875rem;
    text-transform: uppercase;
}

.event-details h3 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.event-details p {
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
    font-size: 0.875rem;
}

.event-meta i {
    color: var(--primary-yellow);
}

.join-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-yellow), #FFEB3B);
    color: var(--primary-navy);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
}

.join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 212, 42, 0.4);
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.3s var(--ease-out-expo);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 212, 42, 0.3);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: float 4s ease-in-out infinite;
}

/* Duplicate rules removed - using existing .stat-number and .stat-label definitions */

.join-community {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
}

.join-content h3 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.join-content p {
    color: var(--gray-300);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.app-download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--primary-navy);
    color: var(--white);
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.3s var(--ease-out-expo);
    border: 2px solid transparent;
}

.download-btn:hover {
    background: var(--primary-yellow);
    color: var(--primary-navy);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 212, 42, 0.3);
}

.download-btn i {
    font-size: 2rem;
}

.download-btn div span {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
}

.download-btn div strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
}

/* ==================================
   RESPONSIVE DESIGN
   ================================== */
@media (max-width: 1024px) {
    .hero-container,
    .features-showcase,
    .partners-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(17, 24, 39, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateY(-100%);
        transition: transform 0.3s var(--ease-out-expo);
        z-index: -1;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .phone-frame {
        width: 250px;
        height: 500px;
    }
    
    .feature-phone {
        width: 280px;
        height: 560px;
    }
    
    .feature-phone .feature-image {
        top: 8px;
        left: 8px;
        width: calc(100% - 16px);
        height: calc(100% - 16px);
        border-radius: 28px;
    }
    
    .testimonial-card {
        flex: 0 0 320px;
        padding: 1.5rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .community-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .app-download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        gap: 2rem;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .link-group {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-track {
        gap: 1rem;
    }
    
    .testimonial-card {
        flex: 0 0 280px;
        padding: 1rem;
    }
}