/* ===== HERO SECTION ===== */
.hero {
    padding: 80px 20px;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* GRID */
.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* TEXT */
.hero-text h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 25px;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 35px;
    max-width: 540px;
}

/* BUTTON */
.hero-btn-master-data-management {
    display: flex;
    gap: 16px;
}

.btn-primary-master-data-management {
    background-color: #2563eb;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

.btn-secondary-master-data-management {
    border: 2px solid #2563eb;
    color: #2563eb;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

/* IMAGE */
.hero-image {
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 16px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
        height: 320px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {

    .hero {
        padding: 50px 15px;
    }

    .hero-text h1 {
        font-size: 26px;
    }

    .hero-image {
        height: 220px;
    }
}