/* ============================= */
/* HERO SECTION (Refined)        */
/* ============================= */

.hero {
    padding: 28px 15px; /* reduced from 60px */
    text-align: center;
    background: linear-gradient(135deg, #0a0f24, #1a2340);
    color: white;
}

.hero-title {
    font-size: 28px; /* reduced from 32px */
    margin-bottom: 8px;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

/* ============================= */
/* TILE GRID                     */
/* ============================= */

.tile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    padding: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.tile {
    background: white;
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.tile-icon {
    width: 80px;
    height: 80px;
    background: #95904f;
    border-radius: 12px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tile-icon img {
    width: 85%;
    height: 85%;
    opacity: 0;
    transform: translateY(6px);
    animation: iconFade 0.6s ease forwards;
}

@keyframes iconFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tile-title {
    font-size: 20px;
    margin-bottom: 6px;
    font-weight: 600;
}

.tile-desc {
    font-size: 15px;
    opacity: 0.8;
}

