/* ===== ADVANCED COMING SOON PAGE STYLES ===== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-cyan: #00bcd4;
    --primary-dark-cyan: #0097a7;
    --secondary-cyan: #4dd0e1;
    --accent-teal: #26a69a;
    --dark-bg: #0a0a0a;
    --light-bg: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-light: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 16px 48px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 24px 64px rgba(0, 0, 0, 0.2);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--dark-bg);
    overflow-x: hidden;
    position: relative;
    font-size: 16px;
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
}

/* ===== ANIMATED BACKGROUND ===== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 188, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(38, 166, 154, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(77, 208, 225, 0.05) 0%, transparent 50%);
}

.particle {
    position: absolute;
    background: var(--primary-cyan);
    border-radius: 50%;
    animation: float 20s infinite linear;
    opacity: 0.6;
}

.particle-1 {
    width: 4px;
    height: 4px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    width: 6px;
    height: 6px;
    top: 20%;
    right: 10%;
    animation-delay: -5s;
}

.particle-3 {
    width: 3px;
    height: 3px;
    top: 60%;
    left: 20%;
    animation-delay: -10s;
}

.particle-4 {
    width: 5px;
    height: 5px;
    bottom: 20%;
    right: 20%;
    animation-delay: -15s;
}

.particle-5 {
    width: 4px;
    height: 4px;
    bottom: 10%;
    left: 50%;
    animation-delay: -8s;
}

.particle-6 {
    width: 7px;
    height: 7px;
    top: 50%;
    right: 30%;
    animation-delay: -12s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0.6;
    }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, var(--primary-cyan), var(--secondary-cyan));
    border-radius: 50%;
    animation: shapeFloat 15s ease-in-out infinite;
}

.shape-1 {
    width: 60px;
    height: 60px;
    top: 15%;
    right: 15%;
    animation-delay: 0s;
    opacity: 0.1;
}

.shape-2 {
    width: 40px;
    height: 40px;
    bottom: 25%;
    left: 10%;
    animation-delay: -7s;
    opacity: 0.08;
    border-radius: 20px;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 70%;
    right: 5%;
    animation-delay: -12s;
    opacity: 0.05;
    border-radius: 40px;
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(10, 10, 10, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    width: 40px;
    height: 40px;
    transition: var(--transition-fast);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-cyan), var(--secondary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: var(--transition-fast);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-cyan);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition-fast);
    border-radius: 1px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--secondary-cyan));
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 2rem 4rem;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 1rem;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-cyan), var(--secondary-cyan));
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.badge-text {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: var(--dark-bg);
    position: relative;
    z-index: 2;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.3s; }
.title-line:nth-child(3) { animation-delay: 0.5s; }

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 500px;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-cyan);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== HERO VISUAL ===== */
.hero-visual {
    animation: slideInRight 1s ease-out;
    position: relative;
}

.hero-illustration {
    position: relative;
    width: 400px;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    transition: var(--transition-normal);
    cursor: pointer;
    min-width: 80px;
}

.floating-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 188, 212, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary-cyan);
}

.floating-card span {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.card-1 {
    top: -5%;
    left: -5%;
    animation: floatCard 6s ease-in-out infinite;
    z-index: 1;
}

.card-2 {
    top: 15%;
    right: -10%;
    animation: floatCard 8s ease-in-out infinite reverse;
    z-index: 2;
}

.card-3 {
    bottom: -5%;
    left: 10%;
    animation: floatCard 7s ease-in-out infinite;
    z-index: 1;
}

.card-4 {
    top: 35%;
    left: -15%;
    animation: floatCard 9s ease-in-out infinite reverse;
    z-index: 3;
}

.card-5 {
    bottom: 15%;
    right: -5%;
    animation: floatCard 10s ease-in-out infinite;
    z-index: 2;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.central-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
    z-index: 10;
}

.hero-logo {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 30px rgba(0, 188, 212, 0.3));
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--text-secondary);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-cyan);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 0; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.02), rgba(38, 166, 154, 0.02));
}

@media (max-width: 768px) {
    .features-section {
        padding: 6rem 1rem;
    }

    .section-container {
        padding: 0 0.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 4rem 1rem;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon-wrapper {
    margin-bottom: 2rem;
    position: relative;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--secondary-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: var(--dark-bg);
    position: relative;
    z-index: 2;
}

.feature-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.2), transparent);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 480px) {
    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .feature-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .feature-icon-wrapper {
        margin-bottom: 1.5rem;
    }
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    padding: 8rem 2rem;
    background: var(--dark-bg);
    position: relative;
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.newsletter-content {
    animation: slideInLeft 1s ease-out;
}

.newsletter-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.newsletter-form {
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.input-wrapper {
    position: relative;
    flex: 1;
}

.email-input {
    width: 100%;
    padding: 1.2rem 3rem 1.2rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-normal);
    outline: none;
}

.email-input:focus {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

.input-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.signup-button {
    background: linear-gradient(135deg, var(--primary-cyan), var(--secondary-cyan));
    color: var(--dark-bg);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    min-width: 160px;
}

.signup-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 188, 212, 0.3);
}

.signup-button:active {
    transform: translateY(0);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.signup-button:hover .button-glow {
    left: 100%;
}

.button-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(10, 10, 10, 0.3);
    border-top: 2px solid var(--dark-bg);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-weight: 500;
    text-align: center;
}

.message.success {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.message.error {
    background-color: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.newsletter-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.newsletter-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.newsletter-feature i {
    color: var(--primary-cyan);
}

/* ===== NEWSLETTER VISUAL ===== */
.newsletter-visual {
    animation: slideInRight 1s ease-out;
    position: relative;
}

.visual-elements {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rocket-animation {
    font-size: 8rem;
    color: var(--primary-cyan);
    animation: rocketFloat 3s ease-in-out infinite;
}

@keyframes rocketFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
}

.star {
    position: absolute;
    font-size: 2rem;
    animation: twinkle 2s ease-in-out infinite;
}

.star-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.star-2 {
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}

.star-3 {
    bottom: 30%;
    left: 40%;
    animation-delay: 0.5s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* ===== CONTACT SECTION ===== */
#footer {
    scroll-margin-top: 100px; /* Account for navbar height */
}

.footer {
    scroll-margin-top: 100px; /* Account for navbar height */
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.03), rgba(38, 166, 154, 0.03));
    padding: 3rem 2rem 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
    opacity: 0.5;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-top: 2rem;
}

.footer-column {
    min-width: 0;
}

.footer-brand {
    margin-bottom: 3rem;
}

.footer-logo {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 12px rgba(0, 188, 212, 0.3));
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-cyan), var(--secondary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 0;
}

.footer-contact {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-contact h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-cyan);
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.01);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    min-width: 200px;
    justify-content: center;
    transition: var(--transition-fast);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 188, 212, 0.2);
}

.contact-item i {
    color: var(--primary-cyan);
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.footer-column h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--secondary-cyan));
    border-radius: 1px;
}

.footer-services,
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services li,
.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-services a,
.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-services a:hover,
.footer-links a:hover {
    color: var(--primary-cyan);
    transform: translateX(8px);
}

.footer-services i {
    color: var(--primary-cyan);
    width: 16px;
    font-size: 0.9rem;
}

.footer-social {
    margin-top: 3rem;
}

.footer-social h4 {
    margin-bottom: 1.5rem;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 1rem;
    max-width: 300px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-cyan), var(--secondary-cyan));
    opacity: 0;
    transition: var(--transition-normal);
    z-index: -1;
}

.social-link:hover {
    color: white;
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 188, 212, 0.3);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link.linkedin:hover {
    box-shadow: 0 12px 25px rgba(0, 119, 181, 0.3);
}
.social-link.linkedin:hover::before {
    background: linear-gradient(135deg, #0077b5, #005885);
}

.social-link.github:hover {
    box-shadow: 0 12px 25px rgba(255, 255, 255, 0.2);
}
.social-link.github:hover::before {
    background: linear-gradient(135deg, #333, #24292e);
}

.social-link.twitter:hover {
    box-shadow: 0 12px 25px rgba(29, 161, 242, 0.3);
}
.social-link.twitter:hover::before {
    background: linear-gradient(135deg, #1da1f2, #0d95e8);
}

.social-link.instagram:hover {
    box-shadow: 0 12px 25px rgba(225, 48, 108, 0.3);
}
.social-link.instagram:hover::before {
    background: linear-gradient(135deg, #e1306c, #c13584);
}

.social-link.youtube:hover {
    box-shadow: 0 12px 25px rgba(255, 0, 0, 0.3);
}
.social-link.youtube:hover::before {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-link.dribbble:hover {
    box-shadow: 0 12px 25px rgba(234, 76, 137, 0.3);
}
.social-link.dribbble:hover::before {
    background: linear-gradient(135deg, #ea4c89, #e7316f);
}

.social-tooltip {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-bg);
    color: white;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-tooltip::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid var(--dark-bg);
}

.social-link:hover .social-tooltip {
    opacity: 1;
    visibility: visible;
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-muted);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--primary-cyan);
}

.footer-made-with {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.footer-made-with i {
    color: #e91e63;
    animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
    0%, 50%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
}

/* ===== ULTRA ADVANCED FUTURISTIC LOADING SCREEN ===== */

/* ===== HOLOGRAPHIC PROJECTION SYSTEM ===== */
.holographic-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.holo-projection {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg,
        rgba(0, 188, 212, 0.1),
        rgba(38, 166, 154, 0.2),
        rgba(77, 208, 225, 0.1));
    backdrop-filter: blur(2px);
    animation: holoFloat 4s ease-in-out infinite;
}

.holo-projection.holo-1 {
    width: 180px;
    height: 180px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
    border: 1px solid rgba(0, 188, 212, 0.3);
}

.holo-projection.holo-2 {
    width: 120px;
    height: 120px;
    top: 65%;
    right: 12%;
    animation-delay: -1.5s;
    border: 1px solid rgba(38, 166, 154, 0.3);
}

.holo-projection.holo-3 {
    width: 90px;
    height: 90px;
    bottom: 25%;
    left: 70%;
    animation-delay: -3s;
    border: 1px solid rgba(77, 208, 225, 0.3);
}


@keyframes holoFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-10px) scale(1.1);
        opacity: 0.7;
    }
}


/* ===== QUANTUM PARTICLE FIELD ===== */
.quantum-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.quantum-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #00bcd4, #26a69a);
    border-radius: 50%;
    animation: quantumOrbit 8s linear infinite;
    box-shadow: 0 0 10px rgba(0, 188, 212, 0.6);
}

.quantum-particle.qp-1 {
    top: 25%;
    left: 15%;
    animation-delay: 0s;
}

.quantum-particle.qp-2 {
    top: 45%;
    right: 8%;
    animation-delay: -2s;
    width: 6px;
    height: 6px;
}

.quantum-particle.qp-3 {
    bottom: 30%;
    left: 75%;
    animation-delay: -4s;
}

.quantum-particle.qp-4 {
    top: 15%;
    right: 45%;
    animation-delay: -6s;
    width: 3px;
    height: 3px;
}

.quantum-particle.qp-5 {
    bottom: 45%;
    left: 45%;
    animation-delay: -1s;
}

.quantum-connector {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 188, 212, 0.4), transparent);
    animation: connectorPulse 3s ease-in-out infinite;
}

.quantum-connector.qc-1 {
    top: 30%;
    left: 20%;
    width: 180px;
    transform: rotate(35deg);
}

.quantum-connector.qc-2 {
    bottom: 35%;
    right: 12%;
    width: 120px;
    transform: rotate(-25deg);
}

.quantum-connector.qc-3 {
    top: 20%;
    left: 50%;
    width: 150px;
    transform: rotate(15deg);
}

@keyframes quantumOrbit {
    0% {
        transform: rotate(0deg) translateX(50px) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(360deg) translateX(50px) rotate(-360deg);
        opacity: 0.8;
    }
}

@keyframes connectorPulse {
    0%, 100% {
        opacity: 0.2;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 0.8;
        transform: scaleX(1.2);
    }
}

/* ===== NEURAL NETWORK VISUALIZATION ===== */
.neural-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.neural-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, #00bcd4, #26a69a);
    border-radius: 50%;
    animation: neuralPulse 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.6);
}

.neural-node.node-core {
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(45deg, #00bcd4, #4dd0e1, #26a69a);
    box-shadow: 0 0 25px rgba(0, 188, 212, 0.8);
}

.neural-node.node-1 { top: 30%; left: 25%; }
.neural-node.node-2 { top: 15%; right: 30%; }
.neural-node.node-3 { bottom: 35%; left: 15%; }
.neural-node.node-4 { bottom: 20%; right: 25%; }
.neural-node.node-5 { top: 55%; left: 60%; }

.neural-connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 188, 212, 0.6), rgba(38, 166, 154, 0.8), rgba(0, 188, 212, 0.6));
    animation: neuralFlow 3s ease-in-out infinite;
    border-radius: 1px;
}

.neural-connection.conn-1 {
    top: 40%;
    left: 30%;
    width: 120px;
    transform: rotate(25deg);
}

.neural-connection.conn-2 {
    top: 25%;
    right: 35%;
    width: 100px;
    transform: rotate(-35deg);
}

.neural-connection.conn-3 {
    bottom: 40%;
    left: 20%;
    width: 90px;
    transform: rotate(-30deg);
}

.neural-connection.conn-4 {
    bottom: 30%;
    right: 30%;
    width: 110px;
    transform: rotate(40deg);
}

.neural-connection.conn-5 {
    top: 60%;
    left: 55%;
    width: 80px;
    transform: rotate(15deg);
}

@keyframes neuralPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

@keyframes neuralFlow {
    0% {
        background: linear-gradient(90deg, rgba(0, 188, 212, 0.6), rgba(38, 166, 154, 0.8), rgba(0, 188, 212, 0.6));
        transform: translateX(-10px);
    }
    50% {
        background: linear-gradient(90deg, rgba(38, 166, 154, 0.8), rgba(0, 188, 212, 0.6), rgba(38, 166, 154, 0.8));
        transform: translateX(0px);
    }
    100% {
        background: linear-gradient(90deg, rgba(0, 188, 212, 0.6), rgba(38, 166, 154, 0.8), rgba(0, 188, 212, 0.6));
        transform: translateX(10px);
    }
}

/* ===== BIOMETRIC DNA SCANNER ===== */
.dna-scanner {
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 250px;
    height: 200px;
    pointer-events: none;
}

.dna-helix {
    position: relative;
    width: 100%;
    height: 120px;
    animation: dnaRotate 4s linear infinite;
}

.dna-strand {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 188, 212, 0.6), transparent);
    border-radius: 1px;
}

.dna-strand.strand-1 {
    top: 20px;
    transform: rotate(10deg);
}

.dna-strand.strand-2 {
    bottom: 20px;
    transform: rotate(-10deg);
}

.dna-base {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #00bcd4, #26a69a);
    border-radius: 50%;
    animation: dnaPulse 2s ease-in-out infinite;
}

.dna-base.base-1 { top: 10px; left: 20%; animation-delay: 0s; }
.dna-base.base-2 { bottom: 10px; left: 40%; animation-delay: -0.5s; }
.dna-base.base-3 { top: 15px; right: 30%; animation-delay: -1s; }
.dna-base.base-4 { bottom: 15px; right: 10%; animation-delay: -1.5s; }

.scanner-beam {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 188, 212, 0.8), transparent);
    animation: scannerSweep 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.5);
}

.biometric-data {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.7rem;
    color: rgba(0, 188, 212, 0.8);
}

.data-line {
    margin: 2px 0;
    animation: dataFlow 4s linear infinite;
    white-space: nowrap;
    overflow: hidden;
}

@keyframes dnaRotate {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes dnaPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.5); opacity: 1; }
}

@keyframes scannerSweep {
    0%, 100% {
        left: 0;
        opacity: 0;
    }
    50% {
        left: calc(100% - 2px);
        opacity: 1;
    }
}

@keyframes dataFlow {
    0% { transform: translateX(100%); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0; }
}

/* ===== CYBERPUNK GLITCH EFFECTS ===== */
.cyber-glitch {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.glitch-layer {
    position: absolute;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(45deg, #00bcd4, #26a69a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    animation: glitchEffect 4s ease-in-out infinite;
}

.glitch-layer.layer-1 {
    color: rgba(0, 188, 212, 0.9);
    animation-delay: 0s;
    z-index: 3;
}

.glitch-layer.layer-2 {
    color: rgba(38, 166, 154, 0.7);
    transform: translateX(2px);
    animation-delay: -1s;
    z-index: 2;
}

.glitch-layer.layer-3 {
    color: rgba(77, 208, 225, 0.5);
    transform: translateX(-2px);
    animation-delay: -2s;
    z-index: 1;
}

.corruption-particles {
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 100%;
}

.corrupt-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: linear-gradient(45deg, #ff5252, #ff1744);
    border-radius: 50%;
    animation: corruptionFloat 6s ease-in-out infinite;
}

.corrupt-particle.cp-1 {
    top: 10px;
    left: 20%;
    animation-delay: 0s;
}

.corrupt-particle.cp-2 {
    top: 30px;
    right: 30%;
    animation-delay: -2s;
}

.corrupt-particle.cp-3 {
    bottom: 10px;
    left: 70%;
    animation-delay: -4s;
}

@keyframes glitchEffect {
    0%, 90%, 100% {
        transform: translateX(0) skewX(0deg);
        opacity: 1;
    }
    10% {
        transform: translateX(-2px) skewX(2deg);
        opacity: 0.8;
    }
    20% {
        transform: translateX(2px) skewX(-2deg);
        opacity: 0.9;
    }
    30% {
        transform: translateX(-1px) skewX(1deg);
        opacity: 0.85;
    }
    40% {
        transform: translateX(1px) skewX(-1deg);
        opacity: 0.95;
    }
    50% {
        transform: translateX(0) skewX(0deg);
        opacity: 1;
    }
    60% {
        transform: translateX(2px) skewX(-3deg);
        opacity: 0.9;
    }
    70% {
        transform: translateX(-2px) skewX(3deg);
        opacity: 0.85;
    }
    80% {
        transform: translateX(1px) skewX(-1deg);
        opacity: 0.95;
    }
}

@keyframes corruptionFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }
}

/* ===== AI PROCESSING MATRIX ===== */
.ai-matrix {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 280px;
    height: 180px;
    pointer-events: none;
}

.processing-core {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.ai-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #00bcd4, #26a69a);
    border-radius: 50%;
    animation: aiProcess 3s ease-in-out infinite;
}

.ai-node.ai-1 { top: 10%; left: 10%; animation-delay: 0s; }
.ai-node.ai-2 { top: 10%; right: 10%; animation-delay: -1s; }
.ai-node.ai-3 { bottom: 10%; left: 10%; animation-delay: -2s; }
.ai-node.ai-4 { bottom: 10%; right: 10%; animation-delay: -0.5s; }

.ai-connector {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 188, 212, 0.6), rgba(38, 166, 154, 0.8));
    animation: aiConnect 2s ease-in-out infinite;
}

.ai-connector.ac-1 {
    top: 20%;
    left: 20%;
    width: 60px;
    transform: rotate(45deg);
}

.ai-connector.ac-2 {
    top: 20%;
    right: 20%;
    width: 60px;
    transform: rotate(-45deg);
}

.ai-connector.ac-3 {
    bottom: 20%;
    left: 50%;
    width: 40px;
    transform: translateX(-50%);
}

.matrix-stream {
    text-align: center;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.6rem;
    color: rgba(0, 188, 212, 0.7);
}

.stream-line {
    margin: 3px 0;
    animation: matrixFlow 5s linear infinite;
    white-space: nowrap;
}

@keyframes aiProcess {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
        box-shadow: 0 0 5px rgba(0, 188, 212, 0.4);
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
        box-shadow: 0 0 15px rgba(0, 188, 212, 0.8);
    }
}

@keyframes aiConnect {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 0.9;
        transform: scaleX(1.2);
    }
}

@keyframes matrixFlow {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-20px);
        opacity: 0;
    }
}

/* ===== REALITY DISTORTION FIELD ===== */
.reality-distortion {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.distortion-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 188, 212, 0.3);
    border-radius: 50%;
    animation: realityWarp 6s ease-in-out infinite;
}

.distortion-ring.dr-1 {
    width: 250px;
    height: 250px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.distortion-ring.dr-2 {
    width: 320px;
    height: 320px;
    top: 60%;
    right: 15%;
    animation-delay: -2s;
    border-color: rgba(38, 166, 154, 0.2);
}

.distortion-ring.dr-3 {
    width: 400px;
    height: 400px;
    bottom: 10%;
    left: 50%;
    animation-delay: -4s;
    border-color: rgba(77, 208, 225, 0.1);
}

.reality-fracture {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.fracture-line {
    position: absolute;
    background: linear-gradient(45deg, transparent, rgba(0, 188, 212, 0.4), transparent);
    animation: fracturePulse 4s ease-in-out infinite;
}

.fracture-line.fl-1 {
    width: 180px;
    height: 1px;
    top: 30%;
    left: 25%;
    transform: rotate(35deg);
    animation-delay: 0s;
}

.fracture-line.fl-2 {
    width: 140px;
    height: 1px;
    bottom: 35%;
    right: 25%;
    transform: rotate(-40deg);
    animation-delay: -1.5s;
}

.fracture-line.fl-3 {
    width: 120px;
    height: 1px;
    top: 70%;
    left: 60%;
    transform: rotate(70deg);
    animation-delay: -3s;
}

@keyframes realityWarp {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.2;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1) rotate(180deg);
        opacity: 0.6;
    }
}

@keyframes fracturePulse {
    0%, 100% {
        opacity: 0.1;
        transform: scaleX(0.5);
    }
    50% {
        opacity: 0.5;
        transform: scaleX(1.5);
    }
}

/* ===== ULTRA ADVANCED LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: screenFadeOut 1s ease-in-out 4.5s forwards;
    overflow: hidden;
}

/* Dynamic Background System */
.loading-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 25% 25%, rgba(0, 188, 212, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(38, 166, 154, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(77, 208, 225, 0.04) 0%, transparent 40%);
}

/* Grid Background */
.bg-grid {
    position: absolute;
    width: 100%;
    height: 100%;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 188, 212, 0.1), transparent);
    animation: gridPulse 3s ease-in-out infinite;
}

.line-1 {
    top: 20%;
    left: 0;
    width: 100%;
    height: 1px;
    animation-delay: 0s;
}

.line-2 {
    left: 20%;
    top: 0;
    width: 1px;
    height: 100%;
    animation-delay: 0.5s;
}

.line-3 {
    bottom: 20%;
    left: 0;
    width: 100%;
    height: 1px;
    animation-delay: 1s;
}

.line-4 {
    right: 20%;
    top: 0;
    width: 1px;
    height: 100%;
    animation-delay: 1.5s;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Advanced Particle System */
.bg-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: advancedParticle 6s infinite ease-in-out;
}

.particle-1 {
    width: 4px;
    height: 4px;
    background: var(--primary-cyan);
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    width: 6px;
    height: 6px;
    background: var(--secondary-cyan);
    top: 35%;
    right: 15%;
    animation-delay: -1s;
}

.particle-3 {
    width: 3px;
    height: 3px;
    background: var(--accent-teal);
    bottom: 25%;
    left: 20%;
    animation-delay: -2s;
}

.particle-4 {
    width: 5px;
    height: 5px;
    background: var(--primary-cyan);
    top: 60%;
    right: 25%;
    animation-delay: -0.5s;
}

.particle-5 {
    width: 4px;
    height: 4px;
    background: var(--secondary-cyan);
    bottom: 15%;
    left: 70%;
    animation-delay: -1.5s;
}

.particle-6 {
    width: 7px;
    height: 7px;
    background: var(--accent-teal);
    top: 25%;
    left: 80%;
    animation-delay: -0.8s;
}

.particle-7 {
    width: 3px;
    height: 3px;
    background: var(--primary-cyan);
    bottom: 35%;
    right: 10%;
    animation-delay: -2.2s;
}

.particle-8 {
    width: 5px;
    height: 5px;
    background: var(--secondary-cyan);
    top: 45%;
    left: 40%;
    animation-delay: -1.8s;
}

@keyframes advancedParticle {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-15px) translateX(10px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translateY(-5px) translateX(-5px) scale(0.8);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-20px) translateX(5px) scale(1.1);
        opacity: 0.9;
    }
}

/* Wave Animation Background */
.bg-waves {
    position: absolute;
    width: 100%;
    height: 100%;
}

.wave {
    position: absolute;
    border-radius: 50%;
    animation: waveExpand 4s infinite ease-in-out;
}

.wave-1 {
    width: 200px;
    height: 200px;
    border: 1px solid rgba(0, 188, 212, 0.2);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.wave-2 {
    width: 150px;
    height: 150px;
    border: 1px solid rgba(38, 166, 154, 0.15);
    bottom: 15%;
    right: 15%;
    animation-delay: -2s;
}

.wave-3 {
    width: 100px;
    height: 100px;
    border: 1px solid rgba(77, 208, 225, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -1s;
}

@keyframes waveExpand {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.4;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.8;
    }
}

/* Main Loading Container */
.loading-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

/* Core Animation System */
.loading-core {
    position: relative;
}

.core-container {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Central Logo */
.core-logo {
    position: relative;
    z-index: 10;
}

.core-logo img {
    width: 60px;
    height: 60px;
    animation: corePulse 2.5s ease-in-out infinite;
}

.logo-energy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.4), transparent);
    border-radius: 50%;
    animation: energyPulse 3s ease-in-out infinite;
}

@keyframes corePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

@keyframes energyPulse {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

/* Energy Rings System */
.energy-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ringRevolution 4s linear infinite;
}

.ring-primary {
    width: 80px;
    height: 80px;
    border-color: var(--primary-cyan);
    animation-duration: 3s;
    opacity: 0.8;
}

.ring-secondary {
    width: 120px;
    height: 120px;
    border-color: var(--secondary-cyan);
    animation-duration: 4s;
    animation-delay: -1s;
    opacity: 0.6;
}

.ring-tertiary {
    width: 160px;
    height: 160px;
    border-color: var(--accent-teal);
    animation-duration: 5s;
    animation-delay: -2s;
    opacity: 0.4;
}

.ring-quaternary {
    width: 200px;
    height: 200px;
    border-color: var(--primary-cyan);
    animation-duration: 6s;
    animation-delay: -3s;
    opacity: 0.2;
}

@keyframes ringRevolution {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Orbital Elements */
.orbitals {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
}

.orbital {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: orbitalMotion 5s linear infinite;
}

.orbital-1 {
    animation-duration: 4s;
}

.orbital-2 {
    animation-duration: 6s;
    animation-delay: -1s;
}

.orbital-3 {
    animation-duration: 8s;
    animation-delay: -2s;
}

.orbital-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-cyan);
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--primary-cyan);
}

@keyframes orbitalMotion {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Progress System */
.loading-progress-system {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 400px;
}

/* Binary Code Stream */
.binary-stream {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--primary-cyan);
    opacity: 0.7;
    margin-bottom: 1rem;

    display: grid;
    grid-auto-rows: 1.4em; /* fixed row height */
    justify-items: center;

    white-space: nowrap;
    overflow: hidden;
}



.binary-line {
    width: 24ch;            /* SAME WIDTH for all */
    line-height: 1.4em;
    text-align: left;

    will-change: opacity;  /* prevents GPU drift */
    animation: binaryFlow 2s linear infinite;
}



.line-1 { animation-delay: 0s; }
.line-2 { animation-delay: -0.5s; }
.line-3 { animation-delay: -1s; }

@keyframes binaryFlow {
    0% {
        opacity: 0.2;
        transform: translateY(0);
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.2;
        transform: translateY(0);
    }
}


/* Advanced Progress Display */
.progress-display {
    width: 100%;
    text-align: center;
}

.progress-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.progress-bar-advanced {
    position: relative;
    width: 100%;
    height: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-cyan), var(--secondary-cyan));
    border-radius: 4px;
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
}

.progress-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressPulse 2s ease-in-out infinite;
}

.progress-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--secondary-cyan));
    border-radius: 6px;
    opacity: 0.3;
    filter: blur(4px);
}

@keyframes progressPulse {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-percentage {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    font-family: 'Space Grotesk', monospace;
}

/* Status Messages */
.status-messages {
    height: 2rem;
    overflow: hidden;
    position: relative;
    width: 100%;
    text-align: center;
}

.message {
    position: absolute;
    width: 100%;
    font-size: 1rem;
    color: var(--primary-cyan);
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.message.active {
    opacity: 1;
    transform: translateY(0);
}

/* Phase Indicators */
.phase-indicators {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.indicator.active {
    opacity: 1;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.indicator.active .indicator-dot {
    background: var(--primary-cyan);
    box-shadow: 0 0 15px var(--primary-cyan);
}

.indicator-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    font-family: 'Space Grotesk', monospace;
}

.indicator.active .indicator-label {
    color: var(--primary-cyan);
}

/* Loading Effects */
.loading-effects {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 60px;
    overflow: hidden;
}

.effect-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Data Stream Effect */
.data-stream {
    position: absolute;
    width: 100%;
    height: 100%;
}

.data-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-cyan);
    border-radius: 50%;
    animation: dataFlow 3s linear infinite;
}

.particle-a {
    top: 20%;
    animation-delay: 0s;
}

.particle-b {
    top: 40%;
    animation-delay: -1s;
}

.particle-c {
    top: 60%;
    animation-delay: -2s;
}

.particle-d {
    top: 30%;
    animation-delay: -0.5s;
}

.particle-e {
    top: 50%;
    animation-delay: -1.5s;
}

@keyframes dataFlow {
    0% {
        left: -10px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 310px;
        opacity: 0;
    }
}

/* Matrix Rain Effect */
.matrix-rain {
    position: absolute;
    bottom: 0;
    width: 100%;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: var(--primary-cyan);
    opacity: 0.6;
}

.rain-column {
    position: absolute;
    animation: matrixFall 4s linear infinite;
}

.col-1 {
    left: 10%;
    animation-delay: 0s;
}

.col-2 {
    left: 30%;
    animation-delay: -1s;
}

.col-3 {
    left: 60%;
    animation-delay: -2s;
}

.col-4 {
    left: 85%;
    animation-delay: -0.5s;
}

@keyframes matrixFall {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(80px);
        opacity: 0;
    }
}

@keyframes screenFadeOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.02);
    }
    100% {
        opacity: 0;
        transform: scale(1.05);
        visibility: hidden;
    }
}

/* Phase Effects */
@keyframes phaseEffect {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(2) rotate(360deg);
    }
}

.phase-effect.ai-pulse {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.6), transparent);
    border-radius: 50%;
}

.phase-effect.ux-wave {
    width: 80px;
    height: 80px;
    background: conic-gradient(from 0deg, var(--primary-cyan), var(--secondary-cyan), var(--accent-teal));
    border-radius: 50%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.phase-effect.dev-spark {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-cyan), var(--secondary-cyan));
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.phase-effect.sec-shield {
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, var(--accent-teal), transparent);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.phase-effect.live-celebration {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--primary-cyan), var(--secondary-cyan), var(--accent-teal));
    border-radius: 50%;
}

/* Celebration Animation */
@keyframes celebrationBurst {
    0% {
        opacity: 1;
        transform: scale(0) rotate(0deg);
    }
    20% {
        opacity: 1;
        transform: scale(1) rotate(72deg);
    }
    80% {
        opacity: 0.8;
        transform: scale(1.2) rotate(288deg);
    }
    100% {
        opacity: 0;
        transform: scale(0) rotate(360deg) translateY(-100px);
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; visibility: hidden; }
}

@keyframes loadingComplete {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
    100% {
        opacity: 0;
        transform: scale(1.1);
        visibility: hidden;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Improve touch targets on mobile */
@media (max-width: 768px) {
    button,
    .nav-link,
    .mobile-nav-link,
    .social-link,
    .floating-card,
    .footer-services a,
    .footer-links a {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Better focus states for accessibility */
@media (max-width: 768px) {
    button:focus,
    input:focus,
    .nav-link:focus,
    .social-link:focus {
        outline: 2px solid var(--primary-cyan);
        outline-offset: 2px;
    }
}

@media (max-width: 1024px) {
    .hero-content,
    .newsletter-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-section {
        padding: 100px 1rem 3rem;
    }

    .hero-content {
        gap: 3rem;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-visual {
        order: 1;
        margin-bottom: 2rem;
    }

    .hero-illustration {
        width: 350px;
        height: 350px;
        margin: 0 auto;
    }

    .hero-stats {
        justify-content: center;
        margin-bottom: 2rem;
    }

    /* Adjust floating card positions for tablets */
    .card-1 { top: 5%; left: -5%; }
    .card-2 { top: 25%; right: -5%; }
    .card-3 { bottom: 5%; left: 5%; }
    .card-4 { top: 45%; left: -10%; }
    .card-5 { bottom: 25%; right: -5%; }

    /* Adjust hero illustration size for tablets */
    .hero-illustration {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-normal);
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-content {
        text-align: center;
        transform: translateY(30px);
        transition: var(--transition-normal);
        max-width: 300px;
        width: 90%;
    }

    .mobile-menu-overlay.active .mobile-menu-content {
        transform: translateY(0);
    }

    .mobile-menu-links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .mobile-nav-link {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--text-primary);
        text-decoration: none;
        padding: 1rem 1.5rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: var(--transition-normal);
        display: block;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link.active {
        background: rgba(0, 188, 212, 0.1);
        border-color: var(--primary-cyan);
        color: var(--primary-cyan);
        transform: translateY(-2px);
    }

    .hero-section {
        padding: 100px 1rem 3rem;
        min-height: auto;
    }

    .hero-content {
        gap: 2.5rem;
        padding: 0;
    }

    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .stat-item {
        padding: 1rem 0.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Better floating card positioning for tablets */
    .floating-card {
        min-width: 75px;
        padding: 0.8rem;
    }

    .floating-card i {
        font-size: 1.8rem;
    }

    .floating-card span {
        font-size: 0.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .newsletter-container {
        padding: 4rem 1rem;
    }

    .newsletter-content {
        text-align: center;
    }

    .newsletter-text h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .newsletter-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .form-group {
        flex-direction: column;
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }

    .input-wrapper {
        width: 100%;
    }

    .email-input {
        width: 100%;
        padding: 1.3rem 1.2rem 1.3rem 3rem;
        font-size: 1rem;
    }

    .signup-button {
        width: 100%;
        min-width: auto;
        padding: 1.3rem 2rem;
        font-size: 1.1rem;
    }

    .newsletter-features {
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .newsletter-feature {
        font-size: 0.9rem;
    }

    .footer {
        padding: 4rem 1rem 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 0.5rem;
    }

    .footer-brand {
        text-align: center;
        margin-bottom: 2rem;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-brand h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .footer-brand p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-contact {
        margin-bottom: 2rem;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-contact h4 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .contact-info {
        gap: 1rem;
    }

    .contact-item {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        min-width: auto;
        justify-content: flex-start;
    }

    .footer-logo {
        margin: 0 auto 1.5rem;
    }

    .contact-info {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
        max-width: none;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-bottom-links {
        order: 2;
    }

    .footer-made-with {
        order: 3;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 90px 1rem 2rem;
    }

    .hero-content {
        gap: 2rem;
        padding: 0 0.5rem;
    }

    .hero-badge {
        padding: 0.5rem 1.2rem;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .hero-stats {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .stat-item {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .floating-card {
        padding: 0.8rem;
        font-size: 0.8rem;
    }

    .floating-card i {
        font-size: 1.2rem;
    }

    /* Hide some cards on mobile to prevent overcrowding */
    .card-4,
    .card-5 {
        display: none;
    }

    .hero-illustration {
        width: 280px;
        height: 280px;
    }

    /* Better floating card positioning for mobile */
    .floating-card {
        min-width: 70px;
        padding: 0.7rem;
    }

    .floating-card i {
        font-size: 1.5rem;
    }

    .floating-card span {
        font-size: 0.75rem;
    }

    /* Adjust card positions for mobile layout */
    .card-1 { top: 10%; left: -10%; }
    .card-2 { top: 30%; right: -15%; }
    .card-3 { bottom: 10%; left: -5%; }
    .card-4 { display: none; } /* Hide on small screens */
    .card-5 { bottom: 30%; right: -10%; }

    .feature-card {
        padding: 1.5rem 1rem;
    }

    .newsletter-text h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .newsletter-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .newsletter-section {
        padding: 3rem 1rem;
    }

    .newsletter-container {
        gap: 2rem;
    }

    .email-input {
        padding: 1.2rem 1rem 1.2rem 2.5rem;
        font-size: 0.95rem;
    }

    .input-icon {
        left: 1rem;
        font-size: 1rem;
    }

    .signup-button {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }

    .newsletter-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .newsletter-feature {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer {
        padding: 3rem 1rem 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0;
    }

    .footer-column h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer-services li,
    .footer-links li {
        margin-bottom: 0.6rem;
    }

    .footer-services a,
    .footer-links a {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }

    .social-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
        max-width: none;
        justify-items: center;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }

    .contact-item {
        font-size: 0.85rem;
        padding: 0.7rem 0.8rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
        text-align: left;
    }

    .contact-item i {
        width: 18px;
        font-size: 1rem;
    }

    .footer-bottom {
        padding-top: 2rem;
    }

    .footer-bottom-content {
        gap: 1rem;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.8rem;
        order: 2;
    }

    .footer-bottom-links a {
        font-size: 0.8rem;
    }

    .footer-made-with {
        font-size: 0.8rem;
        order: 3;
    }

    .footer-bottom-links a {
        font-size: 0.85rem;
    }

    /* Ultra Advanced Futuristic Loading Screen Mobile Adjustments */

    /* Reduce complex effects on mobile for performance */
    .holographic-system,
    .quantum-field,
    .neural-network,
    .reality-distortion {
        display: none;
    }

    /* Simplify DNA scanner on mobile */
    .dna-scanner {
        width: 200px;
        height: 150px;
        bottom: 5%;
        right: 5%;
    }

    .dna-helix {
        height: 100px;
    }

    .biometric-data {
        font-size: 0.6rem;
    }

    /* Simplify cyberpunk effects */
    .cyber-glitch {
        top: 15%;
    }

    .glitch-layer {
        font-size: 1.5rem;
    }

    /* Optimize AI matrix for mobile */
    .ai-matrix {
        width: 220px;
        height: 140px;
        top: 10%;
        right: 5%;
    }

    .processing-core {
        width: 80px;
        height: 80px;
    }

    .matrix-stream {
        font-size: 0.5rem;
    }

    .loading-main {
        gap: 1.5rem;
    }

    .core-container {
        width: 160px;
        height: 160px;
    }

    .core-logo img {
        width: 50px;
        height: 50px;
    }

    .logo-energy {
        width: 80px;
        height: 80px;
    }

    .energy-rings {
        width: 160px;
        height: 160px;
    }

    .ring-primary { width: 60px; height: 60px; }
    .ring-secondary { width: 90px; height: 90px; }
    .ring-tertiary { width: 120px; height: 120px; }
    .ring-quaternary { width: 160px; height: 160px; }

    .orbitals {
        width: 140px;
        height: 140px;
    }

    .loading-progress-system {
        max-width: 320px;
    }

    .binary-stream {
        font-size: 0.8rem;
    }

    .progress-bar-advanced {
        height: 12px;
    }

    .progress-percentage {
        font-size: 0.7rem;
    }

    .phase-indicators {
        gap: 0.8rem;
    }

    .indicator-dot {
        width: 10px;
        height: 10px;
    }

    .indicator-label {
        font-size: 0.6rem;
    }

    .loading-effects {
        width: 250px;
        height: 50px;
    }

    /* Reduce particle count on mobile for performance */
    .particle-5,
    .particle-6,
    .particle-7,
    .particle-8 { display: none; }

    /* Simplify matrix rain on mobile */
    .matrix-rain {
        font-size: 0.7rem;
    }

    .rain-column:not(.col-1):not(.col-2) { display: none; }
}

/* ===== SCROLL ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
    .feature-card,
    .floating-card {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .feature-card.in-view,
    .floating-card.in-view {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== DARK MODE SUPPORT ===== */
@media (prefers-color-scheme: dark) {
    :root {
        --dark-bg: #0a0a0a;
        --light-bg: #ffffff;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .animated-bg,
    .floating-shapes,
    .navbar,
    .scroll-indicator,
    .loading-screen {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .hero-title,
    .section-title {
        background: none !important;
        -webkit-text-fill-color: black !important;
        color: black !important;
    }
}
