/* COMPLETE DARK THEME REDESIGN */
:root {
    --dark-bg: #0a0e27;
    --dark-surface: #0f1629;
    --dark-card: #1a1f3a;
    --dark-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --accent-purple: #8b5cf6;
    --accent-blue: #3b82f6;
    --accent-pink: #ec4899;
    --accent-teal: #14b8a6;
    --accent-gradient: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

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

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

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

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
    z-index: 1000;
    padding: var(--spacing-md) 0;
    overflow: hidden;
}

/* Animated Blue Wave */
.navbar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 300%;
    height: 200%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(59, 130, 246, 0.1) 20%,
        rgba(99, 102, 241, 0.15) 40%,
        rgba(14, 165, 233, 0.1) 60%,
        transparent 100%);
    animation: navWave 15s linear infinite;
    pointer-events: none;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(59, 130, 246, 0.8) 25%,
        rgba(99, 102, 241, 1) 50%,
        rgba(59, 130, 246, 0.8) 75%,
        transparent 100%);
    animation: navGlow 8s ease-in-out infinite;
}

@keyframes navWave {
    0% {
        transform: translateX(-33.33%) skewX(-10deg);
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(20deg);
    }
    100% {
        transform: translateX(0%) skewX(-10deg);
        filter: hue-rotate(0deg);
    }
}

@keyframes navGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scaleX(0.5);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

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

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

/* Ambient Blue Aura */
.nav-brand::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 40px;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(20px);
    animation: brandAura 5s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes brandAura {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    position: relative;
}

.logo-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(10px);
    animation: logoGlow 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes logoGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(0.9);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--accent-purple);
    position: relative;
    z-index: 1;
}

.brand-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
}

.brand-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    opacity: 0.3;
    animation: brandUnderline 4s ease-in-out infinite;
}

@keyframes brandUnderline {
    0%, 100% {
        transform: scaleX(0.8);
        opacity: 0.3;
    }
    50% {
        transform: scaleX(1);
        opacity: 0.6;
    }
}

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

/* Floating Blue Particles */
.nav-menu::before,
.nav-menu::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.nav-menu::before {
    top: -10px;
    animation: floatParticle1 10s ease-in-out infinite;
}

.nav-menu::after {
    bottom: -10px;
    animation: floatParticle2 12s ease-in-out infinite;
}

@keyframes floatParticle1 {
    0%, 100% {
        transform: translateX(0) translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translateX(200px) translateY(5px);
        opacity: 0.5;
    }
    90% {
        opacity: 1;
    }
}

@keyframes floatParticle2 {
    0%, 100% {
        transform: translateX(150px) translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translateX(-50px) translateY(-5px);
        opacity: 0.5;
    }
    90% {
        opacity: 1;
    }
}

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

.nav-link {
    color: var(--text-secondary);
    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(--accent-gradient);
    transition: width 0.3s ease;
}

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

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

.btn {
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.6) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    border-radius: 50%;
}

.btn-primary:hover::before {
    width: 100px;
    height: 100px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4),
                0 0 40px rgba(99, 102, 241, 0.2);
}

.mobile-menu-toggle {
    display: none;
}

/* HERO SECTION - ASYMMETRIC LAYOUT */
.hero {
    position: relative;
    min-height: 700px;
    padding: 120px 0 80px;
    overflow: hidden;
    background: var(--dark-bg);
}

.hero-bg-animation {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    mix-blend-mode: screen;
}

.orb-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-purple) 0%, transparent 60%);
    top: -400px;
    right: -200px;
    animation: float 30s ease-in-out infinite;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-pink) 0%, transparent 60%);
    bottom: -200px;
    left: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-teal) 0%, transparent 60%);
    top: 40%;
    left: 30%;
    animation: float 35s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

/* LEFT SIDE - CONTENT */
.hero-left {
    animation: slideInLeft 1s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px 8px 12px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 100px;
    margin-bottom: 32px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: clamp(48px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 24px 0;
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
}

.title-gradient {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-blue) 25%, var(--accent-pink) 50%, var(--accent-teal) 75%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient 8s ease infinite;
}

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

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 40px 0;
    max-width: 500px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.hero-btn-primary:hover::before {
    transform: translateX(100%);
}

.hero-btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

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

.hero-btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* RIGHT SIDE - METRICS */
.hero-right {
    position: relative;
    animation: slideInRight 1s ease-out 0.2s both;
}

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

.hero-metrics {
    display: grid;
    gap: 24px;
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, var(--dark-card), var(--dark-surface));
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-purple), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.metric-card:hover {
    transform: translateX(8px) scale(1.02);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2),
                0 0 40px rgba(139, 92, 246, 0.1);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), var(--dark-card));
}

.metric-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 14px;
    flex-shrink: 0;
}

.metric-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent-purple);
}

.metric-content {
    flex: 1;
}

.metric-value {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #fff, rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* FEATURES SECTION - DARK THEME */
.features {
    padding: 80px 0;
    background: var(--dark-surface);
    position: relative;
    border-top: 1px solid var(--dark-border);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.feature-card {
    padding: var(--spacing-xl);
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.feature-card {
    padding: var(--spacing-xl);
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover {
    background: linear-gradient(135deg, var(--dark-card), rgba(139, 92, 246, 0.1));
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3),
                0 0 60px rgba(139, 92, 246, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    position: relative;
    animation: featureIconFloat 4s ease-in-out infinite;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -10px;
    background: var(--accent-gradient);
    border-radius: var(--radius-md);
    opacity: 0.3;
    filter: blur(15px);
    animation: featureIconGlow 4s ease-in-out infinite;
}

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

@keyframes featureIconGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* HOW IT WORKS - DARK THEME */
.how-it-works {
    padding: 60px 0;
    background: var(--dark-bg);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 1100px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-lg) 0;
}

.step-card {
    flex: 1;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    min-height: 160px;
    transition: all 0.3s ease;
}

.step-card {
    flex: 1;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    min-height: 160px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 60%);
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
}

.step-card:hover::before {
    top: -50%;
    left: -50%;
    opacity: 1;
}

.step-card:hover {
    background: linear-gradient(135deg, var(--dark-card), rgba(139, 92, 246, 0.1));
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3),
                0 0 50px rgba(139, 92, 246, 0.1);
}

.step-icon-wrapper {
    position: relative;
    margin-bottom: var(--spacing-sm);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: stepIconPulse 3s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

@keyframes stepIconPulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
    }
    50% { 
        transform: scale(1.1); 
        box-shadow: 0 8px 30px rgba(139, 92, 246, 0.6);
    }
}

.step-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: var(--accent-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.step-arrow {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-purple);
}

.step-arrow svg {
    width: 100%;
    height: 100%;
}

/* CTA SECTION - AMAZING DARK THEME */
.cta-section {
    padding: 100px 0;
    background: var(--dark-surface);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    animation: ctaRotate 30s linear infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.05) 50%, transparent 100%);
    pointer-events: none;
}

@keyframes ctaRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    position: relative;
    z-index: 1;
}

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

.cta-content {
    animation: ctaSlideIn 1s ease-out;
}

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

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(14, 165, 233, 0.2));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 100px;
    margin-bottom: var(--spacing-md);
}

.cta-badge-icon {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #10b981, #0ea5e9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-badge-icon::after {
    content: '✓';
    color: white;
    font-size: 10px;
    font-weight: bold;
}

.cta-badge span {
    color: #10b981;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.cta-title-gradient {
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.9) 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 500px;
}

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

.btn-cta-primary {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

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

.btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.cta-graphics {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: ctaSlideInRight 1s ease-out 0.2s both;
}

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

.cta-icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    position: relative;
}

.cta-icon-card {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--dark-card), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: iconFloat 6s ease-in-out infinite;
}

.cta-icon-card:nth-child(1) { animation-delay: 0s; }
.cta-icon-card:nth-child(2) { animation-delay: 0.5s; }
.cta-icon-card:nth-child(3) { animation-delay: 1s; }
.cta-icon-card:nth-child(4) { animation-delay: 1.5s; }
.cta-icon-card:nth-child(5) { animation-delay: 2s; }
.cta-icon-card:nth-child(6) { animation-delay: 2.5s; }

@keyframes iconFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1);
        filter: brightness(1);
    }
    25% { 
        transform: translateY(-10px) rotate(5deg) scale(1.05);
        filter: brightness(1.1);
    }
    50% {
        transform: translateY(-5px) rotate(-2deg) scale(1.02);
        filter: brightness(1.05);
    }
    75% { 
        transform: translateY(10px) rotate(-5deg) scale(0.98);
        filter: brightness(0.95);
    }
}

.cta-icon-card:hover {
    transform: scale(1.15) rotate(10deg) translateZ(20px);
    border-color: var(--accent-purple);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4),
                0 0 40px rgba(139, 92, 246, 0.2);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.1));
}

.cta-icon-card svg {
    width: 40px;
    height: 40px;
    stroke: var(--accent-purple);
    stroke-width: 2;
    fill: none;
}

.cta-icon-card:nth-child(2) svg { stroke: var(--accent-pink); }
.cta-icon-card:nth-child(3) svg { stroke: var(--accent-teal); }
.cta-icon-card:nth-child(4) svg { stroke: var(--accent-blue); }
.cta-icon-card:nth-child(5) svg { stroke: #f59e0b; }
.cta-icon-card:nth-child(6) svg { stroke: #10b981; }

.cta-central-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, rgba(236, 72, 153, 0.3) 30%, rgba(20, 184, 166, 0.2) 60%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: glow 4s ease-in-out infinite;
    mix-blend-mode: screen;
}

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

.btn-large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.1rem;
}

/* FOOTER - DARK THEME */
.footer {
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    background: var(--dark-surface);
    border-top: 1px solid var(--dark-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    gap: var(--spacing-xl);
}

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

.footer-logo {
    width: 40px;
    height: 40px;
}

.footer-logo svg {
    width: 100%;
    height: 100%;
    fill: var(--accent-purple);
}

.footer-brand-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-links {
    display: flex;
    gap: var(--spacing-3xl);
    flex-wrap: wrap;
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
}

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

.footer-column a:hover {
    color: var(--accent-purple);
}

.footer-bottom {
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--dark-border);
    text-align: center;
    color: var(--text-muted);
}

/* RESPONSIVE - TABLET */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .cta-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-metrics {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    /* HERO MOBILE */
    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }
    
    .hero-content {
        padding: 0 20px;
        gap: 40px;
    }
    
    .hero-bg-animation {
        opacity: 0.5;
    }
    
    .hero-gradient-orb {
        filter: blur(80px);
    }
    
    .orb-1 {
        width: 400px;
        height: 400px;
    }
    
    .orb-2 {
        width: 300px;
        height: 300px;
    }
    
    .orb-3 {
        width: 250px;
        height: 250px;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-bottom: 40px;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }
    
    .hero-metrics {
        gap: 16px;
    }
    
    .metric-card {
        padding: 16px;
        gap: 16px;
    }
    
    .metric-icon {
        width: 48px;
        height: 48px;
    }
    
    .metric-value {
        font-size: 24px;
    }
    
    .metric-label {
        font-size: 12px;
    }
    
    /* FEATURES MOBILE */
    .features {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .feature-card {
        padding: var(--spacing-lg);
    }
    
    /* HOW IT WORKS MOBILE */
    .how-it-works {
        padding: 40px 0;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 20px;
        padding: var(--spacing-md);
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .step-card {
        width: 100%;
        min-height: auto;
        padding: var(--spacing-md);
    }
    
    /* CTA SECTION MOBILE */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-grid {
        gap: 40px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
    }
    
    .cta-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .cta-icon-card {
        width: 80px;
        height: 80px;
    }
    
    .cta-central-glow {
        width: 150px;
        height: 150px;
        filter: blur(40px);
    }
}

/* MOBILE SMALL */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .cta-icon-card {
        width: 70px;
        height: 70px;
    }
    
    .cta-icon-card svg {
        width: 30px;
        height: 30px;
    }
}