/* /Components/Layout/AdminLayout.razor.rz.scp.css */
.page[b-jn0qz0lcv6] {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    font-size: 25px;
    background-color: var(--color-mainbg);
}

main[b-jn0qz0lcv6] {
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
    width: 90%;
    margin: 0 auto;

}

.topBar[b-jn0qz0lcv6] {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 5rem;
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    position: sticky;
    top: 0;
    z-index: 1;
    flex: 0 0 auto;
}

[b-jn0qz0lcv6] .title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 auto;
    padding: 0 1em 0 1em;
}

[b-jn0qz0lcv6] .title a {

    font-size: 1.4em;
}

[b-jn0qz0lcv6] .topmenu {

    display: flex;
    align-items: center;
    justify-content: flex-end;

    flex: 1 1 auto;
    min-width: 0;
}

    [b-jn0qz0lcv6] .topmenu a {
        font-size:1em;
        padding: 0 .5em 0 .5em;
        font-style: normal;
        text-decoration: none;
    }

    [b-jn0qz0lcv6] .topmenu a:hover {
        background-color:#c9eeff;
    }

    [b-jn0qz0lcv6] .topmenu a {
    padding: 0 10px;
}



@media (max-width: 999px) {
    /* styles for screens smaller than 999px */


    [b-jn0qz0lcv6] .title {
        margin: 0 auto;
        display: block;
        align-items: center;
        justify-content: flex-start;
        flex: 0 0 auto;
        padding: 0 1em 0 1em;
    }

        [b-jn0qz0lcv6] .title a {
            
        }

    [b-jn0qz0lcv6] .topmenu {
        display: none;
    }

}

@media (min-width: 1000px) {
    .page[b-jn0qz0lcv6] {
        font-size: 28px;
    }

    main[b-jn0qz0lcv6] {
        max-width: 95%;
    }

    [b-jn0qz0lcv6] .topmenu a {
        
    }
}









#blazor-error-ui[b-jn0qz0lcv6] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-jn0qz0lcv6] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/AdminNavMenu.razor.rz.scp.css */
/* ── Sticky nav bar ──────────────────────────────────────────── */
.main-nav[b-6e3sh0pnvy] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-mainbg);
    border-bottom: 1px solid var(--color-star);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 1em;
}

/* ── Logo / home link ────────────────────────────────────────── */
.homelink[b-6e3sh0pnvy] {
    padding: .5em;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-maintext);
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo img[b-6e3sh0pnvy] {
    height: .9em;
    width: auto;
    display: block;
}

/* ── Hamburger button (mobile only) ─────────────────────────── */
.nav-toggle[b-6e3sh0pnvy] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5em;
    z-index: 101;
    flex-shrink: 0;
}

.nav-toggle span[b-6e3sh0pnvy] {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-maintext);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Animate three bars → ✕ when menu is open */
.nav-open .nav-toggle span:nth-child(1)[b-6e3sh0pnvy] { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2)[b-6e3sh0pnvy] { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3)[b-6e3sh0pnvy] { transform: translateY(-7px) rotate(-45deg); }

/* ── Nav link list ───────────────────────────────────────────── */
.nav-links[b-6e3sh0pnvy] {
    list-style: none;
    margin: 0;
    padding: 0;

    /* Mobile: hidden dropdown */
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-mainbg);
    border-bottom: 1px solid var(--color-star);
    padding: .5em 1em 1em;
    z-index: 99;
}

.nav-open .nav-links[b-6e3sh0pnvy] {
    display: flex;
}

/* ── Individual items ────────────────────────────────────────── */
.nav-item[b-6e3sh0pnvy] {
    font-size: 1em;
    font-weight: 500;
    padding: .1em 0;
}

.nav-item[b-6e3sh0pnvy]  .nav-link {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    width: 100%;
    white-space: nowrap;
    user-select: none;
    padding: .4em .2em;
    color: var(--color-maintext);
    text-decoration: none;
}

.nav-item[b-6e3sh0pnvy]  .nav-link:hover,
.nav-item[b-6e3sh0pnvy]  .nav-link:focus {
    color: var(--color-accent);
}

.nav-item[b-6e3sh0pnvy]  a.active {
    color: var(--color-accent);
}

.cta-nav[b-6e3sh0pnvy] {
    font-weight: bold;
}

.cta-nav:hover[b-6e3sh0pnvy] {
    color: var(--color-accent);
}

/* ── Desktop layout (≥ 768 px) ───────────────────────────────── */
@media (min-width: 768px) {
    .nav-toggle[b-6e3sh0pnvy] {
        display: none;
    }

    .nav-links[b-6e3sh0pnvy] {
        display: flex !important;   /* override the mobile hidden state */
        flex-direction: row;
        align-items: center;
        position: static;
        background: transparent;
        border-bottom: none;
        padding: 0;
        margin-left: auto;
        height: 100%;
    }

    .nav-item[b-6e3sh0pnvy] {
        padding: .1em;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-hbo3yps7v9] {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    font-size: 25px;
    background-color: var(--color-mainbg);
}

main[b-hbo3yps7v9] {
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
    width: 90%;
    margin: 0 auto;

}

.topBar[b-hbo3yps7v9] {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 5rem;
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    position: sticky;
    top: 0;
    z-index: 1;
    flex: 0 0 auto;
}

[b-hbo3yps7v9] .title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 auto;
    padding: 0 1em 0 1em;
}

[b-hbo3yps7v9] .title a {

    font-size: 1.4em;
}

[b-hbo3yps7v9] .topmenu {

    display: flex;
    align-items: center;
    justify-content: flex-end;

    flex: 1 1 auto;
    min-width: 0;
}

    [b-hbo3yps7v9] .topmenu a {
        font-size:1em;
        padding: 0 .5em 0 .5em;
        font-style: normal;
        text-decoration: none;
    }

    [b-hbo3yps7v9] .topmenu a:hover {
        background-color:#c9eeff;
    }

    [b-hbo3yps7v9] .topmenu a {
    padding: 0 10px;
}



@media (max-width: 999px) {
    /* styles for screens smaller than 999px */


    [b-hbo3yps7v9] .title {
        margin: 0 auto;
        display: block;
        align-items: center;
        justify-content: flex-start;
        flex: 0 0 auto;
        padding: 0 1em 0 1em;
    }

        [b-hbo3yps7v9] .title a {
            
        }

    [b-hbo3yps7v9] .topmenu {
        display: none;
    }

}

@media (min-width: 1000px) {
    .page[b-hbo3yps7v9] {
        font-size: 28px;
    }

    main[b-hbo3yps7v9] {
        max-width: 95%;
    }

    [b-hbo3yps7v9] .topmenu a {
        
    }
}









#blazor-error-ui[b-hbo3yps7v9] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-hbo3yps7v9] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* ── Sticky nav bar ──────────────────────────────────────────── */
.main-nav[b-j4ha5c1a7v] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-mainbg);
    border-bottom: 1px solid var(--color-star);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 1em;
}

/* ── Logo / home link ────────────────────────────────────────── */
.homelink[b-j4ha5c1a7v] {
    padding: .5em;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-maintext);
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo img[b-j4ha5c1a7v] {
    height: .9em;
    width: auto;
    display: block;
}

/* ── Hamburger button (mobile only) ─────────────────────────── */
.nav-toggle[b-j4ha5c1a7v] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5em;
    z-index: 101;
    flex-shrink: 0;
}

.nav-toggle span[b-j4ha5c1a7v] {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-maintext);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Animate three bars → ✕ when menu is open */
.nav-open .nav-toggle span:nth-child(1)[b-j4ha5c1a7v] { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2)[b-j4ha5c1a7v] { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3)[b-j4ha5c1a7v] { transform: translateY(-7px) rotate(-45deg); }

/* ── Nav link list ───────────────────────────────────────────── */
.nav-links[b-j4ha5c1a7v] {
    list-style: none;
    margin: 0;
    padding: 0;

    /* Mobile: hidden dropdown */
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-mainbg);
    border-bottom: 1px solid var(--color-star);
    padding: .5em 1em 1em;
    z-index: 99;
}

.nav-open .nav-links[b-j4ha5c1a7v] {
    display: flex;
}

/* ── Individual items ────────────────────────────────────────── */
.nav-item[b-j4ha5c1a7v] {
    font-size: 1em;
    font-weight: 500;
    padding: .1em 0;
}

.nav-item[b-j4ha5c1a7v]  .nav-link {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    width: 100%;
    white-space: nowrap;
    user-select: none;
    padding: .4em .2em;
    color: var(--color-maintext);
    text-decoration: none;
}

.nav-item[b-j4ha5c1a7v]  .nav-link:hover,
.nav-item[b-j4ha5c1a7v]  .nav-link:focus {
    color: var(--color-accent);
}

.nav-item[b-j4ha5c1a7v]  a.active {
    color: var(--color-accent);
}

.cta-nav[b-j4ha5c1a7v] {
    font-weight: bold;
}

.cta-nav:hover[b-j4ha5c1a7v] {
    color: var(--color-accent);
}

/* ── Desktop layout (≥ 768 px) ───────────────────────────────── */
@media (min-width: 768px) {
    .nav-toggle[b-j4ha5c1a7v] {
        display: none;
    }

    .nav-links[b-j4ha5c1a7v] {
        display: flex !important;   /* override the mobile hidden state */
        flex-direction: row;
        align-items: center;
        position: static;
        background: transparent;
        border-bottom: none;
        padding: 0;
        margin-left: auto;
        height: 100%;
    }

    .nav-item[b-j4ha5c1a7v] {
        padding: .1em;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-tkg6w4y5mx],
.components-reconnect-repeated-attempt-visible[b-tkg6w4y5mx],
.components-reconnect-failed-visible[b-tkg6w4y5mx],
.components-pause-visible[b-tkg6w4y5mx],
.components-resume-failed-visible[b-tkg6w4y5mx],
.components-rejoining-animation[b-tkg6w4y5mx] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-tkg6w4y5mx],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-tkg6w4y5mx],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-tkg6w4y5mx],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-tkg6w4y5mx],
#components-reconnect-modal.components-reconnect-retrying[b-tkg6w4y5mx],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-tkg6w4y5mx],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-tkg6w4y5mx],
#components-reconnect-modal.components-reconnect-failed[b-tkg6w4y5mx],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-tkg6w4y5mx] {
    display: block;
}


#components-reconnect-modal[b-tkg6w4y5mx] {
    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-tkg6w4y5mx 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-tkg6w4y5mx 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-tkg6w4y5mx 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-tkg6w4y5mx]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-tkg6w4y5mx 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-tkg6w4y5mx {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-tkg6w4y5mx {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-tkg6w4y5mx {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-tkg6w4y5mx] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-tkg6w4y5mx] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-tkg6w4y5mx] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-tkg6w4y5mx] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-tkg6w4y5mx] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-tkg6w4y5mx] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-tkg6w4y5mx] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-tkg6w4y5mx 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-tkg6w4y5mx] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-tkg6w4y5mx {
    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/Layout/StaffLayout.razor.rz.scp.css */
.page[b-wsu9c55az0] {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    font-size: 25px;
    background-color: var(--color-mainbg);
}

main[b-wsu9c55az0] {
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
    width: 90%;
    margin: 0 auto;

}

.topBar[b-wsu9c55az0] {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 5rem;
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    position: sticky;
    top: 0;
    z-index: 1;
    flex: 0 0 auto;
}

[b-wsu9c55az0] .title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 auto;
    padding: 0 1em 0 1em;
}

[b-wsu9c55az0] .title a {

    font-size: 1.4em;
}

[b-wsu9c55az0] .topmenu {

    display: flex;
    align-items: center;
    justify-content: flex-end;

    flex: 1 1 auto;
    min-width: 0;
}

    [b-wsu9c55az0] .topmenu a {
        font-size:1em;
        padding: 0 .5em 0 .5em;
        font-style: normal;
        text-decoration: none;
    }

    [b-wsu9c55az0] .topmenu a:hover {
        background-color:#c9eeff;
    }

    [b-wsu9c55az0] .topmenu a {
    padding: 0 10px;
}



@media (max-width: 999px) {
    /* styles for screens smaller than 999px */


    [b-wsu9c55az0] .title {
        margin: 0 auto;
        display: block;
        align-items: center;
        justify-content: flex-start;
        flex: 0 0 auto;
        padding: 0 1em 0 1em;
    }

        [b-wsu9c55az0] .title a {
            
        }

    [b-wsu9c55az0] .topmenu {
        display: none;
    }

}

@media (min-width: 1000px) {
    .page[b-wsu9c55az0] {
        font-size: 28px;
    }

    main[b-wsu9c55az0] {
        max-width: 95%;
    }

    [b-wsu9c55az0] .topmenu a {
        
    }
}









#blazor-error-ui[b-wsu9c55az0] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-wsu9c55az0] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/StaffNavMenu.razor.rz.scp.css */
/* ── Sticky nav bar ──────────────────────────────────────────── */
.main-nav[b-9em9b08dre] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-mainbg);
    border-bottom: 1px solid var(--color-star);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 1em;
}

/* ── Logo / home link ────────────────────────────────────────── */
.homelink[b-9em9b08dre] {
    padding: .5em;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-maintext);
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo img[b-9em9b08dre] {
    height: .9em;
    width: auto;
    display: block;
}

/* ── Hamburger button (mobile only) ─────────────────────────── */
.nav-toggle[b-9em9b08dre] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5em;
    z-index: 101;
    flex-shrink: 0;
}

.nav-toggle span[b-9em9b08dre] {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-maintext);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Animate three bars → ✕ when menu is open */
.nav-open .nav-toggle span:nth-child(1)[b-9em9b08dre] { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2)[b-9em9b08dre] { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3)[b-9em9b08dre] { transform: translateY(-7px) rotate(-45deg); }

/* ── Nav link list ───────────────────────────────────────────── */
.nav-links[b-9em9b08dre] {
    list-style: none;
    margin: 0;
    padding: 0;

    /* Mobile: hidden dropdown */
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-mainbg);
    border-bottom: 1px solid var(--color-star);
    padding: .5em 1em 1em;
    z-index: 99;
}

.nav-open .nav-links[b-9em9b08dre] {
    display: flex;
}

/* ── Individual items ────────────────────────────────────────── */
.nav-item[b-9em9b08dre] {
    font-size: 1em;
    font-weight: 500;
    padding: .1em 0;
}

.nav-item[b-9em9b08dre]  .nav-link {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    width: 100%;
    white-space: nowrap;
    user-select: none;
    padding: .4em .2em;
    color: var(--color-maintext);
    text-decoration: none;
}

.nav-item[b-9em9b08dre]  .nav-link:hover,
.nav-item[b-9em9b08dre]  .nav-link:focus {
    color: var(--color-accent);
}

.nav-item[b-9em9b08dre]  a.active {
    color: var(--color-accent);
}

.cta-nav[b-9em9b08dre] {
    font-weight: bold;
}

.cta-nav:hover[b-9em9b08dre] {
    color: var(--color-accent);
}

/* ── Desktop layout (≥ 768 px) ───────────────────────────────── */
@media (min-width: 768px) {
    .nav-toggle[b-9em9b08dre] {
        display: none;
    }

    .nav-links[b-9em9b08dre] {
        display: flex !important;   /* override the mobile hidden state */
        flex-direction: row;
        align-items: center;
        position: static;
        background: transparent;
        border-bottom: none;
        padding: 0;
        margin-left: auto;
        height: 100%;
    }

    .nav-item[b-9em9b08dre] {
        padding: .1em;
    }
}
/* /Components/Pages/About.razor.rz.scp.css */
/* ===================================
   ABOUT PAGE - STORY-TELLING DESIGN
   =================================== */

/* CSS Variables */
.about-page[b-z8xmqvp3do] {
    /* Reuse Home page color system */
    --color-primary: #d97757;
    --color-primary-dark: #c2553c;
    --color-primary-light: #f4ae96;
    --color-secondary: #5a7d8c;
    --color-accent: #f0c9b8;
    
    --color-bg: #fdfbf9;
    --color-bg-alt: #f8f5f2;
    --color-surface: #ffffff;
    --color-text: #2c2825;
    --color-text-muted: #6b6561;
    --color-border: #e8e2dd;
    
    --gradient-warm: linear-gradient(180deg, #fef8f5 0%, #f8f5f2 100%);
    --gradient-primary: linear-gradient(135deg, #d97757 0%, #c2553c 100%);
    
    --shadow-sm: 0 2px 8px rgba(44, 40, 37, 0.08);
    --shadow-md: 0 4px 20px rgba(44, 40, 37, 0.12);
    --shadow-lg: 0 10px 40px rgba(44, 40, 37, 0.15);
    
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: "Georgia", "Times New Roman", serif;
    --font-story: "Georgia", "Times New Roman", serif;
    
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-page[b-z8xmqvp3do] {
    font-family: var(--font-primary);
    color: var(--color-text);
    background: var(--gradient-warm);
    line-height: 1.7;
}

.container[b-z8xmqvp3do] {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeInUp-b-z8xmqvp3do {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in[b-z8xmqvp3do] {
    animation: fadeInUp-b-z8xmqvp3do 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in:nth-child(1)[b-z8xmqvp3do] { animation-delay: 0.1s; }
.fade-in:nth-child(2)[b-z8xmqvp3do] { animation-delay: 0.2s; }
.fade-in:nth-child(3)[b-z8xmqvp3do] { animation-delay: 0.3s; }
.fade-in:nth-child(4)[b-z8xmqvp3do] { animation-delay: 0.4s; }
.fade-in:nth-child(5)[b-z8xmqvp3do] { animation-delay: 0.5s; }

/* ===================================
   HERO SECTION
   =================================== */

.about-hero[b-z8xmqvp3do] {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    text-align: center;
    background: 
        radial-gradient(circle at top center, rgba(217, 119, 87, 0.06) 0%, transparent 50%),
        var(--color-bg);
}

.about-hero-title[b-z8xmqvp3do] {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.15;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.about-hero-lead[b-z8xmqvp3do] {
    font-family: var(--font-story);
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    line-height: 1.5;
    color: var(--color-text);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   STORY SECTION
   =================================== */

.story-section[b-z8xmqvp3do] {
    padding: var(--spacing-xl) 0;
}

.story-content[b-z8xmqvp3do] {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.story-block[b-z8xmqvp3do] {
    padding: var(--spacing-md) 0;
}

.story-block.highlight[b-z8xmqvp3do] {
    background: linear-gradient(135deg, rgba(217, 119, 87, 0.04) 0%, rgba(240, 201, 184, 0.06) 100%);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.story-block.mission[b-z8xmqvp3do] {
    background: var(--color-surface);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-accent);
}

.story-text[b-z8xmqvp3do] {
    font-family: var(--font-story);
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.story-text:last-child[b-z8xmqvp3do] {
    margin-bottom: 0;
}

/* ===================================
   PULL QUOTE
   =================================== */

.pull-quote[b-z8xmqvp3do] {
    position: relative;
    padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-lg) var(--spacing-xl);
    margin: var(--spacing-lg) 0;
    background: var(--color-surface);
    border-left: 6px solid var(--color-primary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.pull-quote[b-z8xmqvp3do]::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 20px;
    font-size: 8rem;
    color: var(--color-accent);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.3;
}

.quote-text[b-z8xmqvp3do] {
    font-family: var(--font-story);
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--color-primary-dark);
    font-style: italic;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* ===================================
   TURNING POINT
   =================================== */

.turning-point[b-z8xmqvp3do] {
    text-align: center;
    padding: var(--spacing-lg) 0;
    margin: var(--spacing-lg) 0;
    position: relative;
}

.turning-point[b-z8xmqvp3do]::before,
.turning-point[b-z8xmqvp3do]::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.turning-point[b-z8xmqvp3do]::before {
    left: 0;
}

.turning-point[b-z8xmqvp3do]::after {
    right: 0;
}

.turning-point-text[b-z8xmqvp3do] {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    color: var(--color-primary);
    font-weight: 700;
    display: inline-block;
    background: var(--gradient-warm);
    padding: 0 var(--spacing-md);
}

/* ===================================
   BELIEFS SECTION
   =================================== */

.beliefs-section[b-z8xmqvp3do] {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(217, 119, 87, 0.03) 0%, rgba(240, 201, 184, 0.05) 100%);
}

.beliefs-title[b-z8xmqvp3do] {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.3;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text);
}

.beliefs-grid[b-z8xmqvp3do] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.belief-card[b-z8xmqvp3do] {
    background: var(--color-surface);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--color-border);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.belief-card[b-z8xmqvp3do]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.belief-card:hover[b-z8xmqvp3do]::before {
    transform: scaleX(1);
}

.belief-card:hover[b-z8xmqvp3do] {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.belief-card.featured[b-z8xmqvp3do] {
    background: linear-gradient(135deg, rgba(217, 119, 87, 0.05) 0%, rgba(240, 201, 184, 0.08) 100%), var(--color-surface);
    border-color: var(--color-accent);
}

.belief-number[b-z8xmqvp3do] {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.belief-statement[b-z8xmqvp3do] {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    line-height: 1.4;
    color: var(--color-primary-dark);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.belief-expansion[b-z8xmqvp3do] {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* ===================================
   START HERE SECTION
   =================================== */

.start-here-section[b-z8xmqvp3do] {
    padding: var(--spacing-xl) 0;
}

.start-here-card[b-z8xmqvp3do] {
    background: var(--color-surface);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 2px solid var(--color-primary-light);
}

.start-here-title[b-z8xmqvp3do] {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary-dark);
}

.start-here-text[b-z8xmqvp3do] {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-wrapper[b-z8xmqvp3do] {
    margin-top: var(--spacing-md);
}

/* ===================================
   BUTTONS
   =================================== */

.btn[b-z8xmqvp3do] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn[b-z8xmqvp3do]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover[b-z8xmqvp3do]::before {
    width: 300px;
    height: 300px;
}

.btn-primary[b-z8xmqvp3do] {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover[b-z8xmqvp3do] {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(217, 119, 87, 0.3);
}

/* ===================================
   FINAL CTA SECTION
   =================================== */

.final-cta-section[b-z8xmqvp3do] {
    padding: var(--spacing-lg) 0 var(--spacing-xl);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
    .about-hero[b-z8xmqvp3do] {
        padding: var(--spacing-lg) 0;
    }

    .about-hero-title[b-z8xmqvp3do] {
        font-size: 2.25rem;
    }

    .about-hero-lead[b-z8xmqvp3do] {
        font-size: 1.25rem;
    }

    .story-text[b-z8xmqvp3do] {
        font-size: 1.1rem;
    }

    .quote-text[b-z8xmqvp3do] {
        font-size: 1.25rem;
    }

    .pull-quote[b-z8xmqvp3do] {
        padding: var(--spacing-md);
    }

    .pull-quote[b-z8xmqvp3do]::before {
        font-size: 5rem;
        top: -10px;
        left: 10px;
    }

    .turning-point[b-z8xmqvp3do]::before,
    .turning-point[b-z8xmqvp3do]::after {
        width: 20%;
    }

    .turning-point-text[b-z8xmqvp3do] {
        font-size: 2rem;
    }

    .beliefs-grid[b-z8xmqvp3do] {
        grid-template-columns: 1fr;
    }

    .start-here-card[b-z8xmqvp3do] {
        padding: var(--spacing-md);
    }

    .container[b-z8xmqvp3do] {
        max-width: 100%;
    }
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
    .final-cta-section[b-z8xmqvp3do] {
        display: none;
    }

    .about-page[b-z8xmqvp3do] {
        background: white;
    }

    .belief-card[b-z8xmqvp3do],
    .story-block.mission[b-z8xmqvp3do],
    .pull-quote[b-z8xmqvp3do],
    .start-here-card[b-z8xmqvp3do] {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
}
/* /Components/Pages/Blog.razor.rz.scp.css */
/* ===================================
   BLOG PAGE - MAGAZINE LAYOUT
   =================================== */

/* CSS Variables */
.blog-page[b-cdo41n2w2e] {
    /* Reuse Home page color system */
    --color-primary: #d97757;
    --color-primary-dark: #c2553c;
    --color-primary-light: #f4ae96;
    --color-secondary: #5a7d8c;
    --color-accent: #f0c9b8;
    
    --color-bg: #fdfbf9;
    --color-bg-alt: #f8f5f2;
    --color-surface: #ffffff;
    --color-text: #2c2825;
    --color-text-muted: #6b6561;
    --color-border: #e8e2dd;
    
    /* Category Colors */
    --color-reality: #8b7355;
    --color-tools: #5a7d8c;
    --color-grief: #9b6b7d;
    --color-stepdads: #6d8b73;
    --color-identity: #b8855a;
    
    --gradient-warm: linear-gradient(180deg, #fef8f5 0%, #f8f5f2 100%);
    --shadow-sm: 0 2px 8px rgba(44, 40, 37, 0.08);
    --shadow-md: 0 4px 20px rgba(44, 40, 37, 0.12);
    --shadow-lg: 0 10px 40px rgba(44, 40, 37, 0.15);
    
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: "Georgia", "Times New Roman", serif;
    --font-reading: "Georgia", "Times New Roman", serif;
    
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-page[b-cdo41n2w2e] {
    font-family: var(--font-primary);
    color: var(--color-text);
    background: var(--gradient-warm);
    line-height: 1.7;
}

.container[b-cdo41n2w2e] {
    max-width: 1100px;
    margin: 0 auto;

}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeInUp-b-cdo41n2w2e {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in[b-cdo41n2w2e] {
    animation: fadeInUp-b-cdo41n2w2e 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in:nth-child(1)[b-cdo41n2w2e] { animation-delay: 0.1s; }
.fade-in:nth-child(2)[b-cdo41n2w2e] { animation-delay: 0.2s; }
.fade-in:nth-child(3)[b-cdo41n2w2e] { animation-delay: 0.3s; }
.fade-in:nth-child(4)[b-cdo41n2w2e] { animation-delay: 0.4s; }

/* ===================================
   BLOG HERO
   =================================== */

.blog-hero[b-cdo41n2w2e] {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    text-align: center;
    background: 
        radial-gradient(circle at top center, rgba(217, 119, 87, 0.06) 0%, transparent 50%),
        var(--color-bg);
}

.blog-hero-title[b-cdo41n2w2e] {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.15;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.blog-hero-subtitle[b-cdo41n2w2e] {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.7;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   CTA SECTIONS
   =================================== */

.cta-section[b-cdo41n2w2e],
.final-cta[b-cdo41n2w2e] {
    padding: var(--spacing-lg) 0;
}

.cta-divider[b-cdo41n2w2e] {
    padding: var(--spacing-lg) 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===================================
   ARTICLES GRID
   =================================== */

.blog-articles[b-cdo41n2w2e] {
    padding: var(--spacing-md) 0 var(--spacing-xl);
}

.articles-grid[b-cdo41n2w2e] {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

/* ===================================
   ARTICLE CARD
   =================================== */

.article-card[b-cdo41n2w2e] {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    transition: var(--transition-base);
    position: relative;
}

.article-card:hover[b-cdo41n2w2e] {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.article-card.featured[b-cdo41n2w2e] {
    background: linear-gradient(135deg, rgba(217, 119, 87, 0.03) 0%, rgba(240, 201, 184, 0.05) 100%), var(--color-surface);
    border-color: var(--color-primary-light);
}

/* ===================================
   ARTICLE META
   =================================== */

.article-meta[b-cdo41n2w2e] {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.category-badge[b-cdo41n2w2e] {
    display: inline-flex;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: white;
}

.category-badge.reality[b-cdo41n2w2e] {
    background: linear-gradient(135deg, var(--color-reality) 0%, #7a6448 100%);
}

.category-badge.tools[b-cdo41n2w2e] {
    background: linear-gradient(135deg, var(--color-tools) 0%, #4a6d7c 100%);
}

.category-badge.grief[b-cdo41n2w2e] {
    background: linear-gradient(135deg, var(--color-grief) 0%, #8b5b6d 100%);
}

.category-badge.stepdads[b-cdo41n2w2e] {
    background: linear-gradient(135deg, var(--color-stepdads) 0%, #5d7b63 100%);
}

.category-badge.identity[b-cdo41n2w2e] {
    background: linear-gradient(135deg, var(--color-identity) 0%, #a8754a 100%);
}

.read-time[b-cdo41n2w2e],
.article-type[b-cdo41n2w2e] {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.read-time[b-cdo41n2w2e]::before {
    content: '•';
    margin-right: 0.5rem;
    color: var(--color-border);
}

.article-type[b-cdo41n2w2e]::before {
    content: '•';
    margin-right: 0.5rem;
    color: var(--color-border);
}

/* ===================================
   ARTICLE TITLE
   =================================== */

.article-title[b-cdo41n2w2e] {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    line-height: 1.25;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* ===================================
   ARTICLE EXCERPT
   =================================== */

.article-excerpt[b-cdo41n2w2e] {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--color-border);
}

.article-excerpt p[b-cdo41n2w2e] {
    margin-bottom: 0.75rem;
}

.article-excerpt p:last-child[b-cdo41n2w2e] {
    margin-bottom: 0;
}

/* ===================================
   ARTICLE CONTENT
   =================================== */

.article-content[b-cdo41n2w2e] {
    font-family: var(--font-reading);
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-text);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease, margin 0.5s ease;
}

.article-card.expanded .article-content[b-cdo41n2w2e] {
    max-height: 10000px;
    opacity: 1;
    margin-bottom: var(--spacing-md);
}

.article-content p[b-cdo41n2w2e] {
    margin-bottom: 1.25rem;
}

.article-content p:last-child[b-cdo41n2w2e] {
    margin-bottom: 0;
}

.article-content h3[b-cdo41n2w2e] {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.3;
    margin: var(--spacing-md) 0 var(--spacing-sm);
    color: var(--color-primary-dark);
    font-weight: 700;
}

.article-content h3:first-child[b-cdo41n2w2e] {
    margin-top: var(--spacing-md);
}

/* ===================================
   SPECIAL CONTENT BLOCKS
   =================================== */

.article-closing[b-cdo41n2w2e],
.callout[b-cdo41n2w2e] {
    font-style: italic;
    color: var(--color-primary);
    font-weight: 600;
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(217, 119, 87, 0.05) 0%, rgba(240, 201, 184, 0.08) 100%);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-sm);
    margin: var(--spacing-md) 0;
}

/* ===================================
   READ MORE BUTTON
   =================================== */

.read-more-btn[b-cdo41n2w2e] {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 1.75rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.read-more-btn[b-cdo41n2w2e]::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.read-more-btn:hover[b-cdo41n2w2e]::after {
    transform: translateX(4px);
}

.read-more-btn:hover[b-cdo41n2w2e] {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.article-card.expanded .read-more-btn[b-cdo41n2w2e]::after {
    content: '↑';
}

.article-card.expanded .read-more-btn[b-cdo41n2w2e] {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #4a6d7c 100%);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
    .blog-hero[b-cdo41n2w2e] {
        padding: var(--spacing-lg) 0;
    }

    .blog-hero-title[b-cdo41n2w2e] {
        font-size: 2.25rem;
    }

    .article-card[b-cdo41n2w2e] {
        padding: var(--spacing-md);
    }

    .article-title[b-cdo41n2w2e] {
        font-size: 1.5rem;
    }

    .article-meta[b-cdo41n2w2e] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .read-time[b-cdo41n2w2e]::before,
    .article-type[b-cdo41n2w2e]::before {
        content: '';
        margin-right: 0;
    }

    .article-excerpt[b-cdo41n2w2e] {
        font-size: 1rem;
    }

    .article-content[b-cdo41n2w2e] {
        font-size: 1.05rem;
    }

    .article-content h3[b-cdo41n2w2e] {
        font-size: 1.35rem;
    }
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
    .read-more-btn[b-cdo41n2w2e],
    .cta-section[b-cdo41n2w2e],
    .cta-divider[b-cdo41n2w2e],
    .final-cta[b-cdo41n2w2e] {
        display: none;
    }

    .article-content[b-cdo41n2w2e] {
        max-height: none !important;
        opacity: 1 !important;
    }

    .article-card[b-cdo41n2w2e] {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
}
/* /Components/Pages/Community.razor.rz.scp.css */
/* ===================================
   COMMUNITY PAGE - MEMBERSHIP/SALES DESIGN
   =================================== */

/* CSS Variables */
.community-page[b-o3lml0g7rh] {
    /* Reuse Home page color system */
    --color-primary: #d97757;
    --color-primary-dark: #c2553c;
    --color-primary-light: #f4ae96;
    --color-secondary: #5a7d8c;
    --color-accent: #f0c9b8;
    --color-success: #6d8b73;
    
    --color-bg: #fdfbf9;
    --color-bg-alt: #f8f5f2;
    --color-surface: #ffffff;
    --color-text: #2c2825;
    --color-text-muted: #6b6561;
    --color-border: #e8e2dd;
    
    --gradient-warm: linear-gradient(180deg, #fef8f5 0%, #f8f5f2 100%);
    --gradient-primary: linear-gradient(135deg, #d97757 0%, #c2553c 100%);
    --gradient-success: linear-gradient(135deg, #6d8b73 0%, #5d7b63 100%);
    
    --shadow-sm: 0 2px 8px rgba(44, 40, 37, 0.08);
    --shadow-md: 0 4px 20px rgba(44, 40, 37, 0.12);
    --shadow-lg: 0 10px 40px rgba(44, 40, 37, 0.15);
    --shadow-xl: 0 20px 60px rgba(44, 40, 37, 0.2);
    
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: "Georgia", "Times New Roman", serif;
    
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.community-page[b-o3lml0g7rh] {
    font-family: var(--font-primary);
    color: var(--color-text);
    background: var(--gradient-warm);
    line-height: 1.7;
}

.container[b-o3lml0g7rh] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeInUp-b-o3lml0g7rh {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in[b-o3lml0g7rh] {
    animation: fadeInUp-b-o3lml0g7rh 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in:nth-child(1)[b-o3lml0g7rh] { animation-delay: 0.1s; }
.fade-in:nth-child(2)[b-o3lml0g7rh] { animation-delay: 0.2s; }
.fade-in:nth-child(3)[b-o3lml0g7rh] { animation-delay: 0.3s; }
.fade-in:nth-child(4)[b-o3lml0g7rh] { animation-delay: 0.4s; }
.fade-in:nth-child(5)[b-o3lml0g7rh] { animation-delay: 0.5s; }

/* ===================================
   HERO SECTION
   =================================== */

.community-hero[b-o3lml0g7rh] {
    padding: var(--spacing-xl) 0;
    text-align: center;
    background: 
        radial-gradient(circle at top center, rgba(217, 119, 87, 0.08) 0%, transparent 50%),
        var(--color-bg);
}

.hero-title[b-o3lml0g7rh] {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.15;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle[b-o3lml0g7rh] {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    line-height: 1.5;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.hero-description[b-o3lml0g7rh] {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.7;
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto;
}

/* ===================================
   SECTION COMMON STYLES
   =================================== */

section[b-o3lml0g7rh] {
    padding: var(--spacing-xl) 0;
}

.section-title[b-o3lml0g7rh] {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary-dark);
    font-weight: 700;
}

.section-intro[b-o3lml0g7rh] {
    font-size: 1.25rem;
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
}

/* ===================================
   WHO IT'S FOR SECTION
   =================================== */

.who-section[b-o3lml0g7rh] {
    background: var(--color-surface);
}

.who-list[b-o3lml0g7rh] {
    max-width: 900px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.who-item[b-o3lml0g7rh] {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--color-bg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-success);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.who-item:hover[b-o3lml0g7rh] {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--color-primary);
}

.who-icon[b-o3lml0g7rh] {
    font-size: 2rem;
    color: var(--color-success);
    flex-shrink: 0;
    font-weight: 700;
}

.who-item p[b-o3lml0g7rh] {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text);
}

.who-closing[b-o3lml0g7rh] {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
    font-style: italic;
}

/* ===================================
   WHAT'S INSIDE SECTION
   =================================== */

.inside-section[b-o3lml0g7rh] {
    background: linear-gradient(135deg, rgba(217, 119, 87, 0.03) 0%, rgba(240, 201, 184, 0.05) 100%);
}

.features-grid[b-o3lml0g7rh] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.feature-card[b-o3lml0g7rh] {
    background: var(--color-surface);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-border);
    transition: var(--transition-smooth);
}

.feature-card:hover[b-o3lml0g7rh] {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary-light);
}

.feature-icon[b-o3lml0g7rh] {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.feature-title[b-o3lml0g7rh] {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary-dark);
}

.feature-description[b-o3lml0g7rh] {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-sm);
}

.feature-extra[b-o3lml0g7rh],
.feature-note[b-o3lml0g7rh] {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--color-border);
    margin-top: var(--spacing-sm);
}

.network-closing[b-o3lml0g7rh] {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-primary);
    font-weight: 600;
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
}

/* ===================================
   VOICES SECTION
   =================================== */

.voices-section[b-o3lml0g7rh] {
    background: var(--color-surface);
}

.voices-grid[b-o3lml0g7rh] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.voice-card[b-o3lml0g7rh] {
    background: var(--color-bg);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-primary);
    margin: 0;
    transition: var(--transition-smooth);
    position: relative;
}

.voice-card[b-o3lml0g7rh]::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    color: var(--color-accent);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.3;
}

.voice-card:hover[b-o3lml0g7rh] {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.voice-text[b-o3lml0g7rh] {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text);
    font-style: italic;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.voice-author[b-o3lml0g7rh] {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 600;
    font-style: normal;
}

/* ===================================
   PRICING SECTION
   =================================== */

.pricing-section[b-o3lml0g7rh] {
    background: var(--color-bg-alt);
}

.pricing-intro[b-o3lml0g7rh] {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    text-align: center;
}

.pricing-text[b-o3lml0g7rh] {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-sm);
}

.comparison-grid[b-o3lml0g7rh] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.comparison-card[b-o3lml0g7rh] {
    background: var(--color-surface);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--color-border);
    text-align: center;
    transition: var(--transition-base);
}

.comparison-card:hover[b-o3lml0g7rh] {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.comparison-card.highlight[b-o3lml0g7rh] {
    background: linear-gradient(135deg, rgba(217, 119, 87, 0.05) 0%, rgba(240, 201, 184, 0.08) 100%), var(--color-surface);
    border-color: var(--color-primary);
}

.comparison-card h4[b-o3lml0g7rh] {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.comparison-card .price[b-o3lml0g7rh] {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.comparison-card .note[b-o3lml0g7rh] {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.value-statement[b-o3lml0g7rh] {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-lg);
    margin: var(--spacing-lg) 0;
    box-shadow: var(--shadow-lg);
}

.value-statement h3[b-o3lml0g7rh] {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.3;
    margin: 0;
}

/* ===================================
   PRICING CARDS
   =================================== */

.pricing-cards[b-o3lml0g7rh] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.pricing-card[b-o3lml0g7rh] {
    background: var(--color-surface);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-border);
    position: relative;
    transition: var(--transition-smooth);
}

.pricing-card:hover[b-o3lml0g7rh] {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.founding[b-o3lml0g7rh] {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.pricing-card.founding[b-o3lml0g7rh]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.badge[b-o3lml0g7rh] {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
}

.plan-title[b-o3lml0g7rh] {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.price-display[b-o3lml0g7rh] {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.currency[b-o3lml0g7rh] {
    font-size: 2rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-right: 0.25rem;
}

.amount[b-o3lml0g7rh] {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.period[b-o3lml0g7rh] {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-left: 0.25rem;
}

.price-lock[b-o3lml0g7rh] {
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-success);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-description[b-o3lml0g7rh],
.price-note[b-o3lml0g7rh] {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
}

.price-breakdown[b-o3lml0g7rh] {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    margin: var(--spacing-md) 0;
}

.daily-price[b-o3lml0g7rh] {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.comparison-text[b-o3lml0g7rh] {
    font-size: 1rem;
    color: var(--color-text-muted);
}

.cta-wrapper[b-o3lml0g7rh] {
    margin: var(--spacing-md) 0;
}

.urgency[b-o3lml0g7rh] {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-primary-dark);
    font-weight: 600;
    margin-top: var(--spacing-md);
}

/* ===================================
   INCLUDED SECTION
   =================================== */

.included-section[b-o3lml0g7rh] {
    max-width: 900px;
    margin: var(--spacing-xl) auto;
    padding: var(--spacing-lg);
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.included-section h3[b-o3lml0g7rh] {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary-dark);
}

.included-grid[b-o3lml0g7rh] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.included-item[b-o3lml0g7rh] {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-text);
}

.included-item .check[b-o3lml0g7rh] {
    font-size: 1.5rem;
    color: var(--color-success);
    font-weight: 700;
}

/* ===================================
   FINAL MESSAGE
   =================================== */

.final-message[b-o3lml0g7rh] {
    max-width: 800px;
    margin: var(--spacing-xl) auto 0;
    text-align: center;
}

.final-message p[b-o3lml0g7rh] {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
}

.closing-note[b-o3lml0g7rh] {
    font-weight: 700;
    color: var(--color-primary) !important;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
    .community-hero[b-o3lml0g7rh] {
        padding: var(--spacing-lg) 0;
    }

    .hero-title[b-o3lml0g7rh] {
        font-size: 2.25rem;
    }

    .who-list[b-o3lml0g7rh] {
        gap: var(--spacing-sm);
    }

    .who-item[b-o3lml0g7rh] {
        flex-direction: column;
        text-align: center;
    }

    .who-item:hover[b-o3lml0g7rh] {
        transform: translateY(-4px) translateX(0);
    }

    .features-grid[b-o3lml0g7rh],
    .voices-grid[b-o3lml0g7rh],
    .comparison-grid[b-o3lml0g7rh],
    .pricing-cards[b-o3lml0g7rh],
    .included-grid[b-o3lml0g7rh] {
        grid-template-columns: 1fr;
    }

    .amount[b-o3lml0g7rh] {
        font-size: 3.5rem;
    }
}
/* /Components/Pages/Contact.razor.rz.scp.css */
/* ===================================
   CONTACT PAGE - PROFESSIONAL FORM
   =================================== */

/* CSS Variables */
.contact-page[b-uko4fwg9b0] {
    --color-primary: #d97757;
    --color-primary-dark: #c2553c;
    --color-primary-light: #f4ae96;
    --color-secondary: #5a7d8c;
    --color-accent: #f0c9b8;
    --color-success: #6d8b73;
    
    --color-bg: #fdfbf9;
    --color-bg-alt: #f8f5f2;
    --color-surface: #ffffff;
    --color-text: #2c2825;
    --color-text-muted: #6b6561;
    --color-border: #e8e2dd;
    
    --gradient-warm: linear-gradient(180deg, #fef8f5 0%, #f8f5f2 100%);
    --gradient-primary: linear-gradient(135deg, #d97757 0%, #c2553c 100%);
    --gradient-success: linear-gradient(135deg, #6d8b73 0%, #5d7b63 100%);
    
    --shadow-sm: 0 2px 8px rgba(44, 40, 37, 0.08);
    --shadow-md: 0 4px 20px rgba(44, 40, 37, 0.12);
    --shadow-lg: 0 10px 40px rgba(44, 40, 37, 0.15);
    
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: "Georgia", "Times New Roman", serif;
    
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-page[b-uko4fwg9b0] {
    font-family: var(--font-primary);
    color: var(--color-text);
    background: var(--gradient-warm);
    line-height: 1.7;
}

.container[b-uko4fwg9b0] {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Animations */
@keyframes fadeInUp-b-uko4fwg9b0 {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes checkmark-b-uko4fwg9b0 {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.fade-in[b-uko4fwg9b0] {
    animation: fadeInUp-b-uko4fwg9b0 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in:nth-child(1)[b-uko4fwg9b0] { animation-delay: 0.1s; }
.fade-in:nth-child(2)[b-uko4fwg9b0] { animation-delay: 0.2s; }
.fade-in:nth-child(3)[b-uko4fwg9b0] { animation-delay: 0.3s; }

/* Hero Section */
.contact-hero[b-uko4fwg9b0] {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    text-align: center;
    background: radial-gradient(circle at top center, rgba(217, 119, 87, 0.06) 0%, transparent 50%), var(--color-bg);
}

.hero-title[b-uko4fwg9b0] {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.15;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary-dark);
    font-weight: 700;
}

.hero-description[b-uko4fwg9b0] {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.7;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto var(--spacing-md);
}

.hero-note[b-uko4fwg9b0] {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* Form Section */
.form-section[b-uko4fwg9b0] {
    padding: var(--spacing-lg) 0;
}

.form-container[b-uko4fwg9b0] {
    background: var(--color-surface);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--color-border);
}

.contact-form[b-uko4fwg9b0] {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group[b-uko4fwg9b0] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label[b-uko4fwg9b0] {
    font-weight: 600;
    color: var(--color-text);
    font-size: 1.05rem;
}

.form-input[b-uko4fwg9b0],
.form-select[b-uko4fwg9b0],
.form-textarea[b-uko4fwg9b0] {
    padding: 0.875rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-surface);
    transition: var(--transition-base);
}

.form-input:focus[b-uko4fwg9b0],
.form-select:focus[b-uko4fwg9b0],
.form-textarea:focus[b-uko4fwg9b0] {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(217, 119, 87, 0.1);
}

.form-input[b-uko4fwg9b0]::placeholder,
.form-textarea[b-uko4fwg9b0]::placeholder {
    color: var(--color-text-muted);
    opacity: 0.6;
}

.form-textarea[b-uko4fwg9b0] {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

.submit-button[b-uko4fwg9b0] {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.125rem 2.5rem;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
    margin-top: var(--spacing-sm);
}

.submit-button:hover:not(:disabled)[b-uko4fwg9b0] {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.submit-button:disabled[b-uko4fwg9b0] {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success Message */
.success-message[b-uko4fwg9b0] {
    text-align: center;
    padding: var(--spacing-xl);
}

.success-icon[b-uko4fwg9b0] {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: var(--gradient-success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    animation: checkmark-b-uko4fwg9b0 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-message h2[b-uko4fwg9b0] {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-success);
}

.success-message p[b-uko4fwg9b0] {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
}

.btn-secondary[b-uko4fwg9b0] {
    background: var(--color-secondary);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-secondary:hover[b-uko4fwg9b0] {
    background: #4a6d7c;
    transform: translateY(-2px);
}

/* Alternative Contact */
.alternative-contact[b-uko4fwg9b0] {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(217, 119, 87, 0.03) 0%, rgba(240, 201, 184, 0.05) 100%);
    border-radius: var(--radius-md);
}

.alternative-contact h3[b-uko4fwg9b0] {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.alternative-contact p[b-uko4fwg9b0] {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.alternative-contact a[b-uko4fwg9b0] {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
}

.alternative-contact a:hover[b-uko4fwg9b0] {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

/* Closing Section */
.closing-section[b-uko4fwg9b0] {
    padding: var(--spacing-xl) 0;
}

.closing-card[b-uko4fwg9b0] {
    max-width: 600px;
    margin: 0 auto;
    padding: var(--spacing-lg);
    text-align: center;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.closing-card h2[b-uko4fwg9b0] {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-sm);
}

.closing-card p[b-uko4fwg9b0] {
    font-size: 1.35rem;
    opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero[b-uko4fwg9b0] {
        padding: var(--spacing-lg) 0;
    }

    .hero-title[b-uko4fwg9b0] {
        font-size: 2.25rem;
    }

    .form-container[b-uko4fwg9b0] {
        padding: var(--spacing-md);
    }

    .submit-button[b-uko4fwg9b0] {
        width: 100%;
    }
}
/* /Components/Pages/Elements/Unsubscribe.razor.rz.scp.css */
.unsubscribe-page[b-ukycsz9f5e] {
    min-height: 60vh;
    display: flex;
    align-items: flex-start;
    padding: 4rem 1rem;
}

.unsubscribe-page .container[b-ukycsz9f5e] {
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
}

/* ── Card ─────────────────────────────────────────────────────────────── */

.unsubscribe-card[b-ukycsz9f5e] {
    background: #fff;
    border: 1px solid #e8e8f0;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.card-title[b-ukycsz9f5e] {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.75rem;
}

.card-body[b-ukycsz9f5e] {
    color: #555;
    line-height: 1.65;
    margin: 0 0 1.25rem;
}

.card-body--warn[b-ukycsz9f5e] {
    color: #8b3a3a;
}

.loading-text[b-ukycsz9f5e] {
    color: #888;
    font-style: italic;
}

/* ── State icons ──────────────────────────────────────────────────────── */

.state-icon[b-ukycsz9f5e] {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.state-icon--ok[b-ukycsz9f5e] {
    background: #e6f4ea;
    color: #2d7a4f;
}

.state-icon--warn[b-ukycsz9f5e] {
    background: #fff3e0;
    color: #b45309;
}

/* ── Settings list ────────────────────────────────────────────────────── */

.settings-list[b-ukycsz9f5e] {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    border-top: 1px solid #eee;
}

.settings-item[b-ukycsz9f5e] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.settings-item-info[b-ukycsz9f5e] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.settings-item-name[b-ukycsz9f5e] {
    font-weight: 600;
    color: #1a1a2e;
}

.settings-item-value[b-ukycsz9f5e] {
    font-size: 0.82rem;
    color: #888;
}

/* ── Unsubscribe all row ──────────────────────────────────────────────── */

.unsubscribe-all-row[b-ukycsz9f5e] {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    text-align: right;
}

/* ── Buttons ──────────────────────────────────────────────────────────── */

.btn-unsubscribe-single[b-ukycsz9f5e] {
    flex-shrink: 0;
    padding: 0.4rem 1rem;
    border: 1px solid #c0392b;
    border-radius: 6px;
    background: transparent;
    color: #c0392b;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.btn-unsubscribe-single:hover[b-ukycsz9f5e] {
    background: #c0392b;
    color: #fff;
}

.btn-unsubscribe-all[b-ukycsz9f5e] {
    padding: 0.55rem 1.4rem;
    border: 1px solid #7b2d2d;
    border-radius: 6px;
    background: transparent;
    color: #7b2d2d;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.btn-unsubscribe-all:hover[b-ukycsz9f5e] {
    background: #7b2d2d;
    color: #fff;
}

.confirm-buttons[b-ukycsz9f5e] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.btn-confirm[b-ukycsz9f5e] {
    padding: 0.6rem 1.4rem;
    border: none;
    border-radius: 6px;
    background: #4a4a8a;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.15s;
}

.btn-confirm:hover:not(:disabled)[b-ukycsz9f5e] {
    background: #36366a;
}

.btn-confirm--danger[b-ukycsz9f5e] {
    background: #c0392b;
}

.btn-confirm--danger:hover:not(:disabled)[b-ukycsz9f5e] {
    background: #922b21;
}

.btn-confirm:disabled[b-ukycsz9f5e] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-cancel[b-ukycsz9f5e] {
    padding: 0.6rem 1.4rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: transparent;
    color: #555;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s;
}

.btn-cancel:hover:not(:disabled)[b-ukycsz9f5e] {
    border-color: #999;
    color: #222;
}

.btn-cancel:disabled[b-ukycsz9f5e] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-manage[b-ukycsz9f5e] {
    margin-top: 1.25rem;
    padding: 0.55rem 1.4rem;
    border: 1px solid #4a4a8a;
    border-radius: 6px;
    background: transparent;
    color: #4a4a8a;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.btn-manage:hover[b-ukycsz9f5e] {
    background: #4a4a8a;
    color: #fff;
}

/* ── Errors ────────────────────────────────────────────────────────────── */

.action-error[b-ukycsz9f5e] {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    border-radius: 6px;
    color: #7f1d1d;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* ── Spinner ───────────────────────────────────────────────────────────── */

.btn-spinner[b-ukycsz9f5e] {
    display: inline-block;
    width: 0.9rem;
    height: 0.9rem;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin-b-ukycsz9f5e 0.7s linear infinite;
    flex-shrink: 0;
}

@keyframes spin-b-ukycsz9f5e {
    to { transform: rotate(360deg); }
}

/* ── Responsive ────────────────────────────────────────────────────────── */

@media (max-width: 480px) {
    .unsubscribe-card[b-ukycsz9f5e] {
        padding: 1.75rem 1.25rem;
    }

    .settings-item[b-ukycsz9f5e] {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-unsubscribe-single[b-ukycsz9f5e] {
        align-self: flex-start;
    }

    .confirm-buttons[b-ukycsz9f5e] {
        flex-direction: column;
    }

    .btn-confirm[b-ukycsz9f5e],
    .btn-cancel[b-ukycsz9f5e] {
        width: 100%;
        justify-content: center;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* ===================================
   HOME PAGE - MODERN DESIGN SYSTEM
   =================================== */

/* CSS Variables */
.home-page[b-mnwouy396u] {
    /* Color Palette - Warm & Supportive */
    --color-primary: #d97757;
    --color-primary-dark: #c2553c;
    --color-primary-light: #f4ae96;
    --color-secondary: #5a7d8c;
    --color-accent: #f0c9b8;
    
    /* Neutrals */
    --color-bg: #fdfbf9;
    --color-bg-alt: #f8f5f2;
    --color-surface: #ffffff;
    --color-text: #2c2825;
    --color-text-muted: #6b6561;
    --color-border: #e8e2dd;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #d97757 0%, #c2553c 100%);
    --gradient-warm: linear-gradient(180deg, #fef8f5 0%, #f8f5f2 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(217, 119, 87, 0.05) 0%, rgba(240, 201, 184, 0.1) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(44, 40, 37, 0.08);
    --shadow-md: 0 4px 20px rgba(44, 40, 37, 0.12);
    --shadow-lg: 0 10px 40px rgba(44, 40, 37, 0.15);
    --shadow-hover: 0 12px 48px rgba(217, 119, 87, 0.2);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: "Georgia", "Times New Roman", serif;
    
    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   GLOBAL STYLES
   =================================== */

.home-page[b-mnwouy396u] {
    font-family: var(--font-primary);
    color: var(--color-text);
    background: var(--gradient-warm);
    line-height: 1.7;
    overflow-x: hidden;
}

.container[b-mnwouy396u] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (max-width: 768px) {
    .container[b-mnwouy396u] {
        padding: 0 var(--spacing-sm);
    }
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeInUp-b-mnwouy396u {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatGentle-b-mnwouy396u {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer-b-mnwouy396u {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.fade-in[b-mnwouy396u] {
    animation: fadeInUp-b-mnwouy396u 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in:nth-child(1)[b-mnwouy396u] { animation-delay: 0.1s; }
.fade-in:nth-child(2)[b-mnwouy396u] { animation-delay: 0.2s; }
.fade-in:nth-child(3)[b-mnwouy396u] { animation-delay: 0.3s; }
.fade-in:nth-child(4)[b-mnwouy396u] { animation-delay: 0.4s; }
.fade-in:nth-child(5)[b-mnwouy396u] { animation-delay: 0.5s; }

/* ===================================
   HERO SECTION
   =================================== */

.hero-section[b-mnwouy396u] {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-xl) 0;
    position: relative;
    background: 
        radial-gradient(circle at top right, rgba(217, 119, 87, 0.08) 0%, transparent 50%),
        radial-gradient(circle at bottom left, rgba(240, 201, 184, 0.12) 0%, transparent 50%),
        var(--color-bg);
}

.hero-section[b-mnwouy396u]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d97757' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}

.hero-content[b-mnwouy396u] {
    position: relative;
    z-index: 1;
}

.hero-text[b-mnwouy396u] {
    max-width: 900px;
}

.hero-title[b-mnwouy396u] {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.15;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-subtitle[b-mnwouy396u] {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-sm);
    line-height: 1.5;
}

.hero-truth[b-mnwouy396u] {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.hero-cta[b-mnwouy396u] {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

/* ===================================
   BUTTONS
   =================================== */

.btn[b-mnwouy396u] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn[b-mnwouy396u]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover[b-mnwouy396u]::before {
    width: 300px;
    height: 300px;
}

.btn-primary[b-mnwouy396u] {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover[b-mnwouy396u] {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary[b-mnwouy396u] {
    background: var(--color-surface);
    color: var(--color-primary);
    border-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover[b-mnwouy396u] {
    background: var(--color-bg-alt);
    border-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===================================
   CTA COMPONENT SECTION
   =================================== */

.cta-component-section[b-mnwouy396u] {
    padding: var(--spacing-lg) 0;
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about-section[b-mnwouy396u] {
    padding: var(--spacing-xl) 0;
}

.content-grid[b-mnwouy396u] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.content-card[b-mnwouy396u] {
    background: var(--color-surface);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid var(--color-border);
}

.content-card:hover[b-mnwouy396u] {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.accent-card[b-mnwouy396u] {
    background: var(--gradient-overlay), var(--color-surface);
    border-color: var(--color-accent);
}

.section-title[b-mnwouy396u] {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.25;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.emphasis-text[b-mnwouy396u] {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* ===================================
   MESSAGE SECTION
   =================================== */

.message-section[b-mnwouy396u] {
    padding: var(--spacing-xl) 0;
    text-align: center;
    background: var(--gradient-overlay);
}

.centered-message[b-mnwouy396u] {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.3;
    color: var(--color-primary-dark);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 700;
}

/* ===================================
   QUIZ SECTION
   =================================== */

.quiz-section[b-mnwouy396u] {
    padding: var(--spacing-xl) 0;
    background: var(--color-surface);
}

.section-header[b-mnwouy396u] {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-intro[b-mnwouy396u] {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-top: var(--spacing-sm);
}

.quiz-intro[b-mnwouy396u] {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
}

.quiz-intro p[b-mnwouy396u] {
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
    line-height: 1.8;
}

.quiz-intro p:last-child[b-mnwouy396u] {
    margin-bottom: 0;
}

.results-preview[b-mnwouy396u] {
    margin-top: var(--spacing-lg);
}

.results-title[b-mnwouy396u] {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.results-grid[b-mnwouy396u] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.result-card[b-mnwouy396u] {
    background: var(--color-surface);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 2px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.result-card[b-mnwouy396u]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.result-card:hover[b-mnwouy396u]::before {
    transform: scaleX(1);
}

.result-card:hover[b-mnwouy396u] {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.result-card h4[b-mnwouy396u] {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary-dark);
}

.result-card p[b-mnwouy396u] {
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ===================================
   FOUNDER SECTION
   =================================== */

.founder-section[b-mnwouy396u] {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-alt);
}

.founder-grid[b-mnwouy396u] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

@media (max-width: 968px) {
    .founder-grid[b-mnwouy396u] {
        grid-template-columns: 1fr;
    }
}

.founder-content[b-mnwouy396u] {
    padding: var(--spacing-md);
}

.founder-content p[b-mnwouy396u] {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
}

.founder-closing[b-mnwouy396u] {
    font-family: var(--font-heading);
    font-size: 1.5rem !important;
    color: var(--color-primary) !important;
    font-weight: 600;
    margin-top: var(--spacing-lg) !important;
}

.founder-story-component[b-mnwouy396u] {
    background: var(--color-surface);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials-section[b-mnwouy396u] {
    padding: var(--spacing-xl) 0;
}

.section-title.centered[b-mnwouy396u] {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.testimonials-grid[b-mnwouy396u] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
}

.testimonial-card[b-mnwouy396u] {
    background: var(--color-surface);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--color-primary);
    margin: 0;
    transition: var(--transition-smooth);
    position: relative;
}

.testimonial-card[b-mnwouy396u]::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 6rem;
    color: var(--color-accent);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-card:hover[b-mnwouy396u] {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--color-primary-dark);
}

.testimonial-text[b-mnwouy396u] {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text);
    font-style: italic;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.testimonial-author[b-mnwouy396u] {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 600;
    font-style: normal;
}

/* Testimonials Section */
.testimonials-section[b-mnwouy396u] {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-bg-alt);
    text-align: center;
}

.testimonials-section .section-title[b-mnwouy396u] {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary-dark);
}

.carousel[b-mnwouy396u] {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.carousel-viewport[b-mnwouy396u] {
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center; /* center the slide */
    align-items: center;
}

.carousel-track[b-mnwouy396u] {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    width: 100%;
}

.carousel-slide[b-mnwouy396u] {
    flex: 0 0 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-sm);
    background: var(--color-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    aspect-ratio: 1206 / 248; /* keep same shape as originals */
}

.carousel-image[b-mnwouy396u] {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* zoom-to-fit behavior */
}

.carousel-control[b-mnwouy396u] {
    background: rgba(0,0,0,0.05);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.carousel-control:hover[b-mnwouy396u] { transform: scale(1.05); }

.carousel-indicators[b-mnwouy396u] {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: var(--spacing-sm);
}

.indicator[b-mnwouy396u] {
    width: 10px;
    height: 10px;
    background: var(--color-border);
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

.indicator.active[b-mnwouy396u] { background: var(--color-primary); }

@media (max-width: 768px) {
    .carousel-slide[b-mnwouy396u] { height: 220px; }
    .carousel-control[b-mnwouy396u] { width: 40px; height: 40px; }
}

/* ===================================
   COMMUNITY SECTION
   =================================== */

.community-section[b-mnwouy396u] {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-overlay), var(--color-bg);
}

.community-card[b-mnwouy396u] {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-surface);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 2px solid var(--color-accent);
}

.community-card p[b-mnwouy396u] {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
}

.community-emphasis[b-mnwouy396u] {
    font-family: var(--font-heading);
    font-size: 1.3rem !important;
    color: var(--color-primary) !important;
    font-weight: 600;
    margin-top: var(--spacing-lg) !important;
}

.cta-wrapper[b-mnwouy396u] {
    margin-top: var(--spacing-lg);
}

/* ===================================
   PODCAST SECTION
   =================================== */

.podcast-section[b-mnwouy396u] {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-alt);
}

.podcast-card[b-mnwouy396u] {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-surface);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.podcast-card p[b-mnwouy396u] {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
    .hero-section[b-mnwouy396u] {
        min-height: auto;
        padding: var(--spacing-lg) 0;
    }

    .hero-title[b-mnwouy396u] {
        font-size: 2.25rem;
    }

    .hero-subtitle[b-mnwouy396u] {
        font-size: 1.25rem;
    }

    .hero-cta[b-mnwouy396u] {
        flex-direction: column;
    }

    .btn[b-mnwouy396u] {
        width: 100%;
    }

    .content-grid[b-mnwouy396u] {
        grid-template-columns: 1fr;
    }

    .results-grid[b-mnwouy396u] {
        grid-template-columns: 1fr;
    }

    .testimonials-grid[b-mnwouy396u] {
        grid-template-columns: 1fr;
    }

    .community-card[b-mnwouy396u],
    .podcast-card[b-mnwouy396u] {
        padding: var(--spacing-md);
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center[b-mnwouy396u] {
    text-align: center;
}

.mb-lg[b-mnwouy396u] {
    margin-bottom: var(--spacing-lg);
}

.mt-lg[b-mnwouy396u] {
    margin-top: var(--spacing-lg);
}
/* /Components/Pages/Mgmt/Stationery.razor.rz.scp.css */
/* ── Page layout (sidebar + editor) ──────────────────────────────────── */

.st-page[b-515in1au4e] {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: calc(100vh - 80px);
    font-family: sans-serif;
    color: #1a1a2e;
}

/* ── Sidebar ──────────────────────────────────────────────────────────── */

.st-sidebar[b-515in1au4e] {
    border-right: 1px solid #e8e8f0;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.st-sidebar-header[b-515in1au4e] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1rem 0.75rem;
    border-bottom: 1px solid #eee;
}

.st-sidebar-title[b-515in1au4e] {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
}

.st-search[b-515in1au4e] {
    display: block;
    width: 100%;
    padding: 0.5rem 0.85rem;
    border: none;
    border-bottom: 1px solid #eee;
    font-size: 0.875rem;
    outline: none;
    background: #fff;
    color: #333;
}

.st-search:focus[b-515in1au4e] {
    background: #f0f0ff;
}

/* ── Template list ────────────────────────────────────────────────────── */

.st-list[b-515in1au4e] {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    overflow-y: auto;
}

.st-list-item[b-515in1au4e] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.12s;
    font-size: 0.875rem;
}

.st-list-item:hover[b-515in1au4e] {
    background: #f0f0ff;
}

.st-list-item--active[b-515in1au4e] {
    background: #eeeeff;
    border-left: 3px solid #4a4a8a;
}

.st-list-desc[b-515in1au4e] {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.st-list-state[b-515in1au4e] {
    padding: 1.5rem 1rem;
    text-align: center;
    color: #aaa;
    font-size: 0.875rem;
}

/* ── Badges ───────────────────────────────────────────────────────────── */

.st-badge[b-515in1au4e] {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
    flex-shrink: 0;
}

.st-badge--html[b-515in1au4e] {
    background: #dbeafe;
    color: #1e40af;
}

.st-badge--text[b-515in1au4e] {
    background: #f3f4f6;
    color: #6b7280;
}

/* ── Editor panel ─────────────────────────────────────────────────────── */

.st-editor-panel[b-515in1au4e] {
    overflow-y: auto;
    padding: 0;
}

.st-editor-empty[b-515in1au4e] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 400px;
    gap: 1rem;
    color: #aaa;
    text-align: center;
    padding: 2rem;
}

.st-editor-empty-icon[b-515in1au4e] {
    font-size: 3rem;
    opacity: 0.3;
}

.st-editor[b-515in1au4e] {
    max-width: 900px;
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ── Editor header ────────────────────────────────────────────────────── */

.st-editor-header[b-515in1au4e] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

.st-editor-title[b-515in1au4e] {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.st-header-actions[b-515in1au4e] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-shrink: 0;
}

/* ── Alerts ───────────────────────────────────────────────────────────── */

.st-alert[b-515in1au4e] {
    padding: 0.7rem 1rem;
    border-radius: 6px;
    font-size: 0.88rem;
}

.st-alert--error[b-515in1au4e] {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #7f1d1d;
}

.st-alert--success[b-515in1au4e] {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #14532d;
}

.st-alert--warning[b-515in1au4e] {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    color: #78350f;
}

.st-confirm[b-515in1au4e] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.st-confirm-actions[b-515in1au4e] {
    display: flex;
    gap: 0.4rem;
}

/* ── Form ─────────────────────────────────────────────────────────────── */

.st-form[b-515in1au4e] {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.st-field[b-515in1au4e] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.st-label[b-515in1au4e] {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #555;
}

.st-req[b-515in1au4e] {
    color: #c0392b;
}

.st-input[b-515in1au4e] {
    padding: 0.5rem 0.75rem;
    border: 1px solid #d0d0e0;
    border-radius: 6px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.15s;
    width: 100%;
    box-sizing: border-box;
}

.st-input:focus[b-515in1au4e] {
    border-color: #4a4a8a;
}

.st-input--error[b-515in1au4e] {
    border-color: #e74c3c;
}

.st-input--mono[b-515in1au4e] {
    font-family: monospace;
    font-size: 0.85rem;
}

.st-input--sm[b-515in1au4e] {
    font-size: 0.85rem;
    padding: 0.4rem 0.65rem;
}

.st-field-error[b-515in1au4e] {
    font-size: 0.8rem;
    color: #c0392b;
}

.st-row-3[b-515in1au4e] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem;
}

/* ── Body editor bar ──────────────────────────────────────────────────── */

.st-body-bar[b-515in1au4e] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.4rem;
}

.st-body-bar-right[b-515in1au4e] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
    flex-wrap: wrap;
}

.st-tabs[b-515in1au4e] {
    display: flex;
    border: 1px solid #d0d0e0;
    border-radius: 6px;
    overflow: hidden;
}

.st-tab[b-515in1au4e] {
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 500;
    border: none;
    background: #fff;
    color: #555;
    cursor: pointer;
    transition: background 0.12s, color 0.12s;
}

.st-tab + .st-tab[b-515in1au4e] {
    border-left: 1px solid #d0d0e0;
}

.st-tab--active[b-515in1au4e] {
    background: #4a4a8a;
    color: #fff;
}

.st-toggle[b-515in1au4e] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: #555;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}

.st-toggle input[type="checkbox"][b-515in1au4e] {
    cursor: pointer;
    accent-color: #4a4a8a;
}

/* ── Quill wrapper ────────────────────────────────────────────────────── */

.st-quill-wrapper[b-515in1au4e] {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    overflow: hidden;
}

.st-quill-wrapper .ql-toolbar[b-515in1au4e] {
    background: #f9fafb;
    border-bottom: 1px solid #d1d5db;
}

.st-quill-wrapper .ql-container[b-515in1au4e] {
    background: #ffffff;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

.st-quill-wrapper .ql-editor[b-515in1au4e] {
    background: #ffffff;
    color: #111827;
    min-height: 300px;
}

/* Reset any page-level dark/themed backgrounds bleeding into the editor content */
.st-quill-wrapper .ql-editor *[b-515in1au4e] {
    box-sizing: border-box;
}

/* ── Raw HTML source textarea ─────────────────────────────────────────── */

.st-source-textarea[b-515in1au4e] {
    width: 100%;
    min-height: 360px;
    padding: 0.75rem;
    border: 1px solid #d0d0e0;
    border-radius: 6px;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 0.82rem;
    line-height: 1.55;
    color: #1a1a2e;
    background: #fafafa;
    resize: vertical;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.15s;
}

.st-source-textarea:focus[b-515in1au4e] {
    border-color: #4a4a8a;
    background: #fff;
}

/* ── Tag hints ────────────────────────────────────────────────────────── */

.st-tags-row[b-515in1au4e] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.6rem 0.75rem;
    background: #f5f5fb;
    border: 1px solid #e0e0f0;
    border-radius: 6px;
    font-size: 0.8rem;
}

.st-tags-label[b-515in1au4e] {
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.72rem;
}

.st-tag-chip[b-515in1au4e] {
    padding: 0.2rem 0.55rem;
    background: #e0e0f8;
    color: #3a3a7a;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #c8c8ee;
}

/* ── Attachments ──────────────────────────────────────────────────────── */

.st-attachments-header[b-515in1au4e] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.st-attachments-empty[b-515in1au4e] {
    font-size: 0.85rem;
    color: #aaa;
    font-style: italic;
    margin: 0.25rem 0 0;
}

.st-attachments-list[b-515in1au4e] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 0.25rem;
}

.st-attachments-headrow[b-515in1au4e] {
    display: grid;
    grid-template-columns: 1fr 2fr 28px;
    gap: 0.5rem;
    padding: 0 0.1rem;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #aaa;
}

.st-attachment-row[b-515in1au4e] {
    display: grid;
    grid-template-columns: 1fr 2fr 28px;
    gap: 0.5rem;
    align-items: center;
}

/* ── Audit footer ─────────────────────────────────────────────────────── */

.st-audit[b-515in1au4e] {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: #aaa;
    border-top: 1px solid #eee;
    padding-top: 0.75rem;
    margin-top: 0.5rem;
}

/* ── Buttons ──────────────────────────────────────────────────────────── */

.st-btn[b-515in1au4e] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    white-space: nowrap;
    padding: 0.5rem 1.1rem;
    font-size: 0.9rem;
    background: #4a4a8a;
    color: #fff;
}

.st-btn:hover:not(:disabled)[b-515in1au4e] {
    background: #36366a;
}

.st-btn:disabled[b-515in1au4e] {
    opacity: 0.55;
    cursor: not-allowed;
}

.st-btn--sm[b-515in1au4e] {
    padding: 0.4rem 0.85rem;
    font-size: 0.85rem;
}

.st-btn--xs[b-515in1au4e] {
    padding: 0.25rem 0.6rem;
    font-size: 0.78rem;
}

.st-btn--primary[b-515in1au4e] {
    background: #4a4a8a;
    color: #fff;
}

.st-btn--primary:hover:not(:disabled)[b-515in1au4e] {
    background: #36366a;
}

.st-btn--ghost[b-515in1au4e] {
    background: transparent;
    border: 1px solid #d0d0e0;
    color: #444;
}

.st-btn--ghost:hover:not(:disabled)[b-515in1au4e] {
    background: #f0f0f8;
}

.st-btn--danger[b-515in1au4e] {
    background: #c0392b;
    color: #fff;
}

.st-btn--danger:hover:not(:disabled)[b-515in1au4e] {
    background: #922b21;
}

.st-btn--outline-danger[b-515in1au4e] {
    background: transparent;
    border: 1px solid #c0392b;
    color: #c0392b;
}

.st-btn--outline-danger:hover:not(:disabled)[b-515in1au4e] {
    background: #c0392b;
    color: #fff;
}

/* ── Spinner ──────────────────────────────────────────────────────────── */

.st-spinner[b-515in1au4e] {
    display: inline-block;
    width: 0.9rem;
    height: 0.9rem;
    border: 2px solid rgba(74, 74, 138, 0.3);
    border-top-color: #4a4a8a;
    border-radius: 50%;
    animation: st-spin-b-515in1au4e 0.7s linear infinite;
    flex-shrink: 0;
}

.st-spinner--light[b-515in1au4e] {
    border-color: rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
}

@keyframes st-spin-b-515in1au4e {
    to { transform: rotate(360deg); }
}

/* ── Responsive ───────────────────────────────────────────────────────── */

@media (max-width: 860px) {
    .st-page[b-515in1au4e] {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }

    .st-sidebar[b-515in1au4e] {
        border-right: none;
        border-bottom: 1px solid #e8e8f0;
        max-height: 260px;
    }

    .st-editor[b-515in1au4e] {
        padding: 1.25rem;
    }

    .st-row-3[b-515in1au4e] {
        grid-template-columns: 1fr;
    }

    .st-attachment-row[b-515in1au4e],
    .st-attachments-headrow[b-515in1au4e] {
        grid-template-columns: 1fr 1fr 28px;
    }
}
/* /Components/Pages/Mgmt/Subscribers.razor.rz.scp.css */
/* ── Page shell ───────────────────────────────────────────────────────── */

.sa-page[b-d2yjsxwu6l] {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem;
    font-family: sans-serif;
    color: #1a1a2e;
}

.sa-header[b-d2yjsxwu6l] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}

.sa-title[b-d2yjsxwu6l] {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.2rem;
}

.sa-subtitle[b-d2yjsxwu6l] {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* ── Alert ────────────────────────────────────────────────────────────── */

.sa-alert[b-d2yjsxwu6l] {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.sa-alert--error[b-d2yjsxwu6l] {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #7f1d1d;
}

/* ── Stats bar ────────────────────────────────────────────────────────── */

.sa-stats[b-d2yjsxwu6l] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.sa-stat[b-d2yjsxwu6l] {
    background: #fff;
    border: 1px solid #e8e8f0;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.sa-stat-value[b-d2yjsxwu6l] {
    font-size: 1.85rem;
    font-weight: 700;
    color: #4a4a8a;
    line-height: 1;
}

.sa-stat-label[b-d2yjsxwu6l] {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ── Toolbar ──────────────────────────────────────────────────────────── */

.sa-toolbar[b-d2yjsxwu6l] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.sa-search[b-d2yjsxwu6l] {
    flex: 1;
    min-width: 220px;
    padding: 0.5rem 0.85rem;
    border: 1px solid #d0d0e0;
    border-radius: 6px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.15s;
}

.sa-search:focus[b-d2yjsxwu6l] {
    border-color: #4a4a8a;
}

.sa-sort-group[b-d2yjsxwu6l] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.sa-sort-label[b-d2yjsxwu6l] {
    font-size: 0.82rem;
    color: #888;
}

.sa-sort-btn[b-d2yjsxwu6l] {
    padding: 0.35rem 0.75rem;
    border: 1px solid #d0d0e0;
    border-radius: 5px;
    background: #fff;
    font-size: 0.82rem;
    color: #555;
    cursor: pointer;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.sa-sort-btn.active[b-d2yjsxwu6l] {
    border-color: #4a4a8a;
    background: #4a4a8a;
    color: #fff;
}

/* ── Table ────────────────────────────────────────────────────────────── */

.sa-table-wrapper[b-d2yjsxwu6l] {
    overflow-x: auto;
    border: 1px solid #e8e8f0;
    border-radius: 10px;
}

.sa-table[b-d2yjsxwu6l] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.sa-table thead th[b-d2yjsxwu6l] {
    background: #f5f5fb;
    padding: 0.7rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #555;
    border-bottom: 1px solid #e8e8f0;
    white-space: nowrap;
}

.sa-table tbody tr.sa-row[b-d2yjsxwu6l] {
    border-bottom: 1px solid #f0f0f8;
    cursor: pointer;
    transition: background 0.1s;
}

.sa-table tbody tr.sa-row:hover[b-d2yjsxwu6l] {
    background: #fafafa;
}

.sa-table tbody tr.sa-row--expanded[b-d2yjsxwu6l] {
    background: #f7f7fd;
}

.sa-table tbody tr.sa-row:last-child[b-d2yjsxwu6l] {
    border-bottom: none;
}

.sa-table td[b-d2yjsxwu6l] {
    padding: 0.7rem 1rem;
    vertical-align: middle;
}

.sa-col-actions[b-d2yjsxwu6l] {
    width: 1%;
    white-space: nowrap;
}

.sa-cell-name[b-d2yjsxwu6l] {
    font-weight: 500;
    white-space: nowrap;
}

.sa-cell-email[b-d2yjsxwu6l] {
    color: #555;
    font-size: 0.85rem;
}

.sa-cell-date[b-d2yjsxwu6l] {
    white-space: nowrap;
    color: #777;
    font-size: 0.85rem;
}

.sa-cell-settings[b-d2yjsxwu6l] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    align-items: center;
}

.sa-cell-actions[b-d2yjsxwu6l] {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    justify-content: flex-end;
}

/* ── Badges ───────────────────────────────────────────────────────────── */

.sa-badge[b-d2yjsxwu6l] {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
}

.sa-badge--active[b-d2yjsxwu6l] {
    background: #e6f4ea;
    color: #2d6a4f;
    border: 1px solid #b7dfca;
}

.sa-badge--none[b-d2yjsxwu6l] {
    background: #f5f5f5;
    color: #aaa;
    border: 1px solid #e8e8e8;
}

/* ── Detail row ───────────────────────────────────────────────────────── */

.sa-detail-row td[b-d2yjsxwu6l] {
    background: #f7f7fd;
    padding: 0 !important;
    border-bottom: 2px solid #e0e0f0;
}

.sa-detail[b-d2yjsxwu6l] {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sa-detail-section[b-d2yjsxwu6l] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sa-detail-heading[b-d2yjsxwu6l] {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    font-weight: 600;
    margin: 0;
}

.sa-detail-empty[b-d2yjsxwu6l] {
    color: #999;
    font-size: 0.88rem;
    font-style: italic;
    margin: 0;
}

.sa-detail-meta[b-d2yjsxwu6l] {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.82rem;
    color: #888;
    border-top: 1px solid #e8e8f0;
    padding-top: 0.75rem;
}

/* ── Settings list inside detail ─────────────────────────────────────── */

.sa-settings-list[b-d2yjsxwu6l] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.sa-settings-item[b-d2yjsxwu6l] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0.75rem;
    background: #fff;
    border: 1px solid #e8e8f0;
    border-radius: 6px;
}

.sa-settings-info[b-d2yjsxwu6l] {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.sa-settings-name[b-d2yjsxwu6l] {
    font-weight: 500;
    font-size: 0.88rem;
}

.sa-settings-value[b-d2yjsxwu6l] {
    font-size: 0.8rem;
    color: #888;
}

/* ── Inline confirm inside settings item ─────────────────────────────── */

.sa-inline-confirm[b-d2yjsxwu6l] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.sa-inline-confirm-text[b-d2yjsxwu6l] {
    font-size: 0.82rem;
    color: #7f1d1d;
    font-weight: 500;
}

/* ── Confirm row (full unsubscribe) ──────────────────────────────────── */

.sa-confirm-row td[b-d2yjsxwu6l] {
    padding: 0 !important;
    border-bottom: 2px solid #fca5a5;
}

.sa-confirm[b-d2yjsxwu6l] {
    background: #fef9f9;
    padding: 0.9rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.sa-confirm-icon[b-d2yjsxwu6l] {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.sa-confirm-body[b-d2yjsxwu6l] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-size: 0.88rem;
    color: #4a1010;
}

.sa-confirm-error[b-d2yjsxwu6l] {
    font-size: 0.82rem;
    color: #c0392b;
    font-weight: 500;
}

.sa-confirm-actions[b-d2yjsxwu6l] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* ── Buttons ──────────────────────────────────────────────────────────── */

.sa-btn[b-d2yjsxwu6l] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    white-space: nowrap;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    background: #4a4a8a;
    color: #fff;
}

.sa-btn:hover:not(:disabled)[b-d2yjsxwu6l] {
    background: #36366a;
}

.sa-btn:disabled[b-d2yjsxwu6l] {
    opacity: 0.55;
    cursor: not-allowed;
}

.sa-btn--ghost[b-d2yjsxwu6l] {
    background: transparent;
    border: 1px solid #d0d0e0;
    color: #444;
}

.sa-btn--ghost:hover:not(:disabled)[b-d2yjsxwu6l] {
    background: #f0f0f8;
    border-color: #aaa;
}

.sa-btn--danger[b-d2yjsxwu6l] {
    background: #c0392b;
    color: #fff;
    border: none;
}

.sa-btn--danger:hover:not(:disabled)[b-d2yjsxwu6l] {
    background: #922b21;
}

.sa-btn--outline-danger[b-d2yjsxwu6l] {
    background: transparent;
    border: 1px solid #c0392b;
    color: #c0392b;
}

.sa-btn--outline-danger:hover:not(:disabled)[b-d2yjsxwu6l] {
    background: #c0392b;
    color: #fff;
}

.sa-btn--sm[b-d2yjsxwu6l] {
    padding: 0.35rem 0.7rem;
    font-size: 0.82rem;
}

.sa-btn--xs[b-d2yjsxwu6l] {
    padding: 0.25rem 0.55rem;
    font-size: 0.78rem;
}

/* ── Loading / empty ─────────────────────────────────────────────────── */

.sa-loading[b-d2yjsxwu6l] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 3rem 1rem;
    color: #888;
    font-size: 0.95rem;
}

.sa-empty[b-d2yjsxwu6l] {
    padding: 3rem 1rem;
    text-align: center;
    color: #999;
}

.sa-count-label[b-d2yjsxwu6l] {
    margin-top: 0.75rem;
    font-size: 0.82rem;
    color: #aaa;
    text-align: right;
}

/* ── Spinner ──────────────────────────────────────────────────────────── */

.sa-spinner[b-d2yjsxwu6l] {
    display: inline-block;
    width: 0.85rem;
    height: 0.85rem;
    border: 2px solid rgba(74, 74, 138, 0.25);
    border-top-color: #4a4a8a;
    border-radius: 50%;
    animation: sa-spin-b-d2yjsxwu6l 0.7s linear infinite;
    flex-shrink: 0;
}

.sa-spinner--lg[b-d2yjsxwu6l] {
    width: 1.4rem;
    height: 1.4rem;
    border-width: 3px;
}

.sa-btn--danger .sa-spinner[b-d2yjsxwu6l],
.sa-btn--danger:hover .sa-spinner[b-d2yjsxwu6l] {
    border-color: rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
}

@keyframes sa-spin-b-d2yjsxwu6l {
    to { transform: rotate(360deg); }
}

/* ── Responsive ───────────────────────────────────────────────────────── */

@media (max-width: 860px) {
    .sa-stats[b-d2yjsxwu6l] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .sa-stats[b-d2yjsxwu6l] {
        grid-template-columns: 1fr 1fr;
    }

    .sa-table thead th:nth-child(3)[b-d2yjsxwu6l],
    .sa-table td:nth-child(3)[b-d2yjsxwu6l] {
        display: none; /* hide date column on small screens */
    }

    .sa-confirm[b-d2yjsxwu6l] {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* /Components/Pages/Podcast.razor.rz.scp.css */
/* ===================================
   PODCAST PAGE - EPISODE SHOWCASE
   =================================== */

/* CSS Variables */
.podcast-page[b-uqkh29fb88] {
    --color-primary: #d97757;
    --color-primary-dark: #c2553c;
    --color-primary-light: #f4ae96;
    --color-secondary: #5a7d8c;
    --color-accent: #f0c9b8;
    
    --color-bg: #fdfbf9;
    --color-bg-alt: #f8f5f2;
    --color-surface: #ffffff;
    --color-text: #2c2825;
    --color-text-muted: #6b6561;
    --color-border: #e8e2dd;
    
    --gradient-warm: linear-gradient(180deg, #fef8f5 0%, #f8f5f2 100%);
    --gradient-primary: linear-gradient(135deg, #d97757 0%, #c2553c 100%);
    
    --shadow-sm: 0 2px 8px rgba(44, 40, 37, 0.08);
    --shadow-md: 0 4px 20px rgba(44, 40, 37, 0.12);
    --shadow-lg: 0 10px 40px rgba(44, 40, 37, 0.15);
    
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: "Georgia", "Times New Roman", serif;
    
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.podcast-page[b-uqkh29fb88] {
    font-family: var(--font-primary);
    color: var(--color-text);
    background: var(--gradient-warm);
    line-height: 1.7;
}

.container[b-uqkh29fb88] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Animations */
@keyframes fadeInUp-b-uqkh29fb88 {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in[b-uqkh29fb88] {
    animation: fadeInUp-b-uqkh29fb88 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in:nth-child(1)[b-uqkh29fb88] { animation-delay: 0.1s; }
.fade-in:nth-child(2)[b-uqkh29fb88] { animation-delay: 0.2s; }
.fade-in:nth-child(3)[b-uqkh29fb88] { animation-delay: 0.3s; }
.fade-in:nth-child(4)[b-uqkh29fb88] { animation-delay: 0.4s; }

/* Hero Section */
.podcast-hero[b-uqkh29fb88] {
    padding: var(--spacing-xl) 0;
    text-align: center;
    background: radial-gradient(circle at top center, rgba(217, 119, 87, 0.06) 0%, transparent 50%), var(--color-bg);
}

.hero-title[b-uqkh29fb88] {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.15;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description[b-uqkh29fb88] {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.7;
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto var(--spacing-md);
}

.hero-closing[b-uqkh29fb88] {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--color-primary);
    font-weight: 600;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.subscribe-buttons[b-uqkh29fb88] {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.youtube-link[b-uqkh29fb88] {
    font-size: 1.05rem;
    color: var(--color-text-muted);
}

.youtube-link a[b-uqkh29fb88] {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
}

.youtube-link a:hover[b-uqkh29fb88] {
    color: var(--color-primary);
}

/* Section Common */
section[b-uqkh29fb88] {
    padding: var(--spacing-xl) 0;
}

.section-header[b-uqkh29fb88] {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-label[b-uqkh29fb88] {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(217, 119, 87, 0.1);
    color: var(--color-primary-dark);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
}

.section-title[b-uqkh29fb88] {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary-dark);
}

.section-intro[b-uqkh29fb88] {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Featured Episodes */
.featured-section[b-uqkh29fb88] {
    background: var(--color-surface);
}

.episodes-grid[b-uqkh29fb88] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
}

.episode-card[b-uqkh29fb88] {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-border);
    transition: var(--transition-base);
    position: relative;
}

.episode-card:hover[b-uqkh29fb88] {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.episode-badge[b-uqkh29fb88] {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: var(--gradient-primary);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
}

.episode-image[b-uqkh29fb88] {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.episode-video-container[b-uqkh29fb88] {
    aspect-ratio: 16/9;
    position: relative;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    overflow: hidden;
}

.episode-thumbnail[b-uqkh29fb88] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-overlay[b-uqkh29fb88] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

.play-overlay:hover[b-uqkh29fb88] {
    background: rgba(0, 0, 0, 0.4);
}

.video-embed-wrapper[b-uqkh29fb88] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.video-embed-wrapper iframe[b-uqkh29fb88] {
    width: 100%;
    height: 100%;
    border: none;
}

.video-embed-wrapper.archive-video[b-uqkh29fb88] {
    position: relative;
    aspect-ratio: 16/9;
    margin-top: var(--spacing-md);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.loading-state[b-uqkh29fb88],
.error-state[b-uqkh29fb88] {
    text-align: center;
    padding: var(--spacing-lg);
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.play-button[b-uqkh29fb88] {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
    transition: var(--transition-base);
}

.play-button:hover[b-uqkh29fb88] {
    background: white;
    transform: scale(1.1);
}

.episode-content[b-uqkh29fb88] {
    padding: var(--spacing-md);
}

.episode-title[b-uqkh29fb88] {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.episode-description[b-uqkh29fb88] {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-sm);
}

.episode-meta[b-uqkh29fb88] {
    display: flex;
    gap: var(--spacing-sm);
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.episode-duration[b-uqkh29fb88], .episode-date[b-uqkh29fb88] {
    display: flex;
    align-items: center;
}

/* Archive Section */
.archive-section[b-uqkh29fb88] {
    background: linear-gradient(135deg, rgba(217, 119, 87, 0.02) 0%, rgba(240, 201, 184, 0.04) 100%);
}

.episodes-list[b-uqkh29fb88] {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    max-width: 900px;
    margin: 0 auto;
}

.episode-item[b-uqkh29fb88] {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: 2px solid var(--color-border);
    transition: var(--transition-base);
    align-items: center;
}

.episode-item:hover[b-uqkh29fb88] {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.episode-number[b-uqkh29fb88] {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    min-width: 60px;
    text-align: center;
}

.episode-info[b-uqkh29fb88] {
    flex: 1;
}

.episode-title-small[b-uqkh29fb88] {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.episode-excerpt[b-uqkh29fb88] {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.episode-meta-small[b-uqkh29fb88] {
    display: flex;
    gap: var(--spacing-sm);
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.play-btn-small[b-uqkh29fb88] {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
}

.play-btn-small:hover[b-uqkh29fb88] {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Newsletter Section */
.newsletter-section[b-uqkh29fb88] {
    background: var(--color-surface);
}

.newsletter-card[b-uqkh29fb88] {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(217, 119, 87, 0.05) 0%, rgba(240, 201, 184, 0.08) 100%), var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-accent);
}

.newsletter-description[b-uqkh29fb88] {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
}

.cta-wrapper[b-uqkh29fb88] {
    margin-top: var(--spacing-md);
}

/* Responsive */
@media (max-width: 768px) {
    .podcast-hero[b-uqkh29fb88] {
        padding: var(--spacing-lg) 0;
    }

    .hero-title[b-uqkh29fb88] {
        font-size: 2.25rem;
    }

    .subscribe-buttons[b-uqkh29fb88] {
        flex-direction: column;
    }

    .episodes-grid[b-uqkh29fb88] {
        grid-template-columns: 1fr;
    }

    .episode-item[b-uqkh29fb88] {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .episode-number[b-uqkh29fb88] {
        margin-bottom: var(--spacing-sm);
    }

    .play-btn-small[b-uqkh29fb88] {
        width: 100%;
    }
}

/* ===================================
   SUBSCRIBE DIALOG / MODAL
   =================================== */

/* Subscribe button in newsletter card */
.subscribe-btn[b-uqkh29fb88] {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-base);
    letter-spacing: 0.01em;
}

.subscribe-btn:hover[b-uqkh29fb88] {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    filter: brightness(1.05);
}

/* Overlay */
.subscribe-overlay[b-uqkh29fb88] {
    position: fixed;
    inset: 0;
    background: rgba(44, 40, 37, 0.55);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: var(--spacing-md, 2rem);
    animation: fadeInUp-b-uqkh29fb88 0.2s ease-out forwards;
}

/* Dialog card */
.subscribe-dialog[b-uqkh29fb88] {
    position: relative;
    background: #ffffff;
    border-radius: var(--radius-lg, 24px);
    box-shadow: var(--shadow-lg, 0 10px 40px rgba(44, 40, 37, 0.15));
    border: 2px solid var(--color-accent, #f0c9b8);
    width: 100%;
    max-width: 500px;
    padding: 2.5rem;
    animation: fadeInUp-b-uqkh29fb88 0.25s ease-out forwards;
}

/* Close button */
.dialog-close[b-uqkh29fb88] {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--color-text-muted);
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.dialog-close:hover[b-uqkh29fb88] {
    background: rgba(217, 119, 87, 0.1);
    color: var(--color-primary);
}

/* Dialog header */
.dialog-header[b-uqkh29fb88] {
    margin-bottom: 1.75rem;
}

.dialog-label[b-uqkh29fb88] {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: rgba(217, 119, 87, 0.1);
    color: var(--color-primary-dark);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.dialog-title[b-uqkh29fb88] {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    line-height: 1.2;
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
}

.dialog-subtitle[b-uqkh29fb88] {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

/* Form body */
.dialog-body[b-uqkh29fb88] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.field-group[b-uqkh29fb88] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.field-group label[b-uqkh29fb88] {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
}

.required[b-uqkh29fb88] {
    color: var(--color-primary);
    margin-left: 2px;
}

.optional[b-uqkh29fb88] {
    color: var(--color-text-muted);
    font-weight: 400;
    font-size: 0.85rem;
}

.dialog-input[b-uqkh29fb88] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-bg);
    transition: var(--transition-base);
    box-sizing: border-box;
    font-family: var(--font-primary);
}

.dialog-input:focus[b-uqkh29fb88] {
    outline: none;
    border-color: var(--color-primary);
    background: var(--color-surface);
    box-shadow: 0 0 0 3px rgba(217, 119, 87, 0.12);
}

.dialog-input.input-error[b-uqkh29fb88] {
    border-color: #c0392b;
}

.code-input[b-uqkh29fb88] {
    font-size: 1.5rem;
    letter-spacing: 0.4rem;
    text-align: center;
    font-weight: 700;
}

.field-error[b-uqkh29fb88] {
    font-size: 0.82rem;
    color: #c0392b;
    font-weight: 500;
}

.dialog-error[b-uqkh29fb88] {
    background: #fdf0ef;
    border: 1px solid #f5c6c2;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    color: #a93226;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Primary action button */
.dialog-btn[b-uqkh29fb88] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-base);
    margin-top: 0.25rem;
    font-family: var(--font-primary);
}

.dialog-btn:hover:not(:disabled)[b-uqkh29fb88] {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    filter: brightness(1.05);
}

.dialog-btn:disabled[b-uqkh29fb88] {
    opacity: 0.65;
    cursor: not-allowed;
}

/* Back / secondary link */
.dialog-link[b-uqkh29fb88] {
    background: none;
    border: none;
    color: var(--color-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-align: center;
    transition: var(--transition-base);
    font-family: var(--font-primary);
}

.dialog-link:hover:not(:disabled)[b-uqkh29fb88] {
    color: var(--color-primary);
}

/* Spinner */
.btn-spinner[b-uqkh29fb88] {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-uqkh29fb88 0.7s linear infinite;
}

@keyframes spin-b-uqkh29fb88 {
    to { transform: rotate(360deg); }
}

/* Success state */
.dialog-success[b-uqkh29fb88] {
    text-align: center;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.success-icon[b-uqkh29fb88] {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border-radius: 50%;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(39, 174, 96, 0.3);
}
/* /Components/Pages/Pricing.razor.rz.scp.css */
/* ===================================
   PRICING PAGE - CLEAN PRICING TABLE
   =================================== */

/* CSS Variables */
.pricing-page[b-c9s9ingplg] {
    --color-primary: #d97757;
    --color-primary-dark: #c2553c;
    --color-primary-light: #f4ae96;
    --color-secondary: #5a7d8c;
    --color-accent: #f0c9b8;
    --color-success: #6d8b73;
    
    --color-bg: #fdfbf9;
    --color-bg-alt: #f8f5f2;
    --color-surface: #ffffff;
    --color-text: #2c2825;
    --color-text-muted: #6b6561;
    --color-border: #e8e2dd;
    
    --gradient-warm: linear-gradient(180deg, #fef8f5 0%, #f8f5f2 100%);
    --gradient-primary: linear-gradient(135deg, #d97757 0%, #c2553c 100%);
    
    --shadow-sm: 0 2px 8px rgba(44, 40, 37, 0.08);
    --shadow-md: 0 4px 20px rgba(44, 40, 37, 0.12);
    --shadow-lg: 0 10px 40px rgba(44, 40, 37, 0.15);
    --shadow-xl: 0 20px 60px rgba(44, 40, 37, 0.2);
    
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: "Georgia", "Times New Roman", serif;
    
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-page[b-c9s9ingplg] {
    font-family: var(--font-primary);
    color: var(--color-text);
    background: var(--gradient-warm);
    line-height: 1.7;
}

.container[b-c9s9ingplg] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Animations */
@keyframes fadeInUp-b-c9s9ingplg {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in[b-c9s9ingplg] {
    animation: fadeInUp-b-c9s9ingplg 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in:nth-child(1)[b-c9s9ingplg] { animation-delay: 0.1s; }
.fade-in:nth-child(2)[b-c9s9ingplg] { animation-delay: 0.2s; }
.fade-in:nth-child(3)[b-c9s9ingplg] { animation-delay: 0.3s; }
.fade-in:nth-child(4)[b-c9s9ingplg] { animation-delay: 0.4s; }

/* Hero Section */
.pricing-hero[b-c9s9ingplg] {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    text-align: center;
    background: radial-gradient(circle at top center, rgba(217, 119, 87, 0.06) 0%, transparent 50%), var(--color-bg);
}

.hero-title[b-c9s9ingplg] {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.15;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary-dark);
    font-weight: 700;
}

.hero-description[b-c9s9ingplg] {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.7;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Pricing Cards Section */
.plans-section[b-c9s9ingplg] {
    padding: var(--spacing-xl) 0;
    background: var(--color-surface);
}

.pricing-grid[b-c9s9ingplg] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card[b-c9s9ingplg] {
    background: var(--color-surface);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-border);
    position: relative;
    transition: var(--transition-base);
}

.pricing-card:hover[b-c9s9ingplg] {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.founding[b-c9s9ingplg] {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(217, 119, 87, 0.02) 0%, rgba(240, 201, 184, 0.04) 100%), var(--color-surface);
}

.pricing-card.founding[b-c9s9ingplg]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.popular-badge[b-c9s9ingplg] {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-md);
}

.plan-name[b-c9s9ingplg] {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    margin-top: var(--spacing-sm);
}

.plan-tagline[b-c9s9ingplg] {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
}

.price-display[b-c9s9ingplg] {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.currency[b-c9s9ingplg] {
    font-size: 2rem;
    color: var(--color-primary);
    font-weight: 700;
}

.amount[b-c9s9ingplg] {
    font-size: 5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin: 0 0.25rem;
}

.period[b-c9s9ingplg] {
    font-size: 1.5rem;
    color: var(--color-text-muted);
}

.price-lock[b-c9s9ingplg] {
    text-align: center;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-success);
    margin-bottom: var(--spacing-md);
}

.price-note[b-c9s9ingplg] {
    text-align: center;
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
}

.features-list[b-c9s9ingplg] {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.features-list li[b-c9s9ingplg] {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: 0.75rem 0;
    font-size: 1.05rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--color-border);
}

.features-list li:last-child[b-c9s9ingplg] {
    border-bottom: none;
}

.check[b-c9s9ingplg] {
    color: var(--color-success);
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.cta-button[b-c9s9ingplg] {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-base);
    margin-top: var(--spacing-md);
}

.cta-button.primary[b-c9s9ingplg] {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.cta-button.primary:hover[b-c9s9ingplg] {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button.secondary[b-c9s9ingplg] {
    background: var(--color-secondary);
    color: white;
    box-shadow: var(--shadow-sm);
}

.cta-button.secondary:hover[b-c9s9ingplg] {
    background: #4a6d7c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.spots-remaining[b-c9s9ingplg] {
    text-align: center;
    margin-top: var(--spacing-md);
    font-size: 1.05rem;
    color: var(--color-primary-dark);
}

.guarantee[b-c9s9ingplg] {
    text-align: center;
    margin-top: var(--spacing-sm);
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* Comparison Table */
.comparison-section[b-c9s9ingplg] {
    padding: var(--spacing-xl) 0;
}

.section-title[b-c9s9ingplg] {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary-dark);
}

.section-intro[b-c9s9ingplg] {
    text-align: center;
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
}

.comparison-table[b-c9s9ingplg] {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.table-header[b-c9s9ingplg] {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--gradient-primary);
    color: white;
    font-weight: 700;
}

.table-row[b-c9s9ingplg] {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--color-border);
}

.table-row:last-child[b-c9s9ingplg] {
    border-bottom: none;
}

.table-row.highlight[b-c9s9ingplg] {
    background: linear-gradient(135deg, rgba(217, 119, 87, 0.03) 0%, rgba(240, 201, 184, 0.05) 100%);
}

.feature-col[b-c9s9ingplg] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-col strong[b-c9s9ingplg] {
    font-weight: 600;
    color: var(--color-text);
}

.feature-col p[b-c9s9ingplg] {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
}

.plan-col[b-c9s9ingplg] {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.included[b-c9s9ingplg] {
    color: var(--color-success);
    font-weight: 700;
}

.not-included[b-c9s9ingplg] {
    color: var(--color-text-muted);
}

/* FAQ Section */
.faq-section[b-c9s9ingplg] {
    padding: var(--spacing-xl) 0;
    background: var(--color-surface);
}

.faq-grid[b-c9s9ingplg] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item[b-c9s9ingplg] {
    padding: var(--spacing-md);
    background: var(--color-bg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
}

.faq-question[b-c9s9ingplg] {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.faq-answer[b-c9s9ingplg] {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin: 0;
}

/* Final CTA */
.final-cta-section[b-c9s9ingplg] {
    padding: var(--spacing-xl) 0;
}

.final-cta-card[b-c9s9ingplg] {
    max-width: 700px;
    margin: 0 auto;
    padding: var(--spacing-xl);
    text-align: center;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.final-cta-card h2[b-c9s9ingplg] {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-sm);
}

.final-cta-card p[b-c9s9ingplg] {
    font-size: 1.35rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.cta-button.large[b-c9s9ingplg] {
    font-size: 1.25rem;
    padding: 1.25rem 2.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-grid[b-c9s9ingplg] {
        grid-template-columns: 1fr;
    }

    .table-header[b-c9s9ingplg],
    .table-row[b-c9s9ingplg] {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-col[b-c9s9ingplg] {
        align-items: center;
    }

    .faq-grid[b-c9s9ingplg] {
        grid-template-columns: 1fr;
    }

    .amount[b-c9s9ingplg] {
        font-size: 4rem;
    }
}
/* /Components/Pages/Resources.razor.rz.scp.css */
/* ===================================
   RESOURCES PAGE - CURATED LIBRARY
   =================================== */

/* CSS Variables */
.resources-page[b-tpulacx3ja] {
    --color-primary: #d97757;
    --color-primary-dark: #c2553c;
    --color-primary-light: #f4ae96;
    --color-secondary: #5a7d8c;
    --color-accent: #f0c9b8;
    --color-success: #6d8b73;
    
    --color-bg: #fdfbf9;
    --color-bg-alt: #f8f5f2;
    --color-surface: #ffffff;
    --color-text: #2c2825;
    --color-text-muted: #6b6561;
    --color-border: #e8e2dd;
    
    --gradient-warm: linear-gradient(180deg, #fef8f5 0%, #f8f5f2 100%);
    --gradient-primary: linear-gradient(135deg, #d97757 0%, #c2553c 100%);
    
    --shadow-sm: 0 2px 8px rgba(44, 40, 37, 0.08);
    --shadow-md: 0 4px 20px rgba(44, 40, 37, 0.12);
    --shadow-lg: 0 10px 40px rgba(44, 40, 37, 0.15);
    
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: "Georgia", "Times New Roman", serif;
    
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.resources-page[b-tpulacx3ja] {
    font-family: var(--font-primary);
    color: var(--color-text);
    background: var(--gradient-warm);
    line-height: 1.7;
}

.container[b-tpulacx3ja] {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Animations */
@keyframes fadeInUp-b-tpulacx3ja {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in[b-tpulacx3ja] {
    animation: fadeInUp-b-tpulacx3ja 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in:nth-child(1)[b-tpulacx3ja] { animation-delay: 0.1s; }
.fade-in:nth-child(2)[b-tpulacx3ja] { animation-delay: 0.2s; }
.fade-in:nth-child(3)[b-tpulacx3ja] { animation-delay: 0.3s; }
.fade-in:nth-child(4)[b-tpulacx3ja] { animation-delay: 0.4s; }
.fade-in:nth-child(5)[b-tpulacx3ja] { animation-delay: 0.5s; }

/* Hero Section */
.resources-hero[b-tpulacx3ja] {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    text-align: center;
    background: radial-gradient(circle at top center, rgba(217, 119, 87, 0.06) 0%, transparent 50%), var(--color-bg);
}

.hero-title[b-tpulacx3ja] {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.15;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-description[b-tpulacx3ja] {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.7;
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto var(--spacing-md);
}

.hero-note[b-tpulacx3ja] {
    font-size: 1.15rem;
    color: var(--color-primary);
    font-weight: 600;
}

/* Section Common */
section[b-tpulacx3ja] {
    padding: var(--spacing-xl) 0;
}

.section-header[b-tpulacx3ja] {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-label[b-tpulacx3ja] {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(217, 119, 87, 0.1);
    color: var(--color-primary-dark);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
}

.section-title[b-tpulacx3ja] {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary-dark);
}

.section-intro[b-tpulacx3ja] {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto var(--spacing-sm);
}

.affiliate-note[b-tpulacx3ja] {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

/* Featured Section */
.featured-section[b-tpulacx3ja] {
    background: var(--color-surface);
}

.quiz-feature-card[b-tpulacx3ja] {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    background: linear-gradient(135deg, rgba(217, 119, 87, 0.05) 0%, rgba(240, 201, 184, 0.08) 100%), var(--color-surface);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--color-accent);
    text-align: center;
}

.quiz-badge[b-tpulacx3ja] {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
}

.quiz-title[b-tpulacx3ja] {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.quiz-description[b-tpulacx3ja] {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
}

.quiz-results-preview[b-tpulacx3ja] {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.mini-result[b-tpulacx3ja] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: var(--spacing-sm);
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: 2px solid var(--color-border);
    min-width: 150px;
}

.result-icon[b-tpulacx3ja] {
    font-size: 2rem;
}

.result-name[b-tpulacx3ja] {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: center;
}

.coming-soon-card[b-tpulacx3ja] {
    max-width: 700px;
    margin: 0 auto;
    padding: var(--spacing-lg);
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-secondary);
}

.coming-soon-card h4[b-tpulacx3ja] {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.coming-list[b-tpulacx3ja] {
    list-style: none;
    padding: 0;
}

.coming-list li[b-tpulacx3ja] {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--color-text-muted);
}

.coming-list li[b-tpulacx3ja]::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: 700;
}

/* CTA Section */
.cta-section[b-tpulacx3ja] {
    padding: var(--spacing-lg) 0;
}

.cta-wrapper[b-tpulacx3ja] {
    margin-top: var(--spacing-md);
    text-align: center;
}

/* Buttons */
.btn[b-tpulacx3ja] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary[b-tpulacx3ja] {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover[b-tpulacx3ja] {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(217, 119, 87, 0.3);
}

.btn.large[b-tpulacx3ja] {
    padding: 1.25rem 2.5rem;
    font-size: 1.15rem;
}

/* Reading Section */
.reading-section[b-tpulacx3ja] {
    background: linear-gradient(135deg, rgba(217, 119, 87, 0.02) 0%, rgba(240, 201, 184, 0.04) 100%);
}

.books-placeholder[b-tpulacx3ja] {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 2px dashed var(--color-border);
}

.placeholder-icon[b-tpulacx3ja] {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
}

.books-placeholder h3[b-tpulacx3ja] {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.books-placeholder p[b-tpulacx3ja] {
    font-size: 1.05rem;
    color: var(--color-text-muted);
}

.books-grid[b-tpulacx3ja] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.book-card[b-tpulacx3ja] {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-border);
    transition: var(--transition-base);
}

.book-card:hover[b-tpulacx3ja] {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.book-cover[b-tpulacx3ja] {
    aspect-ratio: 3/4;
    background: var(--color-bg-alt);
}

.cover-placeholder[b-tpulacx3ja] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.book-info[b-tpulacx3ja] {
    padding: var(--spacing-md);
}

.book-title[b-tpulacx3ja] {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.book-author[b-tpulacx3ja] {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-sm);
}

.book-description[b-tpulacx3ja] {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-sm);
}

.book-link[b-tpulacx3ja] {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
}

.book-link:hover[b-tpulacx3ja] {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

/* Paid Section */
.paid-section[b-tpulacx3ja] {
    background: var(--color-surface);
}

.primary-resource[b-tpulacx3ja] {
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
    background: linear-gradient(135deg, rgba(217, 119, 87, 0.05) 0%, rgba(240, 201, 184, 0.08) 100%), var(--color-surface);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--color-primary-light);
}

.resource-content[b-tpulacx3ja] {
    text-align: center;
}

.resource-badge[b-tpulacx3ja] {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
}

.resource-title[b-tpulacx3ja] {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary-dark);
}

.resource-description[b-tpulacx3ja] {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.resource-features[b-tpulacx3ja] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item[b-tpulacx3ja] {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.75rem;
    background: var(--color-surface);
    border-radius: var(--radius-sm);
}

.feature-icon[b-tpulacx3ja] {
    color: var(--color-success);
    font-size: 1.25rem;
    font-weight: 700;
}

.resource-pricing[b-tpulacx3ja] {
    margin-bottom: var(--spacing-lg);
}

.price-tag[b-tpulacx3ja] {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.price-amount[b-tpulacx3ja] {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-period[b-tpulacx3ja] {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    margin-left: 0.25rem;
}

.price-note[b-tpulacx3ja] {
    font-size: 1.05rem;
    color: var(--color-success);
    font-weight: 600;
}

.future-resources[b-tpulacx3ja] {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-lg);
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.future-resources h4[b-tpulacx3ja] {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.future-grid[b-tpulacx3ja] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.future-item[b-tpulacx3ja] {
    text-align: center;
    padding: var(--spacing-md);
}

.future-icon[b-tpulacx3ja] {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.future-item h5[b-tpulacx3ja] {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.future-item p[b-tpulacx3ja] {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* Final CTA */
.final-cta-section[b-tpulacx3ja] {
    padding: var(--spacing-xl) 0;
}

.final-cta-card[b-tpulacx3ja] {
    max-width: 700px;
    margin: 0 auto;
    padding: var(--spacing-xl);
    text-align: center;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.final-cta-card h2[b-tpulacx3ja] {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-sm);
}

.final-cta-card p[b-tpulacx3ja] {
    font-size: 1.35rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
    .resources-hero[b-tpulacx3ja] {
        padding: var(--spacing-lg) 0;
    }

    .hero-title[b-tpulacx3ja] {
        font-size: 2.25rem;
    }

    .quiz-feature-card[b-tpulacx3ja] {
        padding: var(--spacing-md);
    }

    .quiz-results-preview[b-tpulacx3ja] {
        flex-direction: column;
    }

    .primary-resource[b-tpulacx3ja] {
        padding: var(--spacing-md);
    }

    .resource-features[b-tpulacx3ja] {
        grid-template-columns: 1fr;
    }

    .price-amount[b-tpulacx3ja] {
        font-size: 3rem;
    }

    .future-grid[b-tpulacx3ja] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/Take_the_Quiz.razor.rz.scp.css */
/* ===================================
   QUIZ PAGE - INTERACTIVE ASSESSMENT
   =================================== */

/* CSS Variables */
.quiz-page[b-dcupug50b7] {
    --color-primary: #d97757;
    --color-primary-dark: #c2553c;
    --color-primary-light: #f4ae96;
    --color-secondary: #5a7d8c;
    --color-accent: #f0c9b8;
    --color-success: #6d8b73;
    
    --color-survival: #c2553c;
    --color-footing: #5a7d8c;
    --color-strength: #6d8b73;
    
    --color-bg: #fdfbf9;
    --color-bg-alt: #f8f5f2;
    --color-surface: #ffffff;
    --color-text: #2c2825;
    --color-text-muted: #6b6561;
    --color-border: #e8e2dd;
    
    --gradient-warm: linear-gradient(180deg, #fef8f5 0%, #f8f5f2 100%);
    --gradient-primary: linear-gradient(135deg, #d97757 0%, #c2553c 100%);
    
    --shadow-sm: 0 2px 8px rgba(44, 40, 37, 0.08);
    --shadow-md: 0 4px 20px rgba(44, 40, 37, 0.12);
    --shadow-lg: 0 10px 40px rgba(44, 40, 37, 0.15);
    
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: "Georgia", "Times New Roman", serif;
    
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-page[b-dcupug50b7] {
    font-family: var(--font-primary);
    color: var(--color-text);
    background: var(--gradient-warm);
    line-height: 1.7;
    min-height: 100vh;
}

.container[b-dcupug50b7] {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Animations */
@keyframes fadeInUp-b-dcupug50b7 {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in[b-dcupug50b7] {
    animation: fadeInUp-b-dcupug50b7 0.8s ease-out forwards;
    opacity: 0;
}

/* Hero Section */
.quiz-hero[b-dcupug50b7] {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    text-align: center;
}

.quiz-brand[b-dcupug50b7] {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
}

.hero-title[b-dcupug50b7] {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary-dark);
    font-weight: 700;
}

.hero-description[b-dcupug50b7] {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.7;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Preview Section */
.preview-section[b-dcupug50b7] {
    padding: var(--spacing-lg) 0;
}

.results-preview-grid[b-dcupug50b7] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.preview-card[b-dcupug50b7] {
    background: var(--color-surface);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-border);
    transition: var(--transition-base);
}

.preview-card:hover[b-dcupug50b7] {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.preview-card.survival[b-dcupug50b7] { border-color: rgba(194, 85, 60, 0.3); }
.preview-card.footing[b-dcupug50b7] { border-color: rgba(90, 125, 140, 0.3); }
.preview-card.strength[b-dcupug50b7] { border-color: rgba(109, 139, 115, 0.3); }

.preview-icon[b-dcupug50b7] {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.preview-card h3[b-dcupug50b7] {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.preview-card p[b-dcupug50b7] {
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

/* Quiz Promise */
.quiz-promise[b-dcupug50b7] {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.promise-lead[b-dcupug50b7] {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--color-text);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.what-you-get[b-dcupug50b7] {
    background: linear-gradient(135deg, rgba(217, 119, 87, 0.04) 0%, rgba(240, 201, 184, 0.06) 100%);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    text-align: left;
}

.what-you-get h3[b-dcupug50b7] {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary-dark);
}

.what-you-get ul[b-dcupug50b7] {
    list-style: none;
    padding: 0;
}

.what-you-get li[b-dcupug50b7] {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
}

.what-you-get li[b-dcupug50b7]::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
    font-size: 1.25rem;
}

.quiz-note[b-dcupug50b7] {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-sm);
}

.quiz-challenge[b-dcupug50b7] {
    font-size: 1.2rem;
    color: var(--color-primary);
    font-weight: 600;
    font-style: italic;
}

.cta-wrapper[b-dcupug50b7] {
    margin-top: var(--spacing-lg);
    text-align: center;
}

.start-button[b-dcupug50b7] {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: var(--radius-sm);
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-lg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.start-button:hover[b-dcupug50b7] {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(217, 119, 87, 0.3);
}

/* Email Section */
.email-section[b-dcupug50b7] {
    padding: var(--spacing-xl) 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.email-card[b-dcupug50b7] {
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-surface);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--color-border);
    text-align: center;
}

.email-card h2[b-dcupug50b7] {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary-dark);
}

.email-card > p[b-dcupug50b7] {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
}

.error-message[b-dcupug50b7] {
    background: rgba(194, 85, 60, 0.1);
    color: var(--color-primary-dark);
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-md);
    border-left: 4px solid var(--color-primary);
}

.email-form[b-dcupug50b7] {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.email-input[b-dcupug50b7] {
    padding: 1rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    font-family: var(--font-primary);
    transition: var(--transition-base);
}

.email-input:focus[b-dcupug50b7] {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(217, 119, 87, 0.1);
}

.continue-button[b-dcupug50b7] {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-base);
}

.continue-button:hover[b-dcupug50b7] {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.privacy-note[b-dcupug50b7] {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: var(--spacing-md);
}

/* Questions Section */
.questions-section[b-dcupug50b7] {
    padding: var(--spacing-lg) 0 var(--spacing-xl);
}

.quiz-instructions[b-dcupug50b7] {
    text-align: center;
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(217, 119, 87, 0.04) 0%, rgba(240, 201, 184, 0.06) 100%);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
}

.quiz-instructions p[b-dcupug50b7] {
    font-size: 1.15rem;
    color: var(--color-text);
    font-weight: 600;
    margin: 0;
}

.questions-container[b-dcupug50b7] {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.question-card[b-dcupug50b7] {
    background: var(--color-surface);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-border);
    transition: var(--transition-base);
}

.question-card.answered[b-dcupug50b7] {
    border-color: var(--color-success);
}

.question-header[b-dcupug50b7] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.question-label[b-dcupug50b7] {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
}

.answered-badge[b-dcupug50b7] {
    background: var(--color-success);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
}

.question-text[b-dcupug50b7] {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.options-group[b-dcupug50b7] {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.option-label[b-dcupug50b7] {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--color-bg-alt);
    border-radius: var(--radius-sm);
    border: 2px solid var(--color-border);
    cursor: pointer;
    transition: var(--transition-base);
}

.option-label:hover[b-dcupug50b7] {
    background: var(--color-surface);
    border-color: var(--color-primary-light);
}

.option-label.selected[b-dcupug50b7] {
    background: linear-gradient(135deg, rgba(217, 119, 87, 0.08) 0%, rgba(240, 201, 184, 0.12) 100%);
    border-color: var(--color-primary);
}

.option-label input[type="radio"][b-dcupug50b7] {
    margin-top: 0.25rem;
}

.option-letter[b-dcupug50b7] {
    font-weight: 700;
    color: var(--color-primary);
    min-width: 1.5rem;
}

.option-text[b-dcupug50b7] {
    flex: 1;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-text);
}

.submit-wrapper[b-dcupug50b7] {
    margin-top: var(--spacing-xl);
    text-align: center;
}

.submit-button[b-dcupug50b7] {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: var(--radius-sm);
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-lg);
}

.submit-button:hover:not(:disabled)[b-dcupug50b7] {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(217, 119, 87, 0.3);
}

.submit-button:disabled[b-dcupug50b7] {
    opacity: 0.5;
    cursor: not-allowed;
}

.complete-note[b-dcupug50b7] {
    margin-top: var(--spacing-sm);
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Results Section */
.results-section[b-dcupug50b7] {
    padding: var(--spacing-xl) 0;
}

.result-card[b-dcupug50b7] {
    background: var(--color-surface);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 3px solid;
    margin-bottom: var(--spacing-xl);
}

.result-card.survival-result[b-dcupug50b7] { border-color: var(--color-survival); }
.result-card.footing-result[b-dcupug50b7] { border-color: var(--color-footing); }
.result-card.strength-result[b-dcupug50b7] { border-color: var(--color-strength); }

.result-badge[b-dcupug50b7] {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-md);
}

.result-title[b-dcupug50b7] {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary-dark);
}

.result-subtitle[b-dcupug50b7] {
    font-size: 1.35rem;
    line-height: 1.5;
    color: var(--color-text);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.result-content[b-dcupug50b7] {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-text);
}

.result-content p[b-dcupug50b7] {
    margin-bottom: 1.5rem;
}

.need-section[b-dcupug50b7],
.step-section[b-dcupug50b7],
.deeper-section[b-dcupug50b7] {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(217, 119, 87, 0.03) 0%, rgba(240, 201, 184, 0.05) 100%);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
}

.need-section h3[b-dcupug50b7],
.step-section h3[b-dcupug50b7],
.deeper-section h3[b-dcupug50b7] {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary-dark);
}

.need-text[b-dcupug50b7] {
    font-weight: 600;
    color: var(--color-text);
}

.email-confirmation[b-dcupug50b7] {
    text-align: center;
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(109, 139, 115, 0.08) 0%, rgba(109, 139, 115, 0.12) 100%);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
}

.confirmation-icon[b-dcupug50b7] {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: var(--color-success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
}

.email-confirmation h3[b-dcupug50b7] {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-success);
}

.email-confirmation p[b-dcupug50b7] {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.next-step[b-dcupug50b7] {
    font-weight: 600;
    color: var(--color-text);
}

.join-button[b-dcupug50b7] {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: var(--radius-sm);
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-base);
    box-shadow: var(--shadow-lg);
}

.join-button:hover[b-dcupug50b7] {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(217, 119, 87, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .quiz-hero[b-dcupug50b7] {
        padding: var(--spacing-lg) 0;
    }

    .results-preview-grid[b-dcupug50b7] {
        grid-template-columns: 1fr;
    }

    .email-card[b-dcupug50b7] {
        padding: var(--spacing-md);
    }

    .question-card[b-dcupug50b7] {
        padding: var(--spacing-md);
    }

    .result-card[b-dcupug50b7] {
        padding: var(--spacing-md);
    }

    .option-label[b-dcupug50b7] {
        flex-direction: column;
        text-align: left;
    }
}
