/* ==========================================================================
   EcoDBX Landing Page - Stunning Future Tech Design
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Core Brand Colors */
    --primary: #741e78;
    --primary-light: #9b2d9f;
    --primary-glow: rgba(155, 45, 159, 0.6);
    
    /* New Vibrant Accents */
    --neon-green: #00ff9d;
    --electric-blue: #00f2fe;
    --deep-purple: #4a00e0;
    
    /* Gradients */
    --gradient-brand: linear-gradient(135deg, #741e78 0%, #9b2d9f 100%);
    --gradient-vibrant: linear-gradient(135deg, #00ff9d 0%, #00f2fe 50%, #9b2d9f 100%);
    --gradient-dark: linear-gradient(180deg, #050208 0%, #0f0515 50%, #050208 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    
    /* Text */
    --text-white: #ffffff;
    --text-light: #e2e8f0;
    --text-muted: #94a3b8;
    
    /* Glassmorphism */
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shine: rgba(255, 255, 255, 0.15);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-white);
    background-color: #050208;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ==========================================================================
   Utilities
   ========================================================================== */

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

.glow-text {
    text-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
}

.text-green { color: var(--neon-green); }
.text-blue { color: var(--electric-blue); }
.text-purple { color: var(--primary-light); }

/* ==========================================================================
   Navbar
   ========================================================================== */

.navbar-landing {
    padding: 2rem 0;
    transition: all 0.4s ease;
}

.navbar-landing.scrolled {
    padding: 1rem 0;
    background: rgba(5, 2, 8, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar-brand img {
    height: 52px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 12px;
    padding: 4px 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.navbar-brand img:hover {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 255, 157, 0.25), 0 2px 12px rgba(0, 0, 0, 0.2);
    transform: scale(1.03);
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--text-light) !important;
    position: relative;
    padding: 0.5rem 1rem !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--neon-green);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--neon-green);
}

.nav-link:hover {
    color: var(--white) !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.nav-link:hover::after {
    width: 20px;
}

.btn-nav-login {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.btn-nav-login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--electric-blue);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-nav-cta {
    background: var(--gradient-brand);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00ff9d 0%, #00f2fe 100%);
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(116, 30, 120, 0.5);
    color: #050208;
}

.btn-nav-cta:hover::before {
    opacity: 1;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    position: relative;
    padding-top: 140px;
    padding-bottom: 100px;
    overflow: hidden;
    background: var(--gradient-dark);
}

/* Complex Background Animation */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    filter: blur(80px);
    opacity: 0.4;
    border-radius: 50%;
    animation: pulseGlow 8s infinite alternate;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: var(--electric-blue);
    bottom: 20%;
    right: -100px;
    animation-delay: 2s;
}

.glow-3 {
    width: 300px;
    height: 300px;
    background: var(--neon-green);
    top: 40%;
    left: 30%;
    opacity: 0.15;
    animation-delay: 4s;
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.2); opacity: 0.5; }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    perspective: 1000px;
    transform: perspective(1000px) rotateX(2deg) scale(1.1);
    opacity: 0.5;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

/* Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--electric-blue);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-family: 'Inter', sans-serif;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary-glow {
    padding: 1rem 2.5rem;
    background: var(--gradient-brand);
    color: var(--white);
    border-radius: 12px;
    font-weight: 600;
    border: none;
    box-shadow: 0 10px 30px rgba(116, 30, 120, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
    opacity: 0;
}

.btn-primary-glow:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(116, 30, 120, 0.6);
    color: var(--white);
}

.btn-primary-glow:hover::after {
    opacity: 1;
    left: 100%;
}

.btn-outline-glow {
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-glow:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
    transform: translateY(-5px);
    color: var(--white);
}

/* 3D Dashboard Image */
.hero-visual {
    position: relative;
    z-index: 10;
    perspective: 1000px;
    animation: float 6s ease-in-out infinite;
}

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

.dashboard-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.1),
        0 0 30px rgba(0, 242, 254, 0.1);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: all 0.5s ease;
}

.hero-visual:hover .dashboard-img {
    transform: rotateY(0) rotateX(0) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0,0,0,0.6),
        0 0 0 1px var(--neon-green),
        0 0 50px rgba(0, 255, 157, 0.2);
}

.floating-card {
    position: absolute;
    background: rgba(15, 5, 21, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 12;
    animation: floatCard 5s infinite ease-in-out alternate;
}

@keyframes floatCard {
    from { transform: translateY(0); }
    to { transform: translateY(-10px); }
}

.card-1 {
    top: 10%;
    left: -50px;
    border-left: 3px solid var(--neon-green);
}

.card-2 {
    bottom: 15%;
    right: -40px;
    border-left: 3px solid var(--primary-light);
    animation-delay: 1s;
}

.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* ==========================================================================
   Features Section
   ========================================================================== */

.features-section {
    padding: 100px 0;
    position: relative;
    background: #050208;
    overflow: hidden;
}

.feature-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.feature-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.feature-main-title {
    font-size: 2.75rem;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.feature-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.feature-card {
    background: var(--glass-glass);
    border: 1px solid rgba(255,255,255,0.05);
    background: linear-gradient(180deg, rgba(23, 10, 30, 0.6) 0%, rgba(10, 5, 15, 0.4) 100%);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-green), var(--electric-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(180deg, rgba(35, 15, 45, 0.7) 0%, rgba(15, 8, 20, 0.5) 100%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.1);
}

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

.feature-img-wrap {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    position: relative;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(0, 242, 254, 0.3));
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 25px rgba(0, 242, 254, 0.5));
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.feature-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.7;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer-section {
    background: #020103;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.footer-logo {
    height: 45px;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 4px 10px;
}

.footer-about {
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 300px;
}

.footer-heading {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links li {
    list-style: none;
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--neon-green);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.8rem;
    color: var(--electric-blue);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover i {
    opacity: 1;
}

.footer-contact {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--primary-light);
    font-size: 1.2rem;
}

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

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--gradient-brand);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(116, 30, 120, 0.4);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #050208 0%, #0a0515 50%, #050208 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(116, 30, 120, 0.2) 0%, transparent 70%);
    filter: blur(60px);
    animation: pulseGlow 6s infinite alternate;
}

.cta-card {
    background: linear-gradient(135deg, rgba(116, 30, 120, 0.15), rgba(0, 242, 254, 0.05));
    border: 1px solid rgba(155, 45, 159, 0.3);
    border-radius: 32px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-green), var(--electric-blue), var(--primary-light), transparent);
}

.cta-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    background: linear-gradient(to right, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Modern Gradient CTA Button */
.btn-cta-gradient {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #050208;
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--electric-blue) 50%, #a855f7 100%);
    background-size: 200% 200%;
    border: none;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 
        0 8px 25px rgba(0, 255, 157, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    animation: gradientShift 4s ease infinite;
}

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

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

.btn-cta-gradient:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(0, 255, 157, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    color: #050208;
}

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

.btn-cta-gradient span {
    position: relative;
    z-index: 1;
}

.btn-cta-gradient i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-cta-gradient:hover i {
    transform: translateX(5px);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    margin-top: 60px;
    text-align: center;
    color: rgba(255,255,255,0.3);
    font-size: 0.9rem;
}

/* ==========================================================================
   Responsive Design - Complete Mobile Optimization
   ========================================================================== */

/* Large tablets and small desktops */
@media (max-width: 1199px) {
    .hero-title { font-size: 3.5rem; }
    .floating-card { padding: 12px; }
    .icon-box { width: 35px; height: 35px; font-size: 1rem; }
}

/* Tablets */
@media (max-width: 991px) {
    .navbar-landing { padding: 1rem 0; }
    .navbar-brand img { height: 38px; }
    
    .hero-section { padding-top: 100px; padding-bottom: 60px; }
    .hero-title { font-size: 2.8rem; }
    .hero-desc { font-size: 1rem; }
    .hero-content { max-width: 100%; }
    
    .hero-visual { 
        margin-top: 50px; 
        perspective: none;
    }
    .dashboard-img {
        transform: none;
        border-radius: 16px;
    }
    .floating-card { display: none; }
    
    .features-section { padding: 60px 0; }
    .feature-header { margin-bottom: 3rem; }
    .feature-card { margin-bottom: 1.5rem; }
    
    .cta-section { padding: 60px 0; }
    .cta-card { padding: 3rem 2rem; }
    .cta-title { font-size: 2rem; }
    
    .footer-section { padding: 50px 0 20px; }
}

/* Mobile landscape and small tablets */
@media (max-width: 767px) {
    .navbar-landing .navbar-collapse {
        background: rgba(5, 2, 8, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 16px;
        padding: 1.5rem;
        margin-top: 1rem;
        border: 1px solid rgba(155, 45, 159, 0.2);
    }
    
    .navbar-landing .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .navbar-landing .nav-link::after { display: none; }
    
    .navbar-landing .d-flex {
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
        gap: 0.75rem;
    }
    
    .btn-nav-login, .btn-nav-cta {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1.5rem;
    }
    
    .hero-section { padding-top: 90px; padding-bottom: 50px; }
    .hero-title { font-size: 2.25rem; line-height: 1.15; }
    .hero-desc { font-size: 0.95rem; margin-bottom: 2rem; }
    
    .badge-pill { font-size: 0.75rem; padding: 6px 12px; }
    
    .hero-actions { 
        flex-direction: column; 
        width: 100%;
        gap: 0.75rem;
    }
    
    .btn-primary-glow, .btn-outline-glow { 
        width: 100%; 
        text-align: center;
        padding: 0.9rem 1.5rem;
        justify-content: center;
    }
    
    .hero-visual { margin-top: 40px; }
    .dashboard-img { border-radius: 12px; }
    
    /* Stats row responsive */
    .d-flex.align-items-center.gap-4.mt-5 {
        flex-wrap: wrap;
        gap: 1.5rem !important;
    }
    
    .features-section { padding: 50px 0; }
    .feature-header h2 { font-size: 1.75rem; }
    .feature-header p { font-size: 0.95rem; }
    .feature-card { padding: 2rem 1.5rem; }
    .feature-img-wrap { width: 100px; height: 100px; }
    .feature-title { font-size: 1.25rem; }
    .feature-desc { font-size: 0.9rem; }
    
    .cta-card { padding: 2.5rem 1.5rem; border-radius: 20px; }
    .cta-title { font-size: 1.65rem; }
    .cta-subtitle { font-size: 1rem; }
    .btn-cta-gradient { 
        width: 100%; 
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .footer-section { padding: 40px 0 20px; }
    .footer-logo { height: 35px; }
    .footer-heading { margin-bottom: 1rem; font-size: 1rem; }
    .footer-links a { font-size: 0.9rem; }
    .footer-contact { font-size: 0.9rem; }
    .copyright { margin-top: 40px; padding-top: 20px; }
    .copyright .row { flex-direction: column; gap: 1rem; }
}

/* Small mobile phones */
@media (max-width: 480px) {
    .container { padding-left: 20px; padding-right: 20px; }
    
    .hero-section { padding-top: 80px; }
    .hero-title { font-size: 1.85rem; }
    .hero-desc { font-size: 0.9rem; line-height: 1.6; }
    
    .badge-pill { 
        font-size: 0.7rem; 
        padding: 5px 10px;
        gap: 6px;
    }
    .badge-dot { width: 6px; height: 6px; }
    
    .btn-primary-glow, .btn-outline-glow { 
        padding: 0.85rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .dashboard-img { border-radius: 10px; }
    
    .feature-card { padding: 1.75rem 1.25rem; }
    .feature-img-wrap { width: 80px; height: 80px; margin-bottom: 1.5rem; }
    .feature-title { font-size: 1.15rem; }
    .feature-desc { font-size: 0.85rem; }
    
    .cta-card { padding: 2rem 1.25rem; }
    .cta-title { font-size: 1.4rem; }
    .cta-subtitle { font-size: 0.9rem; }
    
    .footer-section { text-align: center; }
    .footer-about { margin: 0 auto 1.5rem; }
    .social-links { justify-content: center; }
    .footer-contact { justify-content: center; }
}

/* Hero glow adjustments for mobile performance */
@media (max-width: 768px) {
    .hero-glow { filter: blur(60px); }
    .glow-1 { width: 300px; height: 300px; }
    .glow-2 { width: 250px; height: 250px; }
    .glow-3 { display: none; }
    .grid-overlay { opacity: 0.3; }
}

/* Reduce animations on mobile for performance */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

