@import '_content/Blazor.SignaturePad/Blazor.SignaturePad.bundle.scp.css';
@import '_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bwfmfibeoq.bundle.scp.css';
@import 'Client.bundle.scp.css';

/* _content/LogisticsPro.WebUI.Server/Components/Account/Pages/Login.razor.rz.scp.css */
/* Background Pattern */
.background-pattern[b-cznvilahd3] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

/* Container */
.flux-login-container[b-cznvilahd3] {
    height: 100%;
    display: flex;
    align-items: flex-start; /* Change from center to flex-start */
    justify-content: center;
    padding: 0;
    position: relative;
    box-sizing: border-box;
    min-height: 0; /* Allows flex shrinking */
    padding-top: 17.2vh; /* Golden ratio positioning from top */
}

/* Removed duplicate background - using .background-pattern element instead */

/* Login Card */
.flux-login-card[b-cznvilahd3] {
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 32px;
    margin: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fluxFadeInUp-b-cznvilahd3 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    max-height: calc(100% - 2rem); /* Ensure card doesn't exceed container */
    overflow-y: auto; /* Allow scrolling within card if needed */
}

.flux-login-card:hover[b-cznvilahd3] {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Typography */
.flux-login-header[b-cznvilahd3] {
    text-align: center;
    margin-bottom: var(--flux-space-6);
}

/* Logo Container */
.flux-logo-container[b-cznvilahd3] {
    margin-bottom: var(--flux-space-5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.flux-logo[b-cznvilahd3] {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.15));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fluxLogoFloat-b-cznvilahd3 3s ease-in-out infinite;
}

.flux-logo:hover[b-cznvilahd3] {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 20px rgba(59, 130, 246, 0.25));
}

.flux-title[b-cznvilahd3] {
    font-family: var(--body-font);
    font-size: var(--flux-text-2xl);
    font-weight: 700;
    color: var(--flux-gray-900);
    margin: 0 0 8px 0;
}

.flux-subtitle[b-cznvilahd3] {
    font-size: var(--flux-text-base);
    color: var(--flux-gray-600);
    margin: 0 0 0 0;
    font-weight: 400;
    line-height: 1.5;
}

/* Form */
.flux-form[b-cznvilahd3] {
    width: 100%;
}

/* Input Groups with Floating Labels */
.flux-input-group[b-cznvilahd3] {
    position: relative;
    margin-bottom: 24px;
}

.flux-input[b-cznvilahd3] {
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(156, 163, 175, 0.3);
    border-radius: 14px;
    padding: 18px 48px 8px 16px;
    font-size: var(--flux-text-base);
    color: var(--flux-gray-900);
    transition: all 0.2s ease;
    outline: none;
    text-align: right;
    font-family: inherit;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    direction: rtl;
}

.flux-input:focus[b-cznvilahd3] {
    border-color: var(--flux-primary-solid);
    box-shadow: 0 0 0 3px var(--flux-primary-soft);
    background: rgba(255, 255, 255, 0.95);
}

.flux-input.error[b-cznvilahd3] {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.flux-input.error:focus[b-cznvilahd3] {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25);
}

.flux-label[b-cznvilahd3] {
    position: absolute;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--flux-gray-600);
    font-size: var(--flux-text-base);
    pointer-events: none;
    transition: all 0.2s ease;
    background: transparent;
    z-index: 2;
}

.flux-input:focus + .flux-label[b-cznvilahd3],
.flux-input:not(:placeholder-shown) + .flux-label[b-cznvilahd3] {
    top: 2px;
    transform: translateY(0) scale(0.75);
    color: var(--flux-primary-solid);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    padding: 0 4px;
    right: 40px;
}

.flux-input-icon[b-cznvilahd3] {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--flux-gray-600);
    transition: color 0.2s ease;
    font-size: 20px;
    z-index: 1;
}

.flux-input:focus ~ .flux-input-icon[b-cznvilahd3] {
    color: var(--flux-primary-solid);
}

/* Primary Button */
.flux-btn-primary[b-cznvilahd3] {
    width: 100%;
    background: var(--flux-primary);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    font-size: var(--flux-text-base);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.25);
    position: relative;
    overflow: hidden;
    margin-top: var(--flux-space-4);
}

.flux-btn-primary:hover:not(:disabled)[b-cznvilahd3] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.flux-btn-primary:active:not(:disabled)[b-cznvilahd3] {
    transform: translateY(1px) scale(0.98);
}

.flux-btn-primary:disabled[b-cznvilahd3],
.flux-btn-primary.loading[b-cznvilahd3] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* OTP Container */
.flux-otp-container[b-cznvilahd3] {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: var(--flux-space-5) 0;
    direction: ltr;
}

.flux-otp-input[b-cznvilahd3] {
    width: 48px;
    height: 48px;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(156, 163, 175, 0.3);
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--flux-gray-900);
    transition: all 0.2s ease;
    outline: none;
}

.flux-otp-input:focus[b-cznvilahd3] {
    border-color: var(--flux-primary-solid);
    box-shadow: 0 0 0 3px var(--flux-primary-soft);
    background: rgba(255, 255, 255, 0.95);
}

/* Regular Number Input Field */
.flux-number-input[b-cznvilahd3] {
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(156, 163, 175, 0.3);
    border-radius: 14px;
    padding: 16px;
    font-size: var(--flux-text-base);
    color: var(--flux-gray-900);
    transition: all 0.2s ease;
    outline: none;
    text-align: right;
    font-family: inherit;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    direction: rtl;
}

.flux-number-input:focus[b-cznvilahd3] {
    border-color: var(--flux-primary-solid);
    box-shadow: 0 0 0 3px var(--flux-primary-soft);
    background: rgba(255, 255, 255, 0.95);
}

.flux-number-input.error[b-cznvilahd3] {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.flux-number-input.error:focus[b-cznvilahd3] {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25);
}

/* Error Messages */
.flux-error-message[b-cznvilahd3] {
    color: #ef4444;
    font-size: 0.875rem;
    text-align: center;
    margin: var(--flux-space-4) 0;
    padding: 12px 16px;
    background: rgba(254, 242, 242, 0.9);
    border: 1px solid rgba(254, 202, 202, 0.5);
    border-radius: 10px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.flux-error-message.show[b-cznvilahd3] {
    opacity: 1;
    transform: translateY(0);
}

/* Form Footer & Links */
.flux-form-footer[b-cznvilahd3] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--flux-space-3);
    margin-top: var(--flux-space-5);
    font-size: 0.875rem;
    color: var(--flux-gray-600);
}

.flux-link[b-cznvilahd3] {
    color: var(--flux-primary-solid);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.flux-link:hover[b-cznvilahd3] {
    text-decoration: underline;
    opacity: 0.8;
}

.flux-back-button[b-cznvilahd3] {
    background: none;
    border: none;
    color: var(--flux-gray-600);
    cursor: pointer;
    font-size: 0.875rem;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: var(--flux-space-4) auto 0;
}

.flux-back-button:hover[b-cznvilahd3] {
    background: rgba(243, 244, 246, 0.8);
    color: var(--flux-gray-900);
}

/* Loading Spinner */
.flux-loading-spinner[b-cznvilahd3] {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: fluxSpin-b-cznvilahd3 1s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
}

/* Animations */
@keyframes fluxFadeInUp-b-cznvilahd3 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fluxSpin-b-cznvilahd3 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes fluxLogoFloat-b-cznvilahd3 {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* RTL Adjustments */
[dir="rtl"] .flux-input[b-cznvilahd3] {
    padding: 18px 48px 8px 16px;
    text-align: right;
}

[dir="rtl"] .flux-label[b-cznvilahd3] {
    right: 48px;
    left: auto;
}

[dir="rtl"] .flux-input:focus + .flux-label[b-cznvilahd3],
[dir="rtl"] .flux-input:not(:placeholder-shown) + .flux-label[b-cznvilahd3] {
    right: 44px;
    left: auto;
}

[dir="rtl"] .flux-input-icon[b-cznvilahd3] {
    right: 16px;
    left: auto;
}

[dir="rtl"] .flux-loading-spinner[b-cznvilahd3] {
    margin-right: 8px;
    margin-left: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .flux-login-container[b-cznvilahd3] {
        padding-top: 14vh; /* Slightly lower on tablets for better visibility */
    }
    
    .flux-login-card[b-cznvilahd3] {
        padding: 32px 24px;
        margin: 1rem;
    }
}

@media (max-width: 480px) {
    .flux-login-container[b-cznvilahd3] {
        padding-top: 13vh; /* Lower on mobile for better thumb reach */
    }
    
    .flux-login-card[b-cznvilahd3] {
        padding: 24px 20px;
        margin: 0.75rem;
        max-width: none;
        width: calc(100% - 1.5rem);
    }

    .flux-logo[b-cznvilahd3] {
        width: 64px;
        height: 64px;
    }

    .flux-otp-container[b-cznvilahd3] {
        gap: 8px;
    }

    .flux-otp-input[b-cznvilahd3] {
        width: 42px;
        height: 42px;
        font-size: 1.125rem;
    }
}

/* Focus Management */
.flux-input:focus[b-cznvilahd3],
.flux-otp-input:focus[b-cznvilahd3],
.flux-btn-primary:focus[b-cznvilahd3],
.flux-link:focus[b-cznvilahd3],
.flux-back-button:focus[b-cznvilahd3] {
    outline: 2px solid var(--flux-primary-solid);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .flux-login-card[b-cznvilahd3] {
        border: 2px solid var(--flux-gray-900);
        background: white;
    }

    .flux-input[b-cznvilahd3],
    .flux-otp-input[b-cznvilahd3] {
        border: 2px solid var(--flux-gray-900);
        background: white;
    }
} 
/* _content/LogisticsPro.WebUI.Server/Components/Account/Pages/LoginWithEmail.razor.rz.scp.css */
/* Background Pattern */
.background-pattern[b-i00jqva66l] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

/* Container */
.flux-admin-login-container[b-i00jqva66l] {
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    position: relative;
    box-sizing: border-box;
    min-height: 0;
    padding-top: 17.2vh; /* Golden ratio positioning from top */
}

/* Admin Login Card */
.flux-admin-login-card[b-i00jqva66l] {
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 32px;
    margin: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fluxFadeInUp-b-i00jqva66l 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    max-height: calc(100% - 2rem);
    overflow-y: auto;
}

.flux-admin-login-card:hover[b-i00jqva66l] {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Typography */
.flux-login-header[b-i00jqva66l] {
    text-align: center;
    margin-bottom: var(--flux-space-6, 2.625rem);
}

.flux-title[b-i00jqva66l] {
    font-family: var(--body-font);
    font-size: var(--flux-text-2xl, clamp(1.5rem, 1.2rem + 1.2vw, 2.25rem));
    font-weight: 700;
    color: var(--flux-gray-900, #1c1917);
    margin: 0 0 8px 0;
}

.flux-subtitle[b-i00jqva66l] {
    font-size: var(--flux-text-base, clamp(1rem, 0.9rem + 0.5vw, 1.125rem));
    color: var(--flux-gray-600, #57534e);
    margin: 0 0 0 0;
    font-weight: 400;
    line-height: 1.5;
}

/* Form */
.flux-form[b-i00jqva66l] {
    width: 100%;
}

/* Input Groups with Floating Labels */
.flux-input-group[b-i00jqva66l] {
    position: relative;
    margin-bottom: 24px;
}

.flux-input[b-i00jqva66l] {
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(156, 163, 175, 0.3);
    border-radius: 14px;
    padding: 18px 48px 8px 16px;
    font-size: var(--flux-text-base, clamp(1rem, 0.9rem + 0.5vw, 1.125rem));
    color: var(--flux-gray-900, #1c1917);
    transition: all 0.2s ease;
    outline: none;
    text-align: right;
    font-family: inherit;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    direction: rtl;
}

.flux-input:focus[b-i00jqva66l] {
    border-color: var(--flux-primary-solid, #3b82f6);
    box-shadow: 0 0 0 3px var(--flux-primary-soft, rgba(59, 130, 246, 0.12));
    background: rgba(255, 255, 255, 0.95);
}

.flux-input.error[b-i00jqva66l] {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.flux-input.error:focus[b-i00jqva66l] {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25);
}

.flux-label[b-i00jqva66l] {
    position: absolute;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--flux-gray-600, #57534e);
    font-size: var(--flux-text-base, clamp(1rem, 0.9rem + 0.5vw, 1.125rem));
    pointer-events: none;
    transition: all 0.2s ease;
    background: transparent;
    z-index: 2;
}

.flux-input:focus + .flux-label[b-i00jqva66l],
.flux-input:not(:placeholder-shown) + .flux-label[b-i00jqva66l] {
    top: 2px;
    transform: translateY(0) scale(0.75);
    color: var(--flux-primary-solid, #3b82f6);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    padding: 0 4px;
    right: 40px;
}

.flux-input-icon[b-i00jqva66l] {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--flux-gray-600, #57534e);
    transition: color 0.2s ease;
    font-size: 20px;
    z-index: 1;
}

.flux-input:focus ~ .flux-input-icon[b-i00jqva66l] {
    color: var(--flux-primary-solid, #3b82f6);
}

/* Checkbox Group */
.flux-checkbox-group[b-i00jqva66l] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    direction: rtl;
}

.flux-checkbox[b-i00jqva66l] {
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(156, 163, 175, 0.3);
    border-radius: 4px;
    transition: all 0.2s ease;
    outline: none;
    cursor: pointer;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.flux-checkbox:checked[b-i00jqva66l] {
    background: var(--flux-primary-solid, #3b82f6);
    border-color: var(--flux-primary-solid, #3b82f6);
}

.flux-checkbox:checked[b-i00jqva66l]::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.flux-checkbox:focus[b-i00jqva66l] {
    box-shadow: 0 0 0 3px var(--flux-primary-soft, rgba(59, 130, 246, 0.12));
}

.flux-checkbox-label[b-i00jqva66l] {
    font-size: var(--flux-text-base, clamp(1rem, 0.9rem + 0.5vw, 1.125rem));
    color: var(--flux-gray-700, #374151);
    cursor: pointer;
    user-select: none;
}

/* Primary Button */
.flux-btn-primary[b-i00jqva66l] {
    width: 100%;
    background: var(--flux-primary, linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%));
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    font-size: var(--flux-text-base, clamp(1rem, 0.9rem + 0.5vw, 1.125rem));
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.25);
    position: relative;
    overflow: hidden;
    margin-top: var(--flux-space-4, 1rem);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    direction: rtl;
}

.flux-btn-primary:hover:not(:disabled)[b-i00jqva66l] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.flux-btn-primary:active:not(:disabled)[b-i00jqva66l] {
    transform: translateY(1px) scale(0.98);
}

.flux-btn-primary:disabled[b-i00jqva66l],
.flux-btn-primary.loading[b-i00jqva66l] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Error Messages */
.flux-error-message[b-i00jqva66l] {
    color: #ef4444;
    font-size: 0.875rem;
    text-align: center;
    margin: var(--flux-space-4, 1rem) 0;
    padding: 12px 16px;
    background: rgba(254, 242, 242, 0.9);
    border: 1px solid rgba(254, 202, 202, 0.5);
    border-radius: 10px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    direction: rtl;
}

.flux-error-message.show[b-i00jqva66l] {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Spinner */
.flux-loading-spinner[b-i00jqva66l] {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: fluxSpin-b-i00jqva66l 1s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
}

/* Animations */
@keyframes fluxFadeInUp-b-i00jqva66l {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fluxSpin-b-i00jqva66l {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* RTL Adjustments */
[dir="rtl"] .flux-input[b-i00jqva66l] {
    padding: 18px 48px 8px 16px;
    text-align: right;
}

[dir="rtl"] .flux-label[b-i00jqva66l] {
    right: 48px;
    left: auto;
}

[dir="rtl"] .flux-input:focus + .flux-label[b-i00jqva66l],
[dir="rtl"] .flux-input:not(:placeholder-shown) + .flux-label[b-i00jqva66l] {
    right: 44px;
    left: auto;
}

[dir="rtl"] .flux-input-icon[b-i00jqva66l] {
    right: 16px;
    left: auto;
}

[dir="rtl"] .flux-loading-spinner[b-i00jqva66l] {
    margin-right: 8px;
    margin-left: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .flux-admin-login-container[b-i00jqva66l] {
        padding-top: 14vh;
    }
    
    .flux-admin-login-card[b-i00jqva66l] {
        padding: 32px 24px;
        margin: 1rem;
    }
}

@media (max-width: 480px) {
    .flux-admin-login-container[b-i00jqva66l] {
        padding-top: 13vh;
    }
    
    .flux-admin-login-card[b-i00jqva66l] {
        padding: 24px 20px;
        margin: 0.75rem;
        max-width: none;
        width: calc(100% - 1.5rem);
    }
}

/* Focus Management */
.flux-input:focus[b-i00jqva66l],
.flux-checkbox:focus[b-i00jqva66l],
.flux-btn-primary:focus[b-i00jqva66l] {
    outline: 2px solid var(--flux-primary-solid, #3b82f6);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .flux-admin-login-card[b-i00jqva66l] {
        border: 2px solid var(--flux-gray-900, #1c1917);
        background: white;
    }

    .flux-input[b-i00jqva66l],
    .flux-checkbox[b-i00jqva66l] {
        border: 2px solid var(--flux-gray-900, #1c1917);
        background: white;
    }
}

/* Admin-specific styling enhancements */
.flux-admin-login-card[b-i00jqva66l]::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--flux-primary-solid, #3b82f6), #8b5cf6);
    border-radius: 0 20px 20px 0;
}

/* Enhanced glassmorphism for admin login */
.flux-admin-login-card[b-i00jqva66l] {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(255, 255, 255, 0.8) 50%, 
        rgba(255, 255, 255, 0.9) 100%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(99, 102, 241, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
/* _content/LogisticsPro.WebUI.Server/Components/Layout/AdminLayout.razor.rz.scp.css */
.layout[b-fncuqkuuf4] {
    min-height: 100vh;
    background-color: var(--neutral-layer-2) !important;
    border-radius: 25px 25px 0 0;
}

.main[b-fncuqkuuf4] {
    direction: rtl;
    height: calc(100vh - 60px);
    gap: 0;
}

.content[b-fncuqkuuf4] {
    padding: 1.5rem;
    direction: rtl;
    flex: 1;
    overflow-y: auto;
}
/* _content/LogisticsPro.WebUI.Server/Components/Layout/DriverLayout.razor.rz.scp.css */
.layout[b-619l3r4kq3] {
    min-height: 100vh;
    background-color: var(--neutral-layer-2) !important;
    border-radius: 25px 25px 0 0;
}
/* _content/LogisticsPro.WebUI.Server/Components/Layout/MainLayout.razor.rz.scp.css */
.layout[b-l883vpeidv] {
    min-height: 100vh;
    background-color: var(--neutral-layer-2) !important;
    border-radius: 25px 25px 0 0;
}
/* _content/LogisticsPro.WebUI.Server/Components/Layout/NavMenu.razor.rz.scp.css */
[b-2x6e6o464d] .fluent-nav-icon {
    /*padding-top: 5px;*/
}
/* _content/LogisticsPro.WebUI.Server/Components/Layout/TransportCompanyLayout.razor.rz.scp.css */
.layout[b-8rwfqxlyoq] {
    min-height: 100vh;
    background-color: var(--neutral-layer-2) !important;
    border-radius: 25px 25px 0 0;
}

.main[b-8rwfqxlyoq] {
    direction: rtl;
    height: calc(100vh - 60px);
    gap: 0;
}

.content[b-8rwfqxlyoq] {
    padding: 1.5rem;
    direction: rtl;
    flex: 1;
    overflow-y: auto;
}
/* _content/LogisticsPro.WebUI.Server/Components/Layout/UserLayout.razor.rz.scp.css */
.layout[b-pzum2g8trc] {
    min-height: 100vh;
    background-color: var(--neutral-layer-2) !important;
    border-radius: 25px 25px 0 0;
}
/* _content/LogisticsPro.WebUI.Server/Components/Pages/Home.razor.rz.scp.css */
/* ============================================================
   LogisticsPro landing page — "Hero" design (Claude Design import)
   Dark RTL marketing page. Accent: copper #D68A52 on #0B0B0E.
   ============================================================ */

.lp[b-t38w7wx811] {
    --accent: #D68A52;
    --accent-soft: #eec49f;
    --accent-light: #ffd9b8;
    --blue: #7C8FF0;
    --blue-soft: #a8b5f5;
    --green: #57d98f;
    --green-soft: #7fe6a8;
    --ink: #F3EFE9;
    --bg: #0B0B0E;
    --bg-alt: #101014;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--ink);
    font-family: 'Vazirmatn', 'YekanBakh', Tahoma, sans-serif;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.lp *[b-t38w7wx811],
.lp *[b-t38w7wx811]::before,
.lp *[b-t38w7wx811]::after {
    box-sizing: border-box;
}

.lp a[b-t38w7wx811] {
    color: var(--ink);
    text-decoration: none;
}

/* ---------- keyframes ---------- */
@keyframes lpFadeUp-b-t38w7wx811 {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes lpDash-b-t38w7wx811 {
    to { stroke-dashoffset: -200; }
}

@keyframes lpMarquee-b-t38w7wx811 {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes lpFloaty-b-t38w7wx811 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes lpGridMove-b-t38w7wx811 {
    from { background-position: 0 0; }
    to { background-position: 0 44px; }
}

@keyframes lpStreak-b-t38w7wx811 {
    0% { transform: translateX(-30vw); opacity: 0; }
    12% { opacity: 1; }
    88% { opacity: 1; }
    100% { transform: translateX(105vw); opacity: 0; }
}

@keyframes lpBlink-b-t38w7wx811 {
    0%, 100% { opacity: 1; }
    50% { opacity: .25; }
}

@keyframes lpFillbar-b-t38w7wx811 {
    from { width: 0; }
    to { width: 68%; }
}

/* ---------- ambient + road ---------- */
.lp-ambient[b-t38w7wx811] {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(900px 520px at 28% 42%, rgba(214, 138, 82, .14), transparent 65%),
                radial-gradient(700px 400px at 82% 20%, rgba(124, 143, 240, .07), transparent 60%);
}

.lp-road[b-t38w7wx811] {
    position: absolute;
    left: 0;
    right: 0;
    top: 64vh;
    height: 36vh;
    pointer-events: none;
    perspective: 600px;
}

.lp-road-grid[b-t38w7wx811] {
    position: absolute;
    inset: 0;
    transform: rotateX(58deg);
    transform-origin: bottom;
    background-image: repeating-linear-gradient(0deg, rgba(243, 239, 233, .07) 0 1px, transparent 1px 44px),
                      repeating-linear-gradient(90deg, rgba(243, 239, 233, .06) 0 1px, transparent 1px 72px);
    animation: lpGridMove-b-t38w7wx811 1.1s linear infinite;
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, .8), transparent 85%);
    mask-image: linear-gradient(to top, rgba(0, 0, 0, .8), transparent 85%);
}

.lp-streak[b-t38w7wx811] {
    position: absolute;
    left: 0;
    border-radius: 4px;
}

.lp-streak-1[b-t38w7wx811] {
    bottom: 14%;
    width: 220px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent-light));
    filter: blur(1px);
    box-shadow: 0 0 18px var(--accent);
    animation: lpStreak-b-t38w7wx811 2.6s linear infinite;
}

.lp-streak-2[b-t38w7wx811] {
    bottom: 26%;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(243, 239, 233, .9));
    filter: blur(1px);
    box-shadow: 0 0 12px rgba(243, 239, 233, .7);
    animation: lpStreak-b-t38w7wx811 3.4s linear 1.2s infinite;
}

.lp-streak-3[b-t38w7wx811] {
    bottom: 8%;
    width: 280px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent));
    filter: blur(2px);
    box-shadow: 0 0 24px var(--accent);
    animation: lpStreak-b-t38w7wx811 2s linear .7s infinite;
}

/* ---------- nav ---------- */
.lp-nav[b-t38w7wx811] {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 26px 52px;
    opacity: 0;
    animation: lpFadeUp-b-t38w7wx811 .8s cubic-bezier(.2, .7, .2, 1) .1s both;
}

.lp-brand[b-t38w7wx811] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-brand img[b-t38w7wx811] {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.lp-brand-name[b-t38w7wx811] {
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -.3px;
}

.lp-menu[b-t38w7wx811] {
    display: flex;
    align-items: center;
    gap: 36px;
    font-size: 15px;
}

.lp-menu a[b-t38w7wx811] {
    color: rgba(243, 239, 233, .7);
    transition: color .2s ease;
}

.lp-menu a:hover[b-t38w7wx811],
.lp-menu a.active[b-t38w7wx811] {
    color: var(--ink);
}

.lp-nav-actions[b-t38w7wx811] {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* login dropdown (CSS hover + JS .open for touch) */
.lp-login[b-t38w7wx811] {
    position: relative;
}

.lp-login-btn[b-t38w7wx811] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 12px;
    border: 1px solid rgba(243, 239, 233, .18);
    background: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 14.5px;
    color: var(--ink);
    transition: border-color .2s ease;
}

.lp-login-btn:hover[b-t38w7wx811] {
    border-color: rgba(243, 239, 233, .45);
}

.lp-caret[b-t38w7wx811] {
    font-size: 10px;
    color: rgba(243, 239, 233, .55);
}

.lp-login-menu[b-t38w7wx811] {
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 10px;
    z-index: 50;
    display: none;
}

.lp-login:hover .lp-login-menu[b-t38w7wx811],
.lp-login.open .lp-login-menu[b-t38w7wx811] {
    display: block;
}

.lp-login-panel[b-t38w7wx811] {
    width: 230px;
    border-radius: 15px;
    border: 1px solid rgba(243, 239, 233, .14);
    background: rgba(18, 18, 23, .96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 24px 60px -16px rgba(0, 0, 0, .85);
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lp-login-item[b-t38w7wx811] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 11px 15px;
    border-radius: 10px;
    transition: background .2s ease;
}

.lp-login-item:hover[b-t38w7wx811] {
    background: rgba(214, 138, 82, .12);
}

.lp-login-item b[b-t38w7wx811] {
    font-size: 13.5px;
}

.lp-login-item span[b-t38w7wx811] {
    font-size: 11.5px;
    color: rgba(243, 239, 233, .45);
}

.lp-cta-sm[b-t38w7wx811] {
    padding: 10px 24px;
    border-radius: 12px;
    background: var(--accent);
    color: var(--bg) !important;
    font-weight: 700;
    font-size: 14.5px;
    transition: filter .2s ease;
}

.lp-cta-sm:hover[b-t38w7wx811] {
    filter: brightness(1.12);
}

/* ---------- buttons ---------- */
.lp-btn-primary[b-t38w7wx811] {
    display: inline-block;
    border-radius: 15px;
    background: var(--accent);
    color: var(--bg) !important;
    font-weight: 800;
    box-shadow: 0 12px 40px -8px rgba(214, 138, 82, .55);
    transition: transform .2s ease, filter .2s ease;
}

.lp-btn-primary:hover[b-t38w7wx811] {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.lp-btn-ghost[b-t38w7wx811] {
    display: inline-block;
    border-radius: 15px;
    border: 1px solid rgba(243, 239, 233, .22);
    color: var(--ink);
    font-weight: 600;
    transition: border-color .2s ease, color .2s ease;
}

.lp-btn-ghost:hover[b-t38w7wx811] {
    border-color: var(--accent);
    color: var(--accent-soft);
}

.lp-btn-blue[b-t38w7wx811] {
    display: inline-block;
    border-radius: 13px;
    border: 1px solid rgba(124, 143, 240, .45);
    color: var(--blue-soft) !important;
    font-weight: 700;
    transition: background .2s ease;
}

.lp-btn-blue:hover[b-t38w7wx811] {
    background: rgba(124, 143, 240, .12);
}

.lp-btn-lg[b-t38w7wx811] {
    padding: 17px 38px;
    font-size: 17px;
}

.lp-btn-ghost.lp-btn-lg[b-t38w7wx811] {
    padding: 17px 32px;
    font-size: 16px;
}

.lp-btn-md[b-t38w7wx811] {
    align-self: flex-start;
    margin-top: 8px;
    padding: 14px 32px;
    border-radius: 13px;
    font-size: 15px;
}

.lp-btn-ghost.lp-btn-md[b-t38w7wx811] {
    font-weight: 700;
}

/* ---------- hero ---------- */
.lp-hero[b-t38w7wx811] {
    position: relative;
    z-index: 4;
    flex: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 24px;
    padding: 0 52px 90px;
}

.lp-hero-copy[b-t38w7wx811] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    max-width: 640px;
}

.lp-badge[b-t38w7wx811] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(214, 138, 82, .4);
    background: rgba(214, 138, 82, .08);
    font-size: 13.5px;
    color: var(--accent-soft);
    opacity: 0;
    animation: lpFadeUp-b-t38w7wx811 .8s cubic-bezier(.2, .7, .2, 1) .25s both;
}

.lp-badge-dot[b-t38w7wx811] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: lpBlink-b-t38w7wx811 1.6s ease infinite;
    flex-shrink: 0;
}

.lp-h1[b-t38w7wx811] {
    margin: 0;
    font-size: clamp(54px, 6.6vw, 104px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -1px;
}

.lp-h1-line[b-t38w7wx811] {
    display: block;
    overflow: hidden;
}

.lp-h1-word[b-t38w7wx811] {
    display: inline-block;
    opacity: 0;
}

.lp-h1-word-1[b-t38w7wx811] {
    animation: lpFadeUp-b-t38w7wx811 .9s cubic-bezier(.2, .7, .2, 1) .35s both;
}

.lp-h1-word-2[b-t38w7wx811] {
    animation: lpFadeUp-b-t38w7wx811 .9s cubic-bezier(.2, .7, .2, 1) .55s both;
}

.lp-grad-text[b-t38w7wx811] {
    background: linear-gradient(90deg, var(--accent), var(--accent-light) 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp-lede[b-t38w7wx811] {
    margin: 0;
    font-size: 19px;
    line-height: 1.9;
    font-weight: 300;
    color: rgba(243, 239, 233, .62);
    max-width: 520px;
    text-wrap: pretty;
    opacity: 0;
    animation: lpFadeUp-b-t38w7wx811 .9s cubic-bezier(.2, .7, .2, 1) .78s both;
}

.lp-hero-ctas[b-t38w7wx811] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    opacity: 0;
    animation: lpFadeUp-b-t38w7wx811 .9s cubic-bezier(.2, .7, .2, 1) .95s both;
}

.lp-cta-inner .lp-hero-ctas[b-t38w7wx811] {
    justify-content: center;
    opacity: 1;
    animation: none;
}

.lp-stats[b-t38w7wx811] {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    margin-top: 14px;
    opacity: 0;
    animation: lpFadeUp-b-t38w7wx811 .9s cubic-bezier(.2, .7, .2, 1) 1.15s both;
}

.lp-stat[b-t38w7wx811] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 28px;
}

.lp-stat:first-child[b-t38w7wx811] {
    padding-right: 0;
}

.lp-stat:not(:last-child)[b-t38w7wx811] {
    border-left: 1px solid rgba(243, 239, 233, .12);
}

.lp-stat-num[b-t38w7wx811] {
    font-size: 34px;
    font-weight: 800;
    color: var(--ink);
}

.lp-stat-accent[b-t38w7wx811] {
    color: var(--accent);
}

.lp-stat-label[b-t38w7wx811] {
    font-size: 13px;
    color: rgba(243, 239, 233, .5);
}

/* ---------- visual stage ---------- */
.lp-stage[b-t38w7wx811] {
    position: relative;
    height: 70vh;
    min-height: 480px;
    opacity: 0;
    animation: lpFadeUp-b-t38w7wx811 1.1s cubic-bezier(.2, .7, .2, 1) .6s both;
}

.lp-routes[b-t38w7wx811] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.lp-dash[b-t38w7wx811] { animation: lpDash-b-t38w7wx811 4s linear infinite; }
.lp-dash-5s[b-t38w7wx811] { animation-duration: 5s; }
.lp-dash-6s[b-t38w7wx811] { animation-duration: 6s; }

.lp-glow-copper[b-t38w7wx811] { filter: drop-shadow(0 0 8px #D68A52); }
.lp-glow-cream[b-t38w7wx811] { filter: drop-shadow(0 0 6px rgba(243, 239, 233, .9)); }
.lp-glow-blue[b-t38w7wx811] { filter: drop-shadow(0 0 6px #7C8FF0); }

.lp-float[b-t38w7wx811] {
    position: absolute;
    will-change: transform;
}

.lp-float-ship[b-t38w7wx811] {
    top: 34%;
    right: 22%;
    width: 320px;
}

.lp-float-chip1[b-t38w7wx811] { top: 8%; right: 6%; }
.lp-float-chip2[b-t38w7wx811] { top: 16%; left: 4%; }
.lp-float-chip3[b-t38w7wx811] { bottom: 22%; left: 10%; }
.lp-float-chip4[b-t38w7wx811] { bottom: 8%; right: 14%; }

.lp-ship-card[b-t38w7wx811] {
    border-radius: 20px;
    border: 1px solid rgba(243, 239, 233, .12);
    background: rgba(20, 20, 25, .72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 22px 24px;
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .8);
    animation: lpFloaty-b-t38w7wx811 6s ease-in-out infinite;
}

.lp-ship-head[b-t38w7wx811] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-ship-id[b-t38w7wx811] {
    font-size: 13px;
    color: rgba(243, 239, 233, .5);
}

.lp-pill-live[b-t38w7wx811] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 13px;
    border-radius: 100px;
    background: rgba(87, 217, 143, .12);
    border: 1px solid rgba(87, 217, 143, .35);
    font-size: 12px;
    color: var(--green-soft);
}

.lp-live-dot[b-t38w7wx811] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: lpBlink-b-t38w7wx811 1.4s ease infinite;
}

.lp-ship-route[b-t38w7wx811] {
    margin-top: 14px;
    font-size: 21px;
    font-weight: 800;
}

.lp-ship-meta[b-t38w7wx811] {
    margin-top: 4px;
    font-size: 13.5px;
    color: rgba(243, 239, 233, .55);
}

.lp-progress[b-t38w7wx811] {
    margin-top: 18px;
    height: 7px;
    border-radius: 100px;
    background: rgba(243, 239, 233, .1);
    overflow: hidden;
}

.lp-progress-fill[b-t38w7wx811] {
    height: 100%;
    width: 68%;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    animation: lpFillbar-b-t38w7wx811 2.4s cubic-bezier(.2, .7, .2, 1) 1.2s both;
}

.lp-ship-foot[b-t38w7wx811] {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    color: rgba(243, 239, 233, .5);
}

.lp-ship-eta[b-t38w7wx811] {
    color: var(--accent-soft);
}

.lp-chip[b-t38w7wx811] {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 18px;
    border-radius: 15px;
    border: 1px solid rgba(243, 239, 233, .12);
    background: rgba(20, 20, 25, .66);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.lp-chip-anim1[b-t38w7wx811] { animation: lpFloaty-b-t38w7wx811 5s ease-in-out .4s infinite; }
.lp-chip-anim2[b-t38w7wx811] { animation: lpFloaty-b-t38w7wx811 6.5s ease-in-out 1.1s infinite; }
.lp-chip-anim3[b-t38w7wx811] { animation: lpFloaty-b-t38w7wx811 5.6s ease-in-out .8s infinite; }
.lp-chip-anim4[b-t38w7wx811] { animation: lpFloaty-b-t38w7wx811 7s ease-in-out 1.6s infinite; }

.lp-chip-dot[b-t38w7wx811] {
    width: 9px;
    height: 9px;
    border-radius: 3px;
    flex-shrink: 0;
}

.lp-chip-text[b-t38w7wx811] {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.lp-chip-text b[b-t38w7wx811] {
    font-size: 13.5px;
}

.lp-chip-text i[b-t38w7wx811] {
    font-style: normal;
    font-size: 11.5px;
    color: rgba(243, 239, 233, .5);
}

/* colored square dots (shared) */
.lp-dot-copper[b-t38w7wx811] { background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.lp-dot-blue[b-t38w7wx811] { background: var(--blue); box-shadow: 0 0 10px var(--blue); }
.lp-dot-green[b-t38w7wx811] { background: var(--green); box-shadow: 0 0 10px var(--green); }
.lp-dot-tan[b-t38w7wx811] { background: var(--accent-soft); box-shadow: 0 0 10px var(--accent-soft); }
.lp-dot-lilac[b-t38w7wx811] { background: #b9a6f0; box-shadow: none; }
.lp-dot-rose[b-t38w7wx811] { background: #f0a6a6; box-shadow: none; }

.lp-sq[b-t38w7wx811] {
    width: 11px;
    height: 11px;
    border-radius: 4px;
}

.lp-sq-sm[b-t38w7wx811] {
    width: 10px;
    height: 10px;
    border-radius: 3px;
}

.lp-sq-md[b-t38w7wx811] {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    box-shadow: none;
}

/* ---------- ticker ---------- */
.lp-ticker[b-t38w7wx811] {
    position: relative;
    z-index: 6;
    border-top: 1px solid rgba(243, 239, 233, .1);
    background: rgba(11, 11, 14, .75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    direction: ltr;
}

.lp-ticker-track[b-t38w7wx811] {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: lpMarquee-b-t38w7wx811 32s linear infinite;
    padding: 13px 0;
}

.lp-ticker-group[b-t38w7wx811] {
    display: inline-flex;
    align-items: center;
    gap: 44px;
    padding: 0 22px;
    font-size: 13.5px;
    color: rgba(243, 239, 233, .65);
}

.lp-ticker-group b[b-t38w7wx811] {
    color: var(--accent-soft);
}

.lp-tick-sep[b-t38w7wx811] {
    color: var(--accent);
}

/* ---------- sections (shared) ---------- */
.lp-section[b-t38w7wx811] {
    position: relative;
    z-index: 3;
    padding: 120px 52px;
    background: var(--bg);
}

.lp-section-alt[b-t38w7wx811] {
    background: var(--bg-alt);
    border-top: 1px solid rgba(243, 239, 233, .06);
}

#why[b-t38w7wx811] { padding: 130px 52px 110px; }

.lp-clip[b-t38w7wx811] { overflow: hidden; }

.lp-container[b-t38w7wx811] {
    max-width: 1180px;
    margin: 0 auto;
}

.lp-col[b-t38w7wx811] {
    display: flex;
    flex-direction: column;
}

.lp-gap-64[b-t38w7wx811] { gap: 64px; }
.lp-gap-56[b-t38w7wx811] { gap: 56px; }
.lp-gap-52[b-t38w7wx811] { gap: 52px; }
.lp-gap-48[b-t38w7wx811] { gap: 48px; }
.lp-gap-18[b-t38w7wx811] { gap: 18px; }

.lp-sec-head[b-t38w7wx811] {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 720px;
}

.lp-sec-head.lp-center[b-t38w7wx811] {
    align-items: center;
    gap: 14px;
    text-align: center;
    max-width: none;
}

.lp-kicker[b-t38w7wx811] {
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 700;
}

.lp-h2[b-t38w7wx811] {
    margin: 0;
    font-size: clamp(34px, 3.6vw, 54px);
    font-weight: 900;
    line-height: 1.25;
}

.lp-h2-sm[b-t38w7wx811] {
    font-size: clamp(32px, 3.4vw, 50px);
    line-height: 1.3;
}

.lp-sub[b-t38w7wx811] {
    margin: 0;
    font-size: 17px;
    line-height: 2;
    font-weight: 300;
    color: rgba(243, 239, 233, .55);
    text-wrap: pretty;
}

.lp-sub-sm[b-t38w7wx811] {
    font-size: 15.5px;
}

/* ---------- grids ---------- */
.lp-grid3[b-t38w7wx811] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.lp-grid4[b-t38w7wx811] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
}

.lp-grid6[b-t38w7wx811] {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.lp-split[b-t38w7wx811] {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.lp-split-wb[b-t38w7wx811] {
    grid-template-columns: 1.1fr 1fr;
}

/* ---------- value prop cards ---------- */
.lp-vcard[b-t38w7wx811] {
    border-radius: 20px;
    border: 1px solid rgba(243, 239, 233, .09);
    background: rgba(243, 239, 233, .03);
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color .25s ease;
}

.lp-vcard:hover[b-t38w7wx811] {
    border-color: rgba(214, 138, 82, .5);
}

.lp-vcard h3[b-t38w7wx811] {
    margin: 0;
    font-size: 21px;
    font-weight: 800;
}

.lp-vcard p[b-t38w7wx811] {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.95;
    color: rgba(243, 239, 233, .55);
}

/* ---------- three sides ---------- */
.lp-side-card[b-t38w7wx811] {
    border-radius: 24px;
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lp-side-owner[b-t38w7wx811] {
    border: 1px solid rgba(214, 138, 82, .28);
    background: linear-gradient(160deg, rgba(214, 138, 82, .1), rgba(214, 138, 82, .02) 55%);
}

.lp-side-driver[b-t38w7wx811] {
    border: 1px solid rgba(243, 239, 233, .12);
    background: rgba(243, 239, 233, .03);
}

.lp-side-company[b-t38w7wx811] {
    border: 1px solid rgba(124, 143, 240, .3);
    background: linear-gradient(160deg, rgba(124, 143, 240, .1), rgba(124, 143, 240, .02) 55%);
}

.lp-side-card h3[b-t38w7wx811] {
    margin: 0;
    font-size: 28px;
    font-weight: 900;
}

.lp-tag[b-t38w7wx811] {
    align-self: flex-start;
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 12.5px;
}

.lp-tag-copper[b-t38w7wx811] {
    background: rgba(214, 138, 82, .15);
    border: 1px solid rgba(214, 138, 82, .4);
    color: var(--accent-soft);
}

.lp-tag-cream[b-t38w7wx811] {
    background: rgba(243, 239, 233, .07);
    border: 1px solid rgba(243, 239, 233, .2);
    color: rgba(243, 239, 233, .75);
}

.lp-tag-blue[b-t38w7wx811] {
    background: rgba(124, 143, 240, .14);
    border: 1px solid rgba(124, 143, 240, .4);
    color: var(--blue-soft);
}

.lp-list[b-t38w7wx811] {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(243, 239, 233, .7);
}

.lp-list li[b-t38w7wx811] {
    display: flex;
    gap: 11px;
    align-items: baseline;
}

.lp-dash[b-t38w7wx811] {
    color: var(--accent);
}

.lp-list-blue .lp-dash[b-t38w7wx811] {
    color: var(--blue-soft);
}

/* ---------- fleet dashboard ---------- */
.lp-fleet-glow[b-t38w7wx811] {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(700px 400px at 20% 50%, rgba(214, 138, 82, .08), transparent 65%);
}

.lp-split .lp-sec-head[b-t38w7wx811] {
    gap: 20px;
}

.lp-dash-card[b-t38w7wx811] {
    border-radius: 24px;
    border: 1px solid rgba(243, 239, 233, .12);
    background: rgba(18, 18, 23, .85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 28px;
    box-shadow: 0 40px 100px -30px rgba(0, 0, 0, .9);
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.lp-dash-head[b-t38w7wx811] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-dash-title[b-t38w7wx811] {
    font-weight: 800;
    font-size: 16px;
}

.lp-dash-dots[b-t38w7wx811] {
    display: flex;
    gap: 7px;
}

.lp-dash-dots span[b-t38w7wx811] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.lp-dd-green[b-t38w7wx811] { background: var(--green); }
.lp-dd-tan[b-t38w7wx811] { background: var(--accent-soft); }
.lp-dd-dim[b-t38w7wx811] { background: rgba(243, 239, 233, .25); }

.lp-kpis[b-t38w7wx811] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.lp-kpi[b-t38w7wx811] {
    border-radius: 15px;
    background: rgba(243, 239, 233, .05);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.lp-kpi b[b-t38w7wx811] {
    font-size: 26px;
    font-weight: 900;
}

.lp-kpi span[b-t38w7wx811] {
    font-size: 12px;
    color: rgba(243, 239, 233, .5);
}

.lp-kpi-hl[b-t38w7wx811] {
    background: rgba(214, 138, 82, .12);
    border: 1px solid rgba(214, 138, 82, .3);
}

.lp-kpi-hl b[b-t38w7wx811] {
    color: var(--accent-soft);
}

.lp-rows[b-t38w7wx811] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-row[b-t38w7wx811] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-radius: 13px;
    background: rgba(243, 239, 233, .04);
    padding: 13px 18px;
    font-size: 13.5px;
}

.lp-row-pill[b-t38w7wx811] {
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11.5px;
    flex-shrink: 0;
}

.lp-pill-green[b-t38w7wx811] { background: rgba(87, 217, 143, .12); color: var(--green-soft); }
.lp-pill-tan[b-t38w7wx811] { background: rgba(214, 138, 82, .14); color: var(--accent-soft); }
.lp-pill-blue[b-t38w7wx811] { background: rgba(124, 143, 240, .15); color: var(--blue-soft); }

/* ---------- waybill ---------- */
.lp-waybill[b-t38w7wx811] {
    border-radius: 22px;
    border: 1px solid rgba(243, 239, 233, .12);
    background: #f6f2ec;
    color: #1c1a17;
    padding: 36px 38px;
    box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .85);
    transform: rotate(-1.2deg);
}

.lp-wb-head[b-t38w7wx811] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(28, 26, 23, .25);
    padding-bottom: 16px;
}

.lp-wb-head b[b-t38w7wx811] {
    font-size: 17px;
}

.lp-wb-head span[b-t38w7wx811] {
    font-size: 12px;
    color: rgba(28, 26, 23, .55);
}

.lp-wb-grid[b-t38w7wx811] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 30px;
    padding: 20px 0;
    font-size: 13.5px;
}

.lp-wb-field[b-t38w7wx811] {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.lp-wb-field > span[b-t38w7wx811] {
    color: rgba(28, 26, 23, .5);
    font-size: 11.5px;
}

.lp-wb-plate-field[b-t38w7wx811] {
    gap: 6px;
}

/* Iranian license plate */
.lp-plate[b-t38w7wx811] {
    display: inline-flex;
    align-items: stretch;
    height: 38px;
    border: 2px solid #1c1a17;
    border-radius: 6px;
    overflow: hidden;
    background: #F7C600;
    width: fit-content;
    box-shadow: 0 2px 6px rgba(28, 26, 23, .15);
}

.lp-plate-blue[b-t38w7wx811] {
    width: 27px;
    background: #003DA5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0 3px;
}

.lp-plate-flag[b-t38w7wx811] {
    width: 15px;
    height: 10px;
    display: flex;
    flex-direction: column;
    border-radius: 1.5px;
    overflow: hidden;
}

.lp-plate-flag i[b-t38w7wx811] {
    flex: 1;
}

.lp-flag-g[b-t38w7wx811] { background: #239f40; }
.lp-flag-w[b-t38w7wx811] { background: #ffffff; }
.lp-flag-r[b-t38w7wx811] { background: #da0000; }

.lp-plate-ir[b-t38w7wx811] {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.15;
}

.lp-plate-ir i[b-t38w7wx811] {
    font-style: normal;
    color: #ffffff;
    font-size: 6px;
    font-weight: 700;
}

.lp-plate-main[b-t38w7wx811] {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 13px;
    font-size: 20px;
    font-weight: 900;
    color: #1c1a17;
}

.lp-plate-letter[b-t38w7wx811] {
    font-size: 17px;
}

.lp-plate-side[b-t38w7wx811] {
    border-left: 2px solid #1c1a17;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 9px;
    line-height: 1.15;
}

.lp-plate-iran[b-t38w7wx811] {
    font-size: 9px;
    font-weight: 700;
    color: #1c1a17;
}

.lp-plate-code[b-t38w7wx811] {
    font-size: 14.5px;
    font-weight: 900;
    color: #1c1a17;
}

.lp-wb-foot[b-t38w7wx811] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px dashed rgba(28, 26, 23, .25);
    padding-top: 16px;
}

.lp-wb-badge[b-t38w7wx811] {
    padding: 6px 15px;
    border-radius: 100px;
    background: rgba(79, 178, 134, .16);
    color: #2b7a58;
    font-size: 12px;
    font-weight: 700;
}

.lp-wb-track[b-t38w7wx811] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.lp-barcode[b-t38w7wx811] {
    width: 118px;
    height: 26px;
    background: repeating-linear-gradient(90deg, #1c1a17 0 2px, transparent 2px 5px, #1c1a17 5px 9px, transparent 9px 11px, #1c1a17 11px 12px, transparent 12px 16px);
}

.lp-track-code[b-t38w7wx811] {
    font-size: 10px;
    letter-spacing: 1px;
    color: rgba(28, 26, 23, .55);
}

/* ---------- features grid ---------- */
.lp-fcard[b-t38w7wx811] {
    border-radius: 19px;
    border: 1px solid rgba(243, 239, 233, .09);
    background: rgba(243, 239, 233, .03);
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color .25s ease;
}

.lp-fcard:hover[b-t38w7wx811] {
    border-color: rgba(214, 138, 82, .5);
}

.lp-fcard h3[b-t38w7wx811] {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
}

.lp-fcard p[b-t38w7wx811] {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.9;
    color: rgba(243, 239, 233, .5);
}

/* ---------- coverage ---------- */
.lp-cargo[b-t38w7wx811] {
    border-radius: 17px;
    border: 1px solid rgba(243, 239, 233, .09);
    background: rgba(243, 239, 233, .03);
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    transition: border-color .25s ease;
}

.lp-cargo:hover[b-t38w7wx811] {
    border-color: rgba(214, 138, 82, .5);
}

.lp-cargo b[b-t38w7wx811] {
    font-size: 15px;
}

.lp-cargo > span:last-child[b-t38w7wx811] {
    font-size: 11.5px;
    color: rgba(243, 239, 233, .45);
}

.lp-provinces[b-t38w7wx811] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 980px;
    margin: 0 auto;
}

.lp-prov[b-t38w7wx811] {
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(243, 239, 233, .11);
    background: rgba(243, 239, 233, .03);
    font-size: 13px;
    color: rgba(243, 239, 233, .65);
    transition: border-color .2s ease, color .2s ease;
}

.lp-prov:hover[b-t38w7wx811] {
    border-color: var(--accent);
    color: var(--accent-soft);
}

/* ---------- steps ---------- */
.lp-step[b-t38w7wx811] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(243, 239, 233, .14);
    padding-top: 22px;
}

.lp-step-first[b-t38w7wx811] {
    border-top-color: rgba(214, 138, 82, .35);
}

.lp-step-num[b-t38w7wx811] {
    font-size: 56px;
    font-weight: 900;
    color: rgba(243, 239, 233, .14);
    line-height: 1;
}

.lp-step-first .lp-step-num[b-t38w7wx811] {
    color: rgba(214, 138, 82, .28);
}

.lp-step h3[b-t38w7wx811] {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
}

.lp-step p[b-t38w7wx811] {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.9;
    color: rgba(243, 239, 233, .5);
}

/* ---------- testimonials ---------- */
.lp-tcard[b-t38w7wx811] {
    border-radius: 20px;
    border: 1px solid rgba(243, 239, 233, .09);
    background: rgba(243, 239, 233, .03);
    padding: 32px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lp-quote[b-t38w7wx811] {
    font-size: 34px;
    color: var(--accent);
    line-height: 1;
}

.lp-tcard p[b-t38w7wx811] {
    margin: 0;
    font-size: 15px;
    line-height: 2;
    color: rgba(243, 239, 233, .75);
    text-wrap: pretty;
}

.lp-person[b-t38w7wx811] {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: auto;
}

.lp-avatar[b-t38w7wx811] {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--bg);
    flex-shrink: 0;
}

.lp-avatar-copper[b-t38w7wx811] { background: linear-gradient(135deg, var(--accent), #8a4f27); }
.lp-avatar-blue[b-t38w7wx811] { background: linear-gradient(135deg, var(--blue), #4a5cb0); }
.lp-avatar-green[b-t38w7wx811] { background: linear-gradient(135deg, var(--green), #2b7a58); }

.lp-person-info[b-t38w7wx811] {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.lp-person-info b[b-t38w7wx811] {
    font-size: 14px;
}

.lp-person-info i[b-t38w7wx811] {
    font-style: normal;
    font-size: 12px;
    color: rgba(243, 239, 233, .45);
}

/* ---------- FAQ ---------- */
.lp-faq-grid[b-t38w7wx811] {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 70px;
    align-items: start;
}

.lp-faq-sticky[b-t38w7wx811] {
    position: sticky;
    top: 40px;
    gap: 16px;
}

.lp-faq-list[b-t38w7wx811] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-faq-item[b-t38w7wx811] {
    border-radius: 16px;
    border: 1px solid rgba(243, 239, 233, .1);
    background: rgba(243, 239, 233, .03);
    overflow: hidden;
}

.lp-faq-q[b-t38w7wx811] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ink);
    font-family: inherit;
    font-size: 15.5px;
    font-weight: 700;
    text-align: right;
}

.lp-faq-mark[b-t38w7wx811] {
    color: var(--accent);
    font-size: 22px;
    font-weight: 400;
    flex-shrink: 0;
}

.lp-faq-a[b-t38w7wx811] {
    display: none;
}

.lp-faq-item.open .lp-faq-a[b-t38w7wx811] {
    display: block;
}

.lp-faq-a p[b-t38w7wx811] {
    margin: 0;
    padding: 0 24px 22px;
    font-size: 14px;
    line-height: 2;
    color: rgba(243, 239, 233, .6);
}

/* ---------- final CTA ---------- */
.lp-cta-final[b-t38w7wx811] {
    padding: 150px 52px;
}

.lp-cta-glow[b-t38w7wx811] {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(800px 420px at 50% 110%, rgba(214, 138, 82, .22), transparent 70%);
}

.lp-cta-inner[b-t38w7wx811] {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    text-align: center;
}

.lp-h2-cta[b-t38w7wx811] {
    margin: 0;
    font-size: clamp(42px, 5vw, 76px);
    font-weight: 900;
    line-height: 1.2;
}

.lp-cta-inner .lp-sub[b-t38w7wx811] {
    max-width: 560px;
}

/* ---------- footer ----------
   NOTE: global app.css has a bare `footer { display:grid; color:<dark> }`
   rule that hijacks this element — override display/color explicitly. */
.lp-footer[b-t38w7wx811] {
    display: block;
    position: relative;
    background: #08080a;
    color: var(--ink);
    border-top: 1px solid rgba(243, 239, 233, .08);
    padding: 70px 52px 34px;
}

.lp-foot-grid[b-t38w7wx811] {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 44px;
}

.lp-foot-brand[b-t38w7wx811] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lp-foot-brand .lp-brand img[b-t38w7wx811] {
    height: 34px;
}

.lp-foot-brand .lp-brand b[b-t38w7wx811] {
    font-size: 18px;
    font-weight: 800;
    color: var(--ink);
}

.lp-foot-brand p[b-t38w7wx811] {
    margin: 0;
    font-size: 13.5px;
    line-height: 2;
    color: rgba(243, 239, 233, .45);
    max-width: 300px;
}

.lp-foot-col[b-t38w7wx811] {
    display: flex;
    flex-direction: column;
    gap: 13px;
    font-size: 13.5px;
}

.lp-foot-col b[b-t38w7wx811] {
    font-size: 14px;
    color: rgba(243, 239, 233, .85);
}

.lp-foot-col a[b-t38w7wx811],
.lp-foot-col span[b-t38w7wx811] {
    color: rgba(243, 239, 233, .5);
    transition: color .2s ease;
}

.lp-foot-col a:hover[b-t38w7wx811] {
    color: var(--accent-soft);
}

.lp-ltr[b-t38w7wx811] {
    direction: ltr;
    text-align: right;
}

.lp-foot-bottom[b-t38w7wx811] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    border-top: 1px solid rgba(243, 239, 233, .07);
    padding-top: 24px;
    font-size: 12.5px;
    color: rgba(243, 239, 233, .35);
}

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
    .lp-nav[b-t38w7wx811] {
        padding: 20px 28px;
    }

    .lp-menu[b-t38w7wx811] {
        display: none;
    }

    .lp-hero[b-t38w7wx811] {
        grid-template-columns: 1fr;
        padding: 20px 28px 70px;
        gap: 48px;
    }

    .lp-stage[b-t38w7wx811] {
        height: 460px;
        min-height: 0;
    }

    .lp-section[b-t38w7wx811] {
        padding: 80px 28px;
    }

    .lp-cta-final[b-t38w7wx811] {
        padding: 100px 28px;
    }

    #why[b-t38w7wx811] { padding: 90px 28px 80px; }

    .lp-grid3[b-t38w7wx811] {
        grid-template-columns: 1fr;
    }

    .lp-grid4[b-t38w7wx811] {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-grid6[b-t38w7wx811] {
        grid-template-columns: repeat(3, 1fr);
    }

    .lp-split[b-t38w7wx811],
    .lp-split-wb[b-t38w7wx811] {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .lp-faq-grid[b-t38w7wx811] {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .lp-faq-sticky[b-t38w7wx811] {
        position: static;
    }

    .lp-foot-grid[b-t38w7wx811] {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-footer[b-t38w7wx811] {
        padding: 56px 28px 28px;
    }
}

@media (max-width: 640px) {
    .lp-h1[b-t38w7wx811] {
        font-size: clamp(42px, 12vw, 54px);
    }

    .lp-nav[b-t38w7wx811] {
        padding: 16px 18px;
    }

    .lp-hero[b-t38w7wx811] {
        padding: 12px 18px 56px;
    }

    .lp-section[b-t38w7wx811] {
        padding: 64px 18px;
    }

    .lp-cta-final[b-t38w7wx811] {
        padding: 80px 18px;
    }

    #why[b-t38w7wx811] { padding: 72px 18px 64px; }

    .lp-stage[b-t38w7wx811] {
        height: 380px;
    }

    .lp-float-ship[b-t38w7wx811] {
        right: 50%;
        transform: translateX(50%);
        width: 300px;
    }

    .lp-float-chip1[b-t38w7wx811],
    .lp-float-chip2[b-t38w7wx811],
    .lp-float-chip3[b-t38w7wx811],
    .lp-float-chip4[b-t38w7wx811] {
        display: none;
    }

    .lp-grid4[b-t38w7wx811],
    .lp-grid6[b-t38w7wx811] {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .lp-stat[b-t38w7wx811] {
        padding: 0 18px;
    }

    .lp-stat-num[b-t38w7wx811] {
        font-size: 28px;
    }

    .lp-side-card[b-t38w7wx811] {
        padding: 34px 26px;
    }

    .lp-waybill[b-t38w7wx811] {
        padding: 26px 22px;
    }

    .lp-wb-grid[b-t38w7wx811] {
        grid-template-columns: 1fr;
    }

    .lp-wb-foot[b-t38w7wx811] {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .lp-foot-grid[b-t38w7wx811] {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .lp-foot-bottom[b-t38w7wx811] {
        flex-direction: column;
        align-items: flex-start;
    }

    .lp-cta-sm[b-t38w7wx811] {
        padding: 10px 16px;
    }

    .lp-login-btn[b-t38w7wx811] {
        padding: 10px 14px;
    }

    .lp-login-menu[b-t38w7wx811] {
        left: auto;
        right: 0;
    }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    .lp[b-t38w7wx811],
    .lp *[b-t38w7wx811] {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
/* _content/LogisticsPro.WebUI.Server/Components/Pages/User/Loads/New.razor.rz.scp.css */
