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

:root {
    /* Color Palette - Lavender */
    --primary: #B19CD9;
    --primary-dark: #9370DB;
    --primary-light: #C4B5FD;
    --accent: #A78BFA;
    --accent-2: #DDD6FE;
    --accent-3: #8B5CF6;
    --dark: #0A0A0F;
    --darker: #050508;
    --light: #FFFFFF;
    --gray: #6B7280;
    --gray-light: #9CA3AF;
    
    /* Gradients - Lavender */
    --gradient-primary: linear-gradient(135deg, #B19CD9 0%, #9370DB 100%);
    --gradient-accent: linear-gradient(135deg, #A78BFA 0%, #C4B5FD 100%);
    --gradient-dark: linear-gradient(135deg, #0A0A0F 0%, #1a1a2e 100%);
    --gradient-glow: linear-gradient(135deg, rgba(177, 156, 217, 0.1) 0%, rgba(147, 112, 219, 0.1) 100%);
    --gradient-hero: linear-gradient(135deg, #B19CD9 0%, #9370DB 100%);
    --gradient-card: linear-gradient(135deg, rgba(177, 156, 217, 0.03) 0%, rgba(147, 112, 219, 0.03) 100%);
    
    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Borders */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(147, 115, 163, 0.4);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?w=1920&q=80') center/cover no-repeat fixed;
    filter: brightness(0.3) blur(8px);
    z-index: -3;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.85);
    z-index: -2;
    pointer-events: none;
}

/* Confetti Canvas */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

/* Individual Confetti Pieces */
.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary);
    top: -10%;
    opacity: 0.6;
    animation: confettiFall linear infinite;
}

.confetti:nth-child(odd) {
    background: var(--primary-light);
}

.confetti:nth-child(3n) {
    background: var(--accent-3);
}

/* Confetti shapes */
.confetti.square {
    border-radius: 0;
}

.confetti.circle {
    border-radius: 50%;
}

.confetti.rectangle {
    width: 8px;
    height: 15px;
}

@keyframes confettiFall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0;
    }
}

/* Generate different confetti pieces with varied positions and speeds */
.confetti:nth-child(1) { left: 5%; animation-duration: 12s; animation-delay: 0s; }
.confetti:nth-child(2) { left: 10%; animation-duration: 10s; animation-delay: 1s; }
.confetti:nth-child(3) { left: 15%; animation-duration: 14s; animation-delay: 2s; }
.confetti:nth-child(4) { left: 20%; animation-duration: 11s; animation-delay: 0.5s; }
.confetti:nth-child(5) { left: 25%; animation-duration: 13s; animation-delay: 1.5s; }
.confetti:nth-child(6) { left: 30%; animation-duration: 12s; animation-delay: 3s; }
.confetti:nth-child(7) { left: 35%; animation-duration: 10s; animation-delay: 2.5s; }
.confetti:nth-child(8) { left: 40%; animation-duration: 15s; animation-delay: 0s; }
.confetti:nth-child(9) { left: 45%; animation-duration: 11s; animation-delay: 1s; }
.confetti:nth-child(10) { left: 50%; animation-duration: 13s; animation-delay: 2s; }
.confetti:nth-child(11) { left: 55%; animation-duration: 12s; animation-delay: 0.5s; }
.confetti:nth-child(12) { left: 60%; animation-duration: 14s; animation-delay: 1.5s; }
.confetti:nth-child(13) { left: 65%; animation-duration: 10s; animation-delay: 3s; }
.confetti:nth-child(14) { left: 70%; animation-duration: 11s; animation-delay: 0s; }
.confetti:nth-child(15) { left: 75%; animation-duration: 13s; animation-delay: 2.5s; }
.confetti:nth-child(16) { left: 80%; animation-duration: 12s; animation-delay: 1s; }
.confetti:nth-child(17) { left: 85%; animation-duration: 15s; animation-delay: 2s; }
.confetti:nth-child(18) { left: 90%; animation-duration: 10s; animation-delay: 0.5s; }
.confetti:nth-child(19) { left: 95%; animation-duration: 14s; animation-delay: 1.5s; }
.confetti:nth-child(20) { left: 8%; animation-duration: 11s; animation-delay: 3s; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Particle Background */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -4;
    background: transparent;
}

/* Disabled mesh background for clean look */

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    transition: all 0.3s ease;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(177, 156, 217, 0.1);
}

.navbar.scrolled {
    padding: var(--spacing-xs) 0;
    background: rgba(10, 10, 15, 0.98);
    border-bottom: 1px solid rgba(177, 156, 217, 0.15);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.logo video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #FFFFFF !important;
    background-clip: unset !important;
}

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

.nav-menu {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
}

.nav-link {
    color: var(--gray-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

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

.nav-instagram {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.nav-instagram::after {
    display: none;
}

.nav-instagram i {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-cta {
    background: var(--gradient-hero);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    color: var(--light) !important;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 120px;
    padding-bottom: 60px;
    overflow: hidden;
    z-index: 1;
}

/* Clean hero section - no emojis */

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

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

.hero-layout-new {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-2xl);
}

.hero-centered {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
}

.hero-content-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hero-visual-right {
    display: flex;
    justify-content: flex-end;
}

/* Clean container - no emojis */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--light);
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease-out backwards;
    backdrop-filter: blur(10px);
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out;
}

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

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

/* Color-changing text animation */
.color-changing-text {
    background: linear-gradient(90deg, #FF6B9D, #00D4FF, #FFD700, #9373A3, #FF6B9D);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: colorShift 4s ease-in-out infinite;
    display: inline-block;
}

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

.gradient-text.artistic {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 50% 0%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 100%; }
}

.hero-description {
    font-size: 1.05rem;
    color: var(--gray-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s backwards;
    justify-content: center;
}

/* App Store Button */
.app-store-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid #FFFFFF;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #FFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.app-store-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.app-store-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.app-store-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.app-store-label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.app-store-name {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--light);
    backdrop-filter: blur(20px);
}

.btn-glass:hover {
    background: rgba(177, 156, 217, 0.1);
    border-color: var(--primary);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--light);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--light);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 0.2rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--primary);
    opacity: 0.3;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.3s backwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.phone-mockup-new {
    position: relative;
    width: 280px;
    height: 560px;
    z-index: 2;
    animation: phoneFloat 4s ease-in-out infinite;
}

.phone-mockup-large {
    width: 380px;
    height: 760px;
    animation: phoneFloatEnhanced 5s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes phoneFloatEnhanced {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% { 
        transform: translateY(-25px) rotate(3deg) scale(1.02);
    }
    50% { 
        transform: translateY(-15px) rotate(-2deg) scale(1);
    }
    75% { 
        transform: translateY(-30px) rotate(2deg) scale(1.01);
    }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--darker);
    border-radius: 40px;
    overflow: hidden;
    border: 8px solid var(--dark);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.phone-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.phone-img.active {
    opacity: 1;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
    pointer-events: none;
}

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

/* Floating Cards - Clean version */
.floating-card {
    position: absolute;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(177, 156, 217, 0.2);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.8rem;
    color: var(--primary);
}

.floating-card span {
    font-weight: 600;
    color: var(--light);
    font-size: 0.95rem;
}

.card-1 {
    top: 5%;
    right: -8%;
    animation-delay: 0s;
}

.card-2 {
    top: 45%;
    left: -12%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 8%;
    right: -5%;
    animation-delay: 2s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    animation: bounce 2s ease-in-out infinite;
}

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

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--primary);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s ease-in-out infinite;
}

@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

.scroll-indicator span {
    font-size: 0.8rem;
    color: var(--gray);
}

/* Section Styles */
.section-header {
    margin-bottom: var(--spacing-xl);
}

.section-header.center {
    text-align: center;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    backdrop-filter: blur(10px);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.section-description {
    font-size: 1rem;
    color: var(--gray-light);
    max-width: 500px;
}

.section-header.center .section-description {
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: var(--spacing-2xl) 0;
    position: relative;
    z-index: 1;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?w=1920&q=80') center/cover no-repeat;
    filter: brightness(0.15) blur(10px);
    z-index: -1;
    opacity: 0.3;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.9);
    z-index: -1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.feature-card-new {
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(177, 156, 217, 0.15);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-new:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
}

.feature-icon-new {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    color: var(--light);
    font-size: 1.5rem;
    color: var(--light);
}

.feature-card-new h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--light);
}

.feature-card-new p {
    color: var(--gray-light);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-section {
    padding: var(--spacing-2xl) 0;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    z-index: 1;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1470229722913-7c0e2dbbafd3?w=1920&q=80') center/cover no-repeat;
    filter: brightness(0.12) blur(8px);
    z-index: -1;
    opacity: 0.25;
}

.pricing-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.92);
    z-index: -1;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
}

/* Dual Pricing Cards */
.pricing-cards-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card-compact {
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(177, 156, 217, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-card-compact:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.pricing-card-compact.featured {
    border-color: rgba(177, 156, 217, 0.25);
}

.pricing-card-compact.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-hero);
}

.pricing-header-compact {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.pricing-header-compact h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--light);
}

.price-compact {
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.price-compact .currency {
    font-size: 1.5rem;
    color: var(--primary-light);
    margin-top: 0.5rem;
}

.price-compact .amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--light);
    line-height: 1;
}

.price-compact .period {
    font-size: 1rem;
    color: var(--gray);
    align-self: flex-end;
    margin-bottom: 0.8rem;
}

.price-compact.special-price {
    margin-bottom: var(--spacing-md);
}

.price-compact .amount.free {
    font-size: 3.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-description-compact {
    color: var(--gray-light);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Compact Feature Columns */
.features-columns-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md) 0;
    border-top: 1px solid rgba(147, 115, 163, 0.2);
    border-bottom: 1px solid rgba(147, 115, 163, 0.2);
}

.feature-column-compact h4 {
    font-size: 0.85rem;
    color: var(--primary-light);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-column-compact h4 i {
    font-size: 1rem;
}

.pricing-features-compact {
    list-style: none;
    padding: 0;
}

.pricing-features-compact li {
    padding: 0.3rem 0;
    color: var(--gray-light);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
    font-size: 0.85rem;
}

.pricing-features-compact i {
    font-size: 0.9rem;
    color: var(--primary-light);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.pricing-cta-compact {
    text-align: center;
}

.pricing-cta-compact .btn {
    width: 100%;
    padding: 0.75rem 1.2rem;
    font-size: 0.9rem;
}

.trial-note-compact {
    margin-top: 0.4rem;
    color: var(--gray);
    font-size: 0.75rem;
}

/* College Plan Specific Styles */
.pricing-card-compact.college-plan {
    border-color: rgba(177, 156, 217, 0.15);
    background: rgba(10, 10, 15, 0.8);
}

.pricing-card-compact.college-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
}

.college-badge {
    background: var(--gradient-primary) !important;
}

.college-benefits {
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm) 0;
    border-top: 1px solid rgba(177, 156, 217, 0.1);
    border-bottom: 1px solid rgba(177, 156, 217, 0.1);
}

.college-benefit {
    display: flex;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.college-benefit:last-child {
    margin-bottom: 0;
}

.college-benefit i {
    font-size: 1.2rem;
    color: var(--primary);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.college-benefit h4 {
    font-size: 0.85rem;
    color: var(--light);
    margin-bottom: 0.1rem;
}

.college-benefit p {
    font-size: 0.75rem;
    color: var(--gray-light);
    line-height: 1.3;
}

.college-requirements {
    background: rgba(177, 156, 217, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
    border: 1px solid rgba(177, 156, 217, 0.1);
}

.college-requirements h4 {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.college-requirements ul {
    list-style: none;
    padding: 0;
}

.college-requirements li {
    padding: 0.3rem 0;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.85rem;
}

.college-requirements i {
    color: var(--primary);
    font-size: 0.9rem;
}

.pricing-card {
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(147, 115, 163, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(147, 115, 163, 0.3);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(147, 115, 163, 0.3);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    opacity: 1;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-hero);
    color: var(--light);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--light);
}

.price {
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: flex-start;
}

.currency {
    font-size: 2rem;
    color: var(--primary-light);
    margin-top: 0.5rem;
}

.amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--light);
    line-height: 1;
}

.period {
    font-size: 1.2rem;
    color: var(--gray);
    align-self: flex-end;
    margin-bottom: 0.8rem;
}

.pricing-description {
    color: var(--gray-light);
    margin-bottom: var(--spacing-xl);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--spacing-xl);
}

.pricing-features li {
    padding: var(--spacing-sm) 0;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.pricing-features i {
    font-size: 1.2rem;
}

.pricing-features .fa-check {
    color: var(--primary-light);
}

.pricing-features .fa-times {
    color: var(--gray);
    opacity: 0.3;
}

/* Trust Section */
.trust-section {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(177, 156, 217, 0.1);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gray-light);
    font-size: 0.85rem;
}

.trust-badge i {
    font-size: 1.1rem;
    color: var(--primary);
}

/* Map Section */
.map-section {
    padding: var(--spacing-2xl) 0;
    position: relative;
    z-index: 1;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1566417713940-fe7c737a9ef2?w=1920&q=80') center/cover no-repeat;
    filter: brightness(0.1) blur(12px);
    z-index: -1;
    opacity: 0.2;
}

.map-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.95);
    z-index: -1;
}

.map-container {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 400px;
    border: 1px solid rgba(177, 156, 217, 0.15);
}

.interactive-map {
    width: 100%;
    height: 100%;
    filter: grayscale(0.3) contrast(1.2);
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    z-index: 400;
}

.location-card {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(147, 115, 163, 0.3);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    min-width: 250px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.location-card i {
    font-size: 1.5rem;
    color: var(--primary-light);
}

.location-card h4 {
    font-size: 1.1rem;
    color: var(--light);
    margin-bottom: 0.2rem;
}

.location-card p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Signup Section */
.signup-section {
    padding: var(--spacing-2xl) 0;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    z-index: 1;
}

.signup-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1517457373958-b7bdd4587205?w=1920&q=80') center/cover no-repeat;
    filter: brightness(0.12) blur(10px);
    z-index: -1;
    opacity: 0.25;
}

.signup-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.92);
    z-index: -1;
}

.signup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.benefits-list {
    margin: var(--spacing-md) 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.benefit-item {
    display: flex;
    gap: var(--spacing-sm);
}

.benefit-item i {
    font-size: 1.2rem;
    color: var(--light);
    margin-top: 0.15rem;
}

.benefit-item h4 {
    font-size: 0.95rem;
    color: var(--light);
    margin-bottom: 0.2rem;
}

.benefit-item p {
    color: var(--gray);
    font-size: 0.8rem;
}

.contact-info {
    margin-top: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.contact-item i {
    color: var(--primary-light);
}

.contact-item a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-light);
}

/* Signup Form */
.signup-form-container {
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(177, 156, 217, 0.15);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
}

.signup-form h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--light);
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--gray-light);
    font-weight: 500;
    font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(177, 156, 217, 0.2);
    border-radius: var(--radius-sm);
    color: var(--light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(147, 115, 163, 0.1);
}

.form-group small {
    display: block;
    margin-top: 0.3rem;
    color: var(--gray);
    font-size: 0.85rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.color-picker-group {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.color-picker-group input[type="color"] {
    width: 60px;
    height: 45px;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.color-picker-group input[type="text"] {
    flex: 1;
}

/* File Upload */
.file-upload {
    position: relative;
    border: 2px dashed rgba(147, 115, 163, 0.3);
    border-radius: var(--radius-md);
    padding: var(--spacing-xl);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload:hover {
    border-color: var(--primary);
    background: rgba(147, 115, 163, 0.05);
}

.file-upload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-content {
    pointer-events: none;
}

.file-upload-content i {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: var(--spacing-sm);
}

.file-upload-content .file-name {
    display: block;
    color: var(--gray-light);
    margin-bottom: var(--spacing-xs);
}

.file-upload-content small {
    color: var(--gray);
}

.image-preview {
    margin-top: var(--spacing-md);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: none;
}

.image-preview img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
}

.image-preview.active {
    display: block;
}

/* Checkbox */
.checkbox-group {
    margin: var(--spacing-xl) 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-label span {
    color: var(--gray-light);
}

.checkbox-label a {
    color: var(--primary-light);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Form Message */
.form-message {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    display: none;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4CAF50;
    display: block;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #F44336;
    display: block;
}

/* Support Section */
.support-section {
    padding: var(--spacing-2xl) 0;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    z-index: 1;
}

.support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1511285560929-80b456fea0bc?w=1920&q=80') center/cover no-repeat;
    filter: brightness(0.1) blur(12px);
    z-index: -1;
    opacity: 0.2;
}

.support-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.95);
    z-index: -1;
}

.support-hero {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.support-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-3xl);
    margin-top: var(--spacing-3xl);
    flex-wrap: wrap;
}

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

.support-stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: 2rem;
    color: var(--light);
    box-shadow: var(--shadow-glow);
}

.support-stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: var(--spacing-xs);
}

.support-stat p {
    color: var(--gray);
    font-size: 0.95rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.support-card {
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(177, 156, 217, 0.15);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.support-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
}

.support-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    font-size: 1.4rem;
    color: var(--light);
}

.support-card h3 {
    font-size: 1.1rem;
    color: var(--light);
    margin-bottom: 0.4rem;
}

.support-card p {
    color: var(--gray-light);
    margin-bottom: var(--spacing-sm);
    flex-grow: 1;
    font-size: 0.9rem;
    line-height: 1.5;
}

.support-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: all 0.3s ease;
}

.support-link:hover {
    color: var(--light);
    gap: var(--spacing-sm);
}

.support-link i {
    transition: transform 0.3s ease;
}

.support-link:hover i {
    transform: translateX(5px);
}

.support-cta-box {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-3xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-xl);
    box-shadow: 0 20px 60px rgba(147, 115, 163, 0.4);
}

.support-cta-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.support-cta-content i {
    font-size: 3rem;
    color: var(--light);
}

.support-cta-content h3 {
    font-size: 1.8rem;
    color: var(--light);
    margin-bottom: var(--spacing-xs);
}

.support-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.support-cta-buttons {
    display: flex;
    gap: var(--spacing-md);
}

.support-cta-buttons .btn {
    white-space: nowrap;
}

.support-cta-buttons .btn-glass {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--light);
    backdrop-filter: blur(10px);
}

.support-cta-buttons .btn-glass:hover {
    background: var(--light);
    color: var(--primary);
}

/* Gallery Section */
.gallery-section {
    padding: var(--spacing-3xl) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-3xl);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(147, 115, 163, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(147, 115, 163, 0.9) 0%, rgba(255, 107, 157, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: var(--light);
}

.gallery-caption {
    color: var(--light);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-cta {
    text-align: center;
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.gallery-cta-text {
    font-size: 1.5rem;
    color: var(--gray-light);
    margin-bottom: var(--spacing-lg);
    font-weight: 500;
}

/* Progress Section - Simple & Professional */
.progress-section {
    padding: var(--spacing-3xl) 0;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.progress-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.progress-stat-card {
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(147, 115, 163, 0.2);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.progress-stat-card:hover {
    border-color: rgba(147, 115, 163, 0.4);
    box-shadow: 0 4px 20px rgba(147, 115, 163, 0.2);
}

.progress-stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    font-size: 1.5rem;
    color: var(--light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.progress-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: var(--spacing-xs);
    line-height: 1;
    position: relative;
    z-index: 1;
}

.progress-stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--light);
    margin-bottom: var(--spacing-xs);
    position: relative;
    z-index: 1;
}

.progress-stat-description {
    font-size: 0.85rem;
    color: var(--gray);
    position: relative;
    z-index: 1;
}

.progress-note {
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(147, 115, 163, 0.1);
    border: 1px solid rgba(147, 115, 163, 0.2);
    border-radius: var(--radius-md);
    color: var(--gray-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    max-width: 500px;
    margin: var(--spacing-xl) auto 0;
}

.progress-note i {
    color: var(--primary-light);
}

/* Footer */
.footer {
    background: rgba(7, 7, 20, 0.9);
    border-top: 1px solid rgba(177, 156, 217, 0.15);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary);
    opacity: 0.2;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-xl);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: var(--light);
}

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

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(177, 156, 217, 0.1);
    border: 1px solid rgba(177, 156, 217, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    border-color: var(--primary);
    color: var(--light);
    transform: translateY(-3px);
}

.social-link i {
    position: relative;
    z-index: 1;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.footer-column h4 {
    color: var(--light);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.footer-column a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    margin-bottom: var(--spacing-xs);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(147, 115, 163, 0.1);
    color: var(--gray);
}

/* Features Showcase Section */
.features-showcase {
    padding: var(--spacing-3xl) 0;
    position: relative;
    z-index: 1;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    margin-top: var(--spacing-sm);
    transition: all 0.3s ease;
}

.feature-link:hover {
    color: var(--light);
    opacity: 0.8;
    gap: var(--spacing-sm);
}

.feature-link i {
    transition: transform 0.3s ease;
}

.feature-link:hover i {
    transform: translateX(5px);
}

/* App Showcase Section */
.app-showcase-section {
    padding: var(--spacing-3xl) 0;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    z-index: 1;
}

/* Scroll-triggered Showcase */
.scroll-showcase-container {
    margin-top: var(--spacing-3xl);
    padding: var(--spacing-2xl) 0;
}

.scroll-showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    min-height: 80vh;
    padding: var(--spacing-3xl) 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-showcase-item.active {
    opacity: 1;
    transform: translateY(0);
}

.scroll-showcase-item:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.scroll-showcase-item:nth-child(even) .scroll-showcase-image {
    order: 1;
}

.scroll-showcase-item:nth-child(even) .scroll-showcase-content {
    order: 2;
}

.scroll-showcase-content {
    padding: var(--spacing-xl);
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.scroll-showcase-item.active .scroll-showcase-content {
    opacity: 1;
    transform: translateX(0);
}

.scroll-showcase-content.scroll-right {
    transform: translateX(30px);
}

.scroll-showcase-item.active .scroll-showcase-content.scroll-right {
    transform: translateX(0);
}

.scroll-showcase-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.scroll-showcase-content p {
    font-size: 1.2rem;
    color: var(--gray-light);
    line-height: 1.8;
    max-width: 500px;
}

.scroll-showcase-image {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.scroll-showcase-item.active .scroll-showcase-image {
    opacity: 1;
    transform: scale(1);
}

.phone-mockup-scroll {
    position: relative;
    width: 300px;
    height: 600px;
    z-index: 2;
}

.phone-screen-scroll {
    width: 100%;
    height: 100%;
    background: var(--darker);
    border-radius: 40px;
    overflow: hidden;
    border: 8px solid var(--dark);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.scroll-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-3xl) 0;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    color: var(--light);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: var(--spacing-xl);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Hero (for sub-pages) */
.page-hero {
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    padding-top: 160px;
    text-align: center;
    position: relative;
    z-index: 1;
}

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

/* Benefits Section */
.benefits-section {
    padding: var(--spacing-2xl) 0;
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.benefit-card {
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(177, 156, 217, 0.15);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: 2rem;
    color: var(--light);
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--light);
}

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

/* Video Demo Section */
.video-demo-section {
    padding: var(--spacing-3xl) 0;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.02);
}

.video-container {
    max-width: 900px;
    margin: var(--spacing-2xl) auto 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(177, 156, 217, 0.2);
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
}

.promoter-video {
    width: 100%;
    height: auto;
    display: block;
    background: var(--darker);
}

.promoter-video::-webkit-media-controls-panel {
    background-color: rgba(10, 10, 15, 0.9);
}

/* Contact Page Section */
.contact-page-section {
    padding: var(--spacing-3xl) 0;
    padding-top: 160px;
    position: relative;
    z-index: 1;
}

.contact-page-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.contact-info-section {
    margin-top: var(--spacing-3xl);
    display: flex;
    justify-content: center;
}

.contact-info-card {
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(177, 156, 217, 0.15);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    text-align: center;
    max-width: 500px;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--light);
}

.contact-info-card p {
    color: var(--gray-light);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.contact-info-card i {
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .scroll-showcase-item {
        grid-template-columns: 1fr;
        min-height: 60vh;
        gap: var(--spacing-xl);
    }
    
    .scroll-showcase-item:nth-child(even) .scroll-showcase-image {
        order: -1;
    }
    
    .scroll-showcase-item:nth-child(even) .scroll-showcase-content {
        order: 1;
    }
    
    .scroll-showcase-content {
        text-align: center;
        transform: translateY(20px);
    }
    
    .scroll-showcase-item.active .scroll-showcase-content {
        transform: translateY(0);
    }
    
    .scroll-showcase-content h3 {
        font-size: 2rem;
    }
    
    .phone-mockup-scroll {
        width: 250px;
        height: 500px;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    .hero-container,
    .hero-layout-new,
    .signup-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .hero {
        padding-top: 140px;
        padding-bottom: 80px;
    }
    
    .hero-content,
    .hero-content-centered {
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual,
    .hero-visual-right {
        order: -1;
        margin-bottom: var(--spacing-xl);
        justify-content: center;
    }
    
    .phone-mockup-large {
        width: 300px;
        height: 600px;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-container::before,
    .hero-container::after {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 15, 35, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: var(--spacing-lg) 0;
        border-top: 1px solid rgba(108, 99, 255, 0.3);
        gap: var(--spacing-md);
        backdrop-filter: blur(30px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        padding-top: 160px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .phone-mockup-new {
        width: 250px;
        height: 500px;
    }
    
    .phone-mockup-large {
        width: 280px;
        height: 560px;
    }
    
    .hero-container::before,
    .hero-container::after {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-cards-dual {
        grid-template-columns: 1fr;
    }
    
    .pricing-card-compact {
        padding: var(--spacing-lg);
    }
    
    .features-columns-compact {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links-group {
        grid-template-columns: 1fr;
    }
    
    .map-overlay {
        position: relative;
        top: auto;
        right: auto;
        margin-top: var(--spacing-md);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .support-cta-box {
        flex-direction: column;
        text-align: center;
    }
    
    .support-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .support-cta-buttons .btn {
        width: 100%;
    }
    
    .scroll-showcase-item {
        min-height: 50vh;
        padding: var(--spacing-xl) 0;
    }
    
    .scroll-showcase-content h3 {
        font-size: 1.8rem;
    }
    
    .scroll-showcase-content p {
        font-size: 1rem;
    }
    
    .phone-mockup-scroll {
        width: 220px;
        height: 440px;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
        --spacing-3xl: 4rem;
    }
    
    .hero {
        padding-top: 140px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
        width: 100%;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .stat-divider {
        width: 100%;
        height: 2px;
    }
    
    .phone-mockup-new {
        width: 220px;
        height: 440px;
    }
    
    .phone-mockup-large {
        width: 240px;
        height: 480px;
    }
    
    .app-store-button {
        padding: 10px 16px;
    }
    
    .app-store-icon {
        width: 20px;
        height: 20px;
    }
    
    .app-store-label {
        font-size: 10px;
    }
    
    .app-store-name {
        font-size: 16px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .progress-stats-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .progress-stat-number {
        font-size: 2.5rem;
    }
    
    .progress-stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .pricing-card-compact {
        padding: var(--spacing-md);
    }
    
    .pricing-header-compact h3 {
        font-size: 1.5rem;
    }
    
    .price-compact .amount {
        font-size: 2.5rem;
    }
    
    .price-compact .currency {
        font-size: 1.2rem;
    }
    
    .price-compact .amount.free {
        font-size: 2.8rem;
    }
    
    .features-columns-compact {
        gap: var(--spacing-xs);
    }
    
    .feature-column-compact h4 {
        font-size: 0.75rem;
    }
    
    .pricing-features-compact li {
        font-size: 0.75rem;
    }
    
    .college-benefit h4 {
        font-size: 0.85rem;
    }
    
    .college-benefit p {
        font-size: 0.75rem;
    }
    
    .gallery-caption {
        font-size: 0.9rem;
    }
    
    .gallery-cta-text {
        font-size: 1.2rem;
    }
    
    .support-cta-box {
        padding: var(--spacing-xl);
    }
    
    .support-cta-content i {
        font-size: 2rem;
    }
    
    .support-cta-content h3 {
        font-size: 1.3rem;
    }
    
    .support-stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .support-stats {
        gap: var(--spacing-xl);
    }
    
    .phone-mockup-scroll {
        width: 200px;
        height: 400px;
    }
    
    .scroll-showcase-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .video-container {
        margin: var(--spacing-xl) var(--spacing-md) 0;
    }
}

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

[data-aos] {
    opacity: 1;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(0);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

/* Fallback: ensure content is always visible */
.features-grid .feature-card-new,
.pricing-cards-dual .pricing-card-compact,
.college-benefits,
.features-columns-compact {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

[data-aos="zoom-in"] {
    transform: scale(0.95);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* Milestones Section */
.milestones-section {
    padding: 60px 0;
}

.milestones-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.milestone-timeline {
    position: relative;
    padding: 40px 0;
}

.milestone-progress-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.milestone-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, #9373A3 0%, #B59BD1 100%);
    border-radius: 2px;
    transition: height 1s ease-out;
    height: 0%;
}

.milestone-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 60px;
    padding-left: 70px;
}

.milestone-item:last-child {
    margin-bottom: 0;
}

.milestone-dot {
    position: absolute;
    left: 20px;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.milestone-item.completed .milestone-dot {
    background: #9373A3;
    border-color: #B59BD1;
    box-shadow: 0 0 20px rgba(147, 115, 163, 0.5);
    color: white;
}

.milestone-item.completed .milestone-dot i {
    display: none;
}

.milestone-item.current .milestone-dot {
    background: #9373A3;
    border-color: #B59BD1;
    box-shadow: 0 0 20px rgba(147, 115, 163, 0.8);
    animation: pulse 2s ease-in-out infinite;
    color: white;
}

.milestone-item.locked .milestone-dot {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
}

.milestone-item.locked .milestone-dot i {
    display: block;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(147, 115, 163, 0.8);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(147, 115, 163, 1);
    }
}

.milestone-content {
    flex: 1;
    padding-top: 0;
}

.milestone-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.milestone-number {
    font-size: 14px;
    font-weight: 700;
    color: #9373A3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.milestone-item.completed .milestone-number,
.milestone-item.current .milestone-number {
    color: #B59BD1;
}

.milestone-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.milestone-lock-icon {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
}

.milestone-item.locked .milestone-title {
    color: rgba(255, 255, 255, 0.4);
}

.milestone-item.locked .milestone-number {
    color: rgba(255, 255, 255, 0.3);
}

.milestone-locked-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-top: 12px;
}

.milestone-locked-message i {
    color: rgba(255, 255, 255, 0.4);
}

.milestone-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.milestone-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.milestone-stat-value {
    font-weight: 700;
    color: white;
}

.milestone-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-top: 8px;
}

.milestone-progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    margin-top: 15px;
    position: relative;
}

.milestone-progress-fill-bar {
    height: 100%;
    background: linear-gradient(90deg, #9373A3 0%, #B59BD1 100%);
    border-radius: 6px;
    transition: width 1s ease-out;
    width: 0%;
    box-shadow: 0 0 10px rgba(147, 115, 163, 0.5);
}

.milestone-progress-text {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    z-index: 1;
}

.milestone-item.locked .milestone-content {
    opacity: 0.5;
    pointer-events: none;
}

.milestone-item {
    transition: all 0.3s ease;
}

.milestone-item:hover:not(.locked) {
    transform: translateX(5px);
}

.milestone-item.completed {
    opacity: 1;
}

.milestone-item.completed .milestone-content {
    border-left: 3px solid #9373A3;
    padding-left: 15px;
}

/* Mobile Responsive for Progress Section */
@media (max-width: 768px) {
    .progress-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .progress-stat-number {
        font-size: 2rem;
    }
    
    .milestone-item {
        gap: 20px;
        padding-left: 15px;
    }
    
    .milestone-dot {
        left: 15px;
        width: 20px;
        height: 20px;
    }
    
    .milestone-progress-line {
        left: 25px;
        width: 3px;
    }
    
    .milestone-title {
        font-size: 20px;
    }
    
    .milestone-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .progress-stats-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .progress-stat-number {
        font-size: 2.5rem;
    }
    
    .progress-stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}
