/* #Bagian Site CSS# */
/* ═══════════════════════════════════════════════════════════════════════════
   LightenUp — Global responsive foundation (all areas & public pages)
   Breakpoint: 992px (desktop sidebar vs mobile offcanvas)
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
    --lu-bp-md: 768px;
    --lu-bp-lg: 992px;

    --lu-sidebar-width: 260px;
    --lu-header-height: 3.5rem;

    --lu-primary: #7C3AED;
    --lu-primary-hover: #6D28D9;
    --lu-primary-soft: #EDE9FE;
    --lu-text: #111827;
    --lu-text-muted: #6B7280;
    --lu-border: #E5E7EB;
    --lu-bg: #F9FAFB;
    --lu-card: #FFFFFF;
    --lu-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);

    --lu-space-page: clamp(1rem, 3vw, 2rem);
    --lu-space-block: clamp(0.75rem, 2vw, 1.25rem);
    --lu-gap: clamp(0.75rem, 2vw, 1.25rem);

    --lu-radius: 0.75rem;
    --lu-radius-lg: 1rem;
    --lu-touch-min: 2.75rem;
}

/* ─── Fluid root typography ─── */
html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html { font-size: 106.25%; } /* ~17px */
}

@media (min-width: 992px) {
    html { font-size: 112.5%; } /* ~18px */
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--lu-text);
    background: var(--lu-bg);
    min-height: 100vh;
}

h1, .lu-h1 { font-size: clamp(1.375rem, 4vw, 1.75rem); font-weight: 700; line-height: 1.25; margin: 0 0 0.5rem; }
h2, .lu-h2 { font-size: clamp(1.125rem, 3vw, 1.375rem); font-weight: 600; line-height: 1.3; margin: 0 0 0.5rem; }
h3, .lu-h3 { font-size: clamp(1rem, 2.5vw, 1.125rem); font-weight: 600; margin: 0 0 0.5rem; }
p { margin: 0 0 0.75rem; }
small, .lu-text-sm { font-size: 0.8125rem; color: var(--lu-text-muted); }

img, video, svg { max-width: 100%; height: auto; }

/* ─── Public / marketing layout (_Layout.cshtml) ─── */
.lu-public-header {
    background: var(--lu-card);
    border-bottom: 1px solid var(--lu-border);
    box-shadow: var(--lu-shadow);
    position: sticky;
    top: 0;
    z-index: 200;
}

.lu-public-header .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.75rem var(--lu-space-page);
}

.lu-public-main {
    padding: var(--lu-space-page);
    max-width: 75rem;
    margin: 0 auto;
    width: 100%;
}

.lu-brand-link {
    color: var(--lu-primary);
}

.lu-brand-link:hover {
    color: var(--lu-primary-hover);
}

.lu-public-footer {
    border-top: 1px solid var(--lu-border);
    padding: 1rem var(--lu-space-page);
    color: var(--lu-text-muted);
    font-size: 0.875rem;
    margin-top: auto;
}

/* Landing page */
body.lu-landing-page {
    --lu-landing-bg: #12141c;
    --lu-landing-panel: #171a26;
    --lu-landing-panel-2: #1d2231;
    --lu-landing-line: rgba(255, 255, 255, 0.09);
    --lu-landing-text: #e5e7eb;
    --lu-landing-muted: #9ca3af;
    --lu-landing-primary: #8b5cf6;
    --lu-landing-secondary: #06b6d4;
    --lu-landing-positive: #10b981;
    --lu-landing-glow: rgba(139, 92, 246, 0.38);
    background:
        radial-gradient(circle at top left, rgba(139, 92, 246, 0.16), transparent 22%),
        radial-gradient(circle at top right, rgba(6, 182, 212, 0.12), transparent 26%),
        linear-gradient(180deg, #0d1017 0%, #12141c 24%, #12141c 100%);
    color: var(--lu-landing-text);
}

body.lu-landing-page main {
    display: block;
}

body.lu-landing-page .lu-landing-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.lu-landing-page .lu-navbar {
    padding: 0.95rem 0;
    backdrop-filter: blur(18px);
    background: rgba(18, 20, 28, 0.72);
    border-bottom: 1px solid var(--lu-landing-line);
}

body.lu-landing-page .lu-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

body.lu-landing-page .lu-brand-logo {
    width: 1.65rem;
    height: 1.65rem;
    object-fit: contain;
    flex: 0 0 auto;
}

body.lu-landing-page .lu-nav-links .nav-link {
    color: rgba(229, 231, 235, 0.86);
    font-weight: 500;
    padding: 0.5rem 0.85rem;
}

body.lu-landing-page .lu-nav-links .nav-link:hover,
body.lu-landing-page .lu-nav-links .nav-link:focus {
    color: #ffffff;
}

body.lu-landing-page .lu-nav-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

body.lu-landing-page .lu-btn-nav {
    border-radius: 999px;
    padding: 0.72rem 1.15rem;
    font-weight: 600;
}

body.lu-landing-page .lu-btn-nav-primary {
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    border-color: transparent;
    box-shadow: 0 18px 30px rgba(124, 58, 237, 0.18);
}

body.lu-landing-page .lu-btn-nav-primary:hover,
body.lu-landing-page .lu-btn-nav-primary:focus {
    background: linear-gradient(135deg, #6d28d9, #0891b2);
}

body.lu-landing-page .lu-hero-section,
body.lu-landing-page .lu-section,
body.lu-landing-page .lu-footer {
    width: 100%;
}

body.lu-landing-page .lu-hero-section {
    padding-top: clamp(2rem, 6vw, 5rem);
    padding-bottom: clamp(2rem, 6vw, 5rem);
}

body.lu-landing-page .lu-eyebrow,
body.lu-landing-page .lu-section-kicker,
body.lu-landing-page .lu-dashboard-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: #c4b5fd;
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

body.lu-landing-page .lu-hero-title,
body.lu-landing-page .lu-section-heading h2,
body.lu-landing-page .lu-pill-card h3,
body.lu-landing-page .lu-quote-card p,
body.lu-landing-page .lu-footer h3 {
    color: #f8fafc;
}

body.lu-landing-page .lu-hero-title {
    margin: 1rem 0 1rem;
    font-size: clamp(2.4rem, 5vw, 4.7rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
    max-width: 12ch;
}

body.lu-landing-page .lu-hero-lead {
    margin: 0;
    max-width: 38rem;
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    color: var(--lu-landing-muted);
}

body.lu-landing-page .lu-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

body.lu-landing-page .lu-btn-cta {
    border-radius: 999px;
    padding: 0.88rem 1.4rem;
    font-weight: 700;
}

body.lu-landing-page .btn-primary.lu-btn-cta {
    background: linear-gradient(135deg, var(--lu-landing-primary), var(--lu-landing-secondary));
    border-color: transparent;
    box-shadow: 0 20px 45px rgba(139, 92, 246, 0.22);
}

body.lu-landing-page .btn-outline-info.lu-btn-cta {
    color: #8be7f2;
    border-color: rgba(6, 182, 212, 0.35);
}

body.lu-landing-page .lu-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.5rem;
}

body.lu-landing-page .lu-hero-metrics > div,
body.lu-landing-page .lu-mock-stat,
body.lu-landing-page .lu-quote-card,
body.lu-landing-page .lu-pill-card,
body.lu-landing-page .lu-mock-main,
body.lu-landing-page .lu-footer {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--lu-landing-line);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

body.lu-landing-page .lu-hero-metrics > div {
    padding: 1rem;
    border-radius: 1rem;
}

body.lu-landing-page .lu-hero-metrics strong,
body.lu-landing-page .lu-mock-stat strong {
    display: block;
    font-size: 1.05rem;
    color: #ffffff;
}

body.lu-landing-page .lu-hero-metrics span,
body.lu-landing-page .lu-mock-stat span,
body.lu-landing-page .lu-mock-stat small,
body.lu-landing-page .lu-footer-copy,
body.lu-landing-page .lu-section-heading p,
body.lu-landing-page .lu-pill-card p,
body.lu-landing-page .lu-pill-card li,
body.lu-landing-page .lu-quote-card footer {
    color: var(--lu-landing-muted);
}

body.lu-landing-page .lu-hero-visual {
    position: relative;
    min-height: 34rem;
    border-radius: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.18), transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(29, 34, 49, 0.98), rgba(17, 20, 28, 0.98));
}

body.lu-landing-page .lu-visual-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
    opacity: 0.85;
}

body.lu-landing-page .lu-visual-orb--one {
    width: 11rem;
    height: 11rem;
    top: 1.5rem;
    left: -2rem;
    background: rgba(139, 92, 246, 0.22);
}

body.lu-landing-page .lu-visual-orb--two {
    width: 9rem;
    height: 9rem;
    right: 1rem;
    bottom: 8rem;
    background: rgba(6, 182, 212, 0.18);
}

body.lu-landing-page .lu-micro-dashboard {
    position: absolute;
    inset: 1.25rem;
    padding: 1.25rem;
    border-radius: 1.5rem;
    background: rgba(13, 16, 23, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
}

body.lu-landing-page .lu-micro-dashboard-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
}

body.lu-landing-page .lu-micro-dashboard-top strong {
    display: block;
    margin-top: 0.4rem;
    color: #ffffff;
    font-size: 1rem;
}

body.lu-landing-page .lu-status-badge {
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #86efac;
    font-size: 0.8rem;
    font-weight: 700;
}

body.lu-landing-page .lu-mood-ring {
    display: grid;
    place-items: center;
    margin: 1.25rem auto 1rem;
    width: min(16rem, 65vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        conic-gradient(from 0deg, var(--lu-landing-primary), var(--lu-landing-secondary), var(--lu-landing-positive), var(--lu-landing-primary));
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.025), 0 0 80px rgba(6, 182, 212, 0.12);
}

body.lu-landing-page .lu-mood-ring-core {
    display: grid;
    place-items: center;
    width: 72%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #12141c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

body.lu-landing-page .lu-mood-ring-core strong {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #ffffff;
    line-height: 1;
}

body.lu-landing-page .lu-mood-ring-core span {
    color: #a7f3d0;
    font-weight: 600;
}

body.lu-landing-page .lu-dashboard-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

body.lu-landing-page .lu-dashboard-cards > div {
    padding: 0.85rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

body.lu-landing-page .lu-dashboard-cards span {
    display: block;
    color: var(--lu-landing-muted);
    font-size: 0.82rem;
    margin-bottom: 0.25rem;
}

body.lu-landing-page .lu-dashboard-cards strong {
    color: #ffffff;
    font-size: 1.25rem;
}

body.lu-landing-page .lu-section {
    padding-top: clamp(1rem, 4vw, 3rem);
    padding-bottom: clamp(1rem, 4vw, 3rem);
}

body.lu-landing-page .lu-section-heading {
    max-width: 42rem;
    margin-bottom: 1.5rem;
}

body.lu-landing-page .lu-section-heading h2 {
    margin: 0.85rem 0 0.55rem;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    letter-spacing: -0.03em;
}

body.lu-landing-page .lu-pill-card,
body.lu-landing-page .lu-quote-card,
body.lu-landing-page .lu-mock-main,
body.lu-landing-page .lu-footer {
    border-radius: 1.35rem;
}

body.lu-landing-page .lu-pill-card {
    height: 100%;
    padding: 1.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

body.lu-landing-page .lu-pill-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    border: 1px solid transparent;
}

body.lu-landing-page .lu-pill-card--patient::before {
    border-color: rgba(6, 182, 212, 0.24);
}

body.lu-landing-page .lu-pill-card--hr::before {
    border-color: rgba(139, 92, 246, 0.24);
}

body.lu-landing-page .lu-pill-card--psy::before {
    border-color: rgba(16, 185, 129, 0.24);
}

body.lu-landing-page .lu-pill-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.1rem;
}

body.lu-landing-page .lu-pill-icon {
    display: inline-grid;
    place-items: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    font-weight: 800;
}

body.lu-landing-page .lu-pill-tag {
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.03);
}

body.lu-landing-page .lu-pill-card h3 {
    font-size: 1.2rem;
    line-height: 1.25;
    margin-bottom: 0.85rem;
}

body.lu-landing-page .lu-pill-card ul {
    margin: 0.9rem 0 0;
    padding-left: 1.1rem;
}

body.lu-landing-page .lu-pill-card li + li {
    margin-top: 0.35rem;
}

body.lu-landing-page .lu-mock-shell {
    display: grid;
    grid-template-columns: 4rem 1fr;
    gap: 0.85rem;
}

body.lu-landing-page .lu-mock-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0.35rem;
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

body.lu-landing-page .lu-sidebar-dot {
    width: 0.85rem;
    height: 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

body.lu-landing-page .lu-sidebar-dot--active {
    background: linear-gradient(135deg, var(--lu-landing-primary), var(--lu-landing-secondary));
    box-shadow: 0 0 0 8px rgba(139, 92, 246, 0.12);
}

body.lu-landing-page .lu-mock-main {
    padding: 1.1rem;
}

body.lu-landing-page .lu-mock-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

body.lu-landing-page .lu-mock-topbar h3 {
    margin: 0.45rem 0 0;
    font-size: 1.25rem;
}

body.lu-landing-page .lu-mock-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

body.lu-landing-page .lu-mock-user span {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
}

body.lu-landing-page .lu-mock-user strong,
body.lu-landing-page .lu-mock-user small {
    display: block;
}

body.lu-landing-page .lu-mock-stat {
    padding: 1rem;
    border-radius: 1rem;
}

body.lu-landing-page .lu-mock-stat strong {
    margin: 0.2rem 0 0.25rem;
    font-size: 1.85rem;
}

body.lu-landing-page .lu-mock-chart,
body.lu-landing-page .lu-mini-bars {
    display: flex;
    align-items: end;
    gap: 0.7rem;
    min-height: 11rem;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

body.lu-landing-page .lu-mock-chart span,
body.lu-landing-page .lu-mini-bars span {
    flex: 1;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.35), rgba(139, 92, 246, 0.95));
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.08);
    min-height: 2.5rem;
}

body.lu-landing-page .lu-quote-card {
    height: 100%;
    padding: 1.35rem;
    margin: 0;
}

body.lu-landing-page .lu-quote-card p {
    margin: 0 0 1rem;
    font-size: 1.02rem;
    line-height: 1.6;
}

body.lu-landing-page .lu-price-card,
body.lu-landing-page .lu-contact-card,
body.lu-landing-page .lu-testing-card,
body.lu-landing-page .lu-flow-step {
    height: 100%;
    padding: 1.25rem;
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--lu-landing-line);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}

body.lu-landing-page .lu-price-label,
body.lu-landing-page .lu-contact-card span,
body.lu-landing-page .lu-flow-step strong {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

body.lu-landing-page .lu-price-label,
body.lu-landing-page .lu-contact-card span {
    margin-bottom: 0.85rem;
    padding: 0.35rem 0.7rem;
    font-size: 0.8rem;
    color: #c4b5fd;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

body.lu-landing-page .lu-price-card h3,
body.lu-landing-page .lu-testing-card h3,
body.lu-landing-page .lu-flow-step h3 {
    margin: 0 0 0.75rem;
    color: #ffffff;
}

body.lu-landing-page .lu-price-card strong {
    display: block;
    margin-bottom: 0.75rem;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1;
}

body.lu-landing-page .lu-price-card strong span {
    margin-left: 0.25rem;
    font-size: 0.95rem;
    color: var(--lu-landing-muted);
    font-weight: 500;
}

body.lu-landing-page .lu-price-card--highlight {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.14), rgba(255, 255, 255, 0.03));
    border-color: rgba(139, 92, 246, 0.32);
}

body.lu-landing-page .lu-contact-card a {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
}

body.lu-landing-page .lu-contact-card p {
    margin-bottom: 0;
}

body.lu-landing-page .lu-testing-grid,
body.lu-landing-page .lu-flow-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.lu-landing-page .lu-testing-card p,
body.lu-landing-page .lu-flow-step p {
    margin-bottom: 0;
}

body.lu-landing-page .lu-flow-step strong {
    width: 2.25rem;
    height: 2.25rem;
    justify-content: center;
    margin-bottom: 0.9rem;
    background: rgba(6, 182, 212, 0.12);
    color: #8be7f2;
    border: 1px solid rgba(6, 182, 212, 0.22);
}

body.lu-landing-page .lu-flow-step {
    position: relative;
}

body.lu-landing-page .lu-flow-step::after {
    content: "";
    position: absolute;
    inset-inline-start: 1.15rem;
    inset-block-start: 3.1rem;
    width: calc(100% - 2.3rem);
    height: 1px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.5), rgba(6, 182, 212, 0.1));
}

body.lu-landing-page .lu-flow-step h3 {
    margin-top: 0.5rem;
}

body.lu-landing-page .lu-flow-step p {
    position: relative;
    z-index: 1;
}

body.lu-landing-page .lu-footer {
    margin: 0 auto 1.5rem;
    padding: 1.5rem;
    width: calc(100% - 2rem);
}

body.lu-landing-page .lu-brand--footer {
    margin-bottom: 0.85rem;
}

body.lu-landing-page .lu-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

body.lu-landing-page .lu-footer li + li {
    margin-top: 0.4rem;
}

body.lu-landing-page .lu-footer a {
    color: #d1d5db;
    text-decoration: none;
}

body.lu-landing-page .lu-footer a:hover,
body.lu-landing-page .lu-footer a:focus {
    color: #ffffff;
}

body.lu-landing-page .lu-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--lu-landing-muted);
}

body.lu-landing-page .lu-navbar-toggler {
    border-color: rgba(255, 255, 255, 0.2);
}

body.lu-landing-page .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.22);
}

@media (max-width: 991.98px) {
    body.lu-landing-page .lu-nav-links {
        padding: 1rem 0;
    }

    body.lu-landing-page .lu-nav-actions {
        flex-direction: column;
        align-items: stretch;
        padding-bottom: 0.5rem;
    }

    body.lu-landing-page .lu-hero-section {
        padding-top: 1.5rem;
    }

    body.lu-landing-page .lu-hero-title {
        max-width: none;
    }

    body.lu-landing-page .lu-hero-visual {
        min-height: 28rem;
    }

    body.lu-landing-page .lu-hero-metrics {
        grid-template-columns: 1fr;
    }

    body.lu-landing-page .lu-mock-shell {
        grid-template-columns: 1fr;
    }

    body.lu-landing-page .lu-mock-sidebar {
        display: none;
    }
}

@media (max-width: 767.98px) {
    body.lu-landing-page .lu-hero-cta {
        flex-direction: column;
    }

    body.lu-landing-page .lu-hero-cta .btn {
        width: 100%;
    }

    body.lu-landing-page .lu-mock-topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    body.lu-landing-page .lu-dashboard-cards {
        grid-template-columns: 1fr;
    }

    body.lu-landing-page .lu-footer {
        width: calc(100% - 1rem);
        padding: 1.25rem;
    }

    body.lu-landing-page .lu-footer-bottom {
        flex-direction: column;
    }

    body.lu-landing-page .lu-testing-grid,
    body.lu-landing-page .lu-flow-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    body.lu-landing-page .lu-testing-grid,
    body.lu-landing-page .lu-flow-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ═══ App shell: sidebar + main (Patient, HR, Psychologist, Admin) ═══ */
.app-shell,
.admin-shell {
    display: flex;
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Sidebar — desktop: height-locked with shell; mobile: offcanvas drawer */
.app-sidebar,
.admin-sidebar,
.sidebar {
    width: var(--lu-sidebar-width);
    min-width: var(--lu-sidebar-width);
    background: var(--lu-card);
    border-right: 1px solid var(--lu-border);
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1rem;
    z-index: 300;
    flex-shrink: 0;
    height: 100vh;
    overflow-y: auto;
}

.admin-sidebar {
    background: #111827;
    color: #E5E7EB;
    border-right: none;
}

.sidebar-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.sidebar-close {
    display: none;
    align-items: center;
    justify-content: center;
    width: var(--lu-touch-min);
    height: var(--lu-touch-min);
    border: none;
    background: var(--lu-primary-soft);
    color: var(--lu-text);
    border-radius: 0.5rem;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
}

.admin-sidebar .sidebar-close {
    background: #1F2937;
    color: #fff;
}

/* Main column — layout only; scroll happens in .app-content / .admin-content */
.app-main,
.main-content,
.admin-main {
    flex: 1;
    min-width: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
}

.app-main,
.admin-main {
    padding: var(--lu-space-page);
}

.main-content {
    margin-left: 0;
    padding: var(--lu-space-page);
}

.app-topbar,
.admin-topbar,
.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--lu-gap);
    flex-wrap: wrap;
    margin-bottom: var(--lu-space-block);
    min-height: var(--lu-header-height);
    flex-shrink: 0;
}

/* Single scroll container for page body (all Areas) */
.app-content,
.admin-content,
.lu-scroll-host {
    width: 100%;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.app-content {
    max-width: 75rem;
}

/* Full-width dashboard consoles */
.hr-shell .app-content,
.main-content .app-content,
.admin-content {
    max-width: none;
}

/* Standard list/index page — fills scroll host, enables inner list scroll */
.lu-page,
.pay-page,
.hrem-page,
.hrd-page {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    gap: var(--lu-gap, 1rem);
}

.app-content > .lu-page,
.app-content > .pay-page,
.app-content > .hrem-page,
.app-content > .hrd-page,
.admin-content > .lu-page,
.admin-content > .pay-page {
    flex: 1;
    min-height: 0;
}

/* Scrollable list/table region (sticky header/KPI above, list scrolls below) */
.lu-list-scroll,
.lu-page > .adm-table-wrap,
.lu-page > .lu-table-wrap,
.pay-page > .adm-table-wrap,
.pay-page > .lu-table-wrap,
.pay-table-scroll,
.hrem-list,
.psy-client-list,
.psy-company-list,
.hrd-client-list,
.idx-client-list,
.patient-list-container,
.db-session-list {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.greeting,
.text-header {
    font-size: clamp(1.125rem, 3vw, 1.375rem);
    font-weight: 600;
    margin: 0;
}

/* Hamburger */
.sidebar-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: var(--lu-touch-min);
    height: var(--lu-touch-min);
    padding: 0;
    border: 1px solid var(--lu-border);
    border-radius: 0.5rem;
    background: var(--lu-card);
    cursor: pointer;
    flex-shrink: 0;
}

.sidebar-toggle .hamburger,
.sidebar-toggle .hamburger::before,
.sidebar-toggle .hamburger::after {
    display: block;
    width: 1.125rem;
    height: 2px;
    background: var(--lu-text);
    border-radius: 1px;
    position: relative;
}

.sidebar-toggle .hamburger::before,
.sidebar-toggle .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.sidebar-toggle .hamburger::before { top: -6px; }
.sidebar-toggle .hamburger::after { top: 6px; }

/* Backdrop */
.sidebar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.45);
    z-index: 250;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.sidebar-backdrop.is-visible {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

body.sidebar-open {
    overflow: hidden;
}

/* ─── Desktop (≥ 992px): fixed sidebar ─── */
@media (min-width: 992px) {
    .app-sidebar,
    .admin-sidebar,
    .sidebar {
        position: sticky;
        top: 0;
        height: 100vh;
        overflow-y: auto;
    }

    .main-content {
        margin-left: 0;
    }

    .sidebar-toggle,
    .sidebar-close,
    .sidebar-backdrop {
        display: none !important;
    }
}

/* ─── Mobile / tablet (≤ 991px): offcanvas sidebar ─── */
@media (max-width: 991.98px) {
    .app-sidebar,
    .admin-sidebar,
    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        height: 100dvh;
        transform: translateX(-100%);
        transition: transform 0.28s ease;
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
        overflow-y: auto;
    }

    .app-sidebar.is-open,
    .admin-sidebar.is-open,
    .sidebar.is-open {
        transform: translateX(0);
    }

    .sidebar-toggle {
        display: inline-flex;
    }

    .sidebar-close {
        display: inline-flex;
    }

    .app-main,
    .admin-main,
    .main-content {
        width: 100%;
        max-width: 100%;
        padding: 1rem;
    }

    /* On small screens, allow document-level scroll (avoid clipped lists).
       Patient, Admin, Psychologist & HR use area layout.css scroll containment — do not override here. */
    body:not(.patient-body):not(.admin-body):not(.psychologist-body):not(.hr-body) .app-shell {
        height: auto;
        min-height: 100vh;
        min-height: 100dvh;
        overflow: visible;
    }

    body:not(.patient-body):not(.admin-body):not(.psychologist-body):not(.hr-body) .app-main,
    body:not(.patient-body):not(.admin-body):not(.psychologist-body):not(.hr-body) .main-content {
        overflow: visible;
        height: auto;
    }

    body:not(.patient-body):not(.admin-body):not(.psychologist-body):not(.hr-body) .app-content,
    body:not(.patient-body):not(.admin-body):not(.psychologist-body):not(.hr-body) .lu-scroll-host {
        overflow: visible;
    }

    .lu-page,
    .pay-page {
        height: auto;
        flex: none;
    }

    body:not(.hr-body) .hrem-page,
    body:not(.hr-body) .hrd-page {
        height: auto;
        flex: none;
    }

    body.hr-body .hrd-page {
        flex: none;
        min-height: auto;
        height: auto;
        gap: 10px;
    }

    body.hr-body .app-content > .hrstat-page,
    body.hr-body .app-content > .hrsch-page-wrap,
    body.hr-body .app-content > .hrln-page,
    body.hr-body .app-content > .hrpsy-page,
    body.hr-body .app-content > .hrpt-page {
        flex: none;
        min-height: auto;
        height: auto;
        gap: 10px;
    }

    body.hr-body .hrd-client-list {
        flex: none;
        max-height: none;
        overflow-y: visible;
    }

    .lu-list-scroll,
    .pay-table-scroll,
    .psy-client-list,
    .psy-company-list {
        overflow-y: visible;
        flex: none;
    }

    body:not(.hr-body) .hrem-list,
    body:not(.hr-body) .hrd-client-list {
        overflow-y: visible;
        flex: none;
    }

    .app-topbar,
    .admin-topbar {
        padding-bottom: 0.5rem;
    }
}

/* ═══ Reusable grid utilities ═══ */
.lu-grid {
    display: grid;
    gap: var(--lu-gap);
    width: 100%;
}

.lu-grid-1 { grid-template-columns: 1fr; }
.lu-grid-2 { grid-template-columns: 1fr; }
.lu-grid-3 { grid-template-columns: 1fr; }
.lu-grid-4 { grid-template-columns: 1fr; }
.lu-grid-auto { grid-template-columns: 1fr; }

.lu-grid--spaced {
    margin-top: var(--lu-gap);
}

@media (min-width: 576px) {
    .lu-grid-2 { grid-template-columns: repeat(2, 1fr); }
    .lu-grid-auto-sm { grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr)); }
}

@media (min-width: 768px) {
    .lu-grid-3 { grid-template-columns: repeat(3, 1fr); }
    .lu-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .lu-grid-auto { grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr)); }
}

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

/* Legacy / area-specific grids map to responsive behavior */
.dash-grid,
.stats-summary-grid,
.stat-grid,
.summary-grid,
.info-grid,
.action-grid,
.charts-grid,
.detail-grid {
    display: grid;
    gap: var(--lu-gap);
    width: 100%;
}

.dash-grid,
.stats-summary-grid {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .dash-grid,
    .stats-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .dash-grid,
    .stats-summary-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info-grid,
.action-grid {
    grid-template-columns: 1fr;
}

@media (min-width: 576px) {
    .info-grid,
    .action-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.detail-grid {
    grid-template-columns: 1fr;
}

@media (min-width: 992px) {
    .detail-grid {
        grid-template-columns: minmax(16rem, 20rem) 1fr;
    }

    .charts-grid {
        grid-template-columns: 1fr 2fr;
    }
}

.charts-grid {
    grid-template-columns: 1fr;
}

/* ═══ Cards ═══ */
.lu-card,
.adm-card {
    background: var(--lu-card);
    border: 1px solid var(--lu-border);
    border-radius: var(--lu-radius-lg);
    padding: clamp(1rem, 3vw, 1.25rem);
    box-shadow: var(--lu-shadow);
    width: 100%;
    box-sizing: border-box; /* prevent padding/border overflowing grid cells */
}

.lu-card-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
}

/* ═══ Forms & touch-friendly controls ═══ */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="date"],
input[type="datetime-local"],
input[type="number"],
input[type="tel"],
select,
textarea,
.onb-input,
.onb-select,
.onb-textarea,
.form-control,
.adm-form-row input,
.adm-form-row select,
.adm-form-row textarea {
    font-size: 1rem;
    min-height: var(--lu-touch-min);
}

textarea,
.onb-textarea,
.note-textarea {
    min-height: 6rem;
}

.btn,
.btn-primary,
.btn-secondary,
.btn-pill,
.btn-outline,
.btn-fill,
.btn-action-purple,
.onb-btn,
.logout-btn,
.admin-logout button {
    min-height: var(--lu-touch-min);
    font-size: 0.9375rem;
    text-decoration: none;
}

.lu-form-actions,
.onb-footer,
.modal-footer,
.mood-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

@media (max-width: 991.98px) {
    .lu-form-actions > *,
    .onb-footer > .onb-btn,
    .onb-footer > a.onb-btn,
    .modal-footer > *,
    .mood-footer > * {
        flex: 1 1 100%;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .lu-form-actions .btn-primary,
    .lu-form-actions .btn-secondary,
    .support-buttons .support-btn {
        width: 100%;
    }
}

/* Tables scroll horizontally; vertical scroll via .app-content or .lu-list-scroll */
.lu-table-wrap,
.adm-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* When not inside a lu-page, whole page scrolls via app-content/admin-content */
.app-content > .adm-table-wrap:not(.lu-list-scroll),
.admin-content > .adm-table-wrap:not(.lu-list-scroll),
.app-content > .lu-table-wrap:not(.lu-list-scroll),
.admin-content > .lu-table-wrap:not(.lu-list-scroll) {
    overflow-x: auto;
    overflow-y: visible;
}

.adm-table {
    min-width: 36rem;
}

/* Toolbar stacks on mobile only (admin.css handles desktop horizontal row) */
@media (max-width: 991.98px) {
    .adm-toolbar,
    .tasks-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .adm-toolbar input[type="search"] {
        max-width: none;
        width: 100%;
    }
}

/* Calendar week — horizontal scroll on narrow screens */
.cal-week {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Utility */
.lu-hidden-mobile {
    display: none;
}

@media (min-width: 992px) {
    .lu-hidden-mobile { display: initial; }
    .lu-hidden-desktop { display: none !important; }
}

.lu-stack {
    display: flex;
    flex-direction: column;
    gap: var(--lu-gap);
}

.lu-page-narrow {
    max-width: 48rem;
    margin: 0 auto;
    width: 100%;
}

/* Main view content — prevents overstretch on large desktops */
.lu-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.lu-container-md {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.lu-stack-sections {
    display: flex;
    flex-direction: column;
    gap: var(--lu-gap);
}

/* Proportional action buttons — not full-width on desktop */
.lu-action-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.lu-action-bar .btn-primary,
.lu-action-bar .btn-secondary,
.lu-action-bar .btn-pill,
.lu-action-bar a.btn-primary,
.lu-action-bar button.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    flex: 0 1 auto;
    text-decoration: none;
    text-align: center;
}

.lu-action-bar--center {
    justify-content: center;
    margin-top: 0.75rem;
}

@media (max-width: 991.98px) {
    .lu-action-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .lu-action-bar .btn-primary,
    .lu-action-bar .btn-secondary,
    .lu-action-bar .btn-pill,
    .lu-action-bar button.btn-primary {
        width: 100%;
    }
}

/* Stat / KPI cards */
.lu-stat-card {
    text-align: center;
}

.lu-stat-card .lu-stat-icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.lu-stat-card .lu-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.lu-stat-card .lu-stat-label {
    font-size: 0.8125rem;
    color: var(--lu-text-muted);
    margin-top: 0.25rem;
}

.lu-stat-card--sehat .lu-stat-value { color: #047857; }
.lu-stat-card--beresiko .lu-stat-value { color: #B45309; }
.lu-stat-card--bahaya .lu-stat-value { color: #B91C1C; }

.lu-highlight-count {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    font-weight: 600;
    margin: 0;
}

.lu-card--center {
    text-align: center;
}

/* Alerts */
.lu-alert-warning {
    background: #FEF3C7;
    color: #92400E;
    padding: 0.875rem 1rem;
    border-radius: var(--lu-radius);
    border: 1px solid #FCD34D;
}

.lu-alert-warning a {
    color: var(--lu-primary);
    font-weight: 600;
    margin-left: 0.5rem;
}

.lu-alert-danger {
    background: #FEE2E2;
    border: 1px solid #FCA5A5;
    border-radius: var(--lu-radius);
    padding: 0.875rem 1rem;
    color: #B91C1C;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.lu-alert-danger .lu-alert-danger-text {
    flex: 1 1 12rem;
}

/* Empty state */
.lu-empty-state {
    text-align: center;
    color: var(--lu-text-muted);
    padding: 2rem 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.lu-empty-state-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.85;
}

/* Search */
.lu-search-wrap {
    position: relative;
}

.lu-search-wrap .lu-search-icon {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--lu-text-muted);
    pointer-events: none;
}

.lu-search-input {
    width: 100%;
    padding: 0.75rem 0.875rem 0.75rem 2.5rem;
    border: 1px solid var(--lu-border);
    border-radius: var(--lu-radius-lg);
    font-family: inherit;
    font-size: 1rem;
}

.lu-search-results {
    display: none;
    position: absolute;
    top: calc(100% + 0.25rem);
    left: 0;
    right: 0;
    background: var(--lu-card);
    border: 1px solid var(--lu-border);
    border-radius: var(--lu-radius-lg);
    box-shadow: var(--lu-shadow);
    z-index: 20;
    max-height: 17.5rem;
    overflow-y: auto;
}

.lu-search-results.is-open {
    display: block;
}

.lu-search-result-item {
    display: flex;
    padding: 0.625rem 0.875rem;
    text-decoration: none;
    color: var(--lu-text);
    border-bottom: 1px solid var(--lu-border);
    align-items: center;
    gap: 0.625rem;
}

.lu-search-result-item:last-child {
    border-bottom: none;
}

.lu-search-result-item:hover {
    background: var(--lu-primary-soft);
}

.lu-search-result-empty {
    padding: 0.75rem 0.875rem;
    color: var(--lu-text-muted);
    font-size: 0.875rem;
}

.lu-referral-code {
    color: var(--lu-primary);
    letter-spacing: 0.05em;
}

.lu-alert-success {
    background: #D1FAE5;
    color: #047857;
    padding: 0.75rem 1rem;
    border-radius: var(--lu-radius);
    margin-bottom: var(--lu-gap);
}

.lu-card-title-sm {
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lu-card-body-muted {
    font-size: 0.8125rem;
    color: var(--lu-text-muted);
    line-height: 1.5;
}

.lu-card-body-muted strong {
    color: var(--lu-text);
    font-weight: 500;
}

.lu-section-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 var(--lu-gap);
}

@media (min-width: 992px) {
    .lu-form-actions {
        display: flex;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 0.75rem;
    }

    .lu-form-actions > a,
    .lu-form-actions > form {
        flex: 1 1 0;
        min-width: 0;
    }
}

/* ─── Custom scrollbar (WebKit) ─── */
::-webkit-scrollbar          { width: 6px; height: 6px; }
::-webkit-scrollbar-track    { background: transparent; }
::-webkit-scrollbar-thumb    { background: #CBD5E1; border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: #94A3B8; }

/* ─── Card hover polish ─── */
.lu-card,
.adm-card {
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.lu-card:hover,
.adm-card:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* ─── Button transitions ─── */
.btn,
.btn-primary,
.btn-secondary,
.btn-pill,
.onb-btn {
    transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease, color 0.18s ease;
}

/* ─── Side nav item transition ─── */
.side-nav-item {
    transition: background 0.18s ease, color 0.18s ease, transform 0.1s ease;
}
.side-nav-item:hover {
    transform: translateX(2px);
}
.side-nav-item.active {
    transform: none;
}

/* Bootstrap focus ring override (public layout) */
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #7c3aed;
}
/* ═══ Reusable Modal Styles (prf-modal) ═══ */
.prf-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    padding: 20px;
}
.prf-modal-overlay.prf-modal--open {
    opacity: 1;
    pointer-events: auto;
}
.prf-modal {
    background: #ffffff;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    max-height: 90dvh;
}
.prf-modal-overlay.prf-modal--open .prf-modal {
    transform: translateY(0) scale(1);
}
.prf-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #F3F4F6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}
.prf-modal-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}
.prf-modal-close {
    background: transparent;
    border: none;
    color: #9CA3AF;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.prf-modal-close:hover {
    background: #F3F4F6;
    color: #111827;
}
.prf-modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}
.prf-modal-footer {
    padding: 16px 24px;
    background: #F9FAFB;
    border-top: 1px solid #F3F4F6;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-shrink: 0;
}
.prf-modal-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.prf-modal-btn--cancel {
    background: white;
    color: #374151;
    border: 1px solid #D1D5DB;
}
.prf-modal-btn--cancel:hover {
    background: #F3F4F6;
}
.prf-modal-btn--save {
    background: #4338CA;
    color: white;
    box-shadow: 0 4px 12px rgba(67, 56, 202, 0.2);
}
.prf-modal-btn--save:hover {
    background: #3730A3;
    box-shadow: 0 6px 16px rgba(67, 56, 202, 0.3);
}
@media (max-width: 767.98px) {
    .prf-modal-overlay {
        align-items: flex-start;
        overflow-y: auto;
        padding: 16px;
    }
    .prf-modal {
        max-height: none;
        margin: auto;
    }
}
.prf-form-group {
    margin-bottom: 20px;
}
.prf-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

body.lu-scroll-lock {
    overflow: hidden;
}

.is-hidden {
    display: none !important;
}

img.is-hidden {
    display: none;
}

.lu-alert.is-dismissing,
.hrsch-idx-alert-success.is-dismissing {
    opacity: 0;
    transition: opacity .4s ease;
}
