/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark-1: #05060a;
    --bg-dark-2: #0e0f17;
    --primary-neon: #00e0ff;
    --secondary-neon: #7b61ff;
    --accent-neon: #00ffa3;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-title: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, var(--bg-dark-1) 0%, var(--bg-dark-2) 100%);
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-dark-1) 0%, var(--bg-dark-2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    position: relative;
}

.loader-text {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: 4px;
    background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon), var(--accent-neon), var(--primary-neon));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 3s linear infinite, fadeIn 0.8s ease;
}

@keyframes shine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.loader-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    opacity: 0;
    animation: fadeInContent 0.8s ease 0.5s forwards;
}

@keyframes fadeInContent {
    to { opacity: 1; }
}

/* ===== BACKGROUND EFFECTS ===== */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow {
    position: absolute;
    opacity: 0.3;
    filter: blur(60px);
    animation: float 20s ease-in-out infinite;
}

.glow-1 {
    top: 10%;
    left: 10%;
    width: 500px;
    height: 500px;
    animation-delay: 0s;
}

.glow-2 {
    bottom: 10%;
    right: 10%;
    width: 600px;
    height: 600px;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-neon);
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px var(--primary-neon);
    animation: particleFloat 15s infinite ease-in-out;
}

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0); opacity: 0.3; }
    50% { transform: translate(100px, -100px); opacity: 0.8; }
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
    animation: heroFadeIn 1s ease 0.3s both;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    margin-bottom: 2rem;
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.logo {
    width: clamp(80px, 15vw, 120px);
    height: auto;
    filter: drop-shadow(0 0 30px var(--primary-neon));
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(0, 224, 255, 0.5);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    animation: subtitleFade 1s ease 0.5s both;
}

.hero-description {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 3rem;
    animation: subtitleFade 1s ease 0.6s both;
}

@keyframes subtitleFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: buttonsFade 1s ease 0.7s both;
}

@keyframes buttonsFade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    border-color: var(--primary-neon);
    box-shadow: 0 0 20px rgba(0, 224, 255, 0.3), inset 0 0 20px rgba(0, 224, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 224, 255, 0.6), inset 0 0 30px rgba(0, 224, 255, 0.2);
    border-color: var(--primary-neon);
    background: rgba(0, 224, 255, 0.1);
}

.btn-secondary {
    border-color: var(--secondary-neon);
    box-shadow: 0 0 20px rgba(123, 97, 255, 0.3), inset 0 0 20px rgba(123, 97, 255, 0.1);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(123, 97, 255, 0.6), inset 0 0 30px rgba(123, 97, 255, 0.2);
    border-color: var(--secondary-neon);
    background: rgba(123, 97, 255, 0.1);
}

.btn span {
    font-size: 1.2rem;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 4px;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-neon), var(--accent-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* ===== BENTO GRID ===== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.bento-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: cardFadeIn 0.8s ease both;
}

.bento-card:nth-child(1) {
    animation-delay: 0.1s;
    box-shadow: 0 0 30px rgba(0, 224, 255, 0.2);
}

.bento-card:nth-child(1):hover {
    box-shadow: 0 0 50px rgba(0, 224, 255, 0.5);
    border-color: var(--primary-neon);
}

.bento-card:nth-child(2) {
    animation-delay: 0.2s;
    box-shadow: 0 0 30px rgba(123, 97, 255, 0.2);
}

.bento-card:nth-child(2):hover {
    box-shadow: 0 0 50px rgba(123, 97, 255, 0.5);
    border-color: var(--secondary-neon);
}

.bento-card:nth-child(3) {
    animation-delay: 0.3s;
    box-shadow: 0 0 30px rgba(0, 255, 163, 0.2);
}

.bento-card:nth-child(3):hover {
    box-shadow: 0 0 50px rgba(0, 255, 163, 0.5);
    border-color: var(--accent-neon);
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bento-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
}

.bento-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 20px currentColor);
    transition: transform 0.3s ease;
}

.bento-card:hover .bento-icon {
    transform: scale(1.1) rotate(5deg);
}

.bento-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bento-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #ffffff;
}

.bento-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.bento-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    text-align: left;
}

.bento-list li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.bento-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-neon);
    font-weight: bold;
}

.bento-card-large {
    grid-column: span 2;
}

.bento-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-neon);
    letter-spacing: 1px;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bento-grid-large {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

@media (min-width: 1024px) {
    .bento-grid-large {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .bento-card-large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

/* ===== TECHNOLOGIES SECTION ===== */
.technologies {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-category {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease, opacity 0.8s ease, transform 0.8s ease;
    opacity: 0;
    transform: translateY(40px);
}

.tech-category:hover {
    transform: translateY(-5px) !important;
    border-color: var(--primary-neon);
    box-shadow: 0 0 30px rgba(0, 224, 255, 0.3);
}

.tech-category-title {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--primary-neon);
    text-align: center;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.tech-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 224, 255, 0.1);
    border: 1px solid rgba(0, 224, 255, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: default;
}

.tech-tag:hover {
    background: rgba(0, 224, 255, 0.2);
    border-color: var(--primary-neon);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 224, 255, 0.4);
}

/* ===== EVENTS SECTION ===== */
.events {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.event-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease, opacity 0.8s ease, transform 0.8s ease;
    opacity: 0;
    transform: translateY(40px);
}

.event-card:nth-child(1) { box-shadow: 0 0 30px rgba(255, 215, 0, 0.2); }
.event-card:nth-child(2) { box-shadow: 0 0 30px rgba(123, 97, 255, 0.2); }
.event-card:nth-child(3) { box-shadow: 0 0 30px rgba(0, 224, 255, 0.2); }
.event-card:nth-child(4) { box-shadow: 0 0 30px rgba(255, 20, 147, 0.2); }
.event-card:nth-child(5) { box-shadow: 0 0 30px rgba(0, 255, 163, 0.2); }
.event-card:nth-child(6) { box-shadow: 0 0 30px rgba(138, 43, 226, 0.2); }

.event-card:hover {
    transform: translateY(-10px) scale(1.02) !important;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 50px rgba(0, 224, 255, 0.4);
}

.event-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px currentColor);
}

.event-title {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #ffffff;
}

.event-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.event-details {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.event-badge {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: rgba(0, 224, 255, 0.1);
    border: 1px solid rgba(0, 224, 255, 0.3);
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--primary-neon);
    font-weight: 500;
}

/* ===== RESOURCES SECTION ===== */
.resources {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.resource-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease, opacity 0.8s ease, transform 0.8s ease;
    opacity: 0;
    transform: translateY(40px);
}

.resource-card:hover {
    transform: translateY(-5px) !important;
    border-color: var(--accent-neon);
    box-shadow: 0 0 30px rgba(0, 255, 163, 0.3);
}

.resource-title {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.resource-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.resource-list li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 2;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.resource-list li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--accent-neon);
    font-weight: bold;
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease, opacity 0.8s ease, transform 0.8s ease;
    opacity: 0;
    transform: translateY(40px);
}

.faq-item:hover {
    transform: translateY(-5px) !important;
    border-color: var(--secondary-neon);
    box-shadow: 0 0 30px rgba(123, 97, 255, 0.3);
}

.faq-question {
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--primary-neon);
}

.faq-answer {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer {
    margin-top: 6rem;
    padding: 4rem 2rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    text-align: left;
}

.footer-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--primary-neon);
}

.footer-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-section-title {
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-neon);
    transform: translateX(5px);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.footer-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 224, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover {
    color: var(--primary-neon);
    border-color: var(--primary-neon);
    box-shadow: 0 0 20px rgba(0, 224, 255, 0.5);
    transform: translateY(-3px);
}

.social-link svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.2);
}

/* ===== STATS SECTION ===== */
.stats {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(40px);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 224, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px) !important;
    border-color: var(--primary-neon);
    box-shadow: 0 0 40px rgba(0, 224, 255, 0.4);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px currentColor);
}

.stat-number {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-neon);
    letter-spacing: 2px;
    display: inline-block;
    margin-right: 0.25rem;
}

.stat-plus,
.stat-percent {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-neon);
    display: inline-block;
}

.stat-label {
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 1rem;
    color: #ffffff;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
    line-height: 1.6;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(40px);
}

.testimonial-card:hover {
    transform: translateY(-5px) !important;
    border-color: var(--secondary-neon);
    box-shadow: 0 0 30px rgba(123, 97, 255, 0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    font-size: 3rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 224, 255, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(0, 224, 255, 0.3);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.testimonial-role {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.testimonial-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-style: italic;
}

/* ===== GET STARTED SECTION ===== */
.get-started {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(40px);
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px) !important;
    border-color: var(--accent-neon);
    box-shadow: 0 0 40px rgba(0, 255, 163, 0.4);
}

.step-number {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-neon);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.step-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px currentColor);
}

.step-title {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #ffffff;
}

.step-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.cta-section {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.cta-title {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: var(--primary-neon);
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

/* ===== ROADMAP SECTION ===== */
.roadmap {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

.roadmap-timeline {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
    padding-left: 2rem;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-neon), var(--secondary-neon), var(--accent-neon));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid var(--glass-border);
    background: var(--bg-dark-2);
    z-index: 2;
}

.timeline-marker.completed {
    background: var(--accent-neon);
    border-color: var(--accent-neon);
    box-shadow: 0 0 20px rgba(0, 255, 163, 0.5);
}

.timeline-marker.active {
    background: var(--primary-neon);
    border-color: var(--primary-neon);
    box-shadow: 0 0 20px rgba(0, 224, 255, 0.5);
    animation: pulse 2s infinite;
}

.timeline-marker.upcoming {
    background: transparent;
    border-color: var(--glass-border);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.timeline-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: var(--primary-neon);
    box-shadow: 0 0 30px rgba(0, 224, 255, 0.3);
    transform: translateX(10px);
}

.timeline-date {
    font-family: var(--font-title);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-neon);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #ffffff;
}

.timeline-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.timeline-status {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.timeline-status.completed {
    background: rgba(0, 255, 163, 0.2);
    color: var(--accent-neon);
    border: 1px solid rgba(0, 255, 163, 0.3);
}

.timeline-status.active {
    background: rgba(0, 224, 255, 0.2);
    color: var(--primary-neon);
    border: 1px solid rgba(0, 224, 255, 0.3);
}

.timeline-status.upcoming {
    background: rgba(123, 97, 255, 0.2);
    color: var(--secondary-neon);
    border: 1px solid rgba(123, 97, 255, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .bento-grid,
    .bento-grid-large {
        grid-template-columns: 1fr;
    }
    
    .bento-card-large {
        grid-column: span 1;
    }
    
    .bento-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .tech-grid,
    .events-grid,
    .resources-grid,
    .faq-grid,
    .stats-grid,
    .testimonials-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .roadmap-timeline {
        padding-left: 1.5rem;
    }
    
    .timeline-content {
        margin-left: 0.5rem;
    }
    
    .cta-section {
        padding: 2rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .glow {
        width: 300px !important;
        height: 300px !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1rem;
    }
    
    .about {
        padding: 4rem 1rem;
    }
    
    .bento-card {
        padding: 2rem;
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark-1);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-neon);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-neon);
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.bento-card,
.btn,
.social-link {
    will-change: transform;
}

.glow {
    will-change: transform;
}

/* ===== SMOOTH RENDERING ===== */
body,
.hero,
.about,
.footer {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

