/* ============================================================================
   aj-harga.css — halaman Harga (pricing.html), plus pita harga di beranda.

   Tiga bagian milik halaman Harga:
     #harga     struk "Tagihan bulananmu" di atas gradien biru
     #biaya     kalkulator "siapa bayar apa" + rincian biaya
     #termasuk  daftar fitur yang ikut dalam paket gratis
   FAQ-nya memakai gaya bersama #faq di aj-custom.css.

   index.html juga memuat berkas ini untuk pita #pricing-nya: struk yang sama
   (.ajh-receipt) dan tombol "Lihat rincian harga" ke halaman ini (bagian 5).
   Aturan #harga/#biaya/#termasuk tidak berlaku di sana.

   Tiruan rincian tagihan di kalkulator disalin dari langkah pembayaran halaman
   booking klien (src/views/OrderServiceView/BookSchedule/Components/
   CustomerForm.vue): kartu #price_accumulation (rounded-2xl, border-line,
   bg-canvas, p-4, baris 14px) dan bilah bawahnya ("Total pembayaran" 12px +
   angka 20px bold, tombol Bayar rounded-xl bg-brand). Warnanya palet app
   (src/assets/main.css) lewat token --ajh-* di bawah.
   ========================================================================== */

/* ---------------------------------------------------------------------------
   0. Token
   ------------------------------------------------------------------------- */

:root {
    /* palet app, nilai RGB tanpa koma: rgb(var(--x)) / rgb(var(--x) / a) */
    --ajh-canvas: 245 246 250;
    --ajh-surface: 255 255 255;
    --ajh-line: 207 214 224;
    --ajh-ink: 39 53 74;
    --ajh-ink-soft: 90 104 128;
    --ajh-brand: 1 97 233;
    --ajh-on-accent: 255 255 255;
    --ajh-danger: 194 53 43;

    /* Ruas batang pembagi. Bentuknya "emphasis": bagian pemilik jasa biru,
       dua biaya netral. Lolos validator palet dataviz di kedua tema: jarak
       antar-ruas bersebelahan ΔE ≥ 30 (juga di simulasi buta warna) dan
       kontras tiap ruas ≥ 3:1 terhadap kartunya. */
    --ajh-seg-net: #0168fa;
    --ajh-seg-platform: #27354a;
    --ajh-seg-channel: #8290a5;

    --ajh-paper: 255 255 255;
    --ajh-paper-shadow: drop-shadow(0 2px 3px rgba(1, 36, 110, 0.08))
        drop-shadow(0 28px 36px rgba(1, 36, 110, 0.18));
}

.uc-dark {
    --ajh-canvas: 15 19 26;
    --ajh-surface: 26 32 42;
    --ajh-line: 48 58 74;
    --ajh-ink: 231 235 241;
    --ajh-ink-soft: 159 170 184;
    --ajh-brand: 76 147 255;
    --ajh-on-accent: 15 19 26;
    --ajh-danger: 255 125 114;

    --ajh-seg-net: #4c93ff;
    --ajh-seg-platform: #e7ebf1;
    --ajh-seg-channel: #6b7a93;

    /* kertas struk satu tingkat di atas surface supaya tetap terangkat dari
       gradien gelapnya */
    --ajh-paper: 30 37 49;
    --ajh-paper-shadow: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.35))
        drop-shadow(0 28px 40px rgba(0, 0, 0, 0.55));
}

.ajh-sr {
    position: absolute !important;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* Lemari simbol ikon; tidak pernah dirender sendiri. */
.ajh-defs {
    display: none;
}

/* ---------------------------------------------------------------------------
   1. Hero — gradien datar #0168FA → putih, struk di tengah.

      Warnanya sama dengan versi lama halaman ini (0% → 50%), tapi titik
      pudarnya digeser: dulu gradien itu membentang di satu seksi panjang
      (hero + tabel fitur), jadi judul dan paragraf putihnya duduk di biru
      pekat. Hero sekarang jauh lebih pendek; dengan 0% → 50% paragrafnya
      jatuh di biru pucat (kontras ±2:1). 15% → 95% mengembalikan tampilan
      lama: teks putih di biru pekat (±3,4:1 seperti dulu), putih penuh
      tepat di bawah struk. Mode gelap: navy yang sama dengan pita harga di
      aj-dark-theme.css, melebur ke kanvas supaya tidak ada sambungan.
   ------------------------------------------------------------------------- */

#harga {
    background: linear-gradient(180deg, #0168fa 15%, #ffffff 95%);
}

.uc-dark #harga {
    background: linear-gradient(180deg, #063a91 15%, rgb(15 19 26) 95%);
}

.ajh-hero-outer {
    padding: 40px 0 16px;
}

@media (min-width: 992px) {
    .ajh-hero-outer {
        padding: 56px 0 24px;
    }
}

.ajh-hero-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 640px;
    margin: 0 auto 32px;
    text-align: center;
}

.ajh-hero-title {
    margin: 0;
    color: #fff !important;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.ajh-hero-lead {
    margin: 0;
    max-width: 520px;
    color: #fff;
    opacity: 0.9;
    text-wrap: pretty;
}

/* Struk. Bayangannya dipasang di pembungkus sebagai drop-shadow: kertasnya
   sendiri di-mask menjadi gerigi, dan mask ikut memangkas box-shadow. */
.ajh-receipt {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    filter: var(--ajh-paper-shadow);
}

/* Gerigi bawah: tiap ubin selebar --zz hanya menyisakan baji 90° yang
   menghadap ke atas dari titik tengah dasarnya, jadi tepi bawahnya jadi gigi
   gergaji setinggi --zz/2. `round` menyesuaikan lebar ubin supaya jumlah
   giginya bulat dan tidak ada gigi terpotong di ujung. */
.ajh-receipt-paper {
    --zz: 16px;
    padding: 24px 24px calc(24px + var(--zz) / 2);
    border-radius: 20px 20px 0 0;
    background: rgb(var(--ajh-paper));
    color: rgb(var(--ajh-ink));
    -webkit-mask-image: conic-gradient(from -45deg at bottom, #0000, #000 1deg 89deg, #0000 90deg);
    mask-image: conic-gradient(from -45deg at bottom, #0000, #000 1deg 89deg, #0000 90deg);
    -webkit-mask-size: var(--zz) 100%;
    mask-size: var(--zz) 100%;
    -webkit-mask-repeat: round;
    mask-repeat: round;
}

@media (min-width: 576px) {
    .ajh-receipt-paper {
        padding: 28px 28px calc(28px + var(--zz) / 2);
    }
}

.ajh-receipt-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 2px dashed rgb(var(--ajh-line));
}

.ajh-receipt-logo {
    display: block;
    width: auto;
    height: 24px;
}

.ajh-receipt-kicker {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    color: rgb(var(--ajh-ink-soft));
}

.ajh-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 16px 0;
    list-style: none;
}

/* Titik-titik penuntun di antara nama dan harga, menempel ke baris terakhir
   kalau namanya patah dua baris. */
.ajh-line {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    font-size: 14px;
    line-height: 20px;
}

.ajh-line-fill {
    flex: 1 1 16px;
    min-width: 16px;
    margin-bottom: 5px;
    border-bottom: 2px dotted rgb(var(--ajh-line));
}

.ajh-line-amt {
    font-weight: 600;
    white-space: nowrap;
}

.ajh-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 2px dashed rgb(var(--ajh-line));
}

.ajh-total-label {
    font-size: 16px;
    font-weight: 600;
}

.ajh-total-amt {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: rgb(var(--ajh-brand));
}

/* catatan kaki di bawah total, seperti huruf kecil di struk sungguhan */
.ajh-receipt-fine {
    margin: 8px 0 0;
    font-size: 12px;
    line-height: 18px;
    color: rgb(var(--ajh-ink-soft));
}

.ajh-receipt-fine a {
    color: rgb(var(--ajh-brand));
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.ajh-receipt-fine a:hover {
    text-decoration: underline;
}

.ajh-receipt-cta {
    display: flex !important;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
    transition: transform 0.25s var(--aj-ease), box-shadow 0.25s var(--aj-ease);
}

.ajh-receipt-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px -14px rgba(1, 104, 250, 0.7);
}

.ajh-receipt-note {
    margin: 10px 0 0;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: rgb(var(--ajh-ink-soft));
}

/* ---------------------------------------------------------------------------
   2. Kalkulator — kiri pemilik jasa (input + yang masuk ke Dompet), kanan
      klien (tiruan rincian tagihan + batang pembagi).
   ------------------------------------------------------------------------- */

.ajh-section-outer {
    padding: 40px 0 8px;
}

/* judul seksi tidak menyisakan satu kata di baris kedua ("... masuk / utuh") */
#biaya .section-heading h2,
#termasuk .section-heading h2,
#faq .section-heading h2 {
    text-wrap: balance;
}

@media (min-width: 1200px) {
    .ajh-section-outer {
        padding: 56px 0 8px;
    }
}

.ajh-calc {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--aj-line);
    border-radius: 24px;
    background: rgb(var(--ajh-surface));
    box-shadow: var(--aj-shadow-sm);
    color: rgb(var(--ajh-ink));
}

@media (min-width: 992px) {
    .ajh-calc {
        grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    }
}

.ajh-calc-you,
.ajh-calc-client {
    padding: 24px;
}

@media (min-width: 576px) {
    .ajh-calc-you,
    .ajh-calc-client {
        padding: 32px;
    }
}

.ajh-calc-you {
    display: flex;
    flex-direction: column;
    background: var(--aj-soft);
}

.ajh-label {
    display: block;
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: rgb(var(--ajh-ink));
}

.ajh-money {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 56px;
    padding: 0 16px;
    border: 1px solid rgb(var(--ajh-line));
    border-radius: 12px;
    background: rgb(var(--ajh-surface));
    transition: border-color 0.2s var(--aj-ease), box-shadow 0.2s var(--aj-ease);
}

.ajh-money:focus-within {
    border-color: rgb(var(--ajh-brand));
    box-shadow: 0 0 0 3px rgb(var(--ajh-brand) / 0.16);
}

.ajh-money-rp {
    font-size: 24px;
    font-weight: 600;
    color: rgb(var(--ajh-ink-soft));
}

.ajh-money-input {
    flex: 1 1 auto;
    min-width: 0;
    height: 100%;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: rgb(var(--ajh-ink));
    font: inherit;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.ajh-hint {
    margin: 8px 0 0;
    font-size: 12px;
    line-height: 16px;
    color: rgb(var(--ajh-ink-soft));
}

.ajh-hint.is-warn {
    color: rgb(var(--ajh-danger));
}

.ajh-method {
    margin: 20px 0 0;
    padding: 0;
    border: 0;
    min-width: 0;
}

/* Tombol segmen: radio asli disembunyikan, labelnya yang tampil. Yang terpilih
   memakai isian brand + on-accent seperti tombol utama app. Lebarnya ikut
   isinya lalu berbagi sisa ruang, supaya "Virtual Account" tidak patah dua
   baris hanya karena "QRIS" mendapat jatah yang sama lebarnya. */
.ajh-seg {
    display: flex;
    gap: 4px;
    padding: 4px;
    border: 1px solid rgb(var(--ajh-line));
    border-radius: 12px;
    background: rgb(var(--ajh-surface));
}

.ajh-seg-opt {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    cursor: pointer;
}

.ajh-seg-opt input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.ajh-seg-opt span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 6px 8px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    text-align: center;
    color: rgb(var(--ajh-ink-soft));
    transition: background-color 0.2s var(--aj-ease), color 0.2s var(--aj-ease);
}

.ajh-seg-opt:hover span {
    color: rgb(var(--ajh-ink));
}

.ajh-seg-opt input:checked + span {
    background: rgb(var(--ajh-brand));
    color: rgb(var(--ajh-on-accent));
}

.ajh-seg-opt input:focus-visible + span {
    outline: 2px solid rgb(var(--ajh-brand));
    outline-offset: 2px;
}

.ajh-receive {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--aj-line);
}

@media (min-width: 992px) {
    /* di desktop menempel ke dasar kolom, sejajar total tagihan di kanan */
    .ajh-receive {
        margin-top: auto;
    }

    .ajh-method {
        margin-bottom: 24px;
    }
}

.ajh-receive-label {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    color: rgb(var(--ajh-ink-soft));
}

.ajh-receive-amt {
    margin: 4px 0 0;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: rgb(var(--ajh-brand));
    overflow-wrap: anywhere;
}

.ajh-receive-note {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 20px;
    color: rgb(var(--ajh-ink-soft));
}

.ajh-receive-note b {
    color: rgb(var(--ajh-ink));
    font-weight: 600;
}

/* Tiruan tagihan klien */
.ajh-bill {
    overflow: hidden;
    border: 1px solid rgb(var(--ajh-line));
    border-radius: 16px;
    background: rgb(var(--ajh-surface));
}

.ajh-bill-body {
    padding: 16px;
}

.ajh-bill-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgb(var(--ajh-line));
    border-radius: 16px;
    background: rgb(var(--ajh-canvas));
}

.ajh-bill-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
    line-height: 20px;
    color: rgb(var(--ajh-ink));
}

.ajh-bill-row b {
    font-weight: 600;
    white-space: nowrap;
}

.ajh-bill-fee {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ajh-bill-tip {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    font-size: 12px;
    line-height: 16px;
    color: rgb(var(--ajh-ink-soft));
}

.ajh-bill-tip[hidden] {
    display: none;
}

.ajh-bill-tip svg {
    flex: none;
    width: 16px;
    height: 16px;
}

.ajh-bill-tip b {
    font-weight: 600;
}

.ajh-bill-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-top: 1px solid rgb(var(--ajh-line));
}

.ajh-bill-total {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
}

.ajh-bill-total span {
    font-size: 12px;
    line-height: 20px;
    color: rgb(var(--ajh-ink-soft));
}

.ajh-bill-total b {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.01em;
    color: rgb(var(--ajh-ink));
}

/* Hanya gambar tombol, bukan tombol sungguhan: tidak bisa difokus/diklik. */
.ajh-bill-pay {
    flex: none;
    padding: 14px 24px;
    border-radius: 12px;
    background: rgb(var(--ajh-brand));
    color: rgb(var(--ajh-on-accent));
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    user-select: none;
}

/* Batang pembagi */
.ajh-split {
    margin-top: 24px;
}

.ajh-split-title {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 20px;
    color: rgb(var(--ajh-ink-soft));
}

.ajh-split-title b {
    color: rgb(var(--ajh-ink));
    font-weight: 600;
}

/* Tiap ruas tumbuh sebanding nominalnya (flex-grow = rupiah), sesudah jarak
   2px antar-ruas dikurangi, jadi proporsinya tepat tanpa hitung persen.
   Ujung kiri (pangkal) persegi, ujung kanan (ujung data) membulat 4px. */
.ajh-bar {
    display: flex;
    gap: 2px;
    height: 14px;
    transition: opacity 0.2s var(--aj-ease);
}

.ajh-bar-seg {
    flex: 1 1 0;
    min-width: 3px;
    transition: flex-grow 0.45s var(--aj-ease);
}

.ajh-bar-seg:last-child {
    border-radius: 0 4px 4px 0;
}

.is-net > .ajh-key,
.ajh-bar-seg.is-net {
    background: var(--ajh-seg-net);
}

.is-platform > .ajh-key,
.ajh-bar-seg.is-platform {
    background: var(--ajh-seg-platform);
}

.is-channel > .ajh-key,
.ajh-bar-seg.is-channel {
    background: var(--ajh-seg-channel);
}

.ajh-legend {
    display: grid;
    gap: 8px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.ajh-legend li {
    display: grid;
    grid-template-columns: 10px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 20px;
    color: rgb(var(--ajh-ink));
}

.ajh-key {
    width: 10px;
    height: 10px;
    border-radius: 3px;
}

.ajh-legend b {
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    text-align: right;
}

.ajh-calc.is-invalid .ajh-bar {
    opacity: 0.25;
}

/* ---------------------------------------------------------------------------
   3. Rincian biaya — dua kartu: yang kamu bayar, yang dibayar klien
   ------------------------------------------------------------------------- */

.ajh-fees {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    margin-top: 16px;
}

@media (min-width: 768px) {
    .ajh-fees {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.ajh-fee-card {
    padding: 24px;
    border: 1px solid var(--aj-line);
    border-radius: 24px;
    background: rgb(var(--ajh-surface));
    color: rgb(var(--ajh-ink));
}

@media (min-width: 576px) {
    .ajh-fee-card {
        padding: 28px 32px;
    }
}

.ajh-fee-who {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: rgb(var(--ajh-ink-soft));
}

.ajh-fee-head {
    margin: 4px 0 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.01em;
    color: rgb(var(--ajh-ink));
}

.ajh-fee-desc {
    margin: 4px 0 0;
    font-size: 14px;
    line-height: 20px;
    color: rgb(var(--ajh-ink-soft));
}

.ajh-fee-list {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.ajh-fee-list li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-top: 1px solid var(--aj-line);
    font-size: 14px;
    line-height: 20px;
}

.ajh-fee-name {
    min-width: 0;
}

.ajh-fee-sub {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    line-height: 16px;
    color: rgb(var(--ajh-ink-soft));
}

.ajh-fee-val {
    flex: none;
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
}

.ajh-fee-note {
    margin: 4px 0 0;
    padding-top: 12px;
    border-top: 1px solid var(--aj-line);
    font-size: 12px;
    line-height: 18px;
    color: rgb(var(--ajh-ink-soft));
}

.ajh-fee-note a,
.ajh-more {
    color: rgb(var(--ajh-brand));
    font-weight: 600;
    text-decoration: none;
}

.ajh-fee-note a:hover,
.ajh-more:hover {
    text-decoration: underline;
}

/* ---------------------------------------------------------------------------
   4. Semua termasuk — empat kolom daftar centang
   ------------------------------------------------------------------------- */

.ajh-incl {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px 32px;
}

@media (min-width: 576px) {
    .ajh-incl {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .ajh-incl {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.ajh-incl-group {
    padding-top: 16px;
    border-top: 1px solid var(--aj-line);
}

/* theme-eleven.min.css memasang ukuran h3 dengan !important, jadi ukurannya
   di sini juga harus !important supaya menang. */
.ajh-incl-title {
    margin: 0 0 12px;
    font-size: 18px !important;
    font-weight: 600;
    line-height: 24px !important;
    letter-spacing: -0.01em !important;
    color: rgb(var(--ajh-ink));
}

.ajh-incl-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ajh-incl-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 20px;
    color: rgb(var(--ajh-ink));
}

.ajh-check {
    flex: none;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    color: rgb(var(--ajh-brand));
}

.ajh-incl-foot {
    margin: 28px 0 0;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: rgb(var(--ajh-ink-soft));
}

.ajh-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.ajh-more svg {
    width: 16px;
    height: 16px;
}

/* ---------------------------------------------------------------------------
   5. Pita harga beranda (index.html #pricing) — struk di atas + tombol ke
      halaman Harga. Pitanya sendiri (gradien, sudut, jarak) tetap di
      aj-polish.css bagian 7; tombolnya pil putih .aj-cta-primary yang sama
      dengan CTA hero.
   ------------------------------------------------------------------------- */

@media (min-width: 992px) {
    /* Teks dan struk rata tengah secara vertikal (items-center di markup).
       aj-polish.css memberi pita ini 48px di atas dan 80px di bawah — ruang
       napas untuk kartu harga lama — jadi "tengah" barisnya 16px di atas
       tengah pita. Jaraknya disamakan 64/64: tinggi pita tetap, dan teks
       maupun struk duduk tepat di tengah pita. Pemuatan aj-harga.css sesudah
       aj-polish.css yang membuatnya menang pada spesifisitas yang sama. */
    #pricing > .section-outer {
        padding-top: 64px !important;
        padding-bottom: 64px !important;
    }
}

.ajh-band-cta {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.ajh-band-cta-i {
    flex: none;
    width: 18px;
    height: 18px;
    transition: transform 0.25s var(--aj-ease);
}

.ajh-band-cta:hover .ajh-band-cta-i,
.ajh-band-cta:focus-visible .ajh-band-cta-i {
    transform: translateX(3px);
}

/* ---------------------------------------------------------------------------
   6. Kurangi gerak
   ------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    .ajh-receipt-cta,
    .ajh-bar,
    .ajh-bar-seg,
    .ajh-seg-opt span,
    .ajh-band-cta-i {
        transition: none !important;
    }

    .ajh-receipt-cta:hover,
    .ajh-band-cta:hover .ajh-band-cta-i {
        transform: none;
    }
}
