/* =========================================================
   Base / Bootstrap Defaults
   ========================================================= */



@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}



.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}


/* =========================================================
   Shared Utilities
   ========================================================= */

.bg-purple {
    background-color: #6f42c1 !important;
}

.clickable-row {
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
}

    .clickable-row:hover {
        background-color: #f8f9fa;
    }

.toast {
    border-radius: 1rem;
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15);
}

.notes-truncate {
    max-width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cleaning-staff-select {
    min-width: 180px;
}


/* =========================================================
   Legend / Small UI Helpers
   ========================================================= */

.legend-box {
    width: 18px;
    height: 18px;
    border-radius: 4px;
}

.legend-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    line-height: 24px;
    font-size: 14px;
}

.reload-icon {
    display: inline-block;
}

.click-hint {
    font-size: 0.75rem;
    color: #9aa0a6;
    margin-top: 0.35rem;
}

.dot,
.legend-dot {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
}

.legend-dot {
    flex: 0 0 10px;
}

.legend-dot-checkin {
    background-color: #198754;
}

.legend-dot-checkout {
    background-color: #dc3545;
}

.legend-dot-occupied {
    background-color: #0d6efd;
}

.legend-dot-cleaning {
    background-color: #ffc107;
    border: 1px solid #d39e00;
}

.legend-dot-available {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
}


/* =========================================================
   Simple Animations
   ========================================================= */

.spin-animation {
    animation: spin 0.5s linear;
}

.flash-success {
    animation: flashSuccess 0.8s ease;
}

.badge-pop {
    animation: badgePop 0.28s ease;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes flashSuccess {
    0% {
        background-color: #d1e7dd;
        border-color: #198754;
        box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.15);
    }

    100% {
        background-color: #fff;
        border-color: #ced4da;
        box-shadow: none;
    }
}

@keyframes badgePop {
    0% {
        transform: scale(0.88);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.06);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}


/* =========================================================
   Calendar / Cleaning Buttons
   ========================================================= */

.cleaning-btn {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

    .cleaning-btn:hover {
        transform: scale(1.12);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
        animation: broom-bounce 0.45s ease;
    }

    .cleaning-btn:active {
        transform: scale(0.92);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
    }

    .cleaning-btn.completed {
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25), 0 0 10px rgba(40, 167, 69, 0.45);
    }

        .cleaning-btn.completed:hover {
            filter: brightness(1.05);
        }

    .cleaning-btn.pending:hover {
        background: #f8f9fa !important;
    }

td.position-relative {
    transition: box-shadow 0.15s ease;
}

    td.position-relative:hover {
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
    }

@keyframes broom-bounce {
    0% {
        transform: scale(1) translateY(0);
    }

    30% {
        transform: scale(1.15) translateY(-3px);
    }

    55% {
        transform: scale(1.08) translateY(0);
    }

    75% {
        transform: scale(1.12) translateY(-1px);
    }

    100% {
        transform: scale(1.12) translateY(0);
    }
}


/* =========================================================
   Dashboard / Cards
   ========================================================= */

.dashboard-stat-link:hover {
    opacity: 0.8;
}

.dashboard-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.dashboard-card {
    border: 1px solid #e9ecef;
    border-radius: 0.75rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    background-color: #fff;
}

    .dashboard-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.10);
    }

    .dashboard-card h5 {
        color: #6c757d;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

        .dashboard-card h5 i {
            font-size: 1.1rem;
        }

    .dashboard-card h3 {
        margin-bottom: 0;
        font-weight: 700;
    }

    /* Dashboard hover accents */
    .dashboard-card.dashboard-properties:hover {
        background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    }

    .dashboard-card.dashboard-occupied:hover {
        background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
    }

    .dashboard-card.dashboard-checkin:hover {
        background: linear-gradient(180deg, #ffffff 0%, #f1fff5 100%);
    }

    .dashboard-card.dashboard-checkout:hover {
        background: linear-gradient(180deg, #ffffff 0%, #fff8f1 100%);
    }

    .dashboard-card.dashboard-turnover:hover {
        background: linear-gradient(180deg, #ffffff 0%, #f3f0ff 100%);
    }

    .dashboard-card.dashboard-unpaid-count:hover {
        background: linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
    }

    .dashboard-card.dashboard-unpaid-total:hover {
        background: linear-gradient(180deg, #ffffff 0%, #fff5f5 100%);
    }

.kpi-card,
.property-summary-card {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .kpi-card:hover,
    .property-summary-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.12) !important;
    }

.property-summary-card {
    cursor: pointer;
}

.best-property-card {
    border: 2px solid #f3d48b !important;
    box-shadow: 0 0.5rem 1rem rgba(243, 212, 139, 0.16) !important;
}

.property-badge-slot {
    min-height: 24px;
}

.property-card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.property-card-action {
    margin-top: auto;
    padding-top: 0.75rem;
}

.property-metric {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.35rem;
}

.metric-label {
    font-size: 0.85rem;
    color: #6c757d;
}

.metric-value {
    font-size: 0.95rem;
    font-weight: 500;
    min-width: 90px;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.property-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #212529;
    letter-spacing: 0.2px;
}


/* =========================================================
   Cleaning Staff / Property Assignment Cards
   ========================================================= */

.property-check-label {
    cursor: pointer;
    transition: all 0.15s ease-in-out;
}

    .property-check-label:hover {
        border-color: var(--bs-primary) !important;
        box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08);
        transform: translateY(-1px);
    }

    .property-check-label .form-check-input {
        margin-top: 0.2rem;
    }

    .property-check-label:has(input:checked) {
        border-color: var(--bs-primary) !important;
        background: #eef4ff !important;
        box-shadow: 0 0.35rem 0.9rem rgba(13, 110, 253, 0.10);
    }

.dashboard-stat-card {
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

    .dashboard-stat-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 0.6rem 1.4rem rgba(0, 0, 0, 0.12) !important;
    }

@media (max-width: 576px) {
    .property-check-label {
        padding: 0.85rem !important;
    }
}


/* =========================================================
   Invoice Summary Cards
   ========================================================= */

.invoice-card-active {
    transform: translateY(-4px);
    box-shadow: 0 1rem 1.75rem rgba(0, 0, 0, 0.18);
}

.invoice-draft {
    border: 2px solid #0d6efd;
    background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
}

.invoice-sent {
    border: 2px solid #ffc107;
    background: linear-gradient(180deg, #ffffff 0%, #fff9e6 100%);
}

.invoice-paid {
    border: 2px solid #198754;
    background: linear-gradient(180deg, #ffffff 0%, #edf9f1 100%);
}

.invoice-overdue {
    border: 2px solid #dc3545;
    background: linear-gradient(180deg, #ffffff 0%, #fff0f1 100%);
}

.invoice-unpaid {
    border: 2px solid #dc3545;
    background: linear-gradient(180deg, #ffffff 0%, #fff3f3 100%);
}


/* =========================================================
   Turnovers / AJAX Cleaning Updates
   ========================================================= */

.turnover-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cleaning-badge {
    transition: all 0.25s ease-in-out;
}

.toggle-cleaning-btn {
    transition: all 0.2s ease-in-out;
}

.turnover-row {
    transition: background-color 0.5s ease-in-out, opacity 0.2s ease, transform 0.2s ease;
}

    .turnover-row.row-moving {
        opacity: 0.65;
        transform: scale(0.98);
    }

    .turnover-row.row-flash-success {
        animation: rowFlashSuccess 1.2s ease;
    }

    .turnover-row.row-flash-secondary {
        animation: rowFlashSecondary 1.2s ease;
    }

@keyframes rowFlashSuccess {
    0% {
        background-color: rgba(25, 135, 84, 0.28);
    }

    100% {
        background-color: transparent;
    }
}

@keyframes rowFlashSecondary {
    0% {
        background-color: rgba(108, 117, 125, 0.22);
    }

    100% {
        background-color: transparent;
    }
}


/* =========================================================
   Navbar Polish
   ========================================================= */

.navbar-brand {
    letter-spacing: 0.2px;
}

.navbar .nav-link,
.navbar .btn.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .navbar .nav-link i {
        opacity: 0.9;
    }

    .navbar .nav-link:not(.dropdown-toggle)::after,
    .navbar .btn.nav-link::after {
        content: "";
        position: absolute;
        left: 12%;
        bottom: 0.35rem;
        width: 76%;
        height: 2px;
        background-color: #0d6efd;
        border-radius: 2px;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.22s ease;
    }

.navbar .dropdown-toggle {
    position: relative;
}

    .navbar .dropdown-toggle::before {
        content: "";
        position: absolute;
        left: 12%;
        bottom: 0.35rem;
        width: 76%;
        height: 2px;
        background-color: #0d6efd;
        border-radius: 2px;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.22s ease;
    }

    .navbar .nav-link:hover,
    .navbar .dropdown-toggle:hover {
        color: #0d6efd !important;
    }

        .navbar .nav-link:hover::after {
            transform: scaleX(1);
        }

        .navbar .dropdown-toggle:hover::before {
            transform: scaleX(1);
        }

.navbar .nav-link.active {
    color: #0d6efd !important;
    font-weight: 600;
}

.navbar .dropdown-toggle.active {
    color: #0d6efd !important;
    font-weight: 600;
}

.navbar .nav-link.active::after {
    transform: scaleX(1);
}

.navbar .dropdown-toggle.active::before {
    transform: scaleX(1);
}

.navbar form .btn.nav-link {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    line-height: 1.5;
}

@media (max-width: 575.98px) {
    .navbar .nav-link {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }

    .navbar-collapse {
        padding-top: 0.75rem;
        padding-bottom: 0.5rem;
    }

    .navbar-nav .nav-item {
        margin-bottom: 0.15rem;
    }
}


/* =========================================================
   Footer Polish
   ========================================================= */

/*.footer {
    font-size: 0.95rem;
}

    .footer a {
        transition: color 0.2s ease;
    }

        .footer a:hover {
            color: #0d6efd !important;
        }*/





/* =========================================================
   Shared Form Page Styles
   ========================================================= */

.ops-form-page {
    padding-bottom: 6rem;
}

.ops-form-actions {
    position: sticky;
    bottom: 0;
    z-index: 20;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.75rem 0;
    margin-top: 1.5rem;
}

.ops-form-actions-inner {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

@media (max-width: 576px) {
    .ops-form-actions-inner {
        flex-direction: column;
    }

        .ops-form-actions-inner .btn {
            width: 100%;
        }
}


/* =========================================================
   Identity / Login Page
   ========================================================= */

.identity-page {
    min-height: 100vh;
    background: radial-gradient(circle at top left, rgba(13, 110, 253, 0.10), transparent 30%), radial-gradient(circle at top right, rgba(111, 66, 193, 0.10), transparent 28%), linear-gradient(180deg, #f8fbff 0%, #f6f8fb 45%, #f9fafc 100%);
}

.identity-main {
    min-height: calc(100vh - 72px);
}

.identity-login-card {
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 1rem 2.5rem rgba(13, 110, 253, 0.10), 0 0.35rem 1rem rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(6px);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

    .identity-login-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 1.25rem 2.75rem rgba(13, 110, 253, 0.14), 0 0.5rem 1.25rem rgba(0, 0, 0, 0.10);
    }




/* =========================================================
   Loading State
   ========================================================= */

body.loading {
    opacity: 0.6;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

    body.loading .main-content,
    body.loading main,
    body.loading .container,
    body.loading .container-fluid {
        opacity: 0.35;
        transition: opacity 0.15s ease;
        pointer-events: none;
    }


/* =========================================================
   Print Styles
   ========================================================= */

@media print {
    nav,
    footer,
    .btn,
    form,
    .no-print,
    .toast,
    .dropdown-menu {
        display: none !important;
    }

    body {
        background: #fff !important;
        margin-bottom: 0 !important;
    }

    .container,
    .container-fluid {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .card {
        border: 1px solid #ddd !important;
        box-shadow: none !important;
        break-inside: avoid;
    }

    .table {
        font-size: 0.95rem;
    }

    h2,
    h5 {
        color: #000 !important;
    }
}

.primary-cleaner-row td {
    box-shadow: inset 0 3px 0 rgba(13, 110, 253, 0.45);
}

.primary-cleaner-line {
    font-size: 0.9rem;
}
.badge {
    font-weight: 500;
}


/* =========================================================
   Shared Data Table Styles
   ========================================================= */

.ops-table-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 16px;
}

    .ops-table-scroll::after {
        display: none;
    }

.ops-table {
    min-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.invoices-table {
    width: 100%;
    min-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: auto;
}

    .invoices-table .actions-cell {
        white-space: nowrap;
        width: 1%;
        text-align: end;
    }

    .ops-table th,
    .ops-table td,
    .invoices-table th,
    .invoices-table td {
        vertical-align: middle;
    }

    .ops-table .text-nowrap-cell,
    .invoices-table .text-nowrap-cell {
        white-space: nowrap;
    }

    .ops-table .notes-cell,
    .ops-table .description-cell,
    .invoices-table .notes-cell,
    .invoices-table .description-cell {
        min-width: 220px;
        max-width: 280px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .ops-table .actions-cell,
    .invoices-table .actions-cell {
        min-width: 210px;
        width: 210px;
        white-space: nowrap;
    }

        .ops-table .actions-cell .btn-group,
        .invoices-table .actions-cell .btn-group {
            display: inline-flex;
            flex-wrap: nowrap;
        }

        .ops-table .actions-cell .btn,
        .invoices-table .actions-cell .btn {
            white-space: nowrap;
        }

    .ops-table tbody tr:hover td,
    .invoices-table tbody tr:hover td {
        background-color: #f8f9fa;
    }

.bookings-table {
    min-width: 1100px;
}

.invoices-table {
    min-width: 1350px;
}

@media (max-width: 576px) {
    .ops-table .actions-cell,
    .invoices-table .actions-cell {
        min-width: 190px;
        width: 190px;
    }
}

html {
    height: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
}

main {
    min-height: 0;
}

.footer {
    position: static;
    width: 100%;
    white-space: normal;
    line-height: normal;
    flex-shrink: 0;
}

/* =========================================================
   Expense Summary Card Gradients
   ========================================================= */

.expense-total {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.expense-onfile {
    background: linear-gradient(180deg, #ffffff 0%, #f1fff5 100%);
}

.expense-missing {
    background: linear-gradient(180deg, #ffffff 0%, #fff8f1 100%);
}

/* Active state (like invoices) */
.expense-card-active {
    border-width: 2px !important;
}

.invoices-table {
    width: 100%;
    min-width: 100%;
    border-collapse: collapse;
    table-layout: auto;
}

    .invoices-table th,
    .invoices-table td {
        vertical-align: middle;
    }

    .invoices-table .actions-cell {
        white-space: nowrap;
        width: 1%;
        text-align: end;
    }

.ops-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.invoices-table th:last-child,
.invoices-table td:last-child {
    padding-right: 0.75rem;
}

.admin-page-header {
    padding-top: .25rem;
}

.admin-card {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .admin-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 .5rem 1rem rgba(0,0,0,.10) !important;
    }

.feedback-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

/* =========================================================
   Install Page
   ========================================================= */
.install-page {
    min-height: calc(100vh - 120px);
    background: radial-gradient(circle at top right, rgba(13, 110, 253, 0.10), transparent 30%), radial-gradient(circle at bottom left, rgba(25, 135, 84, 0.08), transparent 30%), linear-gradient(180deg, #f8fbff 0%, #f5f7fb 100%);
}

.install-card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 1.5rem;
    overflow: hidden;
    backdrop-filter: blur(6px);
}

.install-card-body {
    position: relative;
}

.install-app-icon {
    width: 82px;
    height: 82px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    background: linear-gradient(135deg, #0d6efd, #6f42c1);
    box-shadow: 0 16px 40px rgba(13, 110, 253, 0.28);
}

.install-preview {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.install-preview-header {
    display: flex;
    gap: 6px;
    padding: 12px 14px;
    background: #f3f5f8;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

    .install-preview-header .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #c8d0da;
    }

.install-preview-body {
    padding: 28px 20px;
}

.install-preview-icon {
    font-size: 2rem;
    color: #0d6efd;
}

.platform-panel {
    border: 1px solid rgba(13, 110, 253, 0.10);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 1rem;
    padding: 1.1rem;
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.06);
}

.platform-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #1f2d3d;
}

.instruction-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(0,0,0,.08);
}

    .instruction-step:last-child {
        border-bottom: none;
    }

.step-number {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #0d6efd, #6f42c1);
    box-shadow: 0 8px 16px rgba(13, 110, 253, 0.18);
}

.install-open-btn {
    border-radius: .9rem;
    padding-top: .9rem;
    padding-bottom: .9rem;
    font-weight: 600;
    box-shadow: 0 10px 22px rgba(13, 110, 253, 0.18);
}

@media (max-width: 575.98px) {
    .install-card {
        border-radius: 1.1rem;
    }

    .install-app-icon {
        width: 72px;
        height: 72px;
        font-size: 1.8rem;
    }

    .platform-panel {
        padding: 1rem;
    }
}

.admin-tool-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}


/* =========================================================
   Install Buttons
   ========================================================= */

.install-actions .btn-sm {
    min-width: 140px;
}

.install-actions .btn-outline-secondary {
    border-color: rgba(0, 0, 0, 0.12);
    background: #fff;
}

    .install-actions .btn-outline-secondary:hover {
        background: #f8f9fa;
    }

/* =========================================================
   Login Branding
   ========================================================= */

.login-logo,
.login-app-icon {
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
}

/* Logo */
.login-logo {
    height: 64px;
    max-width: 280px;
    margin-bottom: 0.5rem;
}

/* App icon */
.login-app-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    margin-bottom: 1rem;
}

/* Slightly larger logo on tablets/desktop */
@media (min-width: 768px) {
    .login-logo {
        height: 80px;
    }
}


/* =========================================================
   Shared Data Table Styles
   ========================================================= */

.ops-table-wrap {
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    position: relative;
    padding-bottom: 0.5rem;
}

    .ops-table-wrap::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 20px;
        height: 100%;
        pointer-events: none;
        background: linear-gradient(to left, rgba(0, 0, 0, 0.08), transparent);
    }

.ops-table {
    width: 100%;
    min-width: max-content;
    border-collapse: separate;
    border-spacing: 0;
}

    .ops-table th,
    .ops-table td {
        vertical-align: middle;
    }

.text-nowrap-cell {
    white-space: nowrap;
}

.actions-cell {
    min-width: 220px;
}

/* Mobile */
@media (max-width: 991.98px) {
    .ops-table-wrap {
        margin-left: -0.25rem;
        margin-right: -0.25rem;
    }

    .ops-table {
        font-size: 0.95rem;
    }
}

/* Landscape phones/tablets */
@media (max-width: 991.98px) and (orientation: landscape) {
    .ops-table-wrap {
        margin-left: 0;
        margin-right: 0;
    }

    .ops-table {
        width: 100%;
        min-width: 100%;
    }

    .actions-cell {
        min-width: 240px;
    }
}
/* =========================================================
   Shared Data Table Styles
   ========================================================= */

/*.ops-table-wrap {
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    position: relative;
    padding-bottom: 0.25rem;
}

    .ops-table-wrap::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 20px;
        height: 100%;
        pointer-events: none;
        background: linear-gradient(to left, rgba(0, 0, 0, 0.08), transparent);
    }

.ops-table {
    width: max-content;
    min-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

    .ops-table th,
    .ops-table td {
        vertical-align: middle;
    }

.text-nowrap-cell {
    white-space: nowrap;
}

.actions-cell {
    min-width: 220px;
}*/

/* =========================================================
   Mobile Enhancements + Table Behavior
   ========================================================= */

@media (max-width: 991.98px) {

    /* Layout tweaks */
    .card-body {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .ops-table-wrap {
        margin-left: -0.25rem;
        margin-right: -0.25rem;
    }

    .ops-table {
        font-size: 0.95rem;
    }

        /* Allow wrapping so table can expand better */
        .ops-table th,
        .ops-table td {
            white-space: normal;
        }

        /* But keep key columns tight */
        .ops-table .text-nowrap-cell {
            white-space: nowrap;
        }
}

/* =========================================================
   Landscape phones
   ========================================================= */

@media (max-width: 991.98px) and (orientation: landscape) {

    /* Let table expand to full width of screen */
    .ops-table {
        width: 100%;
        min-width: 100%;
    }

    /* Give action buttons a bit more breathing room */
    .actions-cell {
        min-width: 240px;
    }
}

/* =========================================================
   Donna's Dashboard Marketing + Login Page
   ========================================================= */

/*.marketing-login-page {
    min-height: 100vh;
    background: radial-gradient(circle at top left, rgba(13, 110, 253, 0.10), transparent 28%), radial-gradient(circle at top right, rgba(111, 66, 193, 0.10), transparent 24%), linear-gradient(180deg, #f8fbff 0%, #f5f7fb 52%, #eef3f9 100%);
}

.hero-panel,
.proof-panel,
.final-cta-panel,
.feature-card,
.identity-login-card {
    border-radius: 24px;
}

.hero-panel {
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(255,255,255,0.65);
    box-shadow: 0 20px 60px rgba(31, 41, 55, 0.08);
    backdrop-filter: blur(10px);
}

.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0d6efd;
}

.hero-logo {
    max-width: 320px;
    width: 100%;
    height: auto;
}

.hero-app-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    object-fit: cover;
}

.hero-title {
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    max-width: 850px;
}

.hero-stat-card {
    height: 100%;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(13, 110, 253, 0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.65);
}

.hero-stat-value {
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
    color: #1f2937;
}

.hero-stat-label {
    font-size: 0.92rem;
    color: #6c757d;
    line-height: 1.35;
}

.feature-card {
    padding: 1.5rem;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

    .feature-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
    }

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.proof-panel {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(13, 110, 253, 0.08);
    box-shadow: 0 16px 40px rgba(31, 41, 55, 0.06);
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #374151;
}

    .benefit-item i {
        color: #198754;
        margin-top: 0.1rem;
        font-size: 1rem;
    }

.mini-dashboard-card {
    border-radius: 22px;
    background: #0f172a;
    color: #fff;
    padding: 1.25rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.28);
}

.mini-dashboard-header {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.mini-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
}

.mini-metric-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

.mini-metric {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 0.9rem;
}

.mini-metric-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.72);
    margin-bottom: 0.35rem;
}

.mini-metric-value {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}

.mini-chart-bar {
    display: flex;
    align-items: end;
    gap: 0.55rem;
    height: 120px;
}

.mini-bar {
    flex: 1;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(180deg, #60a5fa 0%, #2563eb 100%);
    opacity: 0.95;
}

.final-cta-panel {
    background: linear-gradient(135deg, rgba(13,110,253,0.08), rgba(111,66,193,0.10));
    border: 1px solid rgba(13,110,253,0.08);
    box-shadow: 0 10px 30px rgba(31, 41, 55, 0.05);
}

.identity-login-card {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.75);
    box-shadow: 0 18px 50px rgba(31, 41, 55, 0.10);
    backdrop-filter: blur(10px);
}

.signin-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(13,110,253,0.10);
    color: #0d6efd;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.sticky-login-card {
    position: sticky;
    top: 100px;
}

@media (max-width: 1199.98px) {
    .sticky-login-card {
        position: static;
        top: auto;
    }
}

@media (max-width: 767.98px) {
    .hero-logo {
        max-width: 240px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .feature-card,
    .hero-panel,
    .proof-panel,
    .final-cta-panel,
    .identity-login-card {
        border-radius: 20px;
    }

    .hero-app-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }
}

.hero-logo {
    max-width: 220px;
    width: auto;
    height: auto;
    display: block;
}

.hero-app-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.10);
    object-fit: contain;
    flex: 0 0 56px;
}

@media (max-width: 767.98px) {
    .hero-logo {
        max-width: 180px;
    }

    .hero-app-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        flex-basis: 48px;
    }
}
.hero-panel .d-flex.align-items-center.gap-3 {
    align-items: center !important;
    gap: 0.75rem !important;
    margin-bottom: 1.25rem !important;
}*/


/* =========================================================
   Public Landing Layout
   ========================================================= */

.public-layout-body {
    min-height: 100vh;
    background: radial-gradient(circle at top left, rgba(13, 110, 253, 0.10), transparent 28%), radial-gradient(circle at top right, rgba(111, 66, 193, 0.08), transparent 24%), linear-gradient(180deg, #f8fbff 0%, #f5f8fc 55%, #eef4fb 100%);
}

.public-topbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.78);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.public-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #111827;
    font-weight: 700;
}

.public-brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 8px 18px rgba(0,0,0,0.10);
}

.public-brand-text {
    font-size: 1rem;
    letter-spacing: -0.01em;
}

/* =========================================================
   Marketing Landing / Login
   ========================================================= */

.landing-hero-section {
    padding: 2rem 0 3rem;
}

.landing-hero-card {
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(255,255,255,0.72);
    border-radius: 30px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .landing-hero-card {
        padding: 2rem;
    }
}

@media (min-width: 1200px) {
    .landing-hero-card {
        padding: 2.5rem;
    }
}

.landing-brand-row {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.landing-eyebrow {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0d6efd;
    margin-bottom: 0.35rem;
}

.landing-hero-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    object-fit: contain;
    flex: 0 0 54px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    background: #fff;
    padding: 4px;
}

.landing-hero-logo {
    display: block;
    max-width: 220px;
    width: auto;
    height: auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(13,110,253,0.08);
    color: #0d6efd;
    border: 1px solid rgba(13,110,253,0.10);
    font-size: 0.85rem;
    font-weight: 700;
}

.landing-title {
    font-size: clamp(2rem, 4vw, 3.7rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #111827;
    max-width: 900px;
}

.landing-subtitle {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #5f6b7a;
    max-width: 850px;
}

.landing-stat-card {
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(13,110,253,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.landing-stat-value {
    font-weight: 800;
    font-size: 1rem;
    color: #111827;
    margin-bottom: 0.35rem;
}

.landing-stat-text {
    font-size: 0.92rem;
    line-height: 1.45;
    color: #6b7280;
}

.mock-dashboard-shell {
    margin-top: 0.25rem;
    margin-bottom: 1.5rem;
    border-radius: 24px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.22);
}

.mock-dashboard-topbar {
    display: flex;
    align-items: center;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
}

.mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    margin-right: 0.35rem;
}

.mock-dashboard-body {
    padding: 1rem;
}

.mock-panel {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 1rem;
    color: #fff;
}

.mock-panel-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: rgba(255,255,255,0.78);
    margin-bottom: 0.9rem;
}

.mock-kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.mock-kpi-card {
    background: rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 0.85rem;
}

.mock-kpi-label {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.66);
    margin-bottom: 0.35rem;
}

.mock-kpi-value {
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 800;
}

.mock-chart-block {
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    padding: 0.9rem;
}

.mock-chart-title {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.72);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.mock-bars {
    height: 120px;
    display: flex;
    align-items: end;
    gap: 0.45rem;
}

    .mock-bars span {
        flex: 1;
        border-radius: 999px 999px 0 0;
        background: linear-gradient(180deg, #60a5fa 0%, #2563eb 100%);
    }

.mock-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mock-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 0.85rem 0.9rem;
}

.mock-list-main {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
}

.mock-list-sub {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.68);
}

.mock-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.35rem 0.6rem;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
}

    .mock-pill.primary {
        background: rgba(13,110,253,0.18);
        color: #93c5fd;
    }

    .mock-pill.warning {
        background: rgba(245,158,11,0.18);
        color: #fcd34d;
    }

    .mock-pill.danger {
        background: rgba(239,68,68,0.18);
        color: #fca5a5;
    }

    .mock-pill.info {
        background: rgba(6,182,212,0.18);
        color: #67e8f9;
    }

.selling-point-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 22px;
    padding: 1.35rem;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.selling-point-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.signin-side-wrap {
    position: sticky;
    top: 92px;
}

.landing-signin-card {
    border-radius: 30px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.10);
    backdrop-filter: blur(12px);
}

.signin-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(13,110,253,0.10);
    color: #0d6efd;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    font-size: 0.85rem;
    color: #4b5563;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

@media (max-width: 1199.98px) {
    .signin-side-wrap {
        position: static;
        top: auto;
    }
}

@media (max-width: 767.98px) {
    .landing-hero-section {
        padding-top: 1rem;
        padding-bottom: 2rem;
    }

    .landing-hero-card,
    .landing-signin-card {
        border-radius: 22px;
    }

    .landing-hero-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        border-radius: 12px;
    }

    .landing-hero-logo {
        max-width: 170px;
    }

    .landing-title {
        font-size: 2rem;
    }

    .mock-kpi-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================================
   Public Landing Layout
   ========================================================= */

.public-layout-body {
    min-height: 100vh;
    background: radial-gradient(circle at top left, rgba(13, 110, 253, 0.10), transparent 28%), radial-gradient(circle at top right, rgba(111, 66, 193, 0.08), transparent 24%), linear-gradient(180deg, #f8fbff 0%, #f5f8fc 55%, #eef4fb 100%);
}

.public-topbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.78);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.public-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #111827;
    font-weight: 700;
}

.public-brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 8px 18px rgba(0,0,0,0.10);
}

.public-brand-text {
    font-size: 1rem;
    letter-spacing: -0.01em;
}

/* =========================================================
   Marketing Landing / Login
   ========================================================= */

.landing-hero-section {
    padding: 2rem 0 3rem;
}

.landing-hero-card {
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(255,255,255,0.72);
    border-radius: 30px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .landing-hero-card {
        padding: 2rem;
    }
}

@media (min-width: 1200px) {
    .landing-hero-card {
        padding: 2.5rem;
    }
}

.landing-brand-row {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.landing-eyebrow {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0d6efd;
    margin-bottom: 0.35rem;
}

.landing-hero-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    object-fit: contain;
    flex: 0 0 54px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    background: #fff;
    padding: 4px;
}

.landing-hero-logo {
    display: block;
    max-width: 220px;
    width: auto;
    height: auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(13,110,253,0.08);
    color: #0d6efd;
    border: 1px solid rgba(13,110,253,0.10);
    font-size: 0.85rem;
    font-weight: 700;
}

.landing-title {
    font-size: clamp(2rem, 4vw, 3.7rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #111827;
    max-width: 900px;
}

.landing-subtitle {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #5f6b7a;
    max-width: 850px;
}

.landing-stat-card {
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(13,110,253,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.landing-stat-value {
    font-weight: 800;
    font-size: 1rem;
    color: #111827;
    margin-bottom: 0.35rem;
}

.landing-stat-text {
    font-size: 0.92rem;
    line-height: 1.45;
    color: #6b7280;
}

.mock-dashboard-shell {
    margin-top: 0.25rem;
    margin-bottom: 1.5rem;
    border-radius: 24px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.22);
}

.mock-dashboard-topbar {
    display: flex;
    align-items: center;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
}

.mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    margin-right: 0.35rem;
}

.mock-dashboard-body {
    padding: 1rem;
}

.mock-panel {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 1rem;
    color: #fff;
}

.mock-panel-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: rgba(255,255,255,0.78);
    margin-bottom: 0.9rem;
}

.mock-kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.mock-kpi-card {
    background: rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 0.85rem;
}

.mock-kpi-label {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.66);
    margin-bottom: 0.35rem;
}

.mock-kpi-value {
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 800;
}

.mock-chart-block {
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    padding: 0.9rem;
}

.mock-chart-title {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.72);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.mock-bars {
    height: 120px;
    display: flex;
    align-items: end;
    gap: 0.45rem;
}

    .mock-bars span {
        flex: 1;
        border-radius: 999px 999px 0 0;
        background: linear-gradient(180deg, #60a5fa 0%, #2563eb 100%);
    }

.mock-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mock-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 0.85rem 0.9rem;
}

.mock-list-main {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
}

.mock-list-sub {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.68);
}

.mock-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.35rem 0.6rem;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
}

    .mock-pill.primary {
        background: rgba(13,110,253,0.18);
        color: #93c5fd;
    }

    .mock-pill.warning {
        background: rgba(245,158,11,0.18);
        color: #fcd34d;
    }

    .mock-pill.danger {
        background: rgba(239,68,68,0.18);
        color: #fca5a5;
    }

    .mock-pill.info {
        background: rgba(6,182,212,0.18);
        color: #67e8f9;
    }

.selling-point-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 22px;
    padding: 1.35rem;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.selling-point-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.signin-side-wrap {
    position: sticky;
    top: 92px;
}

.landing-signin-card {
    border-radius: 30px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.10);
    backdrop-filter: blur(12px);
}

.signin-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(13,110,253,0.10);
    color: #0d6efd;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    font-size: 0.85rem;
    color: #4b5563;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

@media (max-width: 1199.98px) {
    .signin-side-wrap {
        position: static;
        top: auto;
    }
}

@media (max-width: 767.98px) {
    .landing-hero-section {
        padding-top: 1rem;
        padding-bottom: 2rem;
    }

    .landing-hero-card,
    .landing-signin-card {
        border-radius: 22px;
    }

    .landing-hero-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        border-radius: 12px;
    }

    .landing-hero-logo {
        max-width: 170px;
    }

    .landing-title {
        font-size: 2rem;
    }

    .mock-kpi-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* =========================================================
   Public Landing Layout
   ========================================================= */

.public-layout-body {
    min-height: 100vh;
    background: radial-gradient(circle at top left, rgba(13, 110, 253, 0.10), transparent 28%), radial-gradient(circle at top right, rgba(111, 66, 193, 0.08), transparent 24%), linear-gradient(180deg, #f8fbff 0%, #f5f8fc 55%, #eef4fb 100%);
}

.public-topbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.82);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.public-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #111827;
    font-weight: 700;
}

.public-brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 8px 18px rgba(0,0,0,0.10);
}

.public-brand-text {
    font-size: 1rem;
    letter-spacing: -0.01em;
}

/* =========================================================
   Landing Page
   ========================================================= */

.landing-hero-section {
    padding: 1.5rem 0 3rem;
}

.landing-hero-card {
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(255,255,255,0.72);
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .landing-hero-card {
        padding: 2rem;
    }
}

@media (min-width: 1200px) {
    .landing-hero-card {
        padding: 2.25rem;
    }
}

.landing-brand-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.landing-eyebrow {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0d6efd;
    margin-bottom: 0.35rem;
}

.landing-hero-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: contain;
    flex: 0 0 48px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    background: #fff;
    padding: 4px;
}

.landing-hero-logo {
    display: block;
    max-width: 180px;
    width: auto;
    height: auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(13,110,253,0.08);
    color: #0d6efd;
    border: 1px solid rgba(13,110,253,0.10);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.landing-title {
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #111827;
    max-width: 860px;
}

.landing-subtitle {
    font-size: 1.02rem;
    line-height: 1.7;
    color: #5f6b7a;
    max-width: 780px;
}

.landing-stat-card {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(13,110,253,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
    height: 100%;
}

.landing-stat-value {
    font-weight: 800;
    font-size: 1rem;
    color: #111827;
    margin-bottom: 0.35rem;
}

.landing-stat-text {
    font-size: 0.9rem;
    line-height: 1.45;
    color: #6b7280;
}

.mock-dashboard-shell {
    margin: 0.5rem 0 1.5rem;
    border-radius: 22px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.22);
}

.mock-dashboard-topbar {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
}

.mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    margin-right: 0.35rem;
}

.mock-dashboard-body {
    padding: 1rem;
}

.mock-panel {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    padding: 1rem;
    color: #fff;
    height: 100%;
}

.mock-panel-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: rgba(255,255,255,0.78);
    margin-bottom: 0.9rem;
}

.mock-kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.mock-kpi-card {
    background: rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 0.8rem;
}

.mock-kpi-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.66);
    margin-bottom: 0.35rem;
}

.mock-kpi-value {
    font-size: 1.35rem;
    line-height: 1;
    font-weight: 800;
}

.mock-chart-block {
    background: rgba(255,255,255,0.04);
    border-radius: 14px;
    padding: 0.85rem;
    margin-top: 0.85rem;
}

.mock-chart-title {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.72);
    margin-bottom: 0.7rem;
    font-weight: 700;
}

.mock-bars {
    height: 110px;
    display: flex;
    align-items: end;
    gap: 0.4rem;
}

    .mock-bars span {
        flex: 1;
        border-radius: 999px 999px 0 0;
        background: linear-gradient(180deg, #60a5fa 0%, #2563eb 100%);
    }

.mock-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.mock-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.7rem;
    background: rgba(255,255,255,0.05);
    border-radius: 14px;
    padding: 0.8rem 0.85rem;
}

.mock-list-main {
    font-weight: 700;
    font-size: 0.92rem;
    color: #fff;
}

.mock-list-sub {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.68);
}

.mock-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.32rem 0.55rem;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
}

    .mock-pill.primary {
        background: rgba(13,110,253,0.18);
        color: #93c5fd;
    }

    .mock-pill.warning {
        background: rgba(245,158,11,0.18);
        color: #fcd34d;
    }

    .mock-pill.danger {
        background: rgba(239,68,68,0.18);
        color: #fca5a5;
    }

    .mock-pill.info {
        background: rgba(6,182,212,0.18);
        color: #67e8f9;
    }

.selling-point-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 20px;
    padding: 1.2rem;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
    height: 100%;
}

.selling-point-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 0.9rem;
}

.signin-side-wrap {
    position: sticky;
    top: 92px;
}

.landing-signin-card {
    border-radius: 28px;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(255,255,255,0.82);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.10);
    backdrop-filter: blur(12px);
}

.signin-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(13,110,253,0.10);
    color: #0d6efd;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.9rem;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 999px;
    padding: 0.55rem 0.85rem;
    font-size: 0.84rem;
    color: #4b5563;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

@media (max-width: 1199.98px) {
    .signin-side-wrap {
        position: static;
        top: auto;
    }
}

@media (max-width: 767.98px) {
    .landing-hero-section {
        padding-top: 1rem;
        padding-bottom: 2rem;
    }

    .landing-hero-card,
    .landing-signin-card {
        border-radius: 22px;
    }

    .landing-hero-logo {
        max-width: 155px;
    }

    .landing-title {
        font-size: 2rem;
    }

    .mock-kpi-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================================
   FINAL landing page size override
   ========================================================= */

.landing-hero-logo,
.hero-logo,
.login-logo {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 140px !important;
    max-height: 46px !important;
}

.landing-hero-icon,
.hero-app-icon,
.login-app-icon {
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    flex: 0 0 40px !important;
    object-fit: contain !important;
    border-radius: 10px !important;
    padding: 2px !important;
}

.public-brand-icon {
    width: 28px !important;
    height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
}

@media (min-width: 768px) {
    .landing-hero-logo,
    .hero-logo,
    .login-logo {
        max-width: 155px !important;
        max-height: 52px !important;
    }

    .landing-hero-icon,
    .hero-app-icon,
    .login-app-icon {
        width: 44px !important;
        height: 44px !important;
        max-width: 44px !important;
        max-height: 44px !important;
        flex-basis: 44px !important;
    }
}

/* =========================================================
   Public Layout
   ========================================================= */

.public-layout-body {
    min-height: 100vh;
    background: radial-gradient(circle at top left, rgba(13, 110, 253, 0.10), transparent 28%), radial-gradient(circle at top right, rgba(111, 66, 193, 0.08), transparent 24%), linear-gradient(180deg, #f8fbff 0%, #f5f8fc 55%, #eef4fb 100%);
}

.public-topbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.82);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.public-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #111827;
    font-weight: 700;
}

.public-brand-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.public-brand-text {
    font-size: 1rem;
    letter-spacing: -0.01em;
}

/* =========================================================
   Landing Hero Section
   ========================================================= */

.landing-hero-section {
    padding: 1.5rem 0 3rem;
}

.landing-hero-card {
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(255,255,255,0.75);
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .landing-hero-card {
        padding: 2rem;
    }
}

@media (min-width: 1200px) {
    .landing-hero-card {
        padding: 2.4rem;
    }
}

.landing-brand-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.landing-eyebrow {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0d6efd;
    margin-bottom: 0.4rem;
}

.landing-wordmark {
    font-size: clamp(1.7rem, 2.5vw, 2.3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    color: #111827;
}

.landing-title {
    font-size: clamp(2.15rem, 4vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: #111827;
    max-width: 900px;
}

.landing-subtitle {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #5f6b7a;
    max-width: 820px;
}

/* =========================================================
   Quick Stats
   ========================================================= */

.landing-stat-card {
    height: 100%;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(13,110,253,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}

.landing-stat-value {
    font-weight: 800;
    font-size: 1rem;
    color: #111827;
    margin-bottom: 0.35rem;
}

.landing-stat-text {
    font-size: 0.92rem;
    line-height: 1.45;
    color: #6b7280;
}

/* =========================================================
   Feature Highlight
   ========================================================= */

.feature-highlight {
    background: linear-gradient(135deg, rgba(13,110,253,0.06), rgba(111,66,193,0.06));
    border: 1px solid rgba(13,110,253,0.08);
    border-radius: 24px;
    padding: 1.25rem;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.05);
}

.feature-highlight-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.25rem;
}

.feature-highlight-sub {
    font-size: 0.97rem;
    color: #667085;
    line-height: 1.6;
}

/* =========================================================
   Mock Calendar
   ========================================================= */

.mock-calendar {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.6rem;
}

    .calendar-header div {
        text-align: center;
        font-size: 0.78rem;
        font-weight: 700;
        color: #6b7280;
        padding-bottom: 0.35rem;
    }

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.day {
    min-height: 110px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 16px;
    padding: 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

    .day.busy {
        background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
        border-color: rgba(13,110,253,0.10);
        box-shadow: 0 8px 20px rgba(13,110,253,0.06);
    }

.date {
    font-size: 0.8rem;
    font-weight: 800;
    color: #111827;
}

.event {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    white-space: nowrap;
}

    .event.checkin {
        background: rgba(13,110,253,0.12);
        color: #0d6efd;
    }

    .event.checkout {
        background: rgba(220,53,69,0.10);
        color: #dc3545;
    }

    .event.cleaning {
        background: rgba(25,135,84,0.10);
        color: #198754;
    }

    .event.maintenance {
        background: rgba(255,193,7,0.18);
        color: #9a6700;
    }

/* =========================================================
   Mock Dashboard
   ========================================================= */

.mock-dashboard-shell {
    margin-top: 0.25rem;
    border-radius: 24px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.22);
}

.mock-dashboard-topbar {
    display: flex;
    align-items: center;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
}

.mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    margin-right: 0.35rem;
}

.mock-dashboard-body {
    padding: 1rem;
}

.mock-panel {
    height: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    padding: 1rem;
    color: #fff;
}

.mock-panel-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: rgba(255,255,255,0.78);
    margin-bottom: 0.9rem;
}

.mock-kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.mock-kpi-card {
    background: rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 0.8rem;
}

.mock-kpi-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.66);
    margin-bottom: 0.35rem;
}

.mock-kpi-value {
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 800;
}

.mock-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.mock-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.7rem;
    background: rgba(255,255,255,0.05);
    border-radius: 14px;
    padding: 0.8rem 0.85rem;
    color: #fff;
}

.mock-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.32rem 0.58rem;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
}

    .mock-pill.warning {
        background: rgba(245,158,11,0.18);
        color: #fcd34d;
    }

    .mock-pill.danger {
        background: rgba(239,68,68,0.18);
        color: #fca5a5;
    }

/* =========================================================
   Sign In Panel
   ========================================================= */

.signin-side-wrap {
    position: sticky;
    top: 92px;
}

.landing-signin-card {
    border-radius: 28px;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(255,255,255,0.82);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.10);
    backdrop-filter: blur(12px);
}

.signin-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(13,110,253,0.10);
    color: #0d6efd;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    font-size: 0.84rem;
    color: #4b5563;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1199.98px) {
    .signin-side-wrap {
        position: static;
        top: auto;
    }
}

@media (max-width: 991.98px) {
    .calendar-grid,
    .calendar-header {
        gap: 0.4rem;
    }

    .day {
        min-height: 95px;
        padding: 0.5rem;
    }

    .event {
        font-size: 0.62rem;
        padding: 0.24rem 0.45rem;
    }
}

@media (max-width: 767.98px) {
    .landing-hero-section {
        padding-top: 1rem;
        padding-bottom: 2rem;
    }

    .landing-hero-card,
    .landing-signin-card {
        border-radius: 22px;
    }

    .landing-title {
        font-size: 2.2rem;
    }

    .landing-subtitle {
        font-size: 1rem;
    }

    .landing-wordmark {
        font-size: 1.75rem;
    }

    .feature-highlight {
        padding: 1rem;
    }

    .calendar-header {
        font-size: 0.72rem;
    }

    .day {
        min-height: 80px;
        border-radius: 12px;
    }

    .mock-kpi-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575.98px) {
    .calendar-header div {
        font-size: 0.68rem;
    }

    .day {
        min-height: 72px;
        padding: 0.42rem;
    }

    .date {
        font-size: 0.72rem;
    }

    .event {
        font-size: 0.58rem;
        padding: 0.2rem 0.38rem;
    }

    .trust-item {
        font-size: 0.78rem;
        padding: 0.48rem 0.75rem;
    }
}




/* =========================================================
   Public Layout
   ========================================================= */

.public-layout-body {
    min-height: 100vh;
    background: radial-gradient(circle at top left, rgba(13, 110, 253, 0.10), transparent 28%), radial-gradient(circle at top right, rgba(111, 66, 193, 0.08), transparent 24%), linear-gradient(180deg, #f8fbff 0%, #f5f8fc 55%, #eef4fb 100%);
}

.public-topbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.84);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.public-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #111827;
    font-weight: 700;
}

.public-brand-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.public-brand-text {
    font-size: 1rem;
    letter-spacing: -0.01em;
}

/* =========================================================
   Landing Hero Section
   ========================================================= */

.landing-hero-section {
    padding: 1.5rem 0 3rem;
}

.landing-hero-card {
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(255,255,255,0.75);
    border-radius: 30px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .landing-hero-card {
        padding: 2rem;
    }
}

@media (min-width: 1200px) {
    .landing-hero-card {
        padding: 2.5rem;
    }
}

.landing-brand-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.landing-eyebrow {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0d6efd;
    margin-bottom: 0.4rem;
}

.landing-wordmark {
    font-size: clamp(1.7rem, 2.5vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    color: #111827;
}

.landing-title {
    font-size: clamp(2.15rem, 4vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: #111827;
    max-width: 940px;
}

.landing-subtitle {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #5f6b7a;
    max-width: 840px;
}

/* =========================================================
   Quick Summary Cards
   ========================================================= */

.landing-stat-card {
    height: 100%;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(13,110,253,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}

.landing-stat-value {
    font-weight: 800;
    font-size: 1rem;
    color: #111827;
    margin-bottom: 0.35rem;
}

.landing-stat-text {
    font-size: 0.92rem;
    line-height: 1.45;
    color: #6b7280;
}

/* =========================================================
   Feature Grid
   ========================================================= */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.feature-grid-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 22px;
    padding: 1.25rem;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

    .feature-grid-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 42px rgba(15, 23, 42, 0.09);
    }

.feature-grid-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-grid-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.55rem;
    color: #111827;
    letter-spacing: -0.01em;
}

.feature-grid-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #667085;
}

/* =========================================================
   Feature Highlight
   ========================================================= */

.feature-highlight {
    background: linear-gradient(135deg, rgba(13,110,253,0.06), rgba(111,66,193,0.06));
    border: 1px solid rgba(13,110,253,0.08);
    border-radius: 26px;
    padding: 1.3rem;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.05);
}

.feature-highlight-kicker {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0d6efd;
    margin-bottom: 0.45rem;
}

.feature-highlight-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.feature-highlight-sub {
    font-size: 0.98rem;
    color: #667085;
    line-height: 1.65;
}

/* =========================================================
   Mock Calendar
   ========================================================= */

.mock-calendar {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.6rem;
}

    .calendar-header div {
        text-align: center;
        font-size: 0.78rem;
        font-weight: 700;
        color: #6b7280;
        padding-bottom: 0.35rem;
    }

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.day {
    min-height: 120px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 16px;
    padding: 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

    .day.busy {
        background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
        border-color: rgba(13,110,253,0.10);
        box-shadow: 0 8px 20px rgba(13,110,253,0.06);
    }

.date {
    font-size: 0.8rem;
    font-weight: 800;
    color: #111827;
}

.event {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .event.checkin {
        background: rgba(13,110,253,0.12);
        color: #0d6efd;
    }

    .event.checkout {
        background: rgba(220,53,69,0.10);
        color: #dc3545;
    }

    .event.cleaning {
        background: rgba(25,135,84,0.10);
        color: #198754;
    }

    .event.maintenance {
        background: rgba(255,193,7,0.18);
        color: #9a6700;
    }

/* =========================================================
   Mock Dashboard
   ========================================================= */

.mock-dashboard-shell {
    border-radius: 24px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.22);
}

.mock-dashboard-topbar {
    display: flex;
    align-items: center;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
}

.mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    margin-right: 0.35rem;
}

.mock-dashboard-body {
    padding: 1rem;
}

.mock-panel {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 1rem;
    color: #fff;
}

.mock-panel-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: rgba(255,255,255,0.78);
    margin-bottom: 0.9rem;
}

.mock-kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.mock-kpi-card {
    background: rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 0.8rem;
}

.mock-kpi-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.66);
    margin-bottom: 0.35rem;
}

.mock-kpi-value {
    font-size: 1.45rem;
    line-height: 1;
    font-weight: 800;
}

.mock-chart-block {
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    padding: 0.9rem;
}

.mock-chart-title {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.72);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.mock-bars {
    height: 120px;
    display: flex;
    align-items: end;
    gap: 0.45rem;
}

    .mock-bars span {
        flex: 1;
        border-radius: 999px 999px 0 0;
        background: linear-gradient(180deg, #60a5fa 0%, #2563eb 100%);
    }

.mock-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mock-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.05);
    border-radius: 14px;
    padding: 0.8rem 0.85rem;
}

.mock-list-main {
    font-weight: 700;
    font-size: 0.92rem;
    color: #fff;
}

.mock-list-sub {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.68);
}

.mock-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.32rem 0.58rem;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
}

    .mock-pill.primary {
        background: rgba(13,110,253,0.18);
        color: #93c5fd;
    }

    .mock-pill.warning {
        background: rgba(245,158,11,0.18);
        color: #fcd34d;
    }

    .mock-pill.danger {
        background: rgba(239,68,68,0.18);
        color: #fca5a5;
    }

    .mock-pill.info {
        background: rgba(6,182,212,0.18);
        color: #67e8f9;
    }

/* =========================================================
   Benefits Strip
   ========================================================= */

.benefits-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.25rem;
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.benefit-item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #374151;
    font-size: 0.94rem;
    font-weight: 600;
}

    .benefit-item i {
        color: #198754;
        font-size: 0.95rem;
    }

/* =========================================================
   Final CTA
   ========================================================= */

.final-sales-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.35rem 1.4rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(13,110,253,0.08), rgba(111,66,193,0.08));
    border: 1px solid rgba(13,110,253,0.08);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.05);
}

/* =========================================================
   Sign In Panel
   ========================================================= */

.signin-side-wrap {
    position: sticky;
    top: 92px;
}

.landing-signin-card {
    border-radius: 30px;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(255,255,255,0.82);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.10);
    backdrop-filter: blur(12px);
}

.signin-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(13,110,253,0.10);
    color: #0d6efd;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    font-size: 0.84rem;
    color: #4b5563;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1199.98px) {
    .signin-side-wrap {
        position: static;
        top: auto;
    }
}

@media (max-width: 991.98px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .calendar-grid,
    .calendar-header {
        gap: 0.4rem;
    }

    .day {
        min-height: 100px;
        padding: 0.5rem;
    }

    .event {
        font-size: 0.62rem;
        padding: 0.24rem 0.45rem;
    }

    .final-sales-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    .landing-hero-section {
        padding-top: 1rem;
        padding-bottom: 2rem;
    }

    .landing-hero-card,
    .landing-signin-card {
        border-radius: 22px;
    }

    .landing-title {
        font-size: 2.25rem;
    }

    .landing-subtitle {
        font-size: 1rem;
    }

    .landing-wordmark {
        font-size: 1.8rem;
    }

    .feature-highlight,
    .final-sales-cta {
        padding: 1rem;
    }

    .benefits-strip {
        padding: 0.9rem 1rem;
    }

    .day {
        min-height: 84px;
        border-radius: 12px;
    }

    .mock-kpi-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575.98px) {
    .calendar-header div {
        font-size: 0.68rem;
    }

    .day {
        min-height: 74px;
        padding: 0.42rem;
    }

    .date {
        font-size: 0.72rem;
    }

    .event {
        font-size: 0.58rem;
        padding: 0.2rem 0.38rem;
    }

    .trust-item {
        font-size: 0.78rem;
        padding: 0.48rem 0.75rem;
    }

    .benefit-item {
        font-size: 0.88rem;
    }
}

/* =========================================================
   Donna's Dashboard Public Home Page
   ========================================================= */

.dd-home-hero {
    background: radial-gradient(circle at top left, rgba(13, 110, 253, 0.10), transparent 28%), radial-gradient(circle at top right, rgba(111, 66, 193, 0.08), transparent 24%), linear-gradient(180deg, #f8fbff 0%, #f5f8fc 55%, #eef4fb 100%);
}

.dd-eyebrow,
.dd-section-kicker {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0d6efd;
}

.dd-hero-title {
    font-size: clamp(2.3rem, 4vw, 4.3rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: #111827;
    max-width: 900px;
}

.dd-hero-subtitle {
    font-size: 1.08rem;
    line-height: 1.75;
    color: #5f6b7a;
    max-width: 820px;
}

.dd-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.dd-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 999px;
    padding: 0.6rem 0.95rem;
    color: #4b5563;
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

/* =========================================================
   Hero Preview Card
   ========================================================= */

.dd-hero-preview {
    border-radius: 28px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.22);
}

.dd-preview-topbar {
    display: flex;
    align-items: center;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
}

.dd-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    margin-right: 0.35rem;
}

.dd-preview-body {
    padding: 1rem;
}

.dd-preview-kpi {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    padding: 0.9rem;
    color: #fff;
}

.dd-preview-kpi-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.68);
    margin-bottom: 0.4rem;
}

.dd-preview-kpi-value {
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1;
}

.dd-preview-chart {
    background: rgba(255,255,255,0.04);
    border-radius: 18px;
    padding: 0.95rem;
}

.dd-preview-chart-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255,255,255,0.74);
    margin-bottom: 0.75rem;
}

.dd-preview-bars {
    height: 120px;
    display: flex;
    align-items: end;
    gap: 0.45rem;
}

    .dd-preview-bars span {
        flex: 1;
        border-radius: 999px 999px 0 0;
        background: linear-gradient(180deg, #60a5fa 0%, #2563eb 100%);
    }

.dd-preview-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dd-preview-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 0.85rem 0.9rem;
}

.dd-preview-list-main {
    font-weight: 700;
    font-size: 0.94rem;
    color: #fff;
}

.dd-preview-list-sub {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.68);
}

.dd-status-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.34rem 0.6rem;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
}

    .dd-status-pill.primary {
        background: rgba(13,110,253,0.18);
        color: #93c5fd;
    }

    .dd-status-pill.warning {
        background: rgba(245,158,11,0.18);
        color: #fcd34d;
    }

    .dd-status-pill.danger {
        background: rgba(239,68,68,0.18);
        color: #fca5a5;
    }

/* =========================================================
   Generic Section Headings
   ========================================================= */

.dd-section-title {
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}

.dd-section-subtitle {
    max-width: 760px;
    font-size: 1.02rem;
    line-height: 1.75;
    color: #667085;
}

/* =========================================================
   Feature Cards
   ========================================================= */

.dd-feature-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 24px;
    padding: 1.4rem;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

    .dd-feature-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 42px rgba(15, 23, 42, 0.09);
    }

.dd-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.dd-feature-card h3 {
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 0.6rem;
    color: #111827;
}

.dd-feature-card p {
    margin-bottom: 0;
    font-size: 0.96rem;
    line-height: 1.65;
    color: #667085;
}

/* =========================================================
   Highlight Section
   ========================================================= */

.dd-highlight-section {
    background: linear-gradient(180deg, rgba(13,110,253,0.03) 0%, rgba(255,255,255,0) 100%);
}

.dd-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.dd-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: #374151;
    font-size: 0.98rem;
    line-height: 1.55;
}

    .dd-benefit-item i {
        color: #198754;
        font-size: 1rem;
        margin-top: 0.1rem;
    }

/* =========================================================
   Calendar Showcase
   ========================================================= */

.dd-calendar-showcase {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 26px;
    padding: 1.15rem;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.dd-calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.7rem;
}

    .dd-calendar-header div {
        text-align: center;
        font-size: 0.78rem;
        font-weight: 700;
        color: #6b7280;
        padding-bottom: 0.35rem;
    }

.dd-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.dd-day {
    min-height: 125px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 16px;
    padding: 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

    .dd-day.busy {
        background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
        border-color: rgba(13,110,253,0.10);
        box-shadow: 0 8px 20px rgba(13,110,253,0.06);
    }

.dd-date {
    font-size: 0.8rem;
    font-weight: 800;
    color: #111827;
}

.dd-event {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .dd-event.checkin {
        background: rgba(13,110,253,0.12);
        color: #0d6efd;
    }

    .dd-event.checkout {
        background: rgba(220,53,69,0.10);
        color: #dc3545;
    }

    .dd-event.cleaning {
        background: rgba(25,135,84,0.10);
        color: #198754;
    }

    .dd-event.maintenance {
        background: rgba(255,193,7,0.18);
        color: #9a6700;
    }

/* =========================================================
   Outcome Cards
   ========================================================= */

.dd-outcome-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 24px;
    padding: 1.4rem;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
}

.dd-outcome-number {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(13,110,253,0.08);
    color: #0d6efd;
    font-weight: 800;
    margin-bottom: 1rem;
}

.dd-outcome-card h3 {
    font-size: 1.06rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #111827;
    margin-bottom: 0.6rem;
}

.dd-outcome-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #667085;
}

/* =========================================================
   Final CTA
   ========================================================= */

.dd-final-cta-wrap {
    background: linear-gradient(180deg, rgba(13,110,253,0.03) 0%, rgba(255,255,255,0) 100%);
}

.dd-final-cta {
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.06);
}

    .dd-final-cta h2 {
        font-size: clamp(1.6rem, 2.5vw, 2.4rem);
        line-height: 1.1;
        letter-spacing: -0.03em;
        font-weight: 800;
        color: #111827;
    }

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 991.98px) {
    .dd-calendar-grid,
    .dd-calendar-header {
        gap: 0.4rem;
    }

    .dd-day {
        min-height: 100px;
        padding: 0.5rem;
    }

    .dd-event {
        font-size: 0.62rem;
        padding: 0.24rem 0.45rem;
    }
}

@media (max-width: 767.98px) {
    .dd-hero-title {
        font-size: 2.35rem;
    }

    .dd-hero-subtitle,
    .dd-section-subtitle {
        font-size: 1rem;
    }

    .dd-feature-card,
    .dd-outcome-card,
    .dd-calendar-showcase,
    .dd-final-cta {
        border-radius: 22px;
    }

    .dd-final-cta {
        padding: 1.25rem;
    }

    .dd-day {
        min-height: 84px;
        border-radius: 12px;
    }

    .dd-trust-pill {
        font-size: 0.82rem;
        padding: 0.52rem 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .dd-calendar-header div {
        font-size: 0.68rem;
    }

    .dd-day {
        min-height: 74px;
        padding: 0.42rem;
    }

    .dd-date {
        font-size: 0.72rem;
    }

    .dd-event {
        font-size: 0.58rem;
        padding: 0.2rem 0.38rem;
    }

    .dd-preview-list-item,
    .dd-trust-pill {
        padding: 0.7rem 0.75rem;
    }
}


/* =========================================================
   Premium full-width showcase
   ========================================================= */

.dd-showcase-shell {
    border-radius: 32px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
    margin-top: 2.5rem;
}

.dd-showcase-topbar {
    display: flex;
    align-items: center;
    padding: 0.95rem 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
}

.dd-showcase-body {
    padding: 1.25rem;
}

.dd-showcase-panel {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 24px;
    padding: 1.15rem;
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.dd-showcase-panel-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255,255,255,0.78);
    margin-bottom: 1rem;
}

.dd-showcase-kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.dd-showcase-kpi {
    background: rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 0.95rem;
}

.dd-showcase-kpi-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.66);
    margin-bottom: 0.4rem;
}

.dd-showcase-kpi-value {
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1;
}

.dd-showcase-chart {
    background: rgba(255,255,255,0.04);
    border-radius: 18px;
    padding: 1rem;
}

.dd-showcase-chart-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255,255,255,0.74);
    margin-bottom: 0.8rem;
}

.dd-showcase-bars {
    height: 130px;
    display: flex;
    align-items: end;
    gap: 0.5rem;
}

    .dd-showcase-bars span {
        flex: 1;
        border-radius: 999px 999px 0 0;
        background: linear-gradient(180deg, #60a5fa 0%, #2563eb 100%);
        animation: ddBarRise 1s ease both;
    }

@keyframes ddBarRise {
    from {
        height: 0 !important;
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

.dd-showcase-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.dd-showcase-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255,255,255,0.05);
    border-radius: 18px;
    padding: 0.9rem;
}

.dd-showcase-list-main {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
}

.dd-showcase-list-sub {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.68);
}

/* =========================================================
   Premium feature bands
   ========================================================= */

.dd-feature-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.dd-feature-band {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 30px;
    padding: 1.5rem;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

    .dd-feature-band:hover {
        transform: translateY(-2px);
        box-shadow: 0 24px 52px rgba(15, 23, 42, 0.09);
    }

    .dd-feature-band.alt {
        background: linear-gradient(135deg, rgba(13,110,253,0.03), rgba(111,66,193,0.04));
    }

.dd-feature-band-kicker {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0d6efd;
    margin-bottom: 0.55rem;
}

.dd-feature-band-copy h3 {
    font-size: clamp(1.5rem, 2vw, 2.15rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.8rem;
}

.dd-feature-band-copy p {
    font-size: 1rem;
    line-height: 1.75;
    color: #667085;
    margin-bottom: 0;
    max-width: 560px;
}

.dd-feature-visual {
    min-height: 240px;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 12px 30px rgba(15, 23, 42, 0.05);
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

    .dd-feature-visual::before,
    .dd-feature-visual::after {
        content: "";
        position: absolute;
        border-radius: 20px;
    }

    .dd-feature-visual.calendar::before {
        inset: 18px;
        background: linear-gradient(to right, rgba(13,110,253,0.08) 1px, transparent 1px) 0 0 / calc(100% / 7) 100%, linear-gradient(to bottom, rgba(15,23,42,0.06) 1px, transparent 1px) 0 0 / 100% calc(100% / 4);
    }

    .dd-feature-visual.calendar::after {
        width: 42%;
        height: 22%;
        top: 26%;
        left: 10%;
        background: rgba(13,110,253,0.12);
        box-shadow: 140px 20px 0 rgba(25,135,84,0.12), 80px 90px 0 rgba(220,53,69,0.10);
    }

    .dd-feature-visual.operations::before {
        inset: 22px;
        background: linear-gradient(180deg, rgba(15,23,42,0.05), rgba(15,23,42,0.02));
    }

    .dd-feature-visual.operations::after {
        width: 70%;
        height: 18px;
        top: 48px;
        left: 22px;
        background: rgba(13,110,253,0.14);
        box-shadow: 0 42px 0 rgba(25,135,84,0.12), 0 84px 0 rgba(245,158,11,0.14), 0 126px 0 rgba(239,68,68,0.10);
    }

    .dd-feature-visual.finance::before {
        inset: 22px;
        background: linear-gradient(180deg, rgba(15,23,42,0.03), rgba(15,23,42,0.01));
    }

    .dd-feature-visual.finance::after {
        width: 14%;
        bottom: 24px;
        left: 26px;
        height: 45%;
        background: linear-gradient(180deg, #60a5fa 0%, #2563eb 100%);
        box-shadow: 42px 18px 0 0 rgba(37,99,235,0.75), 84px -12px 0 0 rgba(37,99,235,0.78), 126px 10px 0 0 rgba(37,99,235,0.72), 168px -26px 0 0 rgba(37,99,235,0.85);
    }

/* =========================================================
   Responsive tweaks
   ========================================================= */

@media (max-width: 991.98px) {
    .dd-showcase-body {
        padding: 1rem;
    }

    .dd-feature-band {
        padding: 1.2rem;
    }

    .dd-feature-visual {
        min-height: 200px;
    }
}

@media (max-width: 767.98px) {
    .dd-showcase-shell,
    .dd-feature-band {
        border-radius: 22px;
    }

    .dd-showcase-kpi-grid {
        gap: 0.7rem;
    }

    .dd-showcase-kpi {
        border-radius: 14px;
        padding: 0.8rem;
    }

    .dd-showcase-kpi-value {
        font-size: 1.4rem;
    }

    .dd-feature-band-copy h3 {
        font-size: 1.45rem;
    }
}

.dd-feature-visual.maintenance::before {
    inset: 22px;
    background: linear-gradient(180deg, rgba(15,23,42,0.03), rgba(15,23,42,0.01));
}

.dd-feature-visual.maintenance::after {
    width: 64%;
    height: 16px;
    top: 40px;
    left: 22px;
    background: rgba(245,158,11,0.18);
    box-shadow: 0 38px 0 rgba(239,68,68,0.12), 48px 76px 0 rgba(13,110,253,0.12), 12px 114px 0 rgba(25,135,84,0.12);
}

/* =========================================================
   Public Sticky Topbar
   ========================================================= */

.dd-public-topbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(255,255,255,0.72);
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.03);
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

    .dd-public-topbar .container {
        overflow-x: clip;
    }

.dd-public-topbar-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0.65rem 0;
}

.dd-public-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #0f172a;
    font-weight: 800;
    letter-spacing: -0.02em;
    min-width: 0;
}

.dd-public-brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13,110,253,0.12), rgba(111,66,193,0.14));
    color: #0d6efd;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    flex: 0 0 auto;
}

.dd-public-brand-text {
    font-size: 1.02rem;
    white-space: nowrap;
}

.dd-public-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    flex-wrap: wrap;
    min-width: 0;
}

    .dd-public-actions .btn {
        border-radius: 999px;
        font-weight: 600;
        padding: 0.62rem 1rem;
        white-space: nowrap;
    }

    .dd-public-actions .btn-primary {
        box-shadow: 0 10px 22px rgba(13,110,253,0.18);
    }

@media (max-width: 575.98px) {
    .dd-public-topbar-inner {
        min-height: auto;
        gap: 0.75rem;
        align-items: stretch;
    }

    .dd-public-brand {
        width: 100%;
        justify-content: center;
    }

    .dd-public-brand-text {
        font-size: 0.98rem;
    }

    .dd-public-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

        .dd-public-actions .btn {
            width: 100%;
            min-width: 0;
            padding: 0.56rem 0.75rem;
        }

            .dd-public-actions .btn:last-child {
                grid-column: 1 / -1;
            }

            .dd-public-actions .btn i {
                margin-right: 0.35rem !important;
            }
}

/* =========================================================
   Stripe Polish Pass
   ========================================================= */

/* softer global rhythm */
.dd-home-hero {
    background: radial-gradient(circle at top left, rgba(13, 110, 253, 0.11), transparent 24%), radial-gradient(circle at top right, rgba(111, 66, 193, 0.08), transparent 22%), linear-gradient(180deg, #fbfdff 0%, #f6f9fd 52%, #eef4fb 100%);
}

.dd-hero-title {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.dd-hero-subtitle {
    max-width: 700px;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* =========================================================
   Sticky public nav refinement
   ========================================================= */

.dd-public-topbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(255,255,255,0.72);
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.03);
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.dd-public-topbar-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.dd-public-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #0f172a;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.dd-public-brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13,110,253,0.12), rgba(111,66,193,0.14));
    color: #0d6efd;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.dd-public-brand-text {
    font-size: 1.02rem;
}

.dd-public-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .dd-public-actions .btn {
        border-radius: 999px;
        font-weight: 600;
        padding: 0.62rem 1rem;
    }

    .dd-public-actions .btn-primary {
        box-shadow: 0 10px 22px rgba(13,110,253,0.18);
    }

/* =========================================================
   Button polish
   ========================================================= */

.btn {
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

    .btn:hover {
        transform: translateY(-1px);
    }

.btn-primary {
    box-shadow: 0 14px 28px rgba(13,110,253,0.16);
}

    .btn-primary:hover {
        box-shadow: 0 18px 34px rgba(13,110,253,0.22);
    }

.btn-outline-dark:hover,
.btn-outline-primary:hover {
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

/* =========================================================
   Trust pills refinement
   ========================================================= */

.dd-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.dd-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 999px;
    padding: 0.62rem 0.95rem;
    color: #4b5563;
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

/* =========================================================
   Showcase refinement
   ========================================================= */

.dd-showcase-shell {
    border-radius: 34px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
    margin-top: 2.75rem;
}

.dd-showcase-topbar {
    display: flex;
    align-items: center;
    padding: 0.95rem 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
}

.dd-showcase-body {
    padding: 1.35rem;
}

.dd-showcase-panel {
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.045));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 26px;
    padding: 1.15rem;
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .dd-showcase-panel:hover {
        transform: translateY(-2px);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 16px 36px rgba(0,0,0,0.12);
    }

.dd-showcase-panel-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255,255,255,0.80);
    margin-bottom: 1rem;
}

.dd-showcase-kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.dd-showcase-kpi {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 18px;
    padding: 0.95rem;
}

.dd-showcase-kpi-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.66);
    margin-bottom: 0.4rem;
}

.dd-showcase-kpi-value {
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1;
}

.dd-showcase-chart {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 18px;
    padding: 1rem;
}

.dd-showcase-chart-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255,255,255,0.74);
    margin-bottom: 0.8rem;
}

.dd-showcase-bars {
    height: 130px;
    display: flex;
    align-items: end;
    gap: 0.5rem;
}

    .dd-showcase-bars span {
        flex: 1;
        border-radius: 999px 999px 0 0;
        background: linear-gradient(180deg, #7cc0ff 0%, #2563eb 100%);
        animation: ddBarRise 1s ease both;
    }

@keyframes ddBarRise {
    from {
        height: 0 !important;
        opacity: 0.45;
    }

    to {
        opacity: 1;
    }
}

.dd-showcase-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.dd-showcase-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 18px;
    padding: 0.9rem;
}

.dd-showcase-list-main {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
}

.dd-showcase-list-sub {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.68);
}

/* =========================================================
   Feature bands refinement
   ========================================================= */

.dd-feature-stack {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.dd-feature-band {
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 32px;
    padding: 1.6rem;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .dd-feature-band:hover {
        transform: translateY(-2px);
        box-shadow: 0 24px 52px rgba(15, 23, 42, 0.08);
    }

    .dd-feature-band.alt {
        background: linear-gradient(135deg, rgba(13,110,253,0.035), rgba(111,66,193,0.05));
    }

.dd-feature-band-kicker {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0d6efd;
    margin-bottom: 0.55rem;
}

.dd-feature-band-copy h3 {
    font-size: clamp(1.55rem, 2vw, 2.2rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.8rem;
    max-width: 520px;
}

.dd-feature-band-copy p {
    font-size: 1rem;
    line-height: 1.78;
    color: #667085;
    margin-bottom: 0;
    max-width: 560px;
}

.dd-feature-visual {
    min-height: 250px;
    border-radius: 26px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.85), 0 14px 34px rgba(15, 23, 42, 0.05);
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

    .dd-feature-visual::before,
    .dd-feature-visual::after {
        content: "";
        position: absolute;
        border-radius: 22px;
    }

    /* calendar visual */
    .dd-feature-visual.calendar::before {
        inset: 18px;
        background: linear-gradient(to right, rgba(13,110,253,0.08) 1px, transparent 1px) 0 0 / calc(100% / 7) 100%, linear-gradient(to bottom, rgba(15,23,42,0.06) 1px, transparent 1px) 0 0 / 100% calc(100% / 4);
    }

    .dd-feature-visual.calendar::after {
        width: 42%;
        height: 22%;
        top: 26%;
        left: 10%;
        background: rgba(13,110,253,0.12);
        box-shadow: 140px 20px 0 rgba(25,135,84,0.12), 80px 90px 0 rgba(220,53,69,0.10);
    }

    /* operations visual */
    .dd-feature-visual.operations::before {
        inset: 22px;
        background: linear-gradient(180deg, rgba(15,23,42,0.045), rgba(15,23,42,0.015));
    }

    .dd-feature-visual.operations::after {
        width: 72%;
        height: 18px;
        top: 44px;
        left: 22px;
        background: rgba(13,110,253,0.14);
        box-shadow: 0 40px 0 rgba(25,135,84,0.12), 0 80px 0 rgba(245,158,11,0.14), 0 120px 0 rgba(239,68,68,0.10);
    }

    /* finance visual */
    .dd-feature-visual.finance::before {
        inset: 22px;
        background: linear-gradient(180deg, rgba(15,23,42,0.03), rgba(15,23,42,0.01));
    }

    .dd-feature-visual.finance::after {
        width: 14%;
        bottom: 24px;
        left: 26px;
        height: 45%;
        background: linear-gradient(180deg, #60a5fa 0%, #2563eb 100%);
        box-shadow: 42px 18px 0 0 rgba(37,99,235,0.75), 84px -12px 0 0 rgba(37,99,235,0.78), 126px 10px 0 0 rgba(37,99,235,0.72), 168px -26px 0 0 rgba(37,99,235,0.85);
    }

    /* maintenance visual */
    .dd-feature-visual.maintenance::before {
        inset: 22px;
        background: linear-gradient(180deg, rgba(15,23,42,0.03), rgba(15,23,42,0.01));
    }

    .dd-feature-visual.maintenance::after {
        width: 64%;
        height: 16px;
        top: 40px;
        left: 22px;
        background: rgba(245,158,11,0.18);
        box-shadow: 0 38px 0 rgba(239,68,68,0.12), 48px 76px 0 rgba(13,110,253,0.12), 12px 114px 0 rgba(25,135,84,0.12);
    }

/* =========================================================
   Highlight/calendar refinement
   ========================================================= */

.dd-highlight-section {
    background: linear-gradient(180deg, rgba(13,110,253,0.03) 0%, rgba(255,255,255,0) 100%);
}

.dd-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.dd-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: #374151;
    font-size: 0.98rem;
    line-height: 1.55;
}

    .dd-benefit-item i {
        color: #198754;
        font-size: 1rem;
        margin-top: 0.1rem;
    }

.dd-calendar-showcase {
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 28px;
    padding: 1.15rem;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.05);
}

.dd-calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.7rem;
}

    .dd-calendar-header div {
        text-align: center;
        font-size: 0.78rem;
        font-weight: 700;
        color: #6b7280;
        padding-bottom: 0.35rem;
    }

.dd-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.dd-day {
    min-height: 125px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 16px;
    padding: 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

    .dd-day.busy {
        background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
        border-color: rgba(13,110,253,0.10);
        box-shadow: 0 8px 20px rgba(13,110,253,0.05);
    }

.dd-date {
    font-size: 0.8rem;
    font-weight: 800;
    color: #111827;
}

.dd-event {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* =========================================================
   Outcome lines instead of cards
   ========================================================= */

.dd-outcome-line {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

    .dd-outcome-line h3 {
        font-size: 1.08rem;
        font-weight: 800;
        letter-spacing: -0.01em;
        color: #111827;
        margin-bottom: 0.45rem;
    }

    .dd-outcome-line p {
        margin-bottom: 0;
        font-size: 0.96rem;
        line-height: 1.65;
        color: #667085;
    }

.dd-outcome-number {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(13,110,253,0.07);
    color: #0d6efd;
    font-weight: 800;
}

/* deactivate old card style if still present */
.dd-outcome-card {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

/* =========================================================
   Final CTA refinement
   ========================================================= */

.dd-final-cta-wrap {
    background: linear-gradient(180deg, rgba(13,110,253,0.03) 0%, rgba(255,255,255,0) 100%);
}

.dd-final-cta {
    background: linear-gradient(135deg, rgba(255,255,255,0.88), rgba(248,251,255,0.92));
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 30px;
    padding: 2.2rem;
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .dd-final-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 24px 52px rgba(15, 23, 42, 0.07);
    }

    .dd-final-cta h2 {
        font-size: clamp(1.7rem, 2.5vw, 2.5rem);
        line-height: 1.08;
        letter-spacing: -0.03em;
        font-weight: 800;
        color: #111827;
    }

/* =========================================================
   Status pills polish
   ========================================================= */

.dd-status-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.34rem 0.6rem;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
}

    .dd-status-pill.primary {
        background: rgba(13,110,253,0.18);
        color: #93c5fd;
    }

    .dd-status-pill.warning {
        background: rgba(245,158,11,0.18);
        color: #fcd34d;
    }

    .dd-status-pill.danger {
        background: rgba(239,68,68,0.18);
        color: #fca5a5;
    }

    .dd-status-pill.info {
        background: rgba(6,182,212,0.18);
        color: #67e8f9;
    }

/* =========================================================
   Responsive polish
   ========================================================= */

@media (max-width: 991.98px) {
    .dd-showcase-body {
        padding: 1rem;
    }

    .dd-feature-band {
        padding: 1.2rem;
    }

    .dd-feature-visual {
        min-height: 210px;
    }

    .dd-calendar-grid,
    .dd-calendar-header {
        gap: 0.4rem;
    }

    .dd-day {
        min-height: 100px;
        padding: 0.5rem;
    }

    .dd-event {
        font-size: 0.62rem;
        padding: 0.24rem 0.45rem;
    }

    .dd-final-cta {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .dd-public-topbar-inner {
        min-height: 66px;
    }

    .dd-public-brand-text {
        font-size: 0.98rem;
    }

    .dd-public-actions {
        gap: 0.5rem;
    }

        .dd-public-actions .btn {
            padding: 0.56rem 0.82rem;
        }

    .dd-showcase-shell,
    .dd-feature-band,
    .dd-calendar-showcase,
    .dd-final-cta {
        border-radius: 22px;
    }

    .dd-showcase-kpi {
        border-radius: 14px;
        padding: 0.8rem;
    }

    .dd-showcase-kpi-value {
        font-size: 1.4rem;
    }

    .dd-feature-band-copy h3 {
        font-size: 1.45rem;
    }

    .dd-day {
        min-height: 84px;
        border-radius: 12px;
    }
}

@media (max-width: 575.98px) {
    .dd-calendar-header div {
        font-size: 0.68rem;
    }

    .dd-day {
        min-height: 74px;
        padding: 0.42rem;
    }

    .dd-date {
        font-size: 0.72rem;
    }

    .dd-event {
        font-size: 0.58rem;
        padding: 0.2rem 0.38rem;
    }

    .dd-trust-pill,
    .dd-showcase-list-item {
        padding: 0.72rem 0.76rem;
    }

    .dd-outcome-line {
        gap: 0.8rem;
    }
}

/* =========================================================
   Login page spacing tighten-up
   ========================================================= */

.dd-login-page {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
}

.dd-login-row {
    min-height: calc(100vh - 140px);
}

.dd-login-shell {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dd-login-card {
    width: 100%;
}

.dd-login-header {
    padding-top: 0.15rem;
}

.dd-login-kicker {
    margin-top: 0;
}

.dd-login-title {
    margin-top: 0;
}

.dd-login-subtitle {
    max-width: 390px;
}

.dd-login-card .card-body {
    padding-top: 1.75rem !important;
    padding-bottom: 1.5rem !important;
}

.dd-login-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.dd-login-trust-item {
    justify-content: center;
    text-align: center;
}

@media (max-width: 991.98px) {
    .dd-login-page {
        min-height: auto;
        display: block;
    }

    .dd-login-row {
        min-height: auto;
    }
}

@media (max-width: 767.98px) {
    .dd-login-card .card-body {
        padding-top: 1.35rem !important;
        padding-bottom: 1.2rem !important;
    }

    .dd-login-subtitle {
        max-width: 320px;
    }
}

/* =========================================================
   Pricing Section
   ========================================================= */

.dd-pricing-wrap {
    background: linear-gradient(180deg, rgba(13,110,253,0.025) 0%, rgba(255,255,255,0) 100%);
}

.dd-pricing-card {
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 32px;
    padding: 1.5rem;
    box-shadow: 0 22px 54px rgba(15, 23, 42, 0.06);
}

.dd-pricing-kicker {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0d6efd;
}

.dd-pricing-headline {
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #111827;
}

    .dd-pricing-headline span {
        color: #0d6efd;
    }

.dd-pricing-copy {
    font-size: 1rem;
    line-height: 1.75;
    color: #667085;
    max-width: 580px;
}

.dd-pricing-points {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.dd-pricing-point {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: #374151;
    line-height: 1.55;
    font-size: 0.96rem;
}

    .dd-pricing-point i {
        color: #198754;
        margin-top: 0.1rem;
        font-size: 1rem;
    }

.dd-price-panel {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(13,110,253,0.08);
    border-radius: 28px;
    padding: 1.4rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.85), 0 16px 36px rgba(15, 23, 42, 0.05);
    text-align: center;
}

.dd-price-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(13,110,253,0.10);
    color: #0d6efd;
    font-size: 0.78rem;
    font-weight: 700;
}

.dd-price-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.dd-price-free {
    font-size: clamp(2.5rem, 4vw, 3.6rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: #111827;
}

.dd-price-term {
    font-size: 0.95rem;
    color: #667085;
    font-weight: 600;
}

.dd-price-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(15,23,42,0.10), transparent);
}

.dd-price-next-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.dd-price-next-value {
    font-size: 2.6rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #0d6efd;
}

.dd-price-next-term {
    font-size: 0.95rem;
    color: #667085;
    font-weight: 600;
    margin-top: 0.2rem;
}

.dd-price-note {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #6b7280;
}

@media (min-width: 768px) {
    .dd-pricing-card {
        padding: 2rem;
    }

    .dd-price-panel {
        padding: 1.6rem;
    }
}

@media (max-width: 767.98px) {
    .dd-pricing-card,
    .dd-price-panel {
        border-radius: 22px;
    }

    .dd-pricing-headline {
        font-size: 2rem;
    }

    .dd-pricing-copy,
    .dd-pricing-point {
        font-size: 0.95rem;
    }
}
.dd-pricing-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.dd-pricing-highlight-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    background: rgba(13,110,253,0.08);
    border: 1px solid rgba(13,110,253,0.10);
    color: #0d6efd;
    font-size: 0.88rem;
    font-weight: 700;
}

    .dd-pricing-highlight-pill i {
        font-size: 0.95rem;
    }

/* =========================================================
   Donna Butterfield Real Estate
   ========================================================= */

.db-hero-modern {
    background: radial-gradient(circle at top left, rgba(13,110,253,0.10), transparent 24%), radial-gradient(circle at top right, rgba(111,66,193,0.08), transparent 22%), linear-gradient(180deg, #fbfdff 0%, #f6f9fd 52%, #eef4fb 100%);
}

.db-kicker,
.db-section-kicker {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0d6efd;
}

.db-hero-title {
    font-size: clamp(2.4rem, 4vw, 4.4rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    font-weight: 800;
    color: #111827;
    max-width: 780px;
}

.db-hero-subtitle,
.db-section-subtitle {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #667085;
    max-width: 760px;
}

.db-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.db-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(15,23,42,0.05);
    border-radius: 999px;
    padding: 0.62rem 0.95rem;
    color: #4b5563;
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(15,23,42,0.04);
}

.db-hero-photo-card {
    border-radius: 30px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 30px 80px rgba(15,23,42,0.20);
}

.db-hero-photo-topbar {
    display: flex;
    align-items: center;
    padding: 0.95rem 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
}

.db-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    margin-right: 0.35rem;
}

.db-hero-photo-body {
    padding: 1rem;
}

.db-photo-placeholder {
    min-height: 460px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.38)), linear-gradient(135deg, #9bd0ff 0%, #7bc5f4 22%, #7ec7c2 45%, #e8d8a6 70%, #c6b08f 100%);
}

    .db-photo-placeholder::before {
        content: "";
        position: absolute;
        inset: auto 0 0 0;
        height: 40%;
        background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.10) 100%);
    }

.db-photo-overlay {
    position: absolute;
    inset: auto 1.1rem 1.1rem 1.1rem;
    z-index: 2;
}

.db-photo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
    margin-bottom: 0.75rem;
}

.db-photo-text {
    color: #fff;
    font-size: 0.98rem;
    line-height: 1.6;
    max-width: 420px;
}

.db-info-strip {
    margin-top: 1.5rem;
}

.db-info-pill {
    height: 100%;
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.80);
    border: 1px solid rgba(15,23,42,0.05);
    box-shadow: 0 10px 26px rgba(15,23,42,0.05);
}

.db-info-pill-label {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0d6efd;
    margin-bottom: 0.35rem;
}

.db-info-pill-value {
    font-size: 0.98rem;
    line-height: 1.5;
    color: #374151;
    font-weight: 600;
}

.db-section-title {
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}

.db-feature-card {
    background: #fff;
    border: 1px solid rgba(15,23,42,0.06);
    border-radius: 24px;
    padding: 1.4rem;
    box-shadow: 0 14px 36px rgba(15,23,42,0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

    .db-feature-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 42px rgba(15,23,42,0.09);
    }

.db-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.db-feature-card h3 {
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #111827;
    margin-bottom: 0.6rem;
}

.db-feature-card p {
    margin-bottom: 0;
    font-size: 0.96rem;
    line-height: 1.65;
    color: #667085;
}

.db-alt-section {
    background: linear-gradient(180deg, rgba(13,110,253,0.03) 0%, rgba(255,255,255,0) 100%);
}

.db-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.db-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: #374151;
    font-size: 0.98rem;
    line-height: 1.55;
}

    .db-benefit-item i {
        color: #198754;
        font-size: 1rem;
        margin-top: 0.1rem;
    }

.db-side-panel {
    background: rgba(255,255,255,0.90);
    border: 1px solid rgba(15,23,42,0.05);
    border-radius: 28px;
    padding: 1.5rem;
    box-shadow: 0 18px 42px rgba(15,23,42,0.05);
}

.db-side-panel-title {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0d6efd;
    margin-bottom: 0.5rem;
}

.db-side-panel-headline {
    font-size: clamp(1.5rem, 2.2vw, 2.15rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.8rem;
}

.db-side-panel-copy {
    font-size: 1rem;
    line-height: 1.75;
    color: #667085;
    margin-bottom: 1rem;
}

.db-side-panel-points {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.db-side-panel-point {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #374151;
    font-size: 0.95rem;
    font-weight: 600;
}

    .db-side-panel-point i {
        color: #0d6efd;
    }

.db-listing-card {
    background: #fff;
    border: 1px solid rgba(15,23,42,0.06);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(15,23,42,0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

    .db-listing-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 42px rgba(15,23,42,0.09);
    }

.db-listing-image {
    height: 190px;
    background: linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.20)), linear-gradient(135deg, #7fc7ff 0%, #7cc8b6 40%, #e7d7aa 75%, #c9b08d 100%);
}

    .db-listing-image.alt {
        background: linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.20)), linear-gradient(135deg, #9fd8ff 0%, #7ecae5 35%, #8ad0b5 60%, #ead8b0 100%);
    }

    .db-listing-image.third {
        background: linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.20)), linear-gradient(135deg, #88c8ff 0%, #69b7ff 28%, #8dc7c7 55%, #e6d39e 100%);
    }

.db-listing-body {
    padding: 1.25rem;
}

.db-listing-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(13,110,253,0.08);
    color: #0d6efd;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.db-listing-card h3 {
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #111827;
    margin-bottom: 0.6rem;
}

.db-listing-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #667085;
    margin-bottom: 0.8rem;
}

.db-inline-link {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 700;
}

    .db-inline-link:hover {
        text-decoration: underline;
    }

.db-lifestyle-section {
    background: linear-gradient(180deg, rgba(13,110,253,0.02) 0%, rgba(255,255,255,0) 100%);
}

.db-lifestyle-photo {
    min-height: 320px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.22)), linear-gradient(135deg, #8bd0ff 0%, #74c0f3 25%, #7ecab7 45%, #ead8ac 78%, #c5ae88 100%);
    box-shadow: 0 20px 46px rgba(15,23,42,0.08);
}

.db-final-cta-wrap {
    background: linear-gradient(180deg, rgba(13,110,253,0.03) 0%, rgba(255,255,255,0) 100%);
}

.db-final-cta {
    background: linear-gradient(135deg, rgba(255,255,255,0.88), rgba(248,251,255,0.92));
    border: 1px solid rgba(15,23,42,0.04);
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 20px 46px rgba(15,23,42,0.05);
}

    .db-final-cta h2 {
        font-size: clamp(1.7rem, 2.5vw, 2.5rem);
        line-height: 1.08;
        letter-spacing: -0.03em;
        font-weight: 800;
        color: #111827;
    }

@media (max-width: 991.98px) {
    .db-photo-placeholder {
        min-height: 360px;
    }

    .db-lifestyle-photo {
        min-height: 260px;
    }
}

@media (max-width: 767.98px) {
    .db-hero-title {
        font-size: 2.4rem;
    }

    .db-hero-subtitle,
    .db-section-subtitle {
        font-size: 1rem;
    }

    .db-feature-card,
    .db-side-panel,
    .db-listing-card,
    .db-final-cta,
    .db-hero-photo-card {
        border-radius: 22px;
    }

    .db-final-cta {
        padding: 1.35rem;
    }

    .db-photo-placeholder {
        min-height: 300px;
    }
}
.dd-showcase-body img,
.dd-feature-visual img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.10);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.dd-feature-visual img {
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .dd-feature-visual img:hover {
        transform: translateY(-6px) scale(1.01);
        box-shadow: 0 35px 80px rgba(0,0,0,0.15);
    }
#galleryPrevBtn,
#galleryNextBtn {
    transition: opacity 0.2s ease;
    opacity: 0.6;
}

    #galleryPrevBtn:hover,
    #galleryNextBtn:hover {
        opacity: 1;
    }

.maintenance-needs-review td {
    background-color: #fff8e1 !important;
}

.maintenance-card-active {
    transform: translateY(-1px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.08);
}

.maintenance-total {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.maintenance-open {
    background: linear-gradient(180deg, #fffdf5 0%, #fff8e1 100%);
}

.maintenance-completed {
    background: linear-gradient(180deg, #f8fff9 0%, #edf9f0 100%);
}

.maintenance-needsreview {
    background: linear-gradient(180deg, #fffaf2 0%, #fff3cd 100%);
}

.maintenance-reviewed {
    background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.badge-needsreview {
    background-color: #fd7e14; /* Bootstrap orange */
    color: #fff;
}
.maintenance-needsreview {
    background: linear-gradient(180deg, #fff4e6 0%, #ffe8cc 100%);
}

/* Needs Review row highlight */
.maintenance-needs-review td {
    background-color: #fff4e6 !important; /* light orange */
}

/* Optional: hover polish */
.maintenance-needs-review:hover td {
    background-color: #ffe8cc !important;
}

.db-contact-hero {
    background: radial-gradient(circle at top left, rgba(13, 110, 253, 0.10), transparent 30%), radial-gradient(circle at top right, rgba(111, 66, 193, 0.10), transparent 28%), linear-gradient(180deg, #f8fbff 0%, #f6f8fb 45%, #f8fafc 100%);
}

.db-contact-profile-card {
    background: linear-gradient(180deg, #172033 0%, #101827 100%);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 1rem 2.5rem rgba(16, 24, 39, 0.18);
}

.db-contact-profile-topbar {
    display: flex;
    align-items: center;
    padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.db-contact-profile-body {
    padding: 1.25rem 1.25rem 1.5rem;
    color: #fff;
}

.db-contact-photo-placeholder {
    min-height: 320px;
    border-radius: 1.2rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)), linear-gradient(180deg, #80bfff 0%, #3a7bd5 55%, #1f4f8c 100%);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

    .db-contact-photo-placeholder::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 15%, rgba(255,255,255,0.25), transparent 22%), radial-gradient(circle at 80% 25%, rgba(255,255,255,0.18), transparent 18%), linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.14) 100%);
    }

.db-contact-photo-overlay {
    position: absolute;
    inset: auto 1.2rem 1.2rem 1.2rem;
    z-index: 2;
}

.db-contact-badge {
    display: inline-block;
    background: rgba(255,255,255,0.16);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.9rem;
}

.db-contact-photo-text {
    max-width: 320px;
    color: rgba(255,255,255,0.95);
    font-size: 1rem;
    line-height: 1.5;
}

.db-contact-identity h3 {
    font-size: 1.45rem;
    font-weight: 700;
}

.db-contact-mini-details {
    display: grid;
    gap: 0.9rem;
}

.db-contact-mini-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255,255,255,0.92);
    line-height: 1.5;
}

    .db-contact-mini-item i {
        color: #8cc8ff;
        margin-top: 0.15rem;
    }

    .db-contact-mini-item a {
        color: rgba(255,255,255,0.92);
    }

.db-contact-badge-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
}

.db-cred-badge {
    height: 38px;
    width: auto;
    object-fit: contain;
    background: rgba(255,255,255,0.92);
    border-radius: 0.8rem;
    padding: 0.35rem 0.5rem;
    box-shadow: 0 0.35rem 1rem rgba(0,0,0,0.12);
}

.db-contact-form-card {
    border-radius: 1.4rem;
    overflow: hidden;
    box-shadow: 0 1rem 2.5rem rgba(15, 23, 42, 0.08);
}

    .db-contact-form-card .form-control,
    .db-contact-form-card .form-select {
        border-radius: 0.9rem;
        border-color: #dde5f0;
        box-shadow: none;
    }

        .db-contact-form-card .form-control:focus,
        .db-contact-form-card .form-select:focus {
            border-color: rgba(13,110,253,.45);
            box-shadow: 0 0 0 0.2rem rgba(13,110,253,.10);
        }

.contact-interest-card {
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

    .contact-interest-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 1rem 2rem rgba(15, 23, 42, 0.08);
    }

.db-contact-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.92);
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.08);
}

    .db-contact-note i {
        color: #ffb3c7;
        margin-top: 0.1rem;
    }

@media (max-width: 991.98px) {
    .db-contact-photo-placeholder {
        min-height: 260px;
    }

    .db-contact-badge-strip {
        gap: 0.65rem;
    }

    .db-cred-badge {
        height: 34px;
    }
}

.db-photo-real {
    background-size: cover;
    background-position: center 65%;
    background-repeat: no-repeat;
}

.db-contact-photo-real {
    background-size: cover;
    background-position: center 65%;
    background-repeat: no-repeat;
}

.db-lifestyle-photo {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.form-check-input:checked {
    accent-color: red;
}

/* =========================================================
   Cleaning Tasks Polish
   ========================================================= */

.cleaning-summary-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    padding: 0.85rem 1rem;
    box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.06);
    height: 100%;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .cleaning-summary-card:hover {
        transform: translateY(-1px);
        box-shadow: 0 0.35rem 1rem rgba(0,0,0,0.08);
    }

.cleaning-summary-label {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.cleaning-summary-value {
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.1;
}

.cleaning-summary-danger {
    border-left: 4px solid #dc3545;
}

.cleaning-summary-secondary {
    border-left: 4px solid #6c757d;
}

.cleaning-summary-primary {
    border-left: 4px solid #0d6efd;
}

.cleaning-summary-info {
    border-left: 4px solid #0dcaf0;
}

.cleaning-summary-success {
    border-left: 4px solid #198754;
}

.cleaning-summary-light {
    border-left: 4px solid #adb5bd;
}

.status-pill,
.mini-pill {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    line-height: 1;
    border-radius: 999px;
    white-space: nowrap;
}

.status-pill {
    padding: 0.45rem 0.75rem;
    font-size: 0.78rem;
}

.mini-pill {
    padding: 0.25rem 0.55rem;
    font-size: 0.72rem;
}

.status-pill-pending {
    background: #e9ecef;
    color: #495057;
}

.status-pill-assigned {
    background: #dbeafe;
    color: #0b5ed7;
}

.status-pill-confirmed {
    background: #cff4fc;
    color: #055160;
}

.status-pill-completed {
    background: #d1e7dd;
    color: #0f5132;
}

.status-pill-skipped {
    background: #dee2e6;
    color: #212529;
}

.mini-pill-primary {
    background: #dbeafe;
    color: #0b5ed7;
}

.mini-pill-danger {
    background: #f8d7da;
    color: #842029;
}

.cleaning-row-unassigned {
    box-shadow: inset 4px 0 0 #dc3545;
    background-color: #fff5f5;
}

.cleaning-row-today {
    background-color: #fff9db;
}

.cleaning-row-confirmed {
    background-color: #eefcff;
}

.cleaning-row-completed {
    background-color: #f1fff7;
}

.cleaning-table td,
.cleaning-table th {
    vertical-align: middle;
}

.cleaning-timeline div {
    margin-bottom: 0.15rem;
}

.cleaning-timeline span {
    font-weight: 600;
}

.cleaning-notes {
    max-width: 280px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 991.98px) {
    .cleaning-notes {
        max-width: 180px;
    }

    .cleaning-summary-value {
        font-size: 1.2rem;
    }
}

.quick-clean-page {
    min-height: 100dvh;
}

    .quick-clean-page .card {
        border-radius: 1.25rem;
    }

    .quick-clean-page .form-control,
    .quick-clean-page .btn {
        font-size: 1rem;
    }

    .quick-clean-page .badge {
        font-size: 0.9rem;
    }

/* =========================================================
   Global Polish Pass
   ========================================================= */

/* App rhythm */
main.container {
    padding-top: 0.35rem;
    padding-bottom: 1.25rem;
}

/* Sticky navbar layering */
.app-navbar {
    z-index: 1040;
}

/* Dropdowns above page chrome */
.navbar .dropdown-menu {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 1rem;
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.10);
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
    z-index: 1055;
}

.navbar .dropdown-item {
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
    font-weight: 500;
}

    .navbar .dropdown-item:hover,
    .navbar .dropdown-item:focus {
        background-color: #f8f9fa;
    }

/* Shared cards */
.card {
    border-radius: 1rem;
    border-color: rgba(0,0,0,0.08);
    box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.05);
}

    .card .card-header {
        background: #fff;
        border-bottom-color: rgba(0,0,0,0.06);
    }

/* Shared buttons */
.btn {
    border-radius: 0.8rem;
    font-weight: 500;
}

.btn-sm {
    border-radius: 0.7rem;
}

/* Safer badge contrast */
.badge {
    font-weight: 600;
    letter-spacing: 0.01em;
}

    .badge.bg-success,
    .badge.bg-primary,
    .badge.bg-secondary,
    .badge.bg-danger,
    .badge.bg-dark,
    .badge.text-bg-success,
    .badge.text-bg-primary,
    .badge.text-bg-secondary,
    .badge.text-bg-danger,
    .badge.text-bg-dark {
        color: #fff !important;
    }

    /* Light badges still readable */
    .badge.text-bg-light,
    .badge.bg-light {
        color: #212529 !important;
    }

/* Shared table polish */
.table {
    --bs-table-bg: transparent;
}

    .table thead th {
        font-size: 0.82rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        color: #6c757d;
        border-bottom-width: 1px;
        white-space: nowrap;
    }

    .table tbody td {
        padding-top: 0.9rem;
        padding-bottom: 0.9rem;
    }

.table-hover tbody tr:hover > * {
    background-color: #f8fafc;
}

/* Table wrappers / admin shells */
.table-responsive,
.ops-table-wrap,
.ops-table-scroll {
    border-radius: 1rem;
}

/* Shared page header rhythm */
h1.h3,
h2.h4,
h2.h5 {
    letter-spacing: -0.02em;
}

.text-muted.small {
    line-height: 1.45;
}

/* Summary/stat cards feel more premium */
.dashboard-card,
.kpi-card,
.property-summary-card,
.cleaning-summary-card,
.admin-card {
    border-radius: 1rem;
}

/* Alert polish */
.alert {
    border-radius: 1rem;
    border-width: 1px;
}

/* Form controls */
.form-control,
.form-select {
    border-radius: 0.8rem;
    border-color: #dbe2ea;
}

    .form-control:focus,
    .form-select:focus {
        border-color: rgba(13,110,253,.45);
        box-shadow: 0 0 0 0.2rem rgba(13,110,253,.10);
    }

/* Feedback button */
.feedback-btn {
    box-shadow: 0 0.5rem 1.25rem rgba(0,0,0,0.18);
}

/* Mobile polish */
@media (max-width: 767.98px) {
    main.container {
        padding-top: 0.2rem;
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }

    .card {
        border-radius: 0.9rem;
    }

    .table tbody td {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .navbar .dropdown-menu {
        border-radius: 0.85rem;
    }
}

/* Clickable card hover restore */
.dashboard-link,
a.text-decoration-none.text-reset {
    display: block;
}

    .dashboard-link .card,
    a.text-decoration-none.text-reset .card {
        transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
        cursor: pointer;
    }

    .dashboard-link:hover .card,
    .dashboard-link:focus .card,
    a.text-decoration-none.text-reset:hover .card,
    a.text-decoration-none.text-reset:focus .card {
        transform: translateY(-2px);
        box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,0.10);
    }

    .dashboard-link:hover .click-hint,
    .dashboard-link:focus .click-hint,
    a.text-decoration-none.text-reset:hover .click-hint,
    a.text-decoration-none.text-reset:focus .click-hint {
        text-decoration: underline;
    }