.home-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 16px 24px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-navbar .brand {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    text-decoration: none;
    letter-spacing: 0.3px;
}

.home-navbar .brand:hover {
    color: #0d6efd;
}

.home-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #f0f4ff 0%, #fafafa 100%);
    padding: 80px 20px 40px;
}

.home-hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.2;
}

.home-hero h1 span {
    color: #0d6efd;
}

.home-hero p {
    font-size: 18px;
    color: #6c757d;
    max-width: 480px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.home-features {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 48px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 24px 28px;
    width: 200px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-card .icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.feature-card h5 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
}