/* ============================================================================
   aj-solusi.css — halaman Solusi (solusi.html) dan sub-halamannya:
   solusi-mua.html serta satu halaman per bidang (solusi-kecantikan,
   -kebugaran, -kesehatan, -kreatif, -pendidikan, -profesional). Dimuat
   bersama aj-megamenu.css.

   Kelasnya berawalan `ajsl-` (halaman) dan `ajsc-` (kartu layanan salinan
   ServiceCardShell.vue), bukan `aj-`: beberapa skrip landing bertindak pada
   kelas aj-* generik (lihat catatan di aj-hero-device.css).

   Dua palet:
   - palet halaman pemasaran (judul, teks, garis) — nilainya sama dengan tema
     landing: judul rgb(39,46,46), teks lunak rgb(90,97,97);
   - palet aplikasi (--ajsc-*) untuk setiap tiruan UI — disalin dari :root /
     .dark di src/assets/main.css, sama seperti bingkai ponsel di hero beranda.
   ========================================================================== */

:root {
    --ajsl-ink: rgb(39, 46, 46);
    --ajsl-text: rgb(9, 9, 44);
    --ajsl-soft: rgb(90, 97, 97);
    --ajsl-brand: #0168fa;
    --ajsl-card: #ffffff;
    --ajsl-band: #0168fa;

    --ajsc-canvas: 245 246 250;
    --ajsc-surface: 255 255 255;
    --ajsc-surface-muted: 234 236 239;
    --ajsc-tint: 234 234 250;
    --ajsc-line: 207 214 224;
    --ajsc-line-soft: 206 218 234;
    --ajsc-ink: 39 53 74;
    --ajsc-ink-soft: 90 104 128;
    --ajsc-ink-faint: 99 112 134;
    --ajsc-brand: 1 97 233;
    --ajsc-success: 15 122 85;
    --ajsc-success-soft: 230 247 242;
    --ajsc-on-accent: 255 255 255;
    --ajsc-danger: 194 53 43;
    --ajsc-danger-soft: 253 232 230;
    --ajsc-warn: 138 83 0;
    --ajsc-warn-bg: 255 249 230;
    --ajsc-warn-bg-2: 255 244 211;
    --ajsc-warn-bg-3: 255 232 161;
    --ajsc-warn-line: 233 218 171;
}

.uc-dark {
    --ajsl-ink: #ffffff;
    --ajsl-text: rgb(231, 235, 241);
    --ajsl-soft: rgb(159, 170, 184);
    --ajsl-brand: rgb(76, 147, 255);
    --ajsl-card: rgb(26, 32, 42);
    --ajsl-band: #0a4fc4;

    --ajsc-canvas: 15 19 26;
    --ajsc-surface: 26 32 42;
    --ajsc-surface-muted: 35 43 56;
    --ajsc-tint: 38 42 69;
    --ajsc-line: 48 58 74;
    --ajsc-line-soft: 43 69 96;
    --ajsc-ink: 231 235 241;
    --ajsc-ink-soft: 159 170 184;
    --ajsc-ink-faint: 130 142 158;
    --ajsc-brand: 76 147 255;
    --ajsc-success: 61 214 155;
    --ajsc-success-soft: 22 51 42;
    --ajsc-on-accent: 15 19 26;
    --ajsc-danger: 255 125 114;
    --ajsc-danger-soft: 61 34 32;
    --ajsc-warn: 232 169 71;
    --ajsc-warn-bg: 28 24 10;
    --ajsc-warn-bg-2: 35 28 12;
    --ajsc-warn-bg-3: 46 37 14;
    --ajsc-warn-line: 64 56 32;
}

.ajsl-nw {
    white-space: nowrap;
}

.ajsl-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;
}

/* Tautan jangkar mendarat di bawah navbar sticky, bukan tertutup olehnya. */
.ajsl-sec {
    scroll-margin-top: 96px;
}

/* ── Tombol ─────────────────────────────────────────────────────────────── */

.ajsl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.25s ease,
        transform 0.15s ease;
}

.ajsl-btn:active {
    transform: scale(0.97);
}

.ajsl-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.ajsl-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Tombol putih di atas biru — "Buat sekarang" di hero beranda. */
.ajsl-btn-light {
    background: #fff;
    color: #0168fa;
    box-shadow: 0 10px 24px -12px rgba(4, 36, 110, 0.55);
}

.ajsl-btn-light:hover {
    background: #eef4ff;
    color: #0158d4;
    box-shadow: 0 14px 28px -12px rgba(4, 36, 110, 0.6);
}

/* Kapsul tembus pandang — "Dapat apa saja?" di pita harga. */
.ajsl-btn-glass {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.85);
    color: #fff;
}

.ajsl-btn-glass:hover {
    background: rgba(0, 0, 0, 0.12);
    color: #fff;
}

.ajsl-btn-primary {
    background: var(--ajsl-brand);
    color: #fff;
    box-shadow: 0 12px 26px -14px rgba(1, 104, 250, 0.8);
}

.ajsl-btn-primary:hover {
    background: #0158d4;
    color: #fff;
}

.uc-dark .ajsl-btn-primary {
    color: rgb(15, 19, 26);
}

.uc-dark .ajsl-btn-primary:hover {
    background: rgb(111, 168, 255);
    color: rgb(15, 19, 26);
}

.ajsl-btn-primary:focus-visible,
.ajsl-btn-ghost:focus-visible {
    outline-color: var(--ajsl-brand);
}

.ajsl-btn-ghost {
    background: transparent;
    border-color: var(--aj-line-strong);
    color: var(--ajsl-brand);
}

.ajsl-btn-ghost:hover {
    background: rgba(1, 104, 250, 0.08);
    color: var(--ajsl-brand);
}

/* ── Hero /solusi ───────────────────────────────────────────────────────── */

.ajsl-hero {
    position: relative;
    overflow: hidden;
    padding: 56px 0 72px;
    color: #fff;
    background: linear-gradient(180deg, #0168fa 0%, #b5d5ff 100%);
}

/* lebur ke warna halaman, seperti #hero_header::after di aj-polish.css */
.ajsl-hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 140px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--aj-page) 100%);
    pointer-events: none;
}

.uc-dark .ajsl-hero {
    background: rgb(var(--color-canvas));
}

.uc-dark .ajsl-hero::after {
    display: none;
}

.ajsl-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 470px);
    align-items: center;
    gap: 56px;
}

.ajsl-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.ajsl-hero-title {
    margin: 0;
    color: #fff !important;
    /* Tema memaksa ukuran, jarak baris, dan jarak huruf h1–h3 dengan
       !important (theme-eleven.min.css); judul-judul di sini mengatur
       ketiganya sendiri. */
    font-size: 60px !important;
    font-weight: 700;
    line-height: 1.04 !important;
    letter-spacing: -0.04em !important;
}

.ajsl-hero-title > span[aria-hidden] {
    display: block;
}

/* Kata profesi yang bergilir. Lebarnya ikut kata aktif (diukur skrip),
   garis bawahnya ikut memanjang-memendek. */
.ajsl-roll {
    position: relative;
    display: inline-block !important;
    height: 1.12em;
    margin-top: 2px;
    padding-bottom: 0.12em;
    overflow: hidden;
    vertical-align: bottom;
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.ajsl-roll::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.55);
}

.ajsl-roll-word {
    display: block;
    white-space: nowrap;
    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.35s ease;
}

.ajsl-roll-word.is-in {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
    opacity: 0;
}

.ajsl-roll-word.is-out {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    opacity: 0;
}

.ajsl-hero-lead {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.55;
    text-wrap: pretty;
}

.ajsl-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

/* Tumpukan foto + kartu template */
.ajsl-hero-visual {
    position: relative;
}

.ajsl-stack {
    position: relative;
    padding-bottom: 44px;
}

.ajsl-shots {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 40px 80px -40px rgba(4, 28, 90, 0.7);
}

.ajsl-shot {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transform: scale(1.05);
    transition:
        opacity 0.7s ease,
        transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.ajsl-shot.is-on {
    opacity: 1;
    transform: none;
}

.ajsl-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ajsl-tplcard {
    position: absolute;
    left: -32px;
    right: 40px;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px 12px 12px;
    border-radius: 20px;
    background: rgb(var(--ajsc-surface));
    border: 1px solid rgb(var(--ajsc-line) / 0.7);
    box-shadow: 0 24px 48px -24px rgba(4, 28, 90, 0.55), 0 4px 10px rgba(4, 28, 90, 0.08);
    color: rgb(var(--ajsc-ink));
    font-family: 'Figtree', sans-serif;
}

.ajsl-tplcard-ico {
    flex: none;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    object-fit: cover;
    background: rgb(var(--ajsc-tint));
    outline: 1px solid rgba(12, 32, 74, 0.08);
    outline-offset: -1px;
}

.ajsl-tplcard-text {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    gap: 2px;
    transition:
        opacity 0.25s ease,
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.ajsl-tplcard.is-swap .ajsl-tplcard-text,
.ajsl-tplcard.is-swap .ajsl-tplcard-ico {
    opacity: 0;
    transform: translateY(6px);
    transition: none;
}

.ajsl-tplcard-ico {
    transition:
        opacity 0.25s ease,
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.ajsl-tplcard-label {
    font-size: 12px;
    line-height: 16px;
    color: rgb(var(--ajsc-ink-soft));
}

.ajsl-tplcard-name {
    overflow: hidden;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ajsl-tplcard-meta {
    font-size: 14px;
    line-height: 18px;
    color: rgb(var(--ajsc-ink-soft));
}

/* Tombol "Pakai" — pola kapsul "Bisa DP" di ServiceCardShell. */
.ajsl-tplcard-get {
    display: inline-flex;
    flex: none;
    align-items: center;
    height: 32px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgb(var(--ajsc-tint));
    color: rgb(var(--ajsc-brand));
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition:
        background-color 0.15s ease,
        color 0.15s ease,
        transform 0.15s ease;
}

.ajsl-tplcard-get:hover {
    background: rgb(var(--ajsc-brand));
    color: rgb(var(--ajsc-on-accent));
}

.ajsl-tplcard-get:active {
    transform: scale(0.94);
}

/* Titik giliran: yang aktif memanjang dan terisi selama gilirannya. */
.ajsl-dots {
    position: absolute;
    right: 0;
    bottom: -30px;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.ajsl-dot {
    position: relative;
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(9, 45, 120, 0.22);
    overflow: hidden;
    cursor: pointer;
    transition:
        width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.3s ease;
}

.uc-dark .ajsl-dot {
    background: rgba(255, 255, 255, 0.2);
}

.ajsl-dot.is-on {
    width: 28px;
}

.ajsl-dot.is-on::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: #0168fa;
    transform-origin: 0 50%;
    animation: ajsl-dot-fill var(--ajsl-step, 3200ms) linear forwards;
}

.uc-dark .ajsl-dot.is-on::after {
    background: rgb(76, 147, 255);
}

.ajsl-stack.is-paused .ajsl-dot.is-on::after {
    animation-play-state: paused;
}

.ajsl-dot:focus-visible {
    outline: 2px solid #0168fa;
    outline-offset: 2px;
}

@keyframes ajsl-dot-fill {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

/* ── Seksi umum ─────────────────────────────────────────────────────────── */

.ajsl-sec {
    position: relative;
    padding: 72px 0;
}

.ajsl-sec-soft {
    background: var(--aj-soft);
}

.uc-dark .ajsl-sec-soft {
    background: rgb(20, 25, 34);
}

.ajsl-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    max-width: 720px;
    margin: 0 auto 36px;
    text-align: center;
}

.ajsl-h2 {
    margin: 0;
    color: var(--ajsl-ink) !important;
    font-size: 48px !important;
    font-weight: 700;
    line-height: 1.1 !important;
    letter-spacing: -0.04em !important;
    text-wrap: balance;
}

.ajsl-sub {
    max-width: 600px;
    margin: 0;
    color: var(--ajsl-soft);
    font-size: 18px;
    line-height: 1.5;
    text-wrap: pretty;
}

/* ── Aturannya ikut profesimu ───────────────────────────────────────────── */

.ajsl-tune {
    max-width: 1080px;
    margin: 0 auto;
}

/* Segmented control — bentuk "Tipe pembayaran" di CustomerForm.vue. */
.ajsl-seg {
    display: flex;
    gap: 4px;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 24px;
    padding: 4px;
    border-radius: 14px;
    border: 1px solid rgb(var(--ajsc-line));
    background: rgb(var(--ajsc-canvas));
    overflow-x: auto;
    scrollbar-width: none;
}

.ajsl-seg::-webkit-scrollbar {
    display: none;
}

.ajsl-seg button {
    flex: none;
    height: 40px;
    padding: 0 18px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: rgb(var(--ajsc-ink-soft));
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition:
        background-color 0.15s ease,
        color 0.15s ease,
        box-shadow 0.15s ease;
}

.ajsl-seg button[aria-selected='true'] {
    background: rgb(var(--ajsc-surface));
    color: rgb(var(--ajsc-ink));
    box-shadow: 0 1px 3px rgba(20, 30, 60, 0.1);
}

.ajsl-seg button:focus-visible {
    outline: 2px solid rgb(var(--ajsc-brand));
    outline-offset: -2px;
}

.ajsl-panes {
    border-radius: 28px;
    background: var(--ajsl-card);
    border: 1px solid var(--aj-line);
    box-shadow: var(--aj-shadow-md);
}

.ajsl-pane {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
    padding: 32px 36px;
}

.ajsl-pane[hidden] {
    display: none;
}

.ajsl-pane.is-enter {
    animation: ajsl-pane-in 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes ajsl-pane-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.ajsl-rules {
    margin: 0;
}

.ajsl-rules > div {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 16px;
    padding: 13px 0;
    border-top: 1px solid var(--aj-line);
}

.ajsl-rules > div:first-child {
    border-top: 0;
    padding-top: 0;
}

.ajsl-rules > div:last-child {
    padding-bottom: 0;
}

.ajsl-rules dt {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: var(--ajsl-soft);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.ajsl-rules dt svg {
    flex: none;
    width: 20px;
    height: 20px;
    fill: currentColor;
    color: var(--ajsl-brand);
}

.ajsl-rules dd {
    margin: 0;
    color: var(--ajsl-text);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-wrap: pretty;
}

.ajsl-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border-radius: 22px;
    background: rgb(var(--ajsc-canvas));
    border: 1px solid rgb(var(--ajsc-line) / 0.6);
}

.ajsl-preview-label {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: rgb(var(--ajsc-ink-soft));
}

/* ── Kartu layanan: salinan ServiceCardShell.vue ────────────────────────── */
/* Foto dan teks berdiri sebagai dua panel terpisah dengan tinggi terkunci. */
.ajsc {
    display: flex;
    gap: 6px;
    height: 124px;
    color: rgb(var(--ajsc-ink));
    font-family: 'Figtree', sans-serif;
    text-align: left;
}

.ajsc-thumb {
    flex: none;
    width: 42%;
    max-width: 190px;
    border: 1px solid rgb(var(--ajsc-line));
    border-radius: 16px;
    background: rgb(var(--ajsc-surface-muted));
    overflow: hidden;
}

.ajsc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ajsc-body {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 16px;
    border: 1px solid rgb(var(--ajsc-line));
    border-radius: 16px;
    background: rgb(var(--ajsc-surface));
}

.ajsc-info {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 2px;
}

.ajsc-title {
    margin: 0;
    overflow: hidden;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.01em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ajsc-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    color: rgb(var(--ajsc-ink-soft));
}

.ajsc-meta > span {
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 0;
    white-space: nowrap;
}

.ajsc-meta svg {
    flex: none;
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.ajsc-dot {
    color: rgb(var(--ajsc-ink-faint));
}

.ajsc-price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 8px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}

.ajsc-dp {
    padding: 2px 8px;
    border-radius: 999px;
    background: rgb(var(--ajsc-tint));
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    color: rgb(var(--ajsc-brand));
}

/* ── Pita penutup ───────────────────────────────────────────────────────── */

.ajsl-sec-end {
    padding-top: 24px;
}

.ajsl-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 40px 48px;
    border-radius: 28px;
    background: var(--ajsl-band);
    color: #fff;
    box-shadow: 0 30px 60px -34px rgba(1, 60, 170, 0.7);
}

.ajsl-band-title {
    margin: 0 0 8px;
    color: #fff !important;
    font-size: 32px !important;
    font-weight: 700;
    line-height: 1.15 !important;
    letter-spacing: -0.03em !important;
}

.ajsl-band-text {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.55;
}

/* ── Responsif ──────────────────────────────────────────────────────────── */

@media (max-width: 1199.98px) {

    .ajsl-hero-title {
        font-size: 52px !important;
    }

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

@media (max-width: 991.98px) {
    .ajsl-hero {
        padding: 40px 0 88px;
    }

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

    .ajsl-hero-copy {
        align-items: center;
        text-align: center;
    }

    .ajsl-hero-ctas {
        justify-content: center;
    }

    .ajsl-hero-visual {
        width: min(100%, 420px);
        margin: 0 auto;
    }

    .ajsl-tplcard {
        left: -12px;
        right: 12px;
    }

    .ajsl-h2 {
        font-size: 40px !important;
    }

    .ajsl-hero-title {
        font-size: 48px !important;
    }

    .ajsl-pane {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    .ajsl-band {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    .ajsl-hero {
        background: linear-gradient(180deg, #0168fa 0%, #b5d5ff 55%, var(--aj-page) 100%);
    }

    .ajsl-hero-title {
        font-size: 40px !important;
    }

    .ajsl-sec {
        padding: 56px 0;
    }

    .ajsl-h2 {
        font-size: 32px !important;
    }

    .ajsl-sub,
    .ajsl-hero-lead {
        font-size: 16px;
    }

    .ajsl-seg {
        width: auto;
        margin-inline: -16px;
        border-radius: 0;
        border-inline: 0;
    }

    .ajsl-pane {
        padding: 22px 18px;
    }

    .ajsl-rules > div {
        grid-template-columns: minmax(0, 1fr);
        gap: 4px;
    }

    .ajsl-band {
        padding: 30px 24px;
    }

    .ajsl-band-title {
        font-size: 24px !important;
    }
}

@media (max-width: 420px) {
    .ajsl-hero-title {
        font-size: 34px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ajsl-roll,
.ajsl-roll-word,
.ajsl-shot,
.ajsl-tplcard-text,
.ajsl-tplcard-ico,
.ajsl-dot {
        transition: none !important;
    }

    .ajsl-dot.is-on::after,
    .ajsl-pane.is-enter {
        animation: none !important;
    }
}

/* ============================================================================
   Sub-halaman: solusi-mua.html
   ========================================================================== */

/* ── Hero MUA ───────────────────────────────────────────────────────────── */

.ajsl-mhero {
    position: relative;
    padding: 40px 0 88px;
    overflow: hidden;
}

.ajsl-mhero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 540px);
    align-items: center;
    gap: 48px;
}

.ajsl-mhero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
}

.ajsl-crumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: var(--ajsl-soft);
}

.ajsl-crumb a {
    color: var(--ajsl-brand);
    text-decoration: none;
}

.ajsl-crumb a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ajsl-crumb svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    opacity: 0.6;
}

.ajsl-mhero-title {
    margin: 0;
    color: var(--ajsl-ink) !important;
    font-size: 60px !important;
    font-weight: 700;
    line-height: 1.04 !important;
    letter-spacing: -0.04em !important;
    text-wrap: balance;
}

.ajsl-hl {
    color: var(--ajsl-brand);
}

.ajsl-mhero-lead {
    max-width: 540px;
    margin: 0;
    color: var(--ajsl-soft);
    font-size: 18px;
    line-height: 1.55;
    text-wrap: pretty;
}

.ajsl-mhero-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: -4px 0 0;
    color: var(--ajsl-soft);
    font-size: 14px;
    line-height: 20px;
}

.ajsl-mhero-note svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    color: rgb(var(--ajsc-success));
}

.ajsl-mhero-visual {
    position: relative;
    padding: 0 0 0 64px;
}

.ajsl-mhero-photo {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 32px;
    overflow: hidden;
    background: var(--aj-soft-2);
    box-shadow: var(--aj-shadow-lg);
}

.ajsl-mhero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Kartu pengingat — salinan kartu aj-notif (aj-polish.css), dengan palet
   aplikasi yang sama. */
.ajsl-nt {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgb(var(--ajsc-surface));
    border: 1px solid rgba(15, 38, 90, 0.1);
    box-shadow: 0 18px 40px -20px rgba(12, 32, 74, 0.45), 0 2px 6px rgba(12, 32, 74, 0.06);
    font-family: 'Figtree', sans-serif;
    text-align: left;
}

.uc-dark .ajsl-nt {
    background: rgb(var(--color-surface-muted));
    border-color: rgb(var(--color-line));
}

.ajsl-nt-icon {
    position: relative;
    flex: none;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0168fa;
    color: #fff;
}

.ajsl-nt-icon > svg {
    width: 54%;
    height: 54%;
}

.ajsl-nt-ch {
    position: absolute;
    right: -2px;
    bottom: -2px;
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgb(var(--ajsc-surface));
    background: #25d366;
    color: #fff;
}

.uc-dark .ajsl-nt-ch {
    border-color: rgb(var(--color-surface-muted));
}

.ajsl-nt-ch > svg {
    width: 62%;
    height: 62%;
}

.ajsl-nt-main {
    flex: 1 1 auto;
    min-width: 0;
}

.ajsl-nt-head {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 18px;
}

.ajsl-nt-app {
    flex: none;
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: -0.01em;
    color: rgb(var(--ajsc-ink));
}

.ajsl-nt-to {
    flex: 0 1 auto;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 0 6px;
    border-radius: 999px;
    background: rgba(1, 104, 250, 0.09);
    color: #0168fa;
    font-size: 10.5px;
    font-weight: 600;
    line-height: 15px;
}

.uc-dark .ajsl-nt-to {
    background: rgba(76, 147, 255, 0.16);
    color: rgb(76, 147, 255);
}

.ajsl-nt-time {
    flex: none;
    margin-left: auto;
    font-size: 11px;
    line-height: 18px;
    white-space: nowrap;
    color: #97a3b6;
}

.ajsl-nt-text {
    margin: 4px 0 0;
    font-size: 13px;
    line-height: 18px;
    color: rgb(var(--ajsc-ink-soft));
}

.ajsl-nt-text b {
    font-weight: 600;
    color: rgb(var(--ajsc-ink));
}

/* Posisi dua kartu dijaga di luar wajah perias & pengantin di fotonya. */
.ajsl-mhero-nt {
    position: absolute;
    top: 70%;
    left: 0;
    z-index: 2;
    width: 340px;
    animation: ajsl-float 7s ease-in-out infinite;
}

.ajsl-mhero-svc {
    position: absolute;
    right: -40px;
    bottom: -52px;
    z-index: 2;
    width: 420px;
    filter: drop-shadow(0 20px 26px rgba(12, 32, 74, 0.22));
    animation: ajsl-float 7s ease-in-out -3.5s infinite;
}

.uc-dark .ajsl-mhero-svc {
    filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.55));
}

@keyframes ajsl-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* ── Yang bikin capek: pesan klien ──────────────────────────────────────── */

.ajsl-dms {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1180px;
    margin: 0 auto;
}

.ajsl-dm {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Latar obrolan: warna kertas WhatsApp di terang, gelap di gelap. */
.ajsl-dm-chat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    min-height: 196px;
    padding: 22px 18px;
    border-radius: 24px;
    background: #efeae2;
}

.uc-dark .ajsl-dm-chat {
    background: #0b141a;
}

.ajsl-dm-bubble {
    position: relative;
    max-width: 88%;
    margin: 0;
    padding: 8px 12px 8px 12px;
    border-radius: 4px 14px 14px 14px;
    background: #fff;
    box-shadow: 0 1px 1px rgba(11, 20, 26, 0.13);
    color: #111b21;
    font-size: 15px;
    line-height: 20px;
    text-align: left;
}

.ajsl-dm-bubble + .ajsl-dm-bubble {
    border-radius: 14px;
}

.uc-dark .ajsl-dm-bubble {
    background: #202c33;
    color: #e9edef;
}

.ajsl-dm-time {
    display: inline-block;
    margin: 0 0 -4px 10px;
    float: right;
    padding-top: 6px;
    font-size: 11px;
    line-height: 14px;
    color: #667781;
}

.uc-dark .ajsl-dm-time {
    color: #8696a0;
}

/* Bukti transfer yang dikirim klien — ilustrasi, bukan aplikasi bank mana pun. */
.ajsl-dm-receipt {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 6px;
    width: 176px;
    padding: 14px 14px 12px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 1px 1px rgba(11, 20, 26, 0.13);
    text-align: center;
}

.uc-dark .ajsl-dm-receipt {
    background: #202c33;
}

.ajsl-dm-receipt-ok {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1fa855;
}

.ajsl-dm-receipt-ok svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    color: #fff;
}

.ajsl-dm-receipt-title {
    font-size: 13px;
    font-weight: 700;
    line-height: 16px;
    color: #111b21;
}

.ajsl-dm-receipt-amt {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: #111b21;
}

.uc-dark .ajsl-dm-receipt-title,
.uc-dark .ajsl-dm-receipt-amt {
    color: #e9edef;
}

.ajsl-dm-receipt-line {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e3e7ea;
}

.ajsl-dm-receipt-line.is-short {
    width: 64%;
}

.uc-dark .ajsl-dm-receipt-line {
    background: #2d3b44;
}

.ajsl-dm-receipt-q {
    position: absolute;
    right: -58px;
    bottom: 14px;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgb(var(--ajsc-surface));
    border: 1px dashed #d98a00;
    color: #8a5300;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    white-space: nowrap;
    transform: rotate(-4deg);
}

.uc-dark .ajsl-dm-receipt-q {
    border-color: #e8a947;
    color: #e8a947;
}

.ajsl-dm-fix {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0 6px;
}

.ajsl-dm-fix svg {
    flex: none;
    width: 24px;
    height: 24px;
    padding: 3px;
    border-radius: 50%;
    background: rgba(1, 104, 250, 0.1);
    fill: currentColor;
    color: var(--ajsl-brand);
}

.uc-dark .ajsl-dm-fix svg {
    background: rgba(76, 147, 255, 0.16);
}

.ajsl-dm-fix p {
    margin: 0;
    color: var(--ajsl-soft);
    font-size: 16px;
    line-height: 1.55;
    text-wrap: pretty;
}

.ajsl-dm-fix b {
    display: block;
    margin-bottom: 2px;
    color: var(--ajsl-text);
    font-weight: 700;
}

/* ── Musim nikah: dua kalender ──────────────────────────────────────────── */

.ajsl-season {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    max-width: 1180px;
    margin: 0 auto;
    font-family: 'Figtree', sans-serif;
}

.ajsl-season-label {
    margin: 0 0 10px 4px;
    color: var(--ajsl-soft);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

/* Kalender dasbor, tampilan Bulan (dayGridMonth + custom.calendar.css). */
.ajsl-mcal {
    border-radius: 20px;
    background: rgb(var(--ajsc-surface));
    border: 1px solid rgb(var(--ajsc-line) / 0.8);
    box-shadow: var(--aj-shadow-sm);
    color: rgb(var(--ajsc-ink));
    overflow: hidden;
}

.ajsl-mcal-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
}

.ajsl-mcal-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
}

.ajsl-mcal-nav {
    display: flex;
    gap: 6px;
}

.ajsl-mcal-nav span {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    border: 1px solid rgb(var(--ajsc-line));
    color: rgb(var(--ajsc-ink-soft));
}

.ajsl-mcal-nav svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.ajsl-mcal-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    border-top: 1px solid rgb(var(--ajsc-line) / 0.8);
}

.ajsl-mcal-dow {
    padding: 10px 4px;
    border-bottom: 1px solid rgb(var(--ajsc-line) / 0.8);
    color: rgb(var(--ajsc-ink-soft));
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    text-align: center;
}

.ajsl-mcal-cell {
    position: relative;
    min-width: 0;
    min-height: 92px;
    padding: 0 0 4px;
    border-right: 1px solid rgb(var(--ajsc-line) / 0.8);
    border-bottom: 1px solid rgb(var(--ajsc-line) / 0.8);
    transition: background-color 0.15s ease;
}

.ajsl-mcal-cell:nth-child(7n) {
    border-right: 0;
}

.ajsl-mcal-cell.is-last-row {
    border-bottom: 0;
}

.ajsl-mcal-cell.is-other {
    background: rgb(var(--ajsc-canvas) / 0.55);
}

.ajsl-mcal-cell.is-hot {
    background: rgb(var(--ajsc-brand) / 0.07);
}

.ajsl-mcal-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 26px;
    margin: 4px;
    padding: 0 6px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
}

.ajsl-mcal-cell.is-other .ajsl-mcal-num {
    color: rgb(var(--ajsc-ink-soft));
    opacity: 0.75;
}

.ajsl-mcal-cell.is-hot .ajsl-mcal-num {
    background: rgb(var(--ajsc-brand));
    color: #fff;
}

/* Kapsul acara: isian tipis warna layanan, aksen kiri 3px. */
.ajsl-mcal-ev {
    display: block;
    margin: 0 4px 3px;
    padding: 3px 7px;
    border: 1px solid var(--c);
    border-left-width: 3px;
    border-radius: 7px;
    background: var(--cb);
    overflow: hidden;
    color: rgb(var(--ajsc-ink));
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ajsl-mcal-ev.is-libur {
    --c: rgb(194, 53, 43);
    --cb: rgb(253, 232, 230);
    color: rgb(194, 53, 43);
}

.uc-dark .ajsl-mcal-ev.is-libur {
    --c: rgb(255, 125, 114);
    --cb: rgb(61, 34, 32);
    color: rgb(255, 125, 114);
}

.ajsl-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    margin: 12px 4px 0;
    padding: 0;
    list-style: none;
}

.ajsl-legend li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--ajsl-soft);
    font-size: 12px;
    line-height: 16px;
}

.ajsl-legend i {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: var(--c);
}

/* Pemilih tanggal halaman booking (DatePicker v-calendar), salinan
   .ajd-cal di aj-hero-device.css pada skala 1:1. */
.ajsl-ccal {
    padding: 8px 8px 4px;
    border-radius: 20px;
    background: rgb(var(--ajsc-surface));
    border: 1px solid rgb(var(--ajsc-line) / 0.8);
    box-shadow: var(--aj-shadow-sm);
    color: rgb(var(--ajsc-ink));
}

.ajsl-ccal-head {
    display: grid;
    grid-template-columns: 28px 1fr 28px;
    gap: 4px;
    align-items: center;
    height: 30px;
    margin-top: 8px;
    padding: 0 10px;
}

.ajsl-ccal-month {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    white-space: nowrap;
}

.ajsl-ccal-arrow {
    display: grid;
    place-items: center;
    color: #64748b;
}

.uc-dark .ajsl-ccal-arrow {
    color: #cbd5e1;
}

.ajsl-ccal-arrow svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.ajsl-ccal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    justify-items: center;
    align-items: center;
    margin: 10px 0 6px;
    padding: 4px 0;
}

.ajsl-ccal-dow {
    align-self: stretch;
    padding: 4px 0 6px;
    text-align: center;
    color: rgb(var(--ajsc-ink-soft));
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
}

.ajsl-ccal-day {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 4px 0;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    transition:
        box-shadow 0.15s ease,
        background-color 0.15s ease;
}

.ajsl-ccal-day.is-off {
    color: #94a3b8;
    font-weight: 500;
}

.uc-dark .ajsl-ccal-day.is-off {
    color: #475569;
}

.ajsl-ccal-day.is-open {
    background: rgb(var(--ajsc-tint));
    border-color: rgb(var(--ajsc-brand) / 0.45);
    cursor: pointer;
}

.ajsl-ccal-day.is-pick {
    background: rgb(var(--ajsc-brand));
    border-color: rgb(var(--ajsc-brand));
    color: rgb(var(--ajsc-surface));
    font-weight: 700;
    box-shadow: 0 0 0 3px rgb(var(--ajsc-brand) / 0.28);
}

.ajsl-ccal-day.is-hot:not(.is-pick) {
    box-shadow: 0 0 0 2px rgb(var(--ajsc-brand) / 0.55);
}

/* Keterangan tanggal yang sedang ditunjuk. */
.ajsl-dayinfo {
    margin-top: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgb(var(--ajsc-surface));
    border: 1px solid rgb(var(--ajsc-line) / 0.8);
    min-height: 118px;
}

.ajsl-dayinfo-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.ajsl-dayinfo-date {
    color: rgb(var(--ajsc-ink));
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

.ajsl-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgb(var(--ajsc-surface-muted));
    color: rgb(var(--ajsc-ink-soft));
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    white-space: nowrap;
}

.ajsl-chip.is-brand {
    background: rgb(var(--ajsc-brand) / 0.1);
    color: rgb(var(--ajsc-brand));
}

.ajsl-chip.is-full {
    background: rgb(var(--ajsc-surface-muted));
    color: rgb(var(--ajsc-ink));
}

.ajsl-chip.is-danger {
    background: rgb(253, 232, 230);
    color: rgb(194, 53, 43);
}

.uc-dark .ajsl-chip.is-danger {
    background: rgb(61, 34, 32);
    color: rgb(255, 125, 114);
}

.ajsl-dayinfo-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ajsl-dayinfo-list li {
    display: grid;
    grid-template-columns: 4px 92px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    color: rgb(var(--ajsc-ink-soft));
    font-size: 13px;
    line-height: 18px;
}

.ajsl-dayinfo-list i {
    align-self: stretch;
    border-radius: 2px;
    background: var(--c);
}

.ajsl-dayinfo-list b {
    color: rgb(var(--ajsc-ink));
    font-weight: 600;
}

.ajsl-dayinfo-list span:last-child {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ajsl-dayinfo-empty {
    margin: 0;
    color: rgb(var(--ajsc-ink-soft));
    font-size: 13px;
    line-height: 18px;
}

/* ── Paket, add-on, DP ──────────────────────────────────────────────────── */

.ajsl-book {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 480px);
    gap: 32px;
    align-items: start;
    max-width: 1120px;
    margin: 0 auto;
}

.ajsl-book-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ajsl-book-svc {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 18px;
    background: none;
    cursor: pointer;
    transition: transform 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.ajsl-book-svc:active {
    transform: scale(0.99);
}

.ajsl-book-svc:focus-visible {
    outline: 2px solid rgb(var(--ajsc-brand));
    outline-offset: 3px;
}

.ajsl-book-svc .ajsc-thumb,
.ajsl-book-svc .ajsc-body {
    transition:
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}

.ajsl-book-svc .ajsc-title,
.ajsl-book-svc .ajsc-meta,
.ajsl-book-svc .ajsc-price,
.ajsl-book-svc .ajsc-info {
    display: flex;
}

.ajsl-book-svc .ajsc-title {
    display: block;
}

.ajsl-book-svc .ajsc-info {
    flex-direction: column;
}

.ajsl-book-svc:hover .ajsc-body {
    border-color: rgb(var(--ajsc-brand) / 0.45);
}

.ajsl-book-svc[aria-checked='true'] .ajsc-thumb,
.ajsl-book-svc[aria-checked='true'] .ajsc-body {
    border-color: rgb(var(--ajsc-brand));
    box-shadow: 0 0 0 1px rgb(var(--ajsc-brand));
}

.ajsl-form {
    position: sticky;
    top: 104px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 22px;
    border-radius: 24px;
    background: rgb(var(--ajsc-surface));
    border: 1px solid rgb(var(--ajsc-line) / 0.8);
    box-shadow: var(--aj-shadow-md);
    color: rgb(var(--ajsc-ink));
    font-family: 'Figtree', sans-serif;
    text-align: left;
}

.ajsl-form-head {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgb(var(--ajsc-line) / 0.8);
}

.ajsl-form-kicker {
    color: rgb(var(--ajsc-ink-soft));
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
}

.ajsl-form-title {
    margin-top: 2px;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.01em;
}

.ajsl-form-meta {
    color: rgb(var(--ajsc-ink-soft));
    font-size: 14px;
    line-height: 20px;
}

.ajsl-form-label {
    display: block;
    margin-bottom: 8px;
    padding: 0 4px;
    color: rgb(var(--ajsc-ink-soft));
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
}

/* AddonPicker.vue */
.ajsl-addon-group[hidden] {
    display: none;
}

.ajsl-addon-title {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.ajsl-addon-title span {
    margin-left: 4px;
    color: rgb(var(--ajsc-ink-soft));
    font-size: 14px;
    font-weight: 400;
}

.ajsl-addons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ajsl-addon {
    border-radius: 12px;
    border: 1px solid rgb(var(--ajsc-line));
    background: rgb(var(--ajsc-surface));
    transition:
        border-color 0.15s ease,
        background-color 0.15s ease;
}

.ajsl-addon[hidden] {
    display: none;
}

.ajsl-addon.is-on {
    border-color: rgb(var(--ajsc-brand));
    background: rgb(var(--ajsc-tint));
}

.ajsl-addon-btn {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    padding: 12px;
    border: 0;
    background: none;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: transform 0.15s ease;
}

.ajsl-addon-btn:active {
    transform: scale(0.99);
}

.ajsl-addon-btn:focus-visible {
    outline: 2px solid rgb(var(--ajsc-brand));
    outline-offset: -2px;
    border-radius: 12px;
}

.ajsl-addon-check {
    display: grid;
    place-items: center;
    flex: none;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    border-radius: 6px;
    border: 1px solid rgb(var(--ajsc-line));
    background: rgb(var(--ajsc-canvas));
    transition:
        background-color 0.15s ease,
        border-color 0.15s ease;
}

.ajsl-addon-check svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    color: rgb(var(--ajsc-on-accent));
    opacity: 0;
}

.ajsl-addon.is-on .ajsl-addon-check {
    border-color: rgb(var(--ajsc-brand));
    background: rgb(var(--ajsc-brand));
}

.ajsl-addon.is-on .ajsl-addon-check svg {
    opacity: 1;
}

.ajsl-addon-ico {
    display: grid;
    place-items: center;
    flex: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgb(var(--ajsc-surface-muted));
    color: rgb(var(--ajsc-ink-soft));
}

.ajsl-addon-ico svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.ajsl-addon-text {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
}

.ajsl-addon-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: rgb(var(--ajsc-ink));
}

.ajsl-addon-desc {
    margin-top: 2px;
    font-size: 12px;
    line-height: 16px;
    color: rgb(var(--ajsc-ink-soft));
}

.ajsl-addon-price {
    flex: none;
    font-size: 14px;
    line-height: 20px;
    color: rgb(var(--ajsc-ink));
}

.ajsl-addon-qty {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-top: 1px solid rgb(var(--ajsc-brand) / 0.2);
}

.ajsl-addon-qty[hidden] {
    display: none;
}

.ajsl-addon-qty-label {
    font-size: 14px;
    color: rgb(var(--ajsc-ink-soft));
}

.ajsl-addon-stepper {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.ajsl-addon-stepper button {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: rgb(var(--ajsc-surface));
    color: rgb(var(--ajsc-ink-soft));
    cursor: pointer;
    transition:
        transform 0.15s ease,
        opacity 0.15s ease;
}

.ajsl-addon-stepper button:active {
    transform: scale(0.94);
}

.ajsl-addon-stepper button:disabled {
    opacity: 0.4;
    cursor: default;
}

.ajsl-addon-stepper svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.ajsl-addon-stepper span {
    width: 32px;
    text-align: center;
    font-size: 14px;
    color: rgb(var(--ajsc-ink));
}

.ajsl-addon-line {
    width: 92px;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    color: rgb(var(--ajsc-ink));
}

.ajsl-addon-sum {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgb(var(--ajsc-surface-muted));
}

.ajsl-addon-sum[hidden] {
    display: none;
}

.ajsl-addon-sum span {
    font-size: 14px;
    color: rgb(var(--ajsc-ink-soft));
}

.ajsl-addon-sum b {
    font-size: 16px;
    font-weight: 700;
    color: rgb(var(--ajsc-ink));
}

/* Tipe pembayaran — segmented control CustomerForm.vue #payment_options_1 */
.ajsl-paytype {
    display: flex;
    gap: 4px;
    padding: 4px;
    border-radius: 12px;
    border: 1px solid rgb(var(--ajsc-line));
    background: rgb(var(--ajsc-canvas));
}

.ajsl-paytype button {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: rgb(var(--ajsc-ink-soft));
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    cursor: pointer;
    transition:
        background-color 0.15s ease,
        color 0.15s ease;
}

.ajsl-paytype button[aria-pressed='true'] {
    background: rgb(var(--ajsc-surface));
    color: rgb(var(--ajsc-ink));
    box-shadow: 0 1px 3px rgba(20, 30, 60, 0.1);
}

.ajsl-paytype button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.ajsl-dpchip {
    padding: 2px 8px;
    border-radius: 999px;
    background: rgb(var(--ajsc-tint));
    color: rgb(var(--ajsc-brand));
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
}

/* DataTable.vue, mode compact */
.ajsl-dtable {
    margin-top: 12px;
    border-radius: 8px;
    border: 1px solid rgb(var(--ajsc-line));
    background: rgb(var(--ajsc-surface));
    overflow: hidden;
    transform-origin: top;
}

.ajsl-dtable[hidden] {
    display: none;
}

.ajsl-dtable.is-enter {
    animation: ajsl-drop 0.2s ease-out;
}

@keyframes ajsl-drop {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.ajsl-dt-row {
    display: grid;
    grid-template-columns: 40px minmax(0, 1.25fr) minmax(0, 1fr) minmax(0, 1.15fr) 44px;
    align-items: center;
    border-bottom: 1px solid rgb(var(--ajsc-line));
    background: rgb(var(--ajsc-canvas));
    font-size: 14px;
    line-height: 20px;
    color: rgb(var(--ajsc-ink));
}

/* Baris data ganjil putih, genap kanvas — striped DataTable. Baris kepala
   anak pertama, jadi baris data pertama jatuh di anak genap. */
.ajsl-dt-row:nth-child(even) {
    background: rgb(var(--ajsc-surface));
}

.ajsl-dt-row:last-child {
    border-bottom: 0;
}

.ajsl-dt-row > span {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 12px 2px;
}

.ajsl-dt-row > span:first-child {
    justify-content: center;
    padding-left: 8px;
}

.ajsl-dt-row > span:last-child {
    justify-content: center;
    align-self: stretch;
    border-left: 1px solid rgb(var(--ajsc-line));
}

.ajsl-dt-row.is-head {
    font-weight: 600;
}

.ajsl-dt-num {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgb(var(--ajsc-surface-muted));
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
}

.ajsl-dt-due {
    flex-direction: column;
    align-items: flex-start !important;
}

.ajsl-dt-due small {
    font-size: 12px;
    line-height: 16px;
    color: rgb(var(--ajsc-ink-soft));
}

.ajsl-dt-forced {
    width: 20px;
    height: 20px;
    fill: currentColor;
    color: rgb(var(--ajsc-ink-soft));
}

.ajsl-dt-check {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: rgb(var(--ajsc-brand));
    cursor: pointer;
}

/* ── Detail hari H ──────────────────────────────────────────────────────── */

.ajsl-sec-tight {
    padding-bottom: 56px;
}

.ajsl-specs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 1180px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--aj-line);
}

.ajsl-specs li {
    padding: 28px 28px 30px 0;
    border-bottom: 1px solid var(--aj-line);
}

.ajsl-specs li:not(:nth-child(4n + 1)) {
    padding-left: 28px;
    border-left: 1px solid var(--aj-line);
}

.ajsl-specs svg {
    width: 28px;
    height: 28px;
    margin-bottom: 16px;
    fill: currentColor;
    color: var(--ajsl-brand);
}

.ajsl-specs h3 {
    margin: 0 0 6px;
    color: var(--ajsl-ink) !important;
    font-size: 18px !important;
    font-weight: 700;
    line-height: 1.3 !important;
    letter-spacing: -0.01em !important;
}

.ajsl-specs p {
    margin: 0;
    color: var(--ajsl-soft);
    font-size: 16px;
    line-height: 1.5;
    text-wrap: pretty;
}

/* ── Portofolio ─────────────────────────────────────────────────────────── */

.ajsl-looks-sec {
    overflow: hidden;
}

.ajsl-looks-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 36px;
}

.ajsl-looks-head > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.ajsl-looks-head .ajsl-sub {
    max-width: 440px;
}

.ajsl-looks {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: start;
    gap: 16px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 16px 24px;
}

.ajsl-look {
    position: relative;
    margin: 0;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
    overflow: hidden;
    background: var(--aj-soft-2);
}

/* margin, bukan transform: data-anime menulis transform inline di tiap
   kartu dan akan menimpanya. */
.ajsl-look:nth-child(even) {
    margin-top: 28px;
}

.ajsl-look img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.ajsl-look:hover img {
    transform: scale(1.04);
}

.ajsl-look figcaption {
    position: absolute;
    left: 10px;
    bottom: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: rgb(39, 53, 74);
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
}

/* ── Pita penutup: dua aksi ─────────────────────────────────────────────── */

.ajsl-band-actions {
    display: flex;
    flex: none;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.ajsl-band-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    opacity: 0.9;
}

.ajsl-band-link:hover {
    color: #fff;
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ajsl-band-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ── Responsif sub-halaman ──────────────────────────────────────────────── */

@media (max-width: 1199.98px) {
    .ajsl-mhero-title {
        font-size: 52px !important;
    }

    .ajsl-mhero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
    }

    .ajsl-mhero-svc {
        width: 380px;
    }

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

    .ajsl-specs li:not(:nth-child(4n + 1)) {
        padding-left: 0;
        border-left: 0;
    }

    .ajsl-specs li:nth-child(even) {
        padding-left: 28px;
        border-left: 1px solid var(--aj-line);
    }

    .ajsl-season {
        grid-template-columns: minmax(0, 1fr);
        max-width: 760px;
    }

    .ajsl-season-panel.is-client {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        column-gap: 16px;
    }

    .ajsl-season-panel.is-client .ajsl-season-label {
        grid-column: 1 / -1;
    }

    .ajsl-dayinfo {
        margin-top: 0;
    }
}

@media (max-width: 991.98px) {
    .ajsl-mhero {
        padding: 28px 0 72px;
    }

    .ajsl-mhero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 44px;
    }

    .ajsl-mhero-copy {
        align-items: center;
        text-align: center;
    }

    .ajsl-mhero-title {
        font-size: 48px !important;
    }

    .ajsl-mhero-copy .ajsl-hero-ctas {
        justify-content: center;
    }

    .ajsl-mhero-visual {
        width: min(100%, 460px);
        margin: 0 auto;
        padding-left: 0;
    }

    .ajsl-mhero-nt {
        left: -20px;
        top: 62%;
        width: min(330px, 86%);
    }

    .ajsl-mhero-svc {
        left: -12px;
        right: -12px;
        width: auto;
    }

    .ajsl-dms {
        grid-template-columns: minmax(0, 1fr);
        max-width: 560px;
    }

    .ajsl-dm-chat {
        min-height: 0;
    }

    .ajsl-book {
        grid-template-columns: minmax(0, 1fr);
        max-width: 560px;
    }

    .ajsl-form {
        position: static;
    }

    .ajsl-looks-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .ajsl-looks {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding: 0 16px 32px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .ajsl-looks::-webkit-scrollbar {
        display: none;
    }

    .ajsl-look {
        flex: none;
        width: 220px;
        scroll-snap-align: start;
    }

    .ajsl-band-actions {
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    .ajsl-mhero-title {
        font-size: 40px !important;
    }

    /* Di ponsel fotonya sempit: kartu pengingat menutupi wajah, jadi yang
       tinggal hanya kartu layanan. */
    .ajsl-mhero-nt {
        display: none;
    }

    .ajsl-mhero-lead {
        font-size: 16px;
    }

    .ajsl-season-panel.is-client {
        display: block;
    }

    .ajsl-dayinfo {
        margin-top: 12px;
    }

    .ajsl-mcal-cell {
        min-height: 64px;
    }

    .ajsl-mcal-ev {
        margin: 0 2px 2px;
        padding: 0;
        height: 6px;
        border-width: 0;
        border-radius: 3px;
        background: var(--c);
        font-size: 0;
    }

    .ajsl-mcal-ev.is-libur {
        background: var(--c);
    }

    .ajsl-mcal-num {
        min-width: 22px;
        height: 22px;
        margin: 3px;
        padding: 0 4px;
        font-size: 12px;
    }

    .ajsl-ccal-day {
        width: 36px;
        height: 36px;
    }

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

    .ajsl-specs li,
    .ajsl-specs li:nth-child(even) {
        padding: 22px 0;
        border-left: 0;
    }

    .ajsl-specs svg {
        margin-bottom: 10px;
    }

    .ajsl-dt-row {
        grid-template-columns: 32px minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1.2fr) 40px;
        font-size: 12px;
    }

    .ajsl-chip {
        padding: 3px 8px;
    }

    .ajsl-form {
        padding: 18px 16px;
    }

    .ajsl-dm-receipt-q {
        right: -40px;
    }
}

@media (max-width: 420px) {
    .ajsl-mhero-title {
        font-size: 34px !important;
    }

    .ajsl-mhero-svc .ajsc-thumb {
        width: 36%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ajsl-mhero-nt,
    .ajsl-mhero-svc {
        animation: none;
    }

    .ajsl-look img,
    .ajsl-mcal-cell,
    .ajsl-ccal-day,
    .ajsl-addon,
    .ajsl-addon-check {
        transition: none !important;
    }

    .ajsl-dtable.is-enter {
        animation: none;
    }
}

/* ============================================================================
   Sub-halaman kategori (solusi-kebugaran.html, dst.) — tambahan di atas
   komponen solusi-mua.html.
   ========================================================================== */

/* Foto hero persegi, untuk foto yang subjeknya berdampingan. */
.ajsl-mhero-visual.is-square .ajsl-mhero-photo {
    aspect-ratio: 1 / 1;
}

.ajsl-mhero-visual.is-square .ajsl-mhero-nt {
    top: auto;
    bottom: 92px;
}

/* ── Jam sibuk: kalender pekan + pilih jam ──────────────────────────────── */

.ajsl-week {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    max-width: 1180px;
    margin: 0 auto;
    font-family: 'Figtree', sans-serif;
}

/* Kalender dasbor tampilan Pekan (timeGridWeek + custom.calendar.css). */
.ajsl-wk {
    --row: 21px;
    border-radius: 20px;
    background: rgb(var(--ajsc-surface));
    border: 1px solid rgb(var(--ajsc-line) / 0.8);
    box-shadow: var(--aj-shadow-sm);
    color: rgb(var(--ajsc-ink));
    overflow: hidden;
}

.ajsl-wk-scroll {
    overflow-x: auto;
    scrollbar-width: thin;
}

.ajsl-wk-grid {
    display: grid;
    grid-template-columns: 52px repeat(7, minmax(0, 1fr));
    grid-template-rows: auto auto calc(var(--slots) * var(--row));
    min-width: 640px;
    border-top: 1px solid rgb(var(--ajsc-line) / 0.8);
}

.ajsl-wk-corner,
.ajsl-wk-allday-axis {
    border-bottom: 1px solid rgb(var(--ajsc-line) / 0.8);
}

.ajsl-wk-head {
    padding: 10px 4px;
    border-bottom: 1px solid rgb(var(--ajsc-line) / 0.8);
    border-left: 1px solid rgb(var(--ajsc-line) / 0.8);
    color: rgb(var(--ajsc-ink-soft));
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    text-align: center;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.ajsl-wk-allday {
    min-height: 30px;
    padding: 3px 0;
    border-bottom: 1px solid rgb(var(--ajsc-line) / 0.8);
    border-left: 1px solid rgb(var(--ajsc-line) / 0.8);
    transition: background-color 0.15s ease;
}

.ajsl-wk-allday .ajsl-mcal-ev {
    margin: 0 3px;
}

/* Sumbu jam: satu label per jam di garis atas slotnya. */
.ajsl-wk-axis {
    position: relative;
}

.ajsl-wk-axis span {
    position: absolute;
    top: calc(var(--at) * var(--row));
    right: 6px;
    transform: translateY(-50%);
    color: rgb(var(--ajsc-ink-soft));
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
}

.ajsl-wk-axis span:first-child {
    transform: none;
    top: 4px;
}

/* Kolom hari: garis tiap jam (tebal) dan tiap setengah jam (putus-putus). */
.ajsl-wk-col {
    position: relative;
    border-left: 1px solid rgb(var(--ajsc-line) / 0.8);
    background-image:
        linear-gradient(rgb(var(--ajsc-line) / 0.8) 1px, transparent 1px),
        linear-gradient(rgb(var(--ajsc-line) / 0.35) 1px, transparent 1px);
    background-size:
        100% calc(var(--row) * 2),
        100% var(--row);
    transition: background-color 0.15s ease;
}

.ajsl-wk-col.is-hot,
.ajsl-wk-allday.is-hot {
    background-color: rgb(var(--ajsc-tint) / 0.45);
}

.ajsl-wk-head.is-hot {
    color: rgb(var(--ajsc-brand));
}

/* Blok acara: isian tipis warna layanan, aksen kiri 4px, jam di atas judul. */
.ajsl-wk-ev {
    position: absolute;
    top: calc(var(--top) * var(--row) + 1px);
    left: 2px;
    right: 3px;
    height: calc(var(--len) * var(--row) - 2px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--c);
    border-left-width: 4px;
    border-radius: 8px;
    background: var(--cb);
}

.ajsl-wk-time {
    padding: 4px 6px 0;
    overflow: hidden;
    color: rgb(var(--ajsc-ink-soft));
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 14px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ajsl-wk-title {
    padding: 1px 6px 4px;
    overflow: hidden;
    color: rgb(var(--ajsc-ink));
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* Pilih jam di halaman booking klien (slot-head + daftar slot). */
.ajsl-sl {
    border-radius: 20px;
    background: rgb(var(--ajsc-surface));
    border: 1px solid rgb(var(--ajsc-line) / 0.8);
    box-shadow: var(--aj-shadow-sm);
    color: rgb(var(--ajsc-ink));
    overflow: hidden;
}

.ajsl-sl-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid rgb(var(--ajsc-line));
}

.ajsl-sl-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.ajsl-sl-back {
    display: grid;
    place-items: center;
    flex: none;
    width: 40px;
    height: 40px;
    border: 1px solid rgb(var(--ajsc-line));
    border-radius: 999px;
}

.ajsl-sl-back svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.ajsl-sl-label {
    display: block;
    color: rgb(var(--ajsc-ink-soft));
    font-size: 12px;
    line-height: 16px;
}

.ajsl-sl-date {
    display: block;
    margin-top: 2px;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    white-space: nowrap;
}

.ajsl-sl-change {
    display: flex;
    flex: none;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid rgb(var(--ajsc-line));
    border-radius: 999px;
    color: rgb(var(--ajsc-brand));
    font-size: 14px;
    font-weight: 600;
}

.ajsl-sl-change svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.ajsl-sl-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 468px;
    padding: 16px;
    overflow-y: auto;
    -webkit-mask-image: linear-gradient(180deg, #000 88%, transparent);
    mask-image: linear-gradient(180deg, #000 88%, transparent);
    scrollbar-width: thin;
}

.ajsl-sl-slot {
    flex: none;
    padding: 14px 0;
    border: 1px solid rgb(var(--ajsc-line));
    border-radius: 12px;
    background: rgb(var(--ajsc-canvas));
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.ajsl-sl-empty {
    margin: 0;
    padding: 40px 20px;
    color: rgb(var(--ajsc-ink-soft));
    font-size: 14px;
    text-align: center;
}

.ajsl-sl-note {
    margin: 12px 4px 0;
    color: var(--ajsl-soft);
    font-size: 14px;
    line-height: 1.5;
    text-wrap: pretty;
}

.ajsl-sl-note b {
    color: var(--ajsl-text);
    font-weight: 700;
}

@media (max-width: 1199.98px) {
    .ajsl-week {
        grid-template-columns: minmax(0, 1fr);
        max-width: 760px;
    }

    .ajsl-sl-list {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-height: 260px;
    }
}

@media (max-width: 767.98px) {
    .ajsl-wk {
        --row: 18px;
    }

    .ajsl-sl-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ajsl-mhero-visual.is-square .ajsl-mhero-nt {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ajsl-wk-head,
    .ajsl-wk-col,
    .ajsl-wk-allday {
        transition: none;
    }
}

/* ── Hari praktik: Rangkuman + detail jadwal (solusi-kesehatan.html) ───── */

.ajsl-clinic {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    max-width: 1120px;
    margin: 0 auto;
    font-family: 'Figtree', sans-serif;
}

.ajsl-clinic-list {
    padding: 18px 16px 18px 8px;
    border-radius: 20px;
    background: rgb(var(--ajsc-surface));
    border: 1px solid rgb(var(--ajsc-line) / 0.8);
    box-shadow: var(--aj-shadow-sm);
    color: rgb(var(--ajsc-ink));
}

/* Kartu listMonth: kolom tanggal 20%, kartu 80%. */
.ajsl-ev-row {
    display: flex;
    align-items: flex-start;
}

.ajsl-ev-day {
    flex: 0 0 20%;
    max-width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    padding: 7px 8px 8px;
    text-align: center;
}

.ajsl-ev-dow {
    color: rgb(var(--ajsc-ink-soft));
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.ajsl-ev-num {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.ajsl-ev-card {
    position: relative;
    flex: 0 0 calc(80% - 5px);
    max-width: calc(80% - 5px);
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0 0 12px;
    padding: 13px 16px 13px 22px;
    border: 1px solid rgb(var(--ajsc-line));
    border-radius: 12px;
    background: rgb(var(--ajsc-surface));
    color: inherit;
    font: inherit;
    text-align: left;
    overflow: hidden;
    cursor: pointer;
    transition:
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}

.ajsl-ev-row:last-child .ajsl-ev-card {
    margin-bottom: 0;
}

.ajsl-ev-card:hover {
    border-color: rgb(var(--ajsc-brand) / 0.45);
}

.ajsl-ev-card[aria-pressed='true'] {
    border-color: rgb(var(--ajsc-brand));
    box-shadow: 0 0 0 1px rgb(var(--ajsc-brand));
}

.ajsl-ev-card:focus-visible {
    outline: 2px solid rgb(var(--ajsc-brand));
    outline-offset: 2px;
}

.ajsl-ev-bar {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 5px;
}

.ajsl-ev-title {
    overflow: hidden;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.01em;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ajsl-ev-line {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
    color: rgb(var(--ajsc-ink-soft));
    font-size: 12px;
    line-height: 1.45;
}

.ajsl-ev-line svg {
    flex: none;
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.ajsl-ev-line span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* Detail jadwal — DetailBooking.vue. */
.ajsl-clinic-detail {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px;
    border-radius: 20px;
    background: rgb(var(--ajsc-surface));
    border: 1px solid rgb(var(--ajsc-line) / 0.8);
    box-shadow: var(--aj-shadow-md);
    color: rgb(var(--ajsc-ink));
}

.ajsl-clinic-detail.is-enter {
    animation: ajsl-pane-in 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.ajsl-dtl-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ajsl-dtl-bar {
    flex: none;
    width: 4px;
    height: 22px;
    border-radius: 2px;
}

.ajsl-dtl-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.01em;
}

.ajsl-dtl-times {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgb(var(--ajsc-line));
}

.ajsl-dtl-times span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgb(var(--ajsc-ink-soft));
    font-size: 14px;
    line-height: 16px;
}

.ajsl-dtl-times svg,
.ajsl-dtl-label svg {
    flex: none;
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.ajsl-dtl-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgb(var(--ajsc-line));
}

.ajsl-dtl-label {
    flex: none;
    width: 76px;
    padding: 1px 0;
    color: rgb(var(--ajsc-ink-soft));
    font-size: 14px;
    line-height: 20px;
}

.ajsl-dtl-col {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    gap: 2px;
    padding: 1px 0;
}

.ajsl-dtl-val {
    overflow-wrap: anywhere;
    font-size: 14px;
    line-height: 20px;
}

.ajsl-dtl-link {
    overflow: hidden;
    color: rgb(var(--ajsc-brand));
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ajsl-dtl-qa {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgb(var(--ajsc-line));
}

.ajsl-dtl-qa-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}

.ajsl-dtl-q {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ajsl-dtl-q-label {
    font-size: 14px;
    line-height: 20px;
}

.ajsl-dtl-q-answer {
    color: rgb(var(--ajsc-ink-soft));
    font-size: 14px;
    line-height: 20px;
}

/* Detail ikut turun selagi daftar di kirinya dibaca. */
@media (min-width: 992px) {
    .ajsl-clinic > div:last-child {
        position: sticky;
        top: 96px;
    }
}

@media (max-width: 991.98px) {
    .ajsl-clinic {
        grid-template-columns: minmax(0, 1fr);
        max-width: 560px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ajsl-clinic-detail.is-enter {
        animation: none;
    }
}

/* ── Pelunasan bertermin: momen + halaman invoice klien (solusi-kreatif.html) ── */

.ajsl-nt[data-ch='mail'] .ajsl-nt-ch {
    background: #d93b3b;
}

.ajsl-inv {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
    font-family: 'Figtree', sans-serif;
}

/* Momen: daftar bernomor dengan garis putus-putus di antara nomornya. */
.ajsl-inv-steps {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Garis putus-putus dari satu nomor ke nomor berikutnya. */
.ajsl-inv-steps li:not(:last-child) .ajsl-inv-btn::after {
    content: '';
    position: absolute;
    top: 56px;
    bottom: -18px;
    left: 33px;
    border-left: 2px dashed rgb(var(--ajsc-line));
}

.ajsl-inv-steps li + li {
    margin-top: 6px;
}

.ajsl-inv-btn {
    position: relative;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    column-gap: 16px;
    width: 100%;
    padding: 16px;
    border: 1px solid transparent;
    border-radius: 18px;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.ajsl-inv-btn:hover {
    background: rgb(var(--ajsc-surface) / 0.6);
}

.ajsl-inv-btn[aria-pressed='true'] {
    background: var(--ajsl-card);
    border-color: rgb(var(--ajsc-line) / 0.8);
    box-shadow: var(--aj-shadow-sm);
}

.ajsl-inv-btn:focus-visible {
    outline: 2px solid var(--ajsl-brand);
    outline-offset: 2px;
}

.ajsl-inv-num {
    grid-row: 1 / span 3;
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgb(var(--ajsc-surface-muted));
    color: var(--ajsl-soft);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.ajsl-inv-btn[aria-pressed='true'] .ajsl-inv-num {
    background: var(--ajsl-brand);
    color: #fff;
}

.uc-dark .ajsl-inv-btn[aria-pressed='true'] .ajsl-inv-num {
    color: rgb(var(--ajsc-on-accent));
}

.ajsl-inv-when {
    color: var(--ajsl-soft);
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
}

.ajsl-inv-what {
    margin-top: 2px;
    color: var(--ajsl-ink);
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: -0.01em;
}

.ajsl-inv-short,
.ajsl-inv-mdesc {
    display: none;
}

.ajsl-inv-desc {
    margin-top: 4px;
    color: var(--ajsl-soft);
    font-size: 14px;
    line-height: 1.55;
    text-wrap: pretty;
}

/* Halaman invoice publik (InvoiceSuccess.vue): latar gradien birunya, logo,
   kabar utama, lalu kartu pembayaran. */
.ajsl-inv-page {
    padding: 28px 24px 28px;
    border-radius: 24px;
    border: 1px solid rgb(var(--ajsc-line) / 0.8);
    background: linear-gradient(to top, #d6e8ff, #edf4ff, rgb(var(--ajsc-canvas)));
    box-shadow: var(--aj-shadow-md);
    color: rgb(var(--ajsc-ink));
}

.uc-dark .ajsl-inv-page {
    background: linear-gradient(to top, #0f1b2e, #121722, rgb(var(--ajsc-canvas)));
}

.ajsl-inv-logo {
    display: block;
    width: 120px;
    height: 22px;
    margin: 0 auto;
}

.ajsl-inv-body {
    max-width: 440px;
    margin: 0 auto;
}

.ajsl-inv-news {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 24px;
    text-align: center;
}

.ajsl-inv-news.is-enter > * {
    animation: ajsl-inv-rise 0.56s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: var(--d, 0ms);
}

/* Lencana (SuccessBadge.vue): lingkaran biru 56px, tanda 28px, satu riak. */
.ajsl-inv-badge {
    position: relative;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
}

.ajsl-inv-badge::before,
.ajsl-inv-badge > span {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgb(var(--ajsc-brand));
}

.ajsl-inv-badge::before {
    opacity: 0;
}

.ajsl-inv-badge.is-ping::before {
    animation: ajsl-inv-ping 0.5s cubic-bezier(0, 0, 0.2, 1) 0.45s 1 forwards;
}

.ajsl-inv-badge svg {
    position: relative;
    width: 28px;
    height: 28px;
    fill: currentColor;
    color: rgb(var(--ajsc-on-accent));
}

.ajsl-inv-title {
    margin: 20px 0 0;
    color: rgb(var(--ajsc-ink));
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.01em;
    text-wrap: balance;
}

.ajsl-inv-amount {
    margin: 2px 0 0;
    color: rgb(var(--ajsc-ink));
    font-size: 30px;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.ajsl-inv-note {
    margin: 2px 0 0;
    color: rgb(var(--ajsc-ink-soft));
    font-size: 14px;
    line-height: 20px;
}

.ajsl-inv-sub {
    max-width: 360px;
    margin: 8px 0 0;
    color: rgb(var(--ajsc-ink-soft));
    font-size: 14px;
    line-height: 20px;
    text-wrap: pretty;
}

.ajsl-inv-amount + .ajsl-inv-note + .ajsl-inv-sub {
    margin-top: 12px;
}

/* InvoicePaymentCard.vue */
.ajsl-inv-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgb(var(--ajsc-line));
    background: rgb(var(--ajsc-surface));
}

.ajsl-inv-price {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ajsl-inv-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}

.ajsl-inv-total {
    display: block;
    margin-top: 4px;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    font-variant-numeric: tabular-nums;
    transition: color 0.3s ease;
}

.ajsl-inv-total.is-settled {
    color: rgb(var(--ajsc-brand));
}

.ajsl-inv-bar {
    display: flex;
    gap: 4px;
}

.ajsl-inv-seg {
    position: relative;
    flex: 1;
    height: 6px;
    overflow: hidden;
    border-radius: 999px;
    background: rgb(var(--ajsc-surface-muted));
}

.ajsl-inv-seg i {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: rgb(var(--ajsc-brand));
}

.ajsl-inv-seg i.is-fresh {
    transform-origin: left center;
    animation: ajsl-inv-fill 0.64s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(360ms + var(--fresh-i, 0) * 160ms);
}

.ajsl-inv-sum {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: rgb(var(--ajsc-ink-soft));
    font-size: 14px;
    line-height: 20px;
}

.ajsl-inv-sum .is-paid {
    overflow: hidden;
    color: rgb(var(--ajsc-brand));
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ajsl-inv-lunas {
    display: flex;
    flex: none;
    align-items: center;
    gap: 4px;
    color: rgb(var(--ajsc-brand));
    font-weight: 600;
}

.ajsl-inv-lunas svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.ajsl-inv-lunas.is-pop {
    animation: ajsl-inv-pop 0.52s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: var(--lunas-delay, 0ms);
}

/* PaymentScheduleList.vue (numbered) */
.ajsl-inv-terms {
    display: flex;
    flex-direction: column;
    margin-top: 4px;
}

.ajsl-inv-row {
    display: flex;
    gap: 10px;
    padding-bottom: 12px;
}

.ajsl-inv-row:last-child {
    padding-bottom: 0;
}

.ajsl-inv-rail {
    position: relative;
    display: flex;
    flex: none;
    flex-direction: column;
    align-items: center;
    width: 24px;
}

.ajsl-inv-rail::after {
    content: '';
    position: absolute;
    top: 24px;
    bottom: -12px;
    left: 50%;
    border-left: 1px dashed rgb(var(--ajsc-line));
}

.ajsl-inv-row:last-child .ajsl-inv-rail::after {
    content: none;
}

.ajsl-inv-step {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

.ajsl-inv-step svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.ajsl-inv-main {
    display: flex;
    flex: 1;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
}

.ajsl-inv-when2 {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.ajsl-inv-date {
    overflow: hidden;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ajsl-inv-timing {
    overflow: hidden;
    color: rgb(var(--ajsc-ink-soft));
    font-size: 12px;
    line-height: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ajsl-inv-right {
    display: flex;
    flex: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.ajsl-inv-amt {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    font-variant-numeric: tabular-nums;
}

.ajsl-inv-row.is-overdue .ajsl-inv-date,
.ajsl-inv-row.is-overdue .ajsl-inv-amt {
    color: rgb(var(--ajsc-danger));
}

/* Nada status: sama dengan stepTone()/status() di PaymentScheduleList.vue. */
.ajsl-inv-pill {
    flex: none;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    white-space: nowrap;
}

.ajsl-inv-step,
.ajsl-inv-pill {
    background: rgb(var(--ajsc-surface-muted));
    color: rgb(var(--ajsc-ink-soft));
}

.ajsl-inv-step.is-paid,
.ajsl-inv-pill.is-paid {
    background: rgb(var(--ajsc-brand) / 0.1);
    color: rgb(var(--ajsc-brand));
}

.ajsl-inv-step.is-fresh,
.ajsl-inv-pill.is-fresh {
    background: rgb(var(--ajsc-brand));
    color: rgb(var(--ajsc-on-accent));
}

.ajsl-inv-step.is-overdue,
.ajsl-inv-pill.is-overdue {
    background: rgb(var(--ajsc-danger-soft));
    color: rgb(var(--ajsc-danger));
}

.ajsl-inv-step.is-fresh,
.ajsl-inv-pill.is-fresh {
    animation: ajsl-inv-pop 0.46s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: calc(420ms + var(--fresh-i, 0) * 120ms);
}

/* Add-on di kartu pembayaran. */
.ajsl-inv-addons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ajsl-inv-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgb(var(--ajsc-ink-soft));
    font-size: 12px;
    line-height: 16px;
}

.ajsl-inv-divider::before,
.ajsl-inv-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgb(var(--ajsc-line));
}

.ajsl-inv-addon-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ajsl-inv-addon {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgb(var(--ajsc-line));
    background: rgb(var(--ajsc-canvas));
}

.ajsl-inv-addon > svg {
    flex: none;
    width: 15px;
    height: 15px;
    fill: currentColor;
    color: rgb(var(--ajsc-ink-soft));
}

/* line-clamp-2 break-words, seperti nama add-on di kartunya. */
.ajsl-inv-addon-name {
    display: -webkit-box;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    overflow-wrap: anywhere;
    font-size: 14px;
    line-height: 20px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

/* Kotak bayar: merah hanya saat ada termin lewat jatuh tempo. */
.ajsl-inv-pay {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgb(var(--ajsc-line));
    background: rgb(var(--ajsc-canvas));
}

.ajsl-inv-pay.is-overdue {
    border-color: rgb(var(--ajsc-danger) / 0.3);
    background: rgb(var(--ajsc-danger-soft));
}

.ajsl-inv-pay-text {
    flex: 1;
    min-width: 0;
}

.ajsl-inv-pay-title {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

.ajsl-inv-pay.is-overdue .ajsl-inv-pay-title {
    color: rgb(var(--ajsc-danger));
}

.ajsl-inv-pay-note {
    margin: 2px 0 0;
    color: rgb(var(--ajsc-ink-soft));
    font-size: 12px;
    line-height: 16px;
}

.ajsl-inv-pay-btn {
    flex: none;
    padding: 10px 16px;
    border-radius: 12px;
    background: rgb(var(--ajsc-brand));
    color: rgb(var(--ajsc-on-accent));
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

.ajsl-inv-pay.is-overdue .ajsl-inv-pay-btn {
    background: rgb(var(--ajsc-danger));
}

@keyframes ajsl-inv-rise {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes ajsl-inv-ping {
    0% {
        transform: scale(1);
        opacity: 0.75;
    }
    80%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes ajsl-inv-fill {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes ajsl-inv-pop {
    from {
        opacity: 0;
        transform: scale(0.4);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 991.98px) {
    .ajsl-inv {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
        max-width: 560px;
    }

    /* Di layar sempit momennya jadi deretan chip yang bisa digeser, dengan
       satu keterangan untuk momen yang dipilih tepat di bawahnya. */
    .ajsl-inv-steps {
        display: flex;
        gap: 8px;
        margin: 0 -16px;
        padding: 2px 16px 4px;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }

    .ajsl-inv-steps::-webkit-scrollbar {
        display: none;
    }

    .ajsl-inv-steps li .ajsl-inv-btn::after {
        content: none;
    }

    .ajsl-inv-steps li {
        flex: none;
        scroll-snap-align: start;
    }

    .ajsl-inv-steps li + li {
        margin-top: 0;
    }

    .ajsl-inv-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 6px 14px 6px 6px;
        border-color: rgb(var(--ajsc-line) / 0.8);
        border-radius: 999px;
        background: var(--ajsl-card);
        white-space: nowrap;
    }

    .ajsl-inv-num {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .ajsl-inv-when,
    .ajsl-inv-what,
    .ajsl-inv-desc {
        display: none;
    }

    .ajsl-inv-short {
        display: block;
        color: var(--ajsl-ink);
        font-size: 14px;
        font-weight: 600;
        line-height: 20px;
    }

    .ajsl-inv-mdesc {
        display: block;
        min-height: 44px;
        margin: 12px 0 0;
        color: var(--ajsl-soft);
        font-size: 14px;
        line-height: 1.55;
        text-wrap: pretty;
    }

    .ajsl-inv-mdesc b {
        color: var(--ajsl-ink);
        font-weight: 700;
    }
}

/* Halaman invoice aslinya selebar layar ponsel; bingkainya di sini dibuat
   setipis mungkin supaya baris kartunya tidak lebih sempit dari aslinya. */
@media (max-width: 575.98px) {
    .ajsl-inv-page {
        margin: 0 -8px;
        padding: 24px 8px 12px;
        border-radius: 20px;
    }

    .ajsl-inv-card {
        padding: 12px;
    }

    .ajsl-inv-addon {
        padding: 8px 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ajsl-inv-news.is-enter > *,
    .ajsl-inv-badge.is-ping::before,
    .ajsl-inv-seg i.is-fresh,
    .ajsl-inv-lunas.is-pop,
    .ajsl-inv-step.is-fresh,
    .ajsl-inv-pill.is-fresh {
        animation: none;
    }

    .ajsl-inv-btn,
    .ajsl-inv-num,
    .ajsl-inv-total {
        transition: none;
    }
}

/* ── Murid & riwayat les: menu Klien + riwayat (solusi-pendidikan.html) ─── */

.ajsl-stu {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    max-width: 1120px;
    margin: 0 auto;
    font-family: 'Figtree', sans-serif;
}

@media (min-width: 992px) {
    .ajsl-stu > div:last-child {
        position: sticky;
        top: 96px;
    }
}

/* CustomerCard.vue — yang dipilih memakai rupa hover-nya. */
.ajsl-cc {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
    padding: 16px;
    border: 1px solid rgb(var(--ajsc-line));
    border-radius: 16px;
    background: rgb(var(--ajsc-surface));
    color: rgb(var(--ajsc-ink));
    cursor: pointer;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.ajsl-cc:last-child {
    margin-bottom: 0;
}

.ajsl-cc:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px -18px rgba(28, 34, 42, 0.45);
}

.ajsl-cc:hover,
.ajsl-cc[aria-pressed='true'] {
    border-color: rgb(var(--ajsc-brand) / 0.4);
    background: rgb(var(--ajsc-surface-muted) / 0.5);
}

.ajsl-cc:focus-visible {
    outline: 2px solid rgb(var(--ajsc-brand));
    outline-offset: 2px;
}

.ajsl-cc-row,
.ajsl-dh-head {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.ajsl-cc-avatar,
.ajsl-dh-avatar {
    display: grid;
    place-items: center;
    flex: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgb(var(--ajsc-tint));
    color: rgb(var(--ajsc-brand));
    font-size: 14px;
    font-weight: 600;
}

.ajsl-dh-avatar {
    background: rgb(var(--ajsc-surface-muted));
    color: rgb(var(--ajsc-ink-soft));
}

.ajsl-cc-id {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
}

.ajsl-cc-name {
    overflow: hidden;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.01em;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ajsl-cc-email {
    margin-top: 4px;
    overflow: hidden;
    color: rgb(var(--ajsc-ink-soft));
    font-size: 14px;
    line-height: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ajsl-cc-tel {
    display: none;
    flex: none;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    line-height: 20px;
}

.ajsl-cc-ico {
    display: grid;
    place-items: center;
    flex: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: rgb(var(--ajsc-ink-soft));
}

.ajsl-cc-ico svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Nomor di bawah garis — di aplikasinya hanya di bawah lg. */
.ajsl-cc-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    padding-top: 12px;
    border-top: 1px solid rgb(var(--ajsc-line));
}

.ajsl-cc-phone > svg,
.ajsl-dh-phone > svg {
    flex: none;
    width: 16px;
    height: 16px;
    fill: currentColor;
    color: rgb(var(--ajsc-ink-soft));
}

.ajsl-cc-phone > span:not(.ajsl-cc-ico),
.ajsl-dh-phone > span:not(.ajsl-cc-ico) {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

@media (min-width: 1200px) {
    .ajsl-cc-tel {
        display: flex;
    }

    .ajsl-cc-phone {
        display: none;
    }
}

/* Modal DetailHistory.vue */
.ajsl-stu-detail {
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgb(var(--ajsc-line) / 0.8);
    background: rgb(var(--ajsc-surface));
    box-shadow: var(--aj-shadow-md);
    color: rgb(var(--ajsc-ink));
}

.ajsl-stu-detail.is-enter {
    animation: ajsl-pane-in 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.ajsl-dh-close {
    display: grid;
    place-items: center;
    flex: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgb(var(--ajsc-line));
    background: rgb(var(--ajsc-surface));
}

.ajsl-dh-close svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.ajsl-dh-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgb(var(--ajsc-line));
    background: rgb(var(--ajsc-canvas));
}

.ajsl-dh-title {
    margin: 20px 0 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

.ajsl-dh-list {
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgb(var(--ajsc-line));
    background: rgb(var(--ajsc-canvas));
}

.ajsl-dh-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgb(var(--ajsc-line));
}

.ajsl-dh-row:last-child {
    border-bottom: 0;
}

/* Jadwal "hanya catat": palet amber (--color-warn* di main.css). */
.ajsl-dh-row.is-record {
    background: rgb(var(--ajsc-warn-bg));
    border-bottom-color: rgb(var(--ajsc-warn-line));
}

.ajsl-dh-rec {
    display: grid;
    place-items: center;
    flex: none;
    width: 32px;
    height: 32px;
    margin-left: 16px;
    border-radius: 50%;
    background: rgb(var(--ajsc-warn-bg-2));
    color: rgb(var(--ajsc-warn));
}

.ajsl-dh-rec svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transform: rotate(180deg);
}

.ajsl-dh-main {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 14px 16px;
}

.ajsl-dh-row.is-record .ajsl-dh-main {
    padding-left: 12px;
}

.ajsl-dh-text {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.ajsl-dh-svc {
    overflow: hidden;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ajsl-dh-date {
    overflow: hidden;
    color: rgb(var(--ajsc-ink-soft));
    font-size: 14px;
    line-height: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ajsl-dh-status {
    flex: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    white-space: nowrap;
}

.ajsl-dh-status.is-todo {
    background: rgb(var(--ajsc-brand) / 0.1);
    color: rgb(var(--ajsc-brand));
}

.ajsl-dh-row.is-record .ajsl-dh-status.is-todo {
    background: rgb(var(--ajsc-warn-bg-3));
    color: rgb(var(--ajsc-warn));
}

.ajsl-dh-status.is-done {
    background: rgb(var(--ajsc-ink) / 0.1);
    color: rgb(var(--ajsc-ink));
}

.ajsl-dh-status.is-batal {
    background: rgb(var(--ajsc-danger) / 0.1);
    color: rgb(var(--ajsc-danger));
}

.ajsl-dh-chev {
    display: grid;
    flex: none;
    color: rgb(var(--ajsc-ink-soft));
}

.ajsl-dh-chev svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Keterangan warna amber di bawah modal (bukan bagian aplikasinya). */
.ajsl-stu-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 14px 4px 0;
    color: var(--ajsl-soft);
    font-size: 14px;
    line-height: 1.5;
    text-wrap: pretty;
}

.ajsl-stu-note i {
    flex: none;
    width: 14px;
    height: 14px;
    margin-top: 3px;
    border-radius: 4px;
    border: 1px solid rgb(var(--ajsc-warn-line));
    background: rgb(var(--ajsc-warn-bg-3));
}

.ajsl-stu-note b {
    color: var(--ajsl-text);
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .ajsl-stu {
        grid-template-columns: minmax(0, 1fr);
        max-width: 560px;
    }

    /* Bertumpuk, riwayatnya ada di bawah daftar: tiga murid cukup supaya
       panel riwayat tidak terdorong jauh. */
    .ajsl-cc:nth-child(n + 4) {
        display: none;
    }

    .ajsl-cc:nth-child(3) {
        margin-bottom: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ajsl-cc {
        transition: none;
    }

    .ajsl-cc:hover {
        transform: none;
    }

    .ajsl-stu-detail.is-enter {
        animation: none;
    }
}

/* ── Invoice PDF: tiga momen (solusi-profesional.html) ───────────────────── */

.ajsl-doc {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
    font-family: 'Figtree', sans-serif;
}

/* Momen — pola daftar bernomor yang sama dengan .ajsl-inv-steps. */
.ajsl-doc .ajsl-inv-steps {
    margin-bottom: 0;
}

/* Pratinjau PDF (PdfPreviewOverlay.vue): kepala 56px, latar canvas, kertas
   A4 yang diskalakan selebar wadahnya. */
.ajsl-pdf {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgb(var(--ajsc-line) / 0.8);
    background: rgb(var(--ajsc-canvas));
    box-shadow: var(--aj-shadow-md);
    color: rgb(var(--ajsc-ink));
}

.ajsl-pdf-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0 12px;
    border-bottom: 1px solid rgb(var(--ajsc-line));
    background: rgb(var(--ajsc-surface));
}

.ajsl-pdf-title {
    font-size: 16px;
    font-weight: 600;
}

.ajsl-pdf-btns {
    display: flex;
    gap: 8px;
}

.ajsl-pdf-btn {
    display: grid;
    place-items: center;
    flex: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgb(var(--ajsc-line));
    background: rgb(var(--ajsc-surface));
}

.ajsl-pdf-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.ajsl-pdf-scroll {
    padding: 24px;
}

.ajsl-pdf-box {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(28, 34, 42, 0.12);
}

.ajsl-pdf-scale {
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: top left;
}

/* Kertasnya: doc.css (components/InvoicePrints) dengan awalan ajsd-. Warnanya
   dipatok ke tema terang karena dokumen ini selalu kertas putih. */
.ajsd {
    --doc-ink: #27354a;
    --doc-ink-soft: #5a6880;
    --doc-ink-faint: #637086;
    --doc-line: #cfd6e0;
    --doc-canvas: #f5f6fa;
    --doc-surface-muted: #eaecef;
    --doc-brand: #0161e9;
    --doc-tint: #eaeafa;
    --doc-brand-soft: #e6effd;
    --doc-danger: #c2352b;
    --doc-danger-soft: #fde8e6;

    width: 794px;
    min-height: 1123px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    color: var(--doc-ink);
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    font-variant-numeric: tabular-nums;
    text-align: left;
}

.ajsd-accent {
    flex-shrink: 0;
    height: 4px;
    background: var(--doc-brand);
}

.ajsd-header {
    padding: 36px 40px 0;
}

.ajsd-title {
    color: var(--doc-ink);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.ajsd-id {
    margin-top: 6px;
    color: var(--doc-ink-faint);
    font-size: 14px;
}

.ajsd-meta {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 0.9fr;
    gap: 28px;
    margin-top: 28px;
    padding: 20px 0 28px;
    border-top: 1px solid var(--doc-line);
}

.ajsd-meta-label {
    margin-bottom: 6px;
    color: var(--doc-ink-faint);
    font-size: 12px;
    font-weight: 600;
}

.ajsd-meta-value {
    color: var(--doc-ink);
    font-size: 14px;
    font-weight: 600;
}

.ajsd-meta-sub {
    margin-top: 2px;
    color: var(--doc-ink-soft);
    font-size: 12px;
    line-height: 1.5;
    word-break: break-word;
}

.ajsd-body {
    flex: 1;
    padding: 0 40px 28px;
}

.ajsd-section {
    margin-bottom: 28px;
}

.ajsd-section:last-child {
    margin-bottom: 0;
}

.ajsd-section-title {
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--doc-line);
    color: var(--doc-ink);
    font-size: 16px;
    font-weight: 700;
}

.ajsd table {
    width: 100%;
    margin: 0;
    border: 0;
    border-collapse: collapse;
    background: transparent;
}

.ajsd th {
    padding: 0 10px 10px;
    border: 0;
    border-bottom: 1px solid var(--doc-line);
    background: transparent;
    color: var(--doc-ink-faint);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.6;
    text-align: left;
}

.ajsd td {
    padding: 14px 10px;
    border: 0;
    border-bottom: 1px solid var(--doc-line);
    background: transparent;
    color: var(--doc-ink);
    font-size: 14px;
    line-height: 1.6;
    vertical-align: top;
}

.ajsd th:first-child,
.ajsd td:first-child {
    padding-left: 0;
}

.ajsd th:last-child,
.ajsd td:last-child {
    padding-right: 0;
}

.ajsd tbody tr:last-child td {
    border-bottom: 0;
}

.ajsd .ajsd-num {
    text-align: right;
    white-space: nowrap;
}

.ajsd .ajsd-mid {
    text-align: center;
}

.ajsd .ajsd-date {
    text-align: center;
    white-space: nowrap;
}

.ajsd-cell-title {
    color: var(--doc-ink);
    font-size: 14px;
    font-weight: 600;
}

.ajsd-cell-meta {
    margin-top: 4px;
    color: var(--doc-ink-soft);
    font-size: 12px;
    line-height: 1.6;
}

.ajsd .ajsd-muted {
    color: var(--doc-ink-soft);
}

.ajsd-pill {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.6;
    white-space: nowrap;
}

.ajsd-pill.is-paid {
    background: var(--doc-brand-soft);
    color: var(--doc-brand);
}

.ajsd-pill.is-pending {
    background: var(--doc-surface-muted);
    color: var(--doc-ink-soft);
}

.ajsd-pill.is-fresh {
    animation: ajsl-inv-pop 0.46s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.ajsd-totals {
    width: 320px;
    margin-left: auto;
    padding-top: 16px;
}

.ajsd-total-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    padding: 7px 0;
    color: var(--doc-ink-soft);
    font-size: 14px;
}

.ajsd-total-row span:last-child {
    white-space: nowrap;
}

.ajsd-total-grand {
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--doc-line);
    color: var(--doc-ink);
    font-size: 16px;
    font-weight: 700;
}

.ajsd-callout {
    padding: 18px 22px;
    border-radius: 12px;
    background: var(--doc-tint);
    color: var(--doc-ink-soft);
    font-size: 12px;
    line-height: 1.6;
}

.ajsd-link {
    color: var(--doc-brand);
    text-decoration: underline;
    word-break: break-word;
}

.ajsd-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-top: auto;
    padding: 24px 40px 32px;
    border-top: 1px solid var(--doc-line);
}

.ajsd-disclaimer {
    max-width: 520px;
    color: var(--doc-ink-faint);
    font-size: 12px;
    line-height: 1.6;
}

.ajsd-branding {
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.ajsd-branding svg {
    width: 150px;
    height: 27px;
    color: #27354a;
}

.ajsd-brand-note {
    color: var(--doc-ink-faint);
    font-size: 12px;
    white-space: nowrap;
}

/* Seksi yang baru muncul di momen ini. */
.ajsd-section.is-new {
    animation: ajsl-inv-rise 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (max-width: 991.98px) {
    .ajsl-doc {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
        max-width: 640px;
    }
}

@media (max-width: 575.98px) {
    .ajsl-pdf-scroll {
        padding: 16px 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ajsd-pill.is-fresh,
    .ajsd-section.is-new {
        animation: none;
    }
}

/* ── Menu per kategori: halaman booking publik (solusi-kecantikan.html) ─── */

.ajsl-shop {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 64px;
    align-items: center;
    max-width: 1040px;
    margin: 0 auto;
    font-family: 'Figtree', sans-serif;
}

/* CategoryIcon.vue size sm: kotak 20px, glyph 16px. */
.ajsl-chipcat-ico {
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji', sans-serif;
    font-size: 16px;
    line-height: 1;
}

@keyframes ajsl-caret {
    50% {
        opacity: 0;
    }
}

@media (max-width: 991.98px) {
    .ajsl-shop {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
        max-width: 560px;
    }

}

/* Tautan kecil di bawah CTA hero: ke halaman yang lebih spesifik. */
.ajsl-mhero-side {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    color: var(--ajsl-brand);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.ajsl-mhero-side:hover {
    color: var(--ajsl-brand);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ajsl-mhero-side svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform 0.2s ease;
}

.ajsl-mhero-side:hover svg {
    transform: translateX(3px);
}

/* ── /solusi: enam kartu bidang, masing-masing menuju halamannya ─────────── */

.ajsl-sols {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1180px;
    margin: 0 auto;
}

.ajsl-sol {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgb(var(--ajsc-line) / 0.7);
    background: var(--ajsl-card);
    box-shadow: var(--aj-shadow-sm);
    scroll-margin-top: 110px;
    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.ajsl-sol:hover {
    transform: translateY(-4px);
    border-color: rgb(var(--ajsc-brand) / 0.35);
    box-shadow: var(--aj-shadow-md);
}

/* Datang dari tautan lama /solusi#bidang: kartunya diberi cincin. */
.ajsl-sol:target {
    outline: 2px solid var(--ajsl-brand);
    outline-offset: 4px;
}

.ajsl-sol:has(.ajsl-sol-link:focus-visible) {
    outline: 2px solid var(--ajsl-brand);
    outline-offset: 4px;
}

.ajsl-sol-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: rgb(var(--ajsc-surface-muted));
}

.ajsl-sol-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.ajsl-sol:hover .ajsl-sol-media img {
    transform: scale(1.04);
}

.ajsl-sol-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px 22px 22px;
}

.ajsl-sol-kicker {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: var(--ajsl-brand);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

.ajsl-sol-kicker svg {
    flex: none;
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.ajsl-sol-title {
    margin: 10px 0 0 !important;
    color: var(--ajsl-ink);
    font-size: 20px !important;
    font-weight: 700;
    line-height: 1.3 !important;
    letter-spacing: -0.015em !important;
    text-wrap: balance;
}

/* Seluruh kartu bisa diklik lewat tautan di judulnya. */
.ajsl-sol-link {
    color: inherit;
    text-decoration: none;
}

.ajsl-sol-link:hover {
    color: inherit;
}

.ajsl-sol-link:focus-visible {
    outline: none;
}

.ajsl-sol-link::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

.ajsl-sol-profs {
    margin: 8px 0 0;
    color: var(--ajsl-soft);
    font-size: 14px;
    line-height: 1.5;
}

.ajsl-sol-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 18px;
    color: var(--ajsl-brand);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

.ajsl-sol-cta svg,
.ajsl-sol-sub svg,
.ajsl-pane-link svg {
    flex: none;
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform 0.2s ease;
}

.ajsl-sol:hover .ajsl-sol-cta svg {
    transform: translateX(4px);
}

/* Tautan kedua di kartu Kecantikan, di atas tautan kartu. Letaknya sebelum
   ajakan utama supaya ajakan di tiap kartu tetap sejajar di dasar. */
.ajsl-sol-sub {
    position: relative;
    z-index: 2;
    display: block;
    align-self: flex-start;
    margin-top: 10px;
    color: var(--ajsl-text);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-decoration: underline;
    text-decoration-color: rgb(var(--ajsc-line));
    text-underline-offset: 4px;
}

.ajsl-sol-sub:hover {
    color: var(--ajsl-brand);
}

/* Panahnya ikut baris terakhir teks saat tautannya terlipat. */
.ajsl-sol-sub svg {
    display: inline-block;
    margin-left: 6px;
    vertical-align: -3px;
}

.ajsl-sol-sub:hover svg,
.ajsl-pane-link:hover svg {
    transform: translateX(3px);
}

/* Tab "Aturannya ikut profesimu": tiap contoh menuju halaman bidangnya. */
.ajsl-pane-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    color: var(--ajsl-brand);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-decoration: none;
}

.ajsl-pane-link:hover {
    color: var(--ajsl-brand);
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 991.98px) {
    .ajsl-sols {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
        max-width: 760px;
    }
}

/* Ponsel: kartu mendatar supaya keenamnya muat dalam dua-tiga layar. */
@media (max-width: 575.98px) {
    .ajsl-sols {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    .ajsl-sol {
        display: grid;
        grid-template-columns: 112px minmax(0, 1fr);
        border-radius: 20px;
    }

    .ajsl-sol-media {
        aspect-ratio: auto;
        min-height: 100%;
    }

    .ajsl-sol-body {
        padding: 14px 16px 16px;
    }

    .ajsl-sol-kicker {
        font-size: 12px;
        line-height: 16px;
    }

    .ajsl-sol-kicker svg {
        width: 16px;
        height: 16px;
    }

    .ajsl-sol-title {
        margin-top: 6px !important;
        font-size: 16px !important;
    }

    .ajsl-sol-profs {
        display: none;
    }

    .ajsl-sol-cta {
        padding-top: 10px;
    }

    .ajsl-sol-sub {
        margin-top: 6px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ajsl-sol,
    .ajsl-sol-media img,
    .ajsl-sol-cta svg,
    .ajsl-sol-sub svg,
    .ajsl-pane-link svg {
        transition: none;
    }

    .ajsl-sol:hover,
    .ajsl-sol:hover .ajsl-sol-media img {
        transform: none;
    }
}

/* Tiruan halaman booking di bingkai ponsel beranda (ajd-*), rata tanpa 3D —
   sama seperti .ajf-phone di aj-fitur.css. aj-hero-device.js tidak dimuat. */
.ajsl-dev {
    justify-self: center;
}

.ajsl-dev .ajd-3d {
    perspective: none;
}

.ajsl-dev .ajd-device-frame {
    transform: none;
    animation: none;
    will-change: auto;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.35), 0 30px 50px -32px rgba(12, 32, 74, 0.55);
}

.uc-dark .ajsl-dev .ajd-device-frame {
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.35), 0 30px 50px -30px rgba(0, 0, 0, 0.9);
}

.ajsl-dev .ajd-device-screen::after {
    content: none;
}

.ajsl-dev .ajd-chip {
    cursor: pointer;
    transition: background-color 0.15s ease-out, border-color 0.15s ease-out, color 0.15s ease-out,
        box-shadow 0.15s ease-out, transform 0.15s ease-out;
}

.ajsl-dev .ajd-chip.is-press {
    transform: scale(0.96);
}

.ajsl-dev .ajd-cards {
    transition: opacity 0.2s ease-out;
}

.ajsl-dev .ajd-cards.is-pending {
    opacity: 0.4;
}

.ajsl-dev .ajd-card.is-enter {
    animation: ajsl-card-enter 0.28s ease-out backwards;
}

@keyframes ajsl-card-enter {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
}

/* Kotak cari yang sedang diketik: garis brand + cincin tipis (ServiceFilterBar.vue). */
.ajsl-dev .ajd-search {
    transition: border-color 0.3s ease-out, box-shadow 0.3s ease-out;
}

.ajsl-dev .ajd-search.is-typing {
    border-color: rgb(var(--ajc-brand));
    box-shadow: 0 0 0 calc(2 * var(--u)) rgb(var(--ajc-brand) / 0.15);
}

.ajsl-dev .ajd-search.is-typing .ajd-search-ph {
    color: rgb(var(--ajc-ink));
}

.ajsl-dev .ajd-search.is-typing .ajd-search-ph::after {
    content: '';
    display: inline-block;
    width: calc(1 * var(--u));
    height: calc(16 * var(--u));
    margin-left: calc(1 * var(--u));
    vertical-align: calc(-3 * var(--u));
    background: rgb(var(--ajc-brand));
    animation: ajsl-caret 1s steps(1) infinite;
}

@media (prefers-reduced-motion: reduce) {
    .ajsl-dev .ajd-chip,
    .ajsl-dev .ajd-cards,
    .ajsl-dev .ajd-search {
        transition: none;
    }

    .ajsl-dev .ajd-card.is-enter,
    .ajsl-dev .ajd-search.is-typing .ajd-search-ph::after {
        animation: none;
    }
}
