@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

/* =========================================================
   ROOT
   ========================================================= */

:root {
    --blue: #1769ff;
    --blue-dark: #0e4fd8;
    --navy: #11294f;
    --text: #14213d;
    --muted: #6f809d;
    --line: #e3eaf3;
    --surface: #ffffff;
    --soft: #f5f8fc;
    --green: #07945f;
    --yellow: #ffc928;
    --danger: #d83a3a;

    --shadow:
        0 24px 70px rgba(23, 52, 94, .10);

    --radius: 24px;
}


/* =========================================================
   GLOBAL
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
}

body {
    margin: 0;
    min-width: 320px;
    width: 100%;
    max-width: 100%;
    color: var(--text);
    background: #fff;
    font-family: Inter, Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.container {
    width: min(1160px, calc(100% - 40px));
    max-width: 100%;
    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(224, 232, 243, .85);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 76px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 28px;
}


/* LOGO
   Hanya gambar logo.
   Tidak ada tulisan di samping logo.
*/

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 0;
    margin: 0;
}

.brand img {
    display: block;
    width: 150px;
    height: 62px;
    max-width: 150px;
    object-fit: contain;
    object-position: left center;
}


/* Sembunyikan teks brand jika masih ada di HTML */
.brand span,
.brand strong,
.brand small {
    display: none !important;
}


/* NAVIGATION */

.desktop-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 26px;
}

.desktop-nav a {
    color: #60718e;
    font-size: 13px;
    font-weight: 600;
    transition:
        color .2s ease,
        transform .2s ease;
}

.desktop-nav a:hover {
    color: var(--blue);
    transform: translateY(-1px);
}


/* HEADER BUTTON */

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;
    padding: 0 19px;

    border: 0;
    border-radius: 12px;

    color: #fff;
    background: var(--blue);

    font-size: 13px;
    font-weight: 800;

    box-shadow:
        0 10px 25px rgba(23, 105, 255, .20);

    transition:
        transform .2s ease,
        background .2s ease;
}

.header-cta:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
}


/* =========================================================
   COMMON BUTTON
   ========================================================= */

.primary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;
    padding: 0 22px;

    border-radius: 12px;

    color: #fff;
    background: var(--blue);

    font-size: 13px;
    font-weight: 800;

    box-shadow:
        0 10px 25px rgba(23, 105, 255, .20);

    transition:
        transform .2s ease,
        background .2s ease;
}

.primary-link:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
}

.primary-link span {
    margin-left: 9px;
    font-size: 17px;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    width: 100%;
    overflow: hidden;

    padding: 74px 0 56px;

    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(23, 105, 255, .11),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #f5f9ff 0%,
            #fff 72%
        );
}


/* Decorative circles */

.hero::before,
.hero::after {
    content: "";
    position: absolute;

    border: 1px solid rgba(23, 105, 255, .08);
    border-radius: 50%;

    pointer-events: none;
}

.hero::before {
    width: 420px;
    height: 420px;

    right: -190px;
    top: 40px;
}

.hero::after {
    width: 300px;
    height: 300px;

    left: -190px;
    bottom: 80px;
}


/* HERO GRID */

.hero-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);

    align-items: center;

    gap: 70px;

    width: 100%;
    min-width: 0;
}


/* HERO COPY */

.hero-copy {
    min-width: 0;
    max-width: 100%;
}


/* EYEBROW */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    min-height: 31px;
    max-width: 100%;

    padding: 0 12px;

    border: 1px solid #dce7f5;
    border-radius: 999px;

    background: rgba(255, 255, 255, .8);

    color: #466487;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;

    white-space: nowrap;
}

.eyebrow.plain {
    padding: 0;
    border: 0;
    background: transparent;
    color: #7086a6;
    letter-spacing: .12em;
}


/* STATUS DOT */

.pulse-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;

    border-radius: 50%;

    background: #10ad71;

    box-shadow:
        0 0 0 5px rgba(16, 173, 113, .10);
}


/* HERO TITLE */

.hero h1 {
    width: 100%;
    max-width: 650px;

    margin: 22px 0 18px;

    color: #10264b;

    font-size: clamp(43px, 5vw, 70px);
    line-height: .99;

    letter-spacing: -.065em;

    overflow-wrap: normal;
}

.hero h1 span {
    display: block;
    width: 100%;

    color: var(--blue);
}


/* HERO DESCRIPTION */

.hero-text {
    width: 100%;
    max-width: 600px;

    margin: 0;

    color: #667b9b;

    font-size: 17px;
    line-height: 1.75;

    overflow-wrap: break-word;
}


/* HERO ACTIONS */

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 28px;
}

.secondary-link {
    display: inline-flex;
    align-items: center;

    min-height: 50px;
    padding: 0 18px;

    border: 1px solid #dbe4f0;
    border-radius: 12px;

    color: #4d6383;
    background: rgba(255, 255, 255, .7);

    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   TRUST ROW
   ========================================================= */

.trust-row {
    display: flex;
    align-items: flex-start;

    gap: 0;

    margin-top: 38px;

    width: 100%;
    max-width: 100%;
}

.trust-row div {
    min-width: 125px;

    padding-right: 22px;
    margin-right: 22px;

    border-right: 1px solid #dce5f1;
}

.trust-row div:last-child {
    border-right: 0;
}

.trust-row strong,
.trust-row span {
    display: block;
}

.trust-row strong {
    font-size: 15px;
}

.trust-row span {
    margin-top: 4px;

    color: #7d8da6;

    font-size: 11px;
}


/* =========================================================
   BILLING PANEL
   ========================================================= */

.billing-panel {
    position: relative;

    width: 100%;
    max-width: 100%;
    min-width: 0;

    padding: 31px;

    border: 1px solid #e0e8f2;
    border-radius: 28px;

    background: rgba(255, 255, 255, .94);

    box-shadow: var(--shadow);
}

.billing-panel::after {
    content: "";

    position: absolute;
    inset: 9px;

    border: 1px solid rgba(23, 105, 255, .05);
    border-radius: 22px;

    pointer-events: none;
}


/* PANEL CONTENT */

.panel-top,
.panel-description,
.billing-panel form,
.panel-note {
    position: relative;
    z-index: 1;
}

.panel-top {
    display: flex;
    align-items: center;

    gap: 15px;

    min-width: 0;
}

.panel-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    color: var(--blue);
    background: #edf4ff;

    font-size: 20px;
    font-weight: 900;
}

.mini-label {
    display: block;

    color: #7487a4;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .14em;
}

.panel-top h2 {
    margin: 4px 0 0;

    font-size: 28px;
    letter-spacing: -.04em;
}

.panel-description {
    margin: 21px 0 24px;

    color: #73849f;

    font-size: 13px;
    line-height: 1.7;
}


/* INPUT LABEL */

.billing-panel label {
    display: block;

    margin-bottom: 9px;

    font-size: 12px;
    font-weight: 800;
}


/* INPUT */

.input-box {
    display: flex;
    align-items: center;

    width: 100%;
    min-width: 0;
    min-height: 56px;

    padding: 0 16px;

    border: 1px solid #dbe4ef;
    border-radius: 14px;

    background: #fbfcfe;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.input-box:focus-within {
    border-color: #79a9ff;

    box-shadow:
        0 0 0 4px rgba(23, 105, 255, .08);
}

.input-box span {
    flex: 0 0 auto;

    margin-right: 14px;

    color: #a0aec2;

    font-size: 11px;
    font-weight: 800;
}

.input-box input {
    width: 100%;
    min-width: 0;
    max-width: 100%;

    border: 0;
    outline: 0;

    color: #172b4d;
    background: transparent;

    font-size: 15px;
    font-weight: 600;
}

.input-box input::placeholder {
    color: #a8b5c7;
    font-weight: 500;
}


/* CHECK BUTTON */

.check-button {
    width: 100%;
    max-width: 100%;

    min-height: 54px;

    margin-top: 13px;

    border: 0;
    border-radius: 14px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #2777ff,
            #115be8
        );

    box-shadow:
        0 14px 28px rgba(23, 105, 255, .22);

    cursor: pointer;

    font-size: 12px;
    font-weight: 900;
    letter-spacing: .02em;

    transition:
        transform .2s ease,
        opacity .2s ease;
}

.check-button:hover:not(:disabled) {
    transform: translateY(-1px);
}

.check-button:disabled {
    cursor: wait;
    opacity: .7;
}


/* LOADING */

.button-loading {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;
}

.spinner {
    width: 14px;
    height: 14px;

    border: 2px solid rgba(255, 255, 255, .4);
    border-top-color: #fff;

    border-radius: 50%;

    animation: spin .8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* FORM MESSAGE */

.form-message {
    margin-top: 12px;

    padding: 11px 13px;

    border-radius: 11px;

    font-size: 12px;
    line-height: 1.5;
}

.form-message.error {
    color: #b52e38;

    border: 1px solid #ffd4d8;

    background: #fff5f6;
}

.form-message.success {
    color: #087b50;

    border: 1px solid #ccefe0;

    background: #f1fcf7;
}


/* PANEL NOTE */

.panel-note {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-top: 18px;

    color: #8291a8;

    font-size: 10px;
}

.panel-note span {
    color: var(--green);
    font-weight: 900;
}


/* =========================================================
   BANNER
   ========================================================= */

.hero-banner-wrap {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 100%;

    margin-top: 60px;
}

.hero-banner {
    position: relative;

    width: 100%;
    max-width: 100%;

    height: 245px;

    overflow: hidden;

    border-radius: 24px;

    background: #eaf0f7;

    box-shadow:
        0 20px 45px rgba(27, 53, 88, .08);
}

.hero-slide {
    position: absolute;
    inset: 0;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .45s ease,
        visibility .45s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(11, 29, 57, .30),
            transparent 55%
        );

    pointer-events: none;
}

.hero-slide img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* SLIDER */

.slider-btn {
    position: absolute;
    top: 50%;
    z-index: 3;

    width: 40px;
    height: 40px;

    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;

    color: #fff;
    background: rgba(9, 27, 55, .36);

    backdrop-filter: blur(8px);

    cursor: pointer;

    transform: translateY(-50%);

    font-size: 25px;
    line-height: 1;
}

.slider-btn:hover {
    background: rgba(9, 27, 55, .58);
}

.slider-btn.prev {
    left: 18px;
}

.slider-btn.next {
    right: 18px;
}


/* SLIDER DOTS */

.slider-dots {
    position: absolute;
    z-index: 4;

    left: 50%;
    bottom: 16px;

    display: flex;

    gap: 7px;

    transform: translateX(-50%);
}

.slider-dots button {
    width: 7px;
    height: 7px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, .6);

    cursor: pointer;
}

.slider-dots button.active {
    width: 22px;

    border-radius: 999px;

    background: #fff;
}


/* =========================================================
   BILLING RESULT
   ========================================================= */

.billing-section {
    width: 100%;
    max-width: 100%;

    padding-top: 82px;
    padding-bottom: 84px;

    scroll-margin-top: 85px;

    overflow-x: hidden;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 22px;
}

.section-heading h2 {
    margin: 7px 0 0;

    color: #12284b;

    font-size: 35px;
    letter-spacing: -.05em;
}

.section-heading.center {
    align-items: center;
    justify-content: center;

    text-align: center;
}

.section-heading.center p {
    max-width: 650px;

    margin: 12px auto 0;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.7;
}


/* STATUS */

.status-badge,
.invoice-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 31px;

    padding: 0 12px;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: .05em;
}

.status-badge::before {
    content: "";

    width: 7px;
    height: 7px;

    margin-right: 7px;

    border-radius: 50%;
}

.status-badge.success {
    color: #087b50;
    background: #eaf9f2;
}

.status-badge.success::before {
    background: #0ca76b;
}

.status-badge.warning {
    color: #a76500;
    background: #fff6e8;
}

.status-badge.warning::before {
    background: #e89a19;
}

.status-badge.danger {
    color: #b42d38;
    background: #fff0f1;
}

.status-badge.danger::before {
    background: #dc4a55;
}


/* =========================================================
   CUSTOMER CARD
   ========================================================= */

.customer-card,
.invoice-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);

    background: #fff;

    box-shadow:
        0 15px 45px rgba(20, 45, 80, .06);
}

.customer-card {
    display: grid;

    grid-template-columns:
        58px
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 18px;

    padding: 24px;
}

.customer-avatar {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border-radius: 17px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #1e74ff,
            #4b94ff
        );

    box-shadow:
        0 10px 22px rgba(23, 105, 255, .22);

    font-size: 23px;
    font-weight: 800;
}

.customer-info {
    min-width: 0;
}

.customer-info h3 {
    margin: 5px 0 4px;

    font-size: 20px;
    letter-spacing: -.035em;

    overflow-wrap: break-word;
}

.customer-info p {
    margin: 0;

    color: #7d8da6;

    font-size: 12px;

    overflow-wrap: anywhere;
}

.customer-id {
    text-align: right;
}

.customer-id span,
.customer-id strong {
    display: block;
}

.customer-id span {
    color: #8b9bb1;
    font-size: 10px;
}

.customer-id strong {
    margin-top: 5px;
    font-size: 14px;
}


/* =========================================================
   INVOICE CARD
   ========================================================= */

.invoice-card {
    margin-top: 18px;

    overflow: hidden;
}

.invoice-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 26px 28px;

    border-bottom: 1px solid var(--line);
}

.invoice-heading h3 {
    margin: 6px 0 0;

    font-size: 22px;
    letter-spacing: -.035em;
}

.invoice-status.unpaid {
    color: #ad6500;
    background: #fff5e8;
}

.invoice-status.paid {
    color: #087b50;
    background: #eaf9f2;
}

.invoice-status.other {
    color: #66758e;
    background: #f0f3f7;
}


/* DETAILS */

.invoice-details {
    width: 100%;
    padding: 0 28px;
}

.detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    min-height: 70px;

    border-bottom: 1px solid #edf1f6;
}

.detail-label {
    display: flex;
    align-items: center;

    gap: 10px;

    color: #71839e;

    font-size: 12px;
}

.detail-label span {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    color: #4c76ad;
    background: #f0f5fc;
}

.detail-row strong {
    max-width: 65%;

    text-align: right;

    color: #18345c;

    font-size: 12px;

    overflow-wrap: anywhere;
}


/* TOTAL */

.invoice-total {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 24px 28px;

    background: #f6f9fe;
}

.invoice-total strong,
.invoice-total span {
    display: block;
}

.invoice-total div > strong {
    font-size: 13px;
}

.invoice-total span {
    margin-top: 5px;

    color: #8b9bb1;

    font-size: 10px;
}

#invoiceTotal {
    color: var(--blue);

    font-size: 28px;
    letter-spacing: -.045em;
}


/* PAYMENT */

.payment-action {
    padding: 22px 28px 28px;
}

.pay-button {
    width: 100%;

    min-height: 55px;

    border: 0;
    border-radius: 13px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #2677ff,
            #0d58e4
        );

    box-shadow:
        0 12px 25px rgba(23, 105, 255, .20);

    cursor: pointer;

    font-size: 12px;
    font-weight: 900;
}

.pay-button span {
    margin-left: 10px;
    font-size: 17px;
}

.payment-action p {
    margin: 10px 0 0;

    color: #8a98ad;

    text-align: center;

    font-size: 10px;
}


/* PAID */

.paid-message {
    display: flex;
    align-items: center;

    gap: 13px;

    margin: 0 28px 28px;

    padding: 17px;

    border: 1px solid #cdeee0;
    border-radius: 14px;

    background: #f1fcf7;
}

.paid-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: #fff;
    background: #0aa76b;

    font-weight: 900;
}

.paid-message strong,
.paid-message span {
    display: block;
}

.paid-message strong {
    color: #087b50;
    font-size: 12px;
}

.paid-message span {
    margin-top: 3px;

    color: #719080;

    font-size: 10px;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services-section {
    width: 100%;

    padding: 86px 0;

    background: #f7faff;

    border-top: 1px solid #edf2f8;
    border-bottom: 1px solid #edf2f8;

    scroll-margin-top: 76px;

    overflow-x: hidden;
}

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 17px;

    margin-top: 38px;
}

.service-card {
    min-width: 0;
    min-height: 215px;

    padding: 24px;

    border: 1px solid #e4ebf4;
    border-radius: 20px;

    background: #fff;

    box-shadow:
        0 12px 35px rgba(28, 55, 91, .045);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.service-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 45px rgba(28, 55, 91, .09);
}

.service-icon {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    margin-bottom: 17px;

    border-radius: 15px;

    background: #f0f5fc;
}

.service-icon img {
    width: 36px;
    height: 36px;

    object-fit: contain;
}

.service-card h3 {
    margin: 0;

    font-size: 16px;
    letter-spacing: -.025em;
}

.service-card p {
    margin: 8px 0 0;

    color: #7b8ba3;

    font-size: 12px;
    line-height: 1.7;
}

.service-link span {
    display: inline-block;

    margin-top: 16px;

    color: var(--blue);

    font-size: 11px;
    font-weight: 800;
}


/* =========================================================
   STEPS
   ========================================================= */

.steps-section {
    width: 100%;

    padding: 86px 0;

    scroll-margin-top: 76px;

    overflow-x: hidden;
}

.steps-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 17px;

    margin-top: 38px;
}

.step-card {
    display: flex;

    min-width: 0;

    gap: 17px;

    padding: 24px;

    border: 1px solid #e3eaf3;
    border-radius: 20px;

    background: #fff;
}

.step-card > span {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    color: var(--blue);
    background: #edf4ff;

    font-size: 11px;
    font-weight: 900;
}

.step-card h3 {
    margin: 1px 0 7px;

    font-size: 14px;
}

.step-card p {
    margin: 0;

    color: #7c8da6;

    font-size: 11px;
    line-height: 1.65;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    width: 100%;

    border-top: 1px solid #e7edf5;

    background: #fff;
}

.footer-inner {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;

    gap: 10px;

    min-width: 0;
}

.footer-brand img {
    width: 55px;
    height: 42px;

    object-fit: contain;
}


/* Sembunyikan teks footer jika hanya ingin logo */

.footer-brand strong,
.footer-brand span {
    display: none !important;
}

.footer-copy {
    color: #91a0b4;

    font-size: 10px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .container {
        width: calc(100% - 40px);
        max-width: 1160px;
    }

    .hero-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(360px, .9fr);

        gap: 45px;
    }

    .hero h1 {
        font-size: clamp(42px, 5.5vw, 62px);
    }

    .desktop-nav {
        gap: 18px;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
   ========================================================= */

@media (max-width: 980px) {

    .desktop-nav {
        display: none;
    }

    .header-cta {
        margin-left: auto;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 35px;
    }

    .hero-copy {
        width: 100%;
        max-width: 760px;
    }

    .billing-panel {
        width: 100%;
        max-width: 620px;
    }

    .service-grid,
    .steps-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 680px) {

    /* -----------------------------------------------------
       GLOBAL
       ----------------------------------------------------- */

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .container {
        width: calc(100% - 40px);
        max-width: calc(100% - 40px);

        margin-left: auto;
        margin-right: auto;
    }


    /* -----------------------------------------------------
       HEADER
       ----------------------------------------------------- */

    .site-header {
        position: relative;

        width: 100%;
        max-width: 100%;
    }

    .header-inner {
        width: 100%;
        min-width: 0;

        min-height: 70px;

        gap: 12px;
    }

    .brand {
        min-width: 0;

        flex: 1 1 auto;

        overflow: hidden;
    }

    .brand img {
        width: 115px;
        max-width: 115px;

        height: 48px;

        object-fit: contain;
        object-position: left center;
    }

    .header-cta {
        flex: 0 0 auto;

        min-height: 40px;

        padding: 0 12px;

        border-radius: 10px;

        font-size: 10px;

        white-space: nowrap;
    }


    /* -----------------------------------------------------
       HERO
       ----------------------------------------------------- */

    .hero {
        width: 100%;
        max-width: 100%;

        padding: 42px 0 45px;

        overflow: hidden;
    }

    .hero-grid {
        width: 100%;
        max-width: 100%;
        min-width: 0;

        display: grid;

        grid-template-columns:
            minmax(0, 1fr);

        gap: 30px;
    }

    .hero-copy {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }


    /* EYEBROW */

    .eyebrow {
        max-width: 100%;

        min-height: 29px;

        padding: 0 10px;

        font-size: 9px;
        letter-spacing: .06em;

        white-space: nowrap;
    }

    .pulse-dot {
        width: 7px;
        height: 7px;
        flex-basis: 7px;
    }


    /* TITLE */

    .hero h1 {
        width: 100%;
        max-width: 100%;

        margin: 18px 0 16px;

        font-size: clamp(36px, 10.5vw, 50px);

        line-height: 1.02;

        letter-spacing: -.055em;

        overflow-wrap: normal;
        word-break: normal;
    }

    .hero h1 span {
        display: block;

        width: 100%;
        max-width: 100%;
    }


    /* DESCRIPTION */

    .hero-text {
        width: 100%;
        max-width: 100%;

        font-size: 14px;
        line-height: 1.7;

        overflow-wrap: break-word;
    }


    /* -----------------------------------------------------
       BUTTONS
       ----------------------------------------------------- */

    .hero-actions {
        width: 100%;
        max-width: 100%;

        display: flex;

        flex-wrap: wrap;

        gap: 10px;

        margin-top: 24px;
    }

    .primary-link,
    .secondary-link {
        max-width: 100%;

        min-height: 46px;

        padding-left: 16px;
        padding-right: 16px;

        font-size: 12px;
    }


    /* -----------------------------------------------------
       TRUST
       ----------------------------------------------------- */

    .trust-row {
        width: 100%;
        max-width: 100%;

        overflow-x: auto;
        overflow-y: hidden;

        display: flex;

        padding-bottom: 4px;

        scrollbar-width: none;
    }

    .trust-row::-webkit-scrollbar {
        display: none;
    }

    .trust-row div {
        flex: 0 0 auto;

        min-width: 95px;

        padding-right: 14px;
        margin-right: 14px;
    }

    .trust-row strong {
        font-size: 14px;
    }

    .trust-row span {
        font-size: 10px;
    }


    /* -----------------------------------------------------
       BILLING PANEL
       ----------------------------------------------------- */

    .billing-panel {
        width: 100%;
        max-width: 100%;
        min-width: 0;

        padding: 22px 18px;

        border-radius: 22px;
    }

    .panel-top {
        min-width: 0;

        gap: 12px;
    }

    .panel-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;

        border-radius: 13px;

        font-size: 18px;
    }

    .panel-top h2 {
        font-size: 23px;

        white-space: normal;
    }

    .mini-label {
        font-size: 9px;
    }

    .panel-description {
        margin: 18px 0 20px;

        font-size: 12px;
        line-height: 1.65;
    }

    .billing-panel label {
        font-size: 11px;
    }

    .input-box {
        width: 100%;
        min-width: 0;

        min-height: 54px;

        padding: 0 13px;
    }

    .input-box span {
        margin-right: 10px;

        font-size: 10px;
    }

    .input-box input {
        width: 100%;
        min-width: 0;

        font-size: 13px;
    }

    .check-button {
        width: 100%;
        max-width: 100%;

        min-height: 52px;

        font-size: 10px;
    }

    .panel-note {
        font-size: 9px;
    }


    /* -----------------------------------------------------
       BANNER
       ----------------------------------------------------- */

    .hero-banner-wrap {
        width: 100%;
        max-width: 100%;

        margin-top: 35px;
    }

    .hero-banner {
        width: 100%;
        max-width: 100%;

        height: 155px;

        border-radius: 18px;
    }

    .slider-btn {
        width: 34px;
        height: 34px;

        font-size: 20px;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }


    /* -----------------------------------------------------
       BILLING RESULT
       ----------------------------------------------------- */

    .billing-section {
        width: 100%;
        max-width: 100%;

        padding-top: 55px;
        padding-bottom: 55px;

        overflow-x: hidden;
    }

    .section-heading {
        width: 100%;
        max-width: 100%;

        align-items: flex-start;
    }

    .section-heading h2 {
        font-size: 28px;
    }


    /* -----------------------------------------------------
       CUSTOMER CARD
       ----------------------------------------------------- */

    .customer-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;

        grid-template-columns:
            48px
            minmax(0, 1fr);

        padding: 18px;

        gap: 12px;
    }

    .customer-avatar {
        width: 48px;
        height: 48px;

        border-radius: 14px;

        font-size: 19px;
    }

    .customer-info {
        min-width: 0;
    }

    .customer-info h3 {
        font-size: 18px;

        overflow-wrap: break-word;
    }

    .customer-info p {
        overflow-wrap: anywhere;
    }

    .customer-id {
        grid-column: 2;

        min-width: 0;

        padding-top: 4px;

        text-align: left;
    }


    /* -----------------------------------------------------
       INVOICE
       ----------------------------------------------------- */

    .invoice-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .invoice-heading {
        align-items: flex-start;

        flex-wrap: wrap;

        gap: 12px;

        padding: 20px 18px;
    }

    .invoice-heading h3 {
        font-size: 19px;
    }

    .invoice-details {
        width: 100%;
        min-width: 0;

        padding-left: 18px;
        padding-right: 18px;
    }

    .invoice-total {
        padding-left: 18px;
        padding-right: 18px;
    }

    .payment-action {
        padding-left: 18px;
        padding-right: 18px;
    }

    .detail-row {
        min-width: 0;

        gap: 12px;

        min-height: 65px;
    }

    .detail-label {
        min-width: 0;

        font-size: 11px;
    }

    .detail-row strong {
        max-width: 58%;

        font-size: 11px;

        overflow-wrap: anywhere;
    }

    #invoiceTotal {
        font-size: 23px;
    }

    .paid-message {
        margin-left: 18px;
        margin-right: 18px;
        margin-bottom: 18px;

        padding: 14px;
    }


    /* -----------------------------------------------------
       SERVICES
       ----------------------------------------------------- */

    .services-section {
        width: 100%;
        max-width: 100%;

        padding-top: 60px;
        padding-bottom: 60px;

        overflow-x: hidden;
    }

    .service-grid {
        width: 100%;
        max-width: 100%;

        grid-template-columns:
            minmax(0, 1fr);

        gap: 14px;
    }

    .service-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;

        min-height: 0;

        padding: 20px;
    }


    /* -----------------------------------------------------
       STEPS
       ----------------------------------------------------- */

    .steps-section {
        width: 100%;
        max-width: 100%;

        padding-top: 60px;
        padding-bottom: 60px;

        overflow-x: hidden;
    }

    .steps-grid {
        width: 100%;
        max-width: 100%;

        grid-template-columns:
            minmax(0, 1fr);

        gap: 14px;
    }

    .step-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;

        padding: 20px;
    }


    /* -----------------------------------------------------
       FOOTER
       ----------------------------------------------------- */

    .footer-inner {
        width: 100%;
        max-width: 100%;

        min-height: 100px;

        align-items: flex-start;
        justify-content: center;

        flex-direction: column;

        padding-top: 20px;
        padding-bottom: 20px;
    }

    .footer-brand {
        min-width: 0;
    }

    .footer-brand img {
        width: 70px;
        height: 45px;
    }
}


/* =========================================================
   EXTRA SMALL PHONE
   ========================================================= */

@media (max-width: 400px) {

    .container {
        width: calc(100% - 32px);
        max-width: calc(100% - 32px);
    }

    .header-inner {
        gap: 8px;
    }

    .brand img {
        width: 105px;
        max-width: 105px;

        height: 44px;
    }

    .header-cta {
        min-height: 38px;

        padding: 0 10px;

        font-size: 9px;
    }

    .hero {
        padding-top: 36px;
    }

    .hero h1 {
        font-size: 35px;

        letter-spacing: -.05em;
    }

    .hero-text {
        font-size: 13px;
    }

    .billing-panel {
        padding: 20px 15px;
    }

    .panel-top h2 {
        font-size: 21px;
    }

    .input-box {
        padding-left: 11px;
        padding-right: 11px;
    }

    .input-box span {
        margin-right: 8px;
    }

    .check-button {
        font-size: 9px;
    }
}


/* =========================================================
   VERY SMALL PHONE
   ========================================================= */

@media (max-width: 350px) {

    .container {
        width: calc(100% - 28px);
        max-width: calc(100% - 28px);
    }

    .brand img {
        width: 92px;
        max-width: 92px;
    }

    .header-cta {
        padding: 0 8px;

        font-size: 8px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-actions {
        gap: 8px;
    }

    .primary-link,
    .secondary-link {
        padding-left: 13px;
        padding-right: 13px;
    }
}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;
    }
}

/* =========================================================
   FINAL LAYOUT FIX
   Menyamakan lebar hero dengan banner/container
   ========================================================= */

/* HERO GRID HARUS MEMILIKI CONTAINER SENDIRI */
.hero-grid {
    width: min(1160px, calc(100% - 40px));
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
}


/* HEADER JUGA DIBATASI AGAR LOGO TIDAK MENEMPEL KE LAYAR */
.header-inner {
    width: min(1160px, calc(100% - 40px));
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
}


/* BANNER HARUS MENGIKUTI LEBAR YANG SAMA */
.hero-banner-wrap {
    width: min(1160px, calc(100% - 40px));
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 680px) {

    .hero-grid,
    .header-inner,
    .hero-banner-wrap {
        width: calc(100% - 40px);
        max-width: calc(100% - 40px);

        margin-left: auto;
        margin-right: auto;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .header-inner {
        min-height: 70px;
    }

    .hero-banner-wrap {
        margin-top: 35px;
    }
}


/* =========================================================
   HP KECIL
   ========================================================= */

@media (max-width: 400px) {

    .hero-grid,
    .header-inner,
    .hero-banner-wrap {
        width: calc(100% - 32px);
        max-width: calc(100% - 32px);
    }
}


/* =========================================================
   HP SANGAT KECIL
   ========================================================= */

@media (max-width: 350px) {

    .hero-grid,
    .header-inner,
    .hero-banner-wrap {
        width: calc(100% - 28px);
        max-width: calc(100% - 28px);
    }
}

/* =========================================================
   FINAL MOBILE FIX
   ========================================================= */

@media (max-width: 680px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    /* =========================
       CONTAINER
       ========================= */

    .container {
        width: calc(100% - 32px);
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }


    /* =========================
       HEADER
       ========================= */

    .header-inner {
        width: calc(100% - 32px);
        min-height: 68px;
        margin: 0 auto;
        padding: 0;
    }

    .desktop-nav {
        display: none;
    }

    .brand {
        min-width: 0;
        flex: 1;
    }

    .brand img {
        width: 105px;
        height: 42px;
        object-fit: contain;
    }

    .brand strong,
    .brand small {
        display: none;
    }

    .header-cta {
        flex: 0 0 auto;
        margin-left: auto;
        min-height: 40px;
        padding: 0 12px;
        font-size: 10px;
        white-space: nowrap;
    }


    /* =========================
       HERO
       ========================= */

    .hero {
        width: 100%;
        padding: 42px 0 35px;
        overflow: hidden;
    }

    .hero-grid {
        width: calc(100% - 32px);
        max-width: none;
        margin: 0 auto;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 30px;
    }


    /* =========================
       HERO COPY
       ========================= */

    .hero-copy {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .eyebrow {
        max-width: 100%;
        white-space: nowrap;
        font-size: 10px;
    }

    .hero h1 {
        width: 100%;
        max-width: 100%;

        margin: 18px 0 16px;

        font-size: 43px;
        line-height: 1.02;
        letter-spacing: -0.055em;

        overflow: visible;
        word-break: normal;
        overflow-wrap: normal;
    }

    .hero h1 span {
        display: block;
        width: auto;
        max-width: 100%;

        margin: 0;
        padding: 0;

        white-space: normal;
        word-break: normal;
        overflow-wrap: normal;
    }

    .hero-text {
        width: 100%;
        max-width: 100%;

        margin: 0;

        font-size: 14px;
        line-height: 1.7;

        overflow-wrap: break-word;
    }


    /* =========================
       HERO BUTTON
       ========================= */

    .hero-actions {
        width: 100%;
        max-width: 100%;

        display: flex;
        flex-wrap: wrap;

        gap: 10px;
        margin-top: 22px;
    }

    .primary-link,
    .secondary-link {
        min-height: 47px;
    }


    /* =========================
       TRUST ROW
       ========================= */

    .trust-row {
        width: 100%;
        max-width: 100%;

        display: flex;

        margin-top: 28px;
        overflow: hidden;
    }

    .trust-row div {
        min-width: 0;
        flex: 1;

        padding-right: 10px;
        margin-right: 10px;
    }

    .trust-row strong {
        font-size: 13px;
    }

    .trust-row span {
        font-size: 9px;
    }


    /* =========================
       BILLING PANEL
       ========================= */

    .billing-panel {
        width: 100%;
        max-width: 100%;
        min-width: 0;

        padding: 22px 17px;

        border-radius: 20px;
    }

    .panel-top {
        min-width: 0;
    }

    .panel-top h2 {
        font-size: 23px;
    }

    .panel-description {
        font-size: 12px;
    }

    .input-box {
        width: 100%;
        min-width: 0;
    }

    .input-box input {
        width: 100%;
        min-width: 0;
    }

    .check-button {
        width: 100%;
    }


    /* =========================
       BANNER
       ========================= */

    .hero-banner-wrap {
        width: calc(100% - 32px);
        max-width: none;

        margin: 28px auto 0;
    }

    .hero-banner {
        width: 100%;
        height: 155px;

        border-radius: 16px;
    }
}


/* =========================================================
   HP KECIL
   ========================================================= */

@media (max-width: 390px) {

    .container,
    .header-inner,
    .hero-grid,
    .hero-banner-wrap {
        width: calc(100% - 28px);
    }

    .hero h1 {
        font-size: 39px;
    }

    .brand img {
        width: 95px;
    }

    .header-cta {
        padding: 0 10px;
        font-size: 9px;
    }

    .billing-panel {
        padding: 20px 15px;
    }
}


/* =========================================================
   HP SANGAT KECIL
   ========================================================= */

@media (max-width: 350px) {

    .container,
    .header-inner,
    .hero-grid,
    .hero-banner-wrap {
        width: calc(100% - 24px);
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .primary-link,
    .secondary-link {
        width: 100%;
    }

    .secondary-link {
        justify-content: center;
    }
}

/* FIX: elemen dengan atribut hidden harus benar-benar tersembunyi */
[hidden] {
    display: none !important;
}