/* /Components/Layout/AdminLayout.razor.rz.scp.css */
.admin-layout[b-z5txzt9e20] {
    display: flex;
    min-height: 100vh;
    background: var(--msw-bg-primary);
}

.admin-sidebar[b-z5txzt9e20] {
    width: 250px;
    background: var(--msw-bg-secondary);
    border-right: 1px solid var(--msw-glass-border);
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1rem;
    flex-shrink: 0;
}

.admin-logo[b-z5txzt9e20] {
    display: block;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

.admin-logo img[b-z5txzt9e20] {
    height: 40px;
    width: auto;
}

.admin-nav[b-z5txzt9e20] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.admin-nav-link[b-z5txzt9e20] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    color: var(--msw-text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: var(--msw-radius-sm);
    transition: all 0.2s;
}

.admin-nav-link:hover[b-z5txzt9e20] {
    background: var(--msw-cyan-muted);
    color: var(--msw-cyan);
}

.admin-logout[b-z5txzt9e20] {
    margin-top: auto;
    border-top: 1px solid var(--msw-glass-border);
    padding-top: 1rem;
}

.admin-main[b-z5txzt9e20] {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .admin-layout[b-z5txzt9e20] { flex-direction: column; }
    .admin-sidebar[b-z5txzt9e20] { width: 100%; flex-direction: row; padding: 0.5rem; overflow-x: auto; }
    .admin-nav[b-z5txzt9e20] { flex-direction: row; }
    .admin-logo[b-z5txzt9e20] { margin-bottom: 0; margin-right: 1rem; }
    .admin-logout[b-z5txzt9e20] { margin-top: 0; border-top: none; border-left: 1px solid var(--msw-glass-border); padding-top: 0; padding-left: 1rem; }
}
/* /Components/Layout/Footer.razor.rz.scp.css */
.msw-footer[b-q2txowajyq] {
    position: relative;
    background: var(--msw-bg-secondary);
    border-top: 1px solid var(--msw-glass-border);
    padding: 4rem 0 0;
    overflow: hidden;
}

.footer-glow[b-q2txowajyq] {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.footer-container[b-q2txowajyq] {
    max-width: var(--msw-container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid[b-q2txowajyq] {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand p[b-q2txowajyq] {
    color: var(--msw-text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 1rem;
    max-width: 300px;
}

.footer-logo[b-q2txowajyq] {
    height: 75px;
    width: auto;
}

.footer-social[b-q2txowajyq] {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a[b-q2txowajyq] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--msw-radius-sm);
    border: 1px solid var(--msw-glass-border);
    color: var(--msw-text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social a:hover[b-q2txowajyq] {
    color: var(--msw-cyan);
    border-color: var(--msw-cyan);
    background: var(--msw-cyan-muted);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.15);
}

.footer-links h4[b-q2txowajyq] {
    font-family: var(--msw-font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--msw-text-primary);
    margin-bottom: 1.25rem;
}

.footer-links a[b-q2txowajyq],
.footer-links p[b-q2txowajyq] {
    display: block;
    color: var(--msw-text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.footer-links a:hover[b-q2txowajyq] {
    color: var(--msw-cyan);
}

.footer-bottom[b-q2txowajyq] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-top: 1px solid var(--msw-glass-border);
    font-size: 0.8rem;
    color: var(--msw-text-muted);
}

.footer-legal[b-q2txowajyq] {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a[b-q2txowajyq] {
    color: var(--msw-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover[b-q2txowajyq] {
    color: var(--msw-cyan);
}

@media (max-width: 768px) {
    .footer-grid[b-q2txowajyq] {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand[b-q2txowajyq] {
        grid-column: 1 / -1;
    }

    .footer-bottom[b-q2txowajyq] {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-grid[b-q2txowajyq] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.msw-site[b-s3xod8a9ir] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.msw-main[b-s3xod8a9ir] {
    flex: 1;
}

#blazor-error-ui[b-s3xod8a9ir] {
    background: var(--msw-coral, #ff6b6b);
    color: white;
    bottom: 0;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.3);
    display: none;
    left: 0;
    padding: 0.75rem 1.5rem;
    position: fixed;
    width: 100%;
    z-index: 9999;
    font-family: var(--msw-font-body);
    font-size: 0.875rem;
}

#blazor-error-ui .dismiss[b-s3xod8a9ir] {
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 0.5rem;
}

#blazor-error-ui .reload[b-s3xod8a9ir] {
    color: white;
    text-decoration: underline;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.msw-header[b-3bga4rc8vp] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.msw-header.scrolled[b-3bga4rc8vp] {
    background: var(--msw-glass-bg);
    backdrop-filter: var(--msw-glass-blur);
    -webkit-backdrop-filter: var(--msw-glass-blur);
    border-bottom: 1px solid var(--msw-glass-border);
    padding: 0.5rem 0;
}

.msw-nav[b-3bga4rc8vp] {
    max-width: var(--msw-container-wide);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.msw-logo[b-3bga4rc8vp] {
    text-decoration: none;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.msw-logo-img[b-3bga4rc8vp] {
    height: 140px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.msw-nav-links[b-3bga4rc8vp] {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
}

[b-3bga4rc8vp] .nav-link {
    text-decoration: none;
    color: var(--msw-text-secondary);
    font-family: var(--msw-font-body);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--msw-radius-sm);
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

[b-3bga4rc8vp] .nav-link:hover,
[b-3bga4rc8vp] .nav-link.active {
    color: var(--msw-cyan);
    background: none;
}

[b-3bga4rc8vp] .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--msw-cyan);
    border-radius: 1px;
}

.msw-nav-actions[b-3bga4rc8vp] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.msw-theme-toggle[b-3bga4rc8vp] {
    background: none;
    border: 1px solid var(--msw-glass-border);
    color: var(--msw-text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--msw-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.msw-theme-toggle:hover[b-3bga4rc8vp] {
    color: var(--msw-cyan);
    border-color: var(--msw-cyan);
}

.msw-theme-toggle .icon-moon[b-3bga4rc8vp] {
    display: none;
}

[data-theme="light"] .msw-theme-toggle .icon-sun[b-3bga4rc8vp] {
    display: none;
}

[data-theme="light"] .msw-theme-toggle .icon-moon[b-3bga4rc8vp] {
    display: block;
}

.msw-cta-btn[b-3bga4rc8vp] {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.5rem;
    background: var(--msw-gradient-accent);
    color: white !important;
    text-decoration: none;
    font-family: var(--msw-font-body);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--msw-radius-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.msw-cta-btn:hover[b-3bga4rc8vp] {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.msw-burger[b-3bga4rc8vp] {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.msw-burger span[b-3bga4rc8vp] {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--msw-text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.msw-burger.open span:nth-child(1)[b-3bga4rc8vp] {
    transform: rotate(45deg) translate(5px, 5px);
}

.msw-burger.open span:nth-child(2)[b-3bga4rc8vp] {
    opacity: 0;
}

.msw-burger.open span:nth-child(3)[b-3bga4rc8vp] {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .msw-burger[b-3bga4rc8vp] {
        display: flex;
    }

    .desktop-only[b-3bga4rc8vp] {
        display: none;
    }

    .msw-nav-links[b-3bga4rc8vp] {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--msw-bg-primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .msw-nav-links.open[b-3bga4rc8vp] {
        opacity: 1;
        visibility: visible;
    }

    [b-3bga4rc8vp] .msw-nav-links .nav-link {
        font-size: 1.5rem;
        padding: 1rem 2rem;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-5dtjisgc9s],
.components-reconnect-repeated-attempt-visible[b-5dtjisgc9s],
.components-reconnect-failed-visible[b-5dtjisgc9s],
.components-pause-visible[b-5dtjisgc9s],
.components-resume-failed-visible[b-5dtjisgc9s],
.components-rejoining-animation[b-5dtjisgc9s] {
    display: none;
}

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


#components-reconnect-modal[b-5dtjisgc9s] {
    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-5dtjisgc9s 0.5s both;
    &[open]

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

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

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

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

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/About.razor.rz.scp.css */
.page-hero[b-59mkywabol] {
    padding: 8rem 0 4rem;
    background: var(--msw-gradient-hero);
    text-align: center;
}
.page-hero h1[b-59mkywabol] { margin-bottom: 1rem; }
.page-hero-subtitle[b-59mkywabol] { color: var(--msw-text-secondary); font-size: 1.125rem; max-width: 600px; margin: 0 auto; }

.about-story[b-59mkywabol] {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2[b-59mkywabol] { margin-bottom: 1.5rem; }
.story-content p[b-59mkywabol] { color: var(--msw-text-secondary); line-height: 1.8; margin-bottom: 1rem; }

.story-visual[b-59mkywabol] { padding: 3rem; }
.story-stats[b-59mkywabol] { display: flex; flex-direction: column; gap: 2rem; }
.story-stat[b-59mkywabol] { text-align: center; }
.stat-number[b-59mkywabol] { font-family: var(--msw-font-display); font-size: 2.5rem; font-weight: 700; color: var(--msw-cyan); display: block; }
.stat-label[b-59mkywabol] { font-size: 0.85rem; color: var(--msw-text-muted); }

.values-section[b-59mkywabol] { background: var(--msw-bg-secondary); }

.values-grid[b-59mkywabol] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-card[b-59mkywabol] { padding: 2.5rem 2rem; }
.value-number[b-59mkywabol] { font-family: var(--msw-font-mono); font-size: 0.8rem; color: var(--msw-cyan); margin-bottom: 1rem; }
.value-card h3[b-59mkywabol] { font-size: 1.25rem; margin-bottom: 1rem; }
.value-card p[b-59mkywabol] { color: var(--msw-text-secondary); font-size: 0.9rem; line-height: 1.7; }

.stack-grid[b-59mkywabol] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

.stack-item[b-59mkywabol] {
    text-align: center;
    padding: 1.5rem 1rem;
}

.stack-name[b-59mkywabol] {
    display: block;
    font-family: var(--msw-font-display);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.stack-category[b-59mkywabol] {
    font-size: 0.75rem;
    color: var(--msw-text-muted);
    font-family: var(--msw-font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .about-story[b-59mkywabol] { grid-template-columns: 1fr; gap: 2rem; }
    .values-grid[b-59mkywabol] { grid-template-columns: 1fr; }
}
/* /Components/Pages/Admin/Index.razor.rz.scp.css */
h1[b-p23lo158l8] { margin-bottom: 2rem; }

.admin-stats[b-p23lo158l8] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.admin-stat-card[b-p23lo158l8] {
    text-align: center;
    padding: 2rem;
}

.stat-value[b-p23lo158l8] {
    display: block;
    font-family: var(--msw-font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--msw-cyan);
    margin-bottom: 0.25rem;
}

.stat-value.highlight[b-p23lo158l8] {
    color: var(--msw-coral);
}

.stat-label[b-p23lo158l8] {
    display: block;
    font-size: 0.85rem;
    color: var(--msw-text-secondary);
    margin-bottom: 1rem;
}

.admin-stat-card a[b-p23lo158l8] {
    font-size: 0.85rem;
}
/* /Components/Pages/Admin/Login.razor.rz.scp.css */
.login-section[b-zse4jjuayr] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--msw-gradient-hero);
    padding: 2rem;
}

.login-card[b-zse4jjuayr] {
    padding: 3rem;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-logo[b-zse4jjuayr] {
    height: 60px;
    margin: 0 auto 1.5rem;
}

.login-card h2[b-zse4jjuayr] {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.form-group[b-zse4jjuayr] {
    margin-bottom: 1.25rem;
    text-align: left;
}

.form-group label[b-zse4jjuayr] {
    display: block;
    font-size: 0.85rem;
    color: var(--msw-text-secondary);
    margin-bottom: 0.5rem;
}

.login-btn[b-zse4jjuayr] {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

.login-error[b-zse4jjuayr] {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid var(--msw-coral);
    color: var(--msw-coral);
    padding: 0.75rem;
    border-radius: var(--msw-radius-sm);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}
/* /Components/Pages/Admin/Projects/Edit.razor.rz.scp.css */
.image-upload-zone[b-lfxpg59iqj] {
    border: 2px dashed var(--msw-glass-border);
    border-radius: var(--msw-radius-md);
    padding: 1.5rem;
    transition: border-color 0.3s ease;
}

.image-upload-zone:hover[b-lfxpg59iqj] {
    border-color: var(--msw-cyan);
}

.image-preview[b-lfxpg59iqj] {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    border-radius: var(--msw-radius-sm);
    overflow: hidden;
    background: var(--msw-bg-tertiary);
}

.image-preview img[b-lfxpg59iqj] {
    max-height: 200px;
    max-width: 100%;
    object-fit: contain;
    display: block;
    padding: 0.5rem;
}

.image-remove[b-lfxpg59iqj] {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--msw-coral);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.8;
}

.image-remove:hover[b-lfxpg59iqj] {
    transform: scale(1.1);
    opacity: 1;
}

.image-upload-input[b-lfxpg59iqj] {
    position: relative;
}

.image-upload-input[b-lfxpg59iqj]  input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}

.upload-label[b-lfxpg59iqj] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    color: var(--msw-text-secondary);
    transition: color 0.3s;
}

.image-upload-input:hover .upload-label[b-lfxpg59iqj] {
    color: var(--msw-cyan);
}

.upload-label span[b-lfxpg59iqj] {
    font-size: 0.9rem;
    font-weight: 500;
}

.upload-label small[b-lfxpg59iqj] {
    font-size: 0.75rem;
    color: var(--msw-text-muted);
}

.upload-progress[b-lfxpg59iqj] {
    color: var(--msw-cyan);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    animation: pulse 1s ease-in-out infinite;
}

.form-error[b-lfxpg59iqj] {
    color: var(--msw-coral);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}
/* /Components/Pages/Contact.razor.rz.scp.css */
.page-hero[b-62b98305un] {
    padding: 8rem 0 4rem;
    background: var(--msw-gradient-hero);
    text-align: center;
}
.page-hero h1[b-62b98305un] { margin-bottom: 1rem; }
.page-hero-subtitle[b-62b98305un] { color: var(--msw-text-secondary); font-size: 1.125rem; max-width: 600px; margin: 0 auto; }

.contact-grid[b-62b98305un] {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.form-row[b-62b98305un] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group[b-62b98305un] {
    margin-bottom: 1.25rem;
}

.form-group label[b-62b98305un] {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--msw-text-secondary);
    margin-bottom: 0.5rem;
}

.form-error[b-62b98305un] {
    color: var(--msw-coral);
    font-size: 0.85rem;
    margin-top: 1rem;
}

.success-message[b-62b98305un] {
    text-align: center;
    padding: 3rem 2rem;
}

.success-message svg[b-62b98305un] {
    margin-bottom: 1.5rem;
}

.success-message h3[b-62b98305un] {
    margin-bottom: 0.75rem;
}

.success-message p[b-62b98305un] {
    color: var(--msw-text-secondary);
}

.contact-info[b-62b98305un] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card[b-62b98305un] {
    padding: 2rem;
}

.contact-card h3[b-62b98305un] {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.contact-card p[b-62b98305un] {
    color: var(--msw-text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-item[b-62b98305un] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item strong[b-62b98305un] {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.contact-item p[b-62b98305un],
.contact-item a[b-62b98305un] {
    color: var(--msw-text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .contact-grid[b-62b98305un] { grid-template-columns: 1fr; }
    .form-row[b-62b98305un] { grid-template-columns: 1fr; }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* ===========================
   HOME — Hero Section
   =========================== */
.hero[b-jff6o70y1f] {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 5rem;
    animation: fadeInDown 0.8s ease-out;
}

.hero-bg[b-jff6o70y1f] {
    position: absolute;
    inset: 0;
    background: var(--msw-gradient-hero);
}

.hero-grid[b-jff6o70y1f] {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
    animation: gridPulse-b-jff6o70y1f 15s ease-in-out infinite;
}

@keyframes gridPulse-b-jff6o70y1f {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-glow[b-jff6o70y1f] {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation: float-b-jff6o70y1f 8s ease-in-out infinite;
    filter: blur(40px);
}

.hero-glow-2[b-jff6o70y1f] {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(240, 180, 41, 0.06) 0%, transparent 70%);
    top: 40%;
    right: 5%;
    animation-delay: -4s;
}

@keyframes float-b-jff6o70y1f {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -25px) scale(1.05); }
    66% { transform: translate(-15px, 15px) scale(0.95); }
}

.hero-content[b-jff6o70y1f] {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.hero-text[b-jff6o70y1f] {
    max-width: 600px;
    animation: slideInLeft-b-jff6o70y1f 0.8s ease-out 0.2s both;
}

@keyframes slideInLeft-b-jff6o70y1f {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-text h1[b-jff6o70y1f] {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-gradient-text[b-jff6o70y1f] {
    background: linear-gradient(135deg, var(--msw-cyan), var(--msw-cyan-light), var(--msw-gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-b-jff6o70y1f 4s ease-in-out infinite;
}

@keyframes shimmer-b-jff6o70y1f {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-subtitle[b-jff6o70y1f] {
    font-size: 1.125rem;
    color: var(--msw-text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-actions[b-jff6o70y1f] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats[b-jff6o70y1f] {
    display: flex;
    gap: 3rem;
    padding-top: 1rem;
    border-top: 1px solid var(--msw-glass-border);
}

.hero-stat[b-jff6o70y1f] {
    display: flex;
    flex-direction: column;
}

.hero-stat-number[b-jff6o70y1f] {
    font-family: var(--msw-font-display);
    font-size: 2.25rem;
    font-weight: 700;
    background: var(--msw-gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label[b-jff6o70y1f] {
    font-size: 0.8rem;
    color: var(--msw-text-muted);
    margin-top: 0.25rem;
}

/* Code window */
.hero-visual[b-jff6o70y1f] {
    display: flex;
    justify-content: center;
    animation: slideInRight-b-jff6o70y1f 0.8s ease-out 0.4s both;
}

@keyframes slideInRight-b-jff6o70y1f {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-code-window[b-jff6o70y1f] {
    background: rgba(10, 14, 39, 0.8);
    border: 1px solid var(--msw-glass-border);
    border-radius: var(--msw-radius-lg);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    animation: codePulse 4s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.code-header[b-jff6o70y1f] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--msw-glass-border);
}

.code-dot[b-jff6o70y1f] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.hero-code-window:hover .code-dot[b-jff6o70y1f] { transform: scale(1.2); }

.code-dot.red[b-jff6o70y1f] { background: #ff5f57; }
.code-dot.yellow[b-jff6o70y1f] { background: #febc2e; }
.code-dot.green[b-jff6o70y1f] { background: #28c840; }

.code-title[b-jff6o70y1f] {
    margin-left: auto;
    font-family: var(--msw-font-mono);
    font-size: 0.75rem;
    color: var(--msw-text-muted);
}

.code-body[b-jff6o70y1f] {
    padding: 1.5rem;
    font-family: var(--msw-font-mono);
    font-size: 0.8rem;
    line-height: 1.8;
    overflow-x: auto;
    margin: 0;
    color: var(--msw-text-secondary);
}

[b-jff6o70y1f] .code-keyword { color: #c678dd; }
[b-jff6o70y1f] .code-var { color: #e5c07b; }
[b-jff6o70y1f] .code-fn { color: #61afef; }
[b-jff6o70y1f] .code-string { color: #98c379; }
[b-jff6o70y1f] .code-prop { color: #e06c75; }
[b-jff6o70y1f] .code-bool { color: #d19a66; }
[b-jff6o70y1f] .code-comment { color: var(--msw-text-muted); font-style: italic; }

/* Scroll indicator */
.hero-scroll[b-jff6o70y1f] {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--msw-text-muted);
    animation: bounce-b-jff6o70y1f 2s ease-in-out infinite;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.hero-scroll:hover[b-jff6o70y1f] { opacity: 1; }

@keyframes bounce-b-jff6o70y1f {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===========================
   Services Section
   =========================== */
.services-grid[b-jff6o70y1f] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-card[b-jff6o70y1f] {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card[b-jff6o70y1f]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--msw-gradient-accent);
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1;
}

.service-card:hover[b-jff6o70y1f]::before {
    width: 100%;
}

/* Service visual area */
.service-visual[b-jff6o70y1f] {
    height: 200px;
    background: var(--msw-bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-visual img[b-jff6o70y1f] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-visual img[b-jff6o70y1f] {
    transform: scale(1.05);
}

/* Service content */
.service-content[b-jff6o70y1f] {
    padding: 1.75rem;
}

.service-number[b-jff6o70y1f] {
    font-family: var(--msw-font-mono);
    font-size: 0.7rem;
    color: var(--msw-cyan);
    letter-spacing: 0.1em;
}

.service-content h3[b-jff6o70y1f] {
    font-size: 1.2rem;
    margin: 0.5rem 0 0.75rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-content h3[b-jff6o70y1f] {
    color: var(--msw-cyan);
}

.service-content p[b-jff6o70y1f] {
    color: var(--msw-text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* ---- Illustration: Browser (Web) ---- */
.sv-browser[b-jff6o70y1f] {
    width: 200px;
    background: var(--msw-bg-primary);
    border-radius: 8px;
    border: 1px solid var(--msw-glass-border);
    overflow: hidden;
    box-shadow: var(--msw-shadow-md);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .sv-browser[b-jff6o70y1f] {
    transform: translateY(-6px) scale(1.03);
}

.sv-browser-bar[b-jff6o70y1f] {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: var(--msw-bg-secondary);
    border-bottom: 1px solid var(--msw-glass-border);
}

.sv-dot[b-jff6o70y1f] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--msw-text-muted);
    opacity: 0.4;
}

.sv-dot:first-child[b-jff6o70y1f] { background: #ff5f57; opacity: 0.7; }
.sv-dot:nth-child(2)[b-jff6o70y1f] { background: #febc2e; opacity: 0.7; }
.sv-dot:nth-child(3)[b-jff6o70y1f] { background: #28c840; opacity: 0.7; }

.sv-url[b-jff6o70y1f] {
    margin-left: auto;
    font-family: var(--msw-font-mono);
    font-size: 0.55rem;
    color: var(--msw-text-muted);
}

.sv-browser-body[b-jff6o70y1f] {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sv-line[b-jff6o70y1f] {
    height: 6px;
    background: var(--msw-glass-border);
    border-radius: 3px;
}
.sv-line.w80[b-jff6o70y1f] { width: 80%; }
.sv-line.w60[b-jff6o70y1f] { width: 60%; }
.sv-line.w40[b-jff6o70y1f] { width: 40%; }

.sv-blocks[b-jff6o70y1f] {
    display: flex;
    gap: 6px;
    margin-top: 4px;
}

.sv-block[b-jff6o70y1f] {
    flex: 1;
    height: 36px;
    background: var(--msw-cyan-muted);
    border-radius: 4px;
    border: 1px solid var(--msw-glass-border);
}

.service-card:hover .sv-block:nth-child(1)[b-jff6o70y1f] { background: rgba(0, 212, 255, 0.12); }
.service-card:hover .sv-block:nth-child(2)[b-jff6o70y1f] { background: rgba(240, 180, 41, 0.1); transition-delay: 0.05s; }
.service-card:hover .sv-block:nth-child(3)[b-jff6o70y1f] { background: rgba(0, 212, 255, 0.12); transition-delay: 0.1s; }

/* ---- Illustration: Phone (App) ---- */
.sv-phone[b-jff6o70y1f] {
    width: 100px;
    height: 140px;
    background: var(--msw-bg-primary);
    border-radius: 16px;
    border: 2px solid var(--msw-glass-border);
    overflow: hidden;
    box-shadow: var(--msw-shadow-md);
    position: relative;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .sv-phone[b-jff6o70y1f] {
    transform: translateY(-6px) rotate(2deg) scale(1.03);
}

.sv-phone-notch[b-jff6o70y1f] {
    width: 40px;
    height: 6px;
    background: var(--msw-bg-secondary);
    border-radius: 0 0 8px 8px;
    margin: 0 auto;
}

.sv-phone-body[b-jff6o70y1f] {
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sv-circle-row[b-jff6o70y1f] {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin: 4px 0;
}

.sv-circle[b-jff6o70y1f] {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: var(--msw-cyan-muted);
    border: 1px solid var(--msw-glass-border);
    transition: all 0.3s ease;
}

.service-card:hover .sv-circle:nth-child(1)[b-jff6o70y1f] { background: rgba(0, 212, 255, 0.15); transform: scale(1.1); }
.service-card:hover .sv-circle:nth-child(2)[b-jff6o70y1f] { background: rgba(240, 180, 41, 0.12); transform: scale(1.1); transition-delay: 0.05s; }
.service-card:hover .sv-circle:nth-child(3)[b-jff6o70y1f] { background: rgba(139, 92, 246, 0.12); transform: scale(1.1); transition-delay: 0.1s; }
.service-card:hover .sv-circle:nth-child(4)[b-jff6o70y1f] { background: rgba(255, 107, 107, 0.12); transform: scale(1.1); transition-delay: 0.15s; }

/* ---- Illustration: Palette (Design) ---- */
.sv-design[b-jff6o70y1f] {
    flex-direction: column;
    gap: 12px;
}

.sv-palette[b-jff6o70y1f] {
    display: flex;
    gap: 8px;
}

.sv-swatch[b-jff6o70y1f] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.service-card:hover .sv-swatch:nth-child(1)[b-jff6o70y1f] { transform: translateY(-8px); }
.service-card:hover .sv-swatch:nth-child(2)[b-jff6o70y1f] { transform: translateY(-12px); transition-delay: 0.05s; }
.service-card:hover .sv-swatch:nth-child(3)[b-jff6o70y1f] { transform: translateY(-8px); transition-delay: 0.1s; }
.service-card:hover .sv-swatch:nth-child(4)[b-jff6o70y1f] { transform: translateY(-4px); transition-delay: 0.15s; }

.sv-pen[b-jff6o70y1f] {
    opacity: 0.5;
    transition: all 0.4s ease;
}

.service-card:hover .sv-pen[b-jff6o70y1f] {
    opacity: 1;
    transform: rotate(-10deg) scale(1.1);
}

/* ---- Illustration: Chart (SEO) ---- */
.sv-seo[b-jff6o70y1f] {
    flex-direction: column;
    gap: 10px;
}

.sv-chart[b-jff6o70y1f] {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px;
}

.sv-bar[b-jff6o70y1f] {
    width: 24px;
    background: var(--msw-glass-border);
    border-radius: 4px 4px 0 0;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.sv-bar.active[b-jff6o70y1f] {
    background: var(--msw-gradient-accent);
}

.service-card:hover .sv-bar[b-jff6o70y1f] {
    background: rgba(0, 212, 255, 0.2);
}

.service-card:hover .sv-bar.active[b-jff6o70y1f] {
    background: var(--msw-gradient-accent);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.sv-search-badge[b-jff6o70y1f] {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background: var(--msw-bg-primary);
    border: 1px solid var(--msw-glass-border);
    border-radius: 20px;
    font-family: var(--msw-font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--msw-cyan);
    transition: all 0.4s ease;
}

.service-card:hover .sv-search-badge[b-jff6o70y1f] {
    background: var(--msw-cyan);
    color: white;
    border-color: var(--msw-cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.25);
}

/* ===========================
   Projects Section
   =========================== */
.projects-section[b-jff6o70y1f] {
    background: var(--msw-bg-secondary);
}

.projects-grid[b-jff6o70y1f] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.project-card[b-jff6o70y1f] {
    overflow: hidden;
    padding: 0;
}

.project-image[b-jff6o70y1f] {
    aspect-ratio: 16 / 10;
    background: var(--msw-bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.project-image[b-jff6o70y1f]::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10, 14, 39, 0.4) 100%);
    pointer-events: none;
}

.project-image img[b-jff6o70y1f] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:hover .project-image img[b-jff6o70y1f] {
    transform: scale(1.08);
}

.project-placeholder[b-jff6o70y1f] {
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

.project-info[b-jff6o70y1f] {
    padding: 1.5rem;
}

.project-category[b-jff6o70y1f] {
    font-family: var(--msw-font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--msw-cyan);
}

.project-info h3[b-jff6o70y1f] {
    font-size: 1.125rem;
    margin: 0.5rem 0;
    transition: color 0.3s;
}

.project-card:hover .project-info h3[b-jff6o70y1f] {
    color: var(--msw-cyan);
}

.project-info p[b-jff6o70y1f] {
    color: var(--msw-text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project-tech[b-jff6o70y1f] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tech-tag[b-jff6o70y1f] {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    background: var(--msw-cyan-muted);
    color: var(--msw-cyan);
    border-radius: 4px;
    font-family: var(--msw-font-mono);
    transition: all 0.3s ease;
}

.project-card:hover .tech-tag[b-jff6o70y1f] {
    background: rgba(0, 212, 255, 0.15);
}

.section-cta[b-jff6o70y1f] {
    text-align: center;
    margin-top: 3rem;
}

/* ===========================
   Reviews / Testimonials
   =========================== */
.testimonials-section[b-jff6o70y1f] {
    background: var(--msw-bg-primary);
}

.testimonials-grid[b-jff6o70y1f] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.review-card[b-jff6o70y1f] {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    height: 220px;
}

.review-header[b-jff6o70y1f] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.review-author[b-jff6o70y1f] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.review-photo[b-jff6o70y1f] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.review-avatar[b-jff6o70y1f] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--msw-gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.review-author-info[b-jff6o70y1f] {
    min-width: 0;
}

.review-author-info strong[b-jff6o70y1f] {
    display: block;
    font-size: 0.9rem;
    color: var(--msw-text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-author-info span[b-jff6o70y1f] {
    font-size: 0.75rem;
    color: var(--msw-text-muted);
}

.review-stars[b-jff6o70y1f] {
    display: flex;
    gap: 1px;
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.review-text[b-jff6o70y1f] {
    color: var(--msw-text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin: 0;
}

.google-source[b-jff6o70y1f] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: var(--msw-text-muted);
    font-size: 0.8rem;
    margin-top: 1rem;
}

/* ===========================
   CTA Section
   =========================== */
.cta-section[b-jff6o70y1f] {
    position: relative;
    padding: var(--msw-section-padding) 0;
    text-align: center;
    background: var(--msw-bg-secondary);
    overflow: hidden;
}

.cta-glow[b-jff6o70y1f] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: glowFloat 6s ease-in-out infinite;
}

.cta-section h2[b-jff6o70y1f] {
    margin-bottom: 1rem;
    position: relative;
}

.cta-section p[b-jff6o70y1f] {
    color: var(--msw-text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    position: relative;
}

.cta-actions[b-jff6o70y1f] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1024px) {
    .hero-content[b-jff6o70y1f] {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text[b-jff6o70y1f] {
        max-width: 100%;
    }

    .hero-subtitle[b-jff6o70y1f] {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions[b-jff6o70y1f] {
        justify-content: center;
    }

    .hero-stats[b-jff6o70y1f] {
        justify-content: center;
    }

    .hero-visual[b-jff6o70y1f] {
        display: none;
    }

    .services-grid[b-jff6o70y1f] {
        grid-template-columns: 1fr;
    }

    .service-visual[b-jff6o70y1f] {
        height: 150px;
    }

    .testimonials-grid[b-jff6o70y1f] {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .review-card[b-jff6o70y1f] {
        height: auto;
        max-height: 240px;
    }
}

@media (max-width: 640px) {
    .hero[b-jff6o70y1f] {
        padding-top: 4rem;
        min-height: 90vh;
    }

    .hero-stats[b-jff6o70y1f] {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-stat-number[b-jff6o70y1f] {
        font-size: 1.75rem;
    }

    .hero-actions[b-jff6o70y1f] {
        flex-direction: column;
        align-items: center;
    }

    .projects-grid[b-jff6o70y1f] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/Legal.razor.rz.scp.css */
.page-hero[b-f3vz9i22z1] {
    padding: 8rem 0 4rem;
    background: var(--msw-gradient-hero);
    text-align: center;
}

.legal-content[b-f3vz9i22z1] {
    background: var(--msw-bg-primary);
}

.legal-body[b-f3vz9i22z1] {
    max-width: 800px;
    margin: 0 auto;
}

.legal-body h2[b-f3vz9i22z1] {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--msw-glass-border);
}

.legal-body h2:first-child[b-f3vz9i22z1] {
    margin-top: 0;
}

.legal-body p[b-f3vz9i22z1] {
    color: var(--msw-text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-body ul[b-f3vz9i22z1] {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-body li[b-f3vz9i22z1] {
    color: var(--msw-text-secondary);
    line-height: 1.8;
    list-style: disc;
    margin-bottom: 0.25rem;
}

.legal-body a[b-f3vz9i22z1] {
    color: var(--msw-cyan);
}
/* /Components/Pages/NotFound.razor.rz.scp.css */
.notfound-section[b-ug3uepc4k4] {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--msw-gradient-hero);
}

.notfound-code[b-ug3uepc4k4] {
    font-family: var(--msw-font-display);
    font-size: 8rem;
    font-weight: 700;
    background: var(--msw-gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
    display: block;
}

.notfound-section h1[b-ug3uepc4k4] {
    margin-bottom: 1rem;
}

.notfound-section p[b-ug3uepc4k4] {
    color: var(--msw-text-secondary);
    margin-bottom: 2rem;
}
/* /Components/Pages/Portfolio.razor.rz.scp.css */
.page-hero[b-9ulre4xz61] {
    padding: 8rem 0 4rem;
    background: var(--msw-gradient-hero);
    text-align: center;
}
.page-hero h1[b-9ulre4xz61] { margin-bottom: 1rem; }
.page-hero-subtitle[b-9ulre4xz61] { color: var(--msw-text-secondary); font-size: 1.125rem; max-width: 600px; margin: 0 auto; }

.portfolio-filters[b-9ulre4xz61] {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn[b-9ulre4xz61] {
    background: transparent;
    border: 1px solid var(--msw-glass-border);
    color: var(--msw-text-secondary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--msw-radius-sm);
    font-family: var(--msw-font-body);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--msw-transition-base);
}

.filter-btn:hover[b-9ulre4xz61] { border-color: var(--msw-cyan); color: var(--msw-cyan); }
.filter-btn.active[b-9ulre4xz61] { background: var(--msw-gradient-accent); color: white; border-color: transparent; }

.portfolio-grid[b-9ulre4xz61] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.portfolio-card[b-9ulre4xz61] { padding: 0; overflow: hidden; }

.portfolio-image[b-9ulre4xz61] {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--msw-bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.portfolio-image img[b-9ulre4xz61] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform var(--msw-transition-base);
}

.portfolio-card:hover .portfolio-image img[b-9ulre4xz61] {
    transform: scale(1.05);
}

.portfolio-placeholder[b-9ulre4xz61] { opacity: 0.3; }

.portfolio-overlay[b-9ulre4xz61] {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--msw-transition-base);
}

.portfolio-card:hover .portfolio-overlay[b-9ulre4xz61] { opacity: 1; }

.portfolio-category[b-9ulre4xz61] {
    font-family: var(--msw-font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--msw-cyan);
    padding: 0.5rem 1rem;
    border: 1px solid var(--msw-cyan);
    border-radius: var(--msw-radius-sm);
}

.portfolio-info[b-9ulre4xz61] { padding: 1.5rem; }
.portfolio-info h3[b-9ulre4xz61] { font-size: 1.125rem; margin-bottom: 0.5rem; }
.portfolio-info p[b-9ulre4xz61] { color: var(--msw-text-secondary); font-size: 0.85rem; line-height: 1.6; margin-bottom: 1rem; }

.portfolio-meta[b-9ulre4xz61] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.portfolio-tech[b-9ulre4xz61] { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.tech-tag[b-9ulre4xz61] {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    background: var(--msw-cyan-muted);
    color: var(--msw-cyan);
    border-radius: 4px;
    font-family: var(--msw-font-mono);
}

.portfolio-link[b-9ulre4xz61] {
    color: var(--msw-text-secondary);
    transition: color var(--msw-transition-fast);
}
.portfolio-link:hover[b-9ulre4xz61] { color: var(--msw-cyan); }

.cta-section[b-9ulre4xz61] {
    position: relative;
    padding: var(--msw-section-padding) 0;
    text-align: center;
    background: var(--msw-bg-secondary);
    overflow: hidden;
}
.cta-glow[b-9ulre4xz61] {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.cta-section h2[b-9ulre4xz61] { margin-bottom: 1rem; position: relative; }
.cta-section p[b-9ulre4xz61] { color: var(--msw-text-secondary); margin-bottom: 2rem; position: relative; }

@media (max-width: 640px) {
    .portfolio-grid[b-9ulre4xz61] { grid-template-columns: 1fr; }
}
/* /Components/Pages/PrintProducts.razor.rz.scp.css */
.page-hero[b-z6opc3rvug] {
    padding: 8rem 0 4rem;
    background: var(--msw-gradient-hero);
    text-align: center;
}
.page-hero h1[b-z6opc3rvug] { margin-bottom: 1rem; }
.page-hero-subtitle[b-z6opc3rvug] { color: var(--msw-text-secondary); font-size: 1.125rem; max-width: 600px; margin: 0 auto; }

.print-categories[b-z6opc3rvug] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 4rem;
}

.print-category-card[b-z6opc3rvug] {
    text-align: center;
    padding: 2rem 1.5rem;
}

.print-cat-icon[b-z6opc3rvug] {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--msw-cyan-muted);
    border-radius: var(--msw-radius-md);
}

.print-category-card h3[b-z6opc3rvug] {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.print-category-card p[b-z6opc3rvug] {
    font-size: 0.85rem;
    color: var(--msw-text-secondary);
}

.products-grid[b-z6opc3rvug] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.product-card[b-z6opc3rvug] { padding: 0; overflow: hidden; }

.product-image[b-z6opc3rvug] {
    aspect-ratio: 16 / 9;
    background: var(--msw-bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-placeholder[b-z6opc3rvug] { opacity: 0.3; }
.product-info[b-z6opc3rvug] { padding: 1.5rem; }
.product-info h3[b-z6opc3rvug] { font-size: 1.05rem; margin-bottom: 0.5rem; }
.product-info p[b-z6opc3rvug] { color: var(--msw-text-secondary); font-size: 0.85rem; line-height: 1.6; margin-bottom: 1rem; }

.product-formats[b-z6opc3rvug] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.format-tag[b-z6opc3rvug] {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    background: var(--msw-cyan-muted);
    color: var(--msw-cyan);
    border-radius: 4px;
    font-family: var(--msw-font-mono);
}

.product-price[b-z6opc3rvug] {
    font-size: 0.95rem;
    color: var(--msw-text-secondary);
    margin-bottom: 1.25rem;
}

.product-price strong[b-z6opc3rvug] {
    font-size: 1.25rem;
    color: var(--msw-cyan);
}

.print-partner[b-z6opc3rvug] {
    margin-top: 3rem;
    text-align: center;
}

.partner-card[b-z6opc3rvug] {
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.partner-card p[b-z6opc3rvug] {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.partner-card span[b-z6opc3rvug] {
    color: var(--msw-text-muted);
    font-size: 0.85rem;
}

@media (max-width: 640px) {
    .products-grid[b-z6opc3rvug] { grid-template-columns: 1fr; }
    .print-categories[b-z6opc3rvug] { grid-template-columns: repeat(2, 1fr); }
}
/* /Components/Pages/Privacy.razor.rz.scp.css */
.page-hero[b-kcctgacwo1] {
    padding: 8rem 0 4rem;
    background: var(--msw-gradient-hero);
    text-align: center;
}

.legal-content[b-kcctgacwo1] {
    background: var(--msw-bg-primary);
}

.legal-body[b-kcctgacwo1] {
    max-width: 800px;
    margin: 0 auto;
}

.legal-body h2[b-kcctgacwo1] {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--msw-glass-border);
}

.legal-body h2:first-child[b-kcctgacwo1] {
    margin-top: 0;
}

.legal-body p[b-kcctgacwo1] {
    color: var(--msw-text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-body ul[b-kcctgacwo1] {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-body li[b-kcctgacwo1] {
    color: var(--msw-text-secondary);
    line-height: 1.8;
    list-style: disc;
    margin-bottom: 0.25rem;
}

.legal-body a[b-kcctgacwo1] {
    color: var(--msw-cyan);
}
/* /Components/Pages/Reviews.razor.rz.scp.css */
.page-hero[b-wg69nik92u] {
    padding: 8rem 0 4rem;
    background: var(--msw-gradient-hero);
    text-align: center;
}
.page-hero h1[b-wg69nik92u] { margin-bottom: 1rem; }
.page-hero-subtitle[b-wg69nik92u] { color: var(--msw-text-secondary); font-size: 1.125rem; max-width: 600px; margin: 0 auto; }

.hero-rating[b-wg69nik92u] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 1.1rem;
}

.hero-rating strong[b-wg69nik92u] {
    color: var(--msw-gold);
    margin-left: 0.25rem;
}

.reviews-grid[b-wg69nik92u] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 1.5rem;
}

.review-card-full[b-wg69nik92u] {
    padding: 2rem;
}

.review-header[b-wg69nik92u] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.review-author[b-wg69nik92u] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-photo[b-wg69nik92u] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.review-avatar[b-wg69nik92u] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--msw-gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.review-author-info strong[b-wg69nik92u] {
    display: block;
    font-size: 1rem;
    color: var(--msw-text-primary);
}

.review-author-info span[b-wg69nik92u] {
    font-size: 0.8rem;
    color: var(--msw-text-muted);
}

.review-stars[b-wg69nik92u] {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.review-text-full[b-wg69nik92u] {
    color: var(--msw-text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    white-space: pre-line;
}

.reviews-footer[b-wg69nik92u] {
    text-align: center;
    margin-top: 3rem;
}

.google-all-btn[b-wg69nik92u] {
    margin-bottom: 1.25rem;
}

.google-badge[b-wg69nik92u] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--msw-text-muted);
    font-size: 0.8rem;
    font-style: italic;
}

.no-reviews[b-wg69nik92u] {
    text-align: center;
    color: var(--msw-text-muted);
    padding: 3rem 0;
}

.cta-section[b-wg69nik92u] {
    position: relative;
    padding: var(--msw-section-padding) 0;
    text-align: center;
    background: var(--msw-bg-secondary);
    overflow: hidden;
}
.cta-glow[b-wg69nik92u] {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: glowFloat 6s ease-in-out infinite;
}
.cta-section h2[b-wg69nik92u] { margin-bottom: 1rem; position: relative; }
.cta-section p[b-wg69nik92u] { color: var(--msw-text-secondary); margin-bottom: 2rem; position: relative; }

@media (max-width: 640px) {
    .reviews-grid[b-wg69nik92u] { grid-template-columns: 1fr; }
    .review-card-full[b-wg69nik92u] { padding: 1.5rem; }
}
/* /Components/Pages/Services.razor.rz.scp.css */
.page-hero[b-qpy2arquh5] {
    padding: 8rem 0 4rem;
    background: var(--msw-gradient-hero);
    text-align: center;
    position: relative;
}

.page-hero h1[b-qpy2arquh5] { margin-bottom: 1rem; }

.page-hero-subtitle[b-qpy2arquh5] {
    color: var(--msw-text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.service-detail[b-qpy2arquh5] {
    border-bottom: 1px solid var(--msw-glass-border);
}

.alt-bg[b-qpy2arquh5] {
    background: var(--msw-bg-secondary);
}

.service-detail-grid[b-qpy2arquh5] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail-grid.reverse[b-qpy2arquh5] {
    direction: rtl;
}

.service-detail-grid.reverse > *[b-qpy2arquh5] {
    direction: ltr;
}

.service-detail-content h2[b-qpy2arquh5] {
    margin-bottom: 1rem;
}

.service-desc[b-qpy2arquh5] {
    color: var(--msw-text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features[b-qpy2arquh5] {
    margin-bottom: 2rem;
}

.service-features li[b-qpy2arquh5] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--msw-text-secondary);
    font-size: 0.95rem;
}

.service-detail-visual[b-qpy2arquh5] {
    display: flex;
    justify-content: center;
}

.service-image-card[b-qpy2arquh5] {
    width: 100%;
    max-width: 460px;
    border-radius: var(--msw-radius-lg);
    overflow: hidden;
    padding: 0;
}

.service-image-card img[b-qpy2arquh5] {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-detail:hover .service-image-card img[b-qpy2arquh5] {
    transform: scale(1.03);
}

/* =========================
   Web - Browser mockup
   ========================= */
.illust-browser[b-qpy2arquh5] {
    width: 320px;
    background: var(--msw-bg-primary);
    border-radius: 12px;
    border: 1px solid var(--msw-glass-border);
    overflow: hidden;
    box-shadow: var(--msw-shadow-lg);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-detail:hover .illust-browser[b-qpy2arquh5] {
    transform: translateY(-8px);
}

.illust-bar[b-qpy2arquh5] {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    background: var(--msw-bg-secondary);
    border-bottom: 1px solid var(--msw-glass-border);
}

.dot[b-qpy2arquh5] { width: 7px; height: 7px; border-radius: 50%; }
.dot.r[b-qpy2arquh5] { background: #ff5f57; }
.dot.y[b-qpy2arquh5] { background: #febc2e; }
.dot.g[b-qpy2arquh5] { background: #28c840; }

.illust-url[b-qpy2arquh5] {
    margin-left: auto;
    font-family: var(--msw-font-mono);
    font-size: 0.6rem;
    color: var(--msw-text-muted);
    background: var(--msw-bg-tertiary);
    padding: 2px 8px;
    border-radius: 4px;
}

.illust-body[b-qpy2arquh5] {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.illust-hero-block[b-qpy2arquh5] {
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, var(--msw-cyan-muted), rgba(240, 180, 41, 0.06));
    border-radius: 6px;
    border: 1px solid var(--msw-glass-border);
}

.illust-row[b-qpy2arquh5] {
    display: flex;
    gap: 8px;
}

.illust-col[b-qpy2arquh5] {
    flex: 1;
    height: 40px;
    background: var(--msw-cyan-muted);
    border-radius: 6px;
    border: 1px solid var(--msw-glass-border);
    transition: background 0.3s ease;
}

.illust-col.tall[b-qpy2arquh5] { height: 60px; }

.service-detail:hover .illust-col:nth-child(1)[b-qpy2arquh5] { background: rgba(0, 212, 255, 0.12); }
.service-detail:hover .illust-col:nth-child(2)[b-qpy2arquh5] { background: rgba(240, 180, 41, 0.08); }
.service-detail:hover .illust-col:nth-child(3)[b-qpy2arquh5] { background: rgba(139, 92, 246, 0.08); }

.illust-cursor[b-qpy2arquh5] {
    position: absolute;
    bottom: 25%;
    right: 20%;
    animation: cursorMove-b-qpy2arquh5 3s ease-in-out infinite;
}

@keyframes cursorMove-b-qpy2arquh5 {
    0%, 100% { transform: translate(0, 0); }
    30% { transform: translate(-20px, -15px); }
    60% { transform: translate(10px, -5px); }
}

/* =========================
   App - Phone mockup
   ========================= */
.illust-app[b-qpy2arquh5] {
    flex-direction: column;
    gap: 12px;
}

.illust-phone[b-qpy2arquh5] {
    width: 160px;
    height: 280px;
    background: var(--msw-bg-primary);
    border-radius: 24px;
    border: 2px solid var(--msw-glass-border);
    overflow: hidden;
    box-shadow: var(--msw-shadow-lg);
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-detail:hover .illust-phone[b-qpy2arquh5] {
    transform: translateY(-8px) rotate(2deg);
}

.illust-phone-notch[b-qpy2arquh5] {
    width: 60px;
    height: 8px;
    background: var(--msw-bg-secondary);
    border-radius: 0 0 10px 10px;
    margin: 0 auto;
}

.illust-phone-screen[b-qpy2arquh5] {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.illust-app-grid[b-qpy2arquh5] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.app-icon[b-qpy2arquh5] {
    aspect-ratio: 1;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.ai1[b-qpy2arquh5] { background: rgba(0, 212, 255, 0.15); }
.ai2[b-qpy2arquh5] { background: rgba(240, 180, 41, 0.12); }
.ai3[b-qpy2arquh5] { background: rgba(139, 92, 246, 0.12); }
.ai4[b-qpy2arquh5] { background: rgba(255, 107, 107, 0.12); }
.ai5[b-qpy2arquh5] { background: rgba(16, 185, 129, 0.12); }
.ai6[b-qpy2arquh5] { background: rgba(0, 212, 255, 0.1); }

.service-detail:hover .app-icon[b-qpy2arquh5] { transform: scale(1.08); }

.illust-card-mini[b-qpy2arquh5] {
    height: 36px;
    background: var(--msw-cyan-muted);
    border-radius: 8px;
    border: 1px solid var(--msw-glass-border);
}

.illust-phone-bar[b-qpy2arquh5] {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 8px;
    border-top: 1px solid var(--msw-glass-border);
}

.bar-item[b-qpy2arquh5] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--msw-glass-border);
}

.bar-item.active[b-qpy2arquh5] { background: var(--msw-cyan); }

.illust-notif[b-qpy2arquh5] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--msw-bg-primary);
    border: 1px solid var(--msw-glass-border);
    border-radius: 20px;
    font-family: var(--msw-font-mono);
    font-size: 0.7rem;
    color: var(--msw-text-muted);
    box-shadow: var(--msw-shadow-sm);
    animation: notifSlide-b-qpy2arquh5 3s ease-in-out infinite;
}

.notif-dot[b-qpy2arquh5] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--msw-coral);
}

@keyframes notifSlide-b-qpy2arquh5 {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(5px); opacity: 0.7; }
}

/* =========================
   Design - Canvas mockup
   ========================= */
.illust-design[b-qpy2arquh5] {
    flex-direction: column;
    gap: 20px;
}

.illust-canvas[b-qpy2arquh5] {
    width: 280px;
    height: 200px;
    background: var(--msw-bg-primary);
    border-radius: 12px;
    border: 1px solid var(--msw-glass-border);
    box-shadow: var(--msw-shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-detail:hover .illust-canvas[b-qpy2arquh5] {
    transform: translateY(-8px);
}

.illust-logo-preview[b-qpy2arquh5] {
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-shape[b-qpy2arquh5] {
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.s1[b-qpy2arquh5] { width: 40px; height: 40px; background: var(--msw-cyan); opacity: 0.8; }
.s2[b-qpy2arquh5] { width: 30px; height: 30px; background: var(--msw-gold); opacity: 0.7; margin-left: -12px; }
.s3[b-qpy2arquh5] { width: 24px; height: 24px; background: var(--msw-coral); opacity: 0.6; margin-left: -10px; }

.service-detail:hover .s1[b-qpy2arquh5] { transform: translateX(-5px) scale(1.1); }
.service-detail:hover .s2[b-qpy2arquh5] { transform: translateY(-8px) scale(1.1); }
.service-detail:hover .s3[b-qpy2arquh5] { transform: translateX(5px) scale(1.1); }

.illust-color-strip[b-qpy2arquh5] {
    display: flex;
    gap: 6px;
}

.illust-color-strip span[b-qpy2arquh5] {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.service-detail:hover .illust-color-strip span:nth-child(1)[b-qpy2arquh5] { transform: translateY(-4px); }
.service-detail:hover .illust-color-strip span:nth-child(2)[b-qpy2arquh5] { transform: translateY(-6px); transition-delay: 0.03s; }
.service-detail:hover .illust-color-strip span:nth-child(3)[b-qpy2arquh5] { transform: translateY(-4px); transition-delay: 0.06s; }
.service-detail:hover .illust-color-strip span:nth-child(4)[b-qpy2arquh5] { transform: translateY(-6px); transition-delay: 0.09s; }
.service-detail:hover .illust-color-strip span:nth-child(5)[b-qpy2arquh5] { transform: translateY(-4px); transition-delay: 0.12s; }

.illust-typo[b-qpy2arquh5] {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.typo-big[b-qpy2arquh5] {
    font-family: var(--msw-font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--msw-text-primary);
    opacity: 0.3;
}

.typo-name[b-qpy2arquh5] {
    font-family: var(--msw-font-mono);
    font-size: 0.7rem;
    color: var(--msw-text-muted);
}

/* =========================
   SEO - Dashboard mockup
   ========================= */
.illust-dashboard[b-qpy2arquh5] {
    width: 320px;
    background: var(--msw-bg-primary);
    border-radius: 12px;
    border: 1px solid var(--msw-glass-border);
    box-shadow: var(--msw-shadow-lg);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-detail:hover .illust-dashboard[b-qpy2arquh5] {
    transform: translateY(-8px);
}

.illust-search-bar[b-qpy2arquh5] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--msw-bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--msw-glass-border);
    color: var(--msw-text-muted);
    font-size: 0.7rem;
    font-family: var(--msw-font-body);
}

.illust-results[b-qpy2arquh5] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.illust-result[b-qpy2arquh5] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 6px;
    background: var(--msw-bg-secondary);
}

.illust-result.first[b-qpy2arquh5] {
    background: var(--msw-cyan-muted);
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.result-badge[b-qpy2arquh5] {
    font-family: var(--msw-font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    background: var(--msw-cyan);
    padding: 2px 8px;
    border-radius: 4px;
    flex-shrink: 0;
}

.result-num[b-qpy2arquh5] {
    font-family: var(--msw-font-mono);
    font-size: 0.65rem;
    color: var(--msw-text-muted);
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.illust-result > div[b-qpy2arquh5] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.illust-result .illust-line[b-qpy2arquh5] {
    margin-bottom: 0;
    height: 5px;
}

.illust-graph[b-qpy2arquh5] {
    height: 60px;
    margin-top: 4px;
}

.graph-svg[b-qpy2arquh5] {
    width: 100%;
    height: 100%;
}

/* =========================
   Print - Cards fan
   ========================= */
.illust-print[b-qpy2arquh5] {
    perspective: 600px;
}

.illust-cards-fan[b-qpy2arquh5] {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    width: 200px;
    height: 180px;
}

.print-card[b-qpy2arquh5] {
    position: absolute;
    width: 140px;
    height: 90px;
    background: var(--msw-bg-primary);
    border: 1px solid var(--msw-glass-border);
    border-radius: 8px;
    padding: 12px;
    box-shadow: var(--msw-shadow-md);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pc1[b-qpy2arquh5] { top: 0; left: 0; transform: rotate(-8deg); z-index: 1; }
.pc2[b-qpy2arquh5] { top: 30px; left: 30px; transform: rotate(0deg); z-index: 2; }
.pc3[b-qpy2arquh5] { top: 60px; left: 60px; transform: rotate(6deg); z-index: 3; }

.service-detail:hover .pc1[b-qpy2arquh5] { transform: rotate(-15deg) translateX(-15px) translateY(-5px); }
.service-detail:hover .pc2[b-qpy2arquh5] { transform: rotate(0deg) translateY(-10px) scale(1.05); }
.service-detail:hover .pc3[b-qpy2arquh5] { transform: rotate(12deg) translateX(15px) translateY(-5px); }

.print-card .illust-line[b-qpy2arquh5] { margin-bottom: 0; }

.print-img[b-qpy2arquh5] {
    width: 100%;
    height: 30px;
    background: linear-gradient(135deg, var(--msw-cyan-muted), rgba(240, 180, 41, 0.06));
    border-radius: 4px;
}

/* =========================
   CTA
   ========================= */
.cta-section[b-qpy2arquh5] {
    position: relative;
    padding: var(--msw-section-padding) 0;
    text-align: center;
    background: var(--msw-bg-secondary);
    overflow: hidden;
}

.cta-glow[b-qpy2arquh5] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: glowFloat 6s ease-in-out infinite;
}

.cta-section h2[b-qpy2arquh5] { margin-bottom: 1rem; position: relative; }
.cta-section p[b-qpy2arquh5] { color: var(--msw-text-secondary); font-size: 1.125rem; margin-bottom: 2rem; position: relative; }

/* =========================
   Responsive
   ========================= */
@media (max-width: 768px) {
    .service-detail-grid[b-qpy2arquh5] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .service-detail-grid.reverse[b-qpy2arquh5] {
        direction: ltr;
    }
    .svc-illust[b-qpy2arquh5] {
        max-width: 300px;
        min-height: 240px;
        margin: 0 auto;
    }
    .illust-browser[b-qpy2arquh5], .illust-dashboard[b-qpy2arquh5] { width: 260px; }
    .illust-phone[b-qpy2arquh5] { width: 130px; height: 230px; }
    .illust-canvas[b-qpy2arquh5] { width: 240px; height: 170px; }
}
