/* /Components/Account/Pages/Login.razor.rz.scp.css */
/* ???????????????????????????????????????????????????????????????
   LOGIN PAGE STYLES
   ??????????????????????????????????????????????????????????????? */

.account-center-container[b-sa72j9macy] {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg) var(--spacing-sm);
    background: var(--surface-page);
    background-image:
        radial-gradient(900px 400px at 80% -10%, var(--accent-gold-soft), transparent 60%),
        radial-gradient(800px 500px at -10% 110%, rgba(35, 72, 106, 0.06), transparent 55%);
}

.account-login-card[b-sa72j9macy],
.account-register-card[b-sa72j9macy] {
    width: 100%;
    max-width: 480px;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: var(--surface-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

/* Decorative Top Border */
.account-login-card[b-sa72j9macy]::before,
.account-register-card[b-sa72j9macy]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--color-accent-orange) 0%,
        var(--color-accent-orange-hover) 50%,
        var(--color-primary) 100%
    );
}

/* Header */
.account-login-card h2[b-sa72j9macy],
.account-register-card h2[b-sa72j9macy] {
    text-align: center;
    color: var(--text-strong);
    font-family: var(--font-display);
    font-weight: 550;
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
    margin-top: var(--spacing-sm);
}

/* Form */
.account-login-card .form-group[b-sa72j9macy],
.account-register-card .form-group[b-sa72j9macy] {
    margin-bottom: var(--spacing-md);
}

.account-login-card .btn-primary[b-sa72j9macy],
.account-register-card .btn-primary[b-sa72j9macy] {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    margin-top: var(--spacing-sm);
}

/* Links Section */
.account-login-card .links[b-sa72j9macy],
.account-register-card .links[b-sa72j9macy] {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.account-login-card .links a[b-sa72j9macy],
.account-register-card .links a[b-sa72j9macy] {
    display: inline-block;
    margin: var(--spacing-xs) var(--spacing-sm);
    color: var(--color-accent-orange);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-base);
}

.account-login-card .links a:hover[b-sa72j9macy],
.account-register-card .links a:hover[b-sa72j9macy] {
    color: var(--color-accent-orange-hover);
}

/* Remember Me Checkbox */
.account-login-card .form-check[b-sa72j9macy],
.account-register-card .form-check[b-sa72j9macy] {
    margin: var(--spacing-md) 0;
}

/* Forgot Password */
.forgot-password-link[b-sa72j9macy] {
    float: right;
    font-size: 0.875rem;
}

/* Social Login Section */
.social-login[b-sa72j9macy] {
    margin-top: var(--spacing-lg);
    text-align: center;
}

.social-login .divider[b-sa72j9macy] {
    position: relative;
    margin: var(--spacing-lg) 0;
    text-align: center;
}

.social-login .divider[b-sa72j9macy]::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: var(--color-gray-200);
}

.social-login .divider span[b-sa72j9macy] {
    position: relative;
    padding: 0 var(--spacing-sm);
    background: var(--surface-card);
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Error Messages */
.login-error[b-sa72j9macy] {
    padding: var(--spacing-sm) var(--spacing-md);
    margin-bottom: var(--spacing-md);
    background: var(--tint-danger-bg);
    border: 1px solid var(--color-accent-red);
    border-radius: var(--radius-md);
    color: var(--tint-danger-text);
    font-weight: 500;
    text-align: center;
}

/* Responsive */
@media (max-width: 600px) {
    .account-center-container[b-sa72j9macy] {
        padding: var(--spacing-sm);
        min-height: 100vh;
    }
    
    .account-login-card[b-sa72j9macy],
    .account-register-card[b-sa72j9macy] {
        max-width: 95vw;
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .account-login-card h2[b-sa72j9macy],
    .account-register-card h2[b-sa72j9macy] {
        font-size: 1.75rem;
    }
}
/* /Components/Account/Pages/Register.razor.rz.scp.css */
/* ???????????????????????????????????????????????????????????????
   REGISTER PAGE STYLES
   ??????????????????????????????????????????????????????????????? */

/* Extends Login.razor.css styles */
.account-register-card[b-ndai6rxafw] {
    max-width: 600px;
}

/* Password Strength Indicator */
.password-strength[b-ndai6rxafw] {
    margin-top: var(--spacing-xs);
    height: 4px;
    border-radius: var(--radius-full);
    background: var(--color-gray-200);
    overflow: hidden;
}

.password-strength-bar[b-ndai6rxafw] {
    height: 100%;
    transition: all var(--transition-base);
    border-radius: var(--radius-full);
}

.password-strength-bar.weak[b-ndai6rxafw] {
    width: 33%;
    background: var(--color-accent-red);
}

.password-strength-bar.medium[b-ndai6rxafw] {
    width: 66%;
    background: var(--color-accent-orange);
}

.password-strength-bar.strong[b-ndai6rxafw] {
    width: 100%;
    background: var(--color-accent-green);
}

.password-requirements[b-ndai6rxafw] {
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: var(--color-gray-50);
    border-radius: var(--radius-md);
}

.password-requirements ul[b-ndai6rxafw] {
    margin: 0;
    padding-left: var(--spacing-lg);
    font-size: 0.875rem;
}

.password-requirements li[b-ndai6rxafw] {
    margin-bottom: var(--spacing-xs);
    color: var(--color-gray-600);
}

.password-requirements li.met[b-ndai6rxafw] {
    color: var(--color-accent-green);
}

.password-requirements li.met[b-ndai6rxafw]::marker {
    content: '? ';
}

/* Terms and Conditions */
.terms-checkbox[b-ndai6rxafw] {
    padding: var(--spacing-md);
    background: var(--color-gray-50);
    border-radius: var(--radius-md);
    margin: var(--spacing-md) 0;
}

.terms-checkbox .form-check-label[b-ndai6rxafw] {
    font-size: 0.875rem;
    line-height: 1.6;
}

.terms-checkbox .form-check-label a[b-ndai6rxafw] {
    color: var(--color-accent-orange);
    font-weight: 600;
}

/* Already Have Account */
.already-have-account[b-ndai6rxafw] {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    text-align: center;
    background: var(--tint-info-bg);
    border-radius: var(--radius-md);
}

.already-have-account a[b-ndai6rxafw] {
    font-weight: 600;
    font-size: 1rem;
}

/* Progress Steps (if multi-step registration) */
.registration-steps[b-ndai6rxafw] {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-xl);
    padding: 0 var(--spacing-sm);
}

.registration-step[b-ndai6rxafw] {
    flex: 1;
    text-align: center;
    position: relative;
}

.registration-step[b-ndai6rxafw]::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    right: -50%;
    height: 2px;
    background: var(--color-gray-200);
    z-index: -1;
}

.registration-step:last-child[b-ndai6rxafw]::before {
    display: none;
}

.registration-step-number[b-ndai6rxafw] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: var(--radius-full);
    background: var(--color-gray-200);
    color: var(--color-gray-600);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-xs);
}

.registration-step.active .registration-step-number[b-ndai6rxafw] {
    background: var(--color-accent-orange);
    color: var(--color-white);
}

.registration-step.completed .registration-step-number[b-ndai6rxafw] {
    background: var(--color-accent-green);
    color: var(--color-white);
}

.registration-step-label[b-ndai6rxafw] {
    display: block;
    font-size: 0.75rem;
    color: var(--color-gray-600);
}

.registration-step.active .registration-step-label[b-ndai6rxafw] {
    color: var(--color-primary);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 600px) {
    .account-register-card[b-ndai6rxafw] {
        max-width: 95vw;
    }
    
    .registration-steps[b-ndai6rxafw] {
        flex-wrap: wrap;
    }
    
    .registration-step[b-ndai6rxafw]::before {
        display: none;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* ───────────────────────────────────────────────────────────────
   MAIN LAYOUT STYLES — premium refresh, theme-aware
   The top bar and sidebar sit on brand navy in BOTH themes;
   the content area follows the semantic surface tokens.
   ─────────────────────────────────────────────────────────────── */

/* ─────────── TOP BAR ─────────── */
.top-bar[b-ibw1m0z86l] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--topbar-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--spacing-md) 0 var(--spacing-lg);
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-primary-dark) 100%
    );
    color: var(--on-brand);
    border-bottom: 1px solid var(--border-gold);
    box-shadow: var(--shadow-md);
    z-index: var(--z-fixed);
}

.top-bar-left[b-ibw1m0z86l] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    min-width: 0;
}

.top-bar .navbar-brand[b-ibw1m0z86l] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 550;
    letter-spacing: 0.04em;
    color: var(--on-brand);
    text-decoration: none;
    transition: all var(--transition-fast);
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-bar-actions[b-ibw1m0z86l] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.logo-box[b-ibw1m0z86l] {
    display: flex;
    align-items: center;
    padding: 0.3rem 0.5rem;
    background: #ffffff;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.logo-box:hover[b-ibw1m0z86l] {
    transform: scale(1.04);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.logo-box img[b-ibw1m0z86l] {
    height: 38px;
    width: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.top-bar .about-link[b-ibw1m0z86l] {
    padding: 0.45rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--on-brand);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.top-bar .about-link:hover[b-ibw1m0z86l] {
    background: var(--color-accent-orange);
    color: var(--color-primary-dark);
    border-color: var(--color-accent-orange);
    text-decoration: none;
}

.top-context-selectors[b-ibw1m0z86l] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    min-width: 0;
    max-width: min(72vw, 780px);
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.top-context-selectors[b-ibw1m0z86l]  .context-switcher {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.35rem;
    padding: 0.25rem 0.35rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0.7rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.top-context-selectors[b-ibw1m0z86l]  .cs-field {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-width: 0;
}

.top-context-selectors[b-ibw1m0z86l]  .cs-label {
    margin: 0;
    color: var(--on-brand-muted);
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
}

.top-context-selectors[b-ibw1m0z86l]  .context-refresh-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    height: 2rem;
    padding: 0 0.9rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    color: var(--color-primary-dark);
    background: var(--color-accent-orange);
    border: 1px solid var(--color-accent-orange);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
    transition: all var(--transition-fast);
}

.top-context-selectors[b-ibw1m0z86l]  .context-refresh-btn:hover {
    background: var(--color-accent-orange-hover);
    border-color: var(--color-accent-orange-hover);
    transform: translateY(-1px);
}

.top-context-selectors[b-ibw1m0z86l]  .context-refresh-btn:active {
    transform: translateY(0);
}

.top-context-selectors[b-ibw1m0z86l]  .form-select {
    flex: 0 0 auto;
    min-width: 0;
    width: clamp(104px, 11vw, 160px);
    height: 2rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 500;
    padding-top: 0.22rem;
    padding-bottom: 0.22rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.top-context-selectors[b-ibw1m0z86l]  .form-select:focus {
    border-color: var(--border-gold);
    box-shadow: 0 0 0 0.16rem var(--focus-ring);
}

.top-context-selectors[b-ibw1m0z86l]  .form-select:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.top-context-selectors[b-ibw1m0z86l]  .form-select option {
    color: #1f2a37;
    background: #fff;
}

@media (max-width: 1100px) {
    .top-bar .navbar-brand[b-ibw1m0z86l] {
        font-size: 1.1rem;
    }

    .top-context-selectors[b-ibw1m0z86l] {
        gap: 0.35rem;
        max-width: min(68vw, 560px);
    }

    .top-context-selectors[b-ibw1m0z86l]  .form-select {
        width: clamp(92px, 11vw, 140px);
        font-size: 0.78rem;
    }

    /* Icon-only refresh: three selects need the room */
    .top-context-selectors[b-ibw1m0z86l]  .refresh-text {
        display: none;
    }

    .top-context-selectors[b-ibw1m0z86l]  .context-refresh-btn {
        padding: 0 0.55rem;
    }
}

@media (max-width: 900px) {
    .logo-box[b-ibw1m0z86l] {
        display: none;
    }

    .top-bar[b-ibw1m0z86l] {
        padding: 0 0.6rem;
    }

    .top-bar-actions[b-ibw1m0z86l] {
        gap: 0.4rem;
    }

    .top-context-selectors[b-ibw1m0z86l]  .form-select {
        height: 1.9rem;
    }
}

/* ─────────── PAGE STRUCTURE ─────────── */
.page[b-ibw1m0z86l] {
    display: flex;
    height: calc(100vh - var(--topbar-height));
    margin-top: var(--topbar-height);
    overflow: hidden;
}

/* Backdrop behind the mobile nav drawer (visible only while open, ≤900px) */
.drawer-backdrop[b-ibw1m0z86l] {
    display: none;
}

/* Org/site switcher inside the drawer (phones only) */
.drawer-context[b-ibw1m0z86l] {
    display: none;
}

/* ─────────── SIDEBAR ─────────── */
.sidebar-wrapper[b-ibw1m0z86l] {
    display: flex;
    height: 100%;
    position: relative;
}

.sidebar[b-ibw1m0z86l] {
    width: var(--sidebar-width);
    min-width: var(--sidebar-width);
    height: 100%;
    background: linear-gradient(
        180deg,
        var(--color-primary) 0%,
        var(--color-primary-dark) 100%
    );
    color: var(--on-brand);
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.12);
    overflow-y: auto;
}

.sidebar-accent[b-ibw1m0z86l] {
    width: var(--accent-strip-width);
    min-width: var(--accent-strip-width);
    background: linear-gradient(
        180deg,
        var(--color-accent-orange) 0%,
        var(--color-accent-orange-hover) 100%
    );
}

/* ─────────── MAIN CONTENT ─────────── */
main[b-ibw1m0z86l] {
    flex: 1;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--surface-page);
    background-image:
        radial-gradient(1200px 500px at 85% -10%, var(--accent-gold-soft), transparent 60%),
        radial-gradient(1000px 600px at -10% 110%, rgba(35, 72, 106, 0.06), transparent 55%);
    max-width: 100%;
    box-sizing: border-box;
    transition: background-color var(--transition-slow);
}

.content[b-ibw1m0z86l] {
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    padding: var(--spacing-lg) var(--spacing-xl);
    background: var(--surface-content);
    backdrop-filter: blur(10px);
    overflow-x: hidden;
    box-sizing: border-box;
}

/* ─────────── RESPONSIVE ─────────── */
@media (max-width: 992px) {
    .top-bar[b-ibw1m0z86l] {
        padding: 0 var(--spacing-md);
    }

    .top-bar .navbar-brand[b-ibw1m0z86l] {
        font-size: 1.2rem;
        gap: 0.5rem;
    }

    .logo-box img[b-ibw1m0z86l] {
        height: 42px;
    }

    .content[b-ibw1m0z86l] {
        padding: var(--spacing-md);
    }
}

@media (max-width: 600px) {
    .top-bar[b-ibw1m0z86l] {
        padding: 0 var(--spacing-sm);
    }

    .top-bar .navbar-brand[b-ibw1m0z86l] {
        font-size: 1rem;
    }

    .logo-box img[b-ibw1m0z86l] {
        height: 36px;
    }

    .top-bar .about-link[b-ibw1m0z86l] {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .content[b-ibw1m0z86l] {
        padding: var(--spacing-sm);
    }
}

/* ───────────────────────────────────────────────────────────────
   MOBILE NAV DRAWER (must stay AFTER the base .sidebar/.drawer
   rules — equal specificity, so source order decides)
   ─────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    /* Off-canvas nav drawer (opened via body.drawer-open, see ui.js) */
    .sidebar-wrapper[b-ibw1m0z86l] {
        position: fixed;
        left: 0;
        top: var(--topbar-height);
        height: calc(100vh - var(--topbar-height));
        transform: translateX(-100%);
        transition: transform var(--transition-slow);
        z-index: var(--z-sticky);
        box-shadow: 8px 0 32px rgba(0, 0, 0, 0.35);
    }

    body.drawer-open .sidebar-wrapper[b-ibw1m0z86l] {
        transform: translateX(0);
    }

    /* --sidebar-width is 0 at this width (for the flex layout math), so the
       drawer needs an explicit width or it would slide in invisible. */
    .sidebar[b-ibw1m0z86l] {
        width: min(84vw, 324px);
        min-width: 0;
    }

    .drawer-backdrop[b-ibw1m0z86l] {
        display: block;
        position: fixed;
        inset: var(--topbar-height) 0 0 0;
        background: rgba(10, 18, 28, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition-slow);
        z-index: calc(var(--z-sticky) - 10);
        overscroll-behavior: contain;
        touch-action: none;
    }

    body.drawer-open .drawer-backdrop[b-ibw1m0z86l] {
        opacity: 1;
        pointer-events: auto;
    }
}

/* ── Phones: switcher moves from the top bar into the drawer ── */
@media (max-width: 700px) {
    .top-context-selectors[b-ibw1m0z86l] {
        display: none;
    }

    .drawer-context[b-ibw1m0z86l] {
        display: block;
        padding: var(--spacing-sm);
        border-bottom: 1px solid rgba(226, 172, 75, 0.18);
        background: rgba(255, 255, 255, 0.03);
    }

    .drawer-context[b-ibw1m0z86l]  .context-switcher {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .drawer-context[b-ibw1m0z86l]  .cs-field {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
        min-width: 0;
    }

    .drawer-context[b-ibw1m0z86l]  .cs-label {
        margin: 0;
        color: var(--on-brand-muted);
        font-size: 0.7rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .drawer-context[b-ibw1m0z86l]  .form-select {
        width: 100%;
        border-radius: 0.5rem;
        border: 1px solid rgba(255, 255, 255, 0.22);
        background: rgba(255, 255, 255, 0.12);
        color: #ffffff;
        font-size: 0.9rem;
        padding: 0.4rem 0.6rem;
    }

    .drawer-context[b-ibw1m0z86l]  .form-select option {
        color: #1f2a37;
        background: #fff;
    }

    .drawer-context[b-ibw1m0z86l]  .context-refresh-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.35rem;
        width: 100%;
        padding: 0.5rem 0.9rem;
        border-radius: 0.5rem;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--color-primary-dark);
        background: var(--color-accent-orange);
        border: 1px solid var(--color-accent-orange);
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* ============================================================
   NAVIGATION MENU — premium refresh
   Version: 5.0
   The nav sits on brand navy in BOTH themes, so it uses the
   brand constants + on-brand tokens (not surface tokens).
   ============================================================ */

/* NAV MENU CONTAINER */
.nav-menu[b-7atqyfuolu] {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: linear-gradient(
        180deg,
        var(--color-primary) 0%,
        var(--color-primary-dark) 100%
    );
    position: relative;
    overflow: hidden;
}

/* ============================================================
USER PROFILE SECTION (Logged In)
============================================================ */
.nav-user-section[b-7atqyfuolu] {
    position: relative;
    z-index: 1;
    padding: var(--spacing-sm);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--spacing-sm);
    border-bottom: 1px solid rgba(226, 172, 75, 0.18);
    background: rgba(255, 255, 255, 0.03);
}

.nav-user-avatar-container[b-7atqyfuolu] {
    position: relative;
}

.nav-user-avatar[b-7atqyfuolu] {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: linear-gradient(
        135deg,
        var(--color-accent-orange) 0%,
        var(--color-accent-orange-hover) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.avatar-placeholder[b-7atqyfuolu] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

/* Online Status Indicator */
.user-status-indicator[b-7atqyfuolu] {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: var(--color-accent-green);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-full);
}

.nav-user-info[b-7atqyfuolu] {
    flex: 1;
    min-width: 0;
}

.nav-user-name[b-7atqyfuolu] {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--on-brand);
    margin-bottom: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-user-role[b-7atqyfuolu] {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent-orange);
    background: rgba(226, 172, 75, 0.12);
    border: 1px solid rgba(226, 172, 75, 0.35);
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-full);
}

/* ============================================================
GUEST SECTION (Not Logged In)
============================================================ */
.nav-guest-section[b-7atqyfuolu] {
    position: relative;
    z-index: 1;
    padding: var(--spacing-sm);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--spacing-sm);
    border-bottom: 1px solid rgba(226, 172, 75, 0.18);
    background: rgba(255, 255, 255, 0.03);
}

.guest-icon[b-7atqyfuolu] {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--on-brand-faint);
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
}

.guest-text[b-7atqyfuolu] {
    flex: 1;
    min-width: 0;
}

.guest-title[b-7atqyfuolu] {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--on-brand);
    margin-bottom: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.guest-subtitle[b-7atqyfuolu] {
    font-size: 0.7rem;
    color: var(--on-brand-faint);
}

/* ============================================================
NAVIGATION ITEMS
============================================================ */
.nav-menu-items[b-7atqyfuolu] {
    position: relative;
    z-index: 1;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: var(--spacing-sm) var(--spacing-xs);
}

/* Custom Scrollbar */
.nav-menu-items[b-7atqyfuolu]::-webkit-scrollbar {
    width: 6px;
}

.nav-menu-items[b-7atqyfuolu]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.nav-menu-items[b-7atqyfuolu]::-webkit-scrollbar-thumb {
    background: rgba(226, 172, 75, 0.4);
    border-radius: 3px;
}

.nav-menu-items[b-7atqyfuolu]::-webkit-scrollbar-thumb:hover {
    background: rgba(226, 172, 75, 0.6);
}

/* NAV SECTIONS */
.nav-section[b-7atqyfuolu] {
    margin-bottom: var(--spacing-sm);
}

.nav-section-title[b-7atqyfuolu] {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(226, 172, 75, 0.85);
    padding: 0.6rem var(--spacing-sm);
    margin-bottom: 0.25rem;
    margin-top: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xs);
    position: relative;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    border-radius: var(--radius-md);
}

.nav-section-title:hover[b-7atqyfuolu] {
    background: rgba(226, 172, 75, 0.08);
    color: var(--color-accent-orange);
}

.nav-section-title.expanded[b-7atqyfuolu] {
    color: var(--color-accent-orange);
    background: rgba(226, 172, 75, 0.10);
    border-color: rgba(226, 172, 75, 0.25);
}

.section-title-text[b-7atqyfuolu] {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.section-title-text[b-7atqyfuolu]::before {
    content: '';
    display: block;
    width: 3px;
    height: 10px;
    background: linear-gradient(
        180deg,
        var(--color-accent-orange) 0%,
        var(--color-accent-orange-hover) 100%
    );
    border-radius: 2px;
}

.section-toggle-icon[b-7atqyfuolu] {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--color-accent-orange);
    transition: transform 0.3s ease;
}

/* Section Content - Collapsible */
.nav-section-content[b-7atqyfuolu] {
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease,
                margin 0.3s ease;
    background: rgba(0, 0, 0, 0.12);
    border-radius: var(--radius-md);
    border-left: 2px solid transparent;
}

.nav-section-content.collapsed[b-7atqyfuolu] {
    max-height: 0;
    opacity: 0;
    margin: 0;
    border-left-color: transparent;
}

.nav-section-content.expanded[b-7atqyfuolu] {
    max-height: 1000px;
    opacity: 1;
    margin-bottom: 0.5rem;
    padding: 0.35rem;
    border-left-color: rgba(226, 172, 75, 0.3);
}

/* NAV ITEMS & LINKS */
.nav-item[b-7atqyfuolu] {
    margin-bottom: 0.2rem;
    list-style: none;
    width: 100%;
}

.nav-link[b-7atqyfuolu] {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: baseline !important;
    gap: 0.65rem;
    padding: 0.55rem var(--spacing-sm);
    color: var(--on-brand-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: var(--radius-md);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    width: 100%;
    min-height: 36px;
}

/* Gold accent bar, revealed on hover/active */
.nav-link[b-7atqyfuolu]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(
        180deg,
        var(--color-accent-orange) 0%,
        var(--color-accent-orange-hover) 100%
    );
    transform: scaleY(0);
    transition: transform 0.25s ease;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.nav-link:hover[b-7atqyfuolu] {
    background: rgba(255, 255, 255, 0.06);
    color: var(--on-brand);
    border-color: rgba(226, 172, 75, 0.20);
}

.nav-link:hover[b-7atqyfuolu]::before {
    transform: scaleY(1);
}

/* Active State */
.nav-link.active[b-7atqyfuolu] {
    background: linear-gradient(
        90deg,
        rgba(226, 172, 75, 0.18) 0%,
        rgba(226, 172, 75, 0.08) 80%,
        transparent 100%
    );
    color: var(--on-brand);
    font-weight: 600;
    border-color: rgba(226, 172, 75, 0.38);
}

.nav-link.active[b-7atqyfuolu]::before {
    transform: scaleY(1);
}

.nav-link.active .nav-icon[b-7atqyfuolu] {
    color: var(--color-accent-orange);
}

.nav-link.active .nav-text[b-7atqyfuolu] {
    color: var(--on-brand);
}

/* NAV ICONS */
.nav-icon[b-7atqyfuolu] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    min-width: 26px;
    min-height: 26px;
    font-size: 1.05rem;
    flex-shrink: 0;
    flex-grow: 0;
    transition: color 0.25s ease;
    position: relative;
    z-index: 1;
    line-height: 1;
    align-self: flex-start;
    margin-top: -2px;
}

.nav-icon i[b-7atqyfuolu] {
    display: block;
    line-height: 1;
}

/* NAV TEXT */
.nav-text[b-7atqyfuolu] {
    flex: 1 1 auto;
    position: relative;
    z-index: 1;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    line-height: 1.5;
}

/* NAV BADGE */
.nav-badge[b-7atqyfuolu] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    padding: 0.2rem 0.45rem;
    border-radius: var(--radius-full);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    white-space: nowrap;
    line-height: 1;
    align-self: center;
}

/* NAV INDICATOR (ARROW) */
.nav-indicator[b-7atqyfuolu] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
    color: var(--color-accent-orange);
    flex-shrink: 0;
    line-height: 1;
    align-self: center;
}

.nav-link:hover .nav-indicator[b-7atqyfuolu],
.nav-link.active .nav-indicator[b-7atqyfuolu] {
    opacity: 1;
    transform: translateX(0);
}

/* Focus State for Accessibility */
.nav-link:focus-visible[b-7atqyfuolu] {
    outline: 2px solid var(--color-accent-orange);
    outline-offset: 2px;
}

/* SPECIAL LINK STYLES */
.nav-link-register[b-7atqyfuolu] {
    border: 1px solid rgba(63, 169, 108, 0.4);
    background: rgba(63, 169, 108, 0.06);
}

.nav-link-register:hover[b-7atqyfuolu] {
    background: rgba(63, 169, 108, 0.16);
    border-color: var(--color-accent-green);
}

.nav-link-login[b-7atqyfuolu] {
    border: 1px solid rgba(226, 172, 75, 0.4);
    background: rgba(226, 172, 75, 0.06);
}

.nav-link-login:hover[b-7atqyfuolu] {
    background: rgba(226, 172, 75, 0.16);
    border-color: var(--color-accent-orange);
}

/* ============================================================
FOOTER SECTION (Logout & Version)
============================================================ */
.nav-footer[b-7atqyfuolu] {
    position: relative;
    z-index: 1;
    padding: var(--spacing-sm);
    border-top: 1px solid rgba(226, 172, 75, 0.20);
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.12) 100%
    );
}

.logout-form[b-7atqyfuolu] {
    margin-bottom: 0.5rem;
}

.nav-logout-button[b-7atqyfuolu] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.65rem var(--spacing-sm);
    background: transparent;
    color: var(--on-brand-muted);
    border: 1px solid rgba(204, 75, 75, 0.55);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.nav-logout-button:hover[b-7atqyfuolu] {
    background: var(--color-accent-red);
    border-color: var(--color-accent-red);
    color: #ffffff;
}

.nav-logout-button:active[b-7atqyfuolu] {
    transform: translateY(1px);
}

.logout-icon[b-7atqyfuolu] {
    font-size: 1rem;
}

.nav-footer-info[b-7atqyfuolu] {
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.app-version[b-7atqyfuolu] {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.7rem;
    color: var(--on-brand-faint);
}

.app-version i[b-7atqyfuolu] {
    font-size: 0.875rem;
}

/* ============================================================
RESPONSIVE DESIGN
============================================================ */
@media (max-width: 992px) {
    .nav-user-avatar[b-7atqyfuolu] {
        width: 70px;
        height: 70px;
    }

    .avatar-placeholder[b-7atqyfuolu] {
        font-size: 1.75rem;
    }

    .nav-user-name[b-7atqyfuolu] {
        font-size: 1rem;
    }

    .nav-link[b-7atqyfuolu] {
        font-size: 0.9rem;
        padding: 0.75rem var(--spacing-sm);
    }
}

@media (max-width: 600px) {
    .nav-user-section[b-7atqyfuolu],
    .nav-guest-section[b-7atqyfuolu] {
        padding: var(--spacing-md);
    }

    .nav-user-avatar[b-7atqyfuolu],
    .guest-icon[b-7atqyfuolu] {
        width: 60px;
        height: 60px;
    }

    .avatar-placeholder[b-7atqyfuolu] {
        font-size: 1.5rem;
    }

    .guest-icon[b-7atqyfuolu] {
        font-size: 3rem;
    }

    .nav-user-name[b-7atqyfuolu],
    .guest-title[b-7atqyfuolu] {
        font-size: 0.95rem;
    }

    .nav-user-role[b-7atqyfuolu] {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }

    .nav-menu-items[b-7atqyfuolu] {
        padding: var(--spacing-sm);
    }

    .nav-link[b-7atqyfuolu] {
        font-size: 0.875rem;
        padding: 0.75rem var(--spacing-sm);
    }

    .nav-icon[b-7atqyfuolu] {
        width: 24px;
        height: 24px;
        font-size: 1.125rem;
    }

    .nav-logout-button[b-7atqyfuolu] {
        padding: 0.75rem var(--spacing-sm);
        font-size: 0.875rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *[b-7atqyfuolu],
    *[b-7atqyfuolu]::before,
    *[b-7atqyfuolu]::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Standalone always-visible nav item (outside collapsible sections) */
.nav-item-standalone[b-7atqyfuolu] {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-subtle);
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* ============================================================
   HOME PAGE — premium refresh, theme-aware
   Version: 5.0
   ============================================================ */

/* WELCOME PAGE CONTAINER */
.welcome-page[b-tnio8v3j8f] {
    width: 100%;
    max-width: 1600px;
    padding: 0;
    background: transparent;
}

/* ============================================================
HERO SECTION
============================================================ */
.hero-section[b-tnio8v3j8f] {
    padding: 4rem 3rem;
    background: var(--surface-card-translucent);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-xl);
    border: 1px solid var(--border-gold);
    position: relative;
    overflow: hidden;
}

.hero-section[b-tnio8v3j8f]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--color-accent-orange) 0%,
        var(--color-accent-orange-hover) 50%,
        var(--color-primary) 100%
    );
}

.hero-content[b-tnio8v3j8f] {
    position: relative;
    z-index: 1;
}

.logo-container[b-tnio8v3j8f] {
    margin-bottom: var(--spacing-lg);
    animation: fadeInDown-b-tnio8v3j8f 0.8s ease-out;
}

.hero-logo[b-tnio8v3j8f] {
    height: 160px;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.12));
    transition: transform 0.4s ease;
}

/* The logo artwork is navy-on-transparent; give it a light backing on dark */
html[data-theme="dark"] .hero-logo[b-tnio8v3j8f] {
    background: #ffffff;
    padding: 0.9rem 1.4rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero-logo:hover[b-tnio8v3j8f] {
    transform: scale(1.03);
}

@keyframes fadeInDown-b-tnio8v3j8f {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title[b-tnio8v3j8f] {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 550;
    letter-spacing: 0.01em;
    color: var(--text-strong);
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
    animation: fadeInUp-b-tnio8v3j8f 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp-b-tnio8v3j8f {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle[b-tnio8v3j8f] {
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: var(--spacing-xl);
    max-width: 800px;
    animation: fadeInUp-b-tnio8v3j8f 0.8s ease-out 0.4s both;
}

.hero-subtitle .highlight[b-tnio8v3j8f] {
    color: var(--color-accent-orange-hover);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

html[data-theme="dark"] .hero-subtitle .highlight[b-tnio8v3j8f] {
    color: var(--color-accent-orange);
}

.hero-subtitle .highlight[b-tnio8v3j8f]::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-accent-orange);
    opacity: 0.3;
    border-radius: 2px;
}

.hero-actions[b-tnio8v3j8f] {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    animation: fadeInUp-b-tnio8v3j8f 0.8s ease-out 0.6s both;
}

/* ============================================================
STATS SECTION
============================================================ */
.stats-section[b-tnio8v3j8f] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    padding: 12px;
    overflow: visible;
    animation: fadeInUp-b-tnio8v3j8f 0.8s ease-out 0.8s both;
}

.stat-card[b-tnio8v3j8f] {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--surface-card-translucent);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover[b-tnio8v3j8f] {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-gold);
    z-index: 10;
}

.stat-icon[b-tnio8v3j8f] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    font-size: 2rem;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.stat-icon-green[b-tnio8v3j8f] {
    background: linear-gradient(
        135deg,
        var(--color-accent-green) 0%,
        var(--color-accent-green-hover) 100%
    );
}

.stat-icon-orange[b-tnio8v3j8f] {
    background: linear-gradient(
        135deg,
        var(--color-accent-orange) 0%,
        var(--color-accent-orange-hover) 100%
    );
    color: var(--color-primary-dark);
}

.stat-icon-blue[b-tnio8v3j8f] {
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-primary-light) 100%
    );
}

.stat-icon-red[b-tnio8v3j8f] {
    background: linear-gradient(
        135deg,
        var(--color-accent-red) 0%,
        var(--color-accent-red-hover) 100%
    );
}

.stat-content[b-tnio8v3j8f] {
    flex: 1;
}

.stat-number[b-tnio8v3j8f] {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-strong);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.stat-label[b-tnio8v3j8f] {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ============================================================
CONTENT SECTIONS
============================================================ */
.section[b-tnio8v3j8f] {
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    background: var(--surface-card-translucent);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    animation: fadeInUp-b-tnio8v3j8f 0.6s ease-out both;
}

.section:hover[b-tnio8v3j8f] {
    box-shadow: var(--shadow-md);
}

.section-green[b-tnio8v3j8f] {
    border-left: 4px solid var(--color-accent-green);
}

.section-blue[b-tnio8v3j8f] {
    border-left: 4px solid var(--color-primary-light);
}

.section-header[b-tnio8v3j8f] {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.section-header h2[b-tnio8v3j8f] {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 550;
    color: var(--text-strong);
    margin: 0;
}

.accent-bar[b-tnio8v3j8f] {
    display: inline-block;
    width: 5px;
    height: 40px;
    background: linear-gradient(
        180deg,
        var(--color-accent-orange) 0%,
        var(--color-accent-orange-hover) 100%
    );
    border-radius: 3px;
}

.section-text[b-tnio8v3j8f] {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-body);
}

.section-text strong[b-tnio8v3j8f] {
    color: var(--text-strong);
    font-weight: 700;
}

/* ============================================================
FEATURES SECTION
============================================================ */
.features-section[b-tnio8v3j8f] {
    margin: var(--spacing-xl) 0;
    animation: fadeInUp-b-tnio8v3j8f 0.6s ease-out 0.4s both;
}

.section-intro[b-tnio8v3j8f] {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-xl);
    font-weight: 500;
}

.feature-grid[b-tnio8v3j8f] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    padding: 12px;
    overflow: visible;
}

.feature-card[b-tnio8v3j8f] {
    display: flex;
    flex-direction: column;
    padding: var(--spacing-lg);
    background: var(--surface-card-translucent);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card[b-tnio8v3j8f]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--color-accent-orange) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover[b-tnio8v3j8f]::before {
    opacity: 1;
}

.feature-card:hover[b-tnio8v3j8f] {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-gold);
    z-index: 10;
}

.feature-icon-wrapper[b-tnio8v3j8f] {
    margin-bottom: var(--spacing-md);
}

.feature-icon[b-tnio8v3j8f] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    font-size: 1.75rem;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon[b-tnio8v3j8f] {
    transform: scale(1.08);
}

.feature-icon-green[b-tnio8v3j8f] {
    background: linear-gradient(
        135deg,
        var(--color-accent-green) 0%,
        var(--color-accent-green-hover) 100%
    );
}

.feature-icon-orange[b-tnio8v3j8f] {
    background: linear-gradient(
        135deg,
        var(--color-accent-orange) 0%,
        var(--color-accent-orange-hover) 100%
    );
    color: var(--color-primary-dark);
}

.feature-icon-red[b-tnio8v3j8f] {
    background: linear-gradient(
        135deg,
        var(--color-accent-red) 0%,
        var(--color-accent-red-hover) 100%
    );
}

.feature-title[b-tnio8v3j8f] {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-strong);
    margin-bottom: var(--spacing-sm);
}

.feature-description[b-tnio8v3j8f] {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-body);
    margin: 0;
}

/* ============================================================
BENEFITS GRID
============================================================ */
.benefits-grid[b-tnio8v3j8f] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    padding: 8px;
    overflow: visible;
}

.benefit-item[b-tnio8v3j8f] {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--surface-raised);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.benefit-item:hover[b-tnio8v3j8f] {
    background: var(--surface-hover);
    border-color: var(--border-gold);
    transform: translateX(6px);
}

.benefit-item i[b-tnio8v3j8f] {
    font-size: 1.5rem;
    color: var(--color-accent-green);
    flex-shrink: 0;
}

.benefit-item span[b-tnio8v3j8f] {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-body);
}

/* ============================================================
CTA SECTION
============================================================ */
.cta-section[b-tnio8v3j8f] {
    margin-top: var(--spacing-xl);
    padding: 4rem 3rem;
    text-align: center;
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-primary-dark) 100%
    );
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    animation: fadeInUp-b-tnio8v3j8f 0.6s ease-out 0.6s both;
}

.cta-section[b-tnio8v3j8f]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(226, 172, 75, 0.12) 0%,
        transparent 70%
    );
}

.cta-content[b-tnio8v3j8f] {
    position: relative;
    z-index: 1;
}

.cta-title[b-tnio8v3j8f] {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 550;
    color: #ffffff;
    margin-bottom: var(--spacing-md);
}

.cta-subtitle[b-tnio8v3j8f] {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons[b-tnio8v3j8f] {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.cta-buttons .btn-outline-secondary[b-tnio8v3j8f] {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.45);
    color: #ffffff;
}

.cta-buttons .btn-outline-secondary:hover[b-tnio8v3j8f] {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--color-primary);
}

/* ============================================================
RESPONSIVE DESIGN
============================================================ */
@media (max-width: 992px) {
    .hero-section[b-tnio8v3j8f] {
        padding: 3rem 2rem;
    }

    .hero-title[b-tnio8v3j8f] {
        font-size: 2.75rem;
    }

    .hero-subtitle[b-tnio8v3j8f] {
        font-size: 1.25rem;
    }

    .hero-logo[b-tnio8v3j8f] {
        height: 120px;
    }

    .feature-grid[b-tnio8v3j8f] {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .cta-section[b-tnio8v3j8f] {
        padding: 3rem 2rem;
    }

    .cta-title[b-tnio8v3j8f] {
        font-size: 2rem;
    }

    .cta-subtitle[b-tnio8v3j8f] {
        font-size: 1.125rem;
    }
}

@media (max-width: 600px) {
    .hero-section[b-tnio8v3j8f] {
        padding: 2rem 1.5rem;
    }

    .hero-title[b-tnio8v3j8f] {
        font-size: 2rem;
    }

    .hero-subtitle[b-tnio8v3j8f] {
        font-size: 1.125rem;
    }

    .hero-logo[b-tnio8v3j8f] {
        height: 100px;
    }

    .hero-actions[b-tnio8v3j8f] {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn[b-tnio8v3j8f] {
        width: 100%;
        justify-content: center;
    }

    .stats-section[b-tnio8v3j8f] {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: var(--spacing-sm);
    }

    .stat-card[b-tnio8v3j8f] {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-md);
    }

    .stat-icon[b-tnio8v3j8f] {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }

    .stat-number[b-tnio8v3j8f] {
        font-size: 2rem;
    }

    .stat-label[b-tnio8v3j8f] {
        font-size: 0.75rem;
    }

    .feature-grid[b-tnio8v3j8f] {
        grid-template-columns: 1fr;
    }

    .benefits-grid[b-tnio8v3j8f] {
        grid-template-columns: 1fr;
    }

    .section[b-tnio8v3j8f] {
        padding: var(--spacing-lg);
    }

    .section-header h2[b-tnio8v3j8f] {
        font-size: 1.5rem;
    }

    .cta-section[b-tnio8v3j8f] {
        padding: 2rem 1.5rem;
    }

    .cta-title[b-tnio8v3j8f] {
        font-size: 1.75rem;
    }

    .cta-subtitle[b-tnio8v3j8f] {
        font-size: 1rem;
    }

    .cta-buttons[b-tnio8v3j8f] {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn[b-tnio8v3j8f] {
        width: 100%;
    }
}

/* Stagger animations for feature cards */
.feature-card:nth-child(1)[b-tnio8v3j8f] { animation: fadeInUp-b-tnio8v3j8f 0.6s ease-out 0.1s both; }
.feature-card:nth-child(2)[b-tnio8v3j8f] { animation: fadeInUp-b-tnio8v3j8f 0.6s ease-out 0.2s both; }
.feature-card:nth-child(3)[b-tnio8v3j8f] { animation: fadeInUp-b-tnio8v3j8f 0.6s ease-out 0.3s both; }
.feature-card:nth-child(4)[b-tnio8v3j8f] { animation: fadeInUp-b-tnio8v3j8f 0.6s ease-out 0.4s both; }
.feature-card:nth-child(5)[b-tnio8v3j8f] { animation: fadeInUp-b-tnio8v3j8f 0.6s ease-out 0.5s both; }
.feature-card:nth-child(6)[b-tnio8v3j8f] { animation: fadeInUp-b-tnio8v3j8f 0.6s ease-out 0.6s both; }
.feature-card:nth-child(7)[b-tnio8v3j8f] { animation: fadeInUp-b-tnio8v3j8f 0.6s ease-out 0.7s both; }
.feature-card:nth-child(8)[b-tnio8v3j8f] { animation: fadeInUp-b-tnio8v3j8f 0.6s ease-out 0.8s both; }

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *[b-tnio8v3j8f] {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Public footer with legal links (Payfast site-compliance: visible T&Cs + contact) */
.site-footer[b-tnio8v3j8f] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1.25rem 2rem;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.site-footer nav[b-tnio8v3j8f] {
    display: flex;
    gap: 1.25rem;
}

.site-footer a[b-tnio8v3j8f] {
    color: var(--link-color);
    text-decoration: none;
}

.site-footer a:hover[b-tnio8v3j8f] {
    text-decoration: underline;
}
