﻿/* ============================================
   SimuPortal Landing Page - Modern Refresh
   Same structure, fresh modern look
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* New Modern Color Palette - Teal/Emerald */
    --primary-color: #00cfe8;
    --primary-light: #34ebc0;
    --primary-dark: #05b386;
    --secondary-blue: #118ab2;
    --accent-purple: #7b2cbf;
    --accent-orange: #ff9f1c;
    /* Backgrounds */
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --body-bg: #0f172a;
    --card-bg: rgba(30, 41, 59, 0.7);
    --card-bg-hover: rgba(51, 65, 85, 0.8);
    /* Text */
    --light-text: #f1f5f9;
    --gray-text: #94a3b8;
    --muted-text: #64748b;
    /* Glass effects */
    --header-bg: rgba(15, 23, 42, 0.8);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-light: rgba(255, 255, 255, 0.15);
    /* Glows */
    --primary-glow: rgba(6, 214, 160, 0.4);
    --hover-glow: rgba(6, 214, 160, 0.25);
    --mini-glow: rgba(6, 214, 160, 0.1);
}


body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 18px;
    background: var(--body-bg);
    color: var(--gray-text);
    overflow-x: hidden;
    line-height: 1.7;
    user-select: none;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, var(--darker-bg) 0%, #0f172a 40%, #1e1b4b 100%);
    overflow: hidden;
}

    .animated-bg::before {
        content: '';
        position: absolute;
        width: 150%;
        height: 150%;
        top: -25%;
        left: -25%;
        background: radial-gradient(ellipse 600px 600px at 20% 20%, rgba(6, 214, 160, 0.08) 0%, transparent 50%), radial-gradient(ellipse 500px 500px at 80% 70%, rgba(123, 44, 191, 0.08) 0%, transparent 50%), radial-gradient(ellipse 400px 400px at 60% 30%, rgba(17, 138, 178, 0.06) 0%, transparent 50%);
        animation: backgroundMove 25s ease-in-out infinite;
    }

    .animated-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
        background-size: 80px 80px;
        mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
    }

@keyframes backgroundMove {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-5%, -5%) rotate(1deg);
    }
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2.5rem;
    max-width: 100%;
}

    header.scrolled {
        padding: 0.85rem 2.5rem;
        background: var(--header-bg);
        backdrop-filter: blur(20px) saturate(180%);
        border-bottom: 1px solid var(--glass-border);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-svg {
    width: 150px;
    height: auto;
}

    .logo-svg a {
        display: flex;
        transition: opacity 0.3s ease;
    }

        .logo-svg a:hover {
            opacity: 0.85;
        }

.nav-menu {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    align-items: center;
    justify-content: center;
}

    .nav-menu a {
        color: var(--gray-text);
        text-decoration: none;
        font-weight: 500;
        font-size: 0.95rem;
        letter-spacing: 0.02em;
        transition: all 0.3s ease;
        position: relative;
        padding: 0.6rem 1.1rem;
        border-radius: 8px;
    }

        .nav-menu a:hover {
            color: var(--light-text);
            background: var(--glass-bg);
        }

.support-links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
}

    .support-links a {
        color: var(--gray-text);
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 600;
        padding: 0.55rem 1.25rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        border: 1px solid transparent;
        box-shadow: 0 8px 30px var(--mini-glow);
    }

        .support-links a:first-child {
            border-color: var(--glass-border-light);
        }

            .support-links a:first-child:hover {
                border-color: var(--gray-text);
                background: var(--glass-bg);
                color: var(--light-text);
            }

        .support-links a:last-child {
            background: var(--primary-color);
            color: var(--darker-bg);
            border-color: var(--primary-color);
        }

            .support-links a:last-child:hover {
                background: var(--primary-light);
                border-color: var(--primary-light);
                box-shadow: 0 4px 20px var(--primary-glow);
                transform: translateY(-1px);
            }

#hamburger-menu {
    display: none;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s ease;
}

    #hamburger-menu:hover {
        background: var(--glass-bg);
    }

    #hamburger-menu img {
        width: 24px;
        height: 24px;
    }

#hamburger-menu-dropdown {
    display: none;
    position: fixed;
    margin: 0 auto;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

#hamburger-menu-dropdown-inner-div {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem 1rem;
}

    #hamburger-menu-dropdown-inner-div a {
        text-decoration: none;
        color: var(--gray-text);
        width: 100%;
        text-align: center;
        padding: 0.85rem;
        border-radius: 10px;
        transition: all ease-in-out 0.3s;
    }

        #hamburger-menu-dropdown-inner-div a:hover {
            color: var(--light-text);
            background: var(--glass-bg);
        }

#dropdown-menu-seperator {
    width: 60px;
    height: 2px;
    margin: 1rem auto;
    background: var(--glass-border-light);
    border-radius: 1px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: start;
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    max-width: 100vw;
    text-align: center;
    z-index: 10;
    border-radius: 2rem;
    padding: 4rem 5rem;
    justify-content: center;
    align-items: center;
    row-gap: 1.25rem;
    margin: 0 auto;
}

.hero-image {
    position: absolute;
    opacity: 0.5;
    left: 0;
    top: 0;
    height: 100%;
    width: 110%;
    z-index: 1;
    object-fit: cover;
    filter: saturate(0.7);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient( 135deg, rgba(2, 6, 23, 0.85) 0%, rgba(15, 23, 42, 0.7) 40%, rgba(15, 23, 42, 0.6) 100% );
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(6, 214, 160, 0.1);
    border: 1px solid rgba(6, 214, 160, 0.25);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

.hero-logo {
    margin-bottom: 1.25rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

    .hero-logo img {
        filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
    }

.hero h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    color: var(--gray-text);
    margin: 0 0 2.5rem 0;
    line-height: 1.9;
    max-width: 1200px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: start;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: 12px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--darker-bg);
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px var(--primary-glow);
}

    .btn-primary:hover {
        background: var(--primary-light);
        border-color: var(--primary-light);
        transform: translateY(-3px);
        box-shadow: 0 8px 30px var(--primary-glow);
    }

.btn-secondary {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--glass-border-light);
    box-shadow: 0 8px 30px var(--mini-glow);
}

    .btn-secondary:hover {
        background: var(--glass-bg);
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
    }

.btn-secondary-white {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--glass-border-light);
    padding: 0.8rem 1.75rem;
    font-size: 0.9rem;
    box-shadow: 0 8px 30px var(--mini-glow);
}

    .btn-secondary-white:hover {
        background: rgba(6, 214, 160, 0.1);
        border-color: var(--primary-color);
        color: var(--primary-color);
        transform: translateY(-2px);
    }

/* Stats Section */
.stats-section {
    padding: 3.5rem 2rem;
    background: rgba(6, 214, 160, 0.03);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    animation: fadeInUp 0.8s ease-out both;
}

    .stat-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .stat-item:nth-child(2) {
        animation-delay: 0.15s;
    }

    .stat-item:nth-child(3) {
        animation-delay: 0.2s;
    }

    .stat-item:nth-child(4) {
        animation-delay: 0.25s;
    }

    .stat-item:nth-child(5) {
        animation-delay: 0.3s;
    }

.stat-number {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--light-text) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.35rem;
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* Hubs Section */
.hubs-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

    .section-header h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 800;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, var(--light-text) 0%, var(--gray-text) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .section-header p {
        font-size: 1.1rem;
        color: var(--gray-text);
        max-width: 600px;
        margin: 0 auto;
    }

.hubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
    margin-top: 3rem;
}

.hub-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out both;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

    .hub-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .hub-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .hub-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .hub-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .hub-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 200px;
        background: radial-gradient(ellipse at top, var(--hover-glow) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
    }

    .hub-card:hover::before {
        opacity: 1;
    }

    .hub-card:hover {
        transform: translateY(-8px);
        border-color: rgba(6, 214, 160, 0.4);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(6, 214, 160, 0.1);
        background: var(--card-bg-hover);
    }

.hub-icon {
    width: 80px;
    height: 80px;
    margin: 0.5rem auto 1.5rem;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    padding: 0.1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: none;
}

.hub-card:hover .hub-icon {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.hub-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light-text);
    position: relative;
    z-index: 1;
}

.hub-card p {
    color: var(--gray-text);
    line-height: 1.75;
    margin: 0 1rem 2rem 1rem;
    position: relative;
    z-index: 1;
    text-align: left;
    font-size: 0.95rem;
}

.hub-card .btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.hub-inner-texts {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: fit-content;
}


/* Features Section */
.features-section {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

    .features-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url(/hub/wwwroot/images/backgrounds/bg-2.jpg);
        background-size: cover;
        background-position: center;
        opacity: 0.15;
        filter: saturate(0.5);
    }

    .features-section::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( 180deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.85) 50%, rgba(15, 23, 42, 0.95) 100% );
    }

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    padding: 2.5rem 2rem;
    text-align: center;
    animation: fadeInUp 0.8s ease-out both;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.35s ease;
    box-shadow: 0 8px 30px var(--mini-glow);
}

    .feature-item:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: var(--glass-border-light);
        transform: translateY(-5px);
    }

    .feature-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .feature-item:nth-child(2) {
        animation-delay: 0.2s;
    }

    .feature-item:nth-child(3) {
        animation-delay: 0.3s;
    }

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

/* Custom colors for feature icons */
.feature-icon svg[fill="#ffa400"] {
    background: rgba(255, 164, 0, 0.12);
    padding: 15px;
    border-radius: 20px;
}

.feature-icon svg[fill="#b80404"] {
    background: rgba(184, 4, 4, 0.12);
    padding: 15px;
    border-radius: 20px;
}

.feature-icon svg:not([fill]) {
    background: rgba(6, 214, 160, 0.12);
    padding: 15px;
    border-radius: 20px;
}

.feature-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--light-text);
}

.feature-item p {
    color: var(--gray-text);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
}


/* Footer */
footer {
    background: rgba(2, 6, 23, 0.9);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-logo {
    width: 160px;
}

.social-links {
    display: flex;
    gap: 0.6rem;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-text);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px var(--mini-glow);
}

    .social-icon:hover {
        background: rgba(6, 214, 160, 0.1);
        border-color: rgba(6, 214, 160, 0.3);
        transform: translateY(-3px);
        box-shadow: 0 8px 30px var(--primary-glow);
    }

.footer-column h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-column ul {
    list-style: none;
}

    .footer-column ul li {
        margin-bottom: 0.6rem;
    }

        .footer-column ul li a {
            color: var(--muted-text);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

            .footer-column ul li a:hover {
                color: var(--primary-color);
            }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--muted-text);
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

    .scroll-indicator a {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        color: var(--muted-text);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .scroll-indicator a:hover {
            color: var(--light-text);
        }

    .scroll-indicator span {
        width: 36px;
        height: 36px;
        border: 2px solid var(--glass-border-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: bounce 2s infinite;
        transition: border-color 0.3s ease;
    }

    .scroll-indicator a:hover span {
        border-color: var(--primary-color);
    }

    .scroll-indicator span svg {
        stroke: currentColor;
    }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}


/* Responsive */
@media (max-width: 1200px) {
    .hero-subtitle br {
        display: none;
    }

    .stats-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    #header {
        justify-content: space-between;
        padding: 1rem 1.25rem;
    }

    .nav-menu {
        display: none;
    }

    .support-links {
        display: none;
    }

    #hamburger-menu {
        display: flex;
    }

    .hero {
        padding: 7rem 1.5rem 4rem;
    }

    .hero-subtitle {
        text-align: center;
        font-size: 1.1rem;
    }

    .hero-content {
        padding: 2rem 1rem;
        border: none;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .hero-image {
        width: 150%;
        opacity: 0.4;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-item:last-child {
        grid-column: span 2;
    }

    .hubs-grid {
        grid-template-columns: 1fr;
    }

    .hub-card p {
        margin: 0 0 1.5rem 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 6rem;
    }

    .hero-logo img {
        height: 70px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .hub-card {
        padding: 2rem 1.5rem;
    }

    .scroll-indicator {
        bottom: 1.5rem;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
