/* /Components/Layout/PortalLayout.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════
   PortalLayout — Warm Industrial Refinement
   Charcoal shell, golden orange accents, clean hierarchy
   ═══════════════════════════════════════════════════════ */

/* ── AppBar ──────────────────────────────────────────── */
[b-mra4qu2usv] .portal-appbar {
    border-bottom: 1px solid rgba(221, 145, 66, 0.15);
    backdrop-filter: blur(8px);
}

.portal-title[b-mra4qu2usv] {
    font-weight: 300;
    letter-spacing: 0.04em;
    user-select: none;
}

.portal-title-accent[b-mra4qu2usv] {
    font-weight: 700;
    color: #dd9142;
}

[b-mra4qu2usv] .portal-menu-toggle {
    transition: transform 0.2s ease;
}

[b-mra4qu2usv] .portal-menu-toggle:hover {
    transform: scale(1.08);
}

/* ── Company Badge ───────────────────────────────────── */
.portal-company-badge[b-mra4qu2usv] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    margin-right: 12px;
    background: rgba(221, 145, 66, 0.12);
    border: 1px solid rgba(221, 145, 66, 0.25);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.portal-company-badge:hover[b-mra4qu2usv] {
    background: rgba(221, 145, 66, 0.2);
    border-color: rgba(221, 145, 66, 0.4);
}

/* ── Drawer ──────────────────────────────────────────── */
[b-mra4qu2usv] .portal-drawer {
    border-right: 1px solid rgba(221, 145, 66, 0.08);
}

.portal-nav-wrapper[b-mra4qu2usv] {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-top: 8px;
}

/* Nav link styling — golden left accent on active */
[b-mra4qu2usv] .portal-nav .mud-nav-link {
    margin: 2px 8px;
    border-radius: 6px;
    transition: background 0.15s ease, padding-left 0.15s ease;
    border-left: 3px solid transparent;
}

[b-mra4qu2usv] .portal-nav .mud-nav-link:hover {
    background: rgba(221, 145, 66, 0.08);
}

[b-mra4qu2usv] .portal-nav .mud-nav-link.active {
    background: rgba(221, 145, 66, 0.12);
    border-left-color: #dd9142;
    font-weight: 600;
}

/* Nav group headers */
[b-mra4qu2usv] .portal-nav .mud-nav-group .mud-nav-link {
    margin-left: 20px;
    font-size: 0.8125rem;
}

/* ── Main Content ────────────────────────────────────── */
[b-mra4qu2usv] .portal-main {
    background: #fafaf8;
    min-height: 100vh;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-ejwu2n1i0a],
.components-reconnect-repeated-attempt-visible[b-ejwu2n1i0a],
.components-reconnect-failed-visible[b-ejwu2n1i0a],
.components-pause-visible[b-ejwu2n1i0a],
.components-resume-failed-visible[b-ejwu2n1i0a],
.components-rejoining-animation[b-ejwu2n1i0a] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-ejwu2n1i0a],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-ejwu2n1i0a],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-ejwu2n1i0a],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-ejwu2n1i0a],
#components-reconnect-modal.components-reconnect-retrying[b-ejwu2n1i0a],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-ejwu2n1i0a],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-ejwu2n1i0a],
#components-reconnect-modal.components-reconnect-failed[b-ejwu2n1i0a],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-ejwu2n1i0a] {
    display: block;
}


#components-reconnect-modal[b-ejwu2n1i0a] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-ejwu2n1i0a 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-ejwu2n1i0a 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-ejwu2n1i0a 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-ejwu2n1i0a]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-ejwu2n1i0a 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-ejwu2n1i0a {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-ejwu2n1i0a {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-ejwu2n1i0a {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-ejwu2n1i0a] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-ejwu2n1i0a] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-ejwu2n1i0a] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-ejwu2n1i0a] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-ejwu2n1i0a] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-ejwu2n1i0a] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-ejwu2n1i0a] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-ejwu2n1i0a 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-ejwu2n1i0a] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-ejwu2n1i0a {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Public/About.razor.rz.scp.css */
/* ═══════════════════════════════════════════════
   ProEstimate About — Industrial Refined Aesthetic
   Typography: DM Serif Display + Outfit
   ═══════════════════════════════════════════════ */

/* ─── PAGE HERO ─── */

.about-hero[b-0e016n01vh] {
    position: relative;
    background: linear-gradient(to bottom, #323232 87%, #dd9142 94%, #00A69C 100%);
    padding: 7rem 0 4rem;
    overflow: hidden;
}

.about-hero-grain[b-0e016n01vh] {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

[b-0e016n01vh] .about-hero-inner {
    position: relative;
    z-index: 2;
}

.page-label[b-0e016n01vh] {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #dd9142;
    display: block;
    margin-bottom: 1rem;
    animation: fadeSlideUp-b-0e016n01vh 0.6s ease-out;
}

.page-hero-title[b-0e016n01vh] {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
    animation: fadeSlideUp-b-0e016n01vh 0.6s ease-out 0.1s both;
}

.page-hero-accent[b-0e016n01vh] {
    color: #dd9142;
    font-style: italic;
}


/* ─── MISSION SECTION ─── */

.mission-section[b-0e016n01vh] {
    padding: 6rem 0;
    background: #ffffff;
}

.section-label[b-0e016n01vh] {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #dd9142;
    display: block;
    margin-bottom: 0.5rem;
}

.section-label--light[b-0e016n01vh] {
    color: rgba(255, 255, 255, 0.6);
}

.section-title[b-0e016n01vh] {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 400;
    color: #323232;
    margin: 0 0 1.25rem;
    line-height: 1.2;
}

.section-title--light[b-0e016n01vh] {
    color: #ffffff;
}

.section-header[b-0e016n01vh] {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-divider[b-0e016n01vh] {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #dd9142, #00a69c);
    margin: 0 auto;
    border-radius: 2px;
}

.mission-visual[b-0e016n01vh] {
    position: relative;
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-visual-block[b-0e016n01vh] {
    position: absolute;
    border-radius: 3px;
}

.mission-visual-block--top[b-0e016n01vh] {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(221, 145, 66, 0.08), rgba(221, 145, 66, 0.03));
    border: 1px solid rgba(221, 145, 66, 0.12);
    top: 20px;
    left: 20px;
}

.mission-visual-block--bottom[b-0e016n01vh] {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(0, 166, 156, 0.08), rgba(0, 166, 156, 0.03));
    border: 1px solid rgba(0, 166, 156, 0.12);
    bottom: 20px;
    right: 20px;
}

.mission-visual-icon[b-0e016n01vh] {
    position: relative;
    z-index: 2;
    width: 100px;
    height: 100px;
    background: #ffffff;
    border: 1px solid rgba(50, 50, 50, 0.08);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 40px rgba(50, 50, 50, 0.08);
}

.mission-lead[b-0e016n01vh] {
    font-family: 'DM Serif Display', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: #323232;
    line-height: 1.5;
    margin: 0 0 1.5rem;
    font-style: italic;
}

.mission-body[b-0e016n01vh] {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: #6b6560;
    line-height: 1.8;
    margin: 0 0 1rem;
}


/* ─── VALUES SECTION ─── */

.values-section[b-0e016n01vh] {
    padding: 6rem 0;
    background: #fafaf8;
}

.value-card[b-0e016n01vh] {
    background: #ffffff;
    border: 1px solid rgba(50, 50, 50, 0.06);
    border-radius: 3px;
    padding: 2rem;
    height: 100%;
    transition: all 0.35s ease;
    position: relative;
}

.value-card[b-0e016n01vh]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #dd9142, #00a69c);
    transition: height 0.35s ease;
    border-radius: 3px 0 0 3px;
}

.value-card:hover[b-0e016n01vh] {
    box-shadow: 0 8px 40px rgba(50, 50, 50, 0.08);
    transform: translateY(-3px);
}

.value-card:hover[b-0e016n01vh]::before {
    height: 100%;
}

.value-card-header[b-0e016n01vh] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.value-icon-wrap[b-0e016n01vh] {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    flex-shrink: 0;
}

.value-icon-wrap--teal[b-0e016n01vh] {
    background: rgba(0, 166, 156, 0.08);
    color: #00a69c;
}

.value-icon-wrap--orange[b-0e016n01vh] {
    background: rgba(221, 145, 66, 0.08);
    color: #dd9142;
}

.value-title[b-0e016n01vh] {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #323232;
    margin: 0;
    line-height: 1.3;
}

.value-desc[b-0e016n01vh] {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #6b6560;
    line-height: 1.75;
    margin: 0;
}


/* ─── TEAM SECTION ─── */

.team-section[b-0e016n01vh] {
    position: relative;
    padding: 6rem 0;
    background: #323232;
    overflow: hidden;
}

.team-pattern[b-0e016n01vh] {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255,255,255,0.5) 50px, rgba(255,255,255,0.5) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255,255,255,0.5) 50px, rgba(255,255,255,0.5) 51px);
    pointer-events: none;
}

.team-body[b-0e016n01vh] {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin: 0 0 1rem;
    text-align: center;
}

.team-card[b-0e016n01vh] {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover[b-0e016n01vh] {
    border-color: rgba(0, 166, 156, 0.25);
    background: rgba(0, 166, 156, 0.04);
}

.team-avatar[b-0e016n01vh] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.team-placeholder[b-0e016n01vh] {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}


/* ─── ABOUT BOTTOM CTA ─── */

.about-cta-section[b-0e016n01vh] {
    padding: 5rem 0;
    background: #fafaf8;
}

.about-cta-title[b-0e016n01vh] {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 400;
    color: #323232;
    margin: 0 0 1rem;
}

.about-cta-body[b-0e016n01vh] {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #6b6560;
    line-height: 1.75;
    max-width: 550px;
    margin: 0 auto 2rem;
}

[b-0e016n01vh] .about-cta-button {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.03em !important;
    padding: 0.75rem 2rem !important;
    font-size: 0.95rem !important;
    border-radius: 2px !important;
    box-shadow: 0 4px 24px rgba(221, 145, 66, 0.3) !important;
    transition: all 0.3s ease !important;
}

[b-0e016n01vh] .about-cta-button:hover {
    box-shadow: 0 6px 32px rgba(221, 145, 66, 0.45) !important;
    transform: translateY(-1px);
}


/* ─── ANIMATIONS ─── */

@keyframes fadeSlideUp-b-0e016n01vh {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ─── RESPONSIVE ─── */

@media (max-width: 959.98px) {
    .about-hero[b-0e016n01vh] {
        padding: 6rem 0 3rem;
    }

    .mission-visual[b-0e016n01vh] {
        height: 220px;
        margin-bottom: 2rem;
    }

    .mission-visual-block--top[b-0e016n01vh] {
        width: 140px;
        height: 140px;
    }

    .mission-visual-block--bottom[b-0e016n01vh] {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 599.98px) {
    .about-hero[b-0e016n01vh] {
        padding: 5rem 0 2.5rem;
    }

    .mission-section[b-0e016n01vh],
    .values-section[b-0e016n01vh],
    .team-section[b-0e016n01vh] {
        padding: 4rem 0;
    }

    .value-card[b-0e016n01vh] {
        padding: 1.5rem;
    }

    .mission-visual[b-0e016n01vh] {
        display: none;
    }

    .about-cta-section[b-0e016n01vh] {
        padding: 3.5rem 0;
    }
}
/* /Components/Pages/Public/Contact.razor.rz.scp.css */
/* ═══════════════════════════════════════════════
   ProEstimate Contact — Industrial Refined Aesthetic
   Typography: DM Serif Display + Outfit
   ═══════════════════════════════════════════════ */

/* ─── PAGE HERO ─── */

.ct-hero[b-sx1ujhc3vo] {
    position: relative;
    background: linear-gradient(to bottom, #323232 87%, #dd9142 94%, #00A69C 100%);
    padding: 7rem 0 4rem;
    overflow: hidden;
}

.ct-hero-grain[b-sx1ujhc3vo] {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

[b-sx1ujhc3vo] .ct-hero-inner {
    position: relative;
    z-index: 2;
}

.page-label[b-sx1ujhc3vo] {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #dd9142;
    display: block;
    margin-bottom: 1rem;
    animation: fadeSlideUp-b-sx1ujhc3vo 0.6s ease-out;
}

.page-hero-title[b-sx1ujhc3vo] {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 1.25rem;
    animation: fadeSlideUp-b-sx1ujhc3vo 0.6s ease-out 0.1s both;
}

.page-hero-subtitle[b-sx1ujhc3vo] {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    max-width: 620px;
    margin: 0;
    animation: fadeSlideUp-b-sx1ujhc3vo 0.6s ease-out 0.2s both;
}


/* ─── CONTENT SECTION ─── */

.ct-content-section[b-sx1ujhc3vo] {
    padding: 5rem 0 6rem;
    background: #ffffff;
}


/* ─── FORM CARD ─── */

.ct-form-card[b-sx1ujhc3vo] {
    background: #ffffff;
    border: 1px solid rgba(50, 50, 50, 0.08);
    border-radius: 3px;
    padding: 2.5rem;
    box-shadow: 0 8px 40px rgba(50, 50, 50, 0.06);
    position: relative;
}

.ct-form-card[b-sx1ujhc3vo]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #dd9142, #00a69c);
    border-radius: 3px 3px 0 0;
}

.ct-form-header[b-sx1ujhc3vo] {
    margin-bottom: 2rem;
}

.ct-form-title[b-sx1ujhc3vo] {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #323232;
    margin: 0;
}

[b-sx1ujhc3vo] .ct-field {
    margin-bottom: 1rem;
}

[b-sx1ujhc3vo] .ct-submit-btn {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.03em !important;
    padding: 0.85rem 2rem !important;
    font-size: 0.95rem !important;
    border-radius: 2px !important;
    box-shadow: 0 4px 24px rgba(221, 145, 66, 0.25) !important;
    transition: all 0.3s ease !important;
    margin-top: 0.5rem;
}

[b-sx1ujhc3vo] .ct-submit-btn:hover {
    box-shadow: 0 6px 32px rgba(221, 145, 66, 0.4) !important;
    transform: translateY(-1px);
}


/* ─── SUCCESS STATE ─── */

.ct-success-wrap[b-sx1ujhc3vo] {
    text-align: center;
    padding: 2rem 0;
}

.ct-success-icon[b-sx1ujhc3vo] {
    margin-bottom: 1.5rem;
}

[b-sx1ujhc3vo] .ct-success-alert {
    margin-bottom: 1.5rem;
    text-align: left;
}

[b-sx1ujhc3vo] .ct-back-link {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: 0.02em !important;
}


/* ─── CONTACT INFO CARD ─── */

.ct-info-card[b-sx1ujhc3vo] {
    background: #fafaf8;
    border: 1px solid rgba(50, 50, 50, 0.06);
    border-radius: 3px;
    padding: 2.5rem;
    position: relative;
    height: 100%;
}

.ct-info-accent[b-sx1ujhc3vo] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00a69c, #dd9142);
    border-radius: 3px 3px 0 0;
}

.ct-info-title[b-sx1ujhc3vo] {
    font-family: 'DM Serif Display', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: #323232;
    margin: 0 0 2rem;
}

.ct-info-item[b-sx1ujhc3vo] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.ct-info-icon[b-sx1ujhc3vo] {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    margin-top: 2px;
}

.ct-info-icon--orange[b-sx1ujhc3vo] {
    background: rgba(221, 145, 66, 0.08);
    color: #dd9142;
}

.ct-info-icon--teal[b-sx1ujhc3vo] {
    background: rgba(0, 166, 156, 0.08);
    color: #00a69c;
}

.ct-info-label[b-sx1ujhc3vo] {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9a9490;
    display: block;
    margin-bottom: 0.25rem;
}

.ct-info-value[b-sx1ujhc3vo] {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #323232;
    line-height: 1.6;
    display: block;
}

[b-sx1ujhc3vo] .ct-info-value a {
    color: #dd9142 !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

[b-sx1ujhc3vo] .ct-info-value a:hover {
    color: #c67d30 !important;
}

.ct-info-divider[b-sx1ujhc3vo] {
    width: 100%;
    height: 1px;
    background: rgba(50, 50, 50, 0.08);
    margin: 1.5rem 0;
}


/* ─── ANIMATIONS ─── */

@keyframes fadeSlideUp-b-sx1ujhc3vo {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ─── RESPONSIVE ─── */

@media (max-width: 959.98px) {
    .ct-hero[b-sx1ujhc3vo] {
        padding: 6rem 0 3rem;
    }

    .ct-content-section[b-sx1ujhc3vo] {
        padding: 3.5rem 0 4rem;
    }
}

@media (max-width: 599.98px) {
    .ct-hero[b-sx1ujhc3vo] {
        padding: 5rem 0 2.5rem;
    }

    .ct-content-section[b-sx1ujhc3vo] {
        padding: 2.5rem 0 3.5rem;
    }

    .ct-form-card[b-sx1ujhc3vo] {
        padding: 1.75rem;
    }

    .ct-info-card[b-sx1ujhc3vo] {
        padding: 1.75rem;
        margin-top: 1.5rem;
    }
}
/* /Components/Pages/Public/Faq.razor.rz.scp.css */
/* ═══════════════════════════════════════════════
   ProEstimate FAQ — Industrial Refined Aesthetic
   Typography: DM Serif Display + Outfit
   ═══════════════════════════════════════════════ */

/* ─── PAGE HERO ─── */

.faq-hero[b-0lsm6t4w8u] {
    position: relative;
    background: linear-gradient(to bottom, #323232 87%, #dd9142 94%, #00A69C 100%);
    padding: 7rem 0 4rem;
    overflow: hidden;
}

.faq-hero-grain[b-0lsm6t4w8u] {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

[b-0lsm6t4w8u] .faq-hero-inner {
    position: relative;
    z-index: 2;
}

.page-label[b-0lsm6t4w8u] {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #dd9142;
    display: block;
    margin-bottom: 1rem;
    animation: fadeSlideUp-b-0lsm6t4w8u 0.6s ease-out;
}

.page-hero-title[b-0lsm6t4w8u] {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 1.25rem;
    animation: fadeSlideUp-b-0lsm6t4w8u 0.6s ease-out 0.1s both;
}

.page-hero-accent[b-0lsm6t4w8u] {
    color: #dd9142;
    font-style: italic;
}

.page-hero-subtitle[b-0lsm6t4w8u] {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    max-width: 620px;
    margin: 0;
    animation: fadeSlideUp-b-0lsm6t4w8u 0.6s ease-out 0.2s both;
}


/* ─── FAQ CONTENT ─── */

.faq-content-section[b-0lsm6t4w8u] {
    padding: 4rem 0 5rem;
    background: #ffffff;
}


/* ─── SEARCH ─── */

.faq-search-wrap[b-0lsm6t4w8u] {
    margin-bottom: 2.5rem;
}

[b-0lsm6t4w8u] .faq-search {
    font-family: 'Outfit', sans-serif;
}

[b-0lsm6t4w8u] .faq-search .mud-input-outlined {
    border-radius: 3px;
}


/* ─── EXPANSION PANELS ─── */

[b-0lsm6t4w8u] .faq-panels {
    border: 1px solid rgba(50, 50, 50, 0.08);
    border-radius: 3px;
    overflow: hidden;
}

[b-0lsm6t4w8u] .faq-panel {
    border-bottom: 1px solid rgba(50, 50, 50, 0.06);
}

[b-0lsm6t4w8u] .faq-panel:last-child {
    border-bottom: none;
}

[b-0lsm6t4w8u] .faq-panel .mud-expand-panel-header {
    padding: 1.25rem 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #323232;
    transition: background-color 0.2s ease;
}

[b-0lsm6t4w8u] .faq-panel .mud-expand-panel-header:hover {
    background-color: rgba(0, 166, 156, 0.03);
}

[b-0lsm6t4w8u] .faq-panel.mud-panel-expanded .mud-expand-panel-header {
    background-color: rgba(0, 166, 156, 0.05);
    border-bottom: 1px solid rgba(0, 166, 156, 0.1);
}

[b-0lsm6t4w8u] .faq-panel.mud-panel-expanded {
    border-left: 3px solid #00a69c;
}

[b-0lsm6t4w8u] .faq-panel .mud-expand-panel-content {
    padding: 1.25rem 1.5rem 1.5rem;
}

[b-0lsm6t4w8u] .faq-answer {
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.92rem !important;
    font-weight: 400 !important;
    color: #6b6560 !important;
    line-height: 1.8 !important;
}


/* ─── EMPTY STATE ─── */

[b-0lsm6t4w8u] .faq-empty-alert {
    font-family: 'Outfit', sans-serif;
}


/* ─── BOTTOM CTA ─── */

.faq-cta-section[b-0lsm6t4w8u] {
    padding: 5rem 0;
    background: #fafaf8;
}

.faq-cta-icon[b-0lsm6t4w8u] {
    width: 72px;
    height: 72px;
    background: rgba(0, 166, 156, 0.08);
    border: 1px solid rgba(0, 166, 156, 0.12);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.faq-cta-title[b-0lsm6t4w8u] {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 400;
    color: #323232;
    margin: 0 0 1rem;
}

.faq-cta-body[b-0lsm6t4w8u] {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #6b6560;
    line-height: 1.75;
    max-width: 500px;
    margin: 0 auto 2rem;
}

[b-0lsm6t4w8u] .faq-cta-button {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.03em !important;
    padding: 0.75rem 2rem !important;
    font-size: 0.95rem !important;
    border-radius: 2px !important;
    box-shadow: 0 4px 24px rgba(221, 145, 66, 0.3) !important;
    transition: all 0.3s ease !important;
}

[b-0lsm6t4w8u] .faq-cta-button:hover {
    box-shadow: 0 6px 32px rgba(221, 145, 66, 0.45) !important;
    transform: translateY(-1px);
}


/* ─── ANIMATIONS ─── */

@keyframes fadeSlideUp-b-0lsm6t4w8u {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ─── RESPONSIVE ─── */

@media (max-width: 959.98px) {
    .faq-hero[b-0lsm6t4w8u] {
        padding: 6rem 0 3rem;
    }

    .faq-content-section[b-0lsm6t4w8u] {
        padding: 3rem 0 4rem;
    }
}

@media (max-width: 599.98px) {
    .faq-hero[b-0lsm6t4w8u] {
        padding: 5rem 0 2.5rem;
    }

    .faq-content-section[b-0lsm6t4w8u] {
        padding: 2.5rem 0 3.5rem;
    }

    [b-0lsm6t4w8u] .faq-panel .mud-expand-panel-header {
        padding: 1rem 1.25rem;
    }

    [b-0lsm6t4w8u] .faq-panel .mud-expand-panel-content {
        padding: 1rem 1.25rem 1.25rem;
    }

    .faq-cta-section[b-0lsm6t4w8u] {
        padding: 3.5rem 0;
    }
}
/* /Components/Pages/Public/GetStarted.razor.rz.scp.css */
/* ═══════════════════════════════════════════════
   ProEstimate Get Started — Industrial Refined Aesthetic
   Typography: DM Serif Display + Outfit
   ═══════════════════════════════════════════════ */

/* ─── PAGE HERO ─── */

.gs-hero[b-yaloxl25b9] {
    position: relative;
    background: linear-gradient(to bottom, #323232 87%, #dd9142 94%, #00A69C 100%);
    padding: 7rem 0 4rem;
    overflow: hidden;
}

.gs-hero-grain[b-yaloxl25b9] {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.gs-hero-geometric[b-yaloxl25b9] {
    position: absolute;
    border: 1px solid rgba(221, 145, 66, 0.12);
    pointer-events: none;
    z-index: 1;
}

.gs-hero-geometric--1[b-yaloxl25b9] {
    width: 350px;
    height: 350px;
    top: -100px;
    right: -80px;
    transform: rotate(18deg);
}

.gs-hero-geometric--2[b-yaloxl25b9] {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -40px;
    transform: rotate(-10deg);
    border-color: rgba(0, 166, 156, 0.1);
}

[b-yaloxl25b9] .gs-hero-inner {
    position: relative;
    z-index: 2;
}

.page-label[b-yaloxl25b9] {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #dd9142;
    display: block;
    margin-bottom: 1rem;
    animation: fadeSlideUp-b-yaloxl25b9 0.6s ease-out;
}

.page-hero-title[b-yaloxl25b9] {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
    animation: fadeSlideUp-b-yaloxl25b9 0.6s ease-out 0.1s both;
}

.page-hero-accent[b-yaloxl25b9] {
    color: #dd9142;
    font-style: italic;
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    display: block;
    margin-top: 0.5rem;
}


/* ─── CONTENT SECTION ─── */

.gs-content-section[b-yaloxl25b9] {
    padding: 5rem 0 6rem;
    background: #ffffff;
}


/* ─── OFFER BLOCK ─── */

.gs-offer-block[b-yaloxl25b9] {
    margin-bottom: 2.5rem;
}

.gs-offer-badge[b-yaloxl25b9] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(221, 145, 66, 0.08);
    border: 1px solid rgba(221, 145, 66, 0.2);
    padding: 0.35rem 0.85rem;
    border-radius: 2px;
    margin-bottom: 1.25rem;
}

.gs-offer-badge span[b-yaloxl25b9] {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #dd9142;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gs-offer-title[b-yaloxl25b9] {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 400;
    color: #323232;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.gs-offer-body[b-yaloxl25b9] {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #6b6560;
    line-height: 1.8;
    margin: 0;
}


/* ─── CHECKLIST ─── */

.gs-checklist[b-yaloxl25b9] {
    margin-bottom: 2.5rem;
}

.gs-checklist-title[b-yaloxl25b9] {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #323232;
    margin: 0 0 1.25rem;
}

.gs-check-item[b-yaloxl25b9] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.gs-check-icon[b-yaloxl25b9] {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: rgba(0, 166, 156, 0.1);
    color: #00a69c;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.gs-check-item span[b-yaloxl25b9] {
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 400;
    color: #323232;
    line-height: 1.6;
}


/* ─── PRICING NOTE ─── */

.gs-pricing-note[b-yaloxl25b9] {
    position: relative;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    background: #fafaf8;
    border-radius: 3px;
}

.gs-pricing-accent[b-yaloxl25b9] {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #dd9142, #00a69c);
    border-radius: 3px 0 0 3px;
}

.gs-pricing-note p[b-yaloxl25b9] {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #6b6560;
    line-height: 1.75;
    margin: 0;
    font-style: italic;
}


/* ─── FORM CARD ─── */

.gs-form-card[b-yaloxl25b9] {
    background: #ffffff;
    border: 1px solid rgba(50, 50, 50, 0.08);
    border-radius: 3px;
    padding: 2.5rem;
    box-shadow: 0 8px 40px rgba(50, 50, 50, 0.06);
    position: relative;
}

.gs-form-card[b-yaloxl25b9]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #dd9142, #00a69c);
    border-radius: 3px 3px 0 0;
}

.gs-form-header[b-yaloxl25b9] {
    margin-bottom: 2rem;
}

.gs-form-title[b-yaloxl25b9] {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #323232;
    margin: 0 0 0.5rem;
}

.gs-form-subtitle[b-yaloxl25b9] {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    color: #6b6560;
    margin: 0;
    line-height: 1.6;
}

[b-yaloxl25b9] .gs-field {
    margin-bottom: 1rem;
}

[b-yaloxl25b9] .gs-submit-btn {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.03em !important;
    padding: 0.85rem 2rem !important;
    font-size: 0.95rem !important;
    border-radius: 2px !important;
    box-shadow: 0 4px 24px rgba(221, 145, 66, 0.25) !important;
    transition: all 0.3s ease !important;
    margin-top: 0.5rem;
}

[b-yaloxl25b9] .gs-submit-btn:hover {
    box-shadow: 0 6px 32px rgba(221, 145, 66, 0.4) !important;
    transform: translateY(-1px);
}


/* ─── SUCCESS STATE ─── */

.gs-success-wrap[b-yaloxl25b9] {
    text-align: center;
    padding: 2rem 0;
}

.gs-success-icon[b-yaloxl25b9] {
    margin-bottom: 1.5rem;
}

[b-yaloxl25b9] .gs-success-alert {
    margin-bottom: 1.5rem;
    text-align: left;
}

[b-yaloxl25b9] .gs-back-link {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: 0.02em !important;
}


/* ─── ANIMATIONS ─── */

@keyframes fadeSlideUp-b-yaloxl25b9 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ─── RESPONSIVE ─── */

@media (max-width: 959.98px) {
    .gs-hero[b-yaloxl25b9] {
        padding: 6rem 0 3rem;
    }

    .gs-hero-geometric--1[b-yaloxl25b9],
    .gs-hero-geometric--2[b-yaloxl25b9] {
        display: none;
    }

    .gs-content-section[b-yaloxl25b9] {
        padding: 3.5rem 0 4rem;
    }

    .gs-form-card[b-yaloxl25b9] {
        margin-top: 2rem;
    }
}

@media (max-width: 599.98px) {
    .gs-hero[b-yaloxl25b9] {
        padding: 5rem 0 2.5rem;
    }

    .gs-content-section[b-yaloxl25b9] {
        padding: 2.5rem 0 3.5rem;
    }

    .gs-form-card[b-yaloxl25b9] {
        padding: 1.75rem;
    }

    .gs-pricing-note[b-yaloxl25b9] {
        padding: 1.25rem 1.25rem 1.25rem 1.75rem;
    }
}
/* /Components/Pages/Public/HowItWorks.razor.rz.scp.css */
/* ═══════════════════════════════════════════════
   ProEstimate How It Works — Industrial Refined
   Typography: DM Serif Display + Outfit
   ═══════════════════════════════════════════════ */

/* ─── PAGE HERO ─── */

.hiw-hero[b-hrxyfesx9n] {
    position: relative;
    background: linear-gradient(to bottom, #323232 87%, #dd9142 94%, #00A69C 100%);
    padding: 7rem 0 4rem;
    overflow: hidden;
}

.hiw-hero-grain[b-hrxyfesx9n] {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

[b-hrxyfesx9n] .hiw-hero-inner {
    position: relative;
    z-index: 2;
}

.page-label[b-hrxyfesx9n] {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #dd9142;
    display: block;
    margin-bottom: 1rem;
    animation: fadeSlideUp-b-hrxyfesx9n 0.6s ease-out;
}

.page-hero-title[b-hrxyfesx9n] {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
    animation: fadeSlideUp-b-hrxyfesx9n 0.6s ease-out 0.1s both;
}

.page-hero-accent[b-hrxyfesx9n] {
    color: #dd9142;
    font-style: italic;
}

.page-hero-subtitle[b-hrxyfesx9n] {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 520px;
    margin: 1.5rem 0 0;
    animation: fadeSlideUp-b-hrxyfesx9n 0.6s ease-out 0.2s both;
}


/* ─── STEPS SECTION ─── */

.steps-section[b-hrxyfesx9n] {
    padding: 6rem 0;
    background: #fafaf8;
}

.step-card[b-hrxyfesx9n] {
    text-align: center;
    padding: 2.5rem 2rem;
    position: relative;
    height: 100%;
}

.step-number-wrap[b-hrxyfesx9n] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.step-number[b-hrxyfesx9n] {
    font-family: 'DM Serif Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: rgba(50, 50, 50, 0.15);
    line-height: 1;
    position: relative;
    z-index: 2;
}

.step-connector[b-hrxyfesx9n] {
    position: absolute;
    top: 50%;
    right: -2rem;
    width: calc(4rem);
    height: 2px;
    background: linear-gradient(90deg, rgba(221, 145, 66, 0.2), rgba(0, 166, 156, 0.2));
    z-index: 1;
}

.step-card--last .step-connector[b-hrxyfesx9n] {
    display: none;
}

.step-icon-wrap[b-hrxyfesx9n] {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.step-card:hover .step-icon-wrap[b-hrxyfesx9n] {
    transform: scale(1.08);
}

.step-icon-wrap--orange[b-hrxyfesx9n] {
    background: rgba(221, 145, 66, 0.08);
    color: #dd9142;
}

.step-icon-wrap--teal[b-hrxyfesx9n] {
    background: rgba(0, 166, 156, 0.08);
    color: #00a69c;
}

.step-title[b-hrxyfesx9n] {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #323232;
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

.step-desc[b-hrxyfesx9n] {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #6b6560;
    line-height: 1.75;
    margin: 0;
}


/* ─── DETAILS SECTION (Need / Receive) ─── */

.details-section[b-hrxyfesx9n] {
    padding: 5rem 0 6rem;
    background: #ffffff;
}

.detail-panel[b-hrxyfesx9n] {
    border: 1px solid rgba(50, 50, 50, 0.06);
    border-radius: 3px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.35s ease;
}

.detail-panel:hover[b-hrxyfesx9n] {
    box-shadow: 0 8px 40px rgba(50, 50, 50, 0.06);
}

.detail-panel--need[b-hrxyfesx9n] {
    background: #fafaf8;
}

.detail-panel--receive[b-hrxyfesx9n] {
    background: linear-gradient(135deg, rgba(221, 145, 66, 0.02), rgba(221, 145, 66, 0.06));
    border-color: rgba(221, 145, 66, 0.1);
}

.detail-panel-header[b-hrxyfesx9n] {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(50, 50, 50, 0.06);
}

.detail-label[b-hrxyfesx9n] {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #00a69c;
    display: block;
    margin-bottom: 0.5rem;
}

.detail-label--orange[b-hrxyfesx9n] {
    color: #dd9142;
}

.detail-title[b-hrxyfesx9n] {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #323232;
    margin: 0;
    line-height: 1.3;
}

.detail-list[b-hrxyfesx9n] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.detail-item[b-hrxyfesx9n] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.detail-item-icon[b-hrxyfesx9n] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    flex-shrink: 0;
}

.detail-item-icon--teal[b-hrxyfesx9n] {
    background: rgba(0, 166, 156, 0.08);
    color: #00a69c;
}

.detail-item-icon--orange[b-hrxyfesx9n] {
    background: rgba(221, 145, 66, 0.08);
    color: #dd9142;
}

.detail-item-text[b-hrxyfesx9n] {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #4a4540;
    line-height: 1.6;
    padding-top: 0.5rem;
}


/* ─── HIW BOTTOM CTA ─── */

.hiw-cta-section[b-hrxyfesx9n] {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #dd9142 0%, #c67d30 100%);
    overflow: hidden;
}

.hiw-cta-geometric[b-hrxyfesx9n] {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.hiw-cta-geometric--1[b-hrxyfesx9n] {
    width: 280px;
    height: 280px;
    top: -80px;
    right: -40px;
    transform: rotate(18deg);
}

.hiw-cta-geometric--2[b-hrxyfesx9n] {
    width: 180px;
    height: 180px;
    bottom: -50px;
    left: -25px;
    transform: rotate(-10deg);
}

.hiw-cta-geometric--3[b-hrxyfesx9n] {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 10%;
    transform: rotate(30deg);
    border-color: rgba(0, 166, 156, 0.15);
}

.hiw-cta-eyebrow[b-hrxyfesx9n] {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 1rem;
}

.hiw-cta-title[b-hrxyfesx9n] {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 1.25rem;
    line-height: 1.2;
}

.hiw-cta-body[b-hrxyfesx9n] {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto 2.5rem;
}

[b-hrxyfesx9n] .hiw-cta-button {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.03em !important;
    padding: 0.85rem 2.5rem !important;
    font-size: 1rem !important;
    background: #323232 !important;
    color: #ffffff !important;
    border-radius: 2px !important;
    box-shadow: 0 4px 20px rgba(50, 50, 50, 0.4) !important;
    transition: all 0.3s ease !important;
}

[b-hrxyfesx9n] .hiw-cta-button:hover {
    background: #1a1a1a !important;
    box-shadow: 0 6px 28px rgba(50, 50, 50, 0.55) !important;
    transform: translateY(-2px);
}


/* ─── ANIMATIONS ─── */

@keyframes fadeSlideUp-b-hrxyfesx9n {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ─── RESPONSIVE ─── */

@media (max-width: 959.98px) {
    .hiw-hero[b-hrxyfesx9n] {
        padding: 6rem 0 3rem;
    }

    .step-connector[b-hrxyfesx9n] {
        display: none;
    }
}

@media (max-width: 599.98px) {
    .hiw-hero[b-hrxyfesx9n] {
        padding: 5rem 0 2.5rem;
    }

    .steps-section[b-hrxyfesx9n] {
        padding: 4rem 0;
    }

    .step-card[b-hrxyfesx9n] {
        padding: 1.5rem 1rem;
    }

    .details-section[b-hrxyfesx9n] {
        padding: 3.5rem 0 4rem;
    }

    .detail-panel[b-hrxyfesx9n] {
        padding: 1.75rem;
    }

    .hiw-cta-section[b-hrxyfesx9n] {
        padding: 4rem 0;
    }

    .hiw-cta-geometric--1[b-hrxyfesx9n],
    .hiw-cta-geometric--2[b-hrxyfesx9n] {
        display: none;
    }
}
/* /Components/Pages/Public/Index.razor.rz.scp.css */
/* ═══════════════════════════════════════════════
   ProEstimate Home — Industrial Refined Aesthetic
   Typography: DM Serif Display + Outfit
   ═══════════════════════════════════════════════ */

/* ─── HERO SECTION ─── */

.hero-section[b-hpddlx14rr] {
    position: relative;
    background: linear-gradient(to bottom, #323232 91%, #dd9142 96%, #00A69C 100%);
    padding: calc(64px + 3rem) 0 5rem;
    overflow: hidden;
    min-height: auto;
    margin-top: -64px;
    display: flex;
    align-items: center;
}

.hero-grain[b-hpddlx14rr] {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.hero-geometric[b-hpddlx14rr] {
    position: absolute;
    border: 1px solid rgba(221, 145, 66, 0.12);
    border-radius: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-geometric--1[b-hpddlx14rr] {
    width: 400px;
    height: 400px;
    top: -80px;
    right: -60px;
    transform: rotate(15deg);
}

.hero-geometric--2[b-hpddlx14rr] {
    width: 250px;
    height: 250px;
    bottom: -40px;
    left: -30px;
    transform: rotate(-8deg);
    border-color: rgba(0, 166, 156, 0.1);
}

[b-hpddlx14rr] .hero-container {
    position: relative;
    z-index: 2;
}

.hero-badge[b-hpddlx14rr] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 166, 156, 0.08);
    border: 1px solid rgba(0, 166, 156, 0.25);
    padding: 0.4rem 1rem;
    border-radius: 2px;
    margin-bottom: 2.5rem;
    animation: fadeSlideUp-b-hpddlx14rr 0.8s ease-out;
}

.hero-badge span[b-hpddlx14rr] {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-tagline[b-hpddlx14rr] {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 2rem;
    max-width: 720px;
    outline: none;
    animation: fadeSlideUp-b-hpddlx14rr 0.8s ease-out 0.1s both;
}

.hero-tagline-accent[b-hpddlx14rr] {
    color: #dd9142;
    font-style: italic;
}

.hero-subtitle[b-hpddlx14rr] {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    max-width: 620px;
    margin: 0 0 1.25rem;
    animation: fadeSlideUp-b-hpddlx14rr 0.8s ease-out 0.2s both;
}

.hero-supporting[b-hpddlx14rr] {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    max-width: 580px;
    margin: 0 0 2.5rem;
    animation: fadeSlideUp-b-hpddlx14rr 0.8s ease-out 0.3s both;
}

.hero-cta-group[b-hpddlx14rr] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeSlideUp-b-hpddlx14rr 0.8s ease-out 0.4s both;
}

[b-hpddlx14rr] .hero-cta-primary {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.03em !important;
    padding: 0.75rem 2rem !important;
    font-size: 0.95rem !important;
    border-radius: 2px !important;
    background: rgba(255, 255, 255, 0.85) !important;
    color: #323232 !important;
    box-shadow: 0 4px 24px rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease !important;
}

[b-hpddlx14rr] .hero-cta-primary:hover {
    box-shadow: 0 6px 32px rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-1px);
}

[b-hpddlx14rr] .hero-cta-secondary {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.03em !important;
    padding: 0.75rem 2rem !important;
    font-size: 0.95rem !important;
    border-radius: 2px !important;
    background: rgba(255, 255, 255, 0.85) !important;
    color: #323232 !important;
    transition: all 0.3s ease !important;
}

[b-hpddlx14rr] .hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    transform: translateY(-1px);
}


/* ─── BENEFITS SECTION ─── */

.benefits-section[b-hpddlx14rr] {
    padding: 6rem 0;
    background: #fafaf8;
    position: relative;
}

.section-header[b-hpddlx14rr] {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label[b-hpddlx14rr] {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #dd9142;
    display: block;
    margin-bottom: 0.75rem;
}

.section-label--light[b-hpddlx14rr] {
    color: rgba(255, 255, 255, 0.6);
}

.section-title[b-hpddlx14rr] {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 400;
    color: #323232;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.section-divider[b-hpddlx14rr] {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #dd9142, #00a69c);
    margin: 0 auto;
    border-radius: 2px;
}

.benefit-card[b-hpddlx14rr] {
    background: #ffffff;
    border: 1px solid rgba(50, 50, 50, 0.06);
    padding: 2rem;
    height: 100%;
    border-radius: 3px;
    transition: all 0.35s ease;
    position: relative;
}

.benefit-card[b-hpddlx14rr]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: background 0.35s ease;
    border-radius: 3px 3px 0 0;
}

.benefit-card:hover[b-hpddlx14rr] {
    border-color: rgba(50, 50, 50, 0.12);
    box-shadow: 0 8px 40px rgba(50, 50, 50, 0.08);
    transform: translateY(-4px);
}

.benefit-card:hover[b-hpddlx14rr]::before {
    background: linear-gradient(90deg, #dd9142, #00a69c);
}

.benefit-icon-wrap[b-hpddlx14rr] {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    margin-bottom: 1.25rem;
}

.benefit-icon-wrap--orange[b-hpddlx14rr] {
    background: rgba(221, 145, 66, 0.08);
    color: #dd9142;
}

.benefit-icon-wrap--teal[b-hpddlx14rr] {
    background: rgba(0, 166, 156, 0.08);
    color: #00a69c;
}

.benefit-title[b-hpddlx14rr] {
    font-family: 'DM Serif Display', serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: #323232;
    margin: 0 0 0.6rem;
    line-height: 1.3;
}

.benefit-desc[b-hpddlx14rr] {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    color: #6b6560;
    line-height: 1.7;
    margin: 0;
}


/* ─── CHALLENGE + STATS SECTION ─── */

.challenge-section[b-hpddlx14rr] {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #323232 0%, #3e3e3e 50%, #323232 100%);
    overflow: hidden;
}

.challenge-pattern[b-hpddlx14rr] {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255,255,255,0.5) 50px, rgba(255,255,255,0.5) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255,255,255,0.5) 50px, rgba(255,255,255,0.5) 51px);
    pointer-events: none;
}

.challenge-title[b-hpddlx14rr] {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    color: #ffffff;
    margin: 0.75rem 0 1.5rem;
    line-height: 1.2;
}

.challenge-body[b-hpddlx14rr] {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0 0 1rem;
}

.stats-block[b-hpddlx14rr] {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    padding: 2.5rem;
}

.stat-item[b-hpddlx14rr] {
    text-align: center;
}

.stat-number[b-hpddlx14rr] {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 400;
    color: #dd9142;
    line-height: 1;
    display: block;
}

.stat-number--teal[b-hpddlx14rr] {
    color: #00a69c;
}

.stat-symbol[b-hpddlx14rr] {
    font-size: 0.5em;
    vertical-align: super;
    color: rgba(221, 145, 66, 0.7);
}

.stat-symbol--teal[b-hpddlx14rr] {
    color: rgba(0, 166, 156, 0.7);
}

.stat-label[b-hpddlx14rr] {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: block;
    margin-top: 0.5rem;
}

.stat-bar[b-hpddlx14rr] {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    margin-top: 1rem;
    overflow: hidden;
}

.stat-bar-fill[b-hpddlx14rr] {
    height: 100%;
    background: linear-gradient(90deg, #dd9142, #e8a860);
    border-radius: 2px;
    transition: width 1.6s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 0 8px rgba(221, 145, 66, 0.4);
}

.stat-bar-fill--teal[b-hpddlx14rr] {
    background: linear-gradient(90deg, #00a69c, #33c4bb);
    box-shadow: 0 0 8px rgba(0, 166, 156, 0.4);
}

.stat-divider[b-hpddlx14rr] {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 2rem auto;
}


/* ─── CTA SECTION ─── */

.cta-section[b-hpddlx14rr] {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #dd9142 0%, #00A69C 100%);
    overflow: hidden;
    text-align: center;
}

.cta-geometric[b-hpddlx14rr] {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.cta-geometric--1[b-hpddlx14rr] {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    transform: rotate(20deg);
    border-radius: 0;
}

.cta-geometric--2[b-hpddlx14rr] {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: -30px;
    transform: rotate(-12deg);
    border-radius: 0;
}

.cta-geometric--3[b-hpddlx14rr] {
    width: 140px;
    height: 140px;
    top: 50%;
    left: 8%;
    transform: translateY(-50%) rotate(25deg);
    border-color: rgba(0, 166, 156, 0.15);
}

[b-hpddlx14rr] .cta-container {
    position: relative;
    z-index: 2;
}

.cta-eyebrow[b-hpddlx14rr] {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 1rem;
}

.cta-title[b-hpddlx14rr] {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 1.25rem;
    line-height: 1.2;
}

.cta-body[b-hpddlx14rr] {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

[b-hpddlx14rr] .cta-button {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.03em !important;
    padding: 0.85rem 2.5rem !important;
    font-size: 1rem !important;
    background: #323232 !important;
    color: #ffffff !important;
    border-radius: 2px !important;
    box-shadow: 0 4px 20px rgba(50, 50, 50, 0.4) !important;
    transition: all 0.3s ease !important;
}

[b-hpddlx14rr] .cta-button:hover {
    background: #1a1a1a !important;
    box-shadow: 0 6px 28px rgba(50, 50, 50, 0.55) !important;
    transform: translateY(-2px);
}


/* ─── ANIMATIONS ─── */

@keyframes fadeSlideUp-b-hpddlx14rr {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* ─── RESPONSIVE ─── */

@media (max-width: 959.98px) {
    .hero-section[b-hpddlx14rr] {
        padding: 6rem 0 4rem;
        min-height: auto;
    }

    .hero-tagline[b-hpddlx14rr] {
        max-width: 100%;
    }

    .stats-block[b-hpddlx14rr] {
        margin-top: 2rem;
    }

    .hero-geometric--1[b-hpddlx14rr],
    .hero-geometric--2[b-hpddlx14rr] {
        display: none;
    }
}

@media (max-width: 599.98px) {
    .hero-section[b-hpddlx14rr] {
        padding: 5rem 0 3.5rem;
    }

    .hero-cta-group[b-hpddlx14rr] {
        flex-direction: column;
    }

    .benefit-card[b-hpddlx14rr] {
        padding: 1.5rem;
    }

    .challenge-section[b-hpddlx14rr] {
        padding: 4rem 0;
    }

    .cta-section[b-hpddlx14rr] {
        padding: 4rem 0;
    }

    .stats-block[b-hpddlx14rr] {
        padding: 2rem 1.5rem;
    }

    .cta-geometric--1[b-hpddlx14rr],
    .cta-geometric--2[b-hpddlx14rr] {
        display: none;
    }
}
/* /Components/Shared/Audix/AudixCategoryHeatmap.razor.rz.scp.css */
/* ── Heatmap Grid ────────────────────────────────── */
.heatmap-grid[b-6j30jpswld] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    padding: 4px;
}

/* ── Tile Base ───────────────────────────────────── */
@keyframes tileEntrance-b-6j30jpswld {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.heatmap-tile[b-6j30jpswld] {
    animation: tileEntrance-b-6j30jpswld 0.3s ease-out both;
    animation-delay: calc(var(--tile-index) * 0.03s);
    cursor: pointer;
    border-radius: var(--radius, 8px);
    padding: 0.75rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.heatmap-tile:hover[b-6j30jpswld] {
    transform: scale(1.02);
}

/* ── Impact Tint Backgrounds ─────────────────────── */
.heatmap-tile--high[b-6j30jpswld] {
    background: rgba(191, 26, 42, 0.12);
}

.heatmap-tile--moderate[b-6j30jpswld] {
    background: rgba(221, 145, 66, 0.15);
}

.heatmap-tile--low[b-6j30jpswld] {
    background: rgba(179, 147, 50, 0.12);
}

.heatmap-tile--advisory[b-6j30jpswld] {
    background: rgba(0, 166, 156, 0.10);
}

/* ── Selected Tile ───────────────────────────────── */
.heatmap-tile--selected[b-6j30jpswld] {
    box-shadow: 0 0 0 2px currentColor, 0 0 12px rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
}

/* ── Tile Content ────────────────────────────────── */
.tile-badge[b-6j30jpswld] {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-primary, #323232);
}

.tile-name[b-6j30jpswld] {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary, rgba(50, 50, 50, 0.65));
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tile-impacts[b-6j30jpswld] {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.tile-revenue[b-6j30jpswld] {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-orange, #dd9142);
}

/* ── Mini Badges ─────────────────────────────────── */
.mini-badge[b-6j30jpswld] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 9px;
    font-size: 0.6875rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.mini-badge--high[b-6j30jpswld] {
    background: var(--brand-red, #bf1a2a);
}

.mini-badge--moderate[b-6j30jpswld] {
    background: var(--brand-orange, #dd9142);
}

.mini-badge--low[b-6j30jpswld] {
    background: var(--brand-gold, #b39332);
}

.mini-badge--advisory[b-6j30jpswld] {
    background: var(--brand-teal, #00a69c);
}

/* ── Reduced Motion ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .heatmap-tile[b-6j30jpswld] {
        animation: none;
        opacity: 1;
        transform: none;
    }
}
