/* Root Variables */
:root {
    --primary-gradient: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 50%, #FFE66D 100%);
    --secondary-gradient: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    --accent-gradient: linear-gradient(135deg, #A8E6CF 0%, #7FD8BE 50%, #42B883 100%);
    --success-gradient: linear-gradient(135deg, #56CCF2 0%, #2F80ED 100%);
    --warning-gradient: linear-gradient(135deg, #F7971E 0%, #FFD200 100%);
    --vibrant-pink: #FF6B6B;
    --vibrant-blue: #4ECDC4;
    --vibrant-purple: #BB6BD9;
    --vibrant-green: #42B883;
    --vibrant-orange: #FF8E53;
    --vibrant-yellow: #FFE66D;
    --vibrant-coral: #FE8A71;
    --vibrant-teal: #21D4FD;
    --vibrant-indigo: #667EEA;
    --vibrant-magenta: #F093FB;
    --rainbow-gradient: linear-gradient(90deg, #FF6B6B 0%, #FF8E53 14%, #FFE66D 28%, #42B883 42%, #4ECDC4 56%, #667EEA 70%, #BB6BD9 84%, #F093FB 100%);
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 0, 0, 0.1);
    --text-primary: #1a1a1a;
    --text-secondary: #6c757d;
    --text-light: #8e9aaf;
    --white-bg: #ffffff;
    --light-bg: #f8f9fa;
    --card-bg: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
    --shadow-colored: 0 10px 40px rgba(102, 126, 234, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.sphere-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #FF6B6B, #FFE66D);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.sphere-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #4ECDC4, #42B883);
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}

.sphere-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #BB6BD9, #667EEA);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

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

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 10s linear infinite;
    opacity: 0.3;
}

@keyframes grid-move {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

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

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

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.5),
                    0 0 40px rgba(78, 205, 196, 0.3),
                    0 0 60px rgba(255, 230, 109, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(187, 107, 217, 0.6),
                    0 0 60px rgba(102, 126, 234, 0.4),
                    0 0 80px rgba(66, 184, 131, 0.3);
    }
}

/* Glass Effect */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.navbar.glass-effect {
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

/* Navigation */
.navbar {
    position: static;
    width: 100%;
    z-index: 1000;
    padding: 20px 40px;
    background: transparent;
}

.logo-img {
    height: 100px;
    width: auto;
    display: block;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}


.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: 30px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logo-pulse 2s infinite;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

@keyframes logo-pulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(147, 51, 234, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.8));
    }
}

.logo-letter {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, #9333ea, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

.nav-link:hover {
    color: var(--vibrant-blue);
    transform: translateY(-2px);
}

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

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

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

.btn-glass {
    background: white;
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), var(--rainbow-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    color: var(--text-primary);
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-glass:hover {
    background-image: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), var(--rainbow-gradient);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.25);
    background-size: 200% 200%;
    animation: rainbow-slide 3s ease infinite;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 50%, #FFE66D 100%);
    border: none;
    color: white;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glow-effect {
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.4),
                0 0 40px rgba(78, 205, 196, 0.2);
    animation: pulse-glow 3s ease-in-out infinite;
    position: relative;
}

@keyframes glow {
    from {
        box-shadow: var(--shadow-colored);
    }
    to {
        box-shadow: 0 0 40px rgba(102, 126, 234, 0.3);
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--vibrant-blue);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    padding: 80px 20px 100px;
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    background: linear-gradient(180deg,
                rgba(255, 107, 107, 0.04) 0%,
                rgba(78, 205, 196, 0.04) 25%,
                rgba(255, 230, 109, 0.04) 50%,
                rgba(187, 107, 217, 0.04) 75%,
                rgba(102, 126, 234, 0.04) 100%);
}

/* Hero Vision */
.hero-vision {
    display: flex;
    gap: 48px;
    margin-top: 40px;
    justify-content: center;
}

.vision-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vision-icon {
    font-size: 1.5rem;
}

.vision-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-content {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.badge-container {
    margin-bottom: 20px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(255, 107, 107, 0.1));
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--vibrant-blue);
}

.pulse-effect {
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(90deg, #FF6B6B 0%, #FF8E53 14%, #FFE66D 28%, #42B883 42%, #4ECDC4 56%, #667EEA 70%, #BB6BD9 84%, #F093FB 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow-text 5s ease infinite;
    animation: gradient-shift 3s ease infinite;
}

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

.rotating-text {
    position: relative;
    display: inline-block;
    height: 1.2em;
    overflow: hidden;
    vertical-align: bottom;
}

.text-option {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    animation: rotate-text 9s infinite;
}

.text-option.active {
    top: 0;
    opacity: 1;
}

.text-option:nth-child(2) {
    animation-delay: 3s;
}

.text-option:nth-child(3) {
    animation-delay: 6s;
}

@keyframes rotate-text {
    0%, 33.33% {
        top: 0;
        opacity: 1;
    }
    33.34%, 100% {
        top: -100%;
        opacity: 0;
    }
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    justify-content: center;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
    border: none;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 45px rgba(78, 205, 196, 0.4);
    background: linear-gradient(135deg, #4ECDC4 0%, #FF6B6B 100%);
}

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

.btn-hero-primary:hover .arrow-icon {
    transform: translateX(5px);
}

.btn-hero-secondary {
    padding: 16px 32px;
    background: white;
    border: 2px solid #e0e0e0;
    color: var(--text-primary);
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.play-icon {
    font-size: 0.875rem;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b6b, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

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

.floating-card {
    position: absolute;
    padding: 24px;
    border-radius: 20px;
    animation: float-card 6s infinite ease-in-out;
    background: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.card-1 {
    top: 0;
    right: 0;
    width: 300px;
    animation-delay: 0s;
}

.card-2 {
    top: 150px;
    left: -50px;
    width: 200px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 50px;
    right: 50px;
    width: 180px;
    animation-delay: 2s;
}

.card-header {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: center;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.2rem;
}

.card-meta {
    display: flex;
    flex-direction: column;
}

.author {
    font-weight: 600;
    font-size: 0.875rem;
}

.time {
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.card-content h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.card-stats {
    display: flex;
    gap: 16px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.mini-chart {
    margin-bottom: 8px;
}

.chart-label,
.earnings-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.growth-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.growth-icon {
    font-size: 2rem;
}

.growth-value {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #56ab2f, #a8e063);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.earnings-display {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #39FF14, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Features Section */
.features-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(255, 107, 107, 0.1));
    border: 1px solid transparent;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--vibrant-blue);
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 36px;
    transition: all 0.3s ease;
    background: white !important;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.hover-lift:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12),
                0 0 25px rgba(255, 107, 107, 0.15);
    border: 1px solid transparent;
    background-image: linear-gradient(white, white), var(--rainbow-gradient) !important;
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.gradient-bg-1 {
    background: linear-gradient(135deg, #FF6B6B, #FE8A71);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.25);
}

.gradient-bg-2 {
    background: linear-gradient(135deg, #4ECDC4, #21D4FD);
    box-shadow: 0 10px 20px rgba(78, 205, 196, 0.25);
}

.gradient-bg-3 {
    background: linear-gradient(135deg, #FFE66D, #FF8E53);
    box-shadow: 0 10px 20px rgba(255, 230, 109, 0.25);
}

.gradient-bg-4 {
    background: linear-gradient(135deg, #BB6BD9, #F093FB);
    box-shadow: 0 10px 20px rgba(187, 107, 217, 0.25);
}

.gradient-bg-5 {
    background: linear-gradient(135deg, #42B883, #A8E6CF);
    box-shadow: 0 10px 20px rgba(66, 184, 131, 0.25);
}

.gradient-bg-6 {
    background: linear-gradient(135deg, #667EEA, #764BA2);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.25);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.feature-link {
    color: var(--vibrant-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.feature-link:hover {
    color: var(--vibrant-purple);
    gap: 8px;
}

/* Demo Section */
.demo-section {
    padding: 100px 20px;
    background: linear-gradient(135deg,
                rgba(255, 107, 107, 0.06) 0%,
                rgba(255, 142, 83, 0.06) 20%,
                rgba(255, 230, 109, 0.06) 40%,
                rgba(66, 184, 131, 0.06) 60%,
                rgba(78, 205, 196, 0.06) 80%,
                rgba(102, 126, 234, 0.06) 100%);
}

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

.demo-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.demo-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.demo-features {
    display: flex;
    gap: 16px;
}

.demo-feature {
    padding: 14px 24px;
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.demo-feature.active {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.25);
}

.demo-feature:hover {
    transform: translateY(-2px);
}

.demo-icon {
    font-size: 1.25rem;
}

.demo-screen {
    padding: 24px;
    min-height: 400px;
    background: white !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1) !important;
}

.demo-header {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.demo-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.demo-display {
    padding: 40px;
}

.typing-effect p {
    font-family: 'Space Grotesk', monospace;
    font-size: 1.125rem;
    color: var(--text-secondary);
    position: relative;
}

.typing-effect p::after {
    content: '|';
    position: absolute;
    animation: blink 1s infinite;
    color: #667eea;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 100px 20px;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.pricing-card {
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    background: white !important;
    border: 2px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #667eea, #ff6b6b) border-box !important;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2) !important;
}

.pricing-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--primary-gradient);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.price-badge {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.pricing-card.featured .price-badge {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 32px;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.price-number {
    font-size: 3.5rem;
    font-weight: 700;
}

.price-period {
    color: var(--text-secondary);
}

.price-features {
    list-style: none;
    margin-bottom: 32px;
}

.price-features li {
    padding: 12px 0;
    color: var(--text-secondary);
}

.btn-price {
    width: 100%;
    padding: 14px 28px;
    background: white;
    border: 2px solid #e0e0e0;
    color: var(--text-primary);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-price:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    border-color: var(--vibrant-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-price.featured {
    background: linear-gradient(135deg, #667eea, #ff6b6b);
    border: none;
    color: white;
}

.btn-price.featured:hover {
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.35);
    transform: translateY(-3px) scale(1.02);
}

/* Community Section */
.community-section {
    padding: 100px 20px;
    background: linear-gradient(180deg,
                rgba(187, 107, 217, 0.05) 0%,
                rgba(240, 147, 251, 0.05) 50%,
                rgba(102, 126, 234, 0.05) 100%);
}

.community-wrapper {
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: white !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.community-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.community-content p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.community-avatars {
    margin-bottom: 32px;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid var(--dark-bg);
    margin-left: -16px;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.avatar-count {
    margin-left: 16px;
    padding: 8px 16px;
    background: var(--glass-bg);
    border-radius: 100px;
    font-weight: 600;
}

.btn-community {
    padding: 14px 36px;
    background: linear-gradient(135deg, #8b7ff5, #5b9ef5);
    border: none;
    color: white;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 127, 245, 0.25);
}

.btn-community:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.community-vision {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(255, 107, 107, 0.05));
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.community-vision h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #667eea, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.community-vision p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.125rem;
}

.stat-card {
    padding: 28px;
    text-align: center;
    background: white !important;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

.stat-emoji {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 100px 20px;
    background: linear-gradient(135deg,
                rgba(255, 107, 107, 0.03) 0%,
                rgba(78, 205, 196, 0.03) 100%);
}

.newsletter-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px;
    text-align: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03), rgba(255, 107, 107, 0.03)) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.newsletter-card h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.newsletter-card p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.email-input {
    flex: 1;
    padding: 14px 24px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 1rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.email-input::placeholder {
    color: var(--text-light);
}

.btn-subscribe {
    padding: 14px 36px;
    background: linear-gradient(135deg, #8b7ff5, #5b9ef5);
    border: none;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.25);
}

.btn-subscribe:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(139, 127, 245, 0.35);
    background: linear-gradient(135deg, #5b9ef5, #8b7ff5);
}

.newsletter-note {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Footer */
.footer {
    margin: 20px;
    border-radius: 24px;
    padding: 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02), rgba(255, 107, 107, 0.02)) !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo span {
    background: linear-gradient(135deg, #9333ea, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo-img {
    height: 120px;
    width: auto;
    display: block;
}

.footer-brand p {
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: linear-gradient(135deg, #8b7ff5, #5b9ef5);
    transform: translateY(-5px) rotate(5deg);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.25);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--vibrant-blue);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-secondary);
}

.footer-badges {
    display: flex;
    gap: 20px;
}

.badge-item {
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(255, 107, 107, 0.05));
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation adjustments */
    .navbar {
        padding: 15px 20px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }

    .logo-img {
        height: 60px;
    }

    .nav-container {
        position: relative;
    }
    .nav-menu,
    .nav-actions {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 20px;
        border-radius: 0 0 20px 20px;
        flex-direction: column;
        gap: 20px;
        margin-top: 10px;
    }

    .nav-menu.mobile-active,
    .nav-actions.mobile-active {
        display: flex;
    }

    .nav-link {
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
        min-width: 44px;
        min-height: 44px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        padding: 0 20px;
    }

    .hero-section {
        padding: 40px 20px 60px;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-vision {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }

    .vision-item {
        justify-content: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 1rem;
        min-height: 48px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .feature-card {
        padding: 25px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    .demo-wrapper {
        grid-template-columns: 1fr;
    }

    .demo-screen {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .community-wrapper {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .community-stats {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* Additional mobile optimizations */
    .gradient-sphere {
        filter: blur(150px);
        opacity: 0.2;
    }

    .footer-logo-img {
        height: 80px;
    }

    .community-vision {
        padding: 30px 20px;
    }

    .demo-feature {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    /* Improve touch targets */
    button {
        min-height: 48px;
    }

    /* Better spacing */
    section {
        padding: 60px 20px;
    }

    /* Optimize text for mobile reading */
    p {
        font-size: 1rem;
        line-height: 1.6;
    }
}