.fm-hero {
    min-height: 50vh;
    padding: 4rem 0;
}

.fm-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #2d2d2d;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.fm-subtitle {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.4rem;
    font-weight: 400;
}

.fm-note {
    font-size: 0.85rem;
    color: #7367f0;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.fm-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.fm-bullets li {
    color: #7367f0;
    font-size: 1rem;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.fm-bullets li::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7367f0;
    flex-shrink: 0;
}

.fm-btn {
    background: #7367f0;
    color: #ffffff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}

.fm-btn:hover {
    background: #5e50ee;
    color: #ffffff;
}

.fm-screenshot-card {
    background: transparent;
    border: none;
    border-radius: 16px;
    padding: 0;
    box-shadow: none;
}

.fm-screenshot-card img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

@media (max-width: 991px) {
    .fm-hero {
        text-align: center;
        padding: 3rem 0 2rem;
    }
    .fm-bullets li {
        justify-content: center;
    }
    .fm-screenshot-wrap {
        margin-top: 2rem;
    }
}
