*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Segoe UI", Arial, Helvetica, sans-serif;
}

body{
    background:#eef4ff;
    color:#0f172a;
    padding:28px 15px;
}

.page{
    display:flex;
    justify-content:center;
}

.form-card{
    width:100%;
    max-width:900px;
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(15,23,42,.10);
}

/* HEADER LOGO */
.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding:22px 42px;
    background:#f8fbff;
    border-bottom:1px solid #e2e8f0;
}

.logos-left,
.logos-right{
    display:flex;
    align-items:center;
}

.logos-left img{
    max-height:62px;
    width:auto;
}

.logos-right{
    gap:18px;
}

.logos-right img{
    max-height:54px;
    width:auto;
}

/* TITLE */
.hero-text{
    padding:34px 42px 18px;
}

.badge{
    display:block;
    color:#334155;
    font-size:15px;
    margin-bottom:8px;
}

h1{
    font-size:34px;
    line-height:1.2;
    margin-bottom:8px;
    color:#0f172a;
}

p{
    color:#64748b;
    font-size:16px;
    margin-bottom:0;
}

/* STEPS */
.steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
    padding:24px 42px;
    background:#f8fafc;
    border-bottom:1px solid #e5e7eb;
}

.step{
    padding:14px 12px;
    border-radius:14px;
    background:#fff;
    border:1px solid #dbe3ef;
    color:#475569;
    font-weight:700;
    font-size:14px;
    text-align:center;
}

.step.active{
    background:#eff6ff;
    color:#1d4ed8;
    border-color:#60a5fa;
    box-shadow:0 8px 18px rgba(37,99,235,.12);
}

.step span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:26px;
    height:26px;
    margin-right:6px;
    border-radius:50%;
    background:#e2e8f0;
    color:#334155;
}

.step.active span{
    background:#2563eb;
    color:#fff;
}

/* FORM */
form{
    padding:34px 42px 42px;
}

.form-step{
    display:none;
    animation:fade .25s ease;
}

.form-step.active{
    display:block;
}

@keyframes fade{
    from{
        opacity:0;
        transform:translateY(8px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.section-title{
    margin-bottom:24px;
}

.section-title h2{
    font-size:26px;
    color:#0f172a;
    margin-bottom:8px;
}

.section-title p{
    color:#64748b;
}

.mt{
    margin-top:34px;
}

.grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.field{
    display:flex;
    flex-direction:column;
}

.field.full{
    grid-column:1/3;
}

label{
    margin-bottom:8px;
    font-weight:700;
    color:#1e293b;
    font-size:14px;
}

input,
select,
textarea{
    width:100%;
    padding:14px 15px;
    border:1px solid #cbd5e1;
    border-radius:14px;
    outline:none;
    font-size:15px;
    transition:.2s;
    background:#fff;
    color:#0f172a;
}

input:focus,
select:focus,
textarea:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(37,99,235,.12);
}

input[readonly]{
    background:#f1f5f9;
    color:#64748b;
}

textarea{
    min-height:105px;
    resize:vertical;
}

.hidden{
    display:none !important;
}

/* BOX */
.inner-box,
#headOfficeFields,
#outletFields{
    background:#f8fafc;
    border:1px solid #e2e8f0;
    padding:22px;
    border-radius:18px;
    margin-top:20px;
    margin-bottom:28px;
}

/* EXPERIENCE */
#pengalamanFields{
    width:100%;
    margin-top:24px;
}

.experience-list,
#expBody{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-bottom:16px;
}

.exp-row,
.exp-card{
    width:100%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
    align-items:start;
    background:#f8fafc;
    border:1px solid #e2e8f0;
    border-radius:18px;
    padding:20px;
}

.exp-row textarea,
.exp-card textarea{
    min-height:100px;
    resize:vertical;
    grid-column:1/3;
}

.exp-row input,
.exp-row textarea,
.exp-card input,
.exp-card textarea{
    width:100%;
    padding:13px 14px;
    border:1px solid #d1d5db;
    border-radius:13px;
    font-size:14px;
    background:#fff;
}

.remove-exp,
.btn-remove{
    background:#fee2e2;
    color:#b91c1c;
    border:none;
    padding:13px 16px;
    border-radius:12px;
    cursor:pointer;
    font-size:14px;
    font-weight:800;
    height:48px;
}

.remove-exp:hover,
.btn-remove:hover{
    background:#fecaca;
}

#addExperience{
    margin-top:8px;
}

/* BUTTON */
.actions{
    margin-top:36px;
    padding-top:24px;
    border-top:1px solid #e5e7eb;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:14px;
}

.btn{
    background:#2563eb;
    color:#fff;
    border:none;
    padding:14px 28px;
    border-radius:14px;
    cursor:pointer;
    font-size:15px;
    font-weight:800;
    transition:.2s;
}

.btn:hover{
    background:#1d4ed8;
    transform:translateY(-1px);
}

.btn.secondary{
    background:#e2e8f0;
    color:#334155;
}

.btn.secondary:hover{
    background:#cbd5e1;
}

button[type="submit"].btn,
.btn.submit{
    background:#16a34a;
}

button[type="submit"].btn:hover,
.btn.submit:hover{
    background:#15803d;
}

.hint{
    margin-top:16px;
    padding:14px 16px;
    color:#9a3412;
    background:#fff7ed;
    border:1px solid #fed7aa;
    border-radius:14px;
    font-size:14px;
}

/* RESPONSIVE */
@media(max-width:768px){
    body{
        padding:16px 10px;
    }

    .form-card{
        border-radius:18px;
    }

    .hero{
        flex-direction:column;
        padding:22px;
        gap:14px;
    }

    .logos-left img{
        max-height:54px;
    }

    .logos-right{
        gap:14px;
        justify-content:center;
    }

    .logos-right img{
        max-height:48px;
    }

    .hero-text,
    .steps,
    form{
        padding-left:22px;
        padding-right:22px;
    }

    .hero-text{
        padding-top:28px;
    }

    h1{
        font-size:28px;
    }

    .steps{
        grid-template-columns:1fr;
        gap:12px;
    }

    .step{
        text-align:left;
    }

    .grid,
    .exp-row,
    .exp-card{
        grid-template-columns:1fr;
    }

    .field.full,
    .exp-row textarea,
    .exp-card textarea{
        grid-column:auto;
    }

    .actions{
        flex-direction:column;
    }

    .actions span,
    .btn,
    .remove-exp,
    .btn-remove,
    #addExperience{
        width:100%;
    }
}