/* ========================================
   פרויקט יואב - Global Styles
   ======================================== */

/* CSS Variables */
:root {
    --primary-color: #0066ff;
    --primary-dark: #0052cc;
    --secondary-color: #00c853;
    --accent-color: #ff6b00;
    --bg-light: #ffffff;
    --bg-gray: #f8fafc;
    --bg-blue-light: #e8f4fd;
    --text-dark: #1a202c;
    --text-gray: #64748b;
    --text-muted: #94a3b8;
    --border-color: #e2e8f0;
    --card-bg: #ffffff;
    --gradient-primary: linear-gradient(135deg, #0066ff 0%, #00c853 100%);
    --gradient-button: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Heebo', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    opacity: 0;
    animation: sectionHeaderIn 1s ease forwards;
}

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

.section-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 20px auto 0;
    border-radius: 2px;
    animation: lineExpand 2s ease-in-out infinite;
}

@keyframes lineExpand {
    0%, 100% {
        width: 80px;
        opacity: 1;
    }
    50% {
        width: 120px;
        opacity: 0.8;
    }
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease-in-out infinite, titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 0 transparent);
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(0, 102, 255, 0.3));
    }
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    animation: subtitleFade 2s ease-in-out infinite;
}

@keyframes subtitleFade {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--gradient-button);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--bg-blue-light);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-quiz {
    background: linear-gradient(135deg, #ff6b00, #ff9500);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
    position: relative;
    overflow: hidden;
    animation: quizPulse 2s ease-in-out infinite;
}

.btn-quiz:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.5);
}

@keyframes quizPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(255, 107, 0, 0.6), 0 0 40px rgba(255, 149, 0, 0.3);
    }
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #a8d4f5 0%, #b8e0f7 30%, #a8e6cf 70%, #98dfc2 100%);
    backdrop-filter: blur(20px);
    border-bottom: none;
    padding: 18px 0;
    box-shadow: 0 2px 20px rgba(0, 102, 255, 0.1);
}

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

.logo img {
    height: 45px;
    filter: invert(1) drop-shadow(0 0 8px rgba(0, 102, 255, 0.6));
    animation: logoGlow 4s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        filter: invert(1) drop-shadow(0 0 8px rgba(0, 102, 255, 0.6)) drop-shadow(0 0 20px rgba(0, 102, 255, 0.3));
    }
    33% {
        filter: invert(1) drop-shadow(0 0 8px rgba(0, 200, 83, 0.6)) drop-shadow(0 0 20px rgba(0, 200, 83, 0.3));
    }
    66% {
        filter: invert(1) drop-shadow(0 0 8px rgba(100, 50, 255, 0.6)) drop-shadow(0 0 20px rgba(100, 50, 255, 0.3));
    }
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: ctaGlow 2s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 102, 255, 0.5), 0 0 40px rgba(0, 200, 83, 0.2);
    }
}

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

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 102, 255, 0.4);
}

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

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

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

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(232, 244, 253, 0.9) 100%);
}

/* Tech Particles Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 200, 83, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 102, 255, 0.05) 0%, transparent 30%);
    z-index: 2;
    animation: floatingGradient 15s ease-in-out infinite;
}

@keyframes floatingGradient {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Floating Tech Particles */
.tech-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: particleFloat 20s ease-in-out infinite;
}

.particle-1 {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-color), transparent);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.particle-2 {
    width: 15px;
    height: 15px;
    background: linear-gradient(135deg, var(--secondary-color), transparent);
    top: 60%;
    left: 85%;
    animation-delay: -3s;
    animation-duration: 22s;
}

.particle-3 {
    width: 25px;
    height: 25px;
    border: 2px solid rgba(0, 102, 255, 0.3);
    background: transparent;
    top: 75%;
    left: 15%;
    animation-delay: -6s;
    animation-duration: 25s;
}

.particle-4 {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    opacity: 0.5;
    top: 30%;
    left: 75%;
    animation-delay: -9s;
    animation-duration: 20s;
}

.particle-5 {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 200, 83, 0.3);
    background: transparent;
    top: 85%;
    left: 60%;
    animation-delay: -12s;
    animation-duration: 23s;
}

.particle-6 {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    top: 15%;
    left: 50%;
    animation-delay: -15s;
    animation-duration: 19s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translate(50px, -80px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translate(-30px, -150px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translate(40px, -50px) rotate(270deg);
        opacity: 0.7;
    }
}

/* Scanning Line Effect */
.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), var(--primary-color), transparent);
    z-index: 4;
    animation: scanMove 4s ease-in-out infinite;
    opacity: 0.6;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.5), 0 0 40px rgba(0, 102, 255, 0.3);
}

@keyframes scanMove {
    0%, 100% {
        top: 0;
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

.hero .container {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 200, 83, 0.1));
    border: 1px solid rgba(0, 102, 255, 0.2);
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    margin-bottom: 25px;
    animation: fadeInDown 0.8s ease-out, pulse 3s ease-in-out infinite;
    position: relative;
}

.hero-badge::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.hero-badge:hover::before {
    opacity: 0.2;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title .gradient-text {
    display: block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
}

.hero-title .white-text {
    display: block;
    color: var(--text-dark);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-buttons .btn {
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.hero-buttons .btn:hover::after {
    width: 300px;
    height: 300px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    animation: fadeInUp 1s ease-out 1s both;
}

.stat-item {
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 20px 15px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.1), transparent);
    animation: statSweep 3s ease-in-out infinite;
}

.stat-item:nth-child(1)::before { animation-delay: 0s; }
.stat-item:nth-child(2)::before { animation-delay: 0.5s; }
.stat-item:nth-child(3)::before { animation-delay: 1s; }
.stat-item:nth-child(4)::before { animation-delay: 1.5s; }

@keyframes statSweep {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.2);
    background: rgba(255, 255, 255, 0.8);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
    color: var(--primary-color);
}

/* ========================================
   Benefits Section
   ======================================== */
.benefits-section {
    padding: 100px 0;
    background: var(--bg-gray);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
    animation: benefitOrb1 20s ease-in-out infinite;
}

.benefits-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.05) 0%, transparent 70%);
    animation: benefitOrb2 25s ease-in-out infinite;
}

@keyframes benefitOrb1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 50px) scale(1.2); }
}

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

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: benefitCardIn 0.8s ease forwards;
}

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

@keyframes benefitCardIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.05), transparent);
    animation: cardSweep 4s ease-in-out infinite;
}

.benefit-card:nth-child(1)::before { animation-delay: 0s; }
.benefit-card:nth-child(2)::before { animation-delay: 1.3s; }
.benefit-card:nth-child(3)::before { animation-delay: 2.6s; }

@keyframes cardSweep {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.benefit-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    animation: borderGlow 3s ease-in-out infinite;
}

.benefit-card:nth-child(1)::after { animation-delay: 0s; }
.benefit-card:nth-child(2)::after { animation-delay: 1s; }
.benefit-card:nth-child(3)::after { animation-delay: 2s; }

@keyframes borderGlow {
    0%, 100% {
        opacity: 0;
        background-position: 0% 50%;
    }
    50% {
        opacity: 0.6;
        background-position: 100% 50%;
    }
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 200, 83, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.4s ease;
    position: relative;
    animation: iconFloat 4s ease-in-out infinite;
}

.benefit-card:nth-child(1) .benefit-icon { animation-delay: 0s; }
.benefit-card:nth-child(2) .benefit-icon { animation-delay: 0.5s; }
.benefit-card:nth-child(3) .benefit-icon { animation-delay: 1s; }

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

.benefit-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    z-index: -1;
    animation: iconPulse 3s ease-in-out infinite;
}

.benefit-card:nth-child(1) .benefit-icon::before { animation-delay: 0s; }
.benefit-card:nth-child(2) .benefit-icon::before { animation-delay: 1s; }
.benefit-card:nth-child(3) .benefit-icon::before { animation-delay: 2s; }

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

.benefit-icon svg {
    animation: iconSpin 8s linear infinite;
}

@keyframes iconSpin {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 200, 83, 0.2));
    animation: none;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
    position: relative;
}

.benefit-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    animation: titleLine 3s ease-in-out infinite;
}

@keyframes titleLine {
    0%, 100% { width: 0; }
    50% { width: 50px; }
}

.benefit-card p {
    font-size: 15px;
    color: var(--text-gray);
}

/* ========================================
   Tracks Preview Section
   ======================================== */
.tracks-preview {
    padding: 100px 0;
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.track-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow);
    position: relative;
}

.track-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.track-card:hover::before {
    transform: scaleX(1);
}

.track-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
}

.track-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.track-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-gray), var(--bg-blue-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: transform 0.4s ease;
}

.track-card:hover .track-image-placeholder {
    transform: scale(1.1);
}

.track-image .track-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.track-card:hover .track-img {
    transform: scale(1.1);
}

.track-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.track-card:hover .track-badge {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
}

.track-content {
    padding: 25px;
}

.track-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.track-content p {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.track-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.track-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.track-link:hover {
    gap: 12px;
}

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

/* ========================================
   Process Section
   ======================================== */
.process-section {
    padding: 100px 0;
    background: var(--bg-gray);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 102, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 50px 50px, 50px 50px; }
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.3s; }
.process-step:nth-child(3) { animation-delay: 0.5s; }
.process-step:nth-child(4) { animation-delay: 0.7s; }

.process-step:hover .step-number {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.4);
}

.process-step:hover h3 {
    color: var(--primary-color);
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    z-index: 0;
    animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.5;
        background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    }
    50% {
        opacity: 1;
        background: linear-gradient(90deg, transparent, var(--secondary-color), var(--primary-color), transparent);
    }
}

.process-step:first-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-button);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    color: white;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.3);
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    animation: stepPulse 2s ease-in-out infinite;
}

.process-step:nth-child(1) .step-number::before { animation-delay: 0s; }
.process-step:nth-child(2) .step-number::before { animation-delay: 0.5s; }
.process-step:nth-child(3) .step-number::before { animation-delay: 1s; }
.process-step:nth-child(4) .step-number::before { animation-delay: 1.5s; }

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

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.process-step p {
    font-size: 15px;
    color: var(--text-gray);
    max-width: 220px;
    margin: 0 auto;
}

/* ========================================
   Numbers Section
   ======================================== */
.numbers-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 200, 83, 0.08));
    border-top: 1px solid rgba(0, 102, 255, 0.1);
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.number-item {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    position: relative;
    padding: 30px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.number-item:nth-child(1) { animation-delay: 0.1s; }
.number-item:nth-child(2) { animation-delay: 0.2s; }
.number-item:nth-child(3) { animation-delay: 0.3s; }
.number-item:nth-child(4) { animation-delay: 0.4s; }

.number-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.number-item:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
}

.number-item:hover::before {
    opacity: 1;
}

.number-item .number {
    display: block;
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    animation: gradientShift 4s ease-in-out infinite;
}

.number-item .number-label {
    font-size: 18px;
    color: var(--text-gray);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 200, 83, 0.08));
    border-top: 1px solid rgba(0, 102, 255, 0.1);
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, transparent 50%);
    animation: ctaFloat 15s linear infinite;
}

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

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
    background-size: 200% 200%;
}

.cta-content p {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-buttons .btn {
    animation: fadeInUp 0.8s ease forwards;
}

.cta-buttons .btn:first-child {
    animation-delay: 0.2s;
}

.cta-buttons .btn:last-child {
    animation-delay: 0.4s;
}

/* ========================================
   Partners Section
   ======================================== */
.partners-section {
    padding: 80px 0;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.partner-logo {
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo img {
    height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
}

.partner-logo:hover img {
    filter: none;
    opacity: 1;
}

/* Fix for white Orim logo */
.partner-logo img[src*="logo-orim"] {
    filter: grayscale(100%) invert(1) brightness(0.4);
}

.partner-logo:hover img[src*="logo-orim"] {
    filter: invert(1) brightness(0.3) sepia(1) saturate(5) hue-rotate(190deg);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--bg-gray);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    filter: invert(1);
    animation: logoGlow 4s ease-in-out infinite;
}

.footer-brand p {
    color: var(--text-gray);
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-gray);
}

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

.footer-contact p {
    color: var(--text-gray);
    margin-bottom: 10px;
}

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 14px;
}

/* ========================================
   WhatsApp Floating Button
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: whatsappRipple 2s ease-out infinite;
}

.whatsapp-icon svg {
    width: 38px;
    height: 38px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.whatsapp-tooltip {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #128C7E;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 8px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.95);
}

.whatsapp-float:hover .whatsapp-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:hover .whatsapp-icon svg {
    transform: scale(1.1) rotate(5deg);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ========================================
   Tech Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(0, 102, 255, 0);
    }
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 102, 255, 0.5);
    }
}

@keyframes whatsappRipple {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tracks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step::after {
        display: none;
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .number-item .number {
        font-size: 48px;
    }
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
    }

    .whatsapp-icon {
        width: 55px;
        height: 55px;
    }

    .whatsapp-icon svg {
        width: 32px;
        height: 32px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-light);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 32px;
    }

    .benefits-grid,
    .tracks-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .partners-logos {
        flex-wrap: wrap;
        gap: 30px;
    }

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

@media (max-width: 480px) {
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item {
        width: calc(50% - 10px);
    }

    .btn {
        width: 100%;
    }
}
