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

:root {
    --brand-primary: #1060d0;
    --brand-light: #eaf3fa;
    --brand-soft: #f4f9fd;
    --brand-dark: #1e2f45;
    --text-main: #1e2f45;
    --text-muted: #64748b;
    --white: #ffffff;
    --border: #dbe8f4;
    --shadow: 0 8px 24px rgba(16, 96, 208, 0.09);
    --ui-font-display: 'Sora', 'Poppins', Arial, sans-serif;
    --ui-font-body: 'Manrope', 'Poppins', Arial, sans-serif;
    --ui-text: 0.875rem;
    --ui-h1: clamp(1.15rem, 1rem + 0.55vw, 1.4rem);
    --ui-h2: 1.0625rem;
    --ui-h3: 0.9375rem;
    --ui-h4: 0.875rem;
}

body {
    font-family: var(--ui-font-body);
    color: var(--text-main);
}

a {
    color: var(--brand-primary);
}

a:hover {
    color: #0c50b4;
}

body.login-split-page {
    margin: 0;
    font-family: "Poppins", Arial, sans-serif;
    background: #eff2f7;
    color: #223249;
}

.login-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.login-panel {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    overflow: hidden;
}

.panel-left {
    padding: 48px 48px 28px;
    position: relative;
    background: #edf2f8;
    grid-column: 1;
}

.panel-left h1 {
    margin: 0;
    line-height: 1.22;
    font-size: 38px;
    font-weight: 700;
    color: #1e2f45;
    max-width: 560px;
}

.panel-left h1 span {
    color: #006ac3;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 26px 0 38px;
}

.feature-list li {
    margin-bottom: 12px;
    font-size: 18px;
    color: #344a67;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li::before {
    content: "\2713";
    color: #10a66d;
    font-weight: 700;
    font-size: 20px;
}

.promo-art {
    width: 100%;
    min-height: 290px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.promo-art img {
    width: 100%;
    max-width: 320px;
    object-fit: contain;
}

.promo-art::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    margin: auto;
    width: 100%;
    height: 38px;
    border-bottom: 2px dashed #cfdcec;
    border-radius: 0 0 60% 60%;
}

.panel-right {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 48px 40px 48px 24px;
    background: #edf2f8;
    grid-column: 2;
}

.login-card {
    width: 100%;
    max-width: 450px;
    background: #fff;
    border: 1px solid #e1e8f2;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(36, 70, 112, 0.08);
    padding: 26px 28px;
}

.brand-wrap {
    text-align: center;
    margin-bottom: 14px;
}

.brand-wrap img {
    height: 72px;
    width: auto;
}

/* Login/register: coloured logo by default; white logo only on narrow screens over brand strip */
.auth-logo-mark {
    width: auto;
    height: 72px;
    vertical-align: middle;
}

.login-split-page .auth-logo-white {
    display: none;
}

.verify-brand-logo {
    width: auto;
    height: 72px;
    vertical-align: middle;
}

.login-title {
    margin: 0 0 20px;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #172b43;
}

.form-group label {
    color: #203b5c;
    font-weight: 600;
    font-size: 14px;
}

.re-input {
    height: 48px;
    border-radius: 10px;
    border: 1px solid #d8e4f2;
    background: #f9fbff;
    font-size: 14px;
    padding: 10px 14px;
    color: #1a2c44;
}

.re-input:focus {
    border-color: #1f7ed7;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(31, 126, 215, 0.15);
}

.forgot-link {
    text-align: right;
    margin: 5px 0 16px;
    font-size: 14px;
}

.forgot-link a {
    color: #1f7ed7;
    font-weight: 500;
}

.btn-login {
    height: 50px;
    border-radius: 10px;
    border: none;
    width: 100%;
    background: #1060d0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-login:hover {
    background: #0b69be;
}

.new-account {
    margin-top: 16px;
    text-align: center;
    color: #4d6482;
    font-size: 14px;
}

.new-account a {
    color: #1060d0;
    font-weight: 600;
}

@media (max-width: 1080px) {
    .login-panel {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .panel-left,
    .panel-right {
        grid-column: 1;
    }

    .panel-right {
        order: 1;
        padding: 20px 14px;
    }

    .panel-left {
        order: 2;
        padding-bottom: 22px;
    }
}

@media (max-width: 767px) {
    .login-shell {
        padding: 14px;
    }

    .panel-left {
        padding: 32px 22px 20px;
    }

    .panel-left h1 {
        font-size: 33px;
    }

    .feature-list li {
        font-size: 16px;
    }

    .panel-right {
        padding: 20px 14px;
    }

    .login-card {
        padding: 24px 18px;
    }

    /* White logo on brand strip Ã¢â¬â matches forgot / reset / mobile verification */
    .login-split-page .brand-wrap {
        background: linear-gradient(150deg, #0c4f9d, #1f7fda);
        margin: -24px -18px 16px;
        padding: 22px 16px;
        border-radius: 10px 10px 0 0;
    }

    .login-split-page .brand-wrap img.auth-logo-colored {
        display: none !important;
    }

    .login-split-page .brand-wrap img.auth-logo-white {
        display: inline-block !important;
    }
}

.register-card {
    max-width: 520px;
    width: 100%;
}

@media (min-width: 1081px) {
    .login-panel .panel-right .register-card {
        max-width: none;
    }
}

.register-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.register-form-grid .full-span {
    grid-column: 1 / -1;
}

.register-form-grid .form-group {
    margin-bottom: 0;
}

.register-form-grid .red {
    margin: 6px 0 0;
    min-height: 16px;
    color: #dd3f4f;
    font-size: 12px;
}

.register-form-grid .action-wrap {
    margin-top: 6px;
}

@media (max-width: 767px) {
    .register-form-grid {
        grid-template-columns: 1fr;
    }
}

/* Shared styles for verify/forgot/reset auth pages */
body.verify-page {
    margin: 0;
    min-height: 100vh;
    font-family: "Poppins", Arial, sans-serif;
    background: radial-gradient(circle at 10% 20%, #d6e4ff 0%, #eef4ff 40%, #f6f9ff 100%);
    color: #24364d;
}

.verify-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.verify-card {
    width: 100%;
    max-width: 940px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(32, 62, 103, 0.12);
    border: 1px solid #e3ebf7;
}

.verify-left {
    background: linear-gradient(150deg, #0c4f9d, #1f7fda);
    color: #fff;
    padding: 42px 34px;
    position: relative;
}

.verify-left::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    top: -60px;
    right: -80px;
}

.verify-left::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    bottom: -65px;
    left: -55px;
}

.verify-left img {
    width: 120px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.verify-left h2 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.25;
    position: relative;
    z-index: 2;
}

.verify-left p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #d6e7ff;
    max-width: 330px;
    position: relative;
    z-index: 2;
}

.verify-right {
    padding: 44px 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verify-form-wrap {
    width: 100%;
    max-width: 390px;
}

.verify-form-wrap h4 {
    margin: 0 0 8px;
    color: #1f3250;
    font-size: 28px;
    font-weight: 600;
}

.verify-form-wrap .subtext {
    margin: 0 0 24px;
    color: #6d7f97;
    font-size: 14px;
}

.field-label,
.otp-label {
    color: #203b5c;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: inline-block;
}

.field-input {
    width: 100%;
    max-width: 100%;
    display: block;
    box-sizing: border-box;
    height: 56px;
    border-radius: 14px;
    border: 1px solid #c5d8ef;
    background: linear-gradient(180deg, #fafdff 0%, #f2f8ff 100%);
    padding: 12px 16px;
    font-size: 16px;
    color: #12335d;
    outline: none;
    transition: all 0.2s ease;
    box-shadow: inset 0 1px 2px rgba(17, 48, 87, 0.08);
}

.field-input.password-input {
    margin-bottom: 14px;
}

.field-input:focus {
    border-color: #1f7ed7;
    box-shadow: 0 0 0 4px rgba(31, 126, 215, 0.18), inset 0 1px 2px rgba(17, 48, 87, 0.08);
    background: #fff;
}

.otp-input {
    width: 100%;
    max-width: 100%;
    display: block;
    box-sizing: border-box;
    height: 60px;
    border-radius: 14px;
    border: 1px solid #c5d8ef;
    background: linear-gradient(180deg, #fafdff 0%, #f2f8ff 100%);
    padding: 12px 18px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-align: center;
    color: #12335d;
    outline: none;
    transition: all 0.2s ease;
    box-shadow: inset 0 1px 2px rgba(17, 48, 87, 0.08);
}

.otp-input:focus {
    border-color: #1f7ed7;
    box-shadow: 0 0 0 4px rgba(31, 126, 215, 0.18), inset 0 1px 2px rgba(17, 48, 87, 0.08);
    background: #fff;
}

.otp-input::placeholder {
    letter-spacing: 0.2em;
    font-size: 16px;
    font-weight: 500;
    color: #89a3c2;
}

.verify-btn {
    width: 100%;
    border: none;
    border-radius: 12px;
    height: 52px;
    margin-top: 18px;
    background: linear-gradient(135deg, #1060d0, #0c50b4);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.verify-btn.btn-tight {
    margin-top: 4px;
}

.verify-btn:hover {
    filter: brightness(0.98);
}

.resend,
.links {
    margin-top: 16px;
    text-align: center;
    font-size: 14px;
}

.links {
    color: #6d7f97;
}

.resend a,
.links a {
    color: #1060d0;
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 900px) {
    .verify-card {
        grid-template-columns: 1fr;
    }

    .verify-left,
    .verify-right {
        padding: 30px 20px;
    }

    .verify-left h2 {
        font-size: 24px;
    }

    .otp-input {
        font-size: 21px;
        letter-spacing: 0.28em;
    }
}

/* Step-by-step post property basic details */
.basic-step-card {
    border: 1px solid #e8edf5;
    border-radius: 14px;
    padding: 20px;
    background: #fff;
}

.step-title {
    font-size: 38px;
    font-weight: 600;
    color: #062a55;
    margin-bottom: 16px;
    line-height: 1.2;
}

.choice-row {
    margin-bottom: 20px;
}

.choice-row .choice-label {
    font-size: 16px;
    font-weight: 600;
    color: #2e4563;
    display: block;
    margin-bottom: 10px;
}

.radio-choices {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.radio-choices label {
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    color: #203b5c;
    gap: 10px;
    margin: 0;
    cursor: pointer;
}

.radio-choices input[type="radio"] {
    width: 22px;
    height: 22px;
    accent-color: #0077d9;
    cursor: pointer;
}

.type-chip-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.type-chip {
    border: 2px solid #d7dce4;
    border-radius: 999px;
    background: #fff;
    color: #2f4f75;
    padding: 12px 24px;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: all .2s ease;
}

.type-chip:hover {
    border-color: #8dbbe8;
    color: #0f5fa8;
}

.type-chip.active {
    border-color: #1280da;
    background: #eaf4ff;
    color: #0f5fa8;
}

#property_type {
    display: none;
}

@media (max-width: 767px) {
    .step-title {
        font-size: 28px;
    }

    .radio-choices label,
    .type-chip {
        font-size: 16px;
    }
}

/* Dashboard page styles */
:root {
    --brand-primary: #1060d0;
    --brand-light: #eaf3fa;
    --brand-soft: #f4f9fd;
    --brand-dark: #1e2f45;
    --text-main: #1e2f45;
    --text-muted: #64748b;
    --white: #ffffff;
    --border: #dbe8f4;
    --shadow: 0 8px 24px rgba(16, 96, 208, 0.09);
}

* {
    box-sizing: border-box;
}

body.dashboard-page {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: var(--brand-soft);
    color: var(--text-main);
}

/* Welcome strip actions: compact stacked buttons on mobile */
body.dashboard-page .dash-welcome-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

body.dashboard-page .dash-welcome-actions > a {
    width: 100%;
    min-height: 36px;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
}

@media (min-width: 640px) {
    body.dashboard-page .dash-welcome-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    body.dashboard-page .dash-welcome-actions > a {
        width: auto;
        min-height: auto;
    }
}

body.dashboard-page .dash-welcome-stat {
    width: 100%;
}

@media (max-width: 639px) {
    body.dashboard-page .dash-welcome-stat {
        max-width: 100%;
    }
}

@media (min-width: 640px) {
    body.dashboard-page .dash-welcome-stat {
        width: auto;
    }
}

/* Dashboard mobile: keep title, partner, listing cards and pager inside the viewport */
body.dashboard-page .dash-main,
body.dashboard-page .dash-title-card,
body.dashboard-page .dash-partner-card,
body.dashboard-page .dash-listings-card {
    min-width: 0;
    max-width: 100%;
}

body.dashboard-page .dash-partner-card ul,
body.dashboard-page .dash-listings-card ul {
    padding-left: 0;
    margin-left: 0;
}

body.dashboard-page .tf-sw-dash-props {
    width: 100%;
    overflow: hidden;
}

body.dashboard-page .tf-sw-dash-props .swiper-slide {
    height: auto;
    min-width: 0;
    box-sizing: border-box;
}

body.dashboard-page .tf-sw-dash-props .swiper-slide > div {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

body.dashboard-page .dash-listings-pager {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    min-height: 1.25rem;
}

body.dashboard-page .dash-listings-pager .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0 4px;
    background: #94a3b8;
    opacity: 0.55;
}

body.dashboard-page .dash-listings-pager .swiper-pagination-bullet-active {
    width: 18px;
    border-radius: 999px;
    background: #70b000;
    opacity: 1;
}

@media (max-width: 639px) {
    body.dashboard-page .dash-title-card h1 {
        font-size: 1.15rem;
        line-height: 1.3;
    }

    body.dashboard-page .dash-listings-card {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* Keep dashboard charts inside the card on small screens */
body.dashboard-page .dash-charts-grid {
    min-width: 0;
}

body.dashboard-page .dash-chart-card,
body.dashboard-page .dash-chart-wrap,
body.dashboard-page #monthlyChart,
body.dashboard-page #statusChart,
body.dashboard-page #perfEnquiryChart {
    min-width: 0;
    max-width: 100%;
}

body.dashboard-page .dash-chart-wrap {
    overflow: hidden;
}

body.dashboard-page #monthlyChart .apexcharts-canvas,
body.dashboard-page #statusChart .apexcharts-canvas,
body.dashboard-page #perfEnquiryChart .apexcharts-canvas,
body.dashboard-page #monthlyChart .apexcharts-svg,
body.dashboard-page #statusChart .apexcharts-svg,
body.dashboard-page #perfEnquiryChart .apexcharts-svg {
    max-width: 100% !important;
}

@media (max-width: 767px) {
    body.dashboard-page .dash-chart-card {
        padding: 14px 12px;
    }

    body.dashboard-page #monthlyChart {
        min-height: 220px;
    }

    body.dashboard-page #monthlyChart .apexcharts-xaxis-label {
        font-size: 9px;
    }
}

/* User dashboard topbar — layout/behavior; visuals mostly Tailwind on markup */
.user-dash-topbar {
    overflow: visible;
}

.user-dash-topbar .topbar-inner,
.user-dash-topbar .top-actions,
.user-dash-topbar .user-notifications,
.user-dash-topbar .user-account-menu {
    overflow: visible;
}

/* portal-tw.css sets dropdown menus to left:0 — anchor user topbar menus correctly */
body.dashboard-page .user-dash-topbar .user-notifications__menu,
body.dashboard-page .user-dash-topbar .user-account-menu__panel,
body.dashboard-page .user-dash-topbar [data-re-dropdown-menu] {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    margin-top: 0 !important;
    z-index: 1200;
    white-space: normal;
}

body.dashboard-page .user-dash-topbar .user-notifications__menu {
    left: 0 !important;
    right: auto !important;
    width: min(360px, calc(100vw - 16px)) !important;
    min-width: 0 !important;
}

body.dashboard-page .user-dash-topbar .user-account-menu__panel {
    left: auto !important;
    right: 0 !important;
    width: min(14.5rem, calc(100vw - 16px)) !important;
    min-width: 0 !important;
}

.user-dash-topbar .h-nav {
    display: flex;
}

.user-dash-topbar .h-nav-toggle {
    display: none;
    flex: 0 0 auto;
    padding: 0;
    cursor: pointer;
}

.user-dash-topbar .h-nav-toggle:focus-visible,
.user-dash-topbar .nav-submenu__trigger:focus-visible {
    outline: 2px solid #0b3d91;
    outline-offset: 2px;
}

.user-dash-topbar .h-nav-toggle__icon,
.user-dash-topbar .h-nav-toggle__icon::before,
.user-dash-topbar .h-nav-toggle__icon::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.user-dash-topbar .h-nav-toggle__icon {
    position: relative;
}

.user-dash-topbar .h-nav-toggle__icon::before,
.user-dash-topbar .h-nav-toggle__icon::after {
    content: "";
    position: absolute;
    left: 0;
}

.user-dash-topbar .h-nav-toggle__icon::before {
    top: -5px;
}

.user-dash-topbar .h-nav-toggle__icon::after {
    top: 5px;
}

.user-dash-topbar.is-nav-open .h-nav-toggle__icon {
    background: transparent;
}

.user-dash-topbar.is-nav-open .h-nav-toggle__icon::before {
    top: 0;
    transform: rotate(45deg);
}

.user-dash-topbar.is-nav-open .h-nav-toggle__icon::after {
    top: 0;
    transform: rotate(-45deg);
}

.user-dash-topbar .user-nav-link.is-active::after,
.user-dash-topbar .user-nav-link.active::after {
    display: none;
}

.user-dash-topbar .nav-submenu__trigger {
    position: relative;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}

.user-dash-topbar .user-nav-chevron {
    display: inline-block;
    flex-shrink: 0;
    width: 0.625rem;
    height: 0.625rem;
    margin-left: 0.15rem;
    color: currentColor;
    opacity: 0.42;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.user-dash-topbar .nav-submenu__trigger:hover .user-nav-chevron,
.user-dash-topbar .nav-submenu__trigger.is-active .user-nav-chevron,
.user-dash-topbar .nav-submenu__trigger[aria-expanded="true"] .user-nav-chevron {
    opacity: 0.72;
}

.user-dash-topbar .nav-submenu.nav-submenu--open .user-nav-chevron {
    transform: rotate(180deg);
}

@media (min-width: 769px) and (hover: hover) {
    .user-dash-topbar .nav-submenu:hover .user-nav-chevron,
    .user-dash-topbar .nav-submenu:focus-within .user-nav-chevron {
        transform: rotate(180deg);
    }
}

.user-dash-topbar .user-account-menu__caret {
    color: currentColor;
    opacity: 0.42;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.user-dash-topbar .user-account-menu__toggle:hover .user-account-menu__caret,
.user-dash-topbar .user-account-menu__toggle[aria-expanded="true"] .user-account-menu__caret {
    opacity: 0.72;
}

.user-dash-topbar .user-account-menu__toggle[aria-expanded="true"] .user-account-menu__caret {
    transform: rotate(180deg);
}

.user-dash-topbar .nav-submenu__panel {
    /* Explicit min-width: absolute panels shrink-wrap to the short trigger otherwise. */
    min-width: 13.5rem;
    width: max-content;
    max-width: min(24rem, calc(100vw - 1.5rem));
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    pointer-events: none;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s;
}

.user-dash-topbar .nav-leads-dd .nav-submenu__panel,
.user-dash-topbar .nav-packages-dd .nav-submenu__panel {
    min-width: 20.5rem;
}

.user-dash-topbar .nav-submenu__panel::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -8px;
    height: 8px;
}

@media (min-width: 769px) and (hover: hover) {
    .user-dash-topbar .nav-submenu:hover .nav-submenu__panel,
    .user-dash-topbar .nav-submenu:focus-within .nav-submenu__panel {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

.user-dash-topbar .nav-submenu.nav-submenu--open .nav-submenu__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.user-dash-topbar .nav-submenu__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    white-space: nowrap;
    text-decoration: none;
}

.user-dash-topbar .nav-submenu__link > span {
    flex: 0 0 auto;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .user-dash-topbar .nav-submenu__panel {
        position: static;
        width: 100%;
        margin-top: 0;
        box-shadow: none;
        transform: none;
        border: 0;
        background: transparent;
        padding: 0;
        transition: opacity 0.2s ease, visibility 0.2s;
    }

    .user-dash-topbar .nav-submenu:not(.nav-submenu--open) .nav-submenu__panel {
        display: none;
    }

    .user-dash-topbar .nav-submenu.nav-submenu--open .nav-submenu__panel {
        display: block;
        margin-top: 0.25rem;
        padding: 0.25rem 0 0.25rem 0.5rem;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .user-dash-topbar .nav-submenu__panel::before {
        display: none;
    }
}

.btn {
    border: none;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.page-wrap {
    max-width: 1280px;
    margin: 24px auto 40px;
    padding: 0 16px;
}

.welcome {
    margin-bottom: 18px;
}

.welcome h1 {
    margin: 0 0 6px;
    font-size: 24px;
    color: var(--brand-dark);
}

.welcome p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-bottom: 18px;
    align-items: stretch;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 14px;
    padding: 16px;
}

.stat-title {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-primary);
    margin: 0;
    line-height: 1.1;
}

.card-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 16px;
    margin-bottom: 18px;
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 16px;
}

.card h3 {
    margin: 0 0 14px;
    font-size: 17px;
    color: var(--brand-dark);
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 750px;
}

th,
td {
    border-bottom: 1px solid #edf3f9;
    text-align: left;
    padding: 11px 9px;
    font-size: 13px;
}

th {
    color: var(--brand-dark);
    background: var(--brand-light);
    font-weight: 600;
}

.badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--white);
    background: var(--brand-primary);
}

.badge.rent {
    background: #0f766e;
}

.badge.pg {
    background: #7c3aed;
}

.query-box {
    background: #0f172a;
    color: #d1d5db;
    border-radius: 12px;
    padding: 14px;
    overflow: auto;
    font-size: 12px;
    line-height: 1.6;
    white-space: pre-wrap;
}

.chart-holder {
    height: 300px;
}

@media (max-width: 992px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
}


/* Post property step form */
.post-step-wrap {
    max-width: 980px;
    margin: 0 auto;
}

.step-indicator {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #eaf3fa;
    color: #0b3d91;
    font-size: 13px;
    font-weight: 600;
}

.required {
    color: #dc2626;
}

.step-action-row {
    margin-top: 20px;
}

.helper-muted {
    color: #64748b;
    font-size: 14px;
}

.field-error {
    display: none;
    margin-top: 6px;
    color: #dc2626;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
}

.step-preview {
    margin-top: 16px;
    padding: 14px;
    border-radius: 10px;
    border: 1px dashed #bdd7ee;
    background: #f8fbff;
    color: #23486b;
    font-weight: 500;
}

/* Smaller and cleaner typography for post property step 1 */
.post-step-wrap .step-title {
    font-size: 24px;
    margin-bottom: 14px;
    line-height: 1.25;
}

.post-step-wrap .choice-label {
    font-size: 14px;
    margin-bottom: 8px;
}

.post-step-wrap .radio-choices label {
    font-size: 14px;
    gap: 8px;
}

.post-step-wrap .radio-choices input[type="radio"] {
    width: 16px;
    height: 16px;
}

.post-step-wrap .type-chip-wrap {
    gap: 10px;
}

.post-step-wrap .type-chip {
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 999px;
}

.post-step-layout {
    display: grid;
    grid-template-columns: minmax(300px, 340px) minmax(0, 1fr);
    gap: 22px;
    align-items: stretch;
}

.post-left-panel {
    display: grid;
    gap: 18px;
    height: 100%;
}

.stepper-card,
.score-card {
    background: #f3f5f9;
    border-radius: 18px;
    padding: 24px 22px;
    border: 1px solid #e1e8f2;
}

.stepper-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 0 0 18px;
}

.stepper-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 17px;
    width: 2px;
    height: calc(100% + 2px);
    background: #cfd6e0;
}

.stepper-item.active:not(:last-child)::after {
    background: linear-gradient(#1e86d8 0 42%, #c8ccd5 42% 100%);
}

.stepper-item .dot {
    width: 15px;
    height: 15px;
    min-width: 15px;
    border-radius: 50%;
    border: 2px solid #a7b1c1;
    background: #fff;
    margin-top: 2px;
    z-index: 1;
}

.stepper-item.active .dot {
    border-color: #1060d0;
    box-shadow: inset 0 0 0 3px #fff;
    background: #1060d0;
}

.stepper-item.done .dot {
    border-color: #1060d0;
    background: #1060d0;
}

.stepper-item.done h4 {
    color: #1060d0;
}

.stepper-item.done:not(:last-child)::after {
    background: #1060d0;
}

.stepper-item h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.18;
}

.stepper-item p {
    margin: 4px 0 0;
    font-size: 13px;
    color: var(--text-muted);
}

.score-card {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 135px;
}

.score-ring {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: conic-gradient(#2eb24e 0 8%, #d7d9df 8% 100%);
    display: grid;
    place-items: center;
}

.score-ring span {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f3f5f9;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
}

.score-text h4 {
    margin: 0;
    font-size: 18px;
    line-height: 1.1;
    color: var(--text-main);
}

.score-text p {
    margin: 4px 0 0;
    font-size: 12px;
    line-height: 1.35;
    color: var(--text-muted);
    max-width: 190px;
}

.post-step-wrap.card {
    height: 100%;
    min-height: 560px;
    max-width: none;
    width: 100%;
    margin: 0;
}

.post-step-wrap .basic-step-card {
    min-height: 460px;
    border: 1px solid #e1e8f2;
}

.post-step-wrap .step-indicator {
    margin-bottom: 18px;
}

.post-step-wrap form {
    width: 100%;
}

.form-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.step-select,
.step-input {
    width: 100%;
    height: 42px;
    border-radius: 10px;
    border: 1px solid #d4deea;
    background: #fff;
    font-size: 14px;
    color: #24384f;
    padding: 9px 12px;
    outline: none;
}

.step-select:focus,
.step-input:focus {
    border-color: #1f7ed7;
    box-shadow: 0 0 0 3px rgba(31, 126, 215, 0.12);
}

.btn-light-step {
    background: #e8edf4;
    color: #203650;
    margin-right: 8px;
}

.compact-radio {
    gap: 18px;
}

.compact-radio label {
    font-size: 13px;
}

.select-badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.select-badge {
    font-size: 12px;
    padding: 7px 12px;
}

.select-badge--add-more {
    border-style: dashed !important;
    opacity: 0.9;
}

.select-badge--custom {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-right: 8px;
}

.select-badge--custom .select-badge__label {
    max-width: 14rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select-badge--custom .chip-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    background: rgba(22, 30, 45, 0.08);
    color: #334155;
}

.select-badge--custom.active .chip-remove {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.select-badge--custom .chip-remove:hover {
    background: rgba(220, 38, 38, 0.15);
    color: #b91c1c;
}

.check-choices {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: #2a3f58;
}

.check-choices label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.inline-checks {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
}

.input-group-rupee {
    display: flex;
    align-items: stretch;
}

.rupee-symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid #d4deea;
    border-right: 0;
    border-radius: 10px 0 0 10px;
    background: #f4f8fd;
    color: #345271;
    font-size: 13px;
    font-weight: 600;
    min-width: 46px;
}

.input-group-rupee .step-input {
    border-radius: 0 10px 10px 0;
}

.mt-6 {
    margin-top: 6px;
}

.btn-link-additional {
    border: none;
    background: transparent;
    color: #1060d0;
    padding: 0;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.additional-pricing-wrap {
    border: 1px dashed #c7d9ea;
    border-radius: 10px;
    padding: 12px;
    background: #f8fbff;
}

.inline-add-wrap {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 8px;
}

.inline-add-wrap .step-input {
    flex: 1;
}

.input-group-split {
    display: grid;
    grid-template-columns: 1fr 110px;
}

.input-group-split .step-input {
    border-radius: 10px 0 0 10px;
    border-right: 0;
}

.input-group-split .step-select {
    border-radius: 0 10px 10px 0;
}

.road-width-wrap {
    max-width: 360px;
}

.step-input-file {
    width: 100%;
    border-radius: 10px;
    border: 1px dashed #c7d9ea;
    background: #f8fbff;
    padding: 10px 12px;
    font-size: 14px;
    color: #24384f;
}

.image-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin: 10px 0 18px;
}

.image-preview-card {
    border: 1px solid #e1e8f2;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.image-preview-card img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    display: block;
}

.image-preview-meta {
    padding: 8px 10px;
    font-size: 12px;
    color: #2a3f58;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.image-remove-btn {
    width: 100%;
    border: 0;
    border-top: 1px solid #edf3f9;
    padding: 8px 10px;
    background: #f8fafc;
    cursor: pointer;
    font-weight: 600;
    color: #b42318;
    font-size: 12px;
}

.step-textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #d4deea;
    background: #fff;
    font-size: 14px;
    color: #24384f;
    padding: 10px 12px;
    outline: none;
    resize: vertical;
}

.step-textarea:focus {
    border-color: #1f7ed7;
    box-shadow: 0 0 0 3px rgba(31, 126, 215, 0.12);
}

#specialPropertyStepFields .ck-editor {
    width: 100%;
}

#specialPropertyStepFields .ck-editor__editable {
    min-height: 160px;
    border-radius: 0 0 10px 10px;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    color: #24384f;
}

#specialPropertyStepFields .ck.ck-toolbar {
    border-radius: 10px 10px 0 0;
    border-color: #d4deea;
}

#specialPropertyStepFields .ck.ck-editor__main > .ck-editor__editable {
    border-color: #d4deea;
}

.special-step4-note {
    margin: 0.75rem 0 1rem;
}

.success-wrap {
    padding: 6px 2px 2px;
}

.success-page {
    max-width: 980px;
    margin: 0 auto;
}

.success-shell {
    border: 1px solid #e1e8f2;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: 0 14px 35px rgba(16, 96, 208, 0.10);
    padding: 26px 22px;
}

.success-shell--sale {
    --success-accent: #1060d0;
    --success-soft: rgba(16, 96, 208, 0.12);
}

.success-shell--rent {
    --success-accent: #0f9f6a;
    --success-soft: rgba(15, 159, 106, 0.12);
}

.success-shell--pg {
    --success-accent: #8f56d9;
    --success-soft: rgba(143, 86, 217, 0.12);
}

.success-badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--success-soft, rgba(16, 96, 208, 0.12));
    color: var(--success-accent, #1060d0);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
}

.success-hero-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
}

.success-hero-copy {
    min-width: 0;
}

.success-hero-icon {
    color: var(--success-accent, #1060d0);
}

.success-hero {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 14px;
}

.success-title {
    margin: 0;
    font-size: 20px;
    color: #12335d;
}

.success-sub {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 13px;
}

.success-feature {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 14px;
    align-items: start;
    border: 1px solid #e6eff9;
    background: #fff;
    border-radius: 16px;
    padding: 16px 14px;
    margin-top: 14px;
}

.success-feature-redesign {
    grid-template-columns: 300px 1fr;
    gap: 16px;
}

.success-preview {
    border: 1px solid #e6eff9;
    border-radius: 14px;
    min-height: 232px;
    overflow: hidden;
    background: #f7fbff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-preview img {
    width: 100%;
    height: 100%;
    min-height: 232px;
    object-fit: cover;
    display: block;
}

.success-preview-fallback {
    min-height: 232px;
    width: 100%;
    background: linear-gradient(145deg, #f8fbff 0%, #eef4fd 100%);
    color: #64748b;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-kv {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
}

.kv-item-wide {
    grid-column: 1 / -1;
}

.kv-item {
    padding: 10px 12px;
    border: 1px solid #edf3f9;
    border-radius: 12px;
    background: #fbfdff;
}

.kv-item span {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 4px;
}

.kv-item strong {
    display: block;
    font-size: 13px;
    color: #12335d;
    line-height: 1.25;
    word-break: break-word;
}

.success-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.success-banner-cta {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #e6eff9;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.success-banner-cta .success-badge {
    margin-bottom: 2px;
}

.success-banner-cta-lead {
    margin: 0 0 2px !important;
    max-width: 520px;
}

@media (max-width: 640px) {
    .success-hero-head {
        grid-template-columns: 1fr;
    }
    .success-hero-icon {
        display: none;
    }
    .success-feature-redesign {
        grid-template-columns: 1fr;
    }
    .success-preview,
    .success-preview-fallback,
    .success-preview img {
        min-height: 190px;
    }
    .success-feature {
        grid-template-columns: 1fr;
    }
    .success-kv {
        grid-template-columns: 1fr;
    }
}

.success-package-details {
    margin-top: 20px;
    padding: 20px 22px;
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 16px;
    background: #f8fafc;
}

.success-package-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.success-package-title {
    margin: 0 0 4px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brand-dark, #0f172a);
}

.success-package-tag {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #1563a8;
}

.success-package-pricebox {
    text-align: right;
    flex-shrink: 0;
}

.success-package-price {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1060d0;
    line-height: 1.1;
}

.success-package-days {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #64748b;
}

.success-package-note {
    margin: 0 0 14px !important;
}

.success-package-feats {
    margin-bottom: 0 !important;
}

.pp-package-pick {
    margin-top: 8px;
}

.pp-package-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 12px;
    align-items: stretch;
}

@media (max-width: 900px) {
    .pp-package-detail-grid {
        grid-template-columns: 1fr;
    }
    .success-package-head {
        flex-direction: column;
    }
    .success-package-pricebox {
        text-align: left;
    }
}

.pp-package-detail {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 22px 20px 18px;
    border: 2px solid var(--border, #dbe3ee);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    cursor: pointer;
    text-align: left;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.pp-package-detail:hover {
    border-color: rgba(112, 176, 0, 0.45);
}

.pp-package-detail.is-selected {
    border-color: #70b000;
    box-shadow: 0 0 0 3px rgba(112, 176, 0, 0.18), 0 12px 28px rgba(15, 45, 74, 0.08);
}

.pp-package-detail--premium {
    background: linear-gradient(180deg, #f7fbf0 0%, #fff 48%);
}

.pp-package-detail--premium.is-selected {
    border-color: #70b000;
}

.pp-package-detail__ribbon {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #70b000, #5a8f00);
    padding: 5px 10px;
    border-radius: 999px;
}

.pp-package-detail__head {
    margin-bottom: 6px;
    padding-right: 72px;
}

.pp-package-detail__plan {
    margin: 0 0 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}

.pp-package-detail__price {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand-dark, #0f172a);
    line-height: 1.1;
}

.pp-package-detail__meta {
    margin: 8px 0 0;
    font-size: 13px;
    line-height: 1.45;
    color: #64748b;
}

.pp-package-detail__tag {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 600;
    color: #1563a8;
}

.pp-package-detail__feats {
    flex: 1 1 auto;
    margin-bottom: 16px !important;
}

.pp-package-detail__foot {
    margin-top: auto;
    padding-top: 4px;
}

.pp-package-detail__pick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #3f6400;
    background: rgba(112, 176, 0, 0.1);
    border: 1px solid rgba(112, 176, 0, 0.28);
}

.pp-package-detail.is-selected .pp-package-detail__pick {
    color: #fff;
    background: #70b000;
    border-color: #70b000;
}

/* Property details page */
.pd-hero {
    margin-bottom: 14px;
}

.pd-hero-top {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 16px;
    align-items: start;
}

.pd-pill {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(16, 96, 208, 0.12);
    color: #1060d0;
    font-size: 12px;
    font-weight: 700;
}

.pd-title {
    margin: 10px 0 6px;
    font-size: 24px;
    color: #12335d;
}

.pd-sub {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #64748b;
    font-size: 13px;
}

.pd-sub-item {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.pd-price {
    border: 1px solid #e1e8f2;
    border-radius: 16px;
    background: #fff;
    padding: 14px 14px;
    box-shadow: 0 10px 26px rgba(16, 96, 208, 0.08);
}

.pd-price-label {
    font-size: 12px;
    color: #64748b;
}

.pd-price-value {
    margin-top: 6px;
    font-size: 22px;
    font-weight: 700;
    color: #1060d0;
}

.pd-price-id {
    margin-top: 8px;
    font-size: 12px;
    color: #64748b;
}

.pd-tabs.card {
    padding: 0;
    overflow: hidden;
}

.pd-tabbar {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    padding: 12px 12px;
    border-bottom: 1px solid #edf3f9;
    background: #fbfdff;
}

.pd-tab {
    border: 1px solid transparent;
    background: transparent;
    border-radius: 12px;
    padding: 10px 12px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    color: #23486b;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.pd-tab.active {
    background: #eaf3fa;
    border-color: #bdd7ee;
    color: #1060d0;
}

.pd-panel {
    display: none;
    padding: 14px 14px 16px;
}

.pd-panel.active {
    display: block;
}

.pd-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.pd-item {
    border: 1px solid #edf3f9;
    border-radius: 12px;
    background: #fbfdff;
    padding: 10px 12px;
}

.pd-item span {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 4px;
}

.pd-item strong {
    display: block;
    font-size: 13px;
    color: #12335d;
    line-height: 1.25;
    word-break: break-word;
}

.pd-pill-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 10px;
    align-items: start;
    margin-top: 10px;
}

.pd-pill-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    border-radius: 10px;
    border: 1px solid #e6eff9;
    background: #fbfdff;
    color: #23486b;
    font-weight: 700;
    font-size: 12px;
}

.pd-badges {
    border: 1px solid #e6eff9;
    background: #fff;
    border-radius: 12px;
    padding: 10px 12px;
    color: #23486b;
    font-size: 13px;
    line-height: 1.45;
}

.pd-desc {
    margin-top: 12px;
    border: 1px solid #e6eff9;
    border-radius: 14px;
    background: #fff;
    padding: 12px 12px;
}

.pd-desc h4 {
    margin: 0 0 8px;
    font-size: 14px;
    color: #12335d;
}

.pd-desc p {
    margin: 0;
    color: #23486b;
    font-size: 13px;
    line-height: 1.6;
}

.pd-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.pd-img {
    border: 1px solid #e1e8f2;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.pd-img img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.pd-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

@media (max-width: 980px) {
    .pd-hero-top {
        grid-template-columns: 1fr;
    }
    .pd-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .pd-grid {
        grid-template-columns: 1fr;
    }
    .pd-pill-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .post-step-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stepper-item h4 {
        font-size: 16px;
    }

    .stepper-item p {
        font-size: 12px;
    }

    .post-step-wrap.card {
        min-height: auto;
    }

    .post-step-wrap .basic-step-card {
        min-height: auto;
    }

    .form-grid-two {
        grid-template-columns: 1fr;
    }
}

/* Ã¢ââ¬Ã¢ââ¬Ã¢ââ¬ User dashboard Ã¢â¬â matches post-property: Poppins + brand blues (#1060d0, #eaf3fa, #e1e8f2) Ã¢ââ¬Ã¢ââ¬Ã¢ââ¬ */
body.dashboard-dash.dashboard-page {
    font-family: "Poppins", Arial, sans-serif;
    background:
        radial-gradient(ellipse 100% 80% at 0% -10%, rgba(16, 96, 208, 0.09), transparent 42%),
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(16, 96, 208, 0.06), transparent 40%),
        var(--brand-soft, #f4f9fd);
    color: var(--text-main, #1e2f45);
    min-height: 100vh;
    overflow-x: clip;
    max-width: 100%;
}

.dashboard-dash .dash-ambient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(16, 96, 208, 0.05) 0%, transparent 32%),
        radial-gradient(circle at 15% 80%, rgba(16, 96, 208, 0.04) 0%, transparent 28%);
}

/* Same top bar treatment as body.dashboard-page (post-property shares this) */

.dashboard-dash .dash-shell {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 18px 56px;
    min-width: 0;
}

.dashboard-dash .dash-shell > * {
    min-width: 0;
    max-width: 100%;
}

/* Hero */
.dashboard-dash .dash-hero {
    display: grid;
    grid-template-columns: 1.15fr auto;
    gap: 28px;
    align-items: center;
    margin-bottom: 28px;
}

.dashboard-dash .dash-hero__core {
    padding: 8px 4px 8px 0;
}

.dashboard-dash .dash-eyebrow {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0b3d91;
}

.dashboard-dash .dash-hero__title {
    margin: 0 0 12px;
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    font-weight: 700;
    line-height: 1.15;
    color: #062a55;
}

.dashboard-dash .dash-hero__name {
    color: var(--brand-primary, #1060d0);
}

.dashboard-dash .dash-hero__sub {
    color: #23486b;
    font-weight: 600;
}

.dashboard-dash .dash-hero__lead {
    margin: 0 0 22px;
    max-width: 36em;
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-muted, #64748b);
}

.dashboard-dash .dash-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Professional role applications */
.dashboard-dash .dash-role-panel {
    margin: 0 0 28px;
    padding: 24px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 42px rgba(15, 45, 80, 0.08);
}

.dashboard-dash .dash-role-panel__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.dashboard-dash .dash-role-panel__eyebrow {
    margin: 0 0 6px;
    color: var(--brand-primary, #1060d0);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.dashboard-dash .dash-role-panel__title {
    margin: 0;
    color: #062a55;
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 700;
    line-height: 1.25;
}

.dashboard-dash .dash-role-panel__lead {
    margin: 7px 0 0;
    color: #64748b;
    font-size: 14px;
}

.dashboard-dash .dash-role-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.dashboard-dash .dash-role-card {
    display: flex;
    min-width: 0;
    min-height: 220px;
    flex-direction: column;
    padding: 20px 18px;
    border: 1px solid #dce7f2;
    border-radius: 18px;
    background: #fff;
    color: #1e2f45;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.dashboard-dash .dash-role-card__icon {
    display: inline-grid;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: 14px;
    background: #eaf3ff;
    color: #1060d0;
}

.dashboard-dash .dash-role-card__icon svg {
    width: 24px;
    height: 24px;
}

.dashboard-dash .dash-role-card h3 {
    margin: 0 0 8px;
    color: #062a55;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.dashboard-dash .dash-role-card p {
    margin: 0 0 18px;
    color: #64748b;
    font-size: 12px;
    line-height: 1.55;
}

.dashboard-dash .dash-role-card__status,
.dashboard-dash .dash-role-card__action {
    margin-top: auto;
    font-size: 11px;
    font-weight: 700;
}

.dashboard-dash .dash-role-card__status {
    color: #94a3b8;
}

.dashboard-dash .dash-role-card--pending {
    background: #fbfdff;
}

.dashboard-dash .dash-role-card--active {
    border-color: rgba(16, 96, 208, 0.35);
    background: linear-gradient(145deg, #ffffff, #eef6ff);
}

.dashboard-dash .dash-role-card--active .dash-role-card__action {
    color: #1060d0;
}

.dashboard-dash .dash-role-card--active:hover {
    transform: translateY(-4px);
    border-color: #1060d0;
    box-shadow: 0 16px 28px rgba(16, 96, 208, 0.14);
}

.dashboard-dash .dash-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dashboard-dash .dash-btn--solid {
    color: #fff;
    background: linear-gradient(135deg, #1060d0, #0c50b4);
    box-shadow: 0 8px 24px rgba(16, 96, 208, 0.32);
}

.dashboard-dash .dash-btn--solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(16, 96, 208, 0.38);
}

.dashboard-dash .dash-btn--line {
    color: var(--brand-primary, #1060d0);
    background: #fff;
    border: 2px solid #bdd7ee;
}

.dashboard-dash .dash-btn--line:hover {
    border-color: var(--brand-primary, #1060d0);
    background: var(--brand-light, #eaf3fa);
    transform: translateY(-1px);
}

.dashboard-dash .dash-btn--sm {
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 12px;
}

.dashboard-dash .dash-hero__aside {
    text-align: center;
    padding: 12px;
}

.dashboard-dash .dash-orbit {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 8px;
}

.dashboard-dash .dash-orbit__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed rgba(16, 96, 208, 0.35);
    animation: dash-orbit-spin 24s linear infinite;
}

.dashboard-dash .dash-orbit__ring--b {
    inset: 12px;
    border-color: rgba(31, 126, 215, 0.38);
    animation-duration: 18s;
    animation-direction: reverse;
}

.dashboard-dash .dash-orbit__ring--c {
    inset: 24px;
    border-color: rgba(15, 118, 110, 0.32);
    animation-duration: 30s;
}

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

.dashboard-dash .dash-orbit__hub {
    position: absolute;
    inset: 36px;
    border-radius: 50%;
    background: linear-gradient(145deg, #1060d0, #1f7ed7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 800;
    box-shadow: 0 12px 36px rgba(16, 96, 208, 0.4);
}

.dashboard-dash .dash-orbit__caption {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted, #64748b);
}

/* Stat bento */
.dashboard-dash .dash-bento {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
    align-items: stretch;
}

.dashboard-dash .dash-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 168px;
    border-radius: 18px;
    padding: 20px 20px 22px;
    overflow: hidden;
    border: 1px solid #e1e8f2;
    box-shadow: var(--shadow, 0 8px 24px rgba(16, 96, 208, 0.09));
    color: var(--text-main, #1e2f45);
    background: #fff;
}

.dashboard-dash .dash-tile--featured {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    grid-column: span 1;
}

.dashboard-dash .dash-tile--sale {
    background: linear-gradient(160deg, #f8fbff 0%, #eaf3fa 45%, #fff 100%);
}

.dashboard-dash .dash-tile--rent {
    background: linear-gradient(160deg, #f7fcfa 0%, #e8f5f3 42%, #fff 100%);
}

.dashboard-dash .dash-tile--pg {
    background: linear-gradient(160deg, #faf8ff 0%, #efe8ff 40%, #fff 100%);
}

.dashboard-dash .dash-tile__label {
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #23486b;
}

.dashboard-dash .dash-tile__value {
    margin: 0;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
    color: #062a55;
}

.dashboard-dash .dash-tile__hint {
    margin: auto 0 0;
    min-height: 2.9em;
    font-size: 12px;
    line-height: 1.45;
    color: var(--text-muted, #64748b);
}

/* Spark tiles (sale/rent/pg) have no hint Ã¢â¬â reserve equal footer space */
.dashboard-dash .dash-tile:has(.dash-tile__spark):not(:has(.dash-tile__hint))::after {
    content: "";
    display: block;
    margin-top: auto;
    min-height: 2.9em;
    flex-shrink: 0;
}

.dashboard-dash .dash-tile__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: #fff;
}

.dashboard-dash .dash-tile__icon--indigo {
    background: linear-gradient(135deg, #1060d0, #1f7ed7);
}

.dashboard-dash .dash-tile__icon--sky {
    background: linear-gradient(135deg, #0e6ec8, #1060d0);
}

.dashboard-dash .dash-tile__icon--teal {
    background: linear-gradient(135deg, #0d9488, #14b8a6);
}

.dashboard-dash .dash-tile__icon--violet {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.dashboard-dash .dash-tile--live {
    background: linear-gradient(160deg, #f0fdf4 0%, #dcfce7 38%, #fff 100%);
}

.dashboard-dash .dash-tile--pending {
    background: linear-gradient(160deg, #fffbeb 0%, #fef3c7 40%, #fff 100%);
}

.dashboard-dash .dash-tile--package-premium {
    background: linear-gradient(160deg, #fffbeb 0%, #fde68a 35%, #fff 100%);
}

.dashboard-dash .dash-tile--package-free {
    background: linear-gradient(160deg, #f8fafc 0%, #e2e8f0 40%, #fff 100%);
}

.dashboard-dash .dash-tile--leads {
    background: linear-gradient(160deg, #fff1f2 0%, #ffe4e6 38%, #fff 100%);
}

.dashboard-dash .dash-tile__icon--emerald {
    background: linear-gradient(135deg, #059669, #34d399);
}

.dashboard-dash .dash-tile__icon--amber {
    background: linear-gradient(135deg, #d97706, #fbbf24);
}

.dashboard-dash .dash-tile__icon--gold {
    background: linear-gradient(135deg, #b45309, #eab308);
}

.dashboard-dash .dash-tile__icon--slate {
    background: linear-gradient(135deg, #475569, #64748b);
}

.dashboard-dash .dash-tile__icon--rose {
    background: linear-gradient(135deg, #e11d48, #fb7185);
}

.dashboard-dash .dash-tile__footlink {
    display: inline-block;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-primary, #1060d0);
    text-decoration: none;
    flex-shrink: 0;
}

.dashboard-dash .dash-tile__footlink:hover {
    text-decoration: underline;
}

.dashboard-dash .dash-prop-card__pkg {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.dashboard-dash .dash-prop-card__pkg--premium {
    background: rgba(180, 83, 9, 0.93);
    color: #fff;
}

.dashboard-dash .dash-prop-card__pkg--free {
    background: rgba(71, 85, 105, 0.92);
    color: #fff;
}

.dashboard-dash .dash-prop-card__catalog-expired {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
    background: rgba(127, 29, 29, 0.92);
    color: #fff;
    backdrop-filter: blur(8px);
}

.dashboard-dash .dash-tile__spark {
    position: absolute;
    right: 16px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: conic-gradient(from 180deg, rgba(16, 96, 208, 0.35) calc(var(--pct, 0) * 1%), #d7d9df 0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #0b3d91;
}

.dashboard-dash .dash-tile__spark::after {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: #f3f5f9;
}

.dashboard-dash .dash-tile__spark--teal::after {
    background: #f3f5f9;
}

.dashboard-dash .dash-tile__spark--violet {
    background: conic-gradient(from 180deg, rgba(124, 58, 237, 0.38) calc(var(--pct, 0) * 1%), #d7d9df 0);
    color: #6d28d9;
}

.dashboard-dash .dash-tile__spark--teal {
    background: conic-gradient(from 180deg, rgba(15, 118, 110, 0.42) calc(var(--pct, 0) * 1%), #d7d9df 0);
    color: #0f766e;
}

/* Charts row */
.dashboard-dash .dash-studio {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 18px;
    margin-bottom: 24px;
    align-items: start;
}

.dashboard-dash .dash-panel {
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e1e8f2;
    box-shadow: var(--shadow, 0 8px 24px rgba(16, 96, 208, 0.09));
    padding: 22px 22px 18px;
    min-width: 0;
    max-width: 100%;
}

.dashboard-dash .dash-panel--accent {
    background: linear-gradient(165deg, #ffffff 0%, #f8fbff 50%, #f3f5f9 100%);
}

.dashboard-dash .dash-panel--wide {
    padding: 22px 22px 26px;
}

.dashboard-dash .dash-panel__head {
    margin-bottom: 16px;
}

.dashboard-dash .dash-panel__head--row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.dashboard-dash .dash-panel__title {
    margin: 0 0 4px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #062a55;
}

.dashboard-dash .dash-panel__meta {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted, #64748b);
}

/* Listing performance / Premium ROI */
.dashboard-dash .dash-panel--performance {
    margin-bottom: 24px;
}
.dashboard-dash .dash-perf-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}
.dashboard-dash .dash-perf-stat {
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #e1e8f2;
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}
.dashboard-dash .dash-perf-stat__label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 6px;
}
.dashboard-dash .dash-perf-stat__value {
    display: block;
    font-size: 1.65rem;
    line-height: 1.1;
    font-weight: 800;
    color: #062a55;
}
.dashboard-dash .dash-perf-stat__hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #64748b;
}
.dashboard-dash .dash-perf-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 18px;
    align-items: start;
    min-width: 0;
}
.dashboard-dash .dash-perf-chart-wrap,
.dashboard-dash .dash-perf-table-wrap {
    min-width: 0;
    max-width: 100%;
}
.dashboard-dash .dash-perf-chart-wrap {
    overflow: hidden;
}
.dashboard-dash .dash-perf-subtitle {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 700;
    color: #062a55;
}
.dashboard-dash .dash-chart--compact {
    min-height: 260px;
}
.dashboard-dash .dash-perf-table-scroll {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #e1e8f2;
    border-radius: 14px;
    background: #fff;
}
.dashboard-dash .dash-perf-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    min-width: 420px;
}
.dashboard-dash .dash-perf-table th,
.dashboard-dash .dash-perf-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #eef3f8;
    text-align: left;
    vertical-align: top;
}
.dashboard-dash .dash-perf-table thead th {
    background: #f4f9fd;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #062a55;
}
.dashboard-dash .dash-perf-table__link {
    display: block;
    font-weight: 600;
    color: #0b3d91;
    text-decoration: none;
}
.dashboard-dash .dash-perf-table__link:hover {
    text-decoration: underline;
}
.dashboard-dash .dash-perf-table__id {
    display: block;
    font-size: 11px;
    color: #64748b;
    margin-top: 2px;
}
.dashboard-dash .dash-perf-pkg {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}
.dashboard-dash .dash-perf-pkg--premium {
    background: #fff7e6;
    color: #9a6700;
}
.dashboard-dash .dash-perf-pkg--free {
    background: #f1f5f9;
    color: #475569;
}
.dashboard-dash .dash-perf-empty,
.dashboard-dash .dash-perf-upgrade {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: #64748b;
}
.dashboard-dash .dash-perf-upgrade {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f0f7ff;
    border: 1px solid #dbeafe;
}
@media (max-width: 991px) {
    .dashboard-dash .dash-panel--performance {
        min-width: 0;
    }

    .dashboard-dash .dash-perf-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dashboard-dash .dash-perf-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Banner slots booked (user dashboard) */
.dashboard-dash .dash-panel--banner-slots {
    margin-bottom: 24px;
}

.dashboard-dash .dash-banner-slots-empty {
    text-align: center;
    padding: 28px 20px;
    border-radius: 14px;
    background: #f8fbff;
    border: 1px dashed #bdd7ee;
}

.dashboard-dash .dash-banner-slots-empty__text {
    margin: 0 auto 16px;
    font-size: 14px;
    color: var(--text-muted, #64748b);
    line-height: 1.55;
    max-width: 440px;
}

.dashboard-dash .dash-slot-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 14px;
    border: 1px solid #e1e8f2;
    background: #fff;
}

.dashboard-dash .dash-slot-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    font-size: 13px;
    min-width: 760px;
}

.dashboard-dash .dash-slot-table thead th {
    background: #f4f9fd;
    font-weight: 600;
    color: #062a55;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 11px 12px;
    border-bottom: 1px solid #dbe8f4;
    text-align: left;
    white-space: nowrap;
}

.dashboard-dash .dash-slot-table tbody td {
    padding: 11px 12px;
    border-bottom: 1px solid #edf3f9;
    vertical-align: top;
    line-height: 1.4;
    color: #1e293b;
}

.dashboard-dash .dash-slot-table tbody tr:hover {
    background: #fafcff;
}

.dashboard-dash .dash-slot-table tbody tr:last-child td {
    border-bottom: none;
}

.dashboard-dash .dash-slot-table__num {
    width: 2.5rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: #64748b;
}

.dashboard-dash .dash-slot-table__nowrap {
    white-space: nowrap;
}

.dashboard-dash .dash-slot-table__ref code {
    font-size: 11px;
    word-break: break-all;
    color: #334155;
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 6px;
}

.dashboard-dash .dash-banner-slots-foot {
    margin: 14px 0 0;
    font-size: 12px;
    color: var(--text-muted, #64748b);
}

.dashboard-dash .dash-banner-slots-foot a {
    color: var(--brand-primary, #1060d0);
    font-weight: 600;
    text-decoration: none;
}

.dashboard-dash .dash-banner-slots-foot a:hover {
    text-decoration: underline;
}

.dashboard-dash .dash-chart {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 300px;
}

.dashboard-dash .dash-chart--donut {
    min-height: 300px;
}

.dashboard-dash .dash-chart-fallback {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    border-radius: 14px;
    background: #f8fbff;
    border: 1px dashed #bdd7ee;
}

.dashboard-dash .dash-chart-fallback__t {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
    color: #062a55;
}

.dashboard-dash .dash-chart-fallback__d {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-muted, #64748b);
    max-width: 260px;
}

/* Listing grid */
.dashboard-dash .dash-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.dashboard-dash .dash-prop-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e1e8f2;
    box-shadow: var(--shadow, 0 8px 24px rgba(16, 96, 208, 0.09));
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.dashboard-dash .dash-prop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(16, 96, 208, 0.14);
}

.dashboard-dash .dash-prop-card:focus-visible {
    outline: 3px solid var(--brand-primary, #1060d0);
    outline-offset: 2px;
}

.dashboard-dash .dash-prop-card--sale {
    border-top: 4px solid var(--brand-primary, #1060d0);
}

.dashboard-dash .dash-prop-card--rent {
    border-top: 4px solid #0d9488;
}

.dashboard-dash .dash-prop-card--pg {
    border-top: 4px solid #7c3aed;
}

.dashboard-dash .dash-prop-card__visual {
    position: relative;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--brand-light, #eaf3fa), #f4f9fd);
    overflow: hidden;
}

.dashboard-dash .dash-prop-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dashboard-dash .dash-prop-card__ph {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
}

.dashboard-dash .dash-prop-card__ph svg {
    opacity: 0.55;
}

.dashboard-dash .dash-prop-card__ribbon {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: rgba(15, 23, 42, 0.88);
    color: #fff;
    backdrop-filter: blur(8px);
}

.dashboard-dash .dash-prop-card--sale .dash-prop-card__ribbon {
    background: rgba(16, 96, 208, 0.95);
}

.dashboard-dash .dash-prop-card--rent .dash-prop-card__ribbon {
    background: rgba(13, 148, 136, 0.95);
}

.dashboard-dash .dash-prop-card--pg .dash-prop-card__ribbon {
    background: rgba(124, 58, 237, 0.95);
}

.dashboard-dash .dash-prop-card__body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.dashboard-dash .dash-prop-card__title {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    color: #062a55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dashboard-dash .dash-prop-card__loc {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    color: #23486b;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dashboard-dash .dash-prop-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.dashboard-dash .dash-prop-card__type {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
}

.dashboard-dash .dash-prop-card__date {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
}

.dashboard-dash .dash-prop-card__price {
    margin: 4px 0 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-dark, #1e2f45);
}

.dashboard-dash .dash-prop-card__id {
    font-size: 11px;
    font-weight: 700;
    font-family: ui-monospace, monospace;
    color: var(--brand-primary, #1060d0);
    margin-top: auto;
    padding-top: 4px;
}

.dashboard-dash .dash-list-empty {
    text-align: center;
    padding: 48px 24px;
    border-radius: 18px;
    background: #f8fbff;
    border: 2px dashed #bdd7ee;
}

.dashboard-dash .dash-list-empty__icon {
    color: #94a3b8;
    margin-bottom: 12px;
}

.dashboard-dash .dash-list-empty__title {
    margin: 0 0 8px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #062a55;
}

.dashboard-dash .dash-list-empty__text {
    margin: 0 0 20px;
    font-size: 14px;
    color: #64748b;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
}

@media (max-width: 1024px) {
    .dashboard-dash .dash-hero {
        grid-template-columns: 1fr;
    }

    .dashboard-dash .dash-role-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .dashboard-dash .dash-hero__aside {
        justify-self: center;
    }

    .dashboard-dash .dash-bento {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .dashboard-dash .dash-studio {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1200px) {
    .dashboard-dash .dash-bento {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .dashboard-dash .dash-shell {
        padding: 18px 14px 40px;
    }

    .dashboard-dash .dash-bento {
        grid-template-columns: 1fr;
    }

    .dashboard-dash .dash-list-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-dash .dash-perf-summary {
        grid-template-columns: 1fr;
    }

    .dashboard-dash .dash-hero__title {
        font-size: 1.45rem;
    }

    .dashboard-dash .dash-tile {
        min-height: 0;
    }

    .dashboard-dash .dash-tile__value {
        font-size: 1.85rem;
    }

    .dashboard-dash .dash-panel {
        padding: 16px 14px;
    }

    .dashboard-dash .dash-chart--compact {
        min-height: 220px;
    }
}

@media (max-width: 767px) {
    .dashboard-dash .dash-hero {
        gap: 16px;
        margin-bottom: 22px;
    }

    .dashboard-dash .dash-role-panel {
        padding: 18px 14px;
        border-radius: 20px;
    }

    .dashboard-dash .dash-role-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-dash .dash-role-card {
        min-height: 0;
    }

    .dashboard-dash .dash-hero__core {
        padding: 0;
    }

    .dashboard-dash .dash-hero__lead {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .dashboard-dash .dash-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .dashboard-dash .dash-hero__actions .dash-btn {
        width: 100%;
        justify-content: center;
    }

    .dashboard-dash .dash-bento {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .dashboard-dash .dash-panel__head--row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .dashboard-dash .dash-panel__head--row .dash-btn {
        width: 100%;
        justify-content: center;
    }

    .dashboard-dash .dash-panel--wide.dash-panel--performance {
        padding: 16px 14px;
    }

    .dashboard-dash .dash-perf-summary {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .dashboard-dash .dash-perf-stat {
        padding: 12px 14px;
    }

    .dashboard-dash .dash-perf-stat__value {
        font-size: 1.35rem;
    }

    .dashboard-dash .dash-perf-table {
        min-width: 0;
        width: 100%;
        font-size: 12px;
    }

    .dashboard-dash .dash-perf-table-scroll {
        overflow-x: visible;
    }

    .dashboard-dash .dash-perf-table thead {
        display: none;
    }

    .dashboard-dash .dash-perf-table tbody tr {
        display: block;
        padding: 12px 14px;
        border-bottom: 1px solid #eef3f8;
    }

    .dashboard-dash .dash-perf-table tbody tr:last-child {
        border-bottom: none;
    }

    .dashboard-dash .dash-perf-table td {
        display: grid;
        grid-template-columns: minmax(72px, 34%) 1fr;
        gap: 8px 10px;
        align-items: start;
        padding: 5px 0;
        border-bottom: none;
    }

    .dashboard-dash .dash-perf-table td::before {
        content: attr(data-label);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: #64748b;
    }

    .dashboard-dash .dash-perf-table td[data-label="Listing"] {
        display: block;
        padding-bottom: 10px;
        margin-bottom: 4px;
        border-bottom: 1px solid #eef3f8;
    }

    .dashboard-dash .dash-perf-table td[data-label="Listing"]::before {
        display: none;
    }

    .dashboard-dash .dash-perf-table__link {
        word-break: break-word;
    }

    .dashboard-dash .dash-perf-table__id {
        display: block;
        margin-top: 2px;
        font-size: 11px;
    }

    .dashboard-dash .dash-chart--compact {
        min-height: 200px;
    }
}

/* Ã¢ââ¬Ã¢ââ¬Ã¢ââ¬ User property list (reference-style horizontal cards, own listings only) Ã¢ââ¬Ã¢ââ¬Ã¢ââ¬ */
.prop-list-page {
    background: var(--brand-soft, #f4f9fd);
    font-family: "Poppins", Arial, sans-serif;
    color: var(--text-main, #1e2f45);
    min-height: 100vh;
}

.pl-page {
    max-width: 1320px;
    margin: 0 auto;
    padding: 24px 16px 48px;
}

.pl-layout {
    display: grid;
    grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.pl-sidebar {
    position: sticky;
    top: 88px;
    background: #fff;
    border: 1px solid #e1e8f2;
    border-radius: 18px;
    box-shadow: var(--shadow, 0 8px 24px rgba(16, 96, 208, 0.09));
    overflow: hidden;
}

.pl-side-block {
    padding: 18px 20px;
    border-bottom: 1px solid #edf2f8;
}

.pl-side-block:last-of-type {
    border-bottom: none;
}

.pl-side-block--head {
    background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

.pl-side-title {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 600;
    color: #062a55;
}

.pl-side-lead {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted, #64748b);
    line-height: 1.45;
}

.pl-filter-label {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #23486b;
}

.pl-hint {
    margin: 8px 0 0;
    font-size: 12px;
    color: var(--text-muted, #64748b);
    line-height: 1.4;
}

.pl-input,
.pl-select {
    width: 100%;
    height: 44px;
    border-radius: 10px;
    border: 1px solid #d4deea;
    background: #fff;
    font-size: 14px;
    font-family: inherit;
    padding: 0 12px;
    color: #24384f;
    outline: none;
}

.pl-input:focus,
.pl-select:focus {
    border-color: #1f7ed7;
    box-shadow: 0 0 0 3px rgba(31, 126, 215, 0.12);
}

.pl-input-wide {
    max-width: 100%;
}

.pl-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.pl-pill-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.pl-pill-grid.pl-pill-grid--stack {
    grid-template-columns: 1fr;
}

.pl-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.pl-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pl-pill span {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 8px;
    border-radius: 999px;
    border: 1px solid #d4deea;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: #23486b;
    transition: border-color 0.15s, background 0.15s;
}

.pl-pill input:checked + span {
    border-color: var(--brand-primary, #1060d0);
    background: var(--brand-light, #eaf3fa);
    color: var(--brand-primary, #1060d0);
}

.pl-toggle-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    cursor: pointer;
    margin: 0;
}

.pl-toggle-row input {
    position: absolute;
    opacity: 0;
}

.pl-toggle-ui {
    width: 42px;
    height: 24px;
    border-radius: 999px;
    background: #d4deea;
    position: relative;
    flex-shrink: 0;
    transition: background 0.2s;
}

.pl-toggle-ui::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    top: 2px;
    left: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s;
}

.pl-toggle-row input:checked + .pl-toggle-ui {
    background: var(--brand-primary, #1060d0);
}

.pl-toggle-row input:checked + .pl-toggle-ui::after {
    transform: translateX(18px);
}

.pl-toggle-text {
    font-size: 14px;
    font-weight: 600;
    color: #23486b;
}

.pl-applied-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.pl-chip-remove {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 11px;
    border-radius: 999px;
    background: var(--brand-light, #eaf3fa);
    border: 1px solid #bdd7ee;
    color: #0b3d91;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.pl-chip-remove:hover {
    background: #dfeef9;
}

.pl-clear-all {
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-primary, #1060d0);
}

.pl-side-actions {
    padding: 0 20px 20px;
}

.pl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pl-btn-primary {
    background: linear-gradient(135deg, #1060d0, #0c50b4);
    color: #fff;
    box-shadow: 0 8px 22px rgba(16, 96, 208, 0.28);
    width: 100%;
}

.pl-btn-primary:hover {
    transform: translateY(-1px);
}

.pl-btn-ghost {
    background: #fff;
    border: 1px solid #d4deea;
    color: var(--brand-primary, #1060d0);
}

/* Main column */
.pl-main {
    min-width: 0;
}

.pl-bc {
    font-size: 13px;
    color: var(--text-muted, #64748b);
    margin-bottom: 16px;
}

.pl-bc a {
    color: var(--brand-primary, #1060d0);
    text-decoration: none;
    font-weight: 600;
}

.pl-bc-sep {
    margin: 0 6px;
    color: #94a3b8;
}

.pl-main-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.pl-main-head .pl-flash {
    flex: 1 0 100%;
    margin: 0 0 6px;
}

.pl-flash {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.pl-flash--ok {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.pl-flash--danger {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.pl-flash--info {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

.pl-title {
    margin: 0 0 6px;
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    font-weight: 600;
    color: #062a55;
}

.pl-title-accent {
    color: var(--brand-primary, #1060d0);
    font-weight: 700;
}

.pl-sub {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted, #64748b);
}

.pl-toolbar-right label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #23486b;
}

.pl-select-inline {
    width: auto;
    min-width: 160px;
}

.pl-quick-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
    padding-bottom: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pl-quick-pill {
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid #d4deea;
    background: #fff;
    color: #23486b;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    white-space: nowrap;
}

.pl-quick-pill:hover {
    border-color: var(--brand-primary, #1060d0);
    color: var(--brand-primary, #1060d0);
}

.pl-quick-pill.is-on {
    border-color: var(--brand-primary, #1060d0);
    background: var(--brand-light, #eaf3fa);
    color: var(--brand-primary, #1060d0);
}

.pl-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 16px;
    margin-top: 28px;
    padding: 18px 16px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.pl-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #1e293b;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.pl-page-btn:hover:not(.pl-page-btn--disabled) {
    border-color: var(--brand-primary, #1060d0);
    color: var(--brand-primary, #1060d0);
}

.pl-page-btn--disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
    background: #f1f5f9;
}

.pl-page-numbers {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pl-page-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    padding: 0 8px;
    border-radius: 10px;
    border: 1px solid transparent;
    background: transparent;
    color: #475569;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.pl-page-num:hover {
    background: #fff;
    border-color: #cbd5e1;
}

.pl-page-num.is-active {
    border-color: var(--brand-primary, #1060d0);
    background: #fff;
    color: var(--brand-primary, #1060d0);
    box-shadow: 0 2px 10px rgba(16, 96, 208, 0.15);
}

.pl-page-ellipsis {
    padding: 0 4px;
    font-weight: 700;
    color: #94a3b8;
    user-select: none;
}

.pl-swal-popup {
    font-family: 'Poppins', system-ui, sans-serif;
    border-radius: 16px;
}

.pl-empty-card {
    background: #fff;
    border: 1px dashed #bdd7ee;
    border-radius: 18px;
    padding: 40px 24px;
    text-align: center;
}

.pl-empty-card h2 {
    margin: 0 0 8px;
    font-size: 1.2rem;
    color: #062a55;
}

.pl-empty-card p {
    margin: 0 0 20px;
    color: var(--text-muted, #64748b);
}

.pl-empty-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.pl-empty-actions .pl-btn-primary {
    width: auto;
}

.pl-card-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pl-prop-card {
    display: grid;
    grid-template-columns: minmax(260px, 40%) minmax(0, 1fr);
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e1e8f2;
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.pl-prop-card:hover {
    box-shadow: 0 14px 40px rgba(16, 96, 208, 0.12);
}

.pl-prop-card__media {
    position: relative;
    display: block;
    min-height: 220px;
    background: linear-gradient(135deg, var(--brand-light, #eaf3fa), #f4f9fd);
}

.pl-prop-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 220px;
}

.pl-prop-card__placeholder {
    height: 100%;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted, #64748b);
    font-size: 13px;
    font-weight: 600;
}

.pl-prop-card__placeholder svg {
    opacity: 0.45;
}

.pl-prop-card__media-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 2;
}

.pl-img-badge {
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(6, 42, 85, 0.92);
    color: #fff;
}

.pl-img-badge--green {
    background: rgba(15, 118, 110, 0.95);
}

.pl-img-badge--amber {
    background: rgba(180, 130, 20, 0.95);
}

.pl-img-badge--expired {
    background: rgba(127, 29, 29, 0.95);
}

.pl-prop-card__media-foot {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: linear-gradient(180deg, transparent, rgba(15, 24, 40, 0.82));
    color: rgba(255, 255, 255, 0.95);
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.pl-prop-card__body {
    padding: 22px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pl-prop-card__top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.pl-prop-card__name {
    margin: 0;
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 600;
    line-height: 1.28;
}

.pl-prop-card__name a {
    color: var(--brand-primary, #1060d0);
    text-decoration: none;
}

.pl-prop-card__name a:hover {
    text-decoration: underline;
}

.pl-ribbon-tag {
    flex-shrink: 0;
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    background: var(--brand-light, #eaf3fa);
    color: var(--brand-primary, #1060d0);
}

.pl-prop-card__sub {
    margin: -4px 0 0;
    font-size: 14px;
    color: #23486b;
    line-height: 1.45;
}

.pl-price-row {
    padding: 14px 0;
    border-top: 1px solid #eef2f8;
    border-bottom: 1px solid #eef2f8;
}

.pl-price-main {
    font-size: 17px;
    font-weight: 700;
    color: #062a55;
}

.pl-price-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    align-items: center;
}

.pl-prop-id {
    font-size: 12px;
    font-weight: 700;
    font-family: ui-monospace, monospace;
    color: var(--brand-primary, #1060d0);
}

.pl-cat-chip {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f3f5f9;
    color: #475569;
    text-transform: uppercase;
}

.pl-meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.pl-near-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted, #64748b);
}

.pl-soft-tag {
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 8px;
    background: #f3f5f9;
    color: #475569;
    font-weight: 500;
}

.pl-soft-tag--expired {
    background: #fef2f2;
    color: #991b1b;
    font-weight: 600;
    border: 1px solid #fecaca;
}

.pl-prop-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 4px;
}

.pl-builder {
    font-size: 14px;
    color: var(--text-muted, #64748b);
}

.pl-foot-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

.pl-delete-inline {
    display: inline;
    margin: 0;
}

.pl-btn-delete {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: #fff;
    color: #b91c1c !important;
    border: 2px solid #f87171;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
}

.pl-btn-delete:hover {
    background: #fef2f2;
}

.pl-btn-upgrade {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border-radius: 999px;
    background: var(--white, #fff);
    color: #1060d0 !important;
    border: 2px solid #1060d0;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.pl-btn-upgrade:hover {
    background: #eaf3fa;
}

.pl-btn-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1060d0, #0c50b4);
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(16, 96, 208, 0.28);
}

.pl-btn-detail:hover {
    transform: translateY(-1px);
}

@media (max-width: 1024px) {
    .pl-layout {
        grid-template-columns: 1fr;
    }

    .pl-sidebar {
        position: static;
        top: auto;
    }
}

@media (max-width: 900px) {
    .pl-prop-card {
        grid-template-columns: 1fr;
    }

    .pl-prop-card__media {
        max-height: 280px;
    }

    .pl-prop-card__media img {
        max-height: 280px;
    }
}

@media (max-width: 768px) {
    .pl-main-head {
        flex-direction: column;
        align-items: stretch;
    }

    .pl-select-inline {
        width: 100%;
    }

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

/* -------- Plans & upgrade (listing + banner checkout & receipts) --------
   Match .page-wrap / leads / transactions (1280 + 16px side padding). */
body.upgrade-page .up-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 16px 48px;
}

body.lead-page .up-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 16px 48px;
}

.lpk-highlight {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px 26px;
    box-shadow: var(--shadow);
    margin-bottom: 28px;
}

.lpk-highlight__title {
    margin: 0 0 16px;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--brand-dark);
}

.lpk-feat-list {
    margin: 0 !important;
}

.lpk-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 28px;
}

.lpk-meta-sep::before {
    content: ' ÃÂ· ';
}

.up-bc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.up-bc a {
    color: var(--brand-primary);
    text-decoration: none;
}

.up-bc a:hover {
    text-decoration: underline;
}

.up-bc-sep {
    margin: 0 8px;
    opacity: 0.6;
}

.up-hero {
    margin-bottom: 32px;
}

.up-title {
    margin: 0 0 10px;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--brand-dark);
    letter-spacing: -0.02em;
}

.up-lead {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-muted);
    max-width: 720px;
}

.up-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: stretch;
}

@media (max-width: 860px) {
    .up-cards {
        grid-template-columns: 1fr;
    }
}

.up-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 26px 24px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.up-card--featured {
    border-color: #9ec9f5;
    background: linear-gradient(180deg, #f8fbff 0%, var(--white) 42%);
    box-shadow: 0 12px 40px rgba(16, 96, 208, 0.14);
}

.up-ribbon {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    background: linear-gradient(135deg, #1060d0, #0c50b4);
    padding: 6px 12px;
    border-radius: 999px;
}

.up-card-head {
    margin-bottom: 8px;
    padding-right: 96px;
}

.up-card--featured .up-card-head {
    padding-right: 120px;
}

.up-plan-name {
    margin: 0 0 6px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.up-price {
    margin: 0;
    line-height: 1.1;
}

.up-price-amt {
    font-size: 2.15rem;
    font-weight: 700;
    color: var(--brand-dark);
}

.up-price-meta {
    margin: 8px 0 0;
    font-size: 13px;
    color: var(--text-muted);
}

.up-card-tag {
    margin: 0 0 18px;
    font-size: 13px;
    font-weight: 600;
    color: #1563a8;
}

.up-feat-list {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.up-feat {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.4;
}

.up-feat--ok {
    color: var(--text-main);
}

.up-feat--off {
    color: #94a3b8;
    opacity: 0.85;
}

.up-feat--off span:last-child {
    text-decoration: line-through;
    text-decoration-color: rgba(148, 163, 184, 0.65);
}

.up-feat-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.up-feat-icon--yes {
    background: #dcfce7;
    color: #166534;
}

.up-feat-icon--no {
    background: #f1f5f9;
    color: #94a3b8;
}

.up-card-foot {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    margin-top: auto;
}

.up-btn-wide {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding-block: 12px;
}

.up-btn-disabled {
    pointer-events: none;
    opacity: 0.85;
}

.up-card-link {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}

.up-note {
    margin-top: 32px;
    padding: 18px 20px;
    border-radius: 14px;
    background: var(--brand-light);
    border: 1px solid var(--border);
    font-size: 13px;
    line-height: 1.5;
    color: #334155;
}

.up-note strong {
    color: var(--brand-dark);
}

.up-note--warn {
    background: #fffbeb;
    border-color: #fde68a;
}

.up-pay-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.up-pay-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.up-pay-select {
    width: 100%;
    padding: 11px 12px;
    border-radius: 10px;
    border: 1px solid var(--border);
    font-family: inherit;
    font-size: 14px;
    background: var(--white);
    color: var(--text-main);
}

.up-pay-select:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.up-pay-msg {
    margin: 0;
    font-size: 13px;
    min-height: 1.25em;
}

/* ----- Listing upgrade package v2 ----- */
body.up-pack-v2 {
    background:
        radial-gradient(ellipse 80% 50% at 100% -10%, rgba(112, 176, 0, 0.08), transparent 55%),
        radial-gradient(ellipse 70% 45% at -5% 20%, rgba(16, 96, 208, 0.07), transparent 50%),
        #f4f9fd;
}

body.up-pack-v2 .up-steps {
    margin: 0;
    padding: 0;
    list-style: none;
}

body.up-pack-v2 .up-tier-card {
    position: relative;
    border-radius: 1.1rem;
    border: 1px solid rgba(15, 45, 74, 0.1);
    background: #fff;
    padding: 1.25rem 1.15rem 1.15rem;
    box-shadow: 0 10px 28px -18px rgba(7, 30, 66, 0.22);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

body.up-pack-v2 .up-tier-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -18px rgba(7, 30, 66, 0.28);
}

body.up-pack-v2 .up-tier-card--featured {
    border: 2px solid #70b000;
    box-shadow: 0 14px 32px -16px rgba(112, 176, 0, 0.35);
}

body.up-pack-v2 .up-tier-card__badge {
    position: absolute;
    top: -0.7rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 999px;
    background: #70b000;
    padding: 0.2rem 0.75rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
}

body.up-pack-v2 .up-tier-card__head--pad {
    padding-top: 0.35rem;
}

body.up-pack-v2 .up-tier-card__eyebrow {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1060d0;
}

body.up-pack-v2 .up-tier-card__price {
    margin: 0.45rem 0 0;
    font-family: var(--ui-font-display, Sora, sans-serif);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #0f2d4a;
}

body.up-pack-v2 .up-tier-card__meta {
    margin: 0.35rem 0 0;
    font-size: 0.72rem;
    color: #64748b;
}

body.up-pack-v2 .up-tier-card__tag {
    margin: 0.9rem 0 0;
    border-radius: 0.65rem;
    background: #f4f9fd;
    padding: 0.55rem 0.7rem;
    font-size: 0.72rem;
    font-weight: 500;
    color: #64748b;
}

body.up-pack-v2 .up-tier-card__feats {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

body.up-pack-v2 .up-feat {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.82rem;
    line-height: 1.4;
}

body.up-pack-v2 .up-feat--ok {
    color: #0f2d4a;
}

body.up-pack-v2 .up-feat--off {
    color: #94a3b8;
}

body.up-pack-v2 .up-feat-ico {
    display: inline-flex;
    height: 1.25rem;
    width: 1.25rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.55rem;
}

body.up-pack-v2 .up-feat-ico--yes {
    background: #ecfdf5;
    color: #047857;
}

body.up-pack-v2 .up-feat-ico--no {
    background: #f1f5f9;
    color: #94a3b8;
}

body.up-pack-v2 .up-tier-card__status {
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    border-radius: 0.7rem;
    border: 1px solid rgba(15, 45, 74, 0.12);
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0f2d4a;
}

body.up-pack-v2 .up-pay-tier-btn {
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border: 0;
    border-radius: 0.7rem;
    background: #70b000;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
}

body.up-pack-v2 .up-pay-tier-btn:hover:not(:disabled) {
    background: #5f9600;
}

body.up-pack-v2 .up-pay-tier-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

body.up-pack-v2 .up-pay-box {
    border-radius: 1.1rem;
    border: 1px solid rgba(15, 45, 74, 0.1);
    background: linear-gradient(180deg, #fff 0%, #f7fbf4 100%);
    box-shadow: 0 14px 36px -18px rgba(7, 30, 66, 0.28);
    padding: 1.15rem 1.1rem 1.1rem;
    gap: 0;
}

body.up-pack-v2 .up-pay-label {
    display: block;
    margin: 1rem 0 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: #0f2d4a;
}

body.up-pack-v2 .up-pay-select {
    display: block;
    width: 100%;
    height: 2.75rem;
    border-radius: 0.65rem;
    border: 1px solid #d4deea;
    background: #fff;
    padding: 0 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #0f2d4a;
    outline: none;
}

body.up-pack-v2 .up-pay-select:focus {
    border-color: #70b000;
    box-shadow: 0 0 0 3px rgba(112, 176, 0, 0.18);
}

body.up-pack-v2 .up-aside-bullets {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

body.up-pack-v2 .up-aside-bullets li {
    position: relative;
    padding-left: 1.1rem;
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.4;
}

body.up-pack-v2 .up-aside-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 999px;
    background: #70b000;
}

body.up-pack-v2 .up-pay-msg {
    margin: 0.85rem 0 0;
    min-height: 1.25em;
    font-size: 0.8rem;
    color: #64748b;
}

body.up-pack-v2 .up-pay-msg.is-error {
    color: #dc2626;
}

body.up-pack-v2 .up-aside-note {
    margin: 0.75rem 0 0;
    font-size: 0.68rem;
    line-height: 1.45;
    color: #94a3b8;
}

body.up-pack-v2 .up-note-card {
    border-radius: 1rem;
    border: 1px solid rgba(15, 45, 74, 0.1);
    background: #fff;
    padding: 1rem 1.05rem;
    box-shadow: 0 8px 22px -16px rgba(7, 30, 66, 0.2);
}

@media (max-width: 991px) {
    body.up-pack-v2 .up-aside {
        order: -1;
    }
}

/* ----- Banner package (multi-line checkout) ----- */
.bn-pack-page .bn-pack-form {
    margin-top: 8px;
}

.bn-pack-page .bn-actions-bottom {
    margin-top: 16px;
}

.bn-pack-page .bn-actions-bottom .btn {
    width: 100%;
    text-align: center;
}

@media (min-width: 720px) {
    .bn-pack-page .bn-actions-bottom .btn {
        width: auto;
    }
}

.bn-pack-page .bn-lines {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bn-pack-page .bn-line-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    gap: 12px;
}

.bn-pack-page .bn-line-label {
    font-weight: 600;
    color: var(--brand-dark);
}

.bn-pack-page .bn-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
}

.bn-pack-page .bn-field--full {
    grid-column: 1 / -1;
}

/* Match post-property Step 1: labels + chips + radios (see .post-step-wrap) */
.bn-pack-page .post-step-wrap .choice-label {
    display: block;
    font-weight: 600;
    color: #2e4563;
}

.bn-pack-page .post-step-wrap .step-select {
    width: 100%;
}

.bn-pack-page .bn-purpose-row {
    margin-top: 2px;
}

.bn-pack-page .bn-line-money {
    font-size: 14px;
    color: #334155;
}

.bn-pack-page .bn-category-hint {
    margin-top: 6px;
}

.bn-pack-page .bn-summary {
    margin-top: 22px;
}

.bn-pack-page .bn-total-row {
    font-size: 16px;
    margin: 0 0 8px;
}

.bn-pack-page .bn-pay-msg {
    min-height: 1.25em;
    font-size: 13px;
    margin: 0 0 12px;
}

.bn-pack-page .bn-spec-reference {
    margin-bottom: 20px;
}

.bn-pack-page .bn-spec-list {
    margin: 0;
    padding-left: 1.2rem;
}

.bn-pack-page .bn-upload-block {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.bn-pack-page .bn-geo.partner-geo,
.bn-pack-page .bn-geo .geo-ac-wrap,
.bn-pack-page .bn-line {
    overflow: visible;
}

.bn-pack-page .bn-geo .geo-ac-input {
    padding-right: 2.5rem;
}

.bn-pack-page .bn-upload-block .re-file {
    width: 100%;
}

.bn-pack-page .bn-size-hint {
    margin: 0;
    font-weight: 500;
}

.bn-pack-page .bn-img-preview-wrap {
    margin-top: 12px;
}

.bn-pack-page .bn-img-preview {
    margin-top: 8px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px dashed #cbd5e1;
    background: #f8fafc;
    padding: 8px;
    text-align: center;
}

.bn-pack-page .bn-img-preview__img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

/* ----- Banner package v2 (checkout redesign) ----- */
.bn-pack-v2 .bn-pack-hero__lead {
    max-width: 720px;
}

.bn-pack-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
}

.bn-pack-steps__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    background: #ffffff;
    border: 1px solid #dce8f4;
}

.bn-pack-steps__item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    color: #64748b;
    background: #eef4fb;
}

.bn-pack-steps__item--active {
    color: #0b3d91;
    border-color: #9ec5ea;
    background: linear-gradient(135deg, #f0f7ff, #ffffff);
}

.bn-pack-steps__item--active span {
    color: #fff;
    background: linear-gradient(135deg, #1060d0, #0b3d91);
}

.bn-rate-showcase {
    margin: 28px 0 24px;
}

.bn-rate-showcase__title {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-dark, #161e2d);
}

.bn-rate-showcase__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.bn-rate-card {
    padding: 18px 16px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #dce8f4;
    box-shadow: 0 8px 24px rgba(15, 40, 80, 0.06);
}

.bn-rate-card--featured {
    border-color: #1060d0;
    background: linear-gradient(165deg, #ffffff, #f0f7ff);
}

.bn-rate-card__head {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 10px;
}

.bn-rate-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e8f3fc, #d4e8fa);
    border: 1px solid #bdd7ee;
    flex-shrink: 0;
}

.bn-rate-card--top_banner .bn-rate-card__icon,
.bn-rate-card--featured .bn-rate-card__icon {
    background: linear-gradient(135deg, #1060d0, #0b3d91);
}

.bn-rate-card__name {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #161e2d;
}

.bn-rate-card__size {
    margin: 2px 0 0;
    font-size: 12px;
    color: #64748b;
}

.bn-rate-card__from {
    margin: 0 0 10px;
    font-size: 13px;
    color: #64748b;
}

.bn-rate-card__from strong {
    font-size: 22px;
    color: #0b3d91;
    margin-left: 4px;
}

.bn-rate-card__tiers {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bn-rate-card__tiers li {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 8px;
    background: #f4f9fd;
    font-size: 12px;
    color: #475569;
}

.bn-rate-card__tiers strong {
    color: #0b3d91;
    font-weight: 800;
}

.bn-checkout {
    margin-top: 8px;
}

.bn-pack-v2 .bn-form-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 22px;
    align-items: start;
}

.bn-form-main__title {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-dark, #161e2d);
}

.bn-form-main__hint {
    margin: 0 0 16px;
    font-size: 14px;
    color: #64748b;
}

.bn-pack-v2 .bn-line {
    border: 1px solid #dce8f4;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(15, 40, 80, 0.05);
}

.bn-pack-v2 .bn-line-head {
    padding-bottom: 12px;
    margin-bottom: 16px;
    border-bottom: 1px solid #e8f0f8;
}

.bn-pack-v2 .bn-line-label {
    font-size: 15px;
    font-weight: 700;
    color: #0b3d91;
}

.bn-form-aside {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bn-spec-panel {
    padding: 18px;
    border: 1px solid #dce8f4;
    border-radius: 16px;
}

.bn-spec-panel__title {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 700;
    color: #161e2d;
}

.bn-spec-panel__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bn-spec-panel__list li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #eef2f7;
    font-size: 13px;
}

.bn-spec-panel__list li:last-child {
    border-bottom: none;
}

.bn-spec-panel__list span {
    color: #0b3d91;
    font-weight: 700;
    white-space: nowrap;
}

/* Image sizes card v2 */
.bn-spec-panel--v2 {
    border: 1px solid rgba(15, 45, 74, 0.1);
    border-radius: 1.1rem;
    background:
        linear-gradient(165deg, rgba(112, 176, 0, 0.06) 0%, transparent 42%),
        linear-gradient(180deg, #ffffff 0%, #f7fbf4 100%);
    box-shadow: 0 14px 36px -18px rgba(7, 30, 66, 0.28);
    padding: 1.1rem 1.05rem 1rem;
}

.bn-spec-panel--v2 .bn-spec-panel__head {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.bn-spec-panel--v2 .bn-spec-panel__icon {
    display: inline-flex;
    height: 2.25rem;
    width: 2.25rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 0.7rem;
    background: rgba(7, 30, 66, 0.06);
    color: #70b000;
    font-size: 0.9rem;
}

.bn-spec-panel--v2 .bn-spec-panel__eyebrow {
    margin: 0;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #1060d0;
}

.bn-spec-panel--v2 .bn-spec-panel__title {
    margin: 0.15rem 0 0;
    font-family: var(--ui-font-display, Sora, sans-serif);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #0f2d4a;
}

.bn-spec-panel--v2 .bn-spec-panel__lead {
    margin: 0.75rem 0 0;
    font-size: 0.75rem;
    line-height: 1.45;
    color: #64748b;
}

.bn-spec-panel--v2 .bn-spec-panel__list {
    margin: 0.85rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.bn-spec-panel--v2 .bn-spec-item {
    display: grid;
    grid-template-columns: 4.5rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.65rem;
    margin: 0;
    padding: 0.65rem 0.7rem;
    border: 1px solid rgba(15, 45, 74, 0.08);
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.92);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.bn-spec-panel--v2 .bn-spec-item:hover {
    border-color: rgba(112, 176, 0, 0.35);
    box-shadow: 0 8px 18px -14px rgba(7, 30, 66, 0.35);
}

.bn-spec-panel--v2 .bn-spec-item__preview {
    display: flex;
    height: 3.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.55rem;
    background:
        linear-gradient(135deg, rgba(16, 96, 208, 0.06), rgba(112, 176, 0, 0.08)),
        repeating-conic-gradient(#eef2f7 0% 25%, #f8fafc 0% 50%) 50% / 10px 10px;
}

.bn-spec-panel--v2 .bn-spec-item__frame {
    display: block;
    max-width: 100%;
    border: 1.5px solid #0f2d4a;
    border-radius: 3px;
    background: linear-gradient(145deg, rgba(112, 176, 0, 0.35), rgba(16, 96, 208, 0.25));
    box-shadow: 0 2px 6px rgba(7, 30, 66, 0.12);
}

.bn-spec-panel--v2 .bn-spec-item--top_banner .bn-spec-item__frame,
.bn-spec-panel--v2 .bn-spec-item--center_banner .bn-spec-item__frame {
    background: linear-gradient(90deg, rgba(16, 96, 208, 0.28), rgba(112, 176, 0, 0.35));
}

.bn-spec-panel--v2 .bn-spec-item--side_banner .bn-spec-item__frame {
    background: linear-gradient(180deg, rgba(112, 176, 0, 0.4), rgba(16, 96, 208, 0.22));
}

.bn-spec-panel--v2 .bn-spec-item__copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.bn-spec-panel--v2 .bn-spec-item__name {
    font-size: 0.8rem;
    font-weight: 600;
    color: #0f2d4a;
    line-height: 1.25;
}

.bn-spec-panel--v2 .bn-spec-item__place {
    font-size: 0.68rem;
    line-height: 1.35;
    color: #64748b;
}

.bn-spec-panel--v2 .bn-spec-item__size {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.05rem;
    flex-shrink: 0;
}

.bn-spec-panel--v2 .bn-spec-item__px {
    font-family: var(--ui-font-display, Sora, sans-serif);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0f2d4a;
    white-space: nowrap;
}

.bn-spec-panel--v2 .bn-spec-item__unit {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #70b000;
}

.bn-spec-panel--v2 .bn-spec-panel__foot {
    margin: 0.75rem 0 0;
    font-size: 0.68rem;
    color: #94a3b8;
}

@media (max-width: 420px) {
    .bn-spec-panel--v2 .bn-spec-item {
        grid-template-columns: 3.5rem minmax(0, 1fr);
        grid-template-areas:
            "preview copy"
            "preview size";
    }

    .bn-spec-panel--v2 .bn-spec-item__preview { grid-area: preview; }
    .bn-spec-panel--v2 .bn-spec-item__copy { grid-area: copy; }
    .bn-spec-panel--v2 .bn-spec-item__size {
        grid-area: size;
        flex-direction: row;
        align-items: baseline;
        gap: 0.25rem;
    }
}

.bn-pack-v2 .bn-summary {
    padding: 22px 20px;
    border-radius: 16px;
    border: 1px solid #dce8f4;
    background: linear-gradient(165deg, #ffffff, #f8fbff);
    box-shadow: 0 12px 32px rgba(16, 96, 208, 0.1);
}

.bn-summary--sticky {
    position: sticky;
    top: 88px;
}

.bn-summary__title {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 700;
    color: #161e2d;
}

.bn-pack-v2 .bn-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 15px;
    margin: 0 0 12px;
    color: #64748b;
}

.bn-pack-v2 .bn-total-row strong {
    font-size: 28px;
    font-weight: 800;
    color: #0b3d91;
}

.bn-summary__pay {
    width: 100%;
    padding: 12px 16px;
    font-weight: 700;
}

.bn-summary__fine {
    margin: 12px 0 0;
    font-size: 11px;
    text-align: center;
    color: #94a3b8;
}

@media (max-width: 991px) {
    .bn-rate-showcase__grid {
        grid-template-columns: 1fr;
    }

    .bn-pack-v2 .bn-form-layout {
        grid-template-columns: 1fr;
    }

    .bn-summary--sticky {
        position: static;
    }
}

@media (max-width: 640px) {
    .bn-pack-v2 .bn-grid {
        grid-template-columns: 1fr;
    }
}

.pay-hist-muted {
    font-size: 12px;
    color: #64748b;
}

.pay-hist-code {
    font-size: 11px;
    word-break: break-all;
}

/* -------- Property leads (property-leads.php + DataTables) -------- */
body.leads-page {
    background: var(--brand-soft, #f4f9fd);
    min-height: 100vh;
}

.leads-page .leads-up-wrap.up-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 16px 48px;
}

.leads-page .leads-panel .card-header.leads-panel__head {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border-bottom: 1px solid #e8eef4;
}

.leads-page .leads-empty-card {
    border-radius: 16px;
    overflow: hidden;
}

.leads-page .leads-table-shell {
    border-radius: 12px;
    border: 1px solid #e8eef4;
    background: #fff;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.leads-page .leads-table-shell .dataTables_wrapper {
    padding: 12px 12px 8px;
}

@media (min-width: 768px) {
    .leads-page .leads-table-shell .dataTables_wrapper {
        padding: 16px 16px 10px;
    }
}

.leads-page table.dataTable.leads-data-table {
    margin: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    table-layout: auto;
}

.leads-page table.dataTable.leads-data-table thead th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #1e3a5f;
    border-bottom-width: 1px;
    white-space: nowrap;
}

.leads-page table.dataTable.leads-data-table thead th,
.leads-page table.dataTable.leads-data-table tbody td {
    padding: 11px 9px;
    vertical-align: middle;
}

.leads-page table.dataTable.leads-data-table tbody td.leads-col-msg {
    white-space: pre-wrap;
    word-break: break-word;
    max-width: min(320px, 28vw);
    min-width: 8rem;
    font-size: 13px;
    line-height: 1.45;
    color: #334155;
    vertical-align: top;
}

.leads-page table.dataTable.leads-data-table tbody td.leads-col-title {
    max-width: 14rem;
    word-break: break-word;
    vertical-align: top;
}

.leads-page table.dataTable.leads-data-table tbody td.leads-col-name {
    max-width: 10rem;
    word-break: break-word;
}

.leads-page table.dataTable.leads-data-table tbody td.leads-col-pid {
    white-space: nowrap;
    max-width: 10rem;
}

.leads-page .leads-pid-link {
    font-weight: 600;
    word-break: break-all;
    white-space: normal;
}

.leads-page table.dataTable.leads-data-table tbody td.leads-col-email {
    max-width: 14rem;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.leads-page table.dataTable.leads-data-table tbody td.leads-col-phone {
    max-width: 9.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-variant-numeric: tabular-nums;
}

.leads-page table.dataTable.leads-data-table tbody td.leads-col-status {
    vertical-align: middle;
}

.leads-page table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,
.leads-page table.dataTable.dtr-inline.collapsed > tbody > tr > th.child,
.leads-page table.dataTable > tbody > tr.child ul.dtr-details {
    width: 100%;
}

.leads-page table.dataTable > tbody > tr.child ul.dtr-details {
    list-style: none;
    margin: 0;
    padding: 12px 14px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.leads-page table.dataTable > tbody > tr.child ul.dtr-details > li {
    border-bottom: 1px solid #e8eef4;
    padding: 8px 0;
    font-size: 13px;
}

.leads-page table.dataTable > tbody > tr.child ul.dtr-details > li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Search + Export on one flex row (see DataTables dom fB inside .dt-toolbar-search-export) */
.leads-page .dataTables_wrapper .dt-toolbar-search-export,
.transactions-page .dataTables_wrapper .dt-toolbar-search-export {
    width: 100%;
}

.leads-page .dataTables_wrapper .dataTables_filter,
.transactions-page .dataTables_wrapper .dataTables_filter {
    float: none !important;
    margin: 0 !important;
    text-align: left;
}

.leads-page .dataTables_wrapper .dataTables_filter label,
.transactions-page .dataTables_wrapper .dataTables_filter label {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.leads-page .dataTables_wrapper .dataTables_filter input,
.transactions-page .dataTables_wrapper .dataTables_filter input {
    margin-left: 0;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    padding: 8px 12px;
    font-size: 14px;
    min-width: 200px;
    width: clamp(140px, 36vw, 320px);
    max-width: 100%;
}

.leads-page .dataTables_wrapper .dataTables_filter input:focus,
.transactions-page .dataTables_wrapper .dataTables_filter input:focus {
    outline: 2px solid rgba(16, 96, 208, 0.25);
    border-color: #1060d0;
}

.leads-page .dataTables_wrapper .dataTables_length,
.transactions-page .dataTables_wrapper .dataTables_length {
    margin: 0;
}

.leads-page .dataTables_wrapper .dataTables_length label,
.transactions-page .dataTables_wrapper .dataTables_length label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    white-space: nowrap;
}

/* One chevron: appearance:auto can stack an OS arrow on top of the custom SVG caret. */
.leads-page .dataTables_wrapper .dataTables_length select,
.transactions-page .dataTables_wrapper .dataTables_length select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 10px;
    padding-right: 2.75rem !important;
    min-width: 5.75rem;
    font-size: 14px;
    line-height: 1.35;
    background-color: #fff;
}

.leads-page .dataTables_wrapper div.dt-buttons,
.transactions-page .dataTables_wrapper div.dt-buttons {
    float: none !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center;
}

.leads-page .dataTables_wrapper div.dt-buttons .btn,
.transactions-page .dataTables_wrapper div.dt-buttons .btn {
    flex-shrink: 0;
}

.leads-page .dataTables_wrapper .dataTables_info {
    padding-top: 14px;
    font-size: 13px;
    color: #64748b;
}

.leads-page .dataTables_wrapper .dataTables_paginate {
    padding-top: 10px;
}

.leads-page .dataTables_wrapper .dataTables_paginate .pagination {
    gap: 4px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.leads-page .dataTables_wrapper div.dt-buttons .btn-success {
    font-weight: 600;
}

@media (max-width: 767px) {
    .leads-page .dataTables_wrapper .dt-toolbar-search-export,
    .transactions-page .dataTables_wrapper .dt-toolbar-search-export {
        justify-content: flex-start !important;
        flex-direction: column;
        align-items: stretch !important;
    }

    .leads-page .dataTables_wrapper .dataTables_filter label,
    .transactions-page .dataTables_wrapper .dataTables_filter label {
        flex-wrap: wrap;
        width: 100%;
    }

    .leads-page .dataTables_wrapper .dataTables_filter input,
    .transactions-page .dataTables_wrapper .dataTables_filter input {
        width: 100%;
        flex: 1 1 auto;
        min-width: 0;
    }

    .leads-page .dataTables_wrapper div.dt-buttons,
    .transactions-page .dataTables_wrapper div.dt-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .leads-page .dataTables_wrapper div.dt-buttons .btn,
    .transactions-page .dataTables_wrapper div.dt-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

.leads-page table.dataTable thead th.dt-sno,
.transactions-page table.dataTable thead th.dt-sno {
    width: 3.25rem;
    text-align: center;
}

.leads-page table.dataTable tbody td.dt-sno,
.transactions-page table.dataTable tbody td.dt-sno {
    width: 3.25rem;
    text-align: center;
    font-weight: 600;
    color: #64748b;
    font-variant-numeric: tabular-nums;
}

/* -------- Transactions (payment-history.php + DataTables) -------- */
body.transactions-page {
    background: var(--brand-soft, #f4f9fd);
    min-height: 100vh;
}

.transactions-page .transactions-up-wrap.up-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 16px 48px;
}

.transactions-page .transactions-empty-card {
    border-radius: 16px;
    overflow: hidden;
}

.transactions-page .txn-panel .card-header.txn-panel__head {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border-bottom: 1px solid #e8eef4;
}

/* Mirror leads-table-shell: border, scroll, inner DataTables padding */
.transactions-page .txn-table-shell {
    border-radius: 12px;
    border: 1px solid #e8eef4;
    background: #fff;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.transactions-page .txn-table-shell .dataTables_wrapper {
    padding: 12px 12px 8px;
}

@media (min-width: 768px) {
    .transactions-page .txn-table-shell .dataTables_wrapper {
        padding: 16px 16px 10px;
    }
}

.transactions-page table.dataTable.txn-data-table {
    margin: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    table-layout: auto;
}

.transactions-page table.dataTable.txn-data-table thead th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #1e3a5f;
    border-bottom-width: 1px;
    white-space: nowrap;
}

.transactions-page table.dataTable.txn-data-table thead th,
.transactions-page table.dataTable.txn-data-table tbody td {
    padding: 11px 9px;
    vertical-align: middle;
}

.transactions-page table.dataTable.txn-data-table tbody td.txn-col-details {
    font-size: 13px;
    line-height: 1.45;
    max-width: 18rem;
    word-break: break-word;
    vertical-align: top;
}

.transactions-page .txn-detail-stack {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.transactions-page table.dataTable.txn-data-table tbody td.txn-col-action {
    vertical-align: middle;
    width: 1%;
    white-space: nowrap;
}

.transactions-page .txn-action-icon-btn {
    --bs-btn-padding-y: 0.2rem;
    --bs-btn-padding-x: 0.4rem;
    --bs-btn-font-size: 0;
    padding: 0.2rem 0.42rem;
    line-height: 1;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.transactions-page .txn-action-icon-btn .txn-view-icon {
    flex-shrink: 0;
    vertical-align: middle;
}

.transactions-page table.dataTable.txn-data-table tbody td.txn-col-amount {
    font-variant-numeric: tabular-nums;
}

.transactions-page table.dataTable.txn-data-table tbody td.txn-col-rzp code {
    display: inline-block;
    max-width: 100%;
}

.transactions-page table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,
.transactions-page table.dataTable.dtr-inline.collapsed > tbody > tr > th.child,
.transactions-page table.dataTable > tbody > tr.child ul.dtr-details {
    width: 100%;
}

.transactions-page table.dataTable > tbody > tr.child ul.dtr-details {
    list-style: none;
    margin: 0;
    padding: 12px 14px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.transactions-page table.dataTable > tbody > tr.child ul.dtr-details > li {
    border-bottom: 1px solid #e8eef4;
    padding: 8px 0;
    font-size: 13px;
}

.transactions-page table.dataTable > tbody > tr.child ul.dtr-details > li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.transactions-page .dataTables_wrapper .dataTables_info {
    padding-top: 14px;
    font-size: 13px;
    color: #64748b;
}

.transactions-page .dataTables_wrapper .dataTables_paginate {
    padding-top: 10px;
}

.transactions-page .dataTables_wrapper .dataTables_paginate .pagination {
    gap: 4px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.transactions-page .dataTables_wrapper div.dt-buttons .btn-success {
    font-weight: 600;
}

/* ----- Lead package / open-lead checkout (lead-package.php) ----- */
body.lm-pack-page {
    background: var(--brand-soft, #f4f9fd);
    min-height: 100vh;
}

body.lm-pack-page .lm-page-intro {
    margin: -2px 0 14px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-muted);
    max-width: 720px;
}

.lm-tier-showcase {
    margin-bottom: 28px;
}

.lm-tier-showcase__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 14px;
    color: var(--brand-dark, #0f172a);
}

.lm-tier-showcase__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.lm-tier-card {
    background: #fff;
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 14px;
    padding: 16px 14px;
    text-align: center;
    box-shadow: var(--shadow, 0 8px 24px rgba(15, 23, 42, 0.06));
}

.lm-tier-card__quota {
    margin: 0 0 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted, #64748b);
}

.lm-tier-card__price {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-primary, #1060d0);
}

.lm-checkout__head {
    margin-bottom: 22px;
}

.lm-checkout .lpk-highlight__title.lm-checkout__title {
    margin-bottom: 8px;
}

.lm-checkout__intro {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-muted);
    max-width: 780px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
}

.lm-intro-lead {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
}

.lm-intro-sent {
    color: inherit;
}

.lm-quota-chip {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
}

.lm-quota-chip--ok {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.lm-quota-chip--warn {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.lbi-quota-line {
    margin-top: 12px;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
}

.lbi-quota-remain {
    display: inline-flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    padding: 6px 16px;
    border-radius: 12px;
}

.lbi-quota-remain--ok {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #047857;
    border: 1px solid #6ee7b7;
    box-shadow: 0 2px 10px rgba(4, 120, 87, 0.14);
}

.lbi-quota-remain--warn {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.lbi-quota-note {
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 575px) {
    .lbi-quota-remain {
        font-size: 1.35rem;
        padding: 5px 14px;
    }
}

.lm-inbox-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    font-weight: 600;
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid rgba(16, 96, 208, 0.35);
    background: rgba(255, 255, 255, 0.9);
    color: var(--brand-primary);
    text-decoration: none;
    white-space: nowrap;
    vertical-align: middle;
}

.lm-inbox-link::after {
    content: '';
    display: inline-block;
    margin-left: 5px;
    width: 0.35rem;
    height: 0.35rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    opacity: 0.85;
    margin-bottom: 1px;
}

.lm-inbox-link:hover {
    background: var(--brand-light);
    border-color: var(--brand-primary);
}

@media (max-width: 420px) {
    .lm-inbox-link {
        width: auto;
        align-self: flex-start;
    }
}

.lm-form-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(272px, 326px);
    gap: clamp(18px, 3vw, 28px);
    align-items: start;
    margin-top: 12px;
}

@media (max-width: 991px) {
    .lm-form-layout {
        grid-template-columns: 1fr;
    }

    .lm-order-panel {
        order: -1;
    }

    .lm-order-card {
        position: relative;
        top: auto !important;
    }
}

.lm-field-hint {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0 0 18px;
    max-width: 640px;
    line-height: 1.55;
}

.lm-segments {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

body.lm-pack-page fieldset.lm-seg-card {
    margin: 0;
    border: 1px solid var(--border, #dbe8f4);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    background: #fafcfe;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

body.lm-pack-page fieldset.lm-seg-card.lm-seg-card--active {
    border-color: #7eb8f8;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
    background: var(--white, #fff);
}

.lm-seg-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
}

.lm-seg-card__label {
    flex: 1;
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--brand-dark);
    line-height: 1.35;
    cursor: pointer;
}

body.lm-pack-page .lm-seg-switch {
    padding-left: 0;
    margin: 0;
    min-height: 0;
}

body.lm-pack-page .lm-seg-switch .form-check-input {
    width: 2.65em;
    height: 1.35em;
    margin-top: 0;
    cursor: pointer;
}

body.lm-pack-page .lm-seg-switch .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(16, 96, 208, 0.2);
}

body.lm-pack-page .lm-seg-switch .form-check-input:checked {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
}

.lm-seg-card__body {
    border-top: 1px dashed #dbe5f2;
    padding: 14px 16px 17px;
    background: rgba(248, 250, 252, 0.55);
}

body.lm-pack-page fieldset.lm-seg-card.lm-seg-card--active .lm-seg-card__body {
    background: #f4f9fe;
}

.lm-row-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
}

body.lm-pack-page .lm-add-row {
    border: 1px dashed #aec8e8;
    border-radius: 10px;
    background: transparent;
    color: var(--brand-primary);
    font-weight: 600;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

body.lm-pack-page .lm-add-row:hover {
    border-style: solid;
    background: var(--brand-light);
}

.lm-add-row__plus {
    font-size: 1.125rem;
    line-height: 1;
    font-weight: 700;
}

body.lm-pack-page .lm-geo-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--white, #fff);
}

.lm-geo-fields {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
    min-width: 0;
}

@media (max-width: 576px) {
    .lm-geo-fields {
        grid-template-columns: 1fr;
    }

    body.lm-pack-page .lm-geo-row {
        align-items: stretch;
    }

    body.lm-pack-page .lm-remove-row {
        width: 100%;
        justify-content: flex-start;
    }
}

body.lm-pack-page .lm-geo-cell .re-select {
    border-radius: 10px;
    border-color: #cbd8e9;
}

body.lm-pack-page .lm-geo-fields.partner-geo,
body.lm-pack-page .lm-geo-cell,
body.lm-pack-page .lm-geo-row {
    overflow: visible;
}

body.lm-pack-page .lm-geo-fields.partner-geo .geo-ac-input.re-select {
    width: 100%;
    height: 42px;
    padding-right: 2.5rem;
}

.lm-geo-lbl {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-bottom: 6px;
}

body.lm-pack-page button.lm-remove-row {
    align-self: center;
    font-size: 13px;
    padding: 6px 4px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: #94a3b8;
    text-decoration: underline;
    flex-shrink: 0;
}

body.lm-pack-page button.lm-remove-row:hover {
    color: #dc2626;
}

.lm-order-panel {
    position: relative;
}

.lm-order-card {
    position: sticky;
    top: 14px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.09);
    padding: 22px 20px 20px;
}

.lm-order-card__title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin: 0 0 16px;
}

.lm-order-field {
    margin-bottom: 14px;
}

.lm-order-field__lbl {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 8px;
}

body.lm-pack-page .lm-select-quota {
    border-radius: 12px;
    border-color: #c5d9ec;
    font-size: 0.8125rem; /* ~13px */
    line-height: 1.35;
    padding: 0.4rem 0.65rem;
    font-weight: 500;
}

.lm-price-block {
    min-height: 72px;
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lm-price-block__lbl {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1d4ed8;
}

.lm-price-block__inr {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--brand-dark);
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.lm-price-block__sub {
    font-size: 12px;
    color: var(--text-muted);
}

body.lm-pack-page .lm-pay-btn.btn-lg {
    border-radius: 12px;
    font-weight: 700;
    padding-top: 0.62rem;
    padding-bottom: 0.62rem;
    box-shadow: 0 6px 16px rgba(16, 96, 208, 0.32);
}

body.lm-pack-page .lm-pay-btn:active {
    transform: translateY(1px);
}

body.lm-pack-page #lm-pay-msg.lm-pay-msg {
    margin: 12px 0 0;
    min-height: 1.35em;
    font-size: 13px;
    color: var(--text-muted);
}

body.lm-pack-page #lm-pay-msg.lm-pay-msg.is-error {
    color: #dc2626;
}

.lm-order-note {
    margin: 14px 0 0;
    font-size: 11px;
    line-height: 1.45;
    color: #94a3b8;
}

/* ----- Lead package v2 redesign ----- */
body.lm-pack-v2 {
    background:
        radial-gradient(ellipse 80% 50% at 100% -10%, rgba(112, 176, 0, 0.08), transparent 55%),
        radial-gradient(ellipse 70% 45% at -5% 20%, rgba(16, 96, 208, 0.07), transparent 50%),
        #f4f9fd;
}

body.lm-pack-v2 .lm-steps {
    margin: 0;
    padding: 0;
    list-style: none;
}

body.lm-pack-v2 .lm-tier-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

@media (min-width: 1024px) {
    body.lm-pack-v2 .lm-tier-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

body.lm-pack-v2 .lm-tier-pick {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    cursor: pointer;
    appearance: none;
    font: inherit;
    color: inherit;
    border: 1px solid rgba(15, 45, 74, 0.1);
    border-radius: 1.1rem;
    background: #fff;
    padding: 1rem 1.05rem 1.05rem;
    box-shadow: 0 10px 28px -18px rgba(7, 30, 66, 0.2);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

body.lm-pack-v2 .lm-tier-pick:hover {
    transform: translateY(-2px);
    border-color: rgba(112, 176, 0, 0.4);
    box-shadow: 0 14px 30px -16px rgba(7, 30, 66, 0.28);
}

body.lm-pack-v2 .lm-tier-pick:focus-visible {
    outline: 2px solid #70b000;
    outline-offset: 2px;
}

body.lm-pack-v2 .lm-tier-pick--on {
    border: 2px solid #70b000;
    box-shadow: 0 12px 28px -14px rgba(112, 176, 0, 0.35);
}

body.lm-pack-v2 .lm-tier-pick__badge {
    display: inline-flex;
    align-items: center;
    margin: 0 0 0.65rem;
    border-radius: 999px;
    background: #70b000;
    padding: 0.2rem 0.65rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2;
}

body.lm-pack-v2 .lm-tier-pick__badge--spacer {
    visibility: hidden;
    background: transparent;
    color: transparent;
}

body.lm-pack-v2 .lm-tier-pick__quota {
    display: block;
    font-family: var(--ui-font-display, Sora, sans-serif);
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #0f2d4a;
    font-variant-numeric: tabular-nums;
}

body.lm-pack-v2 .lm-tier-pick__unit {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #64748b;
}

body.lm-pack-v2 .lm-tier-pick__price {
    display: block;
    margin-top: 0.85rem;
    font-family: var(--ui-font-display, Sora, sans-serif);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #70b000;
}

body.lm-pack-v2 .lm-tier-pick__meta {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.7rem;
    color: #64748b;
}

body.lm-pack-v2 .lm-tier-pick__check {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    padding-top: 1rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(15, 45, 74, 0.45);
}

body.lm-pack-v2 .lm-tier-pick__check .fa-circle-check {
    font-size: 0.85rem;
    color: #70b000;
    opacity: 0;
    transition: opacity 0.15s ease;
}

body.lm-pack-v2 .lm-tier-pick--on .lm-tier-pick__check {
    color: #0f2d4a;
}

body.lm-pack-v2 .lm-tier-pick--on .lm-tier-pick__check .fa-circle-check {
    opacity: 1;
}

body.lm-pack-v2 fieldset.lm-seg-card {
    margin: 0;
    border: 1px solid rgba(15, 45, 74, 0.1);
    border-radius: 1rem;
    padding: 0;
    overflow: hidden;
    background: #fafcfe;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

body.lm-pack-v2 fieldset.lm-seg-card.lm-seg-card--active {
    border-color: rgba(112, 176, 0, 0.45);
    box-shadow: 0 10px 28px -16px rgba(7, 30, 66, 0.2);
    background: #fff;
}

body.lm-pack-v2 .lm-seg-card__head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
}

body.lm-pack-v2 .lm-seg-card__icon {
    display: inline-flex;
    height: 2.25rem;
    width: 2.25rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 0.65rem;
    background: rgba(7, 30, 66, 0.05);
    color: #70b000;
    font-size: 0.85rem;
}

body.lm-pack-v2 .lm-seg-card--sale .lm-seg-card__icon { color: #1060d0; }
body.lm-pack-v2 .lm-seg-card--rent .lm-seg-card__icon { color: #0a7a4a; }
body.lm-pack-v2 .lm-seg-card--pg .lm-seg-card__icon { color: #b45309; }
body.lm-pack-v2 .lm-seg-card--plot .lm-seg-card__icon { color: #64748b; }
body.lm-pack-v2 .lm-seg-card--comm .lm-seg-card__icon { color: #0f2d4a; }

body.lm-pack-v2 .lm-seg-card__group {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
}

body.lm-pack-v2 .lm-seg-card__label {
    display: block;
    margin: 0.15rem 0 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f2d4a;
    line-height: 1.35;
    cursor: pointer;
}

body.lm-pack-v2 .lm-seg-switch {
    padding-left: 2.5em;
    margin: 0;
    min-height: 0;
}

body.lm-pack-v2 .lm-seg-card__body {
    border-top: 1px dashed #dbe5f2;
    padding: 0.9rem 1rem 1.05rem;
    background: rgba(244, 249, 253, 0.7);
}

body.lm-pack-v2 .lm-add-row {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px dashed rgba(16, 96, 208, 0.35);
    border-radius: 0.65rem;
    background: #fff;
    color: #0f2d4a;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.45rem 0.85rem;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
}

body.lm-pack-v2 .lm-add-row:hover {
    border-style: solid;
    border-color: rgba(112, 176, 0, 0.5);
    background: rgba(112, 176, 0, 0.06);
}

body.lm-pack-v2 .lm-geo-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 0.85rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(15, 45, 74, 0.1);
    background: #fff;
}

body.lm-pack-v2 .lm-geo-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

body.lm-pack-v2 .lm-geo-toolbar__lbl {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
}

body.lm-pack-v2 .lm-geo-toolbar__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

body.lm-pack-v2 .lm-scope-toggle {
    display: inline-flex;
    cursor: pointer;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    border: 1px solid #d4deea;
    background: #fff;
    padding: 0.35rem 0.7rem 0.35rem 0.55rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #334155;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    user-select: none;
}

body.lm-pack-v2 .lm-scope-toggle__input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin: 0;
    pointer-events: none;
}

body.lm-pack-v2 .lm-scope-toggle__track {
    position: relative;
    display: inline-flex;
    width: 2.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    align-items: center;
    border-radius: 999px;
    background: #cbd5e1;
    transition: background-color 0.15s ease;
}

body.lm-pack-v2 .lm-scope-toggle__knob {
    position: absolute;
    left: 0.125rem;
    top: 0.125rem;
    width: 1rem;
    height: 1rem;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.25);
    transition: transform 0.15s ease;
}

body.lm-pack-v2 .lm-scope-toggle__input:checked + .lm-scope-toggle__track,
body.lm-pack-v2 .lm-scope-toggle.is-on .lm-scope-toggle__track {
    background: #65a30d;
}

body.lm-pack-v2 .lm-scope-toggle__input:checked + .lm-scope-toggle__track .lm-scope-toggle__knob,
body.lm-pack-v2 .lm-scope-toggle.is-on .lm-scope-toggle__knob {
    transform: translateX(1rem);
}

body.lm-pack-v2 .lm-scope-toggle.is-on {
    border-color: rgba(101, 163, 13, 0.45);
    background: rgba(101, 163, 13, 0.08);
    color: #3f6212;
}

body.lm-pack-v2 .lm-scope-toggle:has(input:disabled) {
    opacity: 0.55;
    cursor: not-allowed;
}

body.lm-pack-v2 .lm-geo-cell--span {
    grid-column: 1 / -1;
}

body.lm-pack-v2 .lm-geo-lbl-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}

body.lm-pack-v2 .lm-geo-lbl-row .lm-geo-lbl {
    margin-bottom: 0;
}

body.lm-pack-v2 .lm-loc-count {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
}

body.lm-pack-v2 .lm-loc-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

body.lm-pack-v2 .lm-loc-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    max-width: 100%;
    border: 1px solid rgba(112, 176, 0, 0.4);
    background: rgba(112, 176, 0, 0.1);
    color: #3f6212;
    border-radius: 999px;
    padding: 0.2rem 0.35rem 0.2rem 0.65rem;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
}

body.lm-pack-v2 .lm-loc-chip span:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.lm-pack-v2 .lm-loc-chip__x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    line-height: 1;
}

body.lm-pack-v2 .lm-loc-search {
    display: block;
    width: 100%;
    height: 2.5rem;
    border-radius: 0.65rem;
    border: 1px solid #d4deea;
    background: #fff;
    padding: 0 0.7rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #0f2d4a;
    outline: none;
}

body.lm-pack-v2 .lm-loc-search:focus {
    border-color: #70b000;
    box-shadow: 0 0 0 3px rgba(112, 176, 0, 0.18);
}

body.lm-pack-v2 .lm-loc-list {
    margin-top: 0.5rem;
    max-height: 12.5rem;
    overflow: auto;
    border: 1px solid #d4deea;
    border-radius: 0.65rem;
    background: #fff;
}

body.lm-pack-v2 .lm-loc-option {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin: 0;
    padding: 0.6rem 0.75rem;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #0f2d4a;
    cursor: pointer;
}

body.lm-pack-v2 .lm-loc-option:last-child {
    border-bottom: 0;
}

body.lm-pack-v2 .lm-loc-option:hover {
    background: #f8fafc;
}

body.lm-pack-v2 .lm-loc-option.is-on {
    background: rgba(112, 176, 0, 0.08);
}

body.lm-pack-v2 .lm-loc-option input {
    margin-top: 0.15rem;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    accent-color: #70b000;
}

body.lm-pack-v2 .lm-loc-empty {
    margin: 0;
    padding: 0.85rem 0.75rem;
    font-size: 0.8125rem;
    color: #64748b;
}

body.lm-pack-v2 .lm-loc-picker.is-disabled,
body.lm-pack-v2 .lm-geo-cell--locality.is-disabled .lm-loc-picker {
    opacity: 0.55;
    pointer-events: none;
}

body.lm-pack-v2 .lm-geo-row--all-districts .partner-geo__district-field,
body.lm-pack-v2 .lm-geo-row--all-districts .lm-geo-cell--locality,
body.lm-pack-v2 .lm-geo-row--all-localities .lm-geo-cell--locality {
    display: none !important;
}

body.lm-pack-v2 .lm-geo-hint {
    margin: 0.35rem 0 0;
    font-size: 0.7rem;
    line-height: 1.35;
    color: #64748b;
}

body.lm-pack-v2 .lm-geo-lbl {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
}

body.lm-pack-v2 .lm-geo-fields .geo-ac-input,
body.lm-pack-v2 .lm-select-quota {
    display: block;
    width: 100%;
    height: 2.5rem;
    border-radius: 0.65rem;
    border: 1px solid #d4deea;
    background: #fff;
    padding: 0 0.7rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #0f2d4a;
    outline: none;
}

body.lm-pack-v2 .lm-geo-fields .geo-ac-input:focus,
body.lm-pack-v2 .lm-select-quota:focus {
    border-color: #70b000;
    box-shadow: 0 0 0 3px rgba(112, 176, 0, 0.18);
}

body.lm-pack-v2 .lm-geo-fields .geo-ac-wrap--disabled .geo-ac-input {
    background: #f8fafc;
    color: #94a3b8;
}

body.lm-pack-v2 .lm-remove-row {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.65rem;
    border: 1px solid #fecaca;
    background: #fff;
    padding: 0.5rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #dc2626;
    cursor: pointer;
    text-decoration: none;
}

body.lm-pack-v2 .lm-remove-row:hover {
    background: #fef2f2;
}

body.lm-pack-v2 .lm-order-card {
    position: sticky;
    top: 5.5rem;
    border-radius: 1.1rem;
    border: 1px solid rgba(15, 45, 74, 0.1);
    background: linear-gradient(180deg, #fff 0%, #f7fbf4 100%);
    box-shadow: 0 14px 36px -18px rgba(7, 30, 66, 0.28);
    padding: 1.15rem 1.1rem 1.1rem;
}

body.lm-pack-v2 .lm-order-card__title {
    margin: 0;
    font-family: var(--ui-font-display, Sora, sans-serif);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-transform: none;
    color: #0f2d4a;
}

body.lm-pack-v2 .lm-order-field__lbl {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #0f2d4a;
}

body.lm-pack-v2 .lm-price-block {
    margin-top: 1rem;
    margin-bottom: 0;
    min-height: 4.5rem;
    padding: 0.85rem 0.95rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(112, 176, 0, 0.25);
    background: rgba(112, 176, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

body.lm-pack-v2 .lm-price-block__lbl {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #547a1a;
}

body.lm-pack-v2 .lm-price-block__inr {
    font-family: var(--ui-font-display, Sora, sans-serif);
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #0f2d4a;
}

body.lm-pack-v2 .lm-price-block__sub {
    font-size: 0.72rem;
    color: #64748b;
}

body.lm-pack-v2 .lm-order-bullets {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

body.lm-pack-v2 .lm-order-bullets li {
    position: relative;
    padding-left: 1.1rem;
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.4;
}

body.lm-pack-v2 .lm-order-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 999px;
    background: #70b000;
}

body.lm-pack-v2 .lm-pay-btn {
    margin-top: 1rem;
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border: 0;
    border-radius: 0.7rem;
    background: #70b000;
    padding: 0.8rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
}

body.lm-pack-v2 .lm-pay-btn:hover {
    background: #5f9600;
}

body.lm-pack-v2 .lm-pay-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

body.lm-pack-v2 .lm-pay-msg {
    margin: 0.65rem 0 0;
    min-height: 1.25em;
    font-size: 0.8rem;
    color: #64748b;
}

body.lm-pack-v2 .lm-pay-msg.is-error {
    color: #dc2626;
}

body.lm-pack-v2 .lm-inbox-link {
    display: inline-flex;
    align-items: center;
    border-radius: 0.65rem;
    border: 1px solid rgba(112, 176, 0, 0.35);
    background: rgba(112, 176, 0, 0.08);
    padding: 0.4rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0a7a4a;
    text-decoration: none;
    white-space: nowrap;
}

body.lm-pack-v2 .lm-inbox-link::after {
    content: "\2192";
    margin-left: 0.35rem;
    border: 0;
    width: auto;
    height: auto;
    transform: none;
    opacity: 0.85;
}

body.lm-pack-v2 .lm-inbox-link:hover {
    background: rgba(112, 176, 0, 0.14);
    border-color: #70b000;
}

@media (max-width: 576px) {
    body.lm-pack-v2 .lm-geo-fields {
        grid-template-columns: 1fr;
    }

    body.lm-pack-v2 .lm-geo-row {
        align-items: stretch;
    }

    body.lm-pack-v2 .lm-geo-toolbar__actions {
        width: 100%;
    }

    body.lm-pack-v2 .lm-remove-row {
        margin-left: auto;
    }
}

@media (max-width: 991px) {
    body.lm-pack-v2 .lm-order-panel {
        order: -1;
    }

    body.lm-pack-v2 .lm-order-card {
        position: relative;
        top: auto;
    }
}

/* ----- Listing Open Leads inbox (lead-buyer-inbox.php) ----- */
body.lm-inbox-page {
    background: var(--brand-soft, #f4f9fd);
    min-height: 100vh;
}

body.lm-inbox-page .lm-page-intro {
    margin: -2px 0 14px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-muted);
    max-width: 720px;
}

.lbi-panel {
    margin-bottom: 2rem;
}

.lbi-panel__head {
    margin-bottom: 20px;
}

.lbi-panel__title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 16px;
    margin-bottom: 8px;
}

.lbi-panel__title {
    margin: 0;
}

.lbi-panel__intro {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-muted);
    max-width: 680px;
}

.lm-pack-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    font-weight: 600;
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid rgba(16, 96, 208, 0.35);
    background: rgba(255, 255, 255, 0.9);
    color: var(--brand-primary);
    text-decoration: none;
    white-space: nowrap;
}

.lm-pack-link:hover {
    background: var(--brand-light);
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.lbi-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    margin-bottom: 22px;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border, #dbe8f4);
}

.lbi-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 120px;
}

.lbi-stat--quota {
    margin-left: auto;
    align-items: flex-end;
    text-align: right;
}

.lbi-stat__value {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--brand-navy, #0c2d4a);
}

.lbi-stat__label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
}

.lbi-banner {
    margin-bottom: 18px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.lbi-banner--warn {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
}

.lbi-banner--warn a {
    font-weight: 600;
    color: #b45309;
}

.lbi-empty {
    text-align: center;
    padding: clamp(28px, 5vw, 48px) 20px;
    border-radius: 16px;
    background: #fafcfe;
    border: 1px dashed var(--border, #dbe8f4);
}

.lbi-empty__icon {
    color: var(--brand-primary);
    margin-bottom: 12px;
}

.lbi-empty__title {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--brand-navy, #0c2d4a);
}

.lbi-empty__text {
    margin: 0 auto 20px;
    max-width: 420px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-muted);
}

.lbi-empty__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.lbi-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lbi-card {
    border: 1px solid var(--border, #dbe8f4);
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(12, 45, 74, 0.06);
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.lbi-card:hover {
    border-color: rgba(16, 96, 208, 0.25);
    box-shadow: 0 4px 14px rgba(12, 45, 74, 0.08);
}

.lbi-card__top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 12px;
    padding: 12px 16px;
    background: linear-gradient(180deg, #f8fbfe 0%, #f4f9fd 100%);
    border-bottom: 1px solid var(--border, #e8f0f7);
}

.lbi-card__when {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

.lbi-card__segment {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
    padding: 4px 10px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
    text-align: right;
    max-width: 100%;
}

.lbi-card__body {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px 20px;
    padding: 16px 18px 18px;
}

.lbi-card__main {
    flex: 1 1 220px;
    min-width: 0;
}

@media (max-width: 575px) {
    .lbi-stat--quota {
        margin-left: 0;
        align-items: flex-start;
        text-align: left;
    }

    .lbi-card__body {
        flex-direction: column;
    }

    .lbi-card__actions {
        width: 100%;
    }

    .lbi-card__segment {
        text-align: left;
    }
}

.lbi-card__name {
    margin: 0 0 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-navy, #0c2d4a);
}

.lbi-card__contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 0;
}

.lbi-contact {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    line-height: 1.4;
}

.lbi-contact--phone::before {
    content: 'Phone';
    display: inline-block;
    min-width: 3.25rem;
    margin-right: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #94a3b8;
}

.lbi-contact--email::before {
    content: 'Email';
    display: inline-block;
    min-width: 3.25rem;
    margin-right: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #94a3b8;
}

a.lbi-contact--phone,
a.lbi-contact--email {
    color: var(--brand-primary);
}

a.lbi-contact--phone:hover,
a.lbi-contact--email:hover {
    text-decoration: underline;
}

.lbi-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex-shrink: 0;
    align-self: flex-start;
}

.lbi-card__actions .btn {
    min-width: 7.5rem;
}

.lbi-card__actions .btn-success {
    background: #25d366;
    border-color: #25d366;
}

.lbi-card__actions .btn-success:hover {
    background: #1ebe57;
    border-color: #1ebe57;
}

.lbi-card__message {
    margin: 12px 0 0;
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.5;
    color: #475569;
    background: #f8fafc;
    border-left: 3px solid var(--brand-primary);
    border-radius: 0 8px 8px 0;
}

.lbi-card__body:has(.lbi-card__message) .lbi-card__actions {
    margin-top: 2px;
}

/* Post property Ã¢â¬â state / district / locality autocomplete */
.post-step-wrap .geo-ac-wrap {
    position: relative;
}

.post-step-wrap .geo-ac-input {
    padding-right: 40px;
}

.post-step-wrap .geo-ac-status {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.post-step-wrap .geo-ac-status--error::after {
    content: "!";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #dc2626;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.post-step-wrap .geo-ac-wrap--invalid .geo-ac-input {
    border-color: #dc2626;
    box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.15);
}

.post-step-wrap .geo-ac-wrap--disabled .geo-ac-input {
    background: #f1f5f9;
    color: #94a3b8;
    cursor: not-allowed;
}

.post-step-wrap .geo-ac-label--invalid {
    color: #dc2626;
}

.post-step-wrap .geo-ac-label .required,
.post-step-wrap label.geo-ac-label > .required {
    color: #dc2626;
    font-weight: 600;
}

.post-step-wrap .geo-ac-label-hint {
    font-weight: 500;
}

.post-step-wrap .geo-ac-list {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    z-index: 40;
    margin: 0;
    padding: 0;
    list-style: none;
    max-height: 260px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #d4deea;
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.post-step-wrap .geo-ac-option {
    padding: 10px 14px;
    font-size: 14px;
    line-height: 1.35;
    color: #24384f;
    cursor: pointer;
    border-bottom: 1px solid #eef2f7;
}

.post-step-wrap .geo-ac-option:hover,
.post-step-wrap .geo-ac-option:focus {
    background: #f0f7ff;
}

.post-step-wrap .geo-ac-add-footer {
    border-top: 1px solid #e8edf4;
    padding: 0;
    cursor: default;
}

.post-step-wrap .geo-ac-add-footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 12px 14px;
    font-size: 13px;
    color: #475569;
    background: #fafbfc;
}

.post-step-wrap .geo-ac-bulb {
    font-size: 15px;
    line-height: 1;
}

.post-step-wrap .geo-ac-add-link {
    border: 0;
    background: none;
    padding: 0;
    color: #1f7ed7;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.post-step-wrap .geo-ac-add-link:hover {
    text-decoration: underline;
}

.post-step-wrap .geo-ac-wrap--add-new .geo-ac-input {
    border-color: #1f7ed7;
    box-shadow: 0 0 0 1px rgba(31, 126, 215, 0.12);
}

/* Floating WhatsApp (left side) Ã¢â¬â matches public site */
.re-floating-whatsapp {
    position: fixed;
    left: 24px;
    bottom: 30px;
    z-index: 1050;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px 10px 12px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.re-floating-whatsapp:hover {
    color: #fff;
    background: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(37, 211, 102, 0.42);
}

.re-floating-whatsapp:focus-visible {
    outline: 2px solid #128c7e;
    outline-offset: 3px;
}

.re-floating-whatsapp__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.re-floating-whatsapp__text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

@media (max-width: 767px) {
    .re-floating-whatsapp {
        left: 16px;
        bottom: calc(20px + env(safe-area-inset-bottom, 0px));
        z-index: 1050;
        padding: 0;
        width: 54px;
        height: 54px;
        justify-content: center;
        border-radius: 50%;
    }

    .re-floating-whatsapp__text {
        display: none;
    }

    .re-floating-whatsapp__icon {
        width: 30px;
        height: 30px;
        background: transparent;
    }
}

/* Responsive pass: user dashboard topbar + listings */
@media (max-width: 991px) {
    .user-dash-topbar .topbar-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "brand toggle"
            "actions actions"
            "nav nav";
        align-items: center;
        gap: 10px 12px;
    }

    .user-dash-topbar .brand {
        grid-area: brand;
        min-width: 0;
    }

    .user-dash-topbar .h-nav-toggle {
        display: inline-flex;
        grid-area: toggle;
        margin-left: 0;
    }

    .user-dash-topbar .top-actions {
        grid-area: actions;
        width: 100%;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 8px;
        align-items: center;
        overflow: visible;
    }

    .user-dash-topbar .top-actions .user-notifications {
        justify-self: start;
        overflow: visible;
    }

    .user-dash-topbar .top-actions .btn-visit-site {
        display: inline-flex !important;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        justify-content: center;
        padding: 7px 8px;
        font-size: 12px;
        line-height: 1.25;
        white-space: nowrap;
    }

    .user-dash-topbar .top-actions .btn-visit-site span {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .user-dash-topbar .top-actions .user-account-menu {
        justify-self: end;
        margin-left: 0;
        overflow: visible;
    }

    .user-dash-topbar .top-actions .user-account-menu__toggle {
        max-width: 9.5rem;
        width: auto;
    }

    @media (max-width: 419px) {
        .user-dash-topbar .top-actions .user-account-menu__name {
            display: none;
        }

        .user-dash-topbar .top-actions .user-account-menu__toggle {
            padding-right: 6px;
            max-width: none;
        }

        body.dashboard-page .user-dash-topbar .user-account-menu__panel {
            right: 0 !important;
            width: min(14.5rem, calc(100vw - 12px)) !important;
        }

        body.dashboard-page .user-dash-topbar .user-notifications__menu {
            left: 0 !important;
            width: min(360px, calc(100vw - 12px)) !important;
        }
    }

    .user-dash-topbar .top-actions .btn {
        display: inline-flex;
        width: 100%;
        min-width: 0;
        text-align: center;
        justify-content: center;
        padding: 9px 10px;
        font-size: 13px;
    }

    .user-dash-topbar .h-nav {
        display: none;
        grid-area: nav;
        flex: initial;
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        gap: 2px;
        padding: 8px 0 4px;
        border-top: 1px solid #e2e8f0;
        margin-top: 0;
    }

    .user-dash-topbar.is-nav-open .h-nav {
        display: flex;
    }

    .user-dash-topbar .h-nav .nav-link,
    .user-dash-topbar .h-nav .nav-submenu__trigger {
        width: 100%;
        white-space: normal;
        padding: 10px 12px;
        text-align: left;
    }

    .user-dash-topbar .h-nav .user-nav-chevron {
        margin-left: auto;
    }

    .user-dash-topbar .user-nav-link.is-active,
    .user-dash-topbar .user-nav-link.active {
        border-radius: 0.5rem;
        background: rgba(112, 176, 0, 0.12);
        color: #071e42;
    }

    .user-dash-topbar .h-nav .nav-submenu {
        width: 100%;
    }

    .user-dash-topbar .h-nav .nav-submenu__panel {
        position: static;
        width: 100%;
        margin-top: 0;
        box-shadow: none;
        transform: none;
        padding: 0;
        border: none;
        background: transparent;
    }

    .user-dash-topbar .h-nav .nav-submenu:not(.nav-submenu--open) .nav-submenu__panel {
        display: none;
    }

    .user-dash-topbar .h-nav .nav-submenu.nav-submenu--open .nav-submenu__panel {
        display: block;
        margin-top: 4px;
        padding: 6px 0 6px 8px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .user-dash-topbar .h-nav .nav-submenu__panel::before {
        display: none;
    }

    .dashboard-dash .dash-bento {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .pl-prop-card__foot {
        flex-direction: column;
        align-items: stretch;
    }

    .pl-foot-actions {
        justify-content: flex-start;
    }

    .post-step-wrap .inline-checks {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .post-step-wrap .radio-choices.compact-radio {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .post-step-wrap .inline-add-wrap {
        flex-direction: column;
        align-items: stretch;
    }

    .post-step-wrap .inline-add-wrap .btn {
        width: 100%;
    }

    .post-step-wrap .input-group-split {
        grid-template-columns: 1fr;
    }

    .post-step-wrap .input-group-split .step-input {
        border-radius: 10px;
        border-right: 1px solid #d4deea;
    }

    .post-step-wrap .input-group-split .step-select {
        border-radius: 10px;
    }

    .post-step-wrap .road-width-wrap {
        max-width: none;
    }

    .post-step-wrap .step-action-row {
        display: flex;
        flex-direction: column-reverse;
        gap: 10px;
    }

    .post-step-wrap .step-action-row .btn {
        width: 100%;
        margin: 0 !important;
    }

    .post-step-wrap .choice-row:has(.btn-link-additional) {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .post-step-wrap .choice-row .btn-link-additional {
        margin: 0 !important;
        text-align: left;
    }

    .post-step-wrap .basic-step-card {
        padding: 16px;
    }

    .post-step-wrap .select-badge-group {
        gap: 8px;
    }

    .stepper-item p {
        display: none;
    }

    .welcome h1 {
        font-size: 20px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .post-step-layout {
        grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
        gap: 16px;
    }
}

/* User dashboard notifications (behavior + brand tokens) */
.user-notifications {
    position: relative;
}

.user-notifications__toggle {
    cursor: pointer;
}

.user-notifications.is-open .user-notifications__toggle {
    border-color: rgba(11, 61, 145, 0.3);
    background: rgb(var(--jk-50) / 1);
}

.user-notifications__bell {
    width: 18px;
    height: 18px;
}

.user-notification-item__icon svg {
    width: 16px;
    height: 16px;
}

.user-notification-item.is-unread {
    background: rgb(var(--jk-50) / 0.7);
}

.user-notify-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    padding: 20px 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0b3d91 0%, #1060d0 55%, #1a7a3a 140%);
    color: #fff;
    box-shadow: 0 14px 32px rgba(11, 61, 145, 0.22);
}

.user-notify-hero__copy {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
    flex: 1;
}

.user-notify-hero__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #70b000;
    box-shadow: 0 8px 18px rgba(112, 176, 0, 0.35);
    flex-shrink: 0;
}

.user-notify-hero__icon svg {
    width: 24px;
    height: 24px;
}

.user-notify-hero__eyebrow {
    margin: 0 0 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.8;
}

.user-notify-hero h1 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.user-notify-hero p {
    margin: 6px 0 0;
    font-size: 14px;
    opacity: 0.9;
}

.user-notify-hero__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(72px, 1fr));
    gap: 8px;
}

.user-notify-hero__stats div {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.user-notify-hero__stats span {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.75;
}

.user-notify-hero__stats strong {
    display: block;
    margin-top: 2px;
    font-size: 20px;
    color: #d9f99d;
}

.user-notify-panel {
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #fff;
    padding: 18px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.user-notify-panel__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.user-notify-panel__head h2 {
    margin: 0;
    font-size: 16px;
    color: #0b3d91;
}

.user-notify-panel__head p {
    margin: 4px 0 0;
    font-size: 13px;
    color: #64748b;
}

.user-notify-mark-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid #d0dff0;
    border-radius: 10px;
    background: #fff;
    color: #1060d0;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.user-notify-mark-all:hover {
    background: #f3f7fd;
}

.user-notify-mark-all svg {
    width: 14px;
    height: 14px;
}

.user-notify-empty {
    text-align: center;
    padding: 36px 16px;
    color: #64748b;
}

.user-notify-empty span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    border-radius: 14px;
    background: #eef5ff;
    color: #1060d0;
}

.user-notify-empty h3 {
    margin: 0 0 6px;
    font-size: 16px;
    color: #0f172a;
}

.user-notify-empty p {
    margin: 0;
    font-size: 13px;
}

.user-notify-list {
    display: grid;
    gap: 10px;
}

.user-notify-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    background: #fff;
    transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.user-notify-row:hover {
    border-color: #bfd1e9;
    background: #fafcff;
    transform: translateY(-1px);
    color: inherit;
}

.user-notify-row.is-unread {
    border-color: #c7dbf5;
    background: #f5f9ff;
}

.user-notify-row__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #eef5ff;
    color: #1060d0;
    flex-shrink: 0;
}

.user-notify-row__icon svg {
    width: 18px;
    height: 18px;
}

.user-notify-row__content {
    min-width: 0;
    flex: 1;
}

.user-notify-row__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
}

.user-notify-row__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #1060d0;
    flex-shrink: 0;
}

.user-notify-row__message {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: #64748b;
    line-height: 1.45;
}

.user-notify-row time {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #94a3b8;
}

.user-notify-row__arrow {
    width: 16px;
    height: 16px;
    color: #94a3b8;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .user-notifications__menu {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* -- Post-property dashboard shell (matches user dashboard) -- */
/* Column widths and column order live here so the wizard layout does not
   depend on the compiled Tailwind bundle being in sync. */
.pp-dash-shell .post-step-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.pp-dash-shell .pp-mobile-steps {
    grid-column: 1 / -1;
    order: -1;
}

.pp-dash-shell .post-left-panel {
    order: 2;
}

.pp-dash-shell .post-step-wrap {
    order: 1;
}

@media (min-width: 1024px) {
    .pp-dash-shell .post-step-layout {
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 1.25rem;
    }

    .pp-dash-shell .post-left-panel {
        order: 1;
    }

    .pp-dash-shell .post-step-wrap {
        order: 2;
    }
}

.pp-dash-shell .stepper-card,
.pp-dash-shell .score-card {
    background: #fff;
    border: 1px solid rgba(15, 45, 74, 0.1);
    border-radius: 1rem;
    padding: 0;
    overflow: hidden;
}

.pp-dash-shell .stepper-card > .space-y-0,
.pp-dash-shell .stepper-card > div:last-child {
    padding: 0.75rem 0.9rem;
}

.pp-dash-shell .score-card {
    padding: 0.85rem 0.9rem;
}

.pp-dash-shell .stepper-item h4 {
    font-family: Sora, Manrope, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f2d4a;
}

.pp-dash-shell .stepper-item p {
    margin: 0.15rem 0 0;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(15, 45, 74, 0.45);
}

.pp-dash-shell .stepper-item.active h4,
.pp-dash-shell .stepper-item.done h4 {
    color: #5a8f00;
}

.pp-dash-shell .stepper-item.active .dot,
.pp-dash-shell .stepper-item.done .dot {
    border-color: #70b000;
    background: #70b000;
    box-shadow: inset 0 0 0 3px #fff;
}

.pp-dash-shell .stepper-item.active:not(:last-child)::after,
.pp-dash-shell .stepper-item.done:not(:last-child)::after {
    background: linear-gradient(#70b000 0 50%, #d1d9e4 50% 100%);
}

.pp-dash-shell .stepper-item.done:not(:last-child)::after {
    background: #70b000;
}

.pp-dash-shell .post-step-wrap.card {
    background: #fff;
    border: 1px solid rgba(15, 45, 74, 0.1);
    border-radius: 1rem;
    box-shadow: 0 1px 2px rgba(15, 45, 74, 0.04);
    min-height: auto;
    padding: 0;
}

.pp-dash-shell .post-step-wrap .step-indicator {
    margin: 0;
    color: #1060d0;
    letter-spacing: 0.12em;
}

.pp-dash-shell .post-step-wrap > header .step-title,
.pp-dash-shell #stepTitleText {
    font-family: Sora, Manrope, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #0f2d4a;
    margin: 0.25rem 0 0;
}

.pp-dash-shell .basic-step-card > .step-title {
    margin: 0 0 1rem;
}

.pp-dash-shell .choice-label {
    color: #0f2d4a;
    font-weight: 600;
    font-size: 0.875rem;
}

.pp-dash-shell .step-input,
.pp-dash-shell .step-select,
.pp-dash-shell .step-textarea {
    border: 1px solid rgba(15, 45, 74, 0.15);
    border-radius: 0.5rem;
    background: #fff;
    color: #0f2d4a;
    font-family: Manrope, sans-serif;
}

.pp-dash-shell .step-input:focus,
.pp-dash-shell .step-select:focus,
.pp-dash-shell .step-textarea:focus {
    border-color: #70b000;
    box-shadow: 0 0 0 3px rgba(112, 176, 0, 0.18);
    outline: none;
}

.pp-dash-shell .type-chip,
.pp-dash-shell .select-badge {
    border-radius: 0.5rem;
    border: 1px solid rgba(15, 45, 74, 0.14);
    background: #f7fafc;
    color: #0f2d4a;
}

.pp-dash-shell .type-chip.active,
.pp-dash-shell .select-badge.active {
    border-color: #70b000;
    background: rgba(112, 176, 0, 0.12);
    color: #3f6400;
    box-shadow: none;
}

.pp-dash-shell .radio-choices label {
    border-radius: 0.5rem;
    border: 1px solid rgba(15, 45, 74, 0.14);
    background: #f7fafc;
    padding: 0.55rem 0.9rem;
}

.pp-dash-shell .radio-choices label:has(input:checked),
.pp-dash-shell .radio-choices input[type="radio"]:checked + span {
    border-color: #70b000;
}

.pp-dash-shell .radio-choices label:has(input:checked) {
    border-color: #70b000;
    background: rgba(112, 176, 0, 0.12);
    color: #3f6400;
    font-weight: 600;
}

.pp-dash-shell .re-btn--primary,
.pp-dash-shell .re-btn.re-btn--primary {
    background: #70b000 !important;
    border-color: #70b000 !important;
    color: #fff !important;
    border-radius: 0.5rem;
    font-weight: 600;
    box-shadow: none;
}

.pp-dash-shell .re-btn--primary:hover,
.pp-dash-shell .re-btn.re-btn--primary:hover {
    background: #5a8f00 !important;
    border-color: #5a8f00 !important;
}

.pp-dash-shell .re-btn.btn-light-step,
.pp-dash-shell .re-btn--outline-primary {
    background: #fff !important;
    border: 1px solid rgba(15, 45, 74, 0.18) !important;
    color: #0f2d4a !important;
    border-radius: 0.5rem;
    font-weight: 600;
}

.pp-dash-shell .re-btn.btn-light-step:hover,
.pp-dash-shell .re-btn--outline-primary:hover {
    background: #f0f6fb !important;
}

.pp-dash-shell .step-action-row {
    margin-top: 1.5rem;
    gap: 0.65rem;
}

.pp-dash-shell .field-error {
    color: #b42318;
    font-size: 0.78rem;
}

.pp-dash-shell .ck.ck-toolbar,
.pp-dash-shell .ck.ck-editor__main > .ck-editor__editable {
    border-color: rgba(15, 45, 74, 0.15) !important;
}

.pp-dash-shell .geo-ac-wrap {
    border-radius: 0.5rem;
}

.pp-dash-shell .pp-package-detail {
    border-radius: 1rem;
    border-color: rgba(15, 45, 74, 0.12);
}

.pp-dash-shell .pp-package-detail.is-selected {
    border-color: #70b000;
    box-shadow: 0 0 0 3px rgba(112, 176, 0, 0.18);
}

.pp-dash-shell .pp-package-detail__pick {
    background: #0f2d4a;
    color: #fff;
}

.pp-dash-shell .pp-package-detail.is-selected .pp-package-detail__pick {
    background: #70b000;
}

.pp-dash-shell .score-card.pp-score-card,
.pp-dash-shell .pp-score-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-height: 0;
    margin: 0;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(15, 45, 74, 0.08);
    border-radius: 1.25rem;
    background: #fff;
    box-shadow: 0 10px 28px -18px rgba(15, 45, 74, 0.35);
}

.pp-dash-shell .pp-score-card .score-ring {
    width: 4.25rem;
    height: 4.25rem;
    flex-shrink: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: conic-gradient(#70b000 0 calc(var(--score-pct, 0) * 1%), #e5eaf0 0);
    box-shadow: inset 0 0 0 1px rgba(15, 45, 74, 0.04);
}

.pp-dash-shell .pp-score-card .score-ring__value,
.pp-dash-shell .pp-score-card .score-ring span {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: #0f2d4a;
    font-family: Sora, Manrope, sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    box-shadow: 0 1px 2px rgba(15, 45, 74, 0.06);
}

.pp-dash-shell .pp-score-card .score-text {
    min-width: 0;
    flex: 1;
}

.pp-dash-shell .pp-score-card .score-text__title,
.pp-dash-shell .pp-score-card .score-text h4 {
    margin: 0;
    font-family: Sora, Manrope, sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.15;
    color: #0f2d4a;
}

.pp-dash-shell .pp-score-card .score-text__hint,
.pp-dash-shell .pp-score-card .score-text p {
    margin: 0.35rem 0 0;
    font-size: 0.72rem;
    font-weight: 500;
    line-height: 1.35;
    color: #64748b;
}

.pp-dash-shell .stepper-item {
    gap: 0.6rem;
    padding: 0 0 0.85rem;
}

.pp-dash-shell .stepper-item:last-child {
    padding-bottom: 0;
}

.pp-dash-shell .stepper-item .dot {
    width: 11px;
    height: 11px;
    min-width: 11px;
    margin-top: 3px;
    border-width: 2px;
}

.pp-dash-shell .stepper-item:not(:last-child)::after {
    left: 5px;
    top: 13px;
    width: 2px;
}

.pp-dash-shell .stepper-item h4 {
    font-size: 0.8rem;
    line-height: 1.25;
}

.pp-dash-shell .stepper-item p {
    margin-top: 0.1rem;
    font-size: 0.62rem;
}

.pp-dash-shell .post-left-panel {
    gap: 0.85rem;
    height: auto;
}

/* ââ Portal typography: Sora headings + Manrope UI text, one shared scale ââ */
body.dashboard-page,
body.dashboard-page.font-sans {
    font-family: var(--ui-font-body);
    font-size: var(--ui-text);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

body.dashboard-page h1,
body.dashboard-page h2,
body.dashboard-page h3,
body.dashboard-page h4,
body.dashboard-page h5,
body.dashboard-page h6,
body.dashboard-page .font-display,
body.dashboard-page .step-title,
body.dashboard-page .welcome h1 {
    font-family: var(--ui-font-display);
    letter-spacing: -0.022em;
    font-feature-settings: "ss01" 1;
}

body.dashboard-page h1,
body.dashboard-page h2,
body.dashboard-page h3,
body.dashboard-page h4,
body.dashboard-page h5,
body.dashboard-page h6 {
    font-weight: 600;
}

body.dashboard-page h1,
body.dashboard-page .welcome h1 {
    font-size: var(--ui-h1);
    line-height: 1.22;
    text-wrap: balance;
}

body.dashboard-page h2 {
    font-size: var(--ui-h2);
    line-height: 1.3;
}

body.dashboard-page h3 {
    font-size: var(--ui-h3);
    line-height: 1.35;
}

body.dashboard-page h4,
body.dashboard-page h5,
body.dashboard-page h6 {
    font-size: var(--ui-h4);
    line-height: 1.4;
}

/* Eyebrow labels above titles carry the accent instead of a large heading */
body.dashboard-page .re-eyebrow {
    font-family: var(--ui-font-display);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.pp-dash-shell .step-title {
    font-size: var(--ui-h2);
    margin-bottom: 1.1rem;
}

.pp-dash-shell .stepper-item h4 {
    font-family: var(--ui-font-display);
    font-size: 0.78rem;
}

.pp-dash-shell > section:first-of-type h1 {
    font-size: clamp(0.95rem, 0.88rem + 0.28vw, 1.1rem);
    line-height: 1.25;
    font-weight: 600;
}

.pp-dash-shell > section:first-of-type .re-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
}

/* -------- Technician / REA listing preview -------- */
.pp-list {
    --pp-ink: #071e42;
    margin: 0 auto 2.5rem;
    max-width: 68rem;
}

.pp-list__intro {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem 1.5rem;
    margin-bottom: 1.25rem;
    padding: 1.5rem 1.4rem;
    border-radius: 1.35rem;
    color: #ffffff;
    background:
        radial-gradient(ellipse 70% 80% at 0% 0%, rgba(34, 197, 94, 0.28), transparent 55%),
        radial-gradient(ellipse 50% 60% at 100% 20%, rgba(56, 189, 248, 0.16), transparent 50%),
        linear-gradient(135deg, #041530 0%, #0a2a5c 55%, #0e4a7a 100%);
    box-shadow: 0 24px 48px -30px rgba(7, 30, 66, 0.55);
    animation: pp-list-rise 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.pp-list__eyebrow {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #bfdbfe !important;
}

.pp-list__title {
    margin: 0.4rem 0 0;
    font-family: Sora, Manrope, system-ui, sans-serif;
    font-size: clamp(1.45rem, 1.15rem + 1.2vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #ffffff !important;
}

.pp-list__lead {
    margin: 0.55rem 0 0;
    max-width: 36rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #e2e8f0 !important;
}

.pp-list__intro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pp-list__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 0.95rem;
    border-radius: 0.8rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.pp-list__btn:hover {
    transform: translateY(-1px);
}

.pp-list__btn-icon {
    width: 0.95rem;
    height: 0.95rem;
}

.pp-list__btn--ghost {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.pp-list__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.2);
}

.pp-list__btn--solid {
    color: #052e16;
    background: linear-gradient(135deg, #bef264, #4ade80);
    border: 1px solid transparent;
    box-shadow: 0 10px 22px -12px rgba(74, 222, 128, 0.75);
}

.pp-list__alert {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    margin-bottom: 1.25rem;
    padding: 0.9rem 1.1rem;
    border-radius: 1rem;
    background: linear-gradient(90deg, #fffbeb, #fef3c7);
    border: 1px solid #fcd34d;
    color: #78350f;
    animation: pp-list-rise 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both;
}

.pp-list__alert-copy {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    min-width: 0;
    flex: 1;
}

.pp-list__alert-copy p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.45;
}

.pp-list__alert-icon {
    width: 1.05rem;
    height: 1.05rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: #b45309;
}

.pp-list__alert-link {
    font-size: 0.875rem;
    font-weight: 800;
    color: #92400e;
    text-decoration: none;
    white-space: nowrap;
}

.pp-list__layout {
    display: grid;
    gap: 1.25rem;
    animation: pp-list-rise 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

@media (min-width: 960px) {
    .pp-list__layout {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        align-items: start;
        gap: 1.5rem;
    }
}

.pp-list__stage {
    padding: 1.15rem;
    border-radius: 1.35rem;
    background:
        linear-gradient(180deg, #f1f5f9 0%, #e8eef5 100%);
    border: 1px solid #dbe3ee;
}

.pp-list__stage-label {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 1rem;
    margin-bottom: 0.95rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
}

.pp-list__live {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    background: #fff;
    border: 1px solid #e2e8f0;
}

.pp-list__live i {
    font-size: 0.45rem;
}

.pp-list__live.is-on {
    color: #166534;
    border-color: #bbf7d0;
    background: #f0fdf4;
}

.pp-list__live.is-on i {
    color: #22c55e;
}

.pp-list__live.is-off {
    color: #92400e;
    border-color: #fcd34d;
    background: #fffbeb;
}

.pp-list__live.is-off i {
    color: #f59e0b;
}

.pp-list__card {
    max-width: 22rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 1.15rem;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 18px 40px -22px rgba(7, 30, 66, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pp-list__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 44px -20px rgba(7, 30, 66, 0.4);
}

.pp-list__card.is-dimmed {
    opacity: 0.72;
    filter: grayscale(0.15);
}

.pp-list__card-banner {
    position: relative;
    height: 7.5rem;
    background: linear-gradient(135deg, #041530 0%, #0b3d91 48%, #0e4a7a 100%);
    overflow: hidden;
}

.pp-list__card-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 15%, rgba(74, 222, 128, 0.35), transparent 45%),
        radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.12), transparent 40%);
}

.pp-list__card-banner::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2.75rem;
    background: linear-gradient(to top, #fff, transparent);
}

.pp-list__verified {
    position: absolute;
    z-index: 1;
    left: 1rem;
    top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
}

.pp-list__verified i {
    color: #4ade80;
    font-size: 0.7rem;
}

.pp-list__card-body {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 0 1.2rem 1.25rem;
}

.pp-list__card-identity {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    margin-top: -2.35rem;
    margin-bottom: 0.85rem;
}

.pp-list__avatar {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 1rem;
    object-fit: cover;
    box-shadow: 0 8px 18px -10px rgba(7, 30, 66, 0.45);
    outline: 4px solid #fff;
}

.pp-list__avatar--fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef7e6;
    color: #15803d;
    font-size: 1.25rem;
    font-weight: 800;
}

.pp-list__card-name {
    min-width: 0;
    padding-bottom: 0.2rem;
}

.pp-list__card-name h2 {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--pp-ink);
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pp-list__card-name p {
    margin: 0.15rem 0 0;
    font-size: 0.7rem;
    font-weight: 600;
    color: #94a3b8;
}

.pp-list__card-place {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin: 0 0 0.85rem;
    font-size: 0.8125rem;
    line-height: 1.4;
    color: #64748b;
}

.pp-list__card-place i {
    margin-top: 0.15rem;
    color: #16a34a;
    font-size: 0.75rem;
}

.pp-list__card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.pp-list__card-tags span {
    padding: 0.22rem 0.55rem;
    border-radius: 0.45rem;
    font-size: 0.68rem;
    font-weight: 600;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.pp-list__card-tags .is-more {
    color: #94a3b8;
}

.pp-list__card-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: auto;
    padding-top: 0.15rem;
}

.pp-list__fake-btn {
    display: inline-flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-width: 5.5rem;
    padding: 0.65rem 0.75rem;
    border-radius: 0.55rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #0369a1;
    background: #fff;
    border: 1px solid #e2e8f0;
    pointer-events: none;
    user-select: none;
}

.pp-list__fake-btn--primary {
    color: #fff;
    background: #16a34a;
    border-color: #16a34a;
}

.pp-list__side {
    display: grid;
    gap: 1rem;
}

.pp-list__panel {
    padding: 1.2rem 1.2rem 1.3rem;
    border-radius: 1.15rem;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    box-shadow: 0 14px 32px -28px rgba(7, 30, 66, 0.35);
}

.pp-list__panel-head {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.95rem;
}

.pp-list__panel-num {
    font-family: Sora, Manrope, system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #94a3b8;
    padding-top: 0.15rem;
}

.pp-list__panel-head h2 {
    margin: 0;
    font-family: Sora, Manrope, system-ui, sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--pp-ink);
}

.pp-list__panel-head h2 em {
    font-style: normal;
    margin-left: 0.3rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
}

.pp-list__panel-head p {
    margin: 0.15rem 0 0;
    font-size: 0.75rem;
    color: #64748b;
}

.pp-list__status {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pp-list__status li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 0;
    border-top: 1px solid #eef2f7;
    font-size: 0.8125rem;
}

.pp-list__status li:first-child {
    border-top: 0;
    padding-top: 0;
}

.pp-list__status span {
    color: #64748b;
}

.pp-list__status strong {
    font-weight: 700;
    color: var(--pp-ink);
    text-align: right;
}

.pp-list__status .is-good {
    color: #15803d;
}

.pp-list__status .is-warn {
    color: #b45309;
}

.pp-list__status .is-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
}

.pp-list__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 9.5rem;
    overflow-y: auto;
}

.pp-list__chips li {
    padding: 0.35rem 0.65rem;
    border-radius: 0.55rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--pp-ink);
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
}

.pp-list__chips--areas li {
    background: rgba(22, 163, 74, 0.08);
    border-color: rgba(22, 163, 74, 0.18);
}

.pp-list__empty {
    margin: 0;
    font-size: 0.85rem;
    color: #64748b;
}

@keyframes pp-list-rise {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .pp-list__intro,
    .pp-list__alert,
    .pp-list__layout {
        animation: none;
    }

    .pp-list__btn:hover,
    .pp-list__card:hover {
        transform: none;
    }
}

/* -------- Technician / REA profile â premium credential -------- */
.pp-pro {
    --pp-ink: #071e42;
    --pp-ink-soft: #334155;
    --pp-mint: #a3e635;
    --pp-green: #16a34a;
    --pp-glass: rgba(255, 255, 255, 0.1);
    --pp-line: rgba(255, 255, 255, 0.14);
    margin: 0 auto 2.5rem;
    max-width: 68rem;
}

.pp-pro__banner {
    position: relative;
    padding-bottom: 0;
}

.pp-pro__stage {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    color: #ffffff;
    isolation: isolate;
    box-shadow:
        0 28px 60px -32px rgba(7, 30, 66, 0.65),
        0 0 0 1px rgba(7, 30, 66, 0.12);
    animation: pp-pro-rise 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.pp-pro__stage-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 70% at 12% 20%, rgba(34, 197, 94, 0.28), transparent 55%),
        radial-gradient(ellipse 60% 50% at 88% 10%, rgba(56, 189, 248, 0.18), transparent 50%),
        radial-gradient(ellipse 50% 40% at 70% 90%, rgba(163, 230, 53, 0.12), transparent 55%),
        linear-gradient(145deg, #041530 0%, #0a2a5c 42%, #0e4a7a 78%, #0b3d5c 100%);
}

.pp-pro__stage-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(ellipse 75% 70% at 50% 40%, #000 20%, transparent 75%);
    pointer-events: none;
}

.pp-pro__stage-inner {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 1.5rem;
    padding: 1.75rem 1.5rem 2rem;
}

@media (min-width: 768px) {
    .pp-pro__stage-inner {
        grid-template-columns: auto minmax(0, 1fr);
        align-items: end;
        gap: 2rem;
        padding: 2.25rem 2.25rem 2.35rem;
    }
}

.pp-pro__portrait {
    position: relative;
    width: 8.5rem;
    height: 10.5rem;
    flex-shrink: 0;
    border-radius: 1.15rem;
    overflow: hidden;
    box-shadow:
        0 18px 40px -18px rgba(0, 0, 0, 0.55),
        0 0 0 3px rgba(255, 255, 255, 0.18);
    animation: pp-pro-portrait 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

@media (min-width: 640px) {
    .pp-pro__portrait {
        width: 10rem;
        height: 12.25rem;
    }
}

.pp-pro__portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
}

.pp-pro__portrait-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #15803d, #0f766e);
}

.pp-pro__portrait-icon {
    width: 3rem;
    height: 3rem;
    color: #fff;
    opacity: 0.9;
}

.pp-pro__status {
    position: absolute;
    left: 0.65rem;
    bottom: 0.65rem;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.pp-pro__status--live {
    background: rgba(163, 230, 53, 0.95);
    color: #14532d;
}

.pp-pro__status--hold {
    background: rgba(251, 191, 36, 0.95);
    color: #78350f;
}

.pp-pro__identity {
    min-width: 0;
    padding-bottom: 0.25rem;
}

.pp-pro__eyebrow {
    margin: 0;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #bfdbfe !important;
}

.pp-pro__name {
    margin: 0.45rem 0 0;
    font-family: Sora, Manrope, system-ui, sans-serif;
    font-size: clamp(1.65rem, 1.2rem + 2vw, 2.55rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #ffffff !important;
    text-wrap: balance;
}

.pp-pro__place {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0.7rem 0 0;
    font-size: 0.9rem;
    color: #e2e8f0 !important;
}

.pp-pro__place-icon {
    width: 0.95rem;
    height: 0.95rem;
    flex-shrink: 0;
    color: #86efac;
    opacity: 1;
}

.pp-pro__meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1rem;
    margin-top: 1.25rem;
}

.pp-pro__id-chip {
    padding: 0.55rem 0.9rem;
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--pp-line);
    backdrop-filter: blur(10px);
}

.pp-pro__id-chip span {
    display: block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #cbd5e1 !important;
}

.pp-pro__id-chip strong {
    display: block;
    margin-top: 0.15rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.95rem;
    font-weight: 700;
    color: #bef264 !important;
    letter-spacing: 0.02em;
}

.pp-pro__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.pp-pro__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.7rem 1.05rem;
    border-radius: 0.85rem;
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.pp-pro__btn:hover {
    transform: translateY(-2px);
}

.pp-pro__btn-icon {
    width: 1rem;
    height: 1rem;
}

.pp-pro__btn--ghost {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.pp-pro__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.2);
}

.pp-pro__btn--solid {
    color: #052e16;
    background: linear-gradient(135deg, #bef264, #4ade80);
    border: 1px solid transparent;
    box-shadow: 0 10px 24px -12px rgba(74, 222, 128, 0.8);
}

.pp-pro__btn--solid:hover {
    box-shadow: 0 14px 28px -12px rgba(74, 222, 128, 0.95);
}

.pp-pro__vitals {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin: -1.35rem 1rem 0;
    border-radius: 1.1rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 18px 40px -24px rgba(7, 30, 66, 0.45);
    overflow: hidden;
    animation: pp-pro-fade 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

@media (min-width: 640px) {
    .pp-pro__vitals {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .pp-pro__vitals {
        margin-left: 2rem;
        margin-right: 2rem;
        margin-top: -1.5rem;
    }
}

.pp-pro__vital {
    padding: 1rem 1.15rem 1.1rem;
    border-bottom: 1px solid #e8eef5;
}

@media (min-width: 640px) {
    .pp-pro__vital {
        border-bottom: 0;
        border-right: 1px solid #e8eef5;
    }

    .pp-pro__vital:last-child {
        border-right: 0;
    }
}

.pp-pro__vital-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #94a3b8;
}

.pp-pro__vital-value {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    margin-top: 0.3rem;
    font-family: Sora, Manrope, system-ui, sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--pp-ink);
    line-height: 1.15;
}

.pp-pro__vital-value small {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0;
    color: #94a3b8;
}

.pp-pro__vital-value--sm {
    display: block;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
}

.pp-pro__vital-hint {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.72rem;
    color: #64748b;
}

.pp-pro__meter {
    margin-top: 0.65rem;
    height: 0.35rem;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
}

.pp-pro__meter-fill {
    display: block;
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #0f766e, #22c55e 55%, #a3e635);
    animation: pp-pro-meter 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

@keyframes pp-pro-meter {
    to {
        width: var(--pp-meter, 0%);
    }
}

.pp-pro__alert {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.25rem;
    margin-top: 1.25rem;
    padding: 0.95rem 1.15rem;
    border-radius: 1rem;
    background: linear-gradient(90deg, #fffbeb, #fef3c7);
    border: 1px solid #fcd34d;
    color: #78350f;
    animation: pp-pro-rise 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.pp-pro__alert-copy {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    min-width: 0;
    flex: 1;
}

.pp-pro__alert-copy p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.45;
}

.pp-pro__alert-icon {
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: #b45309;
}

.pp-pro__alert-link {
    font-size: 0.875rem;
    font-weight: 800;
    color: #92400e;
    text-decoration: none;
    white-space: nowrap;
}

.pp-pro__alert-link:hover {
    color: #78350f;
}

.pp-pro__dossier {
    display: grid;
    gap: 0;
    margin-top: 1.25rem;
    border-radius: 1.35rem;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    box-shadow: 0 16px 40px -30px rgba(7, 30, 66, 0.35);
    overflow: hidden;
    animation: pp-pro-rise 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}

.pp-pro--alert .pp-pro__dossier {
    margin-top: 1.25rem;
}

@media (min-width: 900px) {
    .pp-pro__dossier {
        grid-template-columns: 1fr 1fr;
    }
}

.pp-pro__block {
    padding: 1.4rem 1.35rem 1.5rem;
    border-bottom: 1px solid #e8eef5;
}

@media (min-width: 900px) {
    .pp-pro__block {
        padding: 1.6rem 1.55rem 1.7rem;
        border-bottom: 1px solid #e8eef5;
    }

    .pp-pro__block:nth-child(odd) {
        border-right: 1px solid #e8eef5;
    }

    .pp-pro__block:nth-last-child(-n + 2) {
        border-bottom: 0;
    }
}

.pp-pro__block-head {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.15rem;
}

.pp-pro__block-num {
    font-family: Sora, Manrope, system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #94a3b8;
    padding-top: 0.2rem;
}

.pp-pro__block-head h2 {
    margin: 0;
    font-family: Sora, Manrope, system-ui, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--pp-ink);
}

.pp-pro__block-head h2 em {
    font-style: normal;
    margin-left: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #94a3b8;
}

.pp-pro__block-head p {
    margin: 0.2rem 0 0;
    font-size: 0.78rem;
    color: #64748b;
}

.pp-pro__facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.95rem 1.25rem;
    margin: 0;
}

@media (min-width: 480px) {
    .pp-pro__facts {
        grid-template-columns: 1fr 1fr;
    }
}

.pp-pro__facts dt {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #94a3b8;
}

.pp-pro__facts dd {
    margin: 0.28rem 0 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--pp-ink);
    word-break: break-word;
}

.pp-pro__facts-span {
    grid-column: 1 / -1;
}

.pp-pro__docs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}

.pp-pro__doc {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 0.9rem;
    text-decoration: none;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pp-pro__doc:hover {
    transform: translateY(-2px);
    border-color: #93c5fd;
    box-shadow: 0 12px 24px -18px rgba(7, 30, 66, 0.45);
}

.pp-pro__doc img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.pp-pro__doc-file {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    aspect-ratio: 4 / 3;
    color: #0369a1;
    font-size: 0.7rem;
    font-weight: 700;
}

.pp-pro__doc-file-icon {
    width: 1.35rem;
    height: 1.35rem;
}

.pp-pro__doc-label {
    display: block;
    padding: 0.45rem 0.4rem;
    text-align: center;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--pp-ink);
    border-top: 1px solid #e2e8f0;
    background: #fff;
}

.pp-pro__doc--empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    min-height: 5.5rem;
    padding: 0.75rem 0.4rem;
    border-radius: 0.9rem;
    border: 1px dashed #cbd5e1;
    background: #f8fafc;
    text-align: center;
    color: #94a3b8;
    font-size: 0.72rem;
    font-weight: 600;
}

.pp-pro__doc--empty small {
    font-size: 0.62rem;
    font-weight: 500;
}

.pp-pro__doc--meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    min-height: 5.5rem;
    padding: 0.85rem 0.9rem;
    border-radius: 0.9rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    grid-column: 1 / -1;
}

.pp-pro__doc--meta .pp-pro__doc-label {
    position: static;
    border: 0;
    background: transparent;
    padding: 0;
    color: #64748b;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pp-pro__doc-number {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #0f274f;
}

.pp-pro__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 11rem;
    overflow-y: auto;
}

.pp-pro__chips li {
    padding: 0.4rem 0.7rem;
    border-radius: 0.65rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--pp-ink);
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
}

.pp-pro__chips--areas li {
    background: rgba(22, 163, 74, 0.08);
    border-color: rgba(22, 163, 74, 0.18);
}

.pp-pro__empty {
    margin: 0;
    font-size: 0.875rem;
    color: #64748b;
}

@keyframes pp-pro-rise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pp-pro-fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pp-pro-portrait {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .pp-pro__stage,
    .pp-pro__portrait,
    .pp-pro__vitals,
    .pp-pro__alert,
    .pp-pro__dossier {
        animation: none;
    }

    .pp-pro__meter-fill {
        width: var(--pp-meter, 0%);
        animation: none;
    }

    .pp-pro__btn:hover,
    .pp-pro__doc:hover {
        transform: none;
    }
}

/* -------- Technician / REA activation receipt (screen + print) -------- */
.provider-receipt-page .provider-receipt-main {
    max-width: 46rem;
}

.provider-receipt {
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 1.15rem;
    background: #fff;
    box-shadow: 0 18px 40px -28px rgba(7, 30, 66, 0.45);
}

.provider-receipt__letterhead {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 1.4rem 1.15rem;
    border-bottom: 1px solid #e8eef6;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.provider-receipt__brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.provider-receipt__logo {
    height: 44px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

.provider-receipt__brand strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #071e42;
}

.provider-receipt__brand span {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.78rem;
    color: #64748b;
}

.provider-receipt__meta {
    text-align: right;
}

.provider-receipt__badge {
    display: inline-flex;
    margin-bottom: 0.35rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(112, 176, 0, 0.12);
    color: #4d7a00;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.provider-receipt__success {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1.25rem 1.4rem 0.35rem;
}

.provider-receipt__check {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 999px;
    background: linear-gradient(140deg, #70b000, #578900);
    color: #fff;
    box-shadow: 0 10px 22px -10px rgba(112, 176, 0, 0.7);
}

.provider-receipt__amount-band {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    gap: 1rem;
    margin: 1rem 1.15rem 0.35rem;
    padding: 1.15rem 1.25rem;
    border-radius: 1rem;
    border: 1px solid #c7e0a0;
    background: linear-gradient(135deg, #f7fbf0 0%, #eef7e4 55%, #f8fafc 100%);
    color: #071e42;
}

.provider-receipt__amount-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #4d7a00;
}

.provider-receipt__amount {
    margin-top: 0.25rem;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.7rem, 1.4rem + 1.2vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #071e42 !important;
}

.provider-receipt__amount-side {
    display: grid;
    gap: 0.5rem;
    min-width: 12rem;
    align-content: center;
    padding: 0.65rem 0.85rem;
    border-radius: 0.75rem;
    background: #fff;
    border: 1px solid #e2e8f0;
}

.provider-receipt__amount-side p {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.82rem;
    color: #071e42;
}

.provider-receipt__amount-side span {
    color: #64748b;
    font-weight: 500;
}

.provider-receipt__amount-side strong {
    font-weight: 700;
    color: #071e42;
    text-align: right;
}

.provider-receipt__section {
    padding: 1.15rem 1.4rem 0.4rem;
}

.provider-receipt__section h2 {
    margin: 0 0 0.85rem;
    font-family: "Sora", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #071e42;
}

.provider-receipt__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1rem;
    margin: 0;
    padding: 1rem;
    border: 1px dashed #cbd5e1;
    border-radius: 0.9rem;
    background: #f8fafc;
}

.provider-receipt__grid > div {
    min-width: 0;
}

.provider-receipt__span2 {
    grid-column: 1 / -1;
}

.provider-receipt__grid dt {
    margin: 0 0 0.2rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
}

.provider-receipt__grid dd {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #071e42;
    word-break: break-word;
}

.provider-receipt__grid code {
    display: inline-block;
    max-width: 100%;
    padding: 0.28rem 0.5rem;
    border-radius: 0.4rem;
    background: #e8eef8;
    color: #071e42;
    font-size: 0.82rem;
    font-weight: 600;
    word-break: break-all;
}

.provider-receipt__footer {
    margin-top: 0.85rem;
    padding: 1.1rem 1.4rem 1.35rem;
    border-top: 1px solid #e8eef6;
    background: #fbfdff;
}

.provider-receipt__footer > p {
    font-size: 0.82rem;
    color: #64748b;
}

.provider-receipt__footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.9rem;
}

@media (max-width: 640px) {
    .provider-receipt__grid {
        grid-template-columns: 1fr;
    }

    .provider-receipt__meta {
        text-align: left;
        width: 100%;
    }

    .provider-receipt__amount-band {
        flex-direction: column;
    }
}

@media print {
    @page {
        margin: 12mm;
    }

    body.provider-receipt-page {
        background: #fff !important;
    }

    /* Hide chrome â only the receipt card should print */
    body.provider-receipt-page #userDashTopbar,
    body.provider-receipt-page .user-dash-topbar,
    body.provider-receipt-page .provider-receipt-toolbar,
    body.provider-receipt-page .provider-receipt-no-print,
    body.provider-receipt-page .re-floating-whatsapp {
        display: none !important;
    }

    body.provider-receipt-page * {
        visibility: hidden !important;
    }

    body.provider-receipt-page #providerReceiptPrint,
    body.provider-receipt-page #providerReceiptPrint * {
        visibility: visible !important;
    }

    body.provider-receipt-page #providerReceiptPrint {
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
        margin: 0 !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }

    .provider-receipt-main {
        max-width: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .provider-receipt__amount-band {
        background: #f7fbf0 !important;
        border-color: #b7d48a !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .provider-receipt__amount,
    .provider-receipt__amount-side strong,
    .provider-receipt__amount-side p {
        color: #071e42 !important;
    }

    .provider-receipt__amount-label {
        color: #4d7a00 !important;
    }

    .provider-receipt__amount-side span {
        color: #475569 !important;
    }

    .provider-receipt__check,
    .provider-receipt__badge {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}

/* ââ Become business (bb-) ââ */
.bb-page {
    --bb-navy: #071e42;
    --bb-green: #5ea500;
    --bb-green-dark: #4d7a00;
    --bb-ink: #0f172a;
    --bb-muted: #64748b;
    --bb-line: #e2e8f0;
    --bb-soft: #f1f5f9;
    --bb-card: #ffffff;
    --bb-radius: 1.15rem;
}

.bb-main {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 1.25rem 0 6rem;
}

.bb-hero {
    position: relative;
    overflow: hidden;
    border-radius: 1.35rem;
    background:
        linear-gradient(135deg, rgba(94, 165, 0, 0.18), transparent 42%),
        linear-gradient(160deg, #071e42 0%, #0c3a7a 58%, #0a2f63 100%);
    color: #fff;
    padding: 1.75rem 1.35rem 1.85rem;
    margin-bottom: 1.25rem;
    animation: bbFadeUp 0.55s ease both;
}

.bb-hero__glow {
    position: absolute;
    right: -4rem;
    top: -3rem;
    width: 14rem;
    height: 14rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(94, 165, 0, 0.35), transparent 68%);
    pointer-events: none;
}

.bb-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, #000 30%, transparent 100%);
    pointer-events: none;
}

.bb-hero__inner {
    position: relative;
    max-width: 40rem;
}

.bb-crumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0 0 0.75rem;
    padding: 0;
    list-style: none;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.68);
}

.bb-crumbs a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

.bb-crumbs a:hover {
    color: #b7e06a;
}

.bb-hero__eyebrow {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #b7e06a;
}

.bb-hero__title {
    margin: 0.35rem 0 0;
    font-family: Sora, Manrope, sans-serif;
    font-size: clamp(1.55rem, 3vw, 2.05rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #fff;
}

.bb-hero__lead {
    margin: 0.55rem 0 0;
    max-width: 34rem;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
}

.bb-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.bb-hero__pills li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
}

.bb-icon {
    width: 0.95rem;
    height: 0.95rem;
    display: inline-block;
    flex-shrink: 0;
}

.bb-flash {
    border-radius: 0.9rem;
    border: 1px solid;
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    animation: bbFadeUp 0.4s ease both;
}

.bb-flash--danger {
    border-color: #fecdd3;
    background: #fff1f2;
    color: #9f1239;
}

.bb-flash--info {
    border-color: #bae6fd;
    background: #f0f9ff;
    color: #0c4a6e;
}

.bb-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
    margin: 0 0 1.25rem;
    padding: 0;
    list-style: none;
}

.bb-steps__item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid var(--bb-line);
    background: #fff;
    border-radius: 0.85rem;
    padding: 0.65rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 650;
    color: var(--bb-muted);
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.bb-steps__item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    background: var(--bb-soft);
    color: var(--bb-muted);
    font-size: 0.7rem;
    font-weight: 700;
}

.bb-steps__item.is-active {
    border-color: rgba(94, 165, 0, 0.45);
    background: rgba(94, 165, 0, 0.08);
    color: var(--bb-navy);
    transform: translateY(-1px);
}

.bb-steps__item.is-active span,
.bb-steps__item.is-done span {
    background: var(--bb-green);
    color: #fff;
}

.bb-steps__item.is-done {
    color: var(--bb-navy);
}

.bb-layout {
    display: grid;
    gap: 1.15rem;
}

@media (min-width: 980px) {
    .bb-layout {
        grid-template-columns: minmax(0, 1fr) minmax(240px, 280px);
        align-items: start;
    }
}

.bb-form {
    display: grid;
    gap: 1rem;
}

.bb-card {
    border: 1px solid var(--bb-line);
    background: var(--bb-card);
    border-radius: var(--bb-radius);
    padding: 1.15rem 1.1rem 1.25rem;
    box-shadow: 0 10px 28px -22px rgba(7, 30, 66, 0.35);
    animation: bbFadeUp 0.5s ease both;
}

.bb-card:nth-of-type(2) { animation-delay: 0.05s; }
.bb-card:nth-of-type(3) { animation-delay: 0.1s; }
.bb-card:nth-of-type(4) { animation-delay: 0.15s; }

.bb-card__head {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid #f1f5f9;
}

.bb-card__num {
    flex-shrink: 0;
    font-family: Sora, Manrope, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--bb-green);
    background: rgba(94, 165, 0, 0.1);
    border-radius: 0.65rem;
    padding: 0.45rem 0.55rem;
    line-height: 1;
}

.bb-card__title {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--bb-navy);
}

.bb-card__sub {
    margin: 0.2rem 0 0;
    font-size: 0.82rem;
    color: var(--bb-muted);
    line-height: 1.4;
}

.bb-grid {
    display: grid;
    gap: 0.9rem;
}

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

    .bb-field--full {
        grid-column: 1 / -1;
    }
}

.bb-field label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--bb-ink);
}

.bb-field label abbr {
    color: #e11d48;
    text-decoration: none;
}

.bb-optional {
    font-weight: 500;
    color: #94a3b8;
    font-size: 0.75rem;
}

.bb-field input,
.bb-field select {
    width: 100%;
    border: 1px solid var(--bb-line);
    background: #f8fafc;
    border-radius: 0.8rem;
    padding: 0.7rem 0.85rem;
    font-size: 0.9rem;
    color: var(--bb-ink);
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.bb-field input:focus,
.bb-field select:focus {
    border-color: #86b84a;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(94, 165, 0, 0.18);
}

.bb-input--upper {
    text-transform: uppercase;
}

.bb-uploads {
    display: grid;
    gap: 0.85rem;
}

@media (min-width: 720px) {
    .bb-uploads {
        grid-template-columns: 1fr 1fr;
    }

    .bb-upload--wide {
        grid-column: 1 / -1;
    }
}

.bb-upload {
    position: relative;
    cursor: pointer;
    display: block;
}

.bb-upload input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.bb-upload__frame {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 9.5rem;
    border: 1.5px dashed #cbd5e1;
    border-radius: 1rem;
    background:
        linear-gradient(180deg, #f8fafc, #f1f5f9);
    overflow: hidden;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.bb-upload:hover .bb-upload__frame,
.bb-upload.has-file .bb-upload__frame {
    border-color: #86b84a;
    background: #f7fbf0;
}

.bb-upload:hover .bb-upload__frame {
    transform: translateY(-1px);
}

.bb-upload__frame--logo {
    min-height: 9.5rem;
}

.bb-upload__frame--banner {
    min-height: 8.5rem;
}

.bb-upload__frame img {
    width: 100%;
    height: 100%;
    min-height: 9.5rem;
    object-fit: cover;
    display: block;
}

.bb-upload__frame--banner img {
    min-height: 8.5rem;
}

.bb-upload__placeholder {
    display: grid;
    justify-items: center;
    gap: 0.25rem;
    text-align: center;
    color: var(--bb-muted);
    padding: 1rem;
}

.bb-upload__placeholder .bb-icon {
    width: 1.35rem;
    height: 1.35rem;
    color: var(--bb-green);
    margin-bottom: 0.2rem;
}

.bb-upload__placeholder strong {
    font-size: 0.88rem;
    color: var(--bb-navy);
}

.bb-upload__placeholder em {
    font-style: normal;
    font-size: 0.75rem;
}

.bb-submit {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border: 1px solid var(--bb-line);
    background: #fff;
    border-radius: var(--bb-radius);
    padding: 1rem 1.1rem;
    position: sticky;
    bottom: 0.75rem;
    box-shadow: 0 12px 30px -18px rgba(7, 30, 66, 0.45);
    z-index: 5;
}

@media (min-width: 640px) {
    .bb-submit {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.bb-submit__note {
    margin: 0;
    font-size: 0.82rem;
    color: var(--bb-muted);
}

.bb-declaration__list {
    margin: 0 0 1rem;
    padding-left: 1.15rem;
    display: grid;
    gap: 0.65rem;
    color: var(--bb-muted);
    font-size: 0.86rem;
    line-height: 1.55;
}

.bb-declaration__agree {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin: 0;
    padding: 0.85rem 0.95rem;
    border: 1px solid var(--bb-line);
    border-radius: 0.85rem;
    background: #f8fafc;
    font-size: 0.86rem;
    line-height: 1.5;
    color: var(--bb-ink, #0f274f);
    cursor: pointer;
}

.bb-declaration__agree input {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.bb-submit__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border: 0;
    border-radius: 0.85rem;
    background: linear-gradient(180deg, #6bb50d, var(--bb-green));
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 0.85rem 1.25rem;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, filter 0.15s ease;
}

.bb-submit__btn:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}

.bb-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.bb-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 0.75rem;
    background: var(--bb-green, #5ea500);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.65rem 0.95rem;
    text-decoration: none;
}

.bb-hero__cta:hover {
    filter: brightness(1.05);
    color: #fff;
    text-decoration: none;
}

.bb-hero__cta--ghost {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.bb-view {
    display: grid;
    gap: 0.85rem;
    margin: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bb-view__item {
    margin: 0;
    padding: 0.75rem 0.85rem;
    border: 1px solid var(--bb-line, #e2e8f0);
    border-radius: 0.85rem;
    background: #f8fafc;
}

.bb-view__item--full {
    grid-column: 1 / -1;
}

.bb-view__item dt {
    margin: 0 0 0.25rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--bb-muted, #64748b);
}

.bb-view__item dd {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--bb-navy, #071e42);
    line-height: 1.45;
    word-break: break-word;
}

.bb-view__tag {
    display: inline-flex;
    align-items: center;
    margin-left: 0.4rem;
    border-radius: 999px;
    background: rgba(94, 165, 0, 0.14);
    color: #3f6212;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.15rem 0.45rem;
    vertical-align: middle;
}

.bb-card--photo {
    margin-bottom: 1.15rem;
}

.bb-photo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.25rem;
}

.bb-photo__preview {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5.5rem;
    height: 5.5rem;
    overflow: hidden;
    border-radius: 1.15rem;
    border: 1px solid var(--bb-line, #e2e8f0);
    background: linear-gradient(135deg, #0b3d91, #5ea500);
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    flex: 0 0 auto;
}

.bb-photo__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bb-photo__form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    min-width: min(100%, 18rem);
}

.bb-photo__meta {
    display: grid;
    gap: 0.35rem;
    min-width: min(100%, 16rem);
}

.bb-photo__status {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--bb-ink, #0f172a);
}

.bb-photo__hint {
    margin: 0;
    font-size: 0.78rem;
    color: var(--bb-muted, #64748b);
    line-height: 1.4;
}

.bb-photo__meta .bb-hero__cta {
    justify-self: start;
    margin-top: 0.35rem;
}

.bb-photo__request {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.35rem;
    justify-self: start;
    border: 1px solid #cbd5e1;
    border-radius: 0.7rem;
    background: #fff;
    color: var(--bb-navy, #071e42);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
}

.bb-photo__request:hover {
    border-color: #94a3b8;
    color: var(--bb-navy, #071e42);
    text-decoration: none;
}

.bb-photo__request .bb-icon {
    width: 0.95rem;
    height: 0.95rem;
}

.bb-photo__file {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px dashed #cbd5e1;
    border-radius: 0.75rem;
    background: #f8fafc;
    color: var(--bb-navy, #071e42);
    font-size: 0.82rem;
    font-weight: 650;
    padding: 0.7rem 0.9rem;
    cursor: pointer;
}

.bb-photo__file input {
    max-width: 14rem;
    font-size: 0.78rem;
    font-weight: 500;
}

@media (max-width: 640px) {
    .bb-view {
        grid-template-columns: 1fr;
    }
}

.bb-aside {
    display: grid;
    gap: 0.85rem;
}

@media (min-width: 980px) {
    .bb-aside {
        position: sticky;
        top: 5.5rem;
    }
}

.bb-aside__card {
    border: 1px solid var(--bb-line);
    background: #fff;
    border-radius: var(--bb-radius);
    padding: 1rem 1.05rem;
    box-shadow: 0 10px 28px -22px rgba(7, 30, 66, 0.35);
}

.bb-aside__card--soft {
    background:
        linear-gradient(160deg, rgba(94, 165, 0, 0.08), transparent 55%),
        #fff;
}

.bb-aside__title {
    margin: 0 0 0.65rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--bb-navy);
}

.bb-aside__list,
.bb-aside__tips {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--bb-muted);
    font-size: 0.82rem;
    line-height: 1.55;
}

.bb-aside__list li + li,
.bb-aside__tips li + li {
    margin-top: 0.45rem;
}

.bb-aside__list a {
    color: var(--bb-green-dark);
    font-weight: 650;
    text-decoration: none;
}

.bb-aside__list a:hover {
    text-decoration: underline;
}

@keyframes bbFadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 720px) {
    .bb-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bb-hero {
        padding: 1.35rem 1.1rem 1.45rem;
    }

    .bb-main {
        width: min(1120px, calc(100% - 1.5rem));
    }
}

/* Service provider become â shared bb shell + extras */
.bb-page--service .bb-hero {
    background:
        linear-gradient(135deg, rgba(14, 116, 183, 0.22), transparent 45%),
        linear-gradient(160deg, #071e42 0%, #0c3a7a 52%, #0a4a6e 100%);
}

.bb-page--service .bb-hero__glow {
    background: radial-gradient(circle, rgba(56, 189, 248, 0.28), transparent 68%);
}

/* Referral partner become — franchise ID emphasis */
.bb-page--referral .bb-field--franchise-id {
    padding: 0.85rem 0.95rem 1rem;
    border: 1px solid rgba(94, 165, 0, 0.35);
    border-radius: 1rem;
    background:
        linear-gradient(160deg, rgba(94, 165, 0, 0.1), transparent 60%),
        #fff;
}

.bb-page--referral .bb-field--franchise-id label {
    color: var(--bb-navy);
}

.bb-page--referral .bb-input--mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    letter-spacing: 0.06em;
    font-weight: 650;
}

.bb-page--referral .bb-aside__submit {
    width: 100%;
    margin-top: 0.9rem;
}

.bb-page--referral .bb-aside__note--link {
    margin-top: 0.75rem;
}

.bb-page--referral .bb-aside__note--link a {
    color: var(--bb-green-dark);
    font-weight: 650;
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 720px) {
    .bb-page--referral .bb-steps__item {
        font-size: 0.7rem;
        padding: 0.55rem 0.5rem;
    }
}

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

@media (max-width: 900px) {
    .bb-steps--5 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .bb-steps--5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.bb-field textarea {
    width: 100%;
    min-height: 7.5rem;
    resize: vertical;
    border: 1px solid var(--bb-line);
    background: #f8fafc;
    border-radius: 0.8rem;
    padding: 0.75rem 0.85rem;
    font-size: 0.9rem;
    color: var(--bb-ink);
    line-height: 1.5;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.bb-field textarea:focus {
    border-color: #86b84a;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(94, 165, 0, 0.18);
}

.bb-upload--inline {
    display: block;
}

.bb-products-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
}

.bb-products-head label {
    margin: 0;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--bb-ink);
}

.bb-products-head label abbr {
    color: #e11d48;
    text-decoration: none;
}

.bb-add-btn {
    border: 1px solid #dbe4ef;
    background: #f8fafc;
    color: var(--bb-navy);
    border-radius: 0.65rem;
    padding: 0.4rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.bb-add-btn:hover {
    background: #eef7e6;
    border-color: #b7d48a;
}

.bb-products {
    display: grid;
    gap: 0.55rem;
}

.bb-product-row {
    display: flex;
    gap: 0.5rem;
}

.bb-card__head--split {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.85rem;
}

.bb-card__head-main {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    min-width: 0;
}

.bb-card--services,
.bb-card--services .bb-products,
.bb-card--services .bb-product-row,
.bb-card--services .geo-ac-wrap,
.bb-page .bb-cat-ac,
.bb-page .bb-cat-ac .geo-ac-wrap {
    overflow: visible !important;
}

.bb-card--services .bb-product-row .geo-ac-input,
.bb-page .bb-cat-ac .geo-ac-input {
    border: 1px solid var(--bb-line);
    background: #f8fafc;
    border-radius: 0.8rem;
    padding: 0.7rem 0.85rem;
    font-size: 0.9rem;
    color: var(--bb-ink);
    outline: none;
    box-shadow: none;
}

.bb-card--services .bb-product-row .geo-ac-input:focus,
.bb-page .bb-cat-ac .geo-ac-input:focus {
    border-color: #86b84a;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(94, 165, 0, 0.18);
}

.geo-ac-option--muted {
    color: #94a3b8;
    cursor: default;
    pointer-events: none;
}

.bb-product-row .geo-ac-wrap {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.bb-product-row .geo-ac-wrap:focus-within {
    z-index: 40;
}

.bb-product-row .geo-ac-input {
    width: 100%;
}

.bb-remove-btn {
    flex-shrink: 0;
    width: 2.5rem;
    border: 1px solid #fecdd3;
    background: #fff;
    color: #be123c;
    border-radius: 0.8rem;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
}

.bb-remove-btn:hover {
    background: #fff1f2;
}

.bb-hint {
    margin: 0.65rem 0 0;
    font-size: 0.78rem;
    color: var(--bb-muted);
}

.bb-sub-multi {
    border: 1px solid var(--bb-line);
    background: #f8fafc;
    border-radius: 0.8rem;
    padding: 0.55rem;
}
.bb-sub-multi.is-disabled {
    opacity: 0.62;
    pointer-events: none;
}
.bb-sub-multi__picks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    min-height: 2.1rem;
}
.bb-sub-multi__empty {
    margin: 0;
    padding: 0.35rem 0.2rem;
    font-size: 0.8rem;
    color: var(--bb-muted);
}
.bb-sub-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
    max-width: 100%;
    border: 1px solid #dbe4ef;
    background: #fff;
    color: var(--bb-navy);
    border-radius: 0.65rem;
    padding: 0.38rem 0.7rem;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.25;
    cursor: pointer;
    user-select: none;
}
.bb-sub-chip input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin: 0;
    pointer-events: none;
}
.bb-sub-chip:hover {
    border-color: #b7d48a;
    background: #f7fbee;
}
.bb-sub-chip.is-on {
    border-color: rgba(101, 163, 13, 0.45);
    background: rgba(101, 163, 13, 0.12);
    color: #3f6212;
}
.bb-sub-multi .geo-ac-wrap {
    margin-top: 0.5rem;
}

.bb-gallery-previews {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 0.75rem;
}

.bb-gallery-previews figure,
.bb-gallery-item {
    position: relative;
    margin: 0;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid var(--bb-line);
    background: #f8fafc;
    aspect-ratio: 4 / 3;
}

.bb-gallery-previews img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bb-gallery-item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.35rem 0.45rem;
    font-size: 0.68rem;
    line-height: 1.2;
    color: #fff;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.72));
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bb-gallery-remove {
    position: absolute;
    top: 0.35rem;
    right: 0.35rem;
    z-index: 2;
    width: 1.65rem;
    height: 1.65rem;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.78);
    color: #fff;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bb-gallery-remove:hover,
.bb-gallery-remove:focus {
    background: #dc2626;
    outline: none;
}

.bb-upload.is-full {
    display: none;
}

/* Agent / franchise profile edit */
.bb-page--profile .bb-hero {
    padding: 0.95rem 1.1rem 1rem;
    margin-bottom: 0.85rem;
    border-radius: 1rem;
    background:
        linear-gradient(135deg, rgba(94, 165, 0, 0.2), transparent 44%),
        linear-gradient(155deg, #071e42 0%, #0a356f 55%, #0b2a52 100%);
}

.bb-page--profile .bb-hero__eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
}

.bb-page--profile .bb-hero__title {
    margin-top: 0.15rem;
    font-size: clamp(1.05rem, 1.8vw, 1.28rem);
    line-height: 1.2;
}

.bb-page--profile .bb-hero__lead {
    margin-top: 0.3rem;
    font-size: 0.8rem;
    line-height: 1.4;
    max-width: 36rem;
}

.bb-page--profile .bb-hero__pills {
    margin-top: 0.55rem;
    gap: 0.4rem;
}

.bb-page--profile .bb-hero__pills li {
    padding: 0.28rem 0.55rem;
    font-size: 0.72rem;
}

.bb-page--profile .bb-hero__actions {
    margin-top: 0.65rem;
    gap: 0.45rem;
}

.bb-page--profile .bb-hero__cta {
    padding: 0.45rem 0.75rem;
    font-size: 0.76rem;
}

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

@media (max-width: 560px) {
    .bb-steps--3 {
        grid-template-columns: 1fr;
    }
}

.bb-flash--success {
    border-color: #bbf7d0;
    background: #f0fdf4;
    color: #166534;
}

.bb-flash--warning {
    border-color: #fde68a;
    background: #fffbeb;
    color: #92400e;
}

.bb-field__hint {
    margin: 0.4rem 0 0;
    font-size: 0.75rem;
    color: var(--bb-muted);
    line-height: 1.4;
}

.bb-field__hint--block {
    margin-top: 0.85rem;
}

.bb-check {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.55rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--bb-muted, #64748b);
    cursor: pointer;
}

.bb-check input {
    width: auto;
    margin: 0;
}

/* WhatsApp same-as-mobile toggle (shared with franchise forms) */
.wa-toggle {
    position: relative;
    display: block;
    margin-top: 0.7rem;
    cursor: pointer;
    user-select: none;
}

.rp-wa-toggle-cell .wa-toggle {
    margin-top: 0;
}

.rp-wa-toggle-cell .wa-toggle__ui {
    min-height: 2.75rem;
    padding: 0.55rem 0.75rem;
}

.rp-wa-toggle-cell .wa-toggle__hint {
    display: none;
}

/* Keep toggle aligned with sibling inputs when label row is removed */
.rp-wa-toggle-cell {
    display: flex;
    align-items: flex-end;
}

.wa-toggle__input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.wa-toggle__ui {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.85rem;
    border: 1px solid #d8e5df;
    border-radius: 0.9rem;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
    box-shadow: 0 1px 2px rgba(15, 45, 40, 0.04);
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.wa-toggle__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    flex: 0 0 auto;
    border-radius: 0.7rem;
    background: rgba(37, 211, 102, 0.12);
    color: #128c7e;
}

.wa-toggle__icon svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: currentColor;
}

.wa-toggle__text {
    display: grid;
    gap: 0.12rem;
    min-width: 0;
    flex: 1 1 auto;
}

.wa-toggle__title {
    color: #0f2d28;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.25;
}

.wa-toggle__hint {
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 500;
    line-height: 1.35;
}

.wa-toggle__switch {
    position: relative;
    width: 2.55rem;
    height: 1.45rem;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #cbd5e1;
    transition: background 0.18s ease;
}

.wa-toggle__switch::after {
    content: "";
    position: absolute;
    top: 0.15rem;
    left: 0.15rem;
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.2);
    transition: transform 0.18s ease;
}

.wa-toggle__input:focus-visible + .wa-toggle__ui {
    outline: 2px solid rgba(18, 140, 126, 0.45);
    outline-offset: 2px;
}

.wa-toggle__input:checked + .wa-toggle__ui {
    border-color: rgba(18, 140, 126, 0.45);
    background: linear-gradient(180deg, #f0fdf4 0%, #e8faf0 100%);
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.12);
}

.wa-toggle__input:checked + .wa-toggle__ui .wa-toggle__icon {
    background: #25d366;
    color: #fff;
}

.wa-toggle__input:checked + .wa-toggle__ui .wa-toggle__switch {
    background: #25d366;
}

.wa-toggle__input:checked + .wa-toggle__ui .wa-toggle__switch::after {
    transform: translateX(1.1rem);
}

.wa-toggle__input:checked + .wa-toggle__ui .wa-toggle__title {
    color: #065f46;
}

.is-hidden,
#whatsappFieldWrap[hidden],
#whatsappFieldWrap.is-hidden,
#whatsappFieldWrap.hidden,
.rp-wa-contact-row:has(#mobileIsWa:checked) #whatsappFieldWrap,
.rp-wa-contact-row:has(#mobileIsWa:checked) [data-wa-field-wrap] {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.rp-wa-contact-row:has(#mobileIsWa:checked) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1023px) {
    .rp-wa-contact-row:has(#mobileIsWa:checked) {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Partner geo — autocomplete (matches post-property) */
.partner-geo,
.partner-geo .grid,
.partner-geo [class*="partner-geo__"],
.partner-geo .geo-ac-wrap {
    overflow: visible !important;
}

.partner-geo .geo-ac-wrap {
    position: relative;
    z-index: 1;
}

.partner-geo .geo-ac-wrap:focus-within {
    z-index: 80;
}

.partner-geo .geo-ac-input {
    padding-right: 2.5rem;
    width: 100%;
}

.partner-geo .geo-ac-status {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.partner-geo .geo-ac-status--error::after {
    content: "!";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #dc2626;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.partner-geo .geo-ac-wrap--invalid .geo-ac-input {
    border-color: #dc2626;
    box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.15);
}

.partner-geo .geo-ac-wrap--disabled .geo-ac-input {
    background: #f1f5f9;
    color: #94a3b8;
    cursor: not-allowed;
}

.partner-geo .geo-ac-list,
.geo-ac-list.geo-ac-list--portal {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    z-index: 9999;
    display: block;
    margin: 0;
    padding: 0 !important;
    list-style: none !important;
    max-height: 260px;
    overflow-x: hidden;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #d4deea;
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.geo-ac-list.geo-ac-list--portal {
    position: fixed;
    right: auto;
    z-index: 2147483000;
}

.partner-geo .geo-ac-list[hidden],
.geo-ac-list.geo-ac-list--portal[hidden] {
    display: none !important;
}

.geo-ac-list.geo-ac-list--portal .geo-ac-option {
    padding: 10px 14px;
    font-size: 0.9rem;
    line-height: 1.35;
    color: #24384f;
    cursor: pointer;
    border-bottom: 1px solid #eef2f7;
    background: #fff;
}

.geo-ac-list.geo-ac-list--portal .geo-ac-option:hover,
.geo-ac-list.geo-ac-list--portal .geo-ac-option:focus {
    background: #f0f7ff;
}

.geo-ac-list.geo-ac-list--portal .geo-ac-add-footer {
    border-top: 1px solid #e8edf4;
    padding: 0;
    cursor: default;
}

.geo-ac-list.geo-ac-list--portal .geo-ac-add-footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 12px 14px;
    font-size: 13px;
    color: #475569;
    background: #fafbfc;
}

.geo-ac-list.geo-ac-list--portal .geo-ac-add-link {
    appearance: none;
    border: 0;
    background: none;
    padding: 0;
    color: #1f7ed7;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.partner-geo .geo-ac-option {
    padding: 10px 14px;
    font-size: 0.9rem;
    line-height: 1.35;
    color: #24384f;
    cursor: pointer;
    border-bottom: 1px solid #eef2f7;
}

.partner-geo .geo-ac-option:hover,
.partner-geo .geo-ac-option:focus {
    background: #f0f7ff;
}

.partner-geo .geo-ac-add-footer {
    border-top: 1px solid #e8edf4;
    padding: 0;
    cursor: default;
}

.partner-geo .geo-ac-add-footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 12px 14px;
    font-size: 13px;
    color: #475569;
    background: #fafbfc;
}

.partner-geo .geo-ac-bulb {
    font-size: 15px;
    line-height: 1;
}

.partner-geo .geo-ac-add-link {
    appearance: none;
    border: 0;
    background: none;
    padding: 0;
    color: #1f7ed7;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.partner-geo .geo-ac-add-link:hover {
    text-decoration: underline;
}

.partner-geo .geo-ac-wrap--add-new .geo-ac-input {
    border-color: #1f7ed7;
    box-shadow: 0 0 0 1px rgba(31, 126, 215, 0.12);
}

.bb-field input[readonly] {
    background: #f1f5f9;
    color: #64748b;
    cursor: default;
}

.bb-page--profile .bb-field textarea {
    min-height: 5rem;
}

.bb-hero__pill--ok {
    border-color: rgba(183, 224, 106, 0.45) !important;
    background: rgba(94, 165, 0, 0.22) !important;
}

.bb-hero__pill--warn {
    border-color: rgba(251, 191, 36, 0.45) !important;
    background: rgba(251, 191, 36, 0.16) !important;
}

.bb-docs {
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .bb-docs {
        grid-template-columns: 1fr 1fr;
    }

    .bb-doc--full {
        grid-column: 1 / -1;
    }
}

.bb-doc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border: 1.5px dashed #cbd5e1;
    border-radius: 1rem;
    background: #f8fafc;
    padding: 0.9rem 1rem;
}

.bb-doc.is-ready {
    border-color: rgba(94, 165, 0, 0.45);
    background: #f7fbf0;
}

.bb-doc.is-missing {
    border-color: #fcd34d;
    background: #fffbeb;
}

.bb-doc__meta {
    display: grid;
    gap: 0.15rem;
    min-width: 0;
}

.bb-doc__meta strong {
    font-size: 0.88rem;
    color: var(--bb-navy);
}

.bb-doc__meta span {
    font-size: 0.75rem;
    color: var(--bb-muted);
}

.bb-doc__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.45rem;
    flex-shrink: 0;
}

.bb-doc__number {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--bb-navy);
    font-variant-numeric: tabular-nums;
}

.bb-doc__badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.bb-doc.is-ready .bb-doc__badge {
    background: #dcfce7;
    color: #166534;
}

.bb-doc.is-missing .bb-doc__badge {
    background: #fef3c7;
    color: #92400e;
}

.bb-doc__view {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border-radius: 0.65rem;
    background: var(--bb-navy);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 650;
    padding: 0.35rem 0.65rem;
    text-decoration: none;
    transition: filter 0.15s ease;
}

.bb-doc__view:hover {
    color: #fff;
    filter: brightness(1.08);
}

.bb-aside__code {
    margin: 0;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--bb-green-dark);
}

.bb-aside__note {
    margin: 0.45rem 0 0;
    font-size: 0.78rem;
    color: var(--bb-muted);
    line-height: 1.45;
}

.partner-body--user-embed.bb-page--profile .user-agent-main {
    max-width: none;
}

.partner-body--user-embed.bb-page--earnings .user-agent-main {
    max-width: none;
}

.partner-body--user-embed.bb-page--wallet .user-agent-main {
    max-width: none;
}

/* Referral Partner support tickets (franchise-style chat embed) */
.st-page--embed .st-main.user-agent-main {
    width: min(1120px, calc(100% - 2rem));
    max-width: none;
    margin: 0 auto;
    padding: 1.25rem 0 6rem;
}

.st-page--embed .st-hero__title,
.st-page--embed .st-panel__title {
    font-family: Sora, Manrope, ui-sans-serif, system-ui, sans-serif;
}

@media (max-width: 640px) {
    .st-page--embed .st-main.user-agent-main {
        width: calc(100% - 1rem);
        padding-bottom: 5rem;
    }
}

/* Agent earnings */
.bb-page--earnings .bb-hero {
    background:
        linear-gradient(135deg, rgba(94, 165, 0, 0.22), transparent 42%),
        linear-gradient(150deg, #071e42 0%, #0a3d6e 48%, #0c4a3a 100%);
}

.bb-page--earnings .bb-hero__glow {
    background: radial-gradient(circle, rgba(94, 165, 0, 0.38), transparent 68%);
}

.bb-stats {
    display: grid;
    gap: 0.75rem;
    margin: 0 0 1.25rem;
    animation: bbFadeUp 0.45s ease both;
}

@media (min-width: 720px) {
    .bb-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.bb-stat {
    border: 1px solid var(--bb-line);
    background: #fff;
    border-radius: var(--bb-radius);
    padding: 1rem 1.05rem;
    box-shadow: 0 10px 28px -22px rgba(7, 30, 66, 0.35);
}

.bb-stat__label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bb-muted);
}

.bb-stat__value {
    display: block;
    margin-top: 0.35rem;
    font-family: Sora, Manrope, sans-serif;
    font-size: clamp(1.25rem, 2.4vw, 1.55rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--bb-navy);
    line-height: 1.15;
}

.bb-stat__hint {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.78rem;
    color: var(--bb-muted);
}

.bb-card__head--row {
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.bb-card__head-main {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    min-width: 0;
}

.bb-toolbar-slot {
    min-width: min(100%, 16rem);
}

.bb-toolbar-slot .partner-table__toolbar {
    margin: 0;
    justify-content: flex-end;
}

.bb-toolbar-slot .partner-table__input {
    border-radius: 0.75rem;
    border-color: var(--bb-line);
    background: #f8fafc;
}

.bb-empty {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 0.35rem;
    padding: 2.25rem 1rem;
    border: 1.5px dashed #cbd5e1;
    border-radius: 1rem;
    background: #f8fafc;
}

.bb-empty__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: 0.35rem;
    border-radius: 0.85rem;
    background: rgba(94, 165, 0, 0.12);
    color: var(--bb-green-dark);
}

.bb-empty__icon .bb-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.bb-empty__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--bb-navy);
}

.bb-empty__text {
    margin: 0;
    max-width: 26rem;
    font-size: 0.88rem;
    color: var(--bb-muted);
    line-height: 1.5;
}

.bb-empty__link {
    margin-top: 0.65rem;
    display: inline-flex;
    align-items: center;
    border-radius: 0.75rem;
    background: linear-gradient(180deg, #6bb50d, var(--bb-green));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.65rem 1rem;
    text-decoration: none;
}

.bb-empty__link:hover {
    color: #fff;
    filter: brightness(1.05);
}

.bb-table-scroll {
    overflow-x: auto;
    margin: 0 -0.15rem;
}

.bb-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.88rem;
}

.bb-table thead th {
    text-align: left;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--bb-muted);
    padding: 0.55rem 0.75rem;
    border-bottom: 1px solid var(--bb-line);
    white-space: nowrap;
    background: #f8fafc;
}

.bb-table tbody td {
    padding: 0.85rem 0.75rem;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: top;
    color: var(--bb-ink);
}

.bb-table tbody tr:hover td {
    background: #f8fafc;
}

.bb-table__date {
    white-space: nowrap;
}

.bb-table__date strong {
    display: block;
    font-weight: 650;
    color: var(--bb-navy);
}

.bb-table__date span {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.75rem;
    color: var(--bb-muted);
}

.bb-table__note {
    margin-top: 0.4rem;
    max-width: 22rem;
    font-size: 0.75rem;
    color: var(--bb-muted);
    line-height: 1.4;
}

.bb-table__muted {
    white-space: nowrap;
    color: var(--bb-muted);
}

.bb-table__credit {
    white-space: nowrap;
    font-weight: 700;
    color: #3f6212;
}

.bb-table__balance {
    white-space: nowrap;
    font-weight: 700;
    color: var(--bb-navy);
}

.bb-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.25rem 0.65rem;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.2;
}

.bb-chip--credit {
    background: #ecfdf5;
    color: #047857;
    box-shadow: inset 0 0 0 1px #a7f3d0;
}

.bb-page--earnings .bb-card--table {
    padding-bottom: 0.85rem;
}

.bb-page--earnings .partner-table__footer {
    padding: 0.75rem 0.15rem 0.25rem;
}

/* Agent wallet */
.bb-page--wallet .bb-hero {
    background:
        linear-gradient(135deg, rgba(94, 165, 0, 0.2), transparent 40%),
        linear-gradient(155deg, #071e42 0%, #0b3a6a 50%, #0a2f4d 100%);
}

.bb-page--wallet .bb-hero__title {
    font-variant-numeric: tabular-nums;
}

.bb-notice {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    border: 1px solid var(--bb-line);
    border-radius: 0.95rem;
    background: #f8fafc;
    padding: 0.9rem 1rem;
    margin-bottom: 1rem;
}

.bb-notice__action {
    margin-left: auto;
    align-self: center;
    flex-shrink: 0;
    border-radius: 0.7rem;
    background: var(--bb-navy, #071e42);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.55rem 0.85rem;
    text-decoration: none;
    white-space: nowrap;
}

.bb-notice__action:hover {
    filter: brightness(1.08);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 640px) {
    .bb-notice {
        flex-wrap: wrap;
    }

    .bb-notice__action {
        margin-left: 0;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

.bb-notice__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    border-radius: 0.65rem;
    background: #e2e8f0;
    color: var(--bb-navy);
}

.bb-notice__icon .bb-icon {
    width: 1rem;
    height: 1rem;
}

.bb-notice strong {
    display: block;
    font-size: 0.88rem;
    color: var(--bb-navy);
}

.bb-notice span {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.82rem;
    color: var(--bb-muted);
    line-height: 1.45;
}

.bb-notice a {
    color: var(--bb-green-dark);
    font-weight: 650;
    text-decoration: none;
}

.bb-notice a:hover {
    text-decoration: underline;
}

.bb-notice--warning {
    border-color: #fde68a;
    background: #fffbeb;
}

.bb-notice--warning .bb-notice__icon {
    background: #fef3c7;
    color: #92400e;
}

.bb-notice--info {
    border-color: #bae6fd;
    background: #f0f9ff;
}

.bb-notice--info .bb-notice__icon {
    background: #e0f2fe;
    color: #075985;
}

.bb-notice--ok {
    border-color: #bbf7d0;
    background: #f0fdf4;
}

.bb-notice--ok .bb-notice__icon {
    background: #dcfce7;
    color: #166534;
}

.bb-withdraw {
    display: grid;
    gap: 1rem;
}

.bb-amount {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--bb-line);
    border-radius: 0.8rem;
    background: #f8fafc;
    overflow: hidden;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.bb-amount:focus-within {
    border-color: #86b84a;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(94, 165, 0, 0.18);
}

.bb-amount__prefix {
    display: inline-flex;
    align-items: center;
    padding: 0 0.85rem;
    font-family: Sora, Manrope, sans-serif;
    font-weight: 700;
    color: var(--bb-muted);
    background: #f1f5f9;
    border-right: 1px solid var(--bb-line);
}

.bb-amount input {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 0.75rem 0.85rem;
    font-size: 1.05rem;
    font-weight: 650;
    color: var(--bb-ink);
    outline: none;
}

.bb-amount input:disabled {
    color: #94a3b8;
    cursor: not-allowed;
}

.bb-withdraw__btn {
    width: 100%;
}

.bb-withdraw__btn:disabled,
.bb-submit__btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    filter: none;
    transform: none;
}

.bb-chip--paid {
    background: #ecfdf5;
    color: #047857;
    box-shadow: inset 0 0 0 1px #a7f3d0;
    text-transform: capitalize;
}

.bb-chip--approved {
    background: #eff6ff;
    color: #1d4ed8;
    box-shadow: inset 0 0 0 1px #bfdbfe;
    text-transform: capitalize;
}

.bb-chip--rejected {
    background: #fff1f2;
    color: #be123c;
    box-shadow: inset 0 0 0 1px #fecdd3;
    text-transform: capitalize;
}

.bb-chip--pending {
    background: #fffbeb;
    color: #b45309;
    box-shadow: inset 0 0 0 1px #fde68a;
    text-transform: capitalize;
}

.bb-page--wallet .bb-card--table {
    padding-bottom: 0.85rem;
}

.bb-page--wallet .partner-table__footer {
    padding: 0.75rem 0.15rem 0.25rem;
}

/* Shared file upload dropzone (.re-file)  hides native Choose file */
.re-file {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem 0.9rem;
  align-items: center;
  margin: 0;
  padding: 0.95rem 1rem;
  border: 1.5px dashed #cbd5e1;
  border-radius: 0.95rem;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  overflow: hidden;
}

.re-file:hover,
.re-file.is-dragover {
  border-color: #93c5fd;
  background: #fff;
  box-shadow: 0 12px 28px -22px rgba(15, 23, 42, 0.45);
}

.re-file.has-file {
  border-style: solid;
  border-color: #86efac;
  background: #f0fdf4;
}

.re-file__icon {
  display: inline-grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 0.8rem;
  background: #fff;
  color: #0b3d91;
  box-shadow: inset 0 0 0 1px #e2e8f0;
  flex-shrink: 0;
}

.re-file.has-file .re-file__icon {
  color: #15803d;
  box-shadow: inset 0 0 0 1px #bbf7d0;
}

.re-file__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.re-file__body {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.re-file__title {
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
}

.re-file__title em,
.re-file__title .text-danger,
.re-file__title .text-red-500 {
  font-style: normal;
  color: #dc2626;
}

.re-file__action {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 0.15rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: #0b3d91;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.re-file:hover .re-file__action {
  background: #0a347c;
}

.re-file.has-file .re-file__action {
  background: #15803d;
}

.re-file__meta {
  color: #64748b;
  font-size: 0.74rem;
  line-height: 1.35;
  word-break: break-all;
}

.re-file.has-file .re-file__meta {
  color: #166534;
  font-weight: 600;
}

.re-file__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  font-size: 0;
}

.re-file:focus-within {
  outline: 2px solid rgba(11, 61, 145, 0.35);
  outline-offset: 2px;
}

/* Keep legacy .rp-upload visually aligned */
.rp-upload {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem 0.9rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border: 1.5px dashed #cbd5e1;
  border-radius: 0.95rem;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  overflow: hidden;
}

.rp-upload:hover,
.rp-upload.has-file {
  border-color: #93c5fd;
  background: #fff;
  box-shadow: 0 12px 28px -22px rgba(15, 23, 42, 0.45);
}

.rp-upload.has-file {
  border-style: solid;
  border-color: #86efac;
  background: #f0fdf4;
}

.rp-upload input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  font-size: 0;
  margin: 0;
}

/* Contact verified badges */
.re-verify-badges {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}
.re-verify-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
}
.re-verify-badge.is-verified {
  background: #ecfdf5;
  color: #047857;
  box-shadow: inset 0 0 0 1px #a7f3d0;
}
.re-verify-badge.is-pending {
  background: #fff7ed;
  color: #c2410c;
  box-shadow: inset 0 0 0 1px #fed7aa;
}
.re-verify-badge__tick {
  display: inline-grid;
  place-items: center;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  font-size: 0.65rem;
  background: currentColor;
  color: #fff;
}
.re-verify-badge.is-verified .re-verify-badge__tick {
  background: #059669;
}
.re-verify-badge.is-pending .re-verify-badge__tick {
  background: #ea580c;
}

.re-verify-badges--on-dark .re-verify-badge.is-verified {
  background: rgba(16, 185, 129, 0.18);
  color: #a7f3d0;
  box-shadow: inset 0 0 0 1px rgba(167, 243, 208, 0.35);
}
.re-verify-badges--on-dark .re-verify-badge.is-pending {
  background: rgba(251, 146, 60, 0.18);
  color: #fed7aa;
  box-shadow: inset 0 0 0 1px rgba(254, 215, 170, 0.35);
}

/* Partner geo  add pincode (mirrors locality add footer) */
.partner-geo__pincode-wrap {
  position: relative;
}
.partner-geo__pincode-add {
  margin: 0.45rem 0 0;
  list-style: none;
}
.partner-geo__pincode-wrap--add .partner-geo__pincode-add {
  display: none;
}
.partner-geo__pincode-wrap--add input[data-partner-geo-pincode] {
  box-shadow: inset 0 0 0 1px #86efac;
  background: #f7fbf2;
}

.bb-geo,
.bb-geo .partner-geo,
.bb-geo .partner-geo .grid {
    overflow: visible !important;
    min-width: 0;
}

.bb-geo .partner-geo .grid {
    display: grid;
    gap: 0.9rem;
}

@media (min-width: 640px) {
    .bb-geo .partner-geo .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.bb-geo .partner-geo .bb-field label,
.bb-geo .partner-geo .geo-ac-label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--bb-ink);
}

.bb-geo .partner-geo .bb-field label abbr,
.bb-geo .partner-geo .geo-ac-label abbr {
    color: #dc2626;
    text-decoration: none;
}

.bb-geo .partner-geo .geo-ac-input {
    width: 100%;
    border: 1px solid var(--bb-line);
    background: #f8fafc;
    border-radius: 0.8rem;
    padding: 0.7rem 2.5rem 0.7rem 0.85rem;
    font-size: 0.9rem;
    color: var(--bb-ink);
    outline: none;
}

.bb-geo .partner-geo .geo-ac-input:focus {
    border-color: #86b84a;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(94, 165, 0, 0.18);
}

.bb-field--pincode-add #businessPincode {
  box-shadow: inset 0 0 0 1px #86efac;
  background: #f7fbf2;
}
.bb-field .geo-ac-add-link {
  border: 0;
  background: none;
  padding: 0;
  color: #0b5cab;
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}
