/* ===============================
   GLOBAL RESET (WAJIB)
=============================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    font-family: 'Metropolis', sans-serif;
    background: #f2f2f2;
    color: #555;
}

/* ===============================
   FONT METROPOLIS
=============================== */
@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/metropolis/Metropolis-Regular.woff2') format('woff2');
    font-weight: 400;
}
@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/metropolis/Metropolis-Medium.woff2') format('woff2');
    font-weight: 500;
}
@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/metropolis/Metropolis-Bold.woff2') format('woff2');
    font-weight: 700;
}

/* ===============================
   HERO
=============================== */
.hero {
    background: #f7f7f7;
    text-align: center;
    padding: 0 16px 24px;
}

.hero .logo {
    display: block;
    width: 100%;
    max-width: 220px;
    margin: 0 auto 12px;
}

.hero h1 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #666;
}

.hero p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}
.logo-strip {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #f7f7f7; /* samain warna background */
}

.logo-strip img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
}

/* ===============================
   SECTION
=============================== */
.section {
    background: #fff;
    padding: 16px;
}

.section.gray {
    background: #eaeaea;
}

.section h2 {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #666;
    margin: 0 0 12px;
}

.section p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* ===============================
   FEATURE LIST
=============================== */
.feature {
    display: flex;
    gap: 12px;
    background: #efefef;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.feature .check {
    color: #3aa655;
    font-size: 20px;
    line-height: 1;
}

.feature strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.feature p {
    font-size: 13px;
    margin: 0;
}

/* ===============================
   LIST
=============================== */
ul {
    padding-left: 18px;
    margin: 8px 0 16px;
}

li {
    font-size: 14px;
    margin-bottom: 6px;
}

/* ===============================
   FORM
=============================== */
.form {
    background: #efefef;
    padding: 16px;
    border-radius: 14px;
    width: 100%;
    max-width: 100%;
}

.form input {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 10px;
    border: none;
    font-size: 14px;
}

.form input:focus {
    outline: none;
}

.form button {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    background: #3aa655;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
}

.form button:active {
    transform: scale(0.98);
}

/* ===============================
   HIGHLIGHT TEXT
=============================== */
.highlight {
    text-align: center;
    font-size: 14px;
    margin-bottom: 12px;
}

/* ===============================
   MOBILE SMALL SCREEN
=============================== */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 18px;
    }

    .section h2 {
        font-size: 16px;
    }

    .form {
        padding: 12px;
        border-radius: 12px;
    }

    .form input,
    .form button {
        font-size: 13px;
    }
}
