:root {
    --hp-primary: #00796b;
    --hp-primary-dark: #005c52;
    --hp-primary-soft: #e6f4f2;
    --hp-text: #102027;
    --hp-muted: #667085;
    --hp-border: #e5e7eb;
    --hp-bg: #f6f8fb;
    --hp-soft-blue: #eef5ff;
    --hp-warning: #f59e0b;
    --hp-success: #16a34a;
    --hp-danger: #dc2626;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--hp-text);
    background: #ffffff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    transition: all 0.2s ease;
}

/* Buttons */

.hp-btn-primary {
    background: var(--hp-primary);
    border-color: var(--hp-primary);
    border-radius: 10px;
    font-weight: 650;
    padding: 0.65rem 1.1rem;
}

    .hp-btn-primary:hover,
    .hp-btn-primary:focus {
        background: var(--hp-primary-dark);
        border-color: var(--hp-primary-dark);
    }

.hp-btn-outline {
    border-color: var(--hp-primary);
    color: var(--hp-primary);
    border-radius: 10px;
    font-weight: 650;
    padding: 0.65rem 1.1rem;
}

    .hp-btn-outline:hover,
    .hp-btn-outline:focus {
        background: var(--hp-primary);
        border-color: var(--hp-primary);
        color: #ffffff;
    }

/* Navbar */

.hp-navbar {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
    min-height: 72px;
    position: relative;
    z-index: 20;
}

.hp-logo {
    color: var(--hp-primary);
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -0.03em;
    font-size: 1.25rem;
}

    .hp-logo:hover {
        color: var(--hp-primary-dark);
    }

.hp-nav-links .nav-link {
    color: #344054;
    font-size: 0.92rem;
    font-weight: 550;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

    .hp-nav-links .nav-link:hover,
    .hp-nav-links .nav-link.active {
        color: var(--hp-primary);
    }

/* Hero */

.hp-hero {
    min-height: 680px;
    background: radial-gradient(circle at 85% 20%, rgba(0, 121, 107, 0.13), transparent 30%), linear-gradient(135deg, #f6fbff 0%, #ffffff 44%, #eef6f5 100%);
    position: relative;
    overflow: hidden;
}

    .hp-hero::after {
        content: "";
        position: absolute;
        right: -160px;
        top: 120px;
        width: 520px;
        height: 520px;
        background: rgba(0, 121, 107, 0.08);
        border-radius: 50%;
    }

.hp-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 95px;
    padding-bottom: 95px;
}

.hp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: #ffffff;
    border: 1px solid var(--hp-border);
    box-shadow: 0 8px 28px rgba(16, 24, 40, 0.06);
    border-radius: 999px;
    padding: 0.5rem 0.85rem;
    color: #344054;
    font-size: 0.88rem;
    margin-bottom: 1.35rem;
}

    .hp-hero-badge span {
        width: 9px;
        height: 9px;
        background: var(--hp-primary);
        border-radius: 50%;
    }

.hp-hero h1 {
    max-width: 760px;
    font-size: clamp(2.35rem, 5vw, 4.7rem);
    line-height: 1.02;
    font-weight: 850;
    letter-spacing: -0.06em;
    margin-bottom: 1.25rem;
}

.hp-hero-subtitle {
    max-width: 650px;
    color: var(--hp-muted);
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.hp-search-card {
    max-width: 720px;
    background: #ffffff;
    border: 1px solid var(--hp-border);
    box-shadow: 0 22px 60px rgba(16, 24, 40, 0.12);
    border-radius: 18px;
    padding: 0.55rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

    .hp-search-card .form-control {
        border: none;
        box-shadow: none;
        min-height: 52px;
        font-size: 0.95rem;
    }

.hp-search-icon {
    color: var(--hp-primary);
    font-size: 1.2rem;
    padding-left: 0.7rem;
}

.hp-hero-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.75rem;
}

    .hp-hero-stats div {
        display: flex;
        flex-direction: column;
    }

    .hp-hero-stats strong {
        font-size: 1rem;
        color: var(--hp-text);
    }

    .hp-hero-stats span {
        color: var(--hp-muted);
        font-size: 0.88rem;
    }

/* Hero visual */

.hp-hero-panel {
    position: relative;
    min-height: 430px;
}

.hp-hero-image-card {
    width: 100%;
    height: 420px;
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(0, 121, 107, 0.18), rgba(255, 255, 255, 0.65)), #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 30px 90px rgba(16, 24, 40, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-hero-image-placeholder {
    width: 210px;
    height: 210px;
    background: #ffffff;
    border-radius: 50%;
    color: var(--hp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5.5rem;
    box-shadow: 0 20px 50px rgba(16, 24, 40, 0.12);
}

.hp-floating-card {
    position: absolute;
    background: #ffffff;
    border: 1px solid var(--hp-border);
    box-shadow: 0 18px 50px rgba(16, 24, 40, 0.14);
    border-radius: 18px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 245px;
    z-index: 3;
}

    .hp-floating-card strong,
    .hp-floating-card span {
        display: block;
    }

    .hp-floating-card strong {
        font-size: 0.95rem;
    }

    .hp-floating-card span {
        color: var(--hp-muted);
        font-size: 0.82rem;
    }

.hp-floating-icon {
    width: 42px;
    height: 42px;
    background: var(--hp-primary-soft);
    color: var(--hp-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-floating-card-top {
    top: 35px;
    left: -35px;
}

.hp-floating-card-bottom {
    bottom: 45px;
    right: -20px;
}

/* Sections */

.hp-section {
    padding: 82px 0;
}

.hp-section-soft {
    background: var(--hp-soft-blue);
}

.hp-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 42px;
}

    .hp-section-header span {
        display: inline-block;
        color: var(--hp-primary);
        font-weight: 750;
        margin-bottom: 0.5rem;
    }

    .hp-section-header h2 {
        font-weight: 850;
        letter-spacing: -0.04em;
        margin-bottom: 0.8rem;
    }

    .hp-section-header p {
        color: var(--hp-muted);
        margin: 0;
    }

/* Category cards */

.hp-category-card {
    display: block;
    height: 100%;
    background: #ffffff;
    border: 1px solid var(--hp-border);
    border-radius: 20px;
    padding: 1.35rem;
    text-decoration: none;
    color: var(--hp-text);
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.05);
    transition: all 0.2s ease;
}

    .hp-category-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 34px rgba(16, 24, 40, 0.1);
        color: var(--hp-text);
    }

.hp-category-icon {
    width: 48px;
    height: 48px;
    background: var(--hp-primary-soft);
    color: var(--hp-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.hp-category-card h3 {
    font-size: 1.1rem;
    font-weight: 750;
    margin-bottom: 0.55rem;
}

.hp-category-card p {
    color: var(--hp-muted);
    font-size: 0.9rem;
    line-height: 1.55;
    min-height: 44px;
}

.hp-category-card span {
    color: var(--hp-primary);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Steps */

.hp-step-card {
    height: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 22px;
    padding: 2rem 1.3rem;
}

.hp-step-number {
    width: 56px;
    height: 56px;
    border: 2px solid var(--hp-primary);
    color: var(--hp-primary);
    border-radius: 50%;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 850;
    background: #ffffff;
}

.hp-step-card h3 {
    font-size: 1.15rem;
    font-weight: 750;
}

.hp-step-card p {
    color: var(--hp-muted);
    line-height: 1.65;
    margin-bottom: 0;
}

/* Provider section */

.hp-provider-section {
    background: var(--hp-bg);
    padding: 82px 0;
}

.hp-provider-card {
    background: linear-gradient(135deg, #00897b 0%, #00695c 100%);
    border-radius: 32px;
    padding: clamp(2rem, 5vw, 4rem);
    color: #ffffff;
    box-shadow: 0 25px 70px rgba(0, 105, 92, 0.22);
}

.hp-provider-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.hp-provider-card h2 {
    font-weight: 850;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
}

.hp-provider-card p {
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.75;
    max-width: 560px;
}

.hp-provider-list {
    margin: 1.35rem 0 1.8rem;
    display: grid;
    gap: 0.7rem;
}

    .hp-provider-list div {
        display: flex;
        align-items: center;
        gap: 0.7rem;
        color: rgba(255, 255, 255, 0.92);
    }

    .hp-provider-list i {
        color: #c8fff4;
    }

.hp-provider-btn {
    border-radius: 12px;
    color: var(--hp-primary);
    font-weight: 750;
    padding: 0.75rem 1.2rem;
}

.hp-provider-visual {
    position: relative;
    min-height: 360px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-provider-avatar {
    width: 170px;
    height: 170px;
    background: #ffffff;
    color: var(--hp-primary);
    border-radius: 50%;
    font-size: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-provider-mini-card {
    position: absolute;
    left: 24px;
    top: 38px;
    background: #ffffff;
    color: var(--hp-text);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
    min-width: 210px;
}

    .hp-provider-mini-card.second {
        top: auto;
        left: auto;
        right: 24px;
        bottom: 38px;
    }

    .hp-provider-mini-card strong,
    .hp-provider-mini-card span,
    .hp-provider-mini-card small {
        display: block;
    }

    .hp-provider-mini-card span {
        color: var(--hp-muted);
        font-size: 0.88rem;
    }

    .hp-provider-mini-card small {
        color: var(--hp-primary);
        font-weight: 700;
        margin-top: 0.3rem;
    }

/* Trust */

.hp-trust-item {
    text-align: center;
}

    .hp-trust-item div {
        width: 54px;
        height: 54px;
        margin: 0 auto 1rem;
        background: var(--hp-primary-soft);
        color: var(--hp-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hp-trust-item h3 {
        font-size: 1rem;
        font-weight: 750;
    }

    .hp-trust-item p {
        color: var(--hp-muted);
        font-size: 0.88rem;
        line-height: 1.55;
        max-width: 220px;
        margin: 0 auto;
    }

/* Footer */

.hp-footer {
    background: #f8fafc;
    border-top: 1px solid var(--hp-border);
    padding: 48px 0 24px;
}

    .hp-footer p {
        color: var(--hp-muted);
        max-width: 330px;
        margin-top: 0.8rem;
    }

    .hp-footer h4 {
        font-size: 0.86rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: #475467;
        margin-bottom: 1rem;
    }

    .hp-footer a {
        display: block;
        color: var(--hp-muted);
        text-decoration: none;
        margin-bottom: 0.55rem;
        font-size: 0.92rem;
    }

        .hp-footer a:hover {
            color: var(--hp-primary);
        }

.hp-footer-bottom {
    border-top: 1px solid var(--hp-border);
    margin-top: 34px;
    padding-top: 20px;
    color: var(--hp-muted);
    font-size: 0.88rem;
}

/* Responsive */

@media (max-width: 991.98px) {
    .hp-navbar .d-flex {
        flex-direction: column;
        align-items: stretch;
        margin-top: 1rem;
    }

    .hp-hero {
        min-height: auto;
    }

        .hp-hero::after {
            display: none;
        }

    .hp-hero-content {
        padding-top: 56px;
        padding-bottom: 68px;
    }

    .hp-search-card {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
    }

    .hp-search-icon {
        display: none;
    }

    .hp-search-card .form-control {
        border: 1px solid var(--hp-border);
        min-height: 50px;
    }

    .hp-hero-stats {
        gap: 1rem;
    }

    .hp-section {
        padding: 64px 0;
    }

    .hp-provider-mini-card,
    .hp-provider-mini-card.second {
        position: static;
        margin: 1rem;
    }

    .hp-provider-visual {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
}

@media (max-width: 575.98px) {
    .hp-hero h1 {
        font-size: 2.25rem;
    }

    .hp-hero-subtitle {
        font-size: 1rem;
    }

    .hp-hero-badge {
        font-size: 0.78rem;
    }

    .hp-provider-card {
        border-radius: 24px;
    }

    .hp-trust-item {
        padding: 0 0.4rem;
    }
}
/*Account*/

/* Access / Login Register Page */

.hp-access-page {
    min-height: 100vh;
    background: radial-gradient(circle at 12% 12%, rgba(0, 121, 107, 0.12), transparent 28%), radial-gradient(circle at 88% 18%, rgba(0, 121, 107, 0.10), transparent 30%), linear-gradient(135deg, #f6fbff 0%, #ffffff 48%, #eef6f5 100%);
    padding: 48px 0;
    display: flex;
    align-items: center;
}

.hp-access-shell {
    min-height: 720px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: 34px;
    box-shadow: 0 28px 90px rgba(16, 24, 40, 0.13);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
}

.hp-access-left {
    background: linear-gradient(135deg, rgba(0, 121, 107, 0.95), rgba(0, 92, 82, 0.95)), var(--hp-primary);
    color: #ffffff;
    padding: clamp(2rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hp-access-logo {
    color: #ffffff;
    display: inline-block;
}

    .hp-access-logo:hover {
        color: rgba(255, 255, 255, 0.88);
    }

.hp-access-content {
    max-width: 600px;
}

.hp-access-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 0.5rem 0.9rem;
    font-size: 0.9rem;
    margin-bottom: 1.4rem;
}

.hp-access-content h1 {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.05;
    font-weight: 850;
    letter-spacing: -0.055em;
    margin-bottom: 1.25rem;
}

.hp-access-content p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.8rem;
}

.hp-access-benefits {
    display: grid;
    gap: 0.85rem;
}

    .hp-access-benefits div {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: rgba(255, 255, 255, 0.92);
    }

    .hp-access-benefits i {
        color: #c8fff4;
    }

.hp-access-right {
    padding: clamp(1.5rem, 4vw, 3.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-access-card {
    width: 100%;
    max-width: 520px;
    background: #ffffff;
    border: 1px solid var(--hp-border);
    border-radius: 28px;
    box-shadow: 0 18px 50px rgba(16, 24, 40, 0.08);
    padding: 1.25rem;
}

.hp-access-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #f3f6f8;
    border-radius: 18px;
    padding: 0.35rem;
    margin-bottom: 1.6rem;
}

.hp-access-tab {
    border: none;
    background: transparent;
    border-radius: 14px;
    padding: 0.8rem 1rem;
    font-weight: 750;
    color: #667085;
}

    .hp-access-tab.active {
        background: #ffffff;
        color: var(--hp-primary);
        box-shadow: 0 8px 20px rgba(16, 24, 40, 0.08);
    }

.hp-access-form-panel {
    padding: 0.35rem 0.35rem 0;
}

.hp-access-form-header {
    margin-bottom: 1.4rem;
}

    .hp-access-form-header h2 {
        font-weight: 850;
        letter-spacing: -0.035em;
        margin-bottom: 0.45rem;
    }

    .hp-access-form-header p {
        color: var(--hp-muted);
        margin-bottom: 0;
        line-height: 1.6;
    }

.hp-form-control {
    min-height: 48px;
    border-radius: 12px;
    border-color: var(--hp-border);
}

    .hp-form-control:focus {
        border-color: var(--hp-primary);
        box-shadow: 0 0 0 0.2rem rgba(0, 121, 107, 0.13);
    }

.hp-small-link {
    font-size: 0.86rem;
    text-decoration: none;
    color: var(--hp-primary);
    font-weight: 650;
}

    .hp-small-link:hover {
        color: var(--hp-primary-dark);
    }

.hp-access-footer-note {
    border-top: 1px solid var(--hp-border);
    margin-top: 1.4rem;
    padding-top: 1rem;
    color: var(--hp-muted);
    font-size: 0.9rem;
    display: flex;
    gap: 0.55rem;
    align-items: center;
    justify-content: center;
}

    .hp-access-footer-note i {
        color: var(--hp-primary);
    }

@media (max-width: 991.98px) {
    .hp-access-page {
        padding: 24px 0;
        align-items: flex-start;
    }

    .hp-access-shell {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .hp-access-left {
        min-height: auto;
    }

    .hp-access-right {
        padding: 1.25rem;
    }

    .hp-access-card {
        max-width: none;
    }
}

@media (max-width: 575.98px) {
    .hp-access-page {
        padding: 0;
    }

    .hp-access-shell {
        border-radius: 0;
        border: none;
    }

    .hp-access-left {
        padding: 2rem 1.25rem;
    }

    .hp-access-right {
        padding: 1rem;
    }

    .hp-access-card {
        border-radius: 22px;
        padding: 1rem;
    }

    .hp-access-tabs {
        margin-bottom: 1.2rem;
    }
}

/* Dashboard */

.hp-dashboard {
    min-height: 100vh;
    background: #f6f8fb;
    display: grid;
    grid-template-columns: 280px 1fr;
}

.hp-dashboard-sidebar {
    background: #ffffff;
    border-right: 1px solid var(--hp-border);
    padding: 1.5rem;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.hp-dashboard-logo {
    display: inline-block;
    margin-bottom: 2rem;
}

.hp-dashboard-nav {
    display: grid;
    gap: 0.35rem;
}

    .hp-dashboard-nav a,
    .hp-dashboard-logout {
        width: 100%;
        border: none;
        background: transparent;
        text-decoration: none;
        color: #475467;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem 0.85rem;
        border-radius: 12px;
        font-weight: 600;
        font-size: 0.94rem;
        text-align: left;
    }

        .hp-dashboard-nav a:hover,
        .hp-dashboard-nav a.active,
        .hp-dashboard-logout:hover {
            background: var(--hp-primary-soft);
            color: var(--hp-primary);
        }

.hp-dashboard-nav-title {
    color: #98a2b3;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 800;
    margin: 1.2rem 0 0.35rem;
}

.hp-dashboard-main {
    padding: 2rem;
}

.hp-dashboard-header {
    background: radial-gradient(circle at 80% 20%, rgba(0, 121, 107, 0.13), transparent 30%), #ffffff;
    border: 1px solid var(--hp-border);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 12px 35px rgba(16, 24, 40, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hp-dashboard-kicker {
    color: var(--hp-primary);
    font-weight: 800;
    font-size: 0.9rem;
}

.hp-dashboard-header h1 {
    font-weight: 850;
    letter-spacing: -0.04em;
    margin: 0.35rem 0;
}

.hp-dashboard-header p {
    color: var(--hp-muted);
    margin-bottom: 0;
}

.hp-dashboard-section {
    margin-bottom: 1.5rem;
}

.hp-dashboard-section-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 1rem;
}

    .hp-dashboard-section-title span {
        color: var(--hp-primary);
        font-weight: 800;
        font-size: 0.85rem;
    }

    .hp-dashboard-section-title h2 {
        font-size: 1.35rem;
        font-weight: 850;
        letter-spacing: -0.035em;
        margin: 0.25rem 0 0;
    }

.hp-stat-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid var(--hp-border);
    border-radius: 20px;
    padding: 1.25rem;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
}

.hp-stat-icon {
    width: 42px;
    height: 42px;
    background: var(--hp-primary-soft);
    color: var(--hp-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
}

.hp-stat-card span {
    color: var(--hp-muted);
    display: block;
    font-size: 0.9rem;
}

.hp-stat-card strong {
    display: block;
    font-size: 2rem;
    font-weight: 850;
    letter-spacing: -0.04em;
    margin-top: 0.25rem;
}

.hp-panel-card {
    min-height: 100px;
    background: #ffffff;
    border: 1px solid var(--hp-border);
    border-radius: 24px;
    padding: 1.35rem;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
}

.hp-panel-card-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

    .hp-panel-card-header span {
        color: var(--hp-primary);
        font-weight: 800;
        font-size: 0.82rem;
    }

    .hp-panel-card-header h3 {
        font-size: 1.15rem;
        font-weight: 850;
        margin: 0.25rem 0 0;
    }

    .hp-panel-card-header a {
        color: var(--hp-primary);
        text-decoration: none;
        font-weight: 750;
        font-size: 0.9rem;
    }

.hp-dashboard-list {
    display: grid;
    gap: 0.75rem;
}

.hp-dashboard-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--hp-border);
    border-radius: 16px;
    padding: 1rem;
    text-decoration: none;
    color: var(--hp-text);
    background: #ffffff;
}

    .hp-dashboard-list-item:hover {
        border-color: rgba(0, 121, 107, 0.3);
        box-shadow: 0 10px 24px rgba(16, 24, 40, 0.06);
        color: var(--hp-text);
    }

    .hp-dashboard-list-item strong,
    .hp-dashboard-list-item span,
    .hp-dashboard-list-item small {
        display: block;
    }

    .hp-dashboard-list-item span,
    .hp-dashboard-list-item small {
        color: var(--hp-muted);
        font-size: 0.88rem;
    }

.hp-status-badge {
    display: inline-flex;
    align-items: center;
    background: var(--hp-primary-soft);
    color: var(--hp-primary);
    border-radius: 999px;
    padding: 0.35rem 0.65rem;
    font-weight: 750;
    font-size: 0.78rem;
    margin-bottom: 0.25rem;
}

.hp-empty-state {
    text-align: center;
    padding: 2rem 1rem;
}

    .hp-empty-state i {
        font-size: 2.5rem;
        color: var(--hp-primary);
        margin-bottom: 0.85rem;
    }

    .hp-empty-state h4 {
        font-weight: 850;
        margin-bottom: 0.35rem;
    }

    .hp-empty-state p {
        color: var(--hp-muted);
        max-width: 430px;
        margin: 0 auto 1.2rem;
    }

.hp-provider-onboarding-card {
    height: 100%;
    background: linear-gradient(135deg, #00897b 0%, #00695c 100%);
    color: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 18px 50px rgba(0, 105, 92, 0.18);
}

    .hp-provider-onboarding-card span {
        display: inline-block;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 999px;
        padding: 0.45rem 0.85rem;
        margin-bottom: 1rem;
        font-size: 0.86rem;
    }

    .hp-provider-onboarding-card h3 {
        font-weight: 850;
        letter-spacing: -0.035em;
        margin-bottom: 1rem;
    }

    .hp-provider-onboarding-card p {
        color: rgba(255, 255, 255, 0.84);
        line-height: 1.7;
    }

    .hp-provider-onboarding-card .btn {
        border-radius: 12px;
        color: var(--hp-primary);
        font-weight: 750;
        margin-top: 0.5rem;
    }

.hp-premium-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 0.35rem;
    background: #fff7e6;
    color: #b7791f !important;
    border-radius: 999px;
    padding: 0.45rem 0.75rem;
}

.hp-warning-box {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    background: #fff7ed;
    color: #c2410c;
    border: 1px solid #fed7aa;
    border-radius: 14px;
    padding: 0.85rem;
    font-size: 0.9rem;
    font-weight: 650;
}

.hp-provider-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.2rem;
}

    .hp-provider-metrics div {
        background: #f8fafc;
        border: 1px solid var(--hp-border);
        border-radius: 16px;
        padding: 1rem;
    }

    .hp-provider-metrics span {
        display: block;
        color: var(--hp-muted);
        font-size: 0.78rem;
    }

    .hp-provider-metrics strong {
        display: block;
        font-size: 1.5rem;
        font-weight: 850;
        margin-top: 0.2rem;
    }

.hp-provider-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hp-dashboard-table {
    margin-bottom: 0;
}

    .hp-dashboard-table thead th {
        color: #667085;
        font-size: 0.82rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        border-bottom-color: var(--hp-border);
    }

    .hp-dashboard-table tbody td {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

@media (max-width: 1199.98px) {
    .hp-dashboard {
        grid-template-columns: 1fr;
    }

    .hp-dashboard-sidebar {
        position: static;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--hp-border);
    }

    .hp-dashboard-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hp-dashboard-nav-title {
        grid-column: 1 / -1;
    }

    .hp-dashboard-main {
        padding: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .hp-dashboard-nav {
        grid-template-columns: 1fr;
    }

    .hp-dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        border-radius: 22px;
    }

    .hp-dashboard-header-actions,
    .hp-dashboard-header-actions .btn {
        width: 100%;
    }

    .hp-provider-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-dashboard-list-item {
        align-items: flex-start;
        flex-direction: column;
    }

        .hp-dashboard-list-item .text-end {
            text-align: left !important;
        }
}

/* Provider Profile Create */

.hp-category-select-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 0.75rem;
}

.hp-category-check {
    cursor: pointer;
    margin: 0;
}

    .hp-category-check input {
        display: none;
    }

    .hp-category-check span {
        min-height: 58px;
        border: 1px solid var(--hp-border);
        border-radius: 16px;
        padding: 0.95rem 1rem;
        display: flex;
        align-items: center;
        gap: 0.65rem;
        font-weight: 700;
        color: #475467;
        background: #ffffff;
        transition: all 0.2s ease;
    }

        .hp-category-check span i {
            color: #98a2b3;
        }

    .hp-category-check:hover span {
        border-color: rgba(0, 121, 107, 0.35);
        background: #f8fffd;
    }

    .hp-category-check input:checked + span {
        border-color: var(--hp-primary);
        background: var(--hp-primary-soft);
        color: var(--hp-primary);
    }

        .hp-category-check input:checked + span i {
            color: var(--hp-primary);
        }

.hp-small-heading {
    font-size: 1rem;
    font-weight: 850;
    letter-spacing: -0.02em;
}

.hp-service-area-list {
    display: grid;
    gap: 0.75rem;
}

.hp-service-area-row {
    background: #f8fafc;
    border: 1px solid var(--hp-border);
    border-radius: 16px;
    padding: 0.85rem;
}

.hp-sticky-summary {
    position: sticky;
    top: 1.5rem;
}

.hp-provider-submit-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: var(--hp-primary-soft);
    color: var(--hp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 1rem;
}

.hp-sticky-summary h3 {
    font-weight: 850;
    letter-spacing: -0.035em;
    margin-bottom: 0.75rem;
}

.hp-sticky-summary p {
    color: var(--hp-muted);
    line-height: 1.65;
}

.hp-provider-submit-list {
    display: grid;
    gap: 0.65rem;
    margin: 1.2rem 0;
}

    .hp-provider-submit-list div {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        color: #475467;
        font-weight: 650;
        font-size: 0.92rem;
    }

    .hp-provider-submit-list i {
        color: var(--hp-primary);
    }

.hp-info-note {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    background: #f8fafc;
    border: 1px solid var(--hp-border);
    color: var(--hp-muted);
    border-radius: 14px;
    padding: 0.85rem;
    font-size: 0.87rem;
    line-height: 1.55;
}

    .hp-info-note i {
        color: var(--hp-primary);
        margin-top: 0.1rem;
    }

@media (max-width: 767.98px) {
    .hp-category-select-grid {
        grid-template-columns: 1fr;
    }

    .hp-sticky-summary {
        position: static;
    }
}

/* Request Create Wizard */

.hp-request-wizard {
    display: grid;
    gap: 1rem;
}

.hp-wizard-progress {
    background: #ffffff;
    border: 1px solid var(--hp-border);
    border-radius: 22px;
    padding: 0.7rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
}

.hp-wizard-step {
    border: none;
    background: transparent;
    color: #98a2b3;
    border-radius: 16px;
    padding: 0.75rem 0.5rem;
    font-weight: 750;
    font-size: 0.86rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}

    .hp-wizard-step span {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: #eef2f6;
        color: #667085;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.78rem;
        font-weight: 850;
    }

    .hp-wizard-step.active {
        background: var(--hp-primary-soft);
        color: var(--hp-primary);
    }

        .hp-wizard-step.active span {
            background: var(--hp-primary);
            color: #ffffff;
        }

    .hp-wizard-step.completed {
        color: var(--hp-primary);
    }

        .hp-wizard-step.completed span {
            background: var(--hp-primary);
            color: #ffffff;
        }

.hp-wizard-panel {
    display: none;
}

    .hp-wizard-panel.active {
        display: block;
    }

.hp-wizard-actions {
    background: #ffffff;
    border: 1px solid var(--hp-border);
    border-radius: 20px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
}

.hp-request-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.hp-request-category-card {
    cursor: pointer;
    margin: 0;
}

    .hp-request-category-card input {
        display: none;
    }

    .hp-request-category-card span {
        min-height: 62px;
        border: 1px solid var(--hp-border);
        border-radius: 16px;
        background: #ffffff;
        color: #475467;
        padding: 1rem;
        display: flex;
        align-items: center;
        gap: 0.7rem;
        font-weight: 750;
        transition: all 0.2s ease;
    }

        .hp-request-category-card span i {
            color: #98a2b3;
        }

    .hp-request-category-card:hover span {
        border-color: rgba(0, 121, 107, 0.35);
        background: #f8fffd;
    }

    .hp-request-category-card input:checked + span {
        border-color: var(--hp-primary);
        background: var(--hp-primary-soft);
        color: var(--hp-primary);
    }

        .hp-request-category-card input:checked + span i {
            color: var(--hp-primary);
        }

.hp-dynamic-question-list {
    display: grid;
    gap: 1rem;
}

.hp-dynamic-question {
    background: #f8fafc;
    border: 1px solid var(--hp-border);
    border-radius: 16px;
    padding: 1rem;
}

.hp-request-preview {
    display: grid;
    gap: 0.85rem;
}

    .hp-request-preview div {
        border: 1px solid var(--hp-border);
        border-radius: 16px;
        background: #f8fafc;
        padding: 1rem;
    }

    .hp-request-preview span,
    .hp-request-preview strong {
        display: block;
    }

    .hp-request-preview span {
        color: var(--hp-muted);
        font-size: 0.82rem;
        margin-bottom: 0.25rem;
    }

    .hp-request-preview strong {
        font-weight: 800;
        color: var(--hp-text);
    }

@media (max-width: 991.98px) {
    .hp-wizard-progress {
        grid-template-columns: 1fr;
    }

    .hp-wizard-step {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .hp-request-category-grid {
        grid-template-columns: 1fr;
    }

    .hp-wizard-actions {
        flex-direction: column;
    }

        .hp-wizard-actions .btn {
            width: 100%;
        }
}

/* Customer Requests */

.hp-filter-form {
    margin-top: 0.5rem;
}

.hp-customer-request-list {
    display: grid;
    gap: 1rem;
}

.hp-customer-request-card {
    background: #ffffff;
    border: 1px solid var(--hp-border);
    border-radius: 24px;
    padding: 1.25rem;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
    display: grid;
    grid-template-columns: 1fr 190px;
    gap: 1.25rem;
    align-items: stretch;
}

.hp-request-card-top {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    margin-bottom: 0.8rem;
}

.hp-request-category-pill {
    display: inline-flex;
    align-items: center;
    background: #f8fafc;
    color: #475467;
    border: 1px solid var(--hp-border);
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 750;
}

.hp-customer-request-card h3 {
    font-size: 1.2rem;
    font-weight: 850;
    letter-spacing: -0.03em;
    margin-bottom: 0.55rem;
}

.hp-customer-request-card p {
    color: var(--hp-muted);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.hp-request-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

    .hp-request-meta-grid div {
        display: flex;
        align-items: center;
        gap: 0.55rem;
        color: #475467;
        background: #f8fafc;
        border: 1px solid var(--hp-border);
        border-radius: 14px;
        padding: 0.75rem;
        font-size: 0.9rem;
        font-weight: 600;
    }

    .hp-request-meta-grid i {
        color: var(--hp-primary);
    }

.hp-customer-request-side {
    border-left: 1px solid var(--hp-border);
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.8rem;
}

.hp-request-offer-count {
    background: var(--hp-primary-soft);
    border-radius: 18px;
    padding: 1rem;
    text-align: center;
}

    .hp-request-offer-count strong {
        display: block;
        font-size: 2rem;
        line-height: 1;
        font-weight: 850;
        color: var(--hp-primary);
    }

    .hp-request-offer-count span {
        display: block;
        color: #475467;
        font-size: 0.85rem;
        margin-top: 0.3rem;
    }

.hp-customer-request-side small {
    color: var(--hp-muted);
    text-align: center;
}

.hp-status-open {
    background: #e6f4f2;
    color: #00796b;
}

.hp-status-offered {
    background: #eef5ff;
    color: #2563eb;
}

.hp-status-accepted {
    background: #f0fdf4;
    color: #16a34a;
}

.hp-status-inprogress {
    background: #fff7ed;
    color: #ea580c;
}

.hp-status-completed {
    background: #ecfdf5;
    color: #059669;
}

.hp-status-cancelled,
.hp-status-expired {
    background: #fef2f2;
    color: #dc2626;
}

@media (max-width: 991.98px) {
    .hp-customer-request-card {
        grid-template-columns: 1fr;
    }

    .hp-customer-request-side {
        border-left: none;
        border-top: 1px solid var(--hp-border);
        padding-left: 0;
        padding-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hp-request-meta-grid {
        grid-template-columns: 1fr;
    }
}

/* Customer Request Details / Offers */

.hp-request-detail-status {
    margin-bottom: 1rem;
}

.hp-request-detail-title {
    font-weight: 850;
    letter-spacing: -0.035em;
    margin-bottom: 0.75rem;
}

.hp-request-detail-description {
    color: var(--hp-muted);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.hp-request-detail-list {
    display: grid;
    gap: 0.75rem;
}

    .hp-request-detail-list div {
        background: #f8fafc;
        border: 1px solid var(--hp-border);
        border-radius: 16px;
        padding: 0.9rem;
        display: grid;
        grid-template-columns: 28px 1fr;
        column-gap: 0.6rem;
    }

    .hp-request-detail-list i {
        color: var(--hp-primary);
        grid-row: span 2;
        margin-top: 0.1rem;
    }

    .hp-request-detail-list span {
        color: var(--hp-muted);
        font-size: 0.8rem;
    }

    .hp-request-detail-list strong {
        color: var(--hp-text);
        font-weight: 800;
        font-size: 0.95rem;
    }

    .hp-request-detail-list small {
        display: inline-flex;
        margin-left: 0.35rem;
        background: var(--hp-primary-soft);
        color: var(--hp-primary);
        border-radius: 999px;
        padding: 0.15rem 0.45rem;
        font-size: 0.72rem;
    }

.hp-request-count-badge {
    display: inline-flex !important;
    align-items: center;
    background: var(--hp-primary-soft);
    color: var(--hp-primary) !important;
    border-radius: 999px;
    padding: 0.45rem 0.75rem;
    font-weight: 800;
}

.hp-offer-list {
    display: grid;
    gap: 1rem;
}

.hp-offer-card {
    position: relative;
    border: 1px solid var(--hp-border);
    border-radius: 22px;
    background: #ffffff;
    padding: 1.2rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
}

    .hp-offer-card.accepted {
        border-color: rgba(22, 163, 74, 0.45);
        background: #f0fdf4;
    }

    .hp-offer-card.rejected {
        opacity: 0.68;
    }

.hp-recommended-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    background: #fff7e6;
    color: #b7791f;
    border-bottom-left-radius: 16px;
    padding: 0.5rem 0.85rem;
    font-weight: 800;
    font-size: 0.8rem;
}

.hp-offer-provider {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding-right: 150px;
    margin-bottom: 1.1rem;
}

.hp-provider-avatar-sm {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: var(--hp-primary-soft);
    color: var(--hp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex: 0 0 auto;
}

.hp-provider-name-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

    .hp-provider-name-row h4 {
        font-size: 1.1rem;
        font-weight: 850;
        margin: 0;
    }

.hp-provider-company {
    color: var(--hp-muted);
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.hp-provider-rating-row {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    color: #667085;
    font-size: 0.88rem;
    font-weight: 650;
}

    .hp-provider-rating-row i {
        color: #f59e0b;
    }

.hp-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: #eef5ff;
    color: #2563eb;
    border-radius: 999px;
    padding: 0.35rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 800;
}

.hp-offer-body {
    display: grid;
    gap: 1rem;
}

.hp-offer-message,
.hp-offer-provider-desc {
    background: #f8fafc;
    border: 1px solid var(--hp-border);
    border-radius: 16px;
    padding: 1rem;
}

    .hp-offer-message h5,
    .hp-offer-provider-desc h5 {
        font-size: 0.88rem;
        font-weight: 850;
        margin-bottom: 0.45rem;
    }

    .hp-offer-message p,
    .hp-offer-provider-desc p {
        color: var(--hp-muted);
        line-height: 1.65;
        margin: 0;
    }

.hp-offer-details-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

    .hp-offer-details-grid div {
        background: #ffffff;
        border: 1px solid var(--hp-border);
        border-radius: 16px;
        padding: 0.9rem;
    }

    .hp-offer-details-grid span,
    .hp-offer-details-grid strong {
        display: block;
    }

    .hp-offer-details-grid span {
        color: var(--hp-muted);
        font-size: 0.78rem;
        margin-bottom: 0.2rem;
    }

    .hp-offer-details-grid strong {
        font-weight: 850;
        color: var(--hp-text);
    }

.hp-offer-actions {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

    .hp-offer-actions form {
        flex: 1;
    }

    .hp-offer-actions .btn,
    .hp-offer-actions a {
        flex: 1;
        min-width: 180px;
    }

.hp-accepted-box {
    flex: 1;
    min-width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-weight: 850;
}

@media (max-width: 991.98px) {
    .hp-offer-provider {
        padding-right: 0;
    }

    .hp-recommended-ribbon {
        position: static;
        display: inline-flex;
        border-radius: 999px;
        margin-bottom: 1rem;
    }

    .hp-offer-details-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .hp-offer-provider {
        flex-direction: column;
    }

    .hp-offer-details-grid {
        grid-template-columns: 1fr;
    }

    .hp-offer-actions {
        flex-direction: column;
    }

        .hp-offer-actions .btn,
        .hp-offer-actions a,
        .hp-offer-actions form {
            width: 100%;
            min-width: 0;
        }
}

/* Provider Matching Requests */

.hp-provider-request-list {
    display: grid;
    gap: 1rem;
}

.hp-provider-request-card {
    background: #ffffff;
    border: 1px solid var(--hp-border);
    border-radius: 24px;
    padding: 1.25rem;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
    display: grid;
    grid-template-columns: 1fr 190px;
    gap: 1.25rem;
    align-items: stretch;
}

    .hp-provider-request-card h3 {
        font-size: 1.2rem;
        font-weight: 850;
        letter-spacing: -0.03em;
        margin-bottom: 0.55rem;
    }

    .hp-provider-request-card p {
        color: var(--hp-muted);
        line-height: 1.65;
        margin-bottom: 1rem;
    }

.hp-provider-request-side {
    border-left: 1px solid var(--hp-border);
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.8rem;
}

.hp-credit-cost-box {
    background: var(--hp-primary-soft);
    border-radius: 18px;
    padding: 1rem;
    text-align: center;
}

    .hp-credit-cost-box span,
    .hp-credit-cost-box small,
    .hp-credit-cost-box strong {
        display: block;
    }

    .hp-credit-cost-box span {
        color: #475467;
        font-size: 0.85rem;
        font-weight: 750;
    }

    .hp-credit-cost-box small {
        color: var(--hp-muted);
        margin-top: 0.2rem;
        text-decoration: line-through;
    }

    .hp-credit-cost-box strong {
        color: var(--hp-primary);
        font-size: 1.8rem;
        line-height: 1;
        font-weight: 850;
        margin-top: 0.45rem;
    }

@media (max-width: 991.98px) {
    .hp-provider-request-card {
        grid-template-columns: 1fr;
    }

    .hp-provider-request-side {
        border-left: none;
        border-top: 1px solid var(--hp-border);
        padding-left: 0;
        padding-top: 1rem;
    }
}

/* Provider Request Details */

.hp-provider-detail-hero {
    background: #f8fafc;
    border: 1px solid var(--hp-border);
    border-radius: 20px;
    padding: 1.25rem;
}

    .hp-provider-detail-hero h2 {
        font-weight: 850;
        letter-spacing: -0.035em;
        font-size: 1.35rem;
        margin-bottom: 0.65rem;
    }

    .hp-provider-detail-hero p {
        color: var(--hp-muted);
        line-height: 1.75;
        margin: 0;
    }

.hp-privacy-box {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #f8fafc;
    border: 1px solid var(--hp-border);
    border-radius: 20px;
    padding: 1.25rem;
}

.hp-privacy-icon {
    width: 52px;
    height: 52px;
    background: var(--hp-primary-soft);
    color: var(--hp-primary);
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex: 0 0 auto;
}

.hp-privacy-box h4 {
    font-size: 1.05rem;
    font-weight: 850;
    margin-bottom: 0.45rem;
}

.hp-privacy-box p {
    color: var(--hp-muted);
    line-height: 1.65;
    margin: 0;
}

.hp-credit-summary {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
}

    .hp-credit-summary div {
        background: #f8fafc;
        border: 1px solid var(--hp-border);
        border-radius: 16px;
        padding: 0.95rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .hp-credit-summary span {
        color: var(--hp-muted);
        font-weight: 650;
    }

    .hp-credit-summary strong {
        color: var(--hp-primary);
        font-size: 1.25rem;
        font-weight: 850;
    }

@media (max-width: 575.98px) {
    .hp-privacy-box {
        flex-direction: column;
    }
}

/* Offer Create */

.hp-offer-request-summary {
    background: #f8fafc;
    border: 1px solid var(--hp-border);
    border-radius: 20px;
    padding: 1.25rem;
}

    .hp-offer-request-summary p {
        color: var(--hp-muted);
        line-height: 1.75;
        margin: 0;
    }

/* Provider Offers */

.hp-provider-offer-list {
    display: grid;
    gap: 1rem;
}

.hp-provider-offer-card {
    background: #ffffff;
    border: 1px solid var(--hp-border);
    border-radius: 24px;
    padding: 1.25rem;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
    display: grid;
    grid-template-columns: 1fr 210px;
    gap: 1.25rem;
    align-items: stretch;
}

    .hp-provider-offer-card h3 {
        font-size: 1.2rem;
        font-weight: 850;
        letter-spacing: -0.03em;
        margin-bottom: 0.55rem;
    }

    .hp-provider-offer-card p {
        color: var(--hp-muted);
        line-height: 1.65;
        margin-bottom: 1rem;
    }

.hp-provider-offer-side {
    border-left: 1px solid var(--hp-border);
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.8rem;
}

.hp-offer-price-box {
    background: var(--hp-primary-soft);
    border-radius: 18px;
    padding: 1rem;
    text-align: center;
}

    .hp-offer-price-box span,
    .hp-offer-price-box strong {
        display: block;
    }

    .hp-offer-price-box span {
        color: #475467;
        font-size: 0.85rem;
        font-weight: 750;
    }

    .hp-offer-price-box strong {
        color: var(--hp-primary);
        font-size: 1.55rem;
        line-height: 1.15;
        font-weight: 850;
        margin-top: 0.35rem;
    }

.hp-credit-mini-box {
    background: #f8fafc;
    border: 1px solid var(--hp-border);
    border-radius: 16px;
    padding: 0.85rem;
    text-align: center;
}

    .hp-credit-mini-box span,
    .hp-credit-mini-box strong {
        display: block;
    }

    .hp-credit-mini-box span {
        color: var(--hp-muted);
        font-size: 0.8rem;
        font-weight: 700;
    }

    .hp-credit-mini-box strong {
        color: var(--hp-text);
        font-size: 1.35rem;
        font-weight: 850;
        margin-top: 0.2rem;
    }

.hp-provider-offer-side small {
    color: var(--hp-muted);
    text-align: center;
}

.hp-status-sent {
    background: #eef5ff;
    color: #2563eb;
}

.hp-status-viewed {
    background: #f5f3ff;
    color: #7c3aed;
}

.hp-status-rejected {
    background: #fef2f2;
    color: #dc2626;
}

@media (max-width: 991.98px) {
    .hp-provider-offer-card {
        grid-template-columns: 1fr;
    }

    .hp-provider-offer-side {
        border-left: none;
        border-top: 1px solid var(--hp-border);
        padding-left: 0;
        padding-top: 1rem;
    }
}

/* Credit Pages */

.hp-credit-main-stat {
    border-color: rgba(0, 121, 107, 0.25);
    background: linear-gradient(135deg, #ffffff 0%, #f0fffb 100%);
}

.hp-credit-positive {
    color: #16a34a !important;
    font-weight: 850;
}

.hp-credit-negative {
    color: #dc2626 !important;
    font-weight: 850;
}

.hp-credit-package-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.hp-credit-package-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--hp-border);
    border-radius: 24px;
    padding: 1.35rem;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
}

    .hp-credit-package-card.popular {
        border-color: rgba(0, 121, 107, 0.4);
        box-shadow: 0 18px 45px rgba(0, 121, 107, 0.12);
    }

.hp-popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #fff7e6;
    color: #b7791f;
    border-radius: 999px;
    padding: 0.35rem 0.65rem;
    font-size: 0.75rem;
    font-weight: 850;
}

.hp-credit-package-icon {
    width: 54px;
    height: 54px;
    background: var(--hp-primary-soft);
    color: var(--hp-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.hp-credit-package-card h3 {
    font-weight: 850;
    letter-spacing: -0.035em;
    margin-bottom: 0.5rem;
}

.hp-credit-package-card p {
    color: var(--hp-muted);
    line-height: 1.6;
    min-height: 52px;
}

.hp-credit-package-price {
    margin-top: 1.2rem;
    margin-bottom: 0.4rem;
}

    .hp-credit-package-price strong {
        font-size: 2.5rem;
        font-weight: 900;
        letter-spacing: -0.06em;
        color: var(--hp-primary);
    }

    .hp-credit-package-price span {
        color: var(--hp-muted);
        font-weight: 700;
    }

.hp-credit-package-money {
    color: var(--hp-text);
    font-weight: 850;
    font-size: 1.15rem;
    margin-bottom: 1.1rem;
}

.hp-credit-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

    .hp-credit-info-grid div {
        background: #f8fafc;
        border: 1px solid var(--hp-border);
        border-radius: 18px;
        padding: 1.2rem;
    }

    .hp-credit-info-grid i {
        color: var(--hp-primary);
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .hp-credit-info-grid h4 {
        font-size: 1rem;
        font-weight: 850;
        margin-bottom: 0.4rem;
    }

    .hp-credit-info-grid p {
        color: var(--hp-muted);
        line-height: 1.6;
        margin: 0;
    }

@media (max-width: 1199.98px) {
    .hp-credit-package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hp-credit-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .hp-credit-package-grid {
        grid-template-columns: 1fr;
    }
}

/* Premium Plans */

.hp-current-premium-card {
    background: linear-gradient(135deg, #fff7e6 0%, #ffffff 100%);
    border: 1px solid #fde68a;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 12px 35px rgba(181, 118, 31, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

    .hp-current-premium-card span {
        color: #b7791f;
        font-weight: 800;
        font-size: 0.85rem;
    }

    .hp-current-premium-card h3 {
        font-weight: 900;
        letter-spacing: -0.04em;
        margin: 0.35rem 0;
    }

    .hp-current-premium-card p {
        margin: 0;
        color: var(--hp-muted);
    }

.hp-current-premium-icon {
    width: 72px;
    height: 72px;
    background: #fff7e6;
    color: #b7791f;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex: 0 0 auto;
}

.hp-premium-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.hp-premium-plan-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--hp-border);
    border-radius: 24px;
    padding: 1.35rem;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
}

    .hp-premium-plan-card.popular {
        border-color: #f59e0b;
        box-shadow: 0 18px 45px rgba(245, 158, 11, 0.13);
    }

.hp-premium-plan-icon {
    width: 54px;
    height: 54px;
    background: #fff7e6;
    color: #b7791f;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.hp-premium-plan-card h3 {
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 0.75rem;
}

.hp-premium-price {
    margin-bottom: 1rem;
}

    .hp-premium-price strong {
        display: block;
        font-size: 2rem;
        font-weight: 900;
        letter-spacing: -0.055em;
    }

    .hp-premium-price span {
        color: var(--hp-muted);
        font-weight: 700;
    }

.hp-premium-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

    .hp-premium-metrics div {
        background: #f8fafc;
        border: 1px solid var(--hp-border);
        border-radius: 16px;
        padding: 0.85rem;
    }

    .hp-premium-metrics span,
    .hp-premium-metrics strong {
        display: block;
    }

    .hp-premium-metrics span {
        color: var(--hp-muted);
        font-size: 0.78rem;
        margin-bottom: 0.25rem;
    }

    .hp-premium-metrics strong {
        color: #b7791f;
        font-size: 1.25rem;
        font-weight: 900;
    }

.hp-premium-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
    display: grid;
    gap: 0.65rem;
}

    .hp-premium-benefits li {
        color: #475467;
        font-weight: 650;
        display: flex;
        align-items: flex-start;
        gap: 0.55rem;
    }

    .hp-premium-benefits i {
        color: #16a34a;
        margin-top: 0.12rem;
    }

.hp-premium-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

    .hp-premium-info-grid div {
        background: #f8fafc;
        border: 1px solid var(--hp-border);
        border-radius: 18px;
        padding: 1.2rem;
    }

    .hp-premium-info-grid i {
        color: #b7791f;
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .hp-premium-info-grid h4 {
        font-size: 1rem;
        font-weight: 850;
        margin-bottom: 0.4rem;
    }

    .hp-premium-info-grid p {
        color: var(--hp-muted);
        line-height: 1.6;
        margin: 0;
    }

@media (max-width: 1199.98px) {
    .hp-premium-plan-grid {
        grid-template-columns: 1fr;
    }

    .hp-premium-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .hp-current-premium-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .hp-premium-metrics {
        grid-template-columns: 1fr;
    }
}

/* Provider Offer Details */

.hp-offer-request-summary h4 {
    font-size: 1.1rem;
    font-weight: 850;
    letter-spacing: -0.03em;
    margin-bottom: 0.6rem;
}

/* Admin */

.hp-admin {
    min-height: 100vh;
    background: #f6f8fb;
    display: grid;
    grid-template-columns: 280px 1fr;
}

.hp-admin-sidebar {
    background: #ffffff;
    border-right: 1px solid var(--hp-border);
    padding: 1.5rem;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.hp-admin-logo {
    display: inline-block;
    margin-bottom: 0.7rem;
}

.hp-admin-label {
    color: var(--hp-muted);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.hp-admin-main {
    padding: 2rem;
}

.hp-admin-status-pending {
    background: #fff7ed;
    color: #ea580c;
}

.hp-admin-status-approved {
    background: #ecfdf5;
    color: #059669;
}

.hp-admin-status-rejected {
    background: #fef2f2;
    color: #dc2626;
}

.hp-admin-provider-hero {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: #f8fafc;
    border: 1px solid var(--hp-border);
    border-radius: 20px;
    padding: 1.2rem;
}

    .hp-admin-provider-hero h2 {
        font-weight: 900;
        letter-spacing: -0.04em;
        margin-bottom: 0.25rem;
    }

    .hp-admin-provider-hero p {
        margin: 0 0 0.35rem;
        color: var(--hp-muted);
    }

.hp-admin-info-box {
    background: #f8fafc;
    border: 1px solid var(--hp-border);
    border-radius: 18px;
    padding: 1.2rem;
    height: 100%;
}

    .hp-admin-info-box h4 {
        font-size: 1rem;
        font-weight: 850;
        margin-bottom: 0.8rem;
    }

    .hp-admin-info-box p {
        color: var(--hp-muted);
        margin: 0;
    }

.hp-admin-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

    .hp-admin-chip-list span {
        background: var(--hp-primary-soft);
        color: var(--hp-primary);
        border-radius: 999px;
        padding: 0.4rem 0.7rem;
        font-weight: 750;
        font-size: 0.85rem;
    }

@media (max-width: 1199.98px) {
    .hp-admin {
        grid-template-columns: 1fr;
    }

    .hp-admin-sidebar {
        position: static;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--hp-border);
    }

    .hp-admin-main {
        padding: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .hp-admin-provider-hero {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Admin Categories */

.hp-admin-category-name {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .hp-admin-category-name > span {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        background: var(--hp-primary-soft);
        color: var(--hp-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

.hp-admin-switch {
    background: #f8fafc;
    border: 1px solid var(--hp-border);
    border-radius: 16px;
    padding: 1rem 1rem 1rem 3rem;
}

    .hp-admin-switch .form-check-input {
        cursor: pointer;
    }

    .hp-admin-switch .form-check-label {
        font-weight: 750;
    }

/* Customer Offers */

.hp-customer-offer-list {
    display: grid;
    gap: 1rem;
}

.hp-customer-offer-card {
    background: #ffffff;
    border: 1px solid var(--hp-border);
    border-radius: 24px;
    padding: 1.25rem;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
    display: grid;
    grid-template-columns: 1fr 210px;
    gap: 1.25rem;
    align-items: stretch;
}

    .hp-customer-offer-card.accepted {
        border-color: rgba(22, 163, 74, 0.45);
        background: #f0fdf4;
    }

    .hp-customer-offer-card.rejected {
        opacity: 0.72;
    }

    .hp-customer-offer-card h3 {
        font-size: 1.2rem;
        font-weight: 850;
        letter-spacing: -0.03em;
        margin-bottom: 0.8rem;
    }

.hp-customer-offer-provider {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #f8fafc;
    border: 1px solid var(--hp-border);
    border-radius: 18px;
    padding: 1rem;
}

    .hp-customer-offer-provider h4 {
        font-size: 1rem;
        font-weight: 850;
        margin-bottom: 0.2rem;
    }

    .hp-customer-offer-provider p {
        color: var(--hp-muted);
        margin: 0 0 0.3rem;
    }

.hp-customer-offer-side {
    border-left: 1px solid var(--hp-border);
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.8rem;
}

    .hp-customer-offer-side small {
        color: var(--hp-muted);
        text-align: center;
    }

@media (max-width: 991.98px) {
    .hp-customer-offer-card {
        grid-template-columns: 1fr;
    }

    .hp-customer-offer-side {
        border-left: none;
        border-top: 1px solid var(--hp-border);
        padding-left: 0;
        padding-top: 1rem;
    }
}

/* Responsive Admin Sidebar + Mobile Bottom Nav */

.hp-admin {
    min-height: 100vh;
    background: #f6f8fb;
    display: grid;
    grid-template-columns: 280px 1fr;
    transition: grid-template-columns 0.22s ease;
}

    .hp-admin.hp-sidebar-collapsed {
        grid-template-columns: 92px 1fr;
    }

.hp-admin-sidebar {
    background: #ffffff;
    border-right: 1px solid var(--hp-border);
    padding: 1.5rem 1.2rem;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    transition: width 0.22s ease, padding 0.22s ease;
    z-index: 20;
}

.hp-admin-sidebar-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.7rem;
}

.hp-admin-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    min-height: 38px;
}

.hp-sidebar-logo-short {
    display: none;
    font-weight: 900;
    color: var(--hp-primary);
    letter-spacing: -0.05em;
}

.hp-sidebar-toggle {
    width: 38px;
    height: 38px;
    border: 1px solid var(--hp-border);
    background: #ffffff;
    color: var(--hp-text);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.18s ease;
}

    .hp-sidebar-toggle:hover {
        background: var(--hp-primary-soft);
        color: var(--hp-primary);
        border-color: rgba(0, 121, 107, 0.2);
    }

.hp-admin.hp-sidebar-collapsed .hp-admin-sidebar {
    padding-left: 1rem;
    padding-right: 1rem;
}

.hp-admin.hp-sidebar-collapsed .hp-sidebar-text,
.hp-admin.hp-sidebar-collapsed .hp-sidebar-logo-text,
.hp-admin.hp-sidebar-collapsed .hp-admin-label {
    display: none !important;
}

.hp-admin.hp-sidebar-collapsed .hp-sidebar-logo-short {
    display: inline-flex;
}

.hp-admin.hp-sidebar-collapsed .hp-admin-sidebar-top {
    justify-content: center;
    flex-direction: column;
}

.hp-admin.hp-sidebar-collapsed .hp-dashboard-nav a,
.hp-admin.hp-sidebar-collapsed .hp-dashboard-logout {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
}

    .hp-admin.hp-sidebar-collapsed .hp-dashboard-nav i,
    .hp-admin.hp-sidebar-collapsed .hp-dashboard-logout i {
        margin-right: 0;
        font-size: 1.1rem;
    }

.hp-admin-main {
    padding: 2rem;
    min-width: 0;
}

/* Mobile bottom nav */

.hp-mobile-bottom-nav {
    display: none;
}

.hp-mobile-more-panel {
    display: none;
}

@media (max-width: 991.98px) {
    .hp-admin {
        display: block;
        min-height: 100vh;
    }

    .hp-admin-sidebar {
        display: none;
    }

    .hp-admin-main {
        padding: 1rem;
        padding-bottom: 96px;
    }

    .hp-mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1050;
        height: 74px;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(16px);
        border-top: 1px solid var(--hp-border);
        box-shadow: 0 -12px 32px rgba(16, 24, 40, 0.08);
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        padding: 0.45rem 0.5rem 0.55rem;
    }

        .hp-mobile-bottom-nav a,
        .hp-mobile-bottom-nav button {
            border: 0;
            background: transparent;
            color: #667085;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.2rem;
            font-size: 0.72rem;
            font-weight: 750;
            border-radius: 16px;
            min-width: 0;
        }

        .hp-mobile-bottom-nav i {
            font-size: 1.15rem;
            line-height: 1;
        }

        .hp-mobile-bottom-nav a.active,
        .hp-mobile-bottom-nav button.active,
        .hp-mobile-bottom-nav a:hover,
        .hp-mobile-bottom-nav button:hover {
            background: var(--hp-primary-soft);
            color: var(--hp-primary);
        }

    .hp-mobile-more-panel {
        position: fixed;
        inset: 0;
        z-index: 1060;
        background: rgba(15, 23, 42, 0.35);
        padding: 1rem;
        align-items: flex-end;
        justify-content: center;
    }

        .hp-mobile-more-panel.show {
            display: flex;
        }

    .hp-mobile-more-card {
        width: 100%;
        max-width: 520px;
        background: #ffffff;
        border-radius: 26px 26px 20px 20px;
        border: 1px solid var(--hp-border);
        box-shadow: 0 24px 70px rgba(16, 24, 40, 0.2);
        padding: 1rem;
        animation: hpBottomSheetIn 0.18s ease-out;
    }

    .hp-mobile-more-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.3rem 0.25rem 0.9rem;
        border-bottom: 1px solid var(--hp-border);
        margin-bottom: 0.75rem;
    }

        .hp-mobile-more-header strong {
            font-size: 1.05rem;
            font-weight: 900;
            letter-spacing: -0.03em;
        }

        .hp-mobile-more-header button {
            width: 38px;
            height: 38px;
            border: 0;
            background: #f8fafc;
            border-radius: 14px;
            color: var(--hp-text);
        }

    .hp-mobile-more-links {
        display: grid;
        gap: 0.5rem;
    }

        .hp-mobile-more-links a,
        .hp-mobile-more-links button {
            width: 100%;
            border: 0;
            background: #f8fafc;
            color: var(--hp-text);
            text-decoration: none;
            border-radius: 16px;
            padding: 0.9rem 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-weight: 800;
            text-align: left;
        }

            .hp-mobile-more-links a:hover,
            .hp-mobile-more-links button:hover {
                background: var(--hp-primary-soft);
                color: var(--hp-primary);
            }

        .hp-mobile-more-links i {
            color: var(--hp-primary);
        }
}

@keyframes hpBottomSheetIn {
    from {
        transform: translateY(16px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive User Dashboard Sidebar */

.hp-dashboard {
    min-height: 100vh;
    background: #f6f8fb;
    display: grid;
    grid-template-columns: 280px 1fr;
    transition: grid-template-columns 0.22s ease;
}

    .hp-dashboard.hp-sidebar-collapsed {
        grid-template-columns: 92px 1fr;
    }

.hp-dashboard-sidebar {
    background: #ffffff;
    border-right: 1px solid var(--hp-border);
    padding: 1.5rem 1.2rem;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    transition: width 0.22s ease, padding 0.22s ease;
    z-index: 20;
}

.hp-dashboard-sidebar-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.hp-dashboard.hp-sidebar-collapsed .hp-dashboard-sidebar {
    padding-left: 1rem;
    padding-right: 1rem;
}

.hp-dashboard.hp-sidebar-collapsed .hp-sidebar-text,
.hp-dashboard.hp-sidebar-collapsed .hp-sidebar-logo-text {
    display: none !important;
}

.hp-dashboard.hp-sidebar-collapsed .hp-sidebar-logo-short {
    display: inline-flex;
}

.hp-dashboard.hp-sidebar-collapsed .hp-dashboard-sidebar-top {
    justify-content: center;
    flex-direction: column;
}

.hp-dashboard.hp-sidebar-collapsed .hp-dashboard-nav a,
.hp-dashboard.hp-sidebar-collapsed .hp-dashboard-logout {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
}

    .hp-dashboard.hp-sidebar-collapsed .hp-dashboard-nav i,
    .hp-dashboard.hp-sidebar-collapsed .hp-dashboard-logout i {
        margin-right: 0;
        font-size: 1.1rem;
    }

.hp-dashboard-main {
    padding: 2rem;
    min-width: 0;
}

@media (max-width: 991.98px) {
    .hp-dashboard {
        display: block;
        min-height: 100vh;
    }

    .hp-dashboard-sidebar {
        display: none;
    }

    .hp-dashboard-main {
        padding: 1rem;
        padding-bottom: 96px;
    }
}