/* _content/Posales.xfatura.Web/Components/Layout/MainLayout.razor.rz.scp.css */
/* CSS Variables for Design System */
/*:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #64748b;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}*/

/* Base Styles */
/** {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: var(--font-sans);
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    line-height: 1.6;
}

    body.menu-open {
        overflow: hidden;
    }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}*/

/* Modern Layout */
/*.modern-layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}*/

/* Header Styles */
/*.modern-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    position: relative;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo {
    height: 40px;
    width: auto;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: none;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

    .nav-link:hover,
    .nav-link.active {
        color: white;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
    }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -1rem;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 4px;
            background: white;
            border-radius: 50%;
        }

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 0.875rem;
}

.btn-outline-light {
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

    .btn-outline-light:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-1px);
        box-shadow: var(--shadow-md);
    }

.btn-link {
    background: none;
    border: none;
    padding: 0.5rem;
}

.language-selector {
    display: flex;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.25rem;
    padding: 0.5rem;
    cursor: pointer;
}*/

/* Mobile Menu */
/*.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: white;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.mobile-brand-logo {
    height: 32px;
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.mobile-nav {
    padding: 1rem 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

    .mobile-nav-link:hover {
        background: var(--bg-tertiary);
        color: var(--primary-color);
    }

    .mobile-nav-link.featured {
        background: var(--primary-color);
        color: white;
        margin: 0 1rem;
        border-radius: var(--radius-md);
    }

        .mobile-nav-link.featured:hover {
            background: var(--primary-dark);
            color: white;
        }

.mobile-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.5rem 1rem;
}*/

/* Main Content */
/*.main-content {
    flex: 1;
    min-height: 0;
}*/

/* Footer */
/*.modern-footer {
    background: var(--text-primary);
    color: white;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    padding: 3rem 0;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.875rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h6 {
    color: white;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.footer-column a,
.footer-column span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

    .footer-column a:hover {
        color: white;
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

    .footer-bottom p {
        margin: 0;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.875rem;
    }

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-link:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-2px);
    }*/

/* Loading Overlay */
/*.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .loading-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.loading-spinner {
    text-align: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}*/

/* Error UI */
/*.error-ui {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--danger-color);
    color: white;
    padding: 1rem;
    z-index: 1000;
    display: none;
    box-shadow: var(--shadow-xl);
}

.error-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.reload-btn {
    color: white;
    text-decoration: underline;
    font-weight: 500;
}

.dismiss-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    margin-left: auto;
}*/

/* Responsive Design */
/*@media (max-width: 768px) {
    .container {
        padding: 0 0.75rem;
    }

    .brand-text {
        display: block;
    }

    .main-nav,
    .header-actions .language-selector {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-actions {
        gap: 0.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .btn {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
}*/
/* _content/Posales.xfatura.Web/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-qzuu0lnzox] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-qzuu0lnzox] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-qzuu0lnzox] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-qzuu0lnzox] {
    font-size: 1.1rem;
}

.bi[b-qzuu0lnzox] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-qzuu0lnzox] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-qzuu0lnzox] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-qzuu0lnzox] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-qzuu0lnzox] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-qzuu0lnzox] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-qzuu0lnzox] {
        padding-bottom: 1rem;
    }

    .nav-item[b-qzuu0lnzox]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-qzuu0lnzox]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-qzuu0lnzox]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-qzuu0lnzox] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-qzuu0lnzox] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-qzuu0lnzox] {
        display: none;
    }

    .nav-scrollable[b-qzuu0lnzox] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/Posales.xfatura.Web/Components/Pages/AboutUs.razor.rz.scp.css */
.modern-page-container[b-ikavombto7] {
    overflow-x: hidden;
}

.hero-section[b-ikavombto7] {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 100px 0;
    position: relative;
}

    .hero-section[b-ikavombto7]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="1000,100 1000,0 0,100"/></svg>') no-repeat;
        background-size: cover;
    }

.hero-title[b-ikavombto7] {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description[b-ikavombto7] {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats[b-ikavombto7] {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item h3[b-ikavombto7] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fbbf24;
}

.stat-item p[b-ikavombto7] {
    opacity: 0.8;
    margin: 0;
}

.hero-card[b-ikavombto7] {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 2rem;
}

.hero-icon[b-ikavombto7] {
    font-size: 4rem;
    color: #fbbf24;
    margin-bottom: 1.5rem;
}

.mission-vision-section[b-ikavombto7] {
    padding: 100px 0;
    background: #f8fafc;
}

.mission-card[b-ikavombto7], .vision-card[b-ikavombto7] {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .mission-card[b-ikavombto7]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #10b981, #059669);
    }

    .vision-card[b-ikavombto7]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    }

.card-icon[b-ikavombto7] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.mission-card .card-icon[b-ikavombto7] {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.vision-card .card-icon[b-ikavombto7] {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.features-section[b-ikavombto7] {
    padding: 100px 0;
    background: white;
}

.section-header[b-ikavombto7] {
    text-align: center;
    margin-bottom: 4rem;
}

    .section-header h2[b-ikavombto7] {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #1f2937;
    }

    .section-header p[b-ikavombto7] {
        font-size: 1.125rem;
        color: #6b7280;
    }

.feature-card[b-ikavombto7] {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .feature-card:hover[b-ikavombto7] {
        transform: translateY(-5px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    }

.feature-icon[b-ikavombto7] {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.why-choose-section[b-ikavombto7] {
    padding: 100px 0;
    background: #f8fafc;
}

.advantage-card[b-ikavombto7] {
    text-align: center;
    padding: 2rem 1rem;
    margin-bottom: 2rem;
}

.advantage-icon[b-ikavombto7] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.ai-section[b-ikavombto7] {
    padding: 100px 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
}

.ai-features[b-ikavombto7] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.ai-feature[b-ikavombto7] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

    .ai-feature i[b-ikavombto7] {
        color: #fbbf24;
        font-size: 1.25rem;
    }

.ai-card[b-ikavombto7] {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 2rem;
}

    .ai-card i[b-ikavombto7] {
        font-size: 4rem;
        color: #fbbf24;
        margin-bottom: 1.5rem;
    }

.cta-section[b-ikavombto7] {
    padding: 100px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
}

.cta-content h2[b-ikavombto7] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p[b-ikavombto7] {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons[b-ikavombto7] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn[b-ikavombto7] {
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-primary[b-ikavombto7] {
    background: #fbbf24;
    border: 2px solid #fbbf24;
    color: #1f2937;
}

    .btn-primary:hover[b-ikavombto7] {
        background: #f59e0b;
        border-color: #f59e0b;
        transform: translateY(-2px);
    }

.btn-outline-light[b-ikavombto7] {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
}

    .btn-outline-light:hover[b-ikavombto7] {
        background: rgba(255, 255, 255, 0.1);
        border-color: white;
        color: white;
    }

@media (max-width: 768px) {
    .hero-title[b-ikavombto7] {
        font-size: 2.5rem;
    }

    .hero-stats[b-ikavombto7] {
        flex-direction: column;
        gap: 1rem;
    }

    .section-header h2[b-ikavombto7] {
        font-size: 2rem;
    }

    .cta-buttons[b-ikavombto7] {
        flex-direction: column;
        align-items: center;
    }

    .btn[b-ikavombto7] {
        width: 250px;
        justify-content: center;
    }
}
/* _content/Posales.xfatura.Web/Components/Pages/Contact.razor.rz.scp.css */
.modern-contact-container[b-wmibm0whcc] {
    background: #f8fafc;
}

.contact-hero-section[b-wmibm0whcc] {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-title[b-wmibm0whcc] {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-description[b-wmibm0whcc] {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-methods-section[b-wmibm0whcc] {
    padding: 80px 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.contact-method-card[b-wmibm0whcc] {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

    .contact-method-card:hover[b-wmibm0whcc] {
        transform: translateY(-5px);
    }

.method-icon[b-wmibm0whcc] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.contact-method-card h3[b-wmibm0whcc] {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-info[b-wmibm0whcc] {
    margin-top: 1.5rem;
}

.contact-link[b-wmibm0whcc] {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

    .contact-link:hover[b-wmibm0whcc] {
        color: #1d4ed8;
    }

.contact-form-section[b-wmibm0whcc] {
    padding: 80px 0;
    background: white;
}

.form-card[b-wmibm0whcc] {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.form-header[b-wmibm0whcc] {
    text-align: center;
    margin-bottom: 3rem;
}

    .form-header h2[b-wmibm0whcc] {
        font-size: 2rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 1rem;
    }

    .form-header p[b-wmibm0whcc] {
        color: #6b7280;
        font-size: 1.125rem;
    }

.form-group[b-wmibm0whcc] {
    margin-bottom: 1.5rem;
}

.form-label[b-wmibm0whcc] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

    .form-label i[b-wmibm0whcc] {
        margin-right: 0.5rem;
        color: #2563eb;
        width: 16px;
    }

.form-control[b-wmibm0whcc] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

    .form-control:focus[b-wmibm0whcc] {
        outline: none;
        border-color: #2563eb;
        background: white;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

.form-help[b-wmibm0whcc] {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.form-actions[b-wmibm0whcc] {
    text-align: center;
    margin-top: 2rem;
}

.btn-submit[b-wmibm0whcc] {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 10px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .btn-submit:hover:not(:disabled)[b-wmibm0whcc] {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    }

    .btn-submit:disabled[b-wmibm0whcc] {
        opacity: 0.7;
        cursor: not-allowed;
    }

.contact-info-card[b-wmibm0whcc] {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

    .contact-info-card h3[b-wmibm0whcc] {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 2rem;
        text-align: center;
    }

.info-item[b-wmibm0whcc] {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

    .info-item:last-child[b-wmibm0whcc] {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

.info-icon[b-wmibm0whcc] {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-content h4[b-wmibm0whcc] {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.info-content p[b-wmibm0whcc] {
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.info-content a[b-wmibm0whcc] {
    color: #2563eb;
    text-decoration: none;
}

    .info-content a:hover[b-wmibm0whcc] {
        color: #1d4ed8;
    }

.social-links[b-wmibm0whcc] {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

    .social-links h4[b-wmibm0whcc] {
        font-size: 1.125rem;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 1rem;
        text-align: center;
    }

.social-buttons[b-wmibm0whcc] {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-btn[b-wmibm0whcc] {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

    .social-btn:hover[b-wmibm0whcc] {
        transform: translateY(-2px);
        color: white;
    }

    .social-btn.facebook[b-wmibm0whcc] {
        background: linear-gradient(135deg, #1877f2, #166fe5);
    }

    .social-btn.twitter[b-wmibm0whcc] {
        background: linear-gradient(135deg, #1da1f2, #0d95e8);
    }

    .social-btn.linkedin[b-wmibm0whcc] {
        background: linear-gradient(135deg, #0077b5, #005885);
    }

.faq-section[b-wmibm0whcc] {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header[b-wmibm0whcc] {
    text-align: center;
    margin-bottom: 4rem;
}

    .section-header h2[b-wmibm0whcc] {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 1rem;
    }

    .section-header p[b-wmibm0whcc] {
        font-size: 1.125rem;
        color: #6b7280;
    }

.faq-item[b-wmibm0whcc] {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

    .faq-item:hover[b-wmibm0whcc] {
        transform: translateY(-2px);
    }

.faq-question[b-wmibm0whcc] {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

    .faq-question i[b-wmibm0whcc] {
        color: #2563eb;
        margin-right: 1rem;
        font-size: 1.25rem;
    }

    .faq-question h4[b-wmibm0whcc] {
        font-size: 1.125rem;
        font-weight: 600;
        color: #1f2937;
        margin: 0;
    }

.faq-item p[b-wmibm0whcc] {
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-title[b-wmibm0whcc] {
        font-size: 2rem;
    }

    .contact-methods-section[b-wmibm0whcc] {
        margin-top: -20px;
    }

    .form-card[b-wmibm0whcc] {
        padding: 2rem;
    }

    .btn-submit[b-wmibm0whcc] {
        width: 100%;
        justify-content: center;
    }

    .social-buttons[b-wmibm0whcc] {
        flex-wrap: wrap;
    }
}
/* _content/Posales.xfatura.Web/Components/Pages/CustomerPaymentResult.razor.rz.scp.css */
.customer-result-container[b-64474adk5a] {
    min-height: 100vh;
    background: #f8f9fa;
}

.loading-card[b-64474adk5a] {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 2rem auto;
    max-width: 400px;
}

.result-card[b-64474adk5a] {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 2rem 0;
}

.result-header[b-64474adk5a] {
    text-align: center;
    padding: 3rem 2rem 2rem;
}

.success-header[b-64474adk5a] {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.error-header[b-64474adk5a] {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
}

.result-icon[b-64474adk5a] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
}

.success-icon[b-64474adk5a] {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.error-icon[b-64474adk5a] {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.result-header h2[b-64474adk5a] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.result-subtitle[b-64474adk5a] {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.result-body[b-64474adk5a] {
    padding: 2rem;
}

.transaction-info[b-64474adk5a] {
    margin: 2rem 0;
}

    .transaction-info h5[b-64474adk5a] {
        color: #495057;
        margin-bottom: 1rem;
        font-weight: 600;
    }

.info-grid[b-64474adk5a] {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
}

.info-item[b-64474adk5a] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

    .info-item:last-child[b-64474adk5a] {
        border-bottom: none;
    }

.info-label[b-64474adk5a] {
    font-weight: 600;
    color: #6c757d;
}

.info-value[b-64474adk5a] {
    font-family: 'Courier New', monospace;
    color: #495057;
}

.result-actions[b-64474adk5a] {
    padding: 2rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn[b-64474adk5a] {
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary[b-64474adk5a] {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: 2px solid transparent;
}

    .btn-primary:hover[b-64474adk5a] {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
        color: white;
    }

.btn-outline-primary[b-64474adk5a] {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

    .btn-outline-primary:hover[b-64474adk5a] {
        background: #007bff;
        color: white;
    }

.btn-outline-secondary[b-64474adk5a] {
    background: transparent;
    color: #6c757d;
    border: 2px solid #6c757d;
}

    .btn-outline-secondary:hover[b-64474adk5a] {
        background: #6c757d;
        color: white;
    }

@media (max-width: 768px) {
    .result-header[b-64474adk5a] {
        padding: 2rem 1rem 1rem;
    }

    .result-body[b-64474adk5a] {
        padding: 1.5rem;
    }

    .result-actions[b-64474adk5a] {
        padding: 1.5rem;
        flex-direction: column;
    }

    .btn[b-64474adk5a] {
        width: 100%;
        justify-content: center;
    }

    .info-item[b-64474adk5a] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}
/* _content/Posales.xfatura.Web/Components/Pages/Home.razor.rz.scp.css */
/* ===============================
   Home Page (Hero + Sections)
   =============================== */

/* Root container */
.modern-home-container[b-ef1117bnvz] {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}

/* =================================
   HERO SECTION
   ================================= */
.hero-section[b-ef1117bnvz] {
    background:
        linear-gradient(155deg,#1d4ed8 0%,#1e3a8a 55%,#0f172a 100%);
    color:#f8fafc;
    padding:110px 0 95px;
    position:relative;
    overflow:hidden;
}

.hero-section[b-ef1117bnvz]::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 18% 28%,rgba(255,255,255,.18),rgba(255,255,255,0) 58%),
        radial-gradient(circle at 82% 72%,rgba(59,130,246,.28),rgba(59,130,246,0) 63%);
    mix-blend-mode:screen;
    pointer-events:none;
}

.hero-section[b-ef1117bnvz]::after{
    content:"";
    position:absolute;
    top:-140px;right:-140px;
    width:440px;height:440px;
    background:radial-gradient(circle,#3b82f6 0%,rgba(59,130,246,0) 70%);
    opacity:.23;
    filter:blur(34px);
    pointer-events:none;
}

.hero-grid[b-ef1117bnvz] {
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:3.5rem;
}

.hero-left[b-ef1117bnvz] {
    flex:1 1 460px;
    min-width:300px;
}

.hero-right[b-ef1117bnvz] {
    flex:1 1 420px;
    min-width:260px;
    position:relative;
    z-index:2;
}

/* Title & Accent */
.hero-title[b-ef1117bnvz]{
    font-size:3.15rem;
    font-weight:700;
    line-height:1.15;
    margin:0 0 1.25rem;
    letter-spacing:.5px;
}

@media (min-width:992px){
    .hero-title[b-ef1117bnvz]{font-size:3.85rem;}
}

.brand-highlight[b-ef1117bnvz]{
    display:inline-block;
    background:linear-gradient(90deg,#fbbf24,#f59e0b);
    color:#1f2937;
    padding:.38rem .95rem .45rem;
    border-radius:.85rem;
    font-weight:700;
    letter-spacing:.5px;
    box-shadow:0 6px 18px -4px rgba(251,191,36,.55),0 2px 6px -2px rgba(0,0,0,.35);
    position:relative;
}

.brand-highlight[b-ef1117bnvz]::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    background:linear-gradient(120deg,rgba(255,255,255,.55),rgba(255,255,255,0) 65%);
    mix-blend-mode:overlay;
    pointer-events:none;
}

.hero-accent-line[b-ef1117bnvz]{
    background:linear-gradient(90deg,#93c5fd,#bfdbfe,#eff6ff);
    -webkit-background-clip:text;
    color:transparent;
    font-weight:600;
}

/* Subline */
.hero-description[b-ef1117bnvz],
.hero-subline[b-ef1117bnvz]{
    font-size:1.13rem;
    max-width:640px;
    opacity:.92;
    margin:0 0 2.1rem;
    line-height:1.55;
}

/* Buttons */
.hero-buttons[b-ef1117bnvz]{
    display:flex;
    gap:1rem;
    flex-wrap:wrap;
    margin:0 0 2.2rem;
}

.btn[b-ef1117bnvz]{
    padding:.82rem 1.55rem;
    border-radius:.9rem;
    font-weight:600;
    font-size:.95rem;
    display:inline-flex;
    align-items:center;
    gap:.55rem;
    text-decoration:none;
    position:relative;
    border:2px solid transparent;
    transition:all .35s cubic-bezier(.4,.2,.2,1);
    cursor:pointer;
}

.btn-primary[b-ef1117bnvz]{
    background:linear-gradient(90deg,#2563eb,#1d4ed8);
    color:#fff;
    box-shadow:0 8px 22px -6px rgba(37,99,235,.55),0 2px 6px -2px rgba(0,0,0,.35);
}

.btn-primary:hover[b-ef1117bnvz]{
    transform:translateY(-3px);
    box-shadow:0 14px 32px -6px rgba(37,99,235,.6),0 4px 10px -3px rgba(0,0,0,.4);
    color:#fff;
}

.btn-soft[b-ef1117bnvz]{
    backdrop-filter:blur(14px);
    background:rgba(255,255,255,.14);
    border-color:rgba(255,255,255,.28);
    color:#fff;
}

.btn-soft:hover[b-ef1117bnvz]{
    background:rgba(255,255,255,.24);
    border-color:rgba(255,255,255,.42);
    color:#fff;
    transform:translateY(-3px);
}

/* Badges */
.hero-badges[b-ef1117bnvz]{
    display:flex;
    flex-wrap:wrap;
    gap:.7rem;
}

.hero-badge[b-ef1117bnvz]{
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.25);
    color:#fff;
    font-size:.78rem;
    letter-spacing:.4px;
    padding:.55rem .9rem;
    border-radius:999px;
    backdrop-filter:blur(10px);
    position:relative;
    overflow:hidden;
    transition:all .45s ease;
}

.hero-badge[b-ef1117bnvz]::before{
    content:"";
    position:absolute;
    left:-30%;
    top:0;
    width:60%;
    height:100%;
    background:linear-gradient(90deg,rgba(255,255,255,.38),rgba(255,255,255,0));
    transform:skewX(-18deg) translateX(-40%);
    transition:transform .95s ease;
}

.hero-badge:hover[b-ef1117bnvz]::before{transform:skewX(-18deg) translateX(165%);}
.hero-badge:hover[b-ef1117bnvz]{
    background:rgba(255,255,255,.24);
    border-color:rgba(255,255,255,.45);
}

/* Floating Cards (optional visual) */
.hero-visual[b-ef1117bnvz]{
    position:relative;
    padding:1.5rem 0 0;
}

.hero-card[b-ef1117bnvz]{
    background:rgba(255,255,255,.10);
    backdrop-filter:blur(22px);
    border:1px solid rgba(255,255,255,.20);
    border-radius:1.35rem;
    padding:1.85rem 1.6rem;
    text-align:center;
    margin-bottom:1.15rem;
    color:#fff;
    box-shadow:0 10px 34px -10px rgba(0,0,0,.35);
    transition:transform .6s ease, box-shadow .6s ease;
}

.hero-card:hover[b-ef1117bnvz]{
    transform:translateY(-6px);
    box-shadow:0 18px 48px -12px rgba(0,0,0,.45);
}

.floating[b-ef1117bnvz]{
    animation:float-b-ef1117bnvz 6s ease-in-out infinite;
}
.floating-delayed[b-ef1117bnvz]{
    animation:float-b-ef1117bnvz 6s ease-in-out infinite;
    animation-delay:-3s;
}
@keyframes float-b-ef1117bnvz {
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-20px);}
}

.card-icon[b-ef1117bnvz]{
    width:60px;height:60px;
    border-radius:18px;
    background:#fbbf24;
    color:#1f2937;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.55rem;
    margin:0 auto 1rem;
    font-weight:700;
    box-shadow:0 6px 16px -4px rgba(251,191,36,.6);
}
.card-icon.secondary[b-ef1117bnvz]{
    background:#10b981;
    color:#fff;
    box-shadow:0 6px 16px -4px rgba(16,185,129,.55);
}

/* =================================
   STATS SECTION
   ================================= */
.stats-section[b-ef1117bnvz]{
    background:#fff;
    padding:82px 0 90px;
    margin-top:-55px;
    position:relative;
    z-index:5;
}

.stat-grid[b-ef1117bnvz]{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:2rem;
}

.stat-card[b-ef1117bnvz]{
    text-align:center;
    padding:2.1rem 1.2rem;
    background:linear-gradient(180deg,#ffffff,#f1f5f9);
    border-radius:18px;
    box-shadow:0 10px 28px -12px rgba(0,0,0,.15),0 4px 12px -6px rgba(0,0,0,.08);
    transition:transform .35s ease, box-shadow .35s ease;
}

.stat-card:hover[b-ef1117bnvz]{
    transform:translateY(-6px);
    box-shadow:0 16px 40px -10px rgba(0,0,0,.22),0 6px 18px -8px rgba(0,0,0,.12);
}

.stat-number[b-ef1117bnvz]{
    font-size:3rem;
    font-weight:700;
    color:#2563eb;
    margin-bottom:.55rem;
}
.stat-label[b-ef1117bnvz]{
    font-size:1.18rem;
    font-weight:600;
    color:#1f2937;
    margin-bottom:.35rem;
}
.stat-description[b-ef1117bnvz]{
    color:#64748b;
    font-size:.8rem;
    letter-spacing:.25px;
}

/* =================================
   FEATURES SECTION
   ================================= */
.features-section[b-ef1117bnvz]{
    background:#f8fafc;
    padding:105px 0;
}

.section-header[b-ef1117bnvz]{
    text-align:center;
    margin-bottom:4rem;
}

.section-header h2[b-ef1117bnvz]{
    font-size:2.55rem;
    font-weight:700;
    color:#1f2937;
    margin:0 0 1rem;
}
.section-header p[b-ef1117bnvz]{
    font-size:1.07rem;
    color:#64748b;
    max-width:760px;
    margin:0 auto;
}

.feature-grid[b-ef1117bnvz]{
    display:grid;
    gap:2.4rem;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
}

.feature-card[b-ef1117bnvz]{
    background:#fff;
    padding:2.35rem 2rem 2.4rem;
    border-radius:22px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    text-align:center;
    height:100%;
    margin:0;
    position:relative;
    overflow:hidden;
    transition:transform .4s ease, box-shadow .4s ease;
}

.feature-card[b-ef1117bnvz]::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(145deg,rgba(255,255,255,0) 40%,rgba(37,99,235,.08));
    opacity:0;
    transition:opacity .45s ease;
}

.feature-card:hover[b-ef1117bnvz]{
    transform:translateY(-8px);
    box-shadow:0 20px 46px -10px rgba(0,0,0,.15);
}
.feature-card:hover[b-ef1117bnvz]::after{
    opacity:1;
}

.feature-icon[b-ef1117bnvz]{
    width:74px;height:74px;
    border-radius:18px;
    background:linear-gradient(140deg,#2563eb,#1d4ed8 55%,#1e40af);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.65rem;
    margin:0 auto 1.55rem;
    box-shadow:0 6px 18px -6px rgba(37,99,235,.6);
}

.feature-title[b-ef1117bnvz]{
    font-size:1.15rem;
    font-weight:600;
    margin-bottom:.55rem;
    color:#1f2937;
}

.feature-text[b-ef1117bnvz]{
    font-size:.89rem;
    line-height:1.45;
    color:#64748b;
    margin:0 0 1.2rem;
}

.feature-link[b-ef1117bnvz]{
    color:#2563eb;
    text-decoration:none;
    font-weight:500;
    font-size:.8rem;
    letter-spacing:.4px;
    display:inline-flex;
    align-items:center;
    gap:.35rem;
    transition:color .3s ease;
}
.feature-link:hover[b-ef1117bnvz]{
    color:#1d4ed8;
}

/* =================================
   WHY CHOOSE / ADVANTAGES
   ================================= */
.why-choose-section[b-ef1117bnvz]{
    background:#fff;
    padding:100px 0;
}

.advantage-grid[b-ef1117bnvz]{
    display:grid;
    gap:2rem;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
}

.advantage-card[b-ef1117bnvz]{
    text-align:center;
    padding:2rem 1.1rem;
    margin:0;
}

.advantage-icon[b-ef1117bnvz]{
    width:84px;height:84px;
    border-radius:50%;
    background:linear-gradient(135deg,#10b981,#059669);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2rem;
    margin:0 auto 1.4rem;
    box-shadow:0 6px 18px -6px rgba(16,185,129,.55);
}

/* =================================
   AI SECTION
   ================================= */
.ai-section[b-ef1117bnvz]{
    background:linear-gradient(135deg,#1f2937 0%,#111827 100%);
    color:#fff;
    padding:105px 0;
    position:relative;
    overflow:hidden;
}

.ai-section[b-ef1117bnvz]::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 20% 30%,rgba(255,255,255,.09),transparent 60%),
        radial-gradient(circle at 80% 70%,rgba(59,130,246,.18),transparent 65%);
    mix-blend-mode:overlay;
    pointer-events:none;
}

.ai-layout[b-ef1117bnvz]{
    display:grid;
    gap:3rem;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
}

.ai-features[b-ef1117bnvz]{
    display:flex;
    flex-direction:column;
    gap:1rem;
    margin-top:1.2rem;
}

.ai-feature[b-ef1117bnvz]{
    display:flex;
    align-items:flex-start;
    gap:1rem;
    padding:1rem .95rem 1rem 1.05rem;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.14);
    border-radius:14px;
    backdrop-filter:blur(10px);
    font-size:.9rem;
    line-height:1.35;
    transition:background .35s ease,border-color .35s ease;
}
.ai-feature:hover[b-ef1117bnvz]{
    background:rgba(255,255,255,.14);
    border-color:rgba(255,255,255,.25);
}
.ai-feature i[b-ef1117bnvz]{
    color:#fbbf24;
    font-size:1.2rem;
    margin-top:.2rem;
}

.ai-dashboard[b-ef1117bnvz]{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.18);
    border-radius:20px;
    padding:2.1rem 1.9rem 2.3rem;
    backdrop-filter:blur(22px);
    margin:0;
    box-shadow:0 10px 40px -12px rgba(0,0,0,.55);
}

.dashboard-header[b-ef1117bnvz]{
    margin:0 0 1.65rem;
    text-align:center;
}

.chart-placeholder[b-ef1117bnvz]{
    background:rgba(255,255,255,.08);
    border-radius:12px;
    padding:3rem 1rem;
    text-align:center;
    margin:0 0 1.8rem;
    position:relative;
    overflow:hidden;
}
.chart-placeholder i[b-ef1117bnvz]{
    font-size:3rem;
    color:#fbbf24;
    margin-bottom:1rem;
}

.ai-insights[b-ef1117bnvz]{
    display:flex;
    gap:1rem;
    flex-wrap:wrap;
}

.insight-item[b-ef1117bnvz]{
    flex:1 1 120px;
    text-align:center;
    padding:1rem .75rem 1.05rem;
    background:rgba(255,255,255,.08);
    border-radius:12px;
    border:1px solid rgba(255,255,255,.18);
}

.insight-value[b-ef1117bnvz]{
    display:block;
    font-size:1.45rem;
    font-weight:700;
    color:#10b981;
    margin-bottom:.35rem;
}
.insight-label[b-ef1117bnvz]{
    font-size:.74rem;
    letter-spacing:.4px;
    opacity:.8;
}

/* =================================
   CTA SECTION
   ================================= */
.cta-section[b-ef1117bnvz]{
    background:linear-gradient(135deg,#2563eb 0%,#1d4ed8 100%);
    color:#fff;
    padding:105px 0;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.cta-section[b-ef1117bnvz]::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(60deg,rgba(255,255,255,.08),rgba(255,255,255,0)),
        radial-gradient(circle at 75% 35%,rgba(255,255,255,.20),rgba(255,255,255,0) 65%);
    mix-blend-mode:overlay;
    pointer-events:none;
}

.cta-content[b-ef1117bnvz]{
    position:relative;
    z-index:2;
    max-width:880px;
    margin:0 auto;
}

.cta-content h2[b-ef1117bnvz]{
    font-size:2.55rem;
    font-weight:700;
    margin:0 0 1rem;
    letter-spacing:.5px;
}
.cta-content p[b-ef1117bnvz]{
    font-size:1.18rem;
    margin:0 0 2.15rem;
    opacity:.92;
    max-width:720px;
    margin-left:auto;
    margin-right:auto;
}

.cta-buttons[b-ef1117bnvz]{
    display:flex;
    justify-content:center;
    gap:1rem;
    flex-wrap:wrap;
}

/* =================================
   BUTTON VARIANTS (shared)
   ================================= */
.btn-outline-primary[b-ef1117bnvz]{
    background:transparent;
    color:#2563eb;
    border-color:#2563eb;
}
.btn-outline-primary:hover[b-ef1117bnvz]{
    background:#2563eb;
    color:#fff;
    transform:translateY(-3px);
}

.btn-light[b-ef1117bnvz]{
    background:#fff;
    color:#1f2937;
    border-color:#fff;
    box-shadow:0 4px 20px -6px rgba(255,255,255,.55);
}
.btn-light:hover[b-ef1117bnvz]{
    background:#f8fafc;
    transform:translateY(-3px);
    color:#1f2937;
}

.btn-outline-light[b-ef1117bnvz]{
    background:transparent;
    color:#fff;
    border-color:rgba(255,255,255,.55);
}
.btn-outline-light:hover[b-ef1117bnvz]{
    background:rgba(255,255,255,.18);
    border-color:#fff;
    color:#fff;
}

/* =================================
   RESPONSIVE
   ================================= */
@media (max-width:992px){
    .hero-title[b-ef1117bnvz]{font-size:2.55rem;}
    .hero-description[b-ef1117bnvz],.hero-subline[b-ef1117bnvz]{font-size:1rem;}
    .hero-buttons[b-ef1117bnvz]{flex-direction:row;}
    .hero-grid[b-ef1117bnvz]{flex-direction:column;}
}

@media (max-width:640px){
    .hero-title[b-ef1117bnvz]{font-size:2.25rem;}
    .hero-buttons[b-ef1117bnvz]{flex-direction:column;}
    .btn[b-ef1117bnvz]{width:100%;justify-content:center;}
    .cta-content h2[b-ef1117bnvz]{font-size:2.05rem;}
    .cta-content p[b-ef1117bnvz]{font-size:1.05rem;}
    .ai-insights[b-ef1117bnvz]{flex-direction:column;}
}

.min-vh-75[b-ef1117bnvz]{min-height:75vh;}
/* _content/Posales.xfatura.Web/Components/Pages/Payment.razor.rz.scp.css */
/* Modern Payment Styles */
.modern-payment-container[b-3xk6uxgr9r] {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 0;
}

.modern-loading[b-3xk6uxgr9r] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-card[b-3xk6uxgr9r] {
    background: white;
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 400px;
}

.loading-animation[b-3xk6uxgr9r] {
    margin-bottom: 2rem;
}

.loading-spinner-modern[b-3xk6uxgr9r] {
    width: 60px;
    height: 60px;
    border: 4px solid #e2e8f0;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.loading-dots[b-3xk6uxgr9r] {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.dot[b-3xk6uxgr9r] {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse-b-3xk6uxgr9r 1.5s ease-in-out infinite;
}

    .dot:nth-child(2)[b-3xk6uxgr9r] {
        animation-delay: 0.2s;
    }

    .dot:nth-child(3)[b-3xk6uxgr9r] {
        animation-delay: 0.4s;
    }

@keyframes pulse-b-3xk6uxgr9r {
    0%, 80%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }

    40% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* State Cards */
.error-state[b-3xk6uxgr9r], .success-state[b-3xk6uxgr9r], .warning-state[b-3xk6uxgr9r] {
    background: white;
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.error-icon[b-3xk6uxgr9r], .success-icon[b-3xk6uxgr9r], .warning-icon[b-3xk6uxgr9r] {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.error-icon[b-3xk6uxgr9r] {
    color: var(--danger-color);
}

.success-icon[b-3xk6uxgr9r] {
    color: var(--success-color);
}

.warning-icon[b-3xk6uxgr9r] {
    color: var(--warning-color);
}

.payment-details[b-3xk6uxgr9r], .warning-details[b-3xk6uxgr9r] {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.detail-item[b-3xk6uxgr9r] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

    .detail-item:last-child[b-3xk6uxgr9r] {
        margin-bottom: 0;
    }

.label[b-3xk6uxgr9r] {
    color: var(--text-secondary);
}

.value[b-3xk6uxgr9r] {
    font-weight: 600;
}

.amount[b-3xk6uxgr9r] {
    color: var(--success-color);
    font-size: 1.125rem;
}

/* Payment Form */
.payment-wrapper[b-3xk6uxgr9r] {
    max-width: 1200px;
    margin: 0 auto;
}

.payment-header[b-3xk6uxgr9r] {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.payment-progress[b-3xk6uxgr9r] {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.progress-step[b-3xk6uxgr9r] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-number[b-3xk6uxgr9r] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.progress-step.active .step-number[b-3xk6uxgr9r] {
    background: var(--primary-color);
    color: white;
}

.progress-line[b-3xk6uxgr9r] {
    height: 2px;
    background: var(--border-color);
    flex: 1;
    margin: 0 1rem;
    margin-top: -1rem;
}

.invoice-summary[b-3xk6uxgr9r] {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    overflow: hidden;
    position: sticky;
    top: 2rem;
}

.invoice-header[b-3xk6uxgr9r] {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.invoice-icon[b-3xk6uxgr9r] {
    font-size: 2rem;
    opacity: 0.9;
}

.invoice-title h5[b-3xk6uxgr9r] {
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.invoice-number[b-3xk6uxgr9r] {
    margin: 0;
    opacity: 0.8;
    font-size: 0.875rem;
}

.invoice-details[b-3xk6uxgr9r] {
    padding: 1.5rem;
}

.detail-row[b-3xk6uxgr9r] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-light);
}

    .detail-row:last-child[b-3xk6uxgr9r],
    .detail-row.total-row[b-3xk6uxgr9r] {
        border-bottom: none;
        margin-bottom: 0;
    }

.total-row[b-3xk6uxgr9r] {
    background: var(--bg-secondary);
    margin: 0 -1.5rem;
    padding: 1rem 1.5rem;
    font-weight: 600;
}

.total-amount[b-3xk6uxgr9r] {
    color: var(--success-color);
    font-size: 1.25rem;
}

.invoice-note[b-3xk6uxgr9r] {
    background: var(--info-color);
    background: rgba(59, 130, 246, 0.1);
    color: var(--info-color);
    padding: 1rem 1.5rem;
    margin: 0 -1.5rem -1.5rem -1.5rem;
    font-size: 0.875rem;
}

.security-badges[b-3xk6uxgr9r] {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.5rem 1.5rem;
    margin: 0 -1.5rem -1.5rem -1.5rem;
    background: var(--bg-secondary);
}

.security-badge[b-3xk6uxgr9r] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--success-color);
    font-size: 0.875rem;
    font-weight: 500;
}

.payment-form-card[b-3xk6uxgr9r] {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    overflow: hidden;
}

.form-header[b-3xk6uxgr9r] {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

    .form-header h4[b-3xk6uxgr9r] {
        margin: 0 0 0.5rem 0;
        color: var(--text-primary);
    }

.modern-payment-form[b-3xk6uxgr9r] {
    padding: 2rem;
}

.form-section[b-3xk6uxgr9r] {
    margin-bottom: 2rem;
}

.form-group[b-3xk6uxgr9r] {
    margin-bottom: 1.5rem;
}

.form-label[b-3xk6uxgr9r] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-control[b-3xk6uxgr9r] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

    .form-control:focus[b-3xk6uxgr9r] {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

.card-input-wrapper[b-3xk6uxgr9r] {
    position: relative;
}

.card-brand[b-3xk6uxgr9r] {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1.25rem;
}

.form-row[b-3xk6uxgr9r] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.expiry-inputs[b-3xk6uxgr9r] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .expiry-inputs .form-control[b-3xk6uxgr9r] {
        flex: 1;
    }

.expiry-separator[b-3xk6uxgr9r] {
    font-weight: 600;
    color: var(--text-secondary);
}

.cvc-input-wrapper[b-3xk6uxgr9r] {
    position: relative;
}

.cvc-hint[b-3xk6uxgr9r] {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    cursor: help;
}

.installment-options[b-3xk6uxgr9r] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
}

.installment-option[b-3xk6uxgr9r] {
    position: relative;
    cursor: pointer;
}

    .installment-option input[b-3xk6uxgr9r] {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

.installment-content[b-3xk6uxgr9r] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    background: white;
}

    .installment-option.selected .installment-content[b-3xk6uxgr9r],
    .installment-content:hover[b-3xk6uxgr9r] {
        border-color: var(--primary-color);
        background: rgba(37, 99, 235, 0.05);
    }

.installment-count[b-3xk6uxgr9r] {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.installment-amount[b-3xk6uxgr9r] {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.payment-summary[b-3xk6uxgr9r] {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

.summary-row[b-3xk6uxgr9r] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

    .summary-row.total[b-3xk6uxgr9r] {
        font-weight: 600;
        font-size: 1.125rem;
        color: var(--success-color);
        padding-top: 0.5rem;
        border-top: 2px solid var(--border-color);
        margin-top: 0.5rem;
        margin-bottom: 0;
    }

.btn-pay[b-3xk6uxgr9r] {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .btn-pay:hover:not(:disabled)[b-3xk6uxgr9r] {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    }

    .btn-pay:disabled[b-3xk6uxgr9r] {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none;
    }

.btn-loading[b-3xk6uxgr9r], .btn-content[b-3xk6uxgr9r] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-spinner[b-3xk6uxgr9r] {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .payment-wrapper[b-3xk6uxgr9r] {
        padding: 0 1rem;
    }

    .payment-progress[b-3xk6uxgr9r] {
        flex-direction: column;
        gap: 1rem;
    }

    .progress-line[b-3xk6uxgr9r] {
        display: none;
    }

    .form-row[b-3xk6uxgr9r] {
        grid-template-columns: 1fr;
    }

    .installment-options[b-3xk6uxgr9r] {
        grid-template-columns: repeat(2, 1fr);
    }

    .invoice-summary[b-3xk6uxgr9r] {
        position: static;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .installment-options[b-3xk6uxgr9r] {
        grid-template-columns: 1fr;
    }

    .security-badges[b-3xk6uxgr9r] {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.installment-commission[b-3xk6uxgr9r] {
    font-size: 0.75rem;
    color: var(--warning-color);
    font-style: italic;
    margin-top: 0.25rem;
}

.alert-info[b-3xk6uxgr9r] {
    background-color: rgba(13, 202, 240, 0.1);
    border: 1px solid rgba(13, 202, 240, 0.2);
    color: var(--info-color);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}
/* _content/Posales.xfatura.Web/Components/Pages/PaymentResult.razor.rz.scp.css */
.modern-result-container[b-0ukded8bmf] {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.loading-state[b-0ukded8bmf], .success-state[b-0ukded8bmf], .error-state[b-0ukded8bmf] {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

.loading-animation[b-0ukded8bmf] {
    margin-bottom: 2rem;
}

.spinner-modern[b-0ukded8bmf] {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin-b-0ukded8bmf 1s linear infinite;
    margin: 0 auto 1rem;
}

.loading-dots[b-0ukded8bmf] {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot[b-0ukded8bmf] {
    width: 8px;
    height: 8px;
    background: #667eea;
    border-radius: 50%;
    animation: bounce-b-0ukded8bmf 1.4s infinite ease-in-out;
}

    .dot:nth-child(1)[b-0ukded8bmf] {
        animation-delay: -0.32s;
    }

    .dot:nth-child(2)[b-0ukded8bmf] {
        animation-delay: -0.16s;
    }

.success-animation[b-0ukded8bmf], .error-animation[b-0ukded8bmf] {
    margin-bottom: 2rem;
}

.success-icon[b-0ukded8bmf], .error-icon[b-0ukded8bmf] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: scaleIn-b-0ukded8bmf 0.5s ease-out;
}

.success-icon[b-0ukded8bmf] {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    font-size: 2.5rem;
}

.error-icon[b-0ukded8bmf] {
    background: linear-gradient(135deg, #f44336, #da190b);
    color: white;
    font-size: 2.5rem;
}

.success-title[b-0ukded8bmf], .error-title[b-0ukded8bmf] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.success-title[b-0ukded8bmf] {
    color: #4CAF50;
}

.error-title[b-0ukded8bmf] {
    color: #f44336;
}

.success-message[b-0ukded8bmf], .error-message[b-0ukded8bmf] {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.transaction-details[b-0ukded8bmf] {
    margin: 2rem 0;
}

.detail-card[b-0ukded8bmf] {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 1.5rem;
}

    .detail-card.error-card[b-0ukded8bmf] {
        background: #fff5f5;
        border-color: #fed7d7;
    }

.detail-row[b-0ukded8bmf] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

    .detail-row:last-child[b-0ukded8bmf] {
        margin-bottom: 0;
    }

.detail-label[b-0ukded8bmf] {
    font-weight: 600;
    color: #555;
}

.detail-value[b-0ukded8bmf] {
    color: #333;
    font-family: 'Courier New', monospace;
}

.success-info[b-0ukded8bmf], .error-info[b-0ukded8bmf] {
    margin: 2rem 0;
}

.success-info[b-0ukded8bmf] {
    background: #e8f5e8;
    color: #4CAF50;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 500;
}

.action-buttons[b-0ukded8bmf] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn[b-0ukded8bmf] {
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary[b-0ukded8bmf] {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

    .btn-primary:hover[b-0ukded8bmf] {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
        color: white;
    }

.btn-outline-secondary[b-0ukded8bmf] {
    background: transparent;
    color: #6c757d;
    border: 2px solid #6c757d;
}

    .btn-outline-secondary:hover[b-0ukded8bmf] {
        background: #6c757d;
        color: white;
    }

@keyframes spin-b-0ukded8bmf {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes bounce-b-0ukded8bmf {
    0%, 80%, 100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

@keyframes scaleIn-b-0ukded8bmf {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .modern-result-container[b-0ukded8bmf] {
        padding: 1rem;
    }

    .loading-state[b-0ukded8bmf], .success-state[b-0ukded8bmf], .error-state[b-0ukded8bmf] {
        padding: 2rem;
    }

    .success-title[b-0ukded8bmf], .error-title[b-0ukded8bmf] {
        font-size: 1.5rem;
    }

    .action-buttons[b-0ukded8bmf] {
        flex-direction: column;
    }

    .btn[b-0ukded8bmf] {
        width: 100%;
        justify-content: center;
    }
}
