:root {
    --lt-ink: #17212b;
    --lt-muted: #64748b;
    --lt-primary: #1f6f8b;
    --lt-primary-dark: #15556d;
    --lt-accent: #d9933d;
    --lt-surface: #f7faf9;
    --lt-border: #dbe5e3;
}

body {
    margin: 0;
    color: var(--lt-ink);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #ffffff;
}

.navbar {
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(219, 229, 227, 0.8);
}

.brand-mark {
    display: inline-grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border-radius: 0.45rem;
    color: #fff;
    background: var(--lt-primary);
    font-weight: 800;
}

.btn-primary {
    --bs-btn-bg: var(--lt-primary);
    --bs-btn-border-color: var(--lt-primary);
    --bs-btn-hover-bg: var(--lt-primary-dark);
    --bs-btn-hover-border-color: var(--lt-primary-dark);
}

.btn-outline-primary {
    --bs-btn-color: var(--lt-primary);
    --bs-btn-border-color: var(--lt-primary);
    --bs-btn-hover-bg: var(--lt-primary);
    --bs-btn-hover-border-color: var(--lt-primary);
}

.hero {
    min-height: 72vh;
    display: grid;
    align-items: center;
    background:
        linear-gradient(110deg, rgba(12, 28, 36, 0.88), rgba(31, 111, 139, 0.68)),
        url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1800&q=80") center/cover;
    color: #fff;
}

.hero .lead {
    color: rgba(255, 255, 255, 0.86);
}

.hero-panel {
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 50px rgba(10, 25, 35, 0.18);
}

.section-band {
    background: var(--lt-surface);
}

.feature-card,
.metric-card,
.auth-panel,
.dashboard-panel {
    border: 1px solid var(--lt-border);
    border-radius: 0.5rem;
    background: #fff;
    box-shadow: 0 14px 35px rgba(23, 33, 43, 0.06);
}

.feature-card,
.metric-card,
.dashboard-panel {
    padding: 1.25rem;
}

.auth-panel {
    padding: clamp(1.25rem, 3vw, 2rem);
}

.icon-pill {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-grid;
    place-items: center;
    border-radius: 0.5rem;
    color: var(--lt-primary);
    background: rgba(31, 111, 139, 0.1);
}

.price {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
}

.small-muted,
.text-muted-soft {
    color: var(--lt-muted);
}

.dashboard-shell {
    background: var(--lt-surface);
    min-height: calc(100vh - 73px);
}

.dashboard-shell > .container-fluid {
    overflow-x: hidden;
}

.sidebar {
    border-right: 1px solid var(--lt-border);
    background: #fff;
}

.table thead th {
    color: var(--lt-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(31, 111, 139, 0.55);
    box-shadow: 0 0 0 0.2rem rgba(31, 111, 139, 0.15);
}

@media (max-width: 767.98px) {
    .hero {
        min-height: 66vh;
    }

    .sidebar {
        border-right: 0;
        border-bottom: 1px solid var(--lt-border);
    }

    .sidebar .nav {
        flex-direction: row !important;
        overflow-x: auto;
        padding-bottom: 0.25rem;
        white-space: nowrap;
    }

    .dashboard-shell section {
        padding: 1.25rem !important;
    }
}

/* Marketing homepage template */
.marketing-home {
    --marketing-blue: #0046fe;
    --marketing-blue-dark: #0036ca;
    --marketing-ink: #0f172a;
    --marketing-muted: #475569;
    --marketing-soft: #f8fafc;
    --marketing-green: #10b981;
    --marketing-orange: #f97316;
    --marketing-border: #e2e8f0;
    color: var(--marketing-ink);
    background: #fff;
    overflow-x: hidden;
}

.marketing-home * {
    box-sizing: border-box;
}

.marketing-header {
    width: min(1400px, 100%);
    margin: 0 auto;
    padding: 24px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.marketing-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    text-decoration: none;
}

.marketing-logo-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--marketing-blue);
    color: #fff;
    font-size: 1.2rem;
}

.marketing-logo-title,
.marketing-logo-subtitle {
    display: block;
}

.marketing-logo-title {
    color: #061e5c;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.05;
}

.marketing-logo-title strong {
    color: var(--marketing-blue);
}

.marketing-logo-subtitle {
    color: var(--marketing-muted);
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.15rem;
}

.marketing-nav,
.marketing-actions,
.marketing-cta,
.marketing-tags {
    display: flex;
    align-items: center;
}

.marketing-nav {
    gap: 32px;
}

.marketing-nav a {
    color: var(--marketing-muted);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.marketing-nav a:hover {
    color: var(--marketing-blue);
}

.marketing-actions {
    gap: 16px;
}

.marketing-login,
.marketing-primary,
.marketing-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.marketing-login {
    color: var(--marketing-ink);
    border: 1px solid var(--marketing-border);
    padding: 10px 24px;
    background: #fff;
}

.marketing-login:hover,
.marketing-secondary:hover {
    background: var(--marketing-soft);
    color: var(--marketing-ink);
}

.marketing-primary {
    color: #fff;
    background: var(--marketing-blue);
    padding: 12px 28px;
}

.marketing-primary:hover {
    background: var(--marketing-blue-dark);
    color: #fff;
    transform: translateY(-1px);
}

.marketing-primary-lg {
    padding: 14px 30px;
}

.marketing-secondary {
    color: var(--marketing-ink);
    border: 1px solid #cbd5e1;
    padding: 13px 28px;
    background: #fff;
}

.marketing-hero {
    position: relative;
    width: min(1400px, 100%);
    min-height: 650px;
    margin: 0 auto;
    padding: 40px 5% 120px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
}

.marketing-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 350px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(219, 234, 254, 0.45) 100%);
    pointer-events: none;
    z-index: 0;
}

.hero-copy,
.hero-showcase {
    position: relative;
    z-index: 1;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.marketing-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 8px 16px;
    border-radius: 999px;
    background: #ecf3ff;
    color: var(--marketing-blue);
    font-size: 0.85rem;
    font-weight: 800;
}

.hero-copy h1 {
    margin: 0 0 24px;
    color: var(--marketing-ink);
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
}

.hero-copy h1 span {
    color: var(--marketing-blue);
}

.hero-copy p {
    max-width: 550px;
    margin: 0 0 36px;
    color: var(--marketing-muted);
    font-size: 1.1rem;
    line-height: 1.65;
}

.marketing-cta {
    gap: 16px;
    margin-bottom: 40px;
}

.marketing-tags {
    flex-wrap: wrap;
    gap: 18px 22px;
}

.marketing-tags span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #061e5c;
    font-size: 0.86rem;
    font-weight: 800;
}

.marketing-tags i {
    color: var(--marketing-blue);
}

.hero-showcase {
    display: grid;
    place-items: center;
}

.showcase-wrap {
    position: relative;
    width: 100%;
    min-height: 520px;
}

.property-photo {
    position: absolute;
    right: 0;
    top: 20px;
    width: 85%;
    height: 420px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.12), rgba(0, 70, 254, 0.08)),
        url("https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?auto=format&fit=crop&w=1200&q=82") center/cover;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.16);
}

.floating-home-icon {
    position: absolute;
    top: -20px;
    left: 20%;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: var(--marketing-blue);
    box-shadow: 0 0 0 8px rgba(0, 70, 254, 0.1);
}

.floating-card {
    position: absolute;
    z-index: 3;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.14);
}

.screening-card {
    right: -20px;
    top: -10px;
    width: 260px;
    padding: 20px;
}

.mini-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.mini-card-header span,
.card-label {
    color: var(--marketing-muted);
    font-size: 0.73rem;
    font-weight: 800;
    text-transform: uppercase;
}

.mini-card-header strong {
    padding: 3px 9px;
    border-radius: 999px;
    color: var(--marketing-green);
    background: #ecfdf5;
    font-size: 0.7rem;
}

.mini-card-header strong.orange {
    color: var(--marketing-orange);
    background: #fff7ed;
}

.score-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.score-ring {
    position: relative;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: conic-gradient(var(--marketing-green) 280deg, #e2e8f0 0deg);
}

.score-ring::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: inherit;
    background: #fff;
}

.score-ring span,
.score-ring small {
    position: relative;
    z-index: 1;
    display: block;
    line-height: 1;
    text-align: center;
}

.score-ring span {
    color: var(--marketing-ink);
    font-size: 0.95rem;
    font-weight: 800;
}

.score-ring small {
    color: var(--marketing-green);
    font-size: 0.62rem;
    font-weight: 800;
}

.screening-list {
    flex: 1;
    display: grid;
    gap: 8px;
}

.screening-list span,
.screening-final {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: var(--marketing-ink);
    font-size: 0.76rem;
    font-weight: 800;
}

.screening-list i,
.screening-final i {
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    color: var(--marketing-green);
    background: #ecfdf5;
    font-size: 0.8rem;
}

.screening-final {
    margin-top: 14px;
}

.rent-card {
    left: -10px;
    top: 180px;
    width: 210px;
    padding: 18px;
}

.rent-total {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    color: var(--marketing-ink);
    font-size: 1.6rem;
    font-weight: 800;
}

.rent-total strong {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 2px 6px;
    border-radius: 6px;
    color: var(--marketing-green);
    background: #ecfdf5;
    font-size: 0.75rem;
}

.rent-card small {
    color: var(--marketing-muted);
    font-size: 0.68rem;
}

.bar-chart {
    height: 42px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-top: 12px;
}

.bar-chart span {
    flex: 1;
    min-width: 0;
    border-radius: 3px;
    background: #cbd5e1;
}

.bar-chart span.active {
    background: #60a5fa;
}

.maintenance-card {
    left: 120px;
    bottom: 0;
    width: 240px;
    padding: 14px 18px;
}

.maintenance-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.maintenance-row > i {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #3b82f6;
    background: #eff6ff;
}

.maintenance-row span,
.maintenance-row small {
    display: block;
}

.maintenance-row b {
    color: var(--marketing-ink);
    font-size: 0.78rem;
}

.maintenance-row small {
    color: var(--marketing-muted);
    font-size: 0.68rem;
}

.feature-banner {
    position: relative;
    z-index: 2;
    margin-top: -40px;
    padding: 40px 5%;
    border-top: 1px solid #edf2f7;
    background: var(--marketing-soft);
}

.feature-banner-grid {
    width: min(1400px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-banner article {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-right: 16px;
}

.feature-banner article:not(:last-child) {
    border-right: 1px solid var(--marketing-border);
}

.feature-banner i {
    color: var(--marketing-ink);
    font-size: 1.4rem;
    margin-top: 3px;
}

.feature-banner h2 {
    margin: 0 0 4px;
    color: var(--marketing-ink);
    font-size: 0.96rem;
    font-weight: 800;
}

.feature-banner p {
    margin: 0;
    color: var(--marketing-muted);
    font-size: 0.86rem;
    line-height: 1.45;
}

.workflow-strip {
    width: min(1400px, 90%);
    margin: 44px auto 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px;
    border: 1px solid var(--marketing-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.section-kicker {
    display: block;
    margin-bottom: 6px;
    color: var(--marketing-blue);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.workflow-strip h2 {
    max-width: 740px;
    margin: 0;
    color: var(--marketing-ink);
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
}

@media (max-width: 1100px) {
    .marketing-header {
        flex-wrap: wrap;
    }

    .marketing-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    .marketing-hero {
        grid-template-columns: 1fr;
        min-height: 0;
        padding-bottom: 80px;
        text-align: center;
    }

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

    .hero-showcase {
        width: min(620px, 100%);
        margin: 0 auto;
    }

    .property-photo {
        width: 100%;
    }

    .feature-banner-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-banner article:nth-child(2) {
        border-right: 0;
    }
}

@media (max-width: 700px) {
    .marketing-header {
        align-items: flex-start;
    }

    .marketing-nav {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.25rem;
    }

    .marketing-actions,
    .marketing-cta,
    .workflow-strip {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .marketing-login,
    .marketing-primary,
    .marketing-secondary {
        width: 100%;
    }

    .marketing-hero {
        padding-top: 28px;
    }

    .showcase-wrap {
        min-height: 0;
        display: grid;
        gap: 16px;
    }

    .property-photo,
    .floating-card,
    .floating-home-icon {
        position: relative;
        inset: auto;
        width: 100%;
    }

    .property-photo {
        height: 250px;
    }

    .floating-home-icon {
        display: none;
    }

    .feature-banner-grid {
        grid-template-columns: 1fr;
    }

    .feature-banner article {
        padding-right: 0;
        padding-bottom: 20px;
        border-right: 0 !important;
        border-bottom: 1px solid var(--marketing-border);
    }

    .feature-banner article:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }
}

.rt-dashboard-shell {
    --rt-dash-primary: #0066ff;
    --rt-dash-bg: #f3f6fd;
    --rt-dash-sidebar: #09122c;
    --rt-dash-ink: #0f172a;
    --rt-dash-muted: #64748b;
    --rt-dash-border: #e7edf7;
    --rt-dash-green: #10b981;
    --rt-dash-orange: #f97316;
    --rt-dash-purple: #7c3aed;
    width: 100%;
    min-height: calc(100vh - 57px);
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    background: var(--rt-dash-bg);
    color: var(--rt-dash-ink);
}

.rt-dashboard-sidebar {
    position: sticky;
    top: 57px;
    align-self: start;
    height: calc(100vh - 57px);
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 24px 16px;
    background: var(--rt-dash-sidebar);
    color: #94a3b8;
    overflow-y: auto;
}

.rt-sidebar-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 12px 8px;
    color: #fff;
    text-decoration: none;
}

.rt-sidebar-brand span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: var(--rt-dash-primary);
}

.rt-sidebar-brand strong {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0;
}

.rt-menu-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rt-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 46px;
    padding: 11px 14px;
    border-radius: 8px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 600;
    transition: background-color 0.16s ease, color 0.16s ease;
}

.rt-menu-item:hover,
.rt-menu-item:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

.rt-menu-item.active {
    color: #fff;
    background: var(--rt-dash-primary);
}

.rt-menu-link-left {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
}

.rt-menu-link-left i {
    width: 20px;
    text-align: center;
    font-size: 1.08rem;
}

.rt-badge-count {
    min-width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 7px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    font-size: 0.73rem;
    font-weight: 800;
}

.rt-dashboard-main {
    width: 100%;
    max-width: 1480px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px;
}

.rt-top-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.rt-welcome-msg h1 {
    margin: 0 0 4px;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 0;
}

.rt-welcome-msg p {
    margin: 0;
    color: var(--rt-dash-muted);
    font-size: 0.95rem;
}

.rt-navbar-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    min-width: 0;
}

.rt-search-container {
    position: relative;
    width: min(280px, 32vw);
}

.rt-search-container i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--rt-dash-muted);
    pointer-events: none;
}

.rt-search-container input {
    width: 100%;
    min-height: 42px;
    padding: 10px 14px 10px 40px;
    border: 1px solid var(--rt-dash-border);
    border-radius: 8px;
    color: var(--rt-dash-ink);
    background: #fff;
    font-size: 0.91rem;
    outline: 0;
}

.rt-search-container input:focus {
    border-color: rgba(0, 102, 255, 0.45);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.rt-notification-bell {
    position: relative;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid var(--rt-dash-border);
    border-radius: 8px;
    color: var(--rt-dash-ink);
    background: #fff;
    text-decoration: none;
}

.rt-notification-bell span {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
    padding: 0 5px;
    border: 2px solid #fff;
    border-radius: 999px;
    color: #fff;
    background: #ef4444;
    font-size: 0.68rem;
    font-weight: 800;
}

.rt-user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.rt-user-avatar,
.rt-profile-pic {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #0066ff, #16a34a);
    font-size: 0.82rem;
    font-weight: 800;
}

.rt-user-info {
    min-width: 0;
}

.rt-user-info strong,
.rt-user-info small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rt-user-info strong {
    font-size: 0.9rem;
}

.rt-user-info small {
    color: var(--rt-dash-muted);
    font-size: 0.76rem;
}

.rt-impersonation-alert {
    margin: 0;
}

.rt-metrics-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.rt-card-metric,
.rt-widget-panel {
    border: 1px solid rgba(226, 232, 240, 0.86);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.04);
}

.rt-card-metric {
    min-height: 128px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px;
}

.rt-metric-info h2 {
    margin: 0 0 10px;
    color: var(--rt-dash-muted);
    font-size: 0.83rem;
    font-weight: 800;
}

.rt-metric-value {
    min-height: 34px;
    color: var(--rt-dash-ink);
    font-size: 1.72rem;
    line-height: 1.05;
    font-weight: 800;
}

.rt-metric-info p {
    margin: 7px 0 0;
    color: var(--rt-dash-muted);
    font-size: 0.78rem;
}

.rt-metric-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 8px;
    font-size: 1.22rem;
}

.rt-icon-blue {
    color: #2563eb;
    background: #eff6ff;
}

.rt-icon-green {
    color: #059669;
    background: #ecfdf5;
}

.rt-icon-orange {
    color: #ea580c;
    background: #fff7ed;
}

.rt-icon-purple {
    color: var(--rt-dash-purple);
    background: #f5f3ff;
}

.rt-widgets-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.8fr);
    gap: 20px;
    align-items: start;
}

.rt-widget-wide {
    grid-row: span 2;
}

.rt-widget-panel {
    padding: 22px;
}

.rt-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.rt-widget-header h2 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
}

.rt-widget-header a {
    color: var(--rt-dash-primary);
    font-size: 0.84rem;
    font-weight: 800;
    text-decoration: none;
}

.rt-list-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rt-list-item {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
}

.rt-list-item:last-child {
    border-bottom: 0;
}

.rt-item-left-profile {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
}

.rt-item-details {
    min-width: 0;
}

.rt-item-details h3 {
    margin: 0 0 4px;
    overflow: hidden;
    color: var(--rt-dash-ink);
    font-size: 0.94rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rt-item-details p {
    margin: 0;
    overflow: hidden;
    color: var(--rt-dash-muted);
    font-size: 0.8rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rt-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 25px;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    white-space: nowrap;
}

.rt-status-success {
    color: #059669;
    background: #ecfdf5;
}

.rt-status-warning {
    color: #d97706;
    background: #fff7ed;
}

.rt-status-info {
    color: #2563eb;
    background: #eff6ff;
}

.rt-status-danger {
    color: #dc2626;
    background: #fef2f2;
}

.rt-rent-analytics {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    gap: 18px;
    align-items: center;
}

.rt-rent-legend {
    display: grid;
    gap: 12px;
}

.rt-rent-legend div {
    padding: 12px 14px;
    border: 1px solid #eef2f7;
    border-radius: 8px;
    background: #fbfdff;
}

.rt-rent-legend span,
.rt-rent-legend strong {
    display: block;
}

.rt-rent-legend span {
    color: var(--rt-dash-muted);
    font-size: 0.76rem;
    font-weight: 700;
}

.rt-rent-legend strong {
    margin-top: 4px;
    font-size: 1rem;
    font-weight: 800;
}

.rt-color-paid {
    color: var(--rt-dash-green);
}

.rt-color-pending {
    color: var(--rt-dash-orange);
}

.rt-color-overdue {
    color: #ef4444;
}

.rt-chart-wrapper {
    position: relative;
    width: 142px;
    aspect-ratio: 1;
    margin-left: auto;
}

.rt-donut-chart {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    background: conic-gradient(var(--rt-dash-green) 0 58%, var(--rt-dash-orange) 58% 82%, #ef4444 82% 100%);
}

.rt-donut-hole {
    position: absolute;
    inset: 25px;
    display: grid;
    place-items: center;
    align-content: center;
    border-radius: 999px;
    background: #fff;
    text-align: center;
}

.rt-donut-hole strong {
    color: var(--rt-dash-ink);
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 800;
}

.rt-donut-hole span {
    color: var(--rt-dash-muted);
    font-size: 0.72rem;
    font-weight: 700;
}

.rt-maint-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 8px;
    color: #2563eb;
    background: #eff6ff;
}

.rt-empty-state {
    display: grid;
    justify-items: center;
    gap: 8px;
    min-height: 182px;
    padding: 34px 18px;
    border: 1px dashed #dbe4f0;
    border-radius: 8px;
    color: var(--rt-dash-muted);
    text-align: center;
    background: #fbfdff;
}

.rt-empty-state i {
    color: var(--rt-dash-primary);
    font-size: 1.8rem;
}

.rt-empty-state h3 {
    margin: 0;
    color: var(--rt-dash-ink);
    font-size: 1rem;
    font-weight: 800;
}

.rt-empty-state p {
    max-width: 360px;
    margin: 0;
    font-size: 0.87rem;
}

@media (max-width: 1250px) {
    .rt-metrics-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .rt-widgets-grid {
        grid-template-columns: 1fr;
    }

    .rt-widget-wide {
        grid-row: auto;
    }
}

@media (max-width: 980px) {
    .rt-dashboard-shell {
        grid-template-columns: 1fr;
    }

    .rt-dashboard-sidebar {
        position: relative;
        top: auto;
        height: auto;
        padding: 18px 16px;
    }

    .rt-menu-list {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(170px, 1fr);
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .rt-dashboard-main {
        padding: 24px 18px 32px;
    }

    .rt-top-navbar,
    .rt-navbar-actions {
        align-items: stretch;
    }

    .rt-top-navbar {
        flex-direction: column;
    }

    .rt-navbar-actions {
        width: 100%;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .rt-search-container {
        width: min(100%, 420px);
        flex: 1 1 260px;
    }
}

@media (max-width: 700px) {
    .rt-metrics-grid {
        grid-template-columns: 1fr;
    }

    .rt-card-metric,
    .rt-widget-panel {
        padding: 18px;
    }

    .rt-list-item {
        align-items: flex-start;
        flex-direction: column;
    }

    .rt-status-badge {
        align-self: flex-start;
    }

    .rt-rent-analytics {
        grid-template-columns: 1fr;
    }

    .rt-chart-wrapper {
        margin: 0 auto;
    }

    .rt-user-profile {
        width: 100%;
    }
}

.rt-login-page {
    --rt-login-primary: #0066ff;
    --rt-login-primary-hover: #0052cc;
    --rt-login-bg: #f3f6fd;
    --rt-login-ink: #0f172a;
    --rt-login-muted: #64748b;
    --rt-login-border: #e2e8f0;
    position: relative;
    min-height: calc(100vh - 137px);
    display: grid;
    place-items: center;
    padding: 56px 20px;
    overflow: hidden;
    background: var(--rt-login-bg);
    color: var(--rt-login-ink);
}

.rt-login-wave {
    position: absolute;
    inset: auto 0 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(219, 234, 254, 0.52) 100%);
    pointer-events: none;
}

.rt-login-container {
    position: relative;
    z-index: 1;
    width: min(460px, 100%);
    padding: 40px;
    border: 1px solid rgba(226, 232, 240, 0.84);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.08), 0 8px 18px rgba(15, 23, 42, 0.05);
}

.rt-login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    color: #09122c;
    text-decoration: none;
}

.rt-login-logo span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: var(--rt-login-primary);
    font-size: 1.05rem;
}

.rt-login-logo strong {
    font-size: 1.3rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0;
}

.rt-login-logo em {
    color: var(--rt-login-primary);
    font-style: normal;
}

.rt-login-header {
    margin-bottom: 30px;
    text-align: center;
}

.rt-login-header h1 {
    margin: 0 0 8px;
    color: var(--rt-login-ink);
    font-size: 1.55rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0;
}

.rt-login-header p {
    margin: 0;
    color: var(--rt-login-muted);
    font-size: 0.95rem;
}

.rt-login-header a,
.rt-login-utils a {
    color: var(--rt-login-primary);
    font-weight: 700;
    text-decoration: none;
}

.rt-login-header a:hover,
.rt-login-utils a:hover {
    text-decoration: underline;
}

.rt-login-form {
    display: grid;
    gap: 20px;
}

.rt-login-group {
    display: grid;
    gap: 8px;
}

.rt-login-group label {
    color: var(--rt-login-ink);
    font-size: 0.85rem;
    font-weight: 800;
}

.rt-login-input {
    position: relative;
}

.rt-login-input i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--rt-login-muted);
    font-size: 1rem;
    pointer-events: none;
}

.rt-login-input input {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px 12px 46px;
    border: 1px solid var(--rt-login-border);
    border-radius: 8px;
    color: var(--rt-login-ink);
    background: #fff;
    font: inherit;
    font-size: 0.95rem;
    outline: 0;
    transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.rt-login-input input::placeholder {
    color: #94a3b8;
}

.rt-login-input input:focus {
    border-color: var(--rt-login-primary);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.rt-login-utils {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--rt-login-muted);
    font-size: 0.85rem;
    font-weight: 700;
}

.rt-login-submit,
.rt-login-secondary {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
}

.rt-login-submit {
    border: 0;
    color: #fff;
    background: var(--rt-login-primary);
    box-shadow: 0 12px 24px rgba(0, 102, 255, 0.18);
}

.rt-login-submit:hover,
.rt-login-submit:focus {
    background: var(--rt-login-primary-hover);
}

.rt-login-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--rt-login-muted);
    font-size: 0.8rem;
    font-weight: 700;
}

.rt-login-divider::before,
.rt-login-divider::after {
    content: "";
    height: 1px;
    flex: 1;
    background: var(--rt-login-border);
}

.rt-login-secondary {
    border: 1px solid var(--rt-login-border);
    color: var(--rt-login-ink);
    background: #fff;
}

.rt-login-secondary:hover,
.rt-login-secondary:focus {
    border-color: #cbd5e1;
    color: var(--rt-login-ink);
    background: #f8fafc;
}

@media (max-width: 560px) {
    .rt-login-page {
        min-height: calc(100vh - 120px);
        padding: 28px 14px;
    }

    .rt-login-container {
        padding: 30px 22px;
    }

    .rt-login-utils {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

/* Shared public site shell */
.rt-site {
    min-height: 100vh;
    background: #fff;
}

.rt-site-header {
    min-height: 72px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.88);
    background: rgba(255, 255, 255, 0.94);
}

.rt-site-header .container {
    gap: 20px;
}

.rt-site-header .navbar-toggler {
    border-color: var(--lt-border);
    border-radius: 8px;
}

.rt-site-nav {
    gap: 10px;
}

.rt-site-nav .nav-link {
    color: #475569;
    font-weight: 700;
}

.rt-site-nav .nav-link:hover,
.rt-site-nav .nav-link:focus {
    color: #0046fe;
}

.rt-site-nav .marketing-login,
.rt-site-nav .marketing-primary {
    min-height: 42px;
    padding: 10px 20px;
}

.rt-flash {
    margin-top: 18px;
}

.rt-flash-dashboard {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    margin-top: 0;
    background:
        linear-gradient(145deg, rgba(218, 236, 255, 0.9), rgba(255,255,255,0) 34%),
        #f4f8ff;
}

.rt-flash-dashboard-inner {
    grid-column: 2;
    width: 100%;
    max-width: 1480px;
    padding: 24px 32px 0;
}

.rt-flash-dashboard .alert {
    border-radius: 8px;
}

.rt-dashboard-shell,
.dashboard-shell {
    min-height: calc(100vh - 72px);
}

.rt-dashboard-sidebar {
    top: 72px;
    height: calc(100vh - 72px);
}

.rt-site-footer {
    border-top: 1px solid #e2e8f0;
    background: #fff;
}

.rt-site-footer .container {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) auto;
    gap: 28px;
    padding-top: 34px;
    padding-bottom: 26px;
}

.rt-footer-brand p {
    max-width: 540px;
    margin: 16px 0 0;
    color: #64748b;
    line-height: 1.6;
}

.rt-footer-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 16px 22px;
}

.rt-footer-links a {
    color: #475569;
    font-weight: 700;
    text-decoration: none;
}

.rt-footer-links a:hover,
.rt-footer-links a:focus {
    color: #0046fe;
}

.rt-footer-bottom {
    grid-column: 1 / -1;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
    color: #64748b;
    font-size: 0.88rem;
}

.rt-capabilities-section,
.rt-resources-section,
.rt-final-cta {
    width: min(1400px, 90%);
    margin: 0 auto;
}

.rt-capabilities-section {
    padding: 42px 0 72px;
}

.rt-section-heading {
    max-width: 780px;
    margin-bottom: 30px;
}

.rt-section-heading h2,
.rt-resources-section h2,
.rt-final-cta h2 {
    margin: 0;
    color: #0f172a;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: 0;
}

.rt-section-heading h2 {
    font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.rt-section-heading p,
.rt-resources-section p,
.rt-final-cta p {
    max-width: 680px;
    margin: 14px 0 0;
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
}

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

.rt-capability-card {
    min-height: 240px;
    padding: 26px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.05);
}

.rt-capability-card i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 8px;
    color: #0046fe;
    background: #eff6ff;
    font-size: 1.25rem;
}

.rt-capability-card h3 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 1.08rem;
    font-weight: 800;
}

.rt-capability-card p {
    margin: 0;
    color: #475569;
    line-height: 1.65;
}

.rt-resources-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 34px;
    align-items: center;
    padding: 36px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
}

.rt-resources-section h2,
.rt-final-cta h2 {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.rt-resource-list {
    display: grid;
    gap: 12px;
}

.rt-resource-list a {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 58px;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #0f172a;
    background: #fff;
    font-weight: 800;
    text-decoration: none;
}

.rt-resource-list a:hover,
.rt-resource-list a:focus {
    border-color: #bfdbfe;
    color: #0046fe;
}

.rt-resource-list i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 8px;
    color: #0046fe;
    background: #eff6ff;
}

.rt-final-cta {
    display: grid;
    justify-items: center;
    margin-top: 52px;
    margin-bottom: 72px;
    padding: 54px 24px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, #07152f, #0046fe);
    text-align: center;
}

.rt-final-cta .section-kicker,
.rt-final-cta h2,
.rt-final-cta p {
    color: #fff;
}

.rt-final-cta p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 26px;
}

.rt-final-cta .marketing-primary {
    background: #fff;
    color: #0046fe;
}

.rt-final-cta .marketing-primary:hover,
.rt-final-cta .marketing-primary:focus {
    background: #eff6ff;
    color: #0036ca;
}

.rt-public-main {
    background: linear-gradient(180deg, #f8fafc 0, #fff 380px);
}

.rt-pricing-hero {
    width: min(900px, 90%);
    margin: 0 auto;
    padding: 76px 0 44px;
    text-align: center;
}

.rt-pricing-hero h1 {
    margin: 8px 0 14px;
    color: #0f172a;
    font-size: clamp(2rem, 5vw, 3.35rem);
    font-weight: 800;
    line-height: 1.12;
}

.rt-pricing-hero p {
    max-width: 680px;
    margin: 0 auto;
    color: #475569;
    font-size: 1.08rem;
    line-height: 1.65;
}

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

.rt-pricing-marketing-hero {
    min-height: 600px;
}

.rt-features-hero {
    min-height: 620px;
}

.rt-features-summary {
    position: relative;
    width: min(520px, 100%);
    min-height: 460px;
    display: grid;
    align-items: center;
}

.rt-feature-summary-panel {
    position: relative;
    z-index: 2;
    width: 88%;
    margin-left: auto;
    padding: 24px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.14);
}

.rt-feature-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid #f1f5f9;
}

.rt-feature-summary-row strong {
    color: #0046fe;
    font-size: 1.75rem;
    line-height: 1;
}

.rt-feature-summary-row span {
    color: #475569;
    font-size: 0.9rem;
    font-weight: 800;
    text-align: right;
}

.rt-feature-note-card {
    left: 0;
    bottom: 34px;
    width: 280px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
}

.rt-feature-note-card i {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 8px;
    color: #10b981;
    background: #ecfdf5;
}

.rt-feature-note-card span,
.rt-feature-note-card small {
    display: block;
}

.rt-feature-note-card b {
    color: #0f172a;
    font-size: 0.84rem;
}

.rt-feature-note-card small {
    margin-top: 2px;
    color: #64748b;
    font-size: 0.72rem;
    line-height: 1.35;
}

.rt-feature-group {
    padding: 34px 0;
    border-top: 1px solid #e2e8f0;
}

.rt-feature-group:first-of-type {
    padding-top: 0;
    border-top: 0;
}

.rt-feature-group-heading {
    max-width: 760px;
    margin-bottom: 22px;
}

.rt-feature-group-heading h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(1.45rem, 3vw, 2.05rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0;
}

.rt-feature-group-heading p {
    max-width: 680px;
    margin: 12px 0 0;
    color: #475569;
    line-height: 1.7;
}

.rt-pricing-showcase {
    position: relative;
    width: min(520px, 100%);
    min-height: 460px;
    display: grid;
    align-items: center;
}

.rt-pricing-panel {
    position: relative;
    z-index: 2;
    width: 88%;
    margin-left: auto;
    padding: 24px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.14);
}

.rt-pricing-preview-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid #f1f5f9;
}

.rt-pricing-preview-row span,
.rt-pricing-preview-row small {
    display: block;
}

.rt-pricing-preview-row b {
    color: #0f172a;
    font-size: 0.98rem;
}

.rt-pricing-preview-row small {
    margin-top: 4px;
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 700;
}

.rt-pricing-preview-row > strong {
    color: #0046fe;
    font-size: 1rem;
    white-space: nowrap;
}

.rt-pricing-note-card {
    left: 0;
    bottom: 34px;
    width: 260px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
}

.rt-pricing-note-card i {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 8px;
    color: #10b981;
    background: #ecfdf5;
}

.rt-pricing-note-card span,
.rt-pricing-note-card small {
    display: block;
}

.rt-pricing-note-card b {
    color: #0f172a;
    font-size: 0.84rem;
}

.rt-pricing-note-card small {
    margin-top: 2px;
    color: #64748b;
    font-size: 0.72rem;
    line-height: 1.35;
}

.rt-price-card {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 22px;
    padding: 28px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.rt-price-card h2 {
    margin: 0 0 14px;
    color: #0f172a;
    font-size: 1.25rem;
    font-weight: 800;
}

.rt-price-card .price {
    margin-bottom: 12px;
    color: #0f172a;
    line-height: 1;
}

.rt-price-card .price span {
    color: #64748b;
    font-size: 1rem;
    font-weight: 700;
}

.rt-price-card p {
    margin: 0;
    color: #475569;
    line-height: 1.6;
}

.rt-price-card ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #334155;
    font-weight: 700;
}

.rt-price-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.rt-price-card li i {
    color: #10b981;
}

.rt-price-card .marketing-primary {
    width: 100%;
}

.rt-login-container-wide {
    width: min(640px, 100%);
}

.rt-login-container .form-label {
    color: var(--rt-login-ink);
    font-size: 0.85rem;
    font-weight: 800;
}

.rt-login-container .form-control,
.rt-login-container .form-select {
    min-height: 48px;
    border-color: var(--rt-login-border);
    border-radius: 8px;
}

.rt-application-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
    padding: 28px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.rt-application-hero h1 {
    color: #0f172a;
}

@media (max-width: 1100px) {
    .rt-pricing-grid,
    .rt-capability-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .rt-site-nav {
        align-items: stretch !important;
        padding-top: 18px;
    }

    .rt-site-nav .nav-link {
        min-height: 42px;
        display: flex;
        align-items: center;
    }

    .rt-site-nav .marketing-login,
    .rt-site-nav .marketing-primary {
        width: 100%;
    }
}

@media (max-width: 700px) {
    .rt-capability-grid,
    .rt-pricing-grid,
    .rt-resources-section {
        grid-template-columns: 1fr;
    }

    .rt-capabilities-section {
        padding-bottom: 48px;
    }

    .rt-capability-card {
        min-height: 0;
        padding: 22px;
    }

    .rt-resources-section {
        width: min(100% - 28px, 1400px);
        padding: 24px;
    }

    .rt-pricing-showcase,
    .rt-features-summary {
        min-height: 0;
        gap: 16px;
    }

    .rt-pricing-panel,
    .rt-pricing-note-card,
    .rt-feature-summary-panel,
    .rt-feature-note-card {
        position: relative;
        inset: auto;
        width: 100%;
    }

    .rt-site-footer .container {
        grid-template-columns: 1fr;
    }

    .rt-footer-links {
        justify-content: flex-start;
    }

    .rt-application-hero {
        align-items: flex-start;
        flex-direction: column;
        padding: 22px;
    }
}

/* Reference visual pass based on the provided landing page */
:root {
    --lt-ink: #07123d;
    --lt-muted: #52617d;
    --lt-primary: #0758ff;
    --lt-primary-dark: #0042d8;
    --lt-accent: #12b981;
    --lt-surface: #f4f8ff;
    --lt-border: #dbe6f7;
}

.rt-site {
    color: #07123d;
    background: #fff;
}

.rt-site-header {
    min-height: 74px;
    border-bottom: 1px solid #edf2fb;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 24px rgba(7, 18, 61, 0.04);
}

.rt-site-header .container {
    max-width: 1500px;
}

.marketing-logo {
    gap: 12px;
}

.marketing-logo-icon {
    position: relative;
    width: 52px;
    height: 52px;
    overflow: visible;
    border-radius: 12px;
    background: #0758ff;
    color: #fff;
    font-size: 1.55rem;
    box-shadow: 0 14px 26px rgba(7, 88, 255, 0.18);
}

.marketing-logo-icon::after {
    display: none;
}

.marketing-logo-title {
    color: #07123d;
    font-size: 1.68rem;
    letter-spacing: 0;
}

.marketing-logo-title strong {
    color: #0758ff;
}

.marketing-logo-subtitle {
    color: #66748e;
    font-size: 0.84rem;
}

.rt-site-nav {
    gap: 18px;
}

.rt-site-nav .nav-link {
    color: #07123d;
    font-size: 0.95rem;
    font-weight: 700;
}

.marketing-login,
.marketing-primary,
.marketing-secondary {
    min-height: 48px;
    border-radius: 999px;
    font-weight: 800;
}

.marketing-primary {
    background: #0758ff;
    box-shadow: 0 14px 28px rgba(7, 88, 255, 0.2);
}

.marketing-primary:hover,
.marketing-primary:focus {
    background: #0042d8;
}

.marketing-secondary {
    border-color: #cfd8ea;
    color: #07123d;
    box-shadow: 0 10px 24px rgba(7, 18, 61, 0.04);
}

.marketing-home {
    --marketing-blue: #0758ff;
    --marketing-blue-dark: #0042d8;
    --marketing-ink: #07123d;
    --marketing-muted: #52617d;
    --marketing-soft: #f4f8ff;
    --marketing-green: #12b981;
    --marketing-orange: #ff8a1f;
    --marketing-border: #dbe6f7;
}

.marketing-hero {
    width: 100%;
    max-width: none;
    min-height: 650px;
    grid-template-columns: minmax(620px, 0.95fr) minmax(520px, 1.05fr);
    gap: 18px;
    padding: 54px max(4vw, 56px) 84px;
    overflow: hidden;
}

.marketing-hero::before {
    content: "";
    position: absolute;
    inset: 0 0 0 48%;
    background:
        linear-gradient(135deg, rgba(219, 238, 255, 0.9), rgba(255, 255, 255, 0.05)),
        linear-gradient(153deg, transparent 0 31%, rgba(174, 213, 255, 0.45) 31.2% 62%, transparent 62.2%),
        linear-gradient(145deg, transparent 0 48%, rgba(214, 233, 255, 0.75) 48.2% 100%);
    z-index: 0;
}

.marketing-hero::after {
    height: 300px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(226, 241, 255, 0.78) 100%);
}

.hero-copy {
    padding-left: min(1vw, 14px);
}

.marketing-badge {
    margin-bottom: 18px;
    padding: 8px 18px;
    background: #e7f1ff;
    color: #0758ff;
    font-size: 0.93rem;
}

.marketing-badge i {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: #0758ff;
}

.hero-copy h1 {
    max-width: 720px;
    margin-bottom: 20px;
    font-size: 3.55rem;
    line-height: 1.08;
}

.hero-copy p {
    max-width: 620px;
    margin-bottom: 26px;
    color: #1e2b53;
    font-size: 1.14rem;
    line-height: 1.56;
}

.marketing-cta {
    margin-bottom: 26px;
}

.marketing-primary-lg,
.marketing-secondary {
    padding: 14px 30px;
}

.marketing-tags {
    gap: 18px 30px;
}

.marketing-tags span {
    color: #07123d;
    font-size: 0.82rem;
}

.marketing-tags i {
    color: #0758ff;
}

.hero-showcase {
    align-items: end;
}

.showcase-wrap {
    min-height: 510px;
}

.property-photo {
    top: 16px;
    right: -7vw;
    width: 104%;
    height: 460px;
    border-radius: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(7, 88, 255, 0.03)),
        url("https://images.unsplash.com/photo-1605146769289-440113cc3d00?auto=format&fit=crop&w=1500&q=86") center/cover;
    box-shadow: none;
    filter: saturate(1.08) contrast(1.02);
}

.floating-home-icon {
    top: 0;
    left: 31%;
    width: 74px;
    height: 74px;
    border: 10px solid #fff;
    font-size: 1.8rem;
    box-shadow: 0 0 0 1px rgba(7, 88, 255, 0.08), 0 18px 36px rgba(7, 88, 255, 0.26);
}

.floating-card {
    border: 1px solid rgba(219, 230, 247, 0.92);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(7, 18, 61, 0.14);
}

.screening-card {
    right: 0;
    top: 22px;
    width: 300px;
}

.score-ring {
    width: 86px;
    height: 86px;
    background: conic-gradient(#84c4ff 0 62%, #67d89c 62% 84%, #dbe6f7 84% 100%);
}

.score-ring span {
    font-size: 1.2rem;
}

.rent-card {
    left: 4%;
    top: 235px;
    width: 230px;
}

.maintenance-card {
    left: 40%;
    bottom: 58px;
    width: 260px;
}

.feature-banner {
    margin-top: -28px;
    padding: 34px 5%;
    background: rgba(244, 248, 255, 0.92);
}

.feature-banner i {
    color: #0758ff;
}

.rt-product-preview {
    position: relative;
    z-index: 4;
    width: min(1450px, calc(100% - 64px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 28px;
    align-items: end;
    margin: -80px auto 26px;
}

.rt-dashboard-preview {
    min-width: 0;
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid #dbe6f7;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 28px 58px rgba(7, 18, 61, 0.18);
}

.rt-preview-sidebar {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 12px;
    background: linear-gradient(180deg, #071f4e, #03152e);
    color: #c7d7ef;
    font-size: 0.82rem;
}

.rt-preview-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #fff;
    font-size: 1.03rem;
    font-weight: 800;
    line-height: 1.04;
}

.rt-preview-brand i,
.rt-preview-sidebar span i {
    width: 22px;
    text-align: center;
}

.rt-preview-sidebar span {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 8px 10px;
    border-radius: 8px;
    font-weight: 700;
}

.rt-preview-sidebar span.active {
    color: #fff;
    background: #0758ff;
}

.rt-preview-main {
    min-width: 0;
    padding: 20px;
    background: #f8fbff;
}

.rt-preview-top,
.rt-preview-metrics,
.rt-preview-widgets {
    display: grid;
    gap: 12px;
}

.rt-preview-top {
    grid-template-columns: minmax(0, 1fr) 210px 160px;
    align-items: center;
    margin-bottom: 14px;
}

.rt-preview-top h2 {
    margin: 0;
    color: #07123d;
    font-size: 1.24rem;
    font-weight: 800;
}

.rt-preview-top p {
    margin: 2px 0 0;
    color: #52617d;
    font-size: 0.82rem;
}

.rt-preview-search,
.rt-preview-user {
    min-height: 36px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    border: 1px solid #dbe6f7;
    border-radius: 10px;
    color: #7a88a2;
    background: #fff;
    font-size: 0.75rem;
}

.rt-preview-user span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #0758ff, #12b981);
    font-weight: 800;
}

.rt-preview-user b {
    color: #07123d;
    font-size: 0.78rem;
}

.rt-preview-metrics {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-bottom: 14px;
}

.rt-preview-metrics article {
    position: relative;
    min-height: 100px;
    padding: 14px;
    border: 1px solid #dbe6f7;
    border-radius: 10px;
    background: #fff;
}

.rt-preview-metrics span,
.rt-preview-metrics small {
    display: block;
    color: #52617d;
    font-size: 0.7rem;
    font-weight: 700;
}

.rt-preview-metrics b {
    display: block;
    margin: 8px 0 2px;
    color: #07123d;
    font-size: 1.25rem;
    font-weight: 800;
}

.rt-preview-metrics i {
    position: absolute;
    right: 12px;
    top: 24px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #0758ff;
    background: #e9f2ff;
    font-size: 1.2rem;
}

.rt-preview-widgets {
    grid-template-columns: 1.1fr 0.9fr 1fr;
}

.rt-preview-widgets article {
    min-height: 210px;
    padding: 16px;
    border: 1px solid #dbe6f7;
    border-radius: 10px;
    background: #fff;
}

.rt-preview-widgets h3 {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 0 0 12px;
    color: #07123d;
    font-size: 0.96rem;
    font-weight: 800;
}

.rt-preview-widgets h3 a {
    color: #0758ff;
    font-size: 0.72rem;
}

.rt-preview-widgets p {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    padding: 10px 0;
    border-top: 1px solid #edf2fb;
    color: #52617d;
    font-size: 0.78rem;
}

.rt-preview-widgets p b {
    color: #07123d;
}

.rt-preview-widgets p span {
    color: #12a36f;
    font-weight: 800;
}

.rt-preview-donut div {
    width: 128px;
    height: 128px;
    display: grid;
    place-items: center;
    align-content: center;
    margin: 22px auto 0;
    border-radius: 999px;
    background:
        radial-gradient(#fff 0 48%, transparent 49%),
        conic-gradient(#12b981 0 50%, #0758ff 50% 74%, #ffb02e 74% 88%, #ff4d4d 88% 100%);
}

.rt-preview-donut strong,
.rt-preview-donut span {
    display: block;
    color: #07123d;
}

.rt-preview-donut span {
    color: #52617d;
    font-size: 0.74rem;
}

.rt-mobile-preview {
    display: grid;
    justify-items: center;
}

.rt-phone-frame {
    width: 238px;
    padding: 10px;
    border: 8px solid #0b1427;
    border-radius: 32px;
    background: #111827;
    box-shadow: 0 24px 54px rgba(7, 18, 61, 0.28);
}

.rt-phone-screen {
    overflow: hidden;
    border-radius: 22px;
    background: #f8fbff;
}

.rt-phone-screen header,
.rt-phone-screen h2 {
    margin: 0;
    padding: 14px 14px 0;
    color: #fff;
    background: #0758ff;
}

.rt-phone-screen header {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    font-weight: 800;
}

.rt-phone-screen h2 {
    padding-bottom: 20px;
    font-size: 1rem;
    font-weight: 800;
}

.rt-phone-screen section {
    padding: 14px;
}

.rt-phone-screen h3 {
    margin: 0 0 10px;
    font-size: 0.84rem;
    font-weight: 800;
}

.rt-phone-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.rt-phone-cards span {
    padding: 10px;
    border: 1px solid #dbe6f7;
    border-radius: 10px;
    background: #fff;
    color: #52617d;
    font-size: 0.66rem;
    font-weight: 700;
}

.rt-phone-cards b {
    display: block;
    color: #07123d;
    font-size: 1rem;
}

.rt-phone-screen button {
    width: 100%;
    min-height: 38px;
    margin: 12px 0;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: #0758ff;
    font-weight: 800;
}

.rt-phone-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 6px;
}

.rt-phone-actions span {
    display: grid;
    justify-items: center;
    gap: 5px;
    color: #07123d;
    font-size: 0.58rem;
    font-weight: 700;
    text-align: center;
}

.rt-phone-actions i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #0758ff;
    background: #e9f2ff;
    font-size: 1rem;
}

.rt-about-section {
    width: min(980px, 90%);
    margin: 52px auto 0;
    text-align: center;
}

.rt-about-section h2 {
    margin: 0;
    color: #07123d;
    font-size: 2.35rem;
    font-weight: 800;
    line-height: 1.18;
}

.rt-about-section p {
    max-width: 760px;
    margin: 14px auto 0;
    color: #52617d;
    font-size: 1.02rem;
    line-height: 1.7;
}

.rt-dashboard-shell {
    --rt-dash-primary: #0758ff;
    --rt-dash-bg: #f4f8ff;
    --rt-dash-sidebar: #03152e;
    --rt-dash-border: #dbe6f7;
    background:
        linear-gradient(145deg, rgba(218, 236, 255, 0.9), rgba(255,255,255,0) 34%),
        #f4f8ff;
}

.rt-dashboard-sidebar {
    background: linear-gradient(180deg, #071f4e, #03152e);
}

.rt-sidebar-brand span {
    background: #0758ff;
}

.rt-sidebar-brand strong {
    line-height: 1.04;
}

.rt-card-metric,
.rt-widget-panel,
.dashboard-panel,
.auth-panel {
    border-color: #dbe6f7;
    box-shadow: 0 16px 34px rgba(7, 18, 61, 0.06);
}

.rt-card-metric {
    min-height: 118px;
}

.dashboard-shell {
    background:
        linear-gradient(145deg, rgba(218, 236, 255, 0.9), rgba(255,255,255,0) 34%),
        #f4f8ff;
}

.sidebar {
    background: #fff;
}

.btn-primary {
    --bs-btn-bg: #0758ff;
    --bs-btn-border-color: #0758ff;
    --bs-btn-hover-bg: #0042d8;
    --bs-btn-hover-border-color: #0042d8;
}

.btn-outline-primary {
    --bs-btn-color: #0758ff;
    --bs-btn-border-color: #0758ff;
    --bs-btn-hover-bg: #0758ff;
    --bs-btn-hover-border-color: #0758ff;
}

@media (max-width: 1180px) {
    .marketing-hero {
        grid-template-columns: 1fr;
        padding-inline: max(5vw, 28px);
        text-align: center;
    }

    .hero-copy {
        align-items: center;
        padding-left: 0;
    }

    .marketing-hero::before {
        inset: 38% 0 0;
    }

    .showcase-wrap {
        width: min(720px, 100%);
        margin: 0 auto;
    }

    .property-photo {
        right: 0;
        width: 100%;
    }

    .rt-product-preview {
        grid-template-columns: 1fr;
        margin-top: -40px;
    }

    .rt-mobile-preview {
        display: none;
    }
}

@media (max-width: 860px) {
    .rt-product-preview {
        width: min(100% - 28px, 1450px);
    }

    .rt-dashboard-preview {
        grid-template-columns: 1fr;
    }

    .rt-preview-sidebar {
        display: none;
    }

    .rt-preview-top,
    .rt-preview-metrics,
    .rt-preview-widgets {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .marketing-logo-icon {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }

    .marketing-logo-title {
        font-size: 1.28rem;
    }

    .marketing-logo-subtitle {
        font-size: 0.72rem;
    }

    .marketing-hero {
        padding: 32px 18px 70px;
    }

    .hero-copy h1 {
        font-size: 3rem;
    }

    .hero-copy p {
        font-size: 1.02rem;
    }

    .property-photo,
    .floating-card,
    .floating-home-icon {
        position: relative;
        inset: auto;
        width: 100%;
    }

    .property-photo {
        height: 260px;
        border-radius: 18px;
    }

    .floating-home-icon {
        display: grid;
        width: 58px;
        height: 58px;
        margin: 0 auto -28px;
        border-width: 7px;
        z-index: 4;
    }

    .rt-product-preview {
        margin-top: -26px;
    }

    .rt-preview-main {
        padding: 14px;
    }
}

/* Dashboard compatibility layer: makes older dashboard-shell pages match /dashboard/ */
.dashboard-shell {
    --rt-dash-primary: #0758ff;
    --rt-dash-bg: #f4f8ff;
    --rt-dash-sidebar: #03152e;
    --rt-dash-ink: #07123d;
    --rt-dash-muted: #52617d;
    --rt-dash-border: #dbe6f7;
    width: 100%;
    min-height: calc(100vh - 72px);
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    background:
        linear-gradient(145deg, rgba(218, 236, 255, 0.9), rgba(255,255,255,0) 34%),
        var(--rt-dash-bg);
    color: var(--rt-dash-ink);
}

.dashboard-shell > .container-fluid,
.dashboard-shell > .container-fluid > .row {
    display: contents;
}

.dashboard-shell .sidebar {
    position: sticky;
    top: 72px;
    align-self: start;
    width: auto;
    max-width: none;
    min-height: calc(100vh - 72px);
    height: calc(100vh - 72px);
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 24px 16px !important;
    border: 0;
    background: linear-gradient(180deg, #071f4e, #03152e);
    color: #94a3b8;
    overflow-y: auto;
}

.dashboard-shell .sidebar > .fw-bold {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 !important;
    padding: 0 12px 8px;
    color: #fff;
    font-size: 1rem;
    font-weight: 800 !important;
    line-height: 1.1;
}

.dashboard-shell .sidebar > .fw-bold::before {
    content: "\F424";
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 8px;
    color: #fff;
    background: var(--rt-dash-primary);
    font-family: "bootstrap-icons";
    font-size: 1rem;
}

.dashboard-shell .dashboard-nav-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dashboard-shell .rt-menu-item {
    min-height: 46px;
    padding: 11px 14px;
    border-radius: 8px;
    color: #b4c1d6;
    font-size: 0.94rem;
    font-weight: 700;
}

.dashboard-shell .rt-menu-item:hover,
.dashboard-shell .rt-menu-item:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.dashboard-shell .rt-menu-item.active {
    color: #fff;
    background: var(--rt-dash-primary);
    box-shadow: 0 12px 24px rgba(7, 88, 255, 0.22);
}

.dashboard-shell .rt-menu-link-left {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
}

.dashboard-shell .rt-menu-link-left i {
    width: 20px;
    text-align: center;
    font-size: 1.06rem;
}

.dashboard-shell section[class*="col-"] {
    width: 100%;
    max-width: 1480px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px !important;
}

.dashboard-shell section[class*="col-"] > h1,
.dashboard-shell section[class*="col-"] h1.fw-bold {
    margin: 0 !important;
    color: var(--rt-dash-ink);
    font-size: 1.75rem;
    font-weight: 800 !important;
    letter-spacing: 0;
}

.dashboard-shell section[class*="col-"] > .mb-4,
.dashboard-shell section[class*="col-"] > .d-flex.mb-4 {
    margin-bottom: 0 !important;
}

.dashboard-shell .dashboard-panel,
.dashboard-shell .feature-card {
    border: 1px solid rgba(219, 230, 247, 0.92);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(7, 18, 61, 0.06);
}

.dashboard-shell .dashboard-panel {
    padding: 22px;
}

.dashboard-shell .dashboard-panel.mb-4,
.dashboard-shell .feature-card.mb-4 {
    margin-bottom: 0 !important;
}

.dashboard-shell .row.g-4,
.dashboard-shell .row.g-3 {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}

.dashboard-shell .table {
    margin-bottom: 0;
    color: var(--rt-dash-ink);
}

.dashboard-shell .table thead th {
    padding-top: 0;
    padding-bottom: 12px;
    border-bottom-color: #e8eef8;
    color: var(--rt-dash-muted);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.dashboard-shell .table tbody td {
    padding-top: 14px;
    padding-bottom: 14px;
    border-color: #edf2fb;
    vertical-align: middle;
}

.dashboard-shell .form-label {
    color: var(--rt-dash-ink);
    font-size: 0.84rem;
    font-weight: 800;
}

.dashboard-shell .form-control,
.dashboard-shell .form-select {
    min-height: 44px;
    border-color: var(--rt-dash-border);
    border-radius: 8px;
}

.dashboard-shell textarea.form-control {
    min-height: 110px;
}

.dashboard-shell .btn {
    border-radius: 8px;
    font-weight: 800;
}

.dashboard-shell .btn-sm {
    min-height: 34px;
}

.dashboard-shell .badge {
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 4px 9px;
    font-weight: 800;
}

.dashboard-shell .text-muted-soft {
    color: var(--rt-dash-muted);
}

.dashboard-shell .price {
    color: var(--rt-dash-ink);
}

@media (max-width: 980px) {
    .rt-flash-dashboard {
        grid-template-columns: 1fr;
    }

    .rt-flash-dashboard-inner {
        grid-column: 1;
        padding: 18px 18px 0;
    }

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

    .dashboard-shell .sidebar {
        position: relative;
        top: auto;
        height: auto;
        min-height: 0;
        padding: 18px 16px !important;
    }

    .dashboard-shell .dashboard-nav-list {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(170px, 1fr);
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .dashboard-shell section[class*="col-"] {
        padding: 24px 18px 32px !important;
    }
}

@media (max-width: 700px) {
    .dashboard-shell .sidebar > .fw-bold {
        padding-inline: 2px;
    }

    .dashboard-shell .dashboard-panel,
    .dashboard-shell .feature-card {
        padding: 18px;
    }

    .dashboard-shell section[class*="col-"] > h1,
    .dashboard-shell section[class*="col-"] h1.fw-bold {
        font-size: 1.45rem;
    }
}
