/* #region Hero Section */

    .hero-container {
        min-height: 60vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: var(--spacing-xl) var(--spacing-lg);
        position: relative;
        z-index: 1;
    }

    .hero-content {
        max-width: 800px;
        width: 100%;
        text-align: center;
        animation: fadeInUp 1s ease-out;
    }

    .main-heading {
        font-size: var(--fs-4xl);
        font-weight: 700;
        margin-bottom: var(--spacing-lg);
        color: var(--color-gray-900);
    }

    .main-description {
        font-size: var(--fs-lg);
        color: var(--color-gray-700);
        line-height: 1.6;
        margin-bottom: 0;
    }

    .animated-background {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 0;
        overflow: hidden;
    }

    .floating-shape {
        position: absolute;
        border-radius: var(--radius-full);
        background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
        opacity: 0.1;
        animation: float 6s ease-in-out infinite;
        will-change: transform;
    }

    .shape-1 {
        width: 80px;
        height: 80px;
        top: 10%;
        left: 10%;
        animation-delay: 0s;
    }

    .shape-2 {
        width: 60px;
        height: 60px;
        top: 20%;
        right: 15%;
        animation-delay: 1s;
    }

    .shape-3 {
        width: 100px;
        height: 100px;
        bottom: 20%;
        left: 20%;
        animation-delay: 2s;
    }

    .shape-4 {
        width: 40px;
        height: 40px;
        bottom: 30%;
        right: 25%;
        animation-delay: 3s;
    }

    .shape-5 {
        width: 70px;
        height: 70px;
        top: 50%;
        left: 5%;
        animation-delay: 4s;
    }

    @keyframes float {
        0%, 100% { 
            transform: translateY(0px) rotate(0deg); 
        }
        50% { 
            transform: translateY(-20px) rotate(180deg); 
        }
    }
/* #endregion */

/* #region Gates */

.gateways-grid {
    max-width: 1600px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-items: center;
    align-items: center;
    gap: var(--spacing-lg);
}

.gateway-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: nowrap;
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-4xl);
    z-index: 1;
    width: 300px;
    height: 400px;
    transition: var(--transition-fast);
}

a:hover {
    text-decoration: none;
}

a:active, a:focus {
    outline: none;
}

.gateway-card:hover {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.gateway-card:hover .gateway-logo {
    background: var(--color-white);
    box-shadow: none;
}

.gateway-logo {
    height: 200px;
    aspect-ratio: 1;
    margin: auto;
    border-radius: 50%;
    object-fit: contain;
    background: var(--color-white);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-xl);
    outline: 2px solid var(--color-gray-200);
    margin-bottom: var(--spacing-xl);
    transition: var(--transition-fast);
}

.gateway-info {
    grid-area: content;
    padding: 20px;
    text-align: center;
}

.gateway-name {
    grid-area: title;
    font-size: var(--fs-2xl);
}


@media (max-width: 300px) {
.gateways-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}
