/* ===== VARIABLES & RESET ===== */
:root {
    /* Colors - Ultra vibrant neon */
    --bg-primary: #0A0A0F;
    --bg-secondary: #141420;
    --bg-tertiary: #1F1F2E;
    
    /* Ultra vibrant neon colors */
    --accent-aqua: #00FFFF;
    --accent-teal: #00FFB7;
    --accent-purple: #7B61FF;
    
    /* Maximum neon glow colors */
    --neon-aqua: #00FFFF;
    --neon-teal: #00FFCC;
    --neon-purple: #8B7FFF;
    
    --text-primary: #FFFFFF;
    --text-secondary: #D0D0E0;
    --text-tertiary: #A0A0C0;
    
    --error: #FF0066;
    --success: #00FF88;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    background-image: 
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2300FFFF' fill-opacity='0.008'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237B61FF' fill-opacity='0.005'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
    background-size: 40px 40px, 60px 60px;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    will-change: scroll-position;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 255, 255, 0.02), transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(123, 97, 255, 0.02), transparent 50%);
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(10, 10, 15, 0) 0%, 
        rgba(15, 15, 26, 0.3) 50%, 
        rgba(10, 10, 15, 0) 100%);
    pointer-events: none;
    z-index: 0;
}


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

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
}

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

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

.gradient-text {
    background: linear-gradient(135deg, var(--neon-aqua), var(--neon-teal), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    background-size: 300% 300%;
    filter: 
        drop-shadow(0 0 15px rgba(0, 255, 255, 0.7))
        drop-shadow(0 0 30px rgba(123, 97, 255, 0.5));
}

.neon-text {
    color: var(--neon-aqua);
    text-shadow: 
        0 0 20px rgba(0, 217, 255, 1),
        0 0 40px rgba(0, 217, 255, 0.8),
        0 0 60px rgba(0, 217, 255, 0.6),
        0 0 80px rgba(0, 217, 255, 0.4),
        0 0 100px rgba(0, 217, 255, 0.2);
    animation: neonFlicker 2s ease-in-out infinite alternate;
}

@keyframes neonFlicker {
    from {
        text-shadow: 
            0 0 20px rgba(0, 217, 255, 1),
            0 0 40px rgba(0, 217, 255, 0.8),
            0 0 60px rgba(0, 217, 255, 0.6),
            0 0 80px rgba(0, 217, 255, 0.4);
    }
    to {
        text-shadow: 
            0 0 30px rgba(0, 255, 209, 1),
            0 0 50px rgba(0, 255, 209, 0.8),
            0 0 70px rgba(0, 255, 209, 0.6),
            0 0 90px rgba(0, 255, 209, 0.4);
    }
}

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

.glass-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.03),
        rgba(0, 240, 255, 0.02));
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(0, 240, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 40%,
        transparent 60%,
        rgba(255, 255, 255, 0.05) 100%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.glass-card:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.06),
        rgba(0, 240, 255, 0.03));
    border-color: rgba(0, 255, 224, 0.4);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 100px rgba(0, 240, 255, 0.3),
        0 0 150px rgba(123, 97, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

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

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md) 0;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1200px;
    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);
    font-size: 1.25rem;
    font-weight: 700;
}

.logo-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
    transition: color var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-aqua), var(--accent-teal));
    transition: width var(--transition-base);
}

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

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

.nav-cta {
    padding: var(--spacing-xs) var(--spacing-md);
    background: linear-gradient(135deg, var(--accent-aqua), var(--accent-purple));
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.3);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: var(--spacing-3xl) 0;
    padding-bottom: 120px;
    margin-top: 80px;
    background: 
        linear-gradient(180deg, 
            rgba(10, 10, 15, 0.95) 0%, 
            rgba(20, 10, 40, 0.9) 50%, 
            rgba(10, 10, 15, 0.95) 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(123, 97, 255, 0.03) 2px,
            rgba(123, 97, 255, 0.03) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(0, 240, 255, 0.03) 2px,
            rgba(0, 240, 255, 0.03) 4px
        );
    background-size: 100% 100%, 50px 50px, 50px 50px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 240, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(123, 97, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(0, 255, 224, 0.1) 0%, transparent 50%);
    animation: subtleShift 20s ease-in-out infinite;
    filter: blur(40px);
}

@keyframes subtleShift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    33% { transform: scale(1.05) rotate(1deg); }
    66% { transform: scale(0.95) rotate(-1deg); }
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: pulse 8s ease-in-out infinite;
    mix-blend-mode: screen;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.8), transparent);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.8), transparent);
    bottom: -150px;
    right: -150px;
    animation-delay: 2s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.8), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

/* Floating light particles */
.hero-background::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 20%, white, transparent),
        radial-gradient(2px 2px at 10% 80%, white, transparent);
    background-size: 200% 200%;
    animation: floatParticles 30s linear infinite;
    opacity: 0.03;
}

@keyframes floatParticles {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}

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

.hero-content {
    text-align: center;
    animation: fadeInUp 1s ease;
    position: relative;
}

.floating-logo {
    margin: 0 auto var(--spacing-lg);
    filter: drop-shadow(0 10px 30px rgba(56, 189, 248, 0.2));
}

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

.hero-title {
    margin-bottom: var(--spacing-lg);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.bold-text {
    font-weight: 800;
}

.hero-subtitle {
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.hero-cta-group {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-3xl);
}

.btn-primary {
    padding: var(--spacing-sm) var(--spacing-lg);
    background: linear-gradient(135deg, var(--neon-aqua), var(--neon-purple));
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: var(--radius-md);
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

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

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

.btn-glow {
    box-shadow: 
        0 0 30px rgba(0, 217, 255, 0.4),
        0 0 60px rgba(168, 85, 247, 0.2),
        inset 0 0 20px rgba(0, 217, 255, 0.2);
    animation: neonButtonPulse 2s ease-in-out infinite;
}

@keyframes neonButtonPulse {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(0, 217, 255, 0.4),
            0 0 60px rgba(168, 85, 247, 0.2),
            inset 0 0 20px rgba(0, 217, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(0, 255, 209, 0.6),
            0 0 80px rgba(189, 111, 255, 0.3),
            inset 0 0 30px rgba(0, 255, 209, 0.3);
    }
}

.btn-glow:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 10px 40px rgba(0, 217, 255, 0.6),
        0 0 100px rgba(0, 217, 255, 0.4),
        0 0 140px rgba(168, 85, 247, 0.3),
        inset 0 0 30px rgba(0, 255, 209, 0.3);
    animation: none;
    border-color: rgba(0, 255, 209, 0.6);
}

.btn-secondary {
    padding: var(--spacing-sm) var(--spacing-lg);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: all var(--transition-base);
}

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

/* ===== VALUE PROPS ===== */
.value-props {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-3xl);
}

.value-card {
    padding: var(--spacing-xl);
    text-align: center;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1024px) {
    .value-props {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--neon-aqua), var(--neon-purple));
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    box-shadow: 
        0 0 40px rgba(0, 217, 255, 0.5),
        0 0 80px rgba(168, 85, 247, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
    animation: iconFloat 3s ease-in-out infinite;
    border: 1px solid rgba(0, 255, 209, 0.3);
}

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

.value-icon i {
    color: white;
}

.value-card h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

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

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    animation: bounce 2s infinite;
    z-index: 10;
}

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

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

.scroll-indicator span {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-primary);
    position: relative;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.05), transparent 70%);
    pointer-events: none;
    animation: redGlow 10s ease-in-out infinite;
}

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

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

.section-logo {
    margin-bottom: var(--spacing-md);
}

.section-logo img {
    filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.3));
}

.section-title {
    margin-bottom: var(--spacing-md);
}

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

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

.problem-card {
    padding: var(--spacing-xl);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.problem-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 2rem;
}

.red-glow {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    color: var(--error);
    animation: redPulse 3s ease-in-out infinite;
}

@keyframes redPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(239, 68, 68, 0.4);
    }
}

.problem-card h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.problem-card p {
    color: var(--text-secondary);
}

/* ===== HOW IT WORKS SECTION ===== */
.how-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: visible;
}

.how-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        rgba(56, 189, 248, 0.03) 60deg,
        transparent 120deg,
        rgba(94, 234, 212, 0.03) 180deg,
        transparent 240deg,
        rgba(139, 92, 246, 0.03) 300deg,
        transparent 360deg
    );
    animation: rotate 60s linear infinite;
    pointer-events: none;
}

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

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    perspective: 1000px;
    padding: calc(var(--spacing-xl) + 40px) 0 var(--spacing-xl);
    position: relative;
    z-index: 10;
}

.step-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: var(--spacing-xl);
    padding-top: calc(var(--spacing-xl) + 60px);
    text-align: center;
    position: relative;
    overflow: visible !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 40px;
    z-index: 1;
}

.step-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 240, 255, 0.4),
        0 0 100px rgba(123, 97, 255, 0.3);
    z-index: 10;
}

.step-number {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--neon-aqua), var(--neon-purple), var(--neon-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.875rem;
    z-index: 100 !important;
    color: white;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 0 50px rgba(0, 240, 255, 0.7),
        0 0 100px rgba(123, 97, 255, 0.5),
        inset 0 0 25px rgba(255, 255, 255, 0.5);
    animation: numberFloat 3s ease-in-out infinite;
    border: 3px solid rgba(0, 255, 224, 0.5);
    background-size: 200% 200%;
    transition: all 0.3s ease;
}

@keyframes numberFloat {
    0%, 100% { 
        transform: translateX(-50%) translateY(0) rotate(0deg);
    }
    25% { 
        transform: translateX(-50%) translateY(-5px) rotate(5deg);
    }
    75% { 
        transform: translateX(-50%) translateY(-3px) rotate(-5deg);
    }
}

.step-card:hover .step-number {
    transform: translateX(-50%) translateY(-10px) scale(1.15);
    box-shadow: 
        0 0 60px rgba(0, 240, 255, 0.9),
        0 0 120px rgba(123, 97, 255, 0.7),
        inset 0 0 35px rgba(255, 255, 255, 0.7);
    animation: numberFloat 3s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(56, 189, 248, 0.5),
            0 0 40px rgba(139, 92, 246, 0.3);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(56, 189, 248, 0.8),
            0 0 60px rgba(139, 92, 246, 0.5);
    }
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: var(--spacing-lg) auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 50%;
    font-size: 2rem;
    color: var(--accent-aqua);
    position: relative;
    transition: all 0.3s ease;
    animation: iconPulse 4s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(56, 189, 248, 0);
    }
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(139, 92, 246, 0.2));
    color: var(--accent-teal);
    box-shadow: 
        0 0 30px rgba(94, 234, 212, 0.4),
        inset 0 0 20px rgba(94, 234, 212, 0.1);
}

.step-icon i {
    transition: all 0.3s ease;
}

.step-card:hover .step-icon i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px currentColor);
}

.step-card h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover h3 {
    color: var(--accent-teal);
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(94, 234, 212, 0.5);
}

.step-card p {
    font-size: 0.95rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.step-card:hover p {
    opacity: 1;
    transform: translateY(-2px);
}

.step-connector {
    flex-shrink: 0;
    position: relative;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.step-connector:hover {
    opacity: 1;
}

/* Add glow effect to connectors */
.step-connector line {
    filter: drop-shadow(0 0 5px currentColor);
}

/* ===== DASHBOARD SECTION ===== */
.dashboard-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-primary);
    position: relative;
}

.dashboard-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1), transparent);
    filter: blur(80px);
    pointer-events: none;
}

.dashboard-preview {
    padding: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    box-shadow: 
        0 0 100px rgba(56, 189, 248, 0.05),
        inset 0 0 50px rgba(255, 255, 255, 0.01);
}

.dashboard-preview::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-aqua), var(--accent-purple), var(--accent-teal), var(--accent-aqua));
    border-radius: var(--radius-lg);
    opacity: 0.1;
    z-index: -1;
    animation: borderRotate 10s linear infinite;
}

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

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-nav {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-item {
    color: var(--text-tertiary);
    font-weight: 500;
    cursor: pointer;
    transition: color var(--transition-base);
}

.nav-item.active,
.nav-item:hover {
    color: var(--text-primary);
}

.dashboard-user {
    text-align: right;
}

.balance-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-bottom: var(--spacing-xs);
}

.balance-amount {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-aqua), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.stat-card {
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

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

.stat-change.positive {
    color: var(--success);
}

.stat-change.negative {
    color: var(--error);
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.mini-chart {
    height: 40px;
    position: relative;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 100%;
}

.bar {
    width: 15%;
    background: linear-gradient(180deg, var(--accent-teal), var(--accent-aqua));
    border-radius: 2px;
    opacity: 0.8;
}

.stat-badge {
    padding: 2px 8px;
    background: rgba(94, 234, 212, 0.2);
    color: var(--accent-teal);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.asset-icons {
    display: flex;
    gap: var(--spacing-xs);
}

.asset-icon {
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-purple);
}

.portfolio-list {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-md);
    font-size: 0.875rem;
    color: var(--text-tertiary);
    font-weight: 600;
}

.portfolio-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.portfolio-icon {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.gradient-bg {
    background: linear-gradient(135deg, var(--accent-aqua), var(--accent-purple));
    color: white;
}

.portfolio-name {
    font-weight: 600;
    margin-bottom: 2px;
}

.portfolio-type {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.portfolio-change {
    font-weight: 600;
}

/* ===== COMPLIANCE SECTION ===== */
.compliance-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.compliance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(16, 185, 129, 0.05), transparent 40%),
        radial-gradient(ellipse at bottom right, rgba(94, 234, 212, 0.05), transparent 40%);
    pointer-events: none;
}

.compliance-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(180deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    pointer-events: none;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

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

.compliance-card {
    padding: var(--spacing-xl);
    text-align: center;
}

.compliance-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-aqua));
    border-radius: 50%;
    font-size: 2rem;
    color: white;
}

.compliance-card h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    max-width: 900px;
    margin: var(--spacing-xl) auto 0;
    position: relative;
    padding: var(--spacing-xl);
    background: 
        linear-gradient(135deg, transparent 24%, rgba(0, 255, 255, 0.03) 25%, rgba(0, 255, 255, 0.03) 27%, transparent 28%, transparent 74%, rgba(0, 255, 255, 0.03) 75%, rgba(0, 255, 255, 0.03) 77%, transparent 78%),
        linear-gradient(45deg, transparent 24%, rgba(123, 97, 255, 0.03) 25%, rgba(123, 97, 255, 0.03) 27%, transparent 28%, transparent 74%, rgba(123, 97, 255, 0.03) 75%, rgba(123, 97, 255, 0.03) 77%, transparent 78%);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.trust-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.05), transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(123, 97, 255, 0.05), transparent 40%);
    pointer-events: none;
    border-radius: var(--radius-lg);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.05),
        rgba(0, 255, 255, 0.02));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.trust-item:hover::before {
    left: 100%;
}

.trust-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, 
        rgba(0, 255, 255, 0.1),
        rgba(94, 234, 212, 0.05));
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 
        0 10px 30px rgba(0, 255, 255, 0.2),
        0 0 40px rgba(94, 234, 212, 0.1),
        inset 0 0 20px rgba(0, 255, 255, 0.05);
}

.trust-item i {
    color: var(--success);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.trust-item:hover i {
    color: var(--neon-aqua);
    transform: rotate(10deg) scale(1.2);
    filter: drop-shadow(0 0 10px currentColor);
}

.trust-item span {
    transition: all 0.3s ease;
    font-weight: 500;
}

.trust-item:hover span {
    color: var(--neon-aqua);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-primary);
}

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

.founder-card {
    padding: var(--spacing-xl);
    text-align: center;
    transition: all 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.founder-image {
    width: 150px;
    height: 150px;
    margin: 0 auto var(--spacing-lg);
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 3px;
    background: linear-gradient(135deg, var(--accent-aqua), var(--accent-purple), var(--accent-teal));
    animation: gradientRotate 8s ease infinite;
    background-size: 200% 200%;
}

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

.founder-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, 
        rgba(56, 189, 248, 0.3),
        rgba(139, 92, 246, 0.3),
        rgba(94, 234, 212, 0.3));
    z-index: -1;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.3s ease;
}

.founder-card:hover .founder-image::before {
    opacity: 1;
}

.founder-image img {
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    object-fit: cover;
    object-position: center 20%;
    border-radius: 17px;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: transform 0.3s ease;
}

.founder-card:hover .founder-image img {
    transform: scale(1.05);
}

.founder-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-aqua), var(--accent-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.founder-card h3 {
    margin-bottom: var(--spacing-xs);
    font-size: 1.5rem;
}

.founder-role {
    color: var(--accent-teal);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.founder-bio {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.founder-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

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

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--accent-aqua), var(--accent-purple));
    border-color: transparent;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(56, 189, 248, 0.3);
}

.social-link:hover i {
    color: white;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(139, 92, 246, 0.1));
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.final-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at 30% 50%,
        rgba(56, 189, 248, 0.15),
        transparent 30%
    );
    animation: lightSweep 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes lightSweep {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(50%) translateY(-20%); }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    margin-bottom: var(--spacing-md);
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.cta-subtitle {
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.email-capture {
    display: flex;
    gap: var(--spacing-md);
    max-width: 500px;
    margin: 0 auto var(--spacing-xl);
}

.email-input {
    flex: 1;
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all var(--transition-base);
}

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

.email-input:focus {
    border-color: var(--accent-aqua);
    background: rgba(255, 255, 255, 0.08);
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-lg);
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-aqua), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.litepaper-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--accent-teal);
    font-weight: 600;
    transition: all var(--transition-base);
}

.litepaper-link:hover {
    color: var(--accent-aqua);
    transform: translateX(5px);
}

/* ===== FOOTER ===== */
.footer {
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-brand p {
    font-size: 1rem;
    color: var(--text-tertiary);
}

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

.footer-column h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.footer-column a {
    display: block;
    color: var(--text-tertiary);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-sm);
    transition: color var(--transition-base);
}

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

.footer-bottom {
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-socials {
    display: flex;
    gap: var(--spacing-sm);
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--accent-aqua), var(--accent-purple));
    transform: translateY(-2px);
}

.copyright {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

/* ===== ANIMATIONS ON SCROLL ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .value-props {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: var(--spacing-3xl) auto 0;
    }
    
    .value-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 400px;
        margin: 0 auto var(--spacing-3xl);
    }
    
    .hero-cta-group button {
        width: 100%;
    }
    
    .value-props {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-connector {
        transform: rotate(90deg);
        margin: var(--spacing-md) 0;
    }
    
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
    }
    
    .email-capture {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}
