:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #1a1a2e;
    --bg-accent: #16213e;
    --neon-blue: #00d4ff;
    --neon-purple: #9d4edd;
    --neon-pink: #ff006e;
    --neon-green: #39ff14;
    --text-primary: #ffffff;
    --text-secondary: #b4b4b4;
    --text-accent: #00d4ff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-neon: 0 0 20px rgba(0, 212, 255, 0.5);
    --shadow-glow: 0 0 40px rgba(157, 78, 221, 0.3);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

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

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(157, 78, 221, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 0, 110, 0.05) 0%, transparent 50%);
    z-index: -2;
    animation: backgroundFloat 6s ease-in-out infinite alternate;
}

/* Particle Background */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(0, 212, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(157, 78, 221, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 0, 110, 0.3), transparent),
        radial-gradient(1px 1px at 120px 90px, rgba(57, 255, 20, 0.3), transparent);
    background-repeat: repeat;
    background-size: 100px 100px;
    z-index: -1;
    animation: particles 20s linear infinite;
}

@keyframes backgroundFloat {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-20px) scale(1.05); }
}

@keyframes particles {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-100px) translateX(100px); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Glassmorphism Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

header:hover {
    background: rgba(10, 10, 15, 0.9);
    border-bottom-color: var(--neon-blue);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px var(--neon-blue);
}

.logo-img {
    height: 32px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.logo:hover .logo-img {
    filter: drop-shadow(0 0 20px var(--neon-blue));
    transform: rotate(360deg);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 25px;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-links a:hover::before {
    opacity: 0.1;
}

.nav-links a:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
    text-shadow: 0 0 10px var(--neon-blue);
}

/* Futuristic Buttons */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn::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:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    color: var(--text-primary);
    box-shadow: var(--shadow-neon);
    border-color: var(--neon-blue);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    text-shadow: 0 0 10px white;
}

.btn-glow {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0% { box-shadow: var(--shadow-neon); }
    50% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.8); }
    100% { box-shadow: var(--shadow-neon); }
}

main {
    padding-top: 100px;
}

/* Sections with glass effect */
section {
    margin: 2rem 0;
    padding: 4rem 0;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--glass-bg);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 3rem;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

h3 {
    font-size: 1.5rem;
    color: var(--text-accent);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
#hero {
    text-align: center;
    padding: 2rem 0 4rem 0;
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1 !important;
    visibility: visible !important;
    margin-top: -30px;
    overflow: hidden;
}

.hero-pill {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    color: var(--neon-blue);
    font-size: 0.7rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: heroFloat 3s ease-in-out infinite;
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: center;
    animation: titleGlow 4s ease-in-out infinite;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 20px rgba(0, 212, 255, 0.5); }
    100% { text-shadow: 0 0 40px rgba(0, 212, 255, 0.8); }
}

.hero-separator {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--neon-blue) 20%, 
        var(--neon-purple) 50%, 
        var(--neon-pink) 80%, 
        transparent
    );
    margin: 1.5rem auto;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    animation: separatorGlow 3s ease-in-out infinite;
}

@keyframes separatorGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
        transform: scaleX(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
        transform: scaleX(1.1);
    }
}

.hero-title .highlight {
    color: var(--neon-blue); 
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue), transparent);
    animation: slideIn 1.5s ease 1.3s;
}

@keyframes slideIn {
    0% {
        width: 0%;
        opacity: 0;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

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

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    text-align: center;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

/* Enhanced Cards */
.stat-card, .product-card, .solution-card, .impact-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.stat-card::before, .product-card::before, .solution-card::before, .impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.stat-card:hover::before, .product-card:hover::before, .solution-card:hover::before, .impact-card:hover::before {
    transform: translateX(0);
}

.stat-card:hover, .product-card:hover, .solution-card:hover, .impact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
    border-color: var(--neon-blue);
}

/* Icon containers with neon effects */
.icon-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.product-card:hover .icon-container, .solution-card:hover .icon-container {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}

.icon-container svg {
    width: 28px;
    height: 28px;
    color: white;
}

/* Grid layouts */
.problem-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.solution-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.solution-card ul {
    list-style: none;
    padding: 0;
}

.solution-card li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.solution-card:hover li {
    color: var(--text-primary);
}

.solution-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--neon-blue);
    font-weight: bold;
    transition: all 0.3s ease;
}

.solution-card:hover li::before {
    color: var(--neon-green);
    transform: translateX(5px);
}

/* Impact Stats */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.impact-card {
    text-align: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.impact-card p {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--neon-green), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.impact-card:hover p {
    animation: numberGlow 0.5s ease;
}

@keyframes numberGlow {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.impact-card span {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Real Example Section */
.real-example {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0;
    backdrop-filter: blur(20px);
    border-left: 4px solid var(--neon-blue);
}

.real-example h4 {
    color: var(--neon-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.real-example blockquote {
    font-style: italic;
    color: var(--text-secondary);
    border-left: 3px solid var(--neon-purple);
    padding-left: 1rem;
    margin: 1rem 0;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: var(--bg-accent);
    padding: 3rem 0 1rem;
    margin-top: 5rem;
    border-top: 1px solid var(--glass-border);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-main h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: left;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.footer-links a:hover {
    color: var(--neon-blue);
    transform: translateX(10px);
    text-shadow: 0 0 10px var(--neon-blue);
}

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

.email-link {
    color: var(--neon-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.email-link:hover {
    text-shadow: 0 0 10px var(--neon-blue);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 992px) {
    .product-grid, .problem-stats, .solution-columns {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title { 
        font-size: 3rem;
    }
    
    h2 { 
        font-size: 2.5rem;
    }
    
    .product-grid, .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Additional futuristic effects */
.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -3;
    animation: gridMove 20s linear infinite;
}

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

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
    display: none;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    width: 60px;
    height: 60px;
    animation: logoSpin 2s linear infinite;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px var(--neon-blue));
}

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

.loading-text {
    font-size: 1.2rem;
    color: var(--text-accent);
    margin-bottom: 2rem;
    animation: textGlow 2s ease-in-out infinite alternate;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: var(--glass-bg);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    border-radius: 2px;
    animation: loadingProgress 3s ease-in-out;
}

@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Hero Background Effects */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.hero-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-1 {
    background: radial-gradient(circle, var(--neon-blue), transparent);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-orb-2 {
    background: radial-gradient(circle, var(--neon-purple), transparent);
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.hero-orb-3 {
    background: radial-gradient(circle, var(--neon-pink), transparent);
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-50px) scale(1.1); }
}

/* Enhanced Hero Elements */
.pill-icon {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.logo-text {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: fadeInOut 3s ease-in-out infinite;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 10;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.scroll-indicator span {
    display: block;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.scroll-arrow {
    width: 1px;
    height: 24px;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.8), 
        rgba(255, 255, 255, 0.2),
        transparent
    );
    margin: 0 auto;
    border-radius: 1px;
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { 
        transform: translateY(0); 
        opacity: 0.5; 
    }
    50% { 
        transform: translateY(8px); 
        opacity: 1; 
    }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Enhanced Stat Cards */
.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.stat-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    font-weight: 800;
    color: var(--neon-blue);
    opacity: 0.2;
}

/* Product Badges */
.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: var(--neon-green);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid var(--neon-green);
    backdrop-filter: blur(10px);
}

/* Impact Icons */
.impact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.impact-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    color: var(--neon-blue);
    border-color: var(--neon-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

/* Card Glow Effects */
.card-glow-effect {
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
    border-radius: 22px;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.solution-card:hover .card-glow-effect {
    opacity: 0.2;
}

/* Enhanced Button Styles */
.btn span {
    position: relative;
    z-index: 2;
}

.btn svg {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(3px);
}

/* Navigation enhancements */

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--neon-blue), var(--neon-purple));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--neon-purple), var(--neon-pink));
}
