/* ===================================================
   PeopleLadder - Complete Production Styles
   =================================================== */
:root {
    --color-navy: #0a1128; --color-midnight: #1a1f3a; --color-teal: #00d9ff;
    --color-cyan: #00fff5; --color-neon-green: #00ff88; --color-purple: #7c3aed;
    --color-white: #ffffff; --color-gray-light: #e5e7eb; --color-gray: #9ca3af;
    --font-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --spacing-xs: 8px; --spacing-sm: 16px; --spacing-md: 24px; --spacing-lg: 32px;
    --spacing-xl: 48px; --spacing-2xl: 64px; --spacing-3xl: 96px;
    --container-max: 1200px; --header-height: 80px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-system); font-size: 16px; line-height: 1.6; 
    color: var(--color-white); background: var(--color-navy); overflow-x: hidden; }
a { color: var(--color-teal); text-decoration: none; transition: 0.2s; }
a:hover { color: var(--color-cyan); }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--spacing-md); }
.section-title { font-size: 48px; font-weight: 700; margin-bottom: var(--spacing-md); text-align: center; }
.section-intro { font-size: 18px; color: var(--color-gray-light); text-align: center; margin-bottom: var(--spacing-xl); }
.cta-button { display: inline-block; padding: var(--spacing-sm) var(--spacing-lg); font-size: 16px;
    font-weight: 600; border-radius: 50px; transition: 0.3s; cursor: pointer; border: none; text-align: center; }
.cta-primary { background: linear-gradient(135deg, var(--color-teal), var(--color-cyan));
    color: var(--color-navy); box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
    position: relative; overflow: hidden; }
.cta-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}
@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}
.cta-primary:hover { transform: translateY(-2px) scale(1.05); 
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.8), 0 0 60px rgba(0, 255, 136, 0.4); }
.cta-secondary { background: rgba(255,255,255,0.1); color: white; border: 2px solid var(--color-teal); }
.reveal-on-scroll { opacity: 0; transform: translateY(30px); transition: 0.6s; }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
.cursor-halo { position: fixed; width: 40px; height: 40px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,217,255,0.3), transparent); 
    pointer-events: none; z-index: 9999; display: none; }
@media (min-width: 1024px) { .cursor-halo { display: block; } }
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10,17,40,0.7); backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0,217,255,0.15); 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1); }
.site-header.scrolled {
    background: rgba(10,17,40,0.95);
    backdrop-filter: blur(30px) saturate(200%);
    padding: 8px 0;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 20px rgba(0,217,255,0.1);
    border-bottom: 1px solid rgba(0,217,255,0.3);
}
.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-teal), var(--color-cyan), transparent);
    opacity: 0.5;
    animation: shimmer-line 3s linear infinite;
}
@keyframes shimmer-line {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,217,255,0.05) 0%, transparent 50%, rgba(124,58,237,0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}
.site-header.scrolled::before {
    opacity: 1;
}
.header-container { max-width: var(--container-max); margin: 0 auto; 
    padding: 20px 32px; display: flex; align-items: center; justify-content: space-between;
    transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.site-header.scrolled .header-container {
    padding: 12px 32px;
}
.logo-wrapper { display: flex; align-items: center; gap: 12px; }
.brand-tagline { display: none; }
.tagline-text { font-size: 12px; font-weight: 600; 
    background: linear-gradient(135deg, var(--color-teal), var(--color-neon-green));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; letter-spacing: 0.5px; opacity: 0.9; }
@media (min-width: 768px) {
    .brand-tagline { display: block; padding-left: 12px; 
        border-left: 2px solid rgba(0,217,255,0.3); }
}
.logo-wrapper img { height: 45px; filter: drop-shadow(0 0 10px rgba(0,217,255,0.3)); 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.site-header.scrolled .logo-wrapper img {
    height: 38px;
}
.logo-wrapper:hover img { filter: drop-shadow(0 0 20px rgba(0,217,255,0.6)); 
    transform: scale(1.05); }
.main-nav { 
    display: none; 
    gap: 0;
}
.main-nav a { 
    color: var(--color-gray-light); 
    font-weight: 500; 
    font-size: 15px; 
    padding: 8px 18px; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    position: relative;
    border-radius: 8px;
}
.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-cyan);
    transition: width 0.3s ease;
    border-radius: 0;
}
.main-nav a:hover {
    color: var(--color-cyan);
    background: rgba(0,217,255,0.08);
    transform: none;
}
.main-nav a:hover::before {
    width: 70%;
}
.header-cta { display: none; padding: 12px 28px; font-size: 15px;
    background: linear-gradient(135deg, var(--color-neon-green), var(--color-teal));
    color: var(--color-navy);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,255,200,0.4); 
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,255,200,0.6);
    background: linear-gradient(135deg, var(--color-teal), var(--color-neon-green));
}
.hamburger { display: flex; flex-direction: column; gap: 5px; background: transparent;
    border: none; cursor: pointer; padding: 10px; position: relative; z-index: 10;
    border-radius: 8px; transition: 0.3s; }
.hamburger:hover { background: rgba(0,217,255,0.1); }
.hamburger span { display: block; width: 28px; height: 3px; 
    background: linear-gradient(90deg, var(--color-teal), var(--color-cyan));
    border-radius: 2px; transition: 0.3s; box-shadow: 0 0 10px rgba(0,217,255,0.5); }
.site-header.nav-open .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}
.site-header.nav-open .hamburger span:nth-child(2) {
    opacity: 0; transform: translateX(20px);
}
.site-header.nav-open .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}
.site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 17, 40, 0.98);
    backdrop-filter: blur(20px);
    padding: 32px 24px;
    border-bottom: 2px solid rgba(0, 217, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    animation: slideDown 0.3s ease;
    gap: 4px;
    border-radius: 0;
    border: none;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
.site-header.nav-open .main-nav a {
    padding: 18px 24px;
    font-size: 18px;
    text-align: left;
    border-radius: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header.nav-open .main-nav a:hover {
    padding-left: 32px;
}
.site-header.nav-open .main-nav a::before {
    display: none;
}
.site-header.nav-open .header-cta {
    display: block;
    margin-top: 16px;
    text-align: center;
}
@media (min-width: 768px) {
    .hamburger { display: none; }
    .main-nav { display: flex !important; flex-direction: row !important; 
        position: static !important; padding: 8px !important; 
        border: 1px solid rgba(0,217,255,0.15) !important;
        border-radius: 50px !important; background: rgba(255,255,255,0.03) !important; }
    .header-cta { display: inline-block; }
}
.hero { min-height: 100vh; padding: calc(80px + 16px) 24px 64px; position: relative;
    overflow: hidden; background: linear-gradient(135deg, #0a1128 0%, #1a1f3a 50%, #2d1b69 100%);
    background-size: 400% 400%; animation: gradient-wave 15s ease infinite; }
@keyframes gradient-wave {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(0,217,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(124,58,237,0.1) 0%, transparent 50%);
    animation: rotate-background 20s linear infinite;
}
@keyframes rotate-background {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(0deg, rgba(10,17,40,0.8), transparent);
    pointer-events: none;
}
.hero-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.4;
    animation: blob-morph 8s ease-in-out infinite; }
@keyframes blob-morph {
    0%, 100% { border-radius: 50%; transform: translate(0, 0) scale(1); }
    25% { border-radius: 40% 60% 50% 50%; transform: translate(30px, -30px) scale(1.1); }
    50% { border-radius: 50% 40% 60% 50%; transform: translate(-20px, 20px) scale(0.9); }
    75% { border-radius: 60% 50% 40% 50%; transform: translate(20px, -10px) scale(1.05); }
}
.hero-blob-1 { width: 400px; height: 400px; background: var(--color-teal); top: 10%; left: -10%; 
    animation: float 8s ease-in-out infinite, blob-morph 8s ease-in-out infinite; }
.hero-blob-2 { width: 300px; height: 300px; background: var(--color-purple); top: 50%; right: -5%;
    animation: float 10s ease-in-out infinite reverse, blob-morph 10s ease-in-out infinite; }
.hero-blob-3 { width: 350px; height: 350px; background: var(--color-cyan); bottom: 10%; left: 20%;
    animation: float 12s ease-in-out infinite, blob-morph 12s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(30px, -30px); } }
.particles { position: absolute; width: 100%; height: 100%; overflow: hidden; z-index: 0; }
.particle { position: absolute; width: 4px; height: 4px; background: var(--color-cyan);
    border-radius: 50%; box-shadow: 0 0 10px var(--color-cyan); opacity: 0;
    animation: float-particle 15s infinite; }
.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 50%; animation-delay: 1s; }
.particle:nth-child(5) { left: 60%; animation-delay: 3s; }
.particle:nth-child(6) { left: 70%; animation-delay: 5s; }
.particle:nth-child(7) { left: 80%; animation-delay: 2.5s; }
.particle:nth-child(8) { left: 90%; animation-delay: 4.5s; }
.particle:nth-child(9) { left: 15%; animation-delay: 1.5s; }
.particle:nth-child(10) { left: 45%; animation-delay: 3.5s; }
.particle:nth-child(11) { left: 75%; animation-delay: 2.2s; }
.particle:nth-child(12) { left: 35%; animation-delay: 4.8s; }
@keyframes float-particle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) scale(1.5); opacity: 0; }
}
.sparkles { position: absolute; width: 100%; height: 100%; overflow: hidden; z-index: 0; }
.sparkle { position: absolute; width: 6px; height: 6px; background: white;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: sparkle-twinkle 3s ease-in-out infinite;
    opacity: 0; box-shadow: 0 0 20px rgba(255,255,255,0.8); }
.sparkle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 40%; right: 15%; animation-delay: 1s; }
.sparkle:nth-child(3) { top: 60%; left: 30%; animation-delay: 2s; }
.sparkle:nth-child(4) { top: 80%; right: 25%; animation-delay: 1.5s; }
.sparkle:nth-child(5) { top: 30%; left: 70%; animation-delay: 0.5s; }
@keyframes sparkle-twinkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}
.hero-container { max-width: var(--container-max); margin: 0 auto;  display: grid;
    grid-template-columns: 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.hero-headline { font-size: 48px; font-weight: 800; line-height: 1.2; margin-bottom: 24px;
    background: linear-gradient(135deg, white, var(--color-cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subheadline { font-size: 18px; color: var(--color-gray-light); margin-bottom: 32px; }
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; }
.hero-store-badges { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; }
.store-badge { display: flex; align-items: center; padding: 8px 24px; 
    background: rgba(255,255,255,0.1); border: 1px solid rgba(0,217,255,0.3);
    border-radius: 8px; backdrop-filter: blur(10px); transition: 0.3s; }
.store-badge:hover { background: rgba(0,217,255,0.2); transform: translateY(-2px); }
.hero-meta { font-size: 14px; color: rgba(255, 255, 255, 0.6); margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.1); text-align: center; }
.hero-meta a { color: var(--color-cyan); text-decoration: none; transition: color 0.3s; }
.hero-meta a:hover { color: var(--color-neon-green); text-decoration: underline; }
.hero-visual { display: grid; grid-template-columns: 1fr; gap: 20px; }
.dashboard-card { 
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)); 
    border: 1px solid rgba(0,217,255,0.25);
    border-radius: 20px; 
    padding: 28px; 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-teal), var(--color-cyan), var(--color-neon-green));
    opacity: 0;
    transition: opacity 0.4s;
}
.dashboard-card:hover { 
    transform: translateY(-6px); 
    box-shadow: 0 12px 40px rgba(0,217,255,0.25), 0 0 0 1px rgba(0,217,255,0.4); 
    border-color: var(--color-cyan);
}
.dashboard-card:hover::before {
    opacity: 1;
}
.card-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(0,217,255,0.5));
}
.dashboard-card h3 { 
    font-size: 20px; 
    margin-bottom: 20px; 
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.job-item { 
    padding: 14px 0; 
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s;
}
.job-item:last-child { border-bottom: none; }
.job-item:hover {
    padding-left: 8px;
}
.job-title {
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    margin-bottom: 8px;
}
.job-tags { 
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.tag {
    font-size: 12px;
    padding: 4px 10px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    color: var(--color-gray-light);
    border: 1px solid rgba(255,255,255,0.1);
}
.tag.verified {
    background: rgba(0,255,136,0.15);
    color: var(--color-neon-green);
    border-color: var(--color-neon-green);
}
.tag.salary {
    background: rgba(0,217,255,0.15);
    color: var(--color-cyan);
    border-color: var(--color-cyan);
    font-weight: 600;
}
.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.progress-label {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
}
.progress-percent {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-teal), var(--color-neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.progress-bar-container { 
    background: rgba(255,255,255,0.08); 
    border-radius: 20px; 
    height: 10px; 
    overflow: hidden; 
    margin-bottom: 12px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}
.progress-bar { 
    height: 100%; 
    background: linear-gradient(90deg, var(--color-teal), var(--color-cyan), var(--color-neon-green));
    border-radius: 20px; 
    transition: width 1s ease;
    box-shadow: 0 0 10px rgba(0,255,136,0.5);
    position: relative;
}
.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.progress-next {
    font-size: 13px;
    color: var(--color-gray-light);
    margin: 0;
}
.savings-display {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
}
.savings-label {
    font-size: 14px;
    color: var(--color-gray-light);
}
.savings-amount {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-neon-green), var(--color-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.discount-info {
    font-size: 13px;
    color: var(--color-gray);
    margin-bottom: 16px;
}
.discount-badge { 
    display: inline-block; 
    padding: 8px 16px; 
    background: rgba(0,255,136,0.15);
    border: 1px solid var(--color-neon-green); 
    border-radius: 20px; 
    font-size: 13px;
    color: var(--color-neon-green);
    font-weight: 600;
}
.network-avatars { 
    display: flex; 
    gap: 0; 
    margin-bottom: 16px; 
}
.avatar { 
    width: 48px; 
    height: 48px; 
    border-radius: 50%; 
    background: linear-gradient(135deg, var(--color-teal), var(--color-cyan));
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 14px; 
    font-weight: 700;
    border: 3px solid var(--color-navy);
    margin-left: -12px;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.avatar:first-child {
    margin-left: 0;
}
.avatar:hover {
    transform: translateY(-4px) scale(1.1);
    z-index: 10;
}
.avatar-count {
    width: 48px; 
    height: 48px; 
    border-radius: 50%; 
    background: rgba(255,255,255,0.1);
    border: 3px solid var(--color-navy);
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 13px; 
    font-weight: 700;
    color: var(--color-cyan);
    margin-left: -12px;
}
.network-text {
    font-size: 14px;
    color: var(--color-gray-light);
    margin-bottom: 12px;
}
.referral-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0,217,255,0.15);
    border: 1px solid var(--color-cyan);
    border-radius: 20px;
    font-size: 13px;
    color: var(--color-cyan);
    font-weight: 600;
}
@media (min-width: 768px) {
    .hero-container { grid-template-columns: 1fr 1fr; }
    .hero-headline { font-size: 64px; }
    .hero-visual { grid-template-columns: 1fr 1fr; gap: 20px; }
}
.social-proof { padding: 48px 24px; background: rgba(10,17,40,0.5); }
.badge-row { max-width: var(--container-max); margin: 0 auto; display: flex;
    flex-wrap: wrap; gap: 16px; justify-content: center; }
.proof-badge { display: inline-block; padding: 8px 24px; background: rgba(0,217,255,0.1);
    border: 1px solid rgba(0,217,255,0.3); border-radius: 50px; font-size: 14px;
    font-weight: 500; color: var(--color-cyan); backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(0,217,255,0.2); transition: 0.3s; }
.section-how-it-works { padding: 96px 24px; background: linear-gradient(180deg, var(--color-navy), var(--color-midnight));
    position: relative; overflow: hidden; }
.section-how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(0,217,255,0.03) 1px, transparent 1px),
        linear-gradient(rgba(0,217,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-flow 20s linear infinite;
    opacity: 0.5;
}
@keyframes grid-flow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}
.section-how-it-works::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,217,255,0.1), transparent);
    transform: translate(-50%, -50%);
    animation: pulse-glow 4s ease-in-out infinite;
}
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.step-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(0,217,255,0.2);
    border-radius: 16px; padding: 32px; transition: 0.3s; }
.step-card:hover { transform: translateY(-8px); background: rgba(0,217,255,0.1);
    border-color: var(--color-teal); box-shadow: 0 8px 32px rgba(0,217,255,0.3); }
.step-number { display: inline-flex; align-items: center; justify-content: center;
    width: 50px; height: 50px; background: linear-gradient(135deg, var(--color-teal), var(--color-cyan));
    color: var(--color-navy); font-size: 24px; font-weight: 700; border-radius: 50%; margin-bottom: 24px; }
.step-card h3 { font-size: 24px; margin-bottom: 16px; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.section-features { padding: 96px 24px; background: var(--color-midnight);
    position: relative; overflow: hidden; }
.section-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(0,217,255,0.02) 50px, rgba(0,217,255,0.02) 100px);
    animation: diagonal-slide 30s linear infinite;
}
@keyframes diagonal-slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(100px); }
}
.section-features::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 20% 30%, rgba(124,58,237,0.1) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(0,255,136,0.08) 0%, transparent 40%);
    animation: float-radial 15s ease-in-out infinite;
}
@keyframes float-radial {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.features-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.feature-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(0,217,255,0.2);
    border-radius: 16px; padding: 32px; transition: 0.3s; cursor: pointer; }
.feature-card:hover { transform: translateY(-8px); background: rgba(0,217,255,0.1);
    border-color: var(--color-teal); box-shadow: 0 12px 40px rgba(0,217,255,0.3);
    animation: feature-glow 2s ease-in-out infinite; }
@keyframes feature-glow {
    0%, 100% { box-shadow: 0 12px 40px rgba(0,217,255,0.3); }
    50% { box-shadow: 0 12px 40px rgba(0,217,255,0.5), 0 0 60px rgba(0,255,136,0.3); }
}
.feature-card h3 { font-size: 24px; color: var(--color-teal); margin-bottom: 16px; }
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
.section-employers { padding: 96px 24px; background: var(--color-navy);
    background-image: linear-gradient(rgba(0,217,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,217,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px; }
.two-col-layout { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.feature-list { list-style: none; margin: 24px 0; }
.feature-list li { padding: 16px 0; padding-left: 32px; position: relative; color: var(--color-gray-light); }
.feature-list li::before { content: '✓'; position: absolute; left: 0; color: var(--color-neon-green);
    font-weight: 700; font-size: 18px; }
.talent-pool-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(0,217,255,0.2);
    border-radius: 16px; padding: 32px; backdrop-filter: blur(8px); }
.candidate-item { display: flex; align-items: center; gap: 16px; padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1); }
.candidate-avatar { width: 50px; height: 50px; border-radius: 50%;
    background: linear-gradient(135deg, var(--color-teal), var(--color-purple));
    display: flex; align-items: center; justify-content: center; font-weight: 700; }
@media (min-width: 768px) { .two-col-layout { grid-template-columns: 1fr 1fr; } }
.section-students { padding: 96px 24px; background: linear-gradient(180deg, var(--color-midnight), var(--color-navy)); }
.learning-path-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(0,217,255,0.2);
    border-radius: 16px; padding: 32px; backdrop-filter: blur(8px); }
.path-step { display: flex; align-items: center; gap: 16px; padding: 16px; margin-bottom: 8px;
    border-radius: 8px; transition: 0.3s; }
.path-step.completed { background: rgba(0,255,136,0.1); }
.path-step.active { background: rgba(0,217,255,0.2); }
.path-icon { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; font-weight: 700; }
.path-step.completed .path-icon { background: var(--color-neon-green); color: var(--color-navy); }
.path-step.active .path-icon { background: var(--color-teal); color: var(--color-navy); }
.section-pricing { padding: 64px 24px; background: var(--color-midnight);
    position: relative; overflow: hidden; }
.section-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0,217,255,0.1) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(0,255,136,0.08) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(124,58,237,0.05) 0%, transparent 50%);
    animation: pricing-glow 8s ease-in-out infinite;
}
@keyframes pricing-glow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}
.pricing-cards { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 900px; margin: 0 auto 32px; }
.pricing-card { background: rgba(255,255,255,0.05); border: 2px solid rgba(0,217,255,0.2);
    border-radius: 24px; padding: 32px; transition: 0.3s; position: relative; }
.pricing-card:hover { transform: translateY(-8px); border-color: var(--color-teal);
    box-shadow: 0 12px 40px rgba(0,217,255,0.4); }
.pricing-card.featured { border-color: var(--color-teal); background: rgba(0,217,255,0.1); }
.featured-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    padding: 4px 16px; background: linear-gradient(135deg, var(--color-teal), var(--color-neon-green));
    color: var(--color-navy); font-size: 14px; font-weight: 700; border-radius: 20px; }
.price { text-align: center; margin-bottom: 24px; }
.price-amount { font-size: 48px; font-weight: 800; color: var(--color-teal); }
.price-period { font-size: 18px; color: var(--color-gray); }
.savings { text-align: center; color: var(--color-neon-green); font-weight: 600; margin-bottom: 24px; }
.pricing-features { list-style: none; margin: 32px 0; }
.pricing-features li { padding: 12px 0; padding-left: 32px; position: relative; }
.pricing-features li::before { content: '✓'; position: absolute; left: 0;
    color: var(--color-teal); font-weight: 700; font-size: 18px; }
.pricing-card .cta-button { width: 100%; margin-top: 24px; }
@media (min-width: 768px) { .pricing-cards { grid-template-columns: repeat(2, 1fr); } }
.section-download { padding: 96px 24px; background: linear-gradient(180deg, var(--color-navy), var(--color-midnight));
    position: relative; overflow: hidden; }
.section-download::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,217,255,0.15), transparent);
    transform: translate(-50%, -50%);
    animation: pulse-background 3s ease-in-out infinite;
}
.section-download .container { position: relative; z-index: 1; }
@keyframes pulse-background {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}
.download-buttons { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center;
    animation: fade-in-up 1s ease; }
@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.download-button { display: flex; align-items: center; gap: 16px; padding: 24px 48px;
    background: rgba(255,255,255,0.05); border: 2px solid rgba(0,217,255,0.3);
    border-radius: 12px; backdrop-filter: blur(10px); transition: 0.3s; min-width: 200px;
    position: relative; overflow: hidden; }
.download-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0,217,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
.download-button:hover::before {
    width: 300px;
    height: 300px;
}
.download-button * { position: relative; z-index: 1; }
.download-button:hover { background: rgba(0,217,255,0.2); border-color: var(--color-teal);
    transform: translateY(-4px) scale(1.05); box-shadow: 0 8px 24px rgba(0,217,255,0.3);
    animation: pulse-glow 1.5s infinite; }
.download-button:hover .download-icon { animation: bounce-icon 0.6s ease; }
.download-icon { font-size: 32px; transition: 0.3s; }
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 8px 24px rgba(0,217,255,0.3); }
    50% { box-shadow: 0 12px 40px rgba(0,217,255,0.6), 0 0 60px rgba(0,255,136,0.3); }
}
@keyframes bounce-icon {
    0%, 100% { transform: translateY(0) scale(1); }
    25% { transform: translateY(-10px) scale(1.1); }
    50% { transform: translateY(0) scale(1.05); }
    75% { transform: translateY(-5px) scale(1.08); }
}
.download-label { font-size: 14px; color: var(--color-gray); }
.download-store { font-size: 18px; font-weight: 700; }
.phone-mockup-container { display: flex; justify-content: center; margin: 60px 0 40px; }
.phone-mockup { position: relative; width: 280px; height: 560px; background: linear-gradient(135deg, #1a1f3a, #0a1128);
    border-radius: 40px; padding: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.5),
    0 0 0 8px rgba(0,217,255,0.1), 0 0 0 12px rgba(0,217,255,0.05);
    animation: float-phone 6s ease-in-out infinite; }
@keyframes float-phone {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    25% { transform: translateY(-20px) rotateY(5deg); }
    50% { transform: translateY(0) rotateY(0deg); }
    75% { transform: translateY(-15px) rotateY(-5deg); }
}
.phone-screen { width: 100%; height: 100%; background: linear-gradient(180deg, #0a1128, #1a1f3a);
    border-radius: 32px; overflow: hidden; position: relative; }
.mock-statusbar { height: 30px; background: rgba(0,217,255,0.1); 
    border-bottom: 1px solid rgba(0,217,255,0.2); }
.mock-content { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.mock-card { background: rgba(0,217,255,0.1); border: 1px solid rgba(0,217,255,0.3);
    border-radius: 12px; padding: 16px; display: flex; align-items: center; gap: 12px;
    animation: slide-in-cards 0.6s ease forwards; opacity: 0; }
.mock-card:nth-child(1) { animation-delay: 0.2s; }
.mock-card:nth-child(2) { animation-delay: 0.4s; }
.mock-card:nth-child(3) { animation-delay: 0.6s; }
@keyframes slide-in-cards {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
.mock-icon { font-size: 32px; animation: bounce-icon 2s ease-in-out infinite; }
.mock-text { color: var(--color-cyan); font-weight: 600; font-size: 14px; }
.phone-glow { position: absolute; top: 50%; left: 50%; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(0,217,255,0.3), transparent);
    transform: translate(-50%, -50%); animation: pulse-glow 3s ease-in-out infinite;
    pointer-events: none; z-index: -1; }
.download-features { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px;
    margin-top: 48px; }
.download-feature { display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--color-gray-light); font-size: 14px; font-weight: 500;
    animation: fade-in-up 1s ease; }
.download-feature:nth-child(1) { animation-delay: 0.2s; }
.download-feature:nth-child(2) { animation-delay: 0.4s; }
.download-feature:nth-child(3) { animation-delay: 0.6s; }
.feature-icon { font-size: 32px; animation: bounce-subtle 2s ease-in-out infinite; }
.download-feature:nth-child(2) .feature-icon { animation-delay: 0.3s; }
.download-feature:nth-child(3) .feature-icon { animation-delay: 0.6s; }
@keyframes bounce-subtle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.section-testimonials { padding: 96px 24px; background: var(--color-midnight); }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.testimonial-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(0,217,255,0.2);
    border-radius: 16px; padding: 32px; text-align: center; transition: 0.3s; }
.testimonial-card:hover { transform: translateY(-8px); border-color: var(--color-teal); }
.testimonial-avatar { width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--color-teal), var(--color-purple));
    display: flex; align-items: center; justify-content: center; font-size: 24px;
    font-weight: 700; margin: 0 auto 24px; }
.testimonial-title { color: var(--color-teal); font-size: 14px; margin-bottom: 24px; }
.testimonial-quote { font-style: italic; color: var(--color-gray-light); line-height: 1.7; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.section-faq { padding: 96px 24px; background: var(--color-navy); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: rgba(255,255,255,0.05); border: 1px solid rgba(0,217,255,0.2);
    border-radius: 12px; margin-bottom: 24px; overflow: hidden; transition: 0.3s; }
.faq-question { width: 100%; padding: 24px; background: transparent; border: none;
    color: white; font-size: 18px; font-weight: 600; text-align: left; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; transition: 0.2s; }
.faq-question:hover { color: var(--color-teal); }
.faq-icon { font-size: 32px; color: var(--color-teal); transition: 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s, opacity 0.4s, padding 0.4s; opacity: 0; }
.faq-item.open .faq-answer { max-height: 500px; opacity: 1; padding: 0 24px 24px; }
.section-contact { padding: 96px 24px; background: linear-gradient(135deg, var(--color-midnight), var(--color-navy)); }
.contact-content { max-width: 600px; margin: 0 auto; text-align: center; }
.email-form { display: flex; flex-direction: column; gap: 16px; margin: 32px 0; }
#email-input { padding: 24px; font-size: 16px; background: rgba(255,255,255,0.1);
    border: 2px solid rgba(0,217,255,0.3); border-radius: 12px; color: white;
    backdrop-filter: blur(10px); transition: 0.2s; }
#email-input:focus { outline: none; border-color: var(--color-teal); box-shadow: 0 0 20px rgba(0,217,255,0.3); }
#email-input.error { border-color: #ff4444; }
.form-message { padding: 16px; border-radius: 8px; font-weight: 600; display: none; }
.form-message.success { display: block; background: rgba(0,255,136,0.2);
    color: var(--color-neon-green); border: 1px solid var(--color-neon-green); }
.form-message.error { display: block; background: rgba(255,68,68,0.2);
    color: #ff4444; border: 1px solid #ff4444; }
@media (min-width: 768px) { .email-form { flex-direction: row; } #email-input { flex: 1; } }
.site-footer { padding: 48px 24px; background: var(--color-navy);
    border-top: 1px solid rgba(0,217,255,0.2); text-align: center; }
.footer-copyright, .footer-brand { color: var(--color-gray); margin-bottom: 8px; }
.footer-nav { margin-top: 24px; }
.footer-nav a { color: var(--color-gray); margin: 0 8px; }

/* Professional Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 40, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-container {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.98), rgba(10, 17, 40, 0.98));
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 217, 255, 0.2);
    animation: slideUp 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 40px;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), transparent);
}

.modal-header h2 {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, var(--color-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.modal-close {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.5);
    transform: rotate(90deg);
}

.modal-content {
    padding: 40px;
    overflow-y: auto;
    max-height: calc(90vh - 120px);
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(0, 217, 255, 0.3);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 217, 255, 0.5);
}

.modal-date {
    color: var(--color-gray);
    font-size: 14px;
    margin-bottom: 24px;
    font-style: italic;
}

.modal-intro {
    font-size: 18px;
    color: var(--color-gray-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.modal-content h3 {
    color: var(--color-cyan);
    font-size: 20px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
}

.modal-content p {
    color: var(--color-gray-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.modal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.modal-content ul li {
    color: var(--color-gray-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.modal-content a {
    color: var(--color-cyan);
    text-decoration: underline;
}

.modal-content a:hover {
    color: var(--color-neon-green);
}

/* Contact Modal Specific Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 32px 0;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(0, 217, 255, 0.08);
    border-color: var(--color-cyan);
    transform: translateY(-4px);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.contact-card h3 {
    font-size: 18px;
    color: #fff;
    margin: 0 0 12px 0;
}

.contact-card p {
    margin: 8px 0;
}

.contact-note {
    font-size: 13px;
    color: var(--color-gray);
    font-style: italic;
}

.contact-form-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
}

.contact-form-section h3 {
    margin-top: 0;
}

.modal-contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-contact-form input,
.modal-contact-form select,
.modal-contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 12px;
    padding: 14px 20px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.modal-contact-form input:focus,
.modal-contact-form select:focus,
.modal-contact-form textarea:focus {
    outline: none;
    border-color: var(--color-cyan);
    background: rgba(0, 217, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.modal-contact-form select {
    cursor: pointer;
}

.modal-contact-form textarea {
    resize: vertical;
}

.btn-submit {
    background: linear-gradient(135deg, var(--color-neon-green), var(--color-teal));
    color: var(--color-navy);
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 255, 136, 0.4);
}

/* Footer Link Styles */
.footer-nav .modal-trigger {
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-nav .modal-trigger:hover {
    color: var(--color-neon-green);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-container {
        margin: 20px;
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 24px 20px;
    }
    
    .modal-header h2 {
        font-size: 24px;
    }
    
    .modal-content {
        padding: 24px 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
/* ===================================================
   MAGNIFICENT DOWNLOAD SECTION REDESIGN
   =================================================== */

.section-download {
    padding: 120px 24px;
    background: linear-gradient(180deg, #0a1128 0%, #1a1f3a 50%, #0a1128 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Elements */
.download-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.download-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float-orb 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.4), transparent);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3), transparent);
    bottom: -250px;
    right: -250px;
    animation-delay: 7s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.3), transparent);
    top: 50%;
    left: 50%;
    animation-delay: 14s;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

.download-float-icons {
    position: absolute;
    inset: 0;
}

.float-icon {
    position: absolute;
    font-size: 40px;
    opacity: 0.1;
    animation: float-icon 15s ease-in-out infinite;
}

.float-icon:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.float-icon:nth-child(2) { top: 20%; right: 15%; animation-delay: 3s; }
.float-icon:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 6s; }
.float-icon:nth-child(4) { bottom: 30%; right: 25%; animation-delay: 9s; }
.float-icon:nth-child(5) { top: 50%; left: 50%; animation-delay: 12s; }

@keyframes float-icon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

/* Hero Layout */
.download-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .download-hero {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

/* Content Side */
.download-content-side {
    max-width: 600px;
}

.download-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-cyan);
    margin-bottom: 24px;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 217, 255, 0.4); }
    50% { box-shadow: 0 0 20px 10px rgba(0, 217, 255, 0); }
}

.badge-icon {
    animation: rotate-star 3s linear infinite;
}

@keyframes rotate-star {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}

.download-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
    letter-spacing: -2px;
}

.title-gradient {
    display: block;
    background: linear-gradient(135deg, var(--color-teal), var(--color-cyan), var(--color-neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(20deg); }
}

.download-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-gray-light);
    margin-bottom: 40px;
}

/* Stats */
.download-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

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

.stat-number {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--color-gray);
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 217, 255, 0.2);
}

/* Download Buttons */
.download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

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

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

.download-btn-primary {
    background: linear-gradient(135deg, #000, #1a1a1a);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.download-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.download-btn-secondary {
    background: linear-gradient(135deg, var(--color-neon-green), var(--color-teal));
    border: 2px solid transparent;
    color: var(--color-navy);
}

.download-btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.4);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-label {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-store {
    font-size: 18px;
    font-weight: 700;
}

/* Trust Badges */
.download-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.trust-badge {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    font-size: 13px;
    color: var(--color-gray-light);
    font-weight: 600;
}

/* Phone Showcase */
.download-visual-side {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-showcase {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.phone-device {
    position: relative;
    width: 300px;
    height: 620px;
    background: linear-gradient(145deg, #1a1f3a, #0a1128);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 40px rgba(0, 217, 255, 0.1);
    margin: 0 auto;
    animation: phone-float 6s ease-in-out infinite;
}

@keyframes phone-float {
    0%, 100% { transform: translateY(0) rotateY(-5deg); }
    50% { transform: translateY(-20px) rotateY(5deg); }
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    background: #000;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen-glow {
    position: absolute;
    inset: 12px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(0, 255, 136, 0.2));
    filter: blur(20px);
    opacity: 0.5;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.phone-screen-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a1f3a, #0f1429);
    border-radius: 32px;
    overflow: hidden;
    padding: 16px;
}

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.screen-body {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    animation: card-slide-in 0.6s ease-out forwards;
    opacity: 0;
    transform: translateX(-20px);
}

.app-card.card-1 { animation-delay: 0.2s; }
.app-card.card-2 { animation-delay: 0.4s; }
.app-card.card-3 { animation-delay: 0.6s; }
.app-card.card-4 { animation-delay: 0.8s; }

@keyframes card-slide-in {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.gradient-blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.gradient-green { background: linear-gradient(135deg, var(--color-neon-green), var(--color-teal)); }
.gradient-purple { background: linear-gradient(135deg, #a855f7, #7c3aed); }
.gradient-orange { background: linear-gradient(135deg, #f59e0b, #d97706); }

.card-info {
    flex: 1;
}

.card-title {
    font-size: 11px;
    color: var(--color-gray);
    font-weight: 600;
    margin-bottom: 4px;
}

.card-value {
    font-size: 14px;
    color: #fff;
    font-weight: 700;
}

.card-arrow {
    font-size: 18px;
    color: var(--color-cyan);
}

.phone-reflection {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent, rgba(0, 217, 255, 0.1));
    border-radius: 50%;
    filter: blur(30px);
}

/* Floating Badges */
.phone-floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-badge {
    position: absolute;
    padding: 8px 16px;
    background: rgba(0, 217, 255, 0.9);
    color: var(--color-navy);
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.4);
    animation: float-badge 3s ease-in-out infinite;
}

.badge-1 {
    top: 10%;
    left: -20px;
    animation-delay: 0s;
}

.badge-2 {
    top: 40%;
    right: -30px;
    animation-delay: 1s;
}

.badge-3 {
    bottom: 15%;
    left: -10px;
    animation-delay: 2s;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .download-title {
        font-size: 40px;
    }
    
    .download-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat-divider {
        width: 100%;
        height: 1px;
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .download-btn {
        width: 100%;
        justify-content: center;
    }
    
    .phone-device {
        width: 280px;
        height: 580px;
    }
}

/* Hero Section Download Buttons - Same Style as Download Section */
.hero-store-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-download-btn {
    flex: 1;
    min-width: 200px;
}

@media (max-width: 768px) {
    .hero-store-badges {
        flex-direction: column;
    }
    
    .hero-download-btn {
        width: 100%;
        justify-content: center;
    }
}
