
/* HERO */
.hms-hero {
    padding: 80px 0;
}

.hms-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hms-hero h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hms-highlight-text {
    color: #2563eb;
}

.hms-hero p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

/* BULLETS */
.hms-bullets {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.hms-bullets li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* IMAGE */
.hms-dashboard-preview {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.hms-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

/* FEATURES */
.hms-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.hms-feature-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.hms-icon {
    font-size: 22px;
}

/* HOW IT WORKS */
.hms-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.hms-how-step {
    background: #f9fafb;
    padding: 25px;
    border-radius: 10px;
}

.hms-step-number {
    font-size: 20px;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 10px;
}

/* PRICING */
.hms-pricing {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.hms-price-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.hms-price {
    font-size: 28px;
    font-weight: bold;
    margin: 10px 0 20px;
}

.hms-pro {
    border: 2px solid #2563eb;
}

/* HIGHLIGHTS */
.hms-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.hms-highlight {
    padding: 20px;
}

/* CTA */
.hms-cta {
    text-align: center;
    padding: 60px 20px;
    background: #2563eb;
    color: #fff;
    border-radius: 12px;
}

.hms-cta h2 {
    margin-bottom: 20px;
}

.hms-cta .hms-btn {
    background: #fff;
    color: #2563eb;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .hms-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hms-features-grid,
    .hms-how-grid,
    .hms-highlight-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hms-pricing {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .hms-features-grid,
    .hms-how-grid,
    .hms-highlight-grid {
        grid-template-columns: 1fr;
    }

    .hms-hero h1 {
        font-size: 28px;
    }
}