.home-container {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 2rem 3rem 3rem 3rem;
    box-sizing: border-box;
    color: #ffffff;
    background: linear-gradient(180deg, #0b0e11 0%, #0f1316 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 3.5rem;
}

.hero-section {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 0;
    padding: 2.25rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 500;
    margin: 0 0 1rem 0;
    letter-spacing: -0.01em;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.home-btn {
    padding: 0.9rem 1.6rem;
    border-radius: 10px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
    text-align: center;
    background: linear-gradient(90deg, rgba(52,73,102,1) 0%, rgba(60,86,120,1) 100%);
    border: none;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.45);
}

.home-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
}

.feature-item {
    padding: 1.25rem;
    border-radius: 10px;
    background: rgba(255,255,255,0.015);
    border: 1px solid rgba(255,255,255,0.03);
    text-align: center;
    min-height: 120px;
}

.feature-item h3 {
    margin: 0 0 0.5rem 0;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 600;
}

.feature-item p {
    margin: 0;
    color: #b9bec4;
}

@media (max-width: 1100px), (hover: none) and (pointer: coarse) {
    .home-container {
        width: 100%;
        height: auto;
        min-height: 100vh;
        padding: 1.25rem 1rem 2rem;
        gap: 1.5rem;
        overflow-x: hidden;
    }

    .hero-section {
        padding: 1.5rem 1rem;
    }

    .hero-title {
        font-size: clamp(2rem, 11vw, 3rem);
        line-height: 1.08;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
    }

    .home-btn {
        width: 100%;
        padding: 0.85rem 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-item {
        min-height: 0;
    }
}
