:root {
    --navy: #0b2a6b;
    --blue: #1d4ed8;
    --blue-light: #e8f0fe;
    --green: #16a34a;
    --orange: #f59e0b;
    --orange-deep: #ea580c;
    --purple: #7c3aed;
    --bg-soft: #f4f7fc;
    --text-dark: #1e293b;
    --text-gray: #64748b;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: "Poppins", sans-serif;
    background: #eef2f9;
    color: var(--text-dark);
}

.page {
    max-width: 1180px;
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(20, 40, 90, 0.08);
}

/* ===== HEADER ===== */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    border-bottom: 1px solid #eef0f4;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.logo-circle svg {
    width: 34px;
    height: 34px;
}
.logo-text {
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    font-size: 15px;
    letter-spacing: 0.3px;
}
.logo-text span {
    display: block;
    font-size: 15px;
}
.header-right {
    display: flex;
    gap: 12px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform 0.15s ease;
}
.btn:hover {
    transform: translateY(-1px);
}
.btn-outline {
    background: #fff;
    color: var(--blue);
    border: 1.5px solid var(--blue);
}
.btn-primary {
    background: var(--navy);
    color: #fff;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #dbe7fb 0%, #eef3fc 55%, #f7f9fd 100%);
    padding: 44px 40px 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    overflow: hidden;
}
.hero-illustration {
    position: relative;
    width: 230px;
    flex-shrink: 0;
}
.flag-pole {
    position: absolute;
    left: 18px;
    top: -6px;
    width: 3px;
    height: 60px;
    background: #94a3b8;
}
.flag {
    position: absolute;
    left: 21px;
    top: -4px;
    width: 26px;
    height: 16px;
}
.building-wrap {
    position: relative;
}

.hero-center {
    flex: 1;
    text-align: left;
    z-index: 2;
}
.hero-center h1 {
    font-size: 54px;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: 1px;
    line-height: 1;
}
.hero-center h2 {
    font-size: 17px;
    font-weight: 600;
    color: #33415c;
    margin-top: 8px;
    margin-bottom: 22px;
}
.badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 24px;
    padding: 8px 14px;
    box-shadow: 0 3px 10px rgba(30, 60, 120, 0.08);
    font-size: 11.5px;
}

.badge .icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
}
.badge b {
    display: block;
    font-size: 12px;
    color: #1e293b;
}
.badge span {
    color: #94a3b8;
    font-size: 10.5px;
}
.icon-green {
    background: #dcfce7;
    color: #16a34a;
}
.icon-blue {
    background: #dbeafe;
    color: #2563eb;
}
.icon-purple {
    background: #ede9fe;
    color: #7c3aed;
}
.icon-orange {
    background: #ffedd5;
    color: #ea580c;
}

.hero-phone {
    width: 200px;
    flex-shrink: 0;
    z-index: 2;
}

.hero-map {
    position: absolute;
    right: 0;
    top: 30px;
    width: 130px;
    opacity: 0.9;
}

/* ===== FEATURE CARDS GRID ===== */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 30px 40px;
    background: #fff;
}
.card {
    border: 1px solid #eef1f6;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(20, 40, 90, 0.04);
}
.card-top {
    display: flex;
    gap: 14px;
    margin-bottom: 10px;
}

.card-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.card-title-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.step-num {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
}
.card-title {
    font-weight: 800;
    font-size: 14.5px;
    color: #1e293b;
    display: flex;
    align-items: center;
}
.card p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 14px;
}
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 7px;
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
}

.bg-blue-icon {
    background: #dbeafe;
}
.bg-green-icon {
    background: #dcfce7;
}
.bg-orange-icon {
    background: #ffedd5;
}
.bg-purple-icon {
    background: #ede9fe;
}


.num-blue {
    background: #2563eb;
}
.num-info {
    background: #17b8d3;
}

.num-green {
    background: #16a34a;
}
.num-orange {
    background: #ea580c;
}
.num-purple {
    background: #7c3aed;
}
.num-dilan {
    background: #e94935;
}

.link-blue {
    background: #2563eb;
}
.link-green {
    background: #16a34a;
}
.link-orange {
    background: #ea580c;
}
.link-purple {
    background: #7c3aed;
}


/* ===== STATS ===== */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #eef1f6;
    padding: 22px 40px;
}
.stat {
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: 1px solid #eef1f6;
    padding: 0 16px;
}
.stats .stat:last-child {
    border-right: none;
}
.stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.stat-label {
    font-size: 10.5px;
    color: var(--text-gray);
    font-weight: 600;
    letter-spacing: 0.2px;
}
.stat-value {
    font-size: 17px;
    font-weight: 800;
}
.stat-sub {
    font-size: 10.5px;
    color: var(--text-gray);
}

/* ===== FOOTER ===== */
footer {
    border-top: 1px solid #eef1f6;
    padding: 18px 40px;
}
.footer-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
}
.footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}
.footer-item .ico {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    flex-shrink: 0;
}
.footer-item b {
    display: block;
    font-size: 12.5px;
    color: #1e293b;
}
.footer-item span {
    color: var(--text-gray);
    font-size: 11px;
}
.footer-copy {
    text-align: center;
    color: #94a3b8;
    font-size: 11px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #f3f4f6;
}

/* .btn-info-radius-15 {
    border-radius: 15px !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    background-color: #17b8d3;
    color: white;
}

.btn-info-radius-15:hover {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    transform: translateY(-1px);
    font-weight: 600;
    color: white;
    background-color: #078da5;
} */

/* .btn-info-radius-15:active {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    transform: translateY(0);
    background-color: #17b8d3;
} */

.btn-radius-15 {
    border-radius: 15px !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.btn-radius-15:hover {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    transform: translateY(-1px);
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-radius-15:active {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    transform: translateY(0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;    /* supaya gambar tetap proporsional, tidak gepeng */
  display: block;
}

/* ===================================================
     RESPONSIVE — TABLET (≤900px)
  =================================================== */
@media (max-width: 900px) {
    .page {
        border-radius: 0;
    }
    header {
        padding: 14px 20px;
    }
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px 24px;
        gap: 18px;
    }
    .hero-center {
        text-align: center;
        order: 1;
    }
    .hero-illustration {
        order: 2;
        width: 180px;
    }
    .hero-phone {
        order: 3;
        width: 150px;
    }
    .badges {
        justify-content: center;
    }
    .features {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px 20px;
    }
    .stats {
        grid-template-columns: 1fr 1fr;
        padding: 18px 20px;
    }
    .stat {
        border-right: none;
        border-bottom: 1px solid #eef1f6;
        padding: 12px 8px;
    }
    .stat:nth-child(2n) {
        border-right: none;
    }
    .footer-row {
        justify-content: center;
        text-align: left;
    }
    .hero-map {
        display: none;
    }
}

/* ===================================================
     RESPONSIVE — MOBILE (≤600px)
  =================================================== */
@media (max-width: 600px) {
    body {
        background: #fff;
    }
    .page {
        box-shadow: none;
    }

    /* Header */
    header {
        padding: 12px 16px;
        flex-wrap: wrap;
        gap: 10px;
    }
    .logo-area {
        gap: 8px;
    }
    .logo-circle {
        width: 38px;
        height: 38px;
    }
    .logo-circle svg {
        width: 28px;
        height: 28px;
    }
    .logo-text span {
        font-size: 12px;
    }
    .logo-text span:first-child {
        font-size: 8px;
    }
    .header-right {
        gap: 8px;
        width: 100%;
        justify-content: stretch;
    }
    .header-right .btn {
        flex: 1;
        justify-content: center;
        padding: 10px 8px;
        font-size: 13px;
    }

    /* Hero */
    .hero {
        padding: 24px 18px 20px;
        gap: 14px;
    }
    .hero-center h1 {
        font-size: clamp(32px, 9vw, 42px);
        letter-spacing: 0.5px;
    }
    .hero-center h2 {
        font-size: 14px;
        margin-top: 6px;
        margin-bottom: 16px;
        padding: 0 4px;
    }
    .hero-illustration {
        width: 140px;
    }
    .hero-phone {
        width: 110px;
    }
    .badges {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        width: 100%;
    }
    .badge {
        padding: 8px 10px;
        border-radius: 12px;
        text-align: left;
    }
    .badge .icon {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }
    .badge b {
        font-size: 10.5px;
    }
    .badge span {
        font-size: 9px;
    }

    /* Feature cards */
    .features {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px 16px;
    }

    .card {
        padding: 16px;
        border-radius: 15px;
    }

    .card-icon {
        width: 46px;
        height: 46px;
        font-size: 20px;
        border-radius: 50%;
    }
    .card-title {
        font-size: 13.5px;
    }
    .card p {
        font-size: 12.5px;
        margin-bottom: 12px;
    }
    .card-link {
        font-size: 12px;
        padding: 8px 12px;
    }

    /* Stats */
    .stats {
        grid-template-columns: 1fr 1fr;
        gap: 14px 10px;
        padding: 18px 16px;
    }
    .stat {
        flex-direction: column;
        align-items: flex-start;
        border-right: none !important;
        border-bottom: 1px solid #eef1f6;
        padding: 0 0 12px 0;
        gap: 8px;
    }
    .stat:nth-last-child(-n + 2) {
        border-bottom: none;
    }
    .stat-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    .stat-label {
        font-size: 9.5px;
    }
    .stat-value {
        font-size: 15px;
    }
    .stat-sub {
        font-size: 9.5px;
    }

    /* Footer */
    footer {
        padding: 18px 16px;
    }
    .footer-row {
        flex-direction: column;
        gap: 14px;
        align-items: stretch;
    }
    .footer-item {
        font-size: 12px;
    }
    .footer-copy {
        font-size: 10px;
        margin-top: 12px;
        padding-top: 12px;
    }
}

/* Extra small phones */
@media (max-width: 360px) {
    .hero-center h1 {
        font-size: 28px;
    }
    .badges {
        grid-template-columns: 1fr;
    }
}
