body {
    margin: 0;
    font-family: 'Orbitron', Arial, sans-serif;
    background: linear-gradient(135deg, #0a0020 0%, #1a0030 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    background: radial-gradient(circle at 60% 40%, #1a0030 0%, #0a0020 80%),
                url('https://www.transparenttextures.com/patterns/stardust.png'); /* subtle stars */
    opacity: 0.7;
    animation: parallaxMove 10s linear infinite alternate;
}

@keyframes parallaxMove {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 40px 40px, 80px 80px; }
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-title {
    font-family: 'Orbitron', Arial, sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #00f0ff;
    text-shadow: 0 0 16px #00f0ff, 0 0 32px #a020f0;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #a020f0;
    text-shadow: 0 0 8px #a020f0;
    margin-bottom: 2rem;
}

.hero-cta {
    font-family: 'Orbitron', Arial, sans-serif;
    font-size: 1.1rem;
    background: linear-gradient(90deg, #00f0ff 0%, #a020f0 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 0.8em 2.2em;
    box-shadow: 0 0 16px #00f0ff, 0 0 32px #a020f0;
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.3s;
    text-shadow: 0 0 8px #fff;
    margin-bottom: 2rem;
}
.hero-cta:hover {
    box-shadow: 0 0 32px #00f0ff, 0 0 64px #a020f0;
    transform: scale(1.08);
}

.hero-rocket {
    margin-top: 1.5rem;
    animation: rocketFlicker 1.2s infinite alternate;
}
@keyframes rocketFlicker {
    0% { filter: drop-shadow(0 0 8px #00f0ff); }
    100% { filter: drop-shadow(0 0 24px #a020f0); }
}

/* Navbar styles (neon, flexbox, glow) */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0a0020;
    padding: 0.7rem 2rem;
    box-shadow: 0 2px 24px #00f0ff33;
    position: relative;
    z-index: 10;
}
.navbar-logo {
    display: flex;
    align-items: center;
}
.brand-name {
    font-family: 'Orbitron', Arial, sans-serif;
    color: #00f0ff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-left: 0.7rem;
    text-shadow: 0 0 8px #00f0ff, 0 0 16px #a020f0;
}
.navbar-links {
    display: flex;
    gap: 2rem;
}
.navbar-links a {
    color: #a020f0;
    font-family: 'Orbitron', Arial, sans-serif;
    font-size: 1rem;
    text-decoration: none;
    position: relative;
    transition: color 0.2s, text-shadow 0.2s;
}
.navbar-links a:hover {
    color: #00f0ff;
    text-shadow: 0 0 12px #00f0ff, 0 0 24px #a020f0;
}

/* Hamburger styles */
.navbar-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    margin-left: 1.5rem;
}
.navbar-hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #00f0ff 0%, #a020f0 100%);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(.68,-0.55,.27,1.55);
}

/* Hamburger animation */
.navbar-hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.navbar-hamburger.active span:nth-child(2) {
    opacity: 0;
}
.navbar-hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Features section styles */
.features {
    background: linear-gradient(135deg, #0a0020 0%, #1a0030 100%);
    padding: 4rem 0 3rem 0;
    position: relative;
    z-index: 1;
}
.features-title {
    font-family: 'Orbitron', Arial, sans-serif;
    color: #00f0ff;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    text-shadow: 0 0 16px #00f0ff, 0 0 32px #a020f0;
    letter-spacing: 2px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}
.feature-card {
    background: #12002a;
    border-radius: 18px;
    box-shadow: 0 0 24px #00f0ff33, 0 0 32px #a020f033;
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.feature-card:hover {
    box-shadow: 0 0 48px #00f0ff99, 0 0 64px #a020f099;
    border-color: #00f0ff;
    transform: translateY(-8px) scale(1.04);
}
.feature-icon {
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 0 12px #00f0ff);
    transition: filter 0.3s;
}
.feature-card:hover .feature-icon {
    filter: drop-shadow(0 0 24px #a020f0);
}
.feature-title {
    font-family: 'Orbitron', Arial, sans-serif;
    color: #00f0ff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    text-align: center;
    text-shadow: 0 0 8px #00f0ff, 0 0 16px #a020f0;
}
.feature-desc {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #e0e0ff;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Roadmap section styles */
.roadmap {
    background: linear-gradient(135deg, #0a0020 0%, #1a0030 100%);
    position: relative;
    padding: 4rem 0 3rem 0;
    overflow: hidden;
    z-index: 1;
}
.roadmap::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(90deg, rgba(0,240,255,0.08) 0px, rgba(0,240,255,0.08) 1px, transparent 1px, transparent 80px),
                repeating-linear-gradient(0deg, rgba(160,32,240,0.08) 0px, rgba(160,32,240,0.08) 1px, transparent 1px, transparent 80px);
    pointer-events: none;
    z-index: 0;
}
.roadmap-title {
    font-family: 'Orbitron', Arial, sans-serif;
    color: #00f0ff;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    text-shadow: 0 0 16px #00f0ff, 0 0 32px #a020f0;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}
.roadmap-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.roadmap-milestone {
    background: #12002a;
    border-radius: 18px;
    box-shadow: 0 0 24px #00f0ff33, 0 0 32px #a020f033;
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 220px;
    max-width: 240px;
    transition: box-shadow 0.3s, transform 0.3s, opacity 0.7s;
    border: 2px solid transparent;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s forwards;
}
.roadmap-milestone:nth-child(1) { animation-delay: 0.1s; }
.roadmap-milestone:nth-child(3) { animation-delay: 0.3s; }
.roadmap-milestone:nth-child(5) { animation-delay: 0.5s; }
.roadmap-milestone:nth-child(7) { animation-delay: 0.7s; }
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.roadmap-milestone:hover {
    box-shadow: 0 0 48px #00f0ff99, 0 0 64px #a020f099;
    border-color: #00f0ff;
    transform: translateY(-8px) scale(1.04);
}
.roadmap-icon {
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 0 12px #00f0ff);
    transition: filter 0.3s;
}
.roadmap-milestone:hover .roadmap-icon {
    filter: drop-shadow(0 0 24px #a020f0);
}
.milestone-title {
    font-family: 'Orbitron', Arial, sans-serif;
    color: #00f0ff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    text-align: center;
    text-shadow: 0 0 8px #00f0ff, 0 0 16px #a020f0;
}
.milestone-desc {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #e0e0ff;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 0;
    line-height: 1.5;
}
.roadmap-connector {
    width: 60px;
    height: 6px;
    align-self: center;
    background: linear-gradient(90deg, #00f0ff 0%, #a020f0 100%);
    box-shadow: 0 0 16px #00f0ff, 0 0 32px #a020f0;
    border-radius: 3px;
    position: relative;
    z-index: 2;
}

/* About section styles */
.about {
    background: linear-gradient(135deg, #0a0020 0%, #1a0030 100%);
    padding: 4rem 0 3rem 0;
    position: relative;
    z-index: 1;
}
.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 3rem;
    padding: 0 2rem;
    position: relative;
}
.about-visual {
    flex: 1 1 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    animation: fadeInUp 1.2s forwards;
    opacity: 0;
    transform: translateY(40px);
    animation-delay: 0.2s;
}
.about-content {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeInUp 1.2s forwards;
    opacity: 0;
    transform: translateY(40px);
    animation-delay: 0.4s;
}
.about-title {
    font-family: 'Orbitron', Arial, sans-serif;
    color: #00f0ff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-shadow: 0 0 16px #00f0ff, 0 0 32px #a020f0;
    letter-spacing: 2px;
}
.about-mission {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #e0e0ff;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.about-highlights {
    display: flex;
    gap: 2.2rem;
    margin-top: 1.2rem;
}
.about-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #12002a;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    box-shadow: 0 0 16px #00f0ff33, 0 0 24px #a020f033;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 2px solid transparent;
    min-width: 110px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1.2s forwards;
}
.about-highlight:nth-child(1) { animation-delay: 0.6s; }
.about-highlight:nth-child(2) { animation-delay: 0.8s; }
.about-highlight:nth-child(3) { animation-delay: 1s; }
.about-highlight:hover {
    box-shadow: 0 0 32px #00f0ff99, 0 0 48px #a020f099;
    border-color: #a020f0;
    transform: translateY(-6px) scale(1.05);
}
.about-icon {
    margin-bottom: 0.7rem;
    filter: drop-shadow(0 0 8px #00f0ff);
    transition: filter 0.3s;
}
.about-highlight:hover .about-icon {
    filter: drop-shadow(0 0 16px #a020f0);
}
.about-value {
    font-family: 'Orbitron', Arial, sans-serif;
    color: #00f0ff;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 0 8px #00f0ff, 0 0 16px #a020f0;
}

/* Contact section styles */
.contact {
    background: linear-gradient(135deg, #0a0020 0%, #1a0030 100%);
    padding: 4rem 0 3rem 0;
    position: relative;
    z-index: 1;
}
.contact-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 3rem;
    padding: 0 2rem;
    position: relative;
    flex-wrap: wrap;
}
.contact-info {
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    animation: fadeInUp 1.2s forwards;
    opacity: 0;
    transform: translateY(40px);
    animation-delay: 0.2s;
}
.contact-visual {
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 0 16px #00f0ff);
    animation: fadeInUp 1.2s forwards;
    opacity: 0;
    transform: translateY(40px);
    animation-delay: 0.3s;
}
.contact-details {
    text-align: center;
    color: #e0e0ff;
    margin-bottom: 1.2rem;
}
.contact-title {
    font-family: 'Orbitron', Arial, sans-serif;
    color: #00f0ff;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    text-shadow: 0 0 16px #00f0ff, 0 0 32px #a020f0;
    letter-spacing: 2px;
}
.contact-desc {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #e0e0ff;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}
.contact-alt {
    margin-top: 1.2rem;
}
.contact-email {
    font-size: 1rem;
    color: #00f0ff;
    margin-bottom: 0.7rem;
}
.contact-email a {
    color: #a020f0;
    text-decoration: underline;
    transition: color 0.2s, text-shadow 0.2s;
}
.contact-email a:hover {
    color: #00f0ff;
    text-shadow: 0 0 8px #00f0ff, 0 0 16px #a020f0;
}
.contact-socials {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 0.5rem;
}
.social-icon {
    display: inline-block;
    transition: filter 0.3s, transform 0.3s;
    filter: drop-shadow(0 0 8px #a020f0);
}
.social-icon:hover {
    filter: drop-shadow(0 0 16px #00f0ff);
    transform: scale(1.15);
}

.contact-form {
    flex: 2 1 400px;
    background: #12002a;
    border-radius: 18px;
    box-shadow: 0 0 24px #00f0ff33, 0 0 32px #a020f033;
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-width: 280px;
    max-width: 480px;
    margin: 0 auto;
    animation: fadeInUp 1.2s forwards;
    opacity: 0;
    transform: translateY(40px);
    animation-delay: 0.4s;
}
.form-title {
    font-family: 'Orbitron', Arial, sans-serif;
    color: #00f0ff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-align: center;
    text-shadow: 0 0 8px #00f0ff, 0 0 16px #a020f0;
}
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.2rem;
}
.form-group label {
    color: #a020f0;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-family: 'Orbitron', Arial, sans-serif;
}
.form-group input,
.form-group textarea {
    background: #1a0030;
    color: #fff;
    border: 2px solid #a020f0;
    border-radius: 8px;
    padding: 0.7em 1em;
    font-size: 1rem;
    font-family: 'Montserrat', Arial, sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #00f0ff;
    box-shadow: 0 0 8px #00f0ff, 0 0 16px #a020f0;
}
.form-group textarea {
    min-height: 90px;
    resize: vertical;
}
.form-submit {
    font-family: 'Orbitron', Arial, sans-serif;
    font-size: 1.1rem;
    background: linear-gradient(90deg, #00f0ff 0%, #a020f0 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 0.8em 2.2em;
    box-shadow: 0 0 16px #00f0ff, 0 0 32px #a020f0;
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.3s;
    text-shadow: 0 0 8px #fff;
    margin-top: 0.5rem;
}
.form-submit:hover {
    box-shadow: 0 0 32px #00f0ff, 0 0 64px #a020f0;
    transform: scale(1.08);
}
.form-status {
    margin-top: 1rem;
    font-size: 1rem;
    text-align: center;
    color: #00f0ff;
    min-height: 1.2em;
    font-family: 'Orbitron', Arial, sans-serif;
}
.form-status.error {
    color: #ff3b7b;
    text-shadow: 0 0 8px #ff3b7b;
}
.form-status.success {
    color: #00f0ff;
    text-shadow: 0 0 8px #00f0ff;
}

/* Footer styles */
.footer {
    background: linear-gradient(135deg, #0a0020 0%, #1a0030 100%);
    padding: 3rem 0 1.2rem 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 -2px 24px #00f0ff33;
    animation: fadeInUp 1.2s forwards;
    opacity: 0;
    transform: translateY(40px);
    animation-delay: 0.2s;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 2.2rem;
    animation: fadeInUp 1.2s forwards;
    opacity: 0;
    transform: translateY(40px);
    animation-delay: 0.3s;
}
.footer-brand-name {
    font-family: 'Orbitron', Arial, sans-serif;
    color: #00f0ff;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 0 0 8px #00f0ff, 0 0 16px #a020f0;
}
.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.2rem;
    margin-bottom: 2.2rem;
}
.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: fadeInUp 1.2s forwards;
    opacity: 0;
    transform: translateY(40px);
}
.footer-col:nth-child(1) { animation-delay: 0.4s; }
.footer-col:nth-child(2) { animation-delay: 0.5s; }
.footer-col:nth-child(3) { animation-delay: 0.6s; }
.footer-col:nth-child(4) { animation-delay: 0.7s; }
.footer-title {
    font-family: 'Orbitron', Arial, sans-serif;
    color: #a020f0;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px #a020f0, 0 0 16px #00f0ff;
}
.footer-desc {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #e0e0ff;
    font-size: 1rem;
    margin-bottom: 0.7rem;
    line-height: 1.5;
}
.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li,
.footer-contact li {
    margin-bottom: 0.7rem;
}
.footer-links a,
.footer-contact a {
    color: #00f0ff;
    text-decoration: none;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    transition: color 0.2s, text-shadow 0.2s;
}
.footer-links a:hover,
.footer-contact a:hover {
    color: #a020f0;
    text-shadow: 0 0 8px #a020f0, 0 0 16px #00f0ff;
}
.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    filter: drop-shadow(0 0 8px #a020f0);
    transition: filter 0.3s, transform 0.3s;
}
.footer-social:hover {
    filter: drop-shadow(0 0 16px #00f0ff);
    transform: scale(1.12);
}
.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    width: 100%;
}
.footer-newsletter input[type="email"] {
    background: #1a0030;
    color: #fff;
    border: 2px solid #a020f0;
    border-radius: 8px;
    padding: 0.7em 1em;
    font-size: 1rem;
    font-family: 'Montserrat', Arial, sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}
.footer-newsletter input[type="email"]:focus {
    border-color: #00f0ff;
    box-shadow: 0 0 8px #00f0ff, 0 0 16px #a020f0;
}
.newsletter-submit {
    font-family: 'Orbitron', Arial, sans-serif;
    font-size: 1rem;
    background: linear-gradient(90deg, #00f0ff 0%, #a020f0 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 0.6em 1.5em;
    box-shadow: 0 0 12px #00f0ff, 0 0 24px #a020f0;
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.3s;
    text-shadow: 0 0 8px #fff;
}
.newsletter-submit:hover {
    box-shadow: 0 0 24px #00f0ff, 0 0 48px #a020f0;
    transform: scale(1.08);
}
.newsletter-status {
    font-size: 0.95rem;
    color: #00f0ff;
    min-height: 1.2em;
    font-family: 'Orbitron', Arial, sans-serif;
    margin-top: 0.3rem;
}
.newsletter-status.error {
    color: #ff3b7b;
    text-shadow: 0 0 8px #ff3b7b;
}
.newsletter-status.success {
    color: #00f0ff;
    text-shadow: 0 0 8px #00f0ff;
}
.footer-bottom {
    text-align: center;
    color: #a020f0;
    font-size: 1rem;
    margin-top: 1.2rem;
    font-family: 'Orbitron', Arial, sans-serif;
    opacity: 0.7;
}

@media (max-width: 700px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-content {
        padding: 1rem;
    }
    .hero-rocket svg {
        width: 60px;
        height: 90px;
    }
    .features {
        padding: 2.5rem 0 1.5rem 0;
    }
    .features-title {
        font-size: 1.4rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0 0.5rem;
    }
    .feature-card {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }
    .about {
        padding: 2.5rem 0 1.5rem 0;
    }
    .about-title {
        font-size: 1.3rem;
    }
    .about-mission {
        font-size: 1rem;
    }
    .about-highlights {
        gap: 0.5rem;
    }
    .about-highlight {
        min-width: 80px;
        padding: 0.7rem 0.5rem;
    }
    .contact {
        padding: 2.5rem 0 1.5rem 0;
    }
    .contact-title {
        font-size: 1.5rem;
    }
    .contact-desc {
        font-size: 1rem;
    }
    .contact-info {
        margin-bottom: 1.5rem;
    }
    .contact-form {
        width: 100%;
        max-width: 100vw;
        margin: 0 auto;
    }
}

/* Responsive navbar */
@media (max-width: 900px) {
    .navbar-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0a0020ee;
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.5rem 0;
        box-shadow: 0 8px 32px #00f0ff33;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
        transition: opacity 0.4s, transform 0.4s;
    }
    .navbar-links.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    .navbar-hamburger {
        display: flex;
    }
    .roadmap-timeline {
        flex-direction: column;
        align-items: center;
    }
    .roadmap-connector {
        width: 6px;
        height: 40px;
        background: linear-gradient(180deg, #00f0ff 0%, #a020f0 100%);
        margin: 0 auto;
    }
    .roadmap-milestone {
        min-width: 0;
        max-width: 100%;
        width: 90vw;
        margin-bottom: 1.5rem;
    }
    .about-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 0.5rem;
    }
    .about-visual {
        margin-bottom: 1.5rem;
    }
    .about-content {
        width: 100%;
    }
    .about-highlights {
        gap: 1rem;
        flex-direction: row;
        justify-content: center;
    }
    .contact-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 0.5rem;
    }
    .contact-info {
        margin-bottom: 1.5rem;
    }
    .contact-form {
        width: 100%;
        max-width: 100vw;
        margin: 0 auto;
    }
}

/* Footer responsive styles */
@media (max-width: 900px) {
    .footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }
    .footer-col {
        margin-bottom: 1.2rem;
    }
    .newsletter-col {
        grid-column: span 2;
    }
}
@media (max-width: 700px) {
    .footer-container {
        padding: 0 0.5rem;
    }
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .footer-col {
        margin-bottom: 1rem;
    }
}
