/* NovaPOS Landing Page Global Design System */
:root {
    --primary-nova: #e11d48;
    --primary-dark: #9f1239;
    --accent-warm: #f59e0b;
    --bg-dark: #050505;
    --surface-dark: #121212;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --font-main: 'Outfit', sans-serif;
    --font-ar: 'Cairo', sans-serif;
    --border-color: rgba(255, 255, 255, 0.08);
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    transition: 0.3s;
}

.lang-ar {
    font-family: var(--font-ar);
}

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(225, 29, 72, 0.1);
    padding: 15px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(225, 29, 72, 0.2);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 950;
    color: var(--primary-nova) !important;
    letter-spacing: -1px;
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    transition: 0.3s;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-nova) !important;
}

/* Buttons */
.btn-primary-nova {
    background-color: var(--primary-nova);
    color: white;
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 700;
    border: none;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3);
}

.btn-primary-nova:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.4);
    color: white;
}

/* Language Switcher */
.lang-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 10px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-link:hover {
    color: white;
    border-color: var(--primary-nova);
    background: rgba(225, 29, 72, 0.1);
}

/* User Profile Dropdown */
.user-dropdown-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.user-dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-menu-nova {
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 10px;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown-item-nova {
    color: var(--text-muted);
    padding: 10px 15px;
    border-radius: 8px;
    transition: 0.2s;
    font-weight: 500;
}

.dropdown-item-nova:hover {
    background: rgba(225, 29, 72, 0.1);
    color: var(--primary-nova);
}

/* Hero Sections */
.hero-section {
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
}

/* Background Glows */
.hero-glow-1 {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    animation: pulseGlow 8s infinite alternate;
}

.hero-glow-2 {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    animation: pulseGlow 12s infinite alternate-reverse;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2) translate(5%, 5%);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3.5rem, 9vw, 6rem);
    font-weight: 1000;
    line-height: 1;
    letter-spacing: -4px;
    margin-bottom: 30px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.text-gradient-red {
    background: linear-gradient(135deg, #ff1f51, #be123c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(225, 29, 72, 0.3));
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-muted);
    max-width: 650px;
    margin-bottom: 50px;
    line-height: 1.7;
    font-weight: 400;
}

/* Image Reveal & Floating Elements */
.hero-image-wrapper {
    position: relative;
    padding: 20px;
}

.hero-main-img {
    border-radius: 40px;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.7), 0 0 50px rgba(225, 29, 72, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-main-img:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.badge-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 15%;
    right: -5%;
    animation-delay: 1s;
}

@keyframes float {

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

    50% {
        transform: translateY(-15px);
    }
}

.badge-icon {
    width: 45px;
    height: 45px;
    background: rgba(225, 29, 72, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-nova);
    font-size: 1.2rem;
}

.badge-text h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0;
    color: white;
}

.badge-text p {
    font-size: 0.8rem;
    margin: 0;
    color: var(--text-muted);
}

/* Animation Classes */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Feature Cards */
.feature-card-nova {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 32px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card-nova:hover {
    border-color: rgba(225, 29, 72, 0.4);
    transform: translateY(-15px);
    background: rgba(225, 29, 72, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 20px rgba(225, 29, 72, 0.1);
}

.feature-card-nova::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(225, 29, 72, 0.1), transparent 70%);
    opacity: 0;
    transition: 0.5s;
}

.feature-card-nova:hover::before {
    opacity: 1;
}

.feature-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.2), rgba(225, 29, 72, 0.05));
    border: 1px solid rgba(225, 29, 72, 0.2);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ff1f51;
    margin-bottom: 30px;
    transition: 0.5s;
}

.feature-card-nova:hover .feature-icon-box {
    transform: rotate(10deg) scale(1.1);
    background: var(--primary-nova);
    color: white;
}

.feature-card-nova h3 {
    color: white;
    font-weight: 800;
    margin-bottom: 15px;
}

.feature-card-nova p {
    color: #cbd5e1;
    /* Much brighter than before */
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* Stats Section */
.stats-section {
    background: #080808;
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.stat-value {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Pricing Section */
.pricing-hero {
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-hero h1 {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 950;
    margin-bottom: 25px;
}

.pricing-card-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 60px 45px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pricing-card-box:hover {
    transform: translateY(-20px);
    border-color: rgba(225, 29, 72, 0.4);
    background: rgba(225, 29, 72, 0.03);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 30px rgba(225, 29, 72, 0.1);
}

.pricing-card-box.recommended {
    border: 2px solid var(--primary-nova);
    background: linear-gradient(180deg, rgba(225, 29, 72, 0.08), transparent);
}

.badge-recommended {
    background: var(--primary-nova);
    color: white;
    padding: 10px 30px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 900;
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 10px 20px rgba(225, 29, 72, 0.4);
    white-space: nowrap;
    z-index: 10;
}

.pb-120 {
    padding-bottom: 120px;
}

.mt-100 {
    margin-top: 100px;
}

.border-white-10 {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-nova);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--primary-nova);
    border-radius: 50%;
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.plan-price {
    font-size: 4.5rem;
    font-weight: 950;
    line-height: 1;
    margin-bottom: 10px;
    color: white;
}

.plan-price span {
    font-size: 1.5rem;
    color: var(--primary-nova);
    vertical-align: top;
    margin-right: 2px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.plan-features li {
    margin-bottom: 18px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
}

.plan-features li i {
    color: var(--primary-nova);
    font-size: 1rem;
}

.btn-plan {
    width: 100%;
    padding: 18px;
    border-radius: 100px;
    font-weight: 900;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-nova-red {
    border: 2px solid var(--primary-nova);
    color: var(--primary-nova);
    background: transparent;
}

.btn-outline-nova-red:hover {
    background: var(--primary-nova);
    color: white;
}

/* Legal Pages */
.legal-content {
    background: var(--surface-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: clamp(30px, 6vw, 80px);
    margin-bottom: 100px;
    line-height: 1.9;
}

.legal-section {
    margin-bottom: 60px;
}

.legal-section h2 {
    color: var(--primary-nova);
    font-weight: 900;
    font-size: 2rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.bullet {
    width: 44px;
    height: 44px;
    background: rgba(225, 29, 72, 0.1);
    color: var(--primary-nova);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 950;
    flex-shrink: 0;
}

.legal-section p,
.legal-section li {
    color: var(--text-muted);
    font-size: 1.15rem;
}

.lang-ar .legal-section ul {
    padding-right: 20px;
}

.lang-en .legal-section ul {
    padding-left: 20px;
}

/* Authentication & Split Layouts */
.auth-split-wrapper {
    min-height: 100vh;
    display: flex;
    background: var(--bg-dark);
}

.auth-visual-side {
    flex: 1;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('https://images.unsplash.com/photo-1550966842-30ca245848bb?auto=format&fit=crop&q=80&w=2070') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .auth-visual-side {
        display: none;
    }
}

.auth-visual-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    text-align: center;
}

.auth-visual-content h2 {
    font-size: 3.5rem;
    font-weight: 950;
    color: white;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.auth-visual-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
    /* Brighter slate instead of white-50 */
    line-height: 1.6;
}

.auth-form-side {
    width: 100%;
    max-width: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
    background: var(--bg-dark);
}

.auth-card-premium {
    width: 100%;
    max-width: 450px;
}

.form-label-premium {
    color: #f1f5f9;
    /* Near white for labels */
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: block;
}

.form-control-premium {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white !important;
    padding: 18px 22px;
    border-radius: 20px;
    font-size: 1.05rem;
    transition: all 0.3s;
    appearance: none;
}

select.form-control-premium {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 1.25rem;
    padding-right: 3.5rem;
}

.lang-ar select.form-control-premium {
    background-position: left 1.5rem center;
    padding-left: 3.5rem;
    padding-right: 22px;
}

.form-control-premium option {
    background-color: #0f172a;
    /* Deep dark background for dropdown items */
    color: white;
}

.form-control-premium:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary-nova);
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.15);
    outline: none;
}

.form-control-premium::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* RTL Phone alignment fix */
.lang-ar .form-control-premium {
    direction: rtl;
    text-align: right;
}

.lang-ar .form-control-premium[type="tel"],
.lang-ar .form-control-premium[type="email"] {
    direction: ltr;
    text-align: right;
}

.btn-auth-submit {
    width: 100%;
    padding: 16px;
    border-radius: 18px;
    background: var(--primary-nova);
    color: white;
    border: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(225, 29, 72, 0.2);
}

.btn-auth-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(225, 29, 72, 0.3);
}

.auth-brand-float {
    position: absolute;
    top: 40px;
    left: 40px;
}

.lang-ar .auth-brand-float {
    left: auto;
    right: 40px;
}

/* Sidebar Steps */
.steps-sidebar {
    width: 350px;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
        url('https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&q=80&w=1000');
    background-size: cover;
    background-position: center;
    padding: 60px 40px;
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    opacity: 0.4;
    transition: 0.4s;
}

.step-item.active {
    opacity: 1;
    transform: scale(1.05);
}

.step-item.completed {
    opacity: 0.8;
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin-right: 20px;
    background: rgba(0, 0, 0, 0.6);
}

.lang-ar .step-number {
    margin-right: 0;
    margin-left: 20px;
}

.step-item.active .step-number {
    background: var(--primary-nova);
    border-color: var(--primary-nova);
    box-shadow: 0 0 25px rgba(225, 29, 72, 0.5);
}

/* CTA Banner & Banner Extras */
.cta-banner {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
        url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&q=80&w=1974') center/cover;
    border-radius: 40px;
    margin: 80px 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-lg-nova {
    padding: 18px 50px;
    font-size: 1.15rem;
    border-radius: 100px;
}

/* Footer Improvements */
footer {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 950;
    color: var(--primary-nova) !important;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.footer-desc {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 30px;
    max-width: 320px;
}

.footer-title {
    color: white;
    font-weight: 800;
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 15px;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    display: inline-block;
}

.footer-link:hover {
    color: var(--primary-nova);
    transform: translateX(5px);
}

.lang-ar .footer-link:hover {
    transform: translateX(-5px);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-contact-item i {
    color: var(--primary-nova);
    width: 20px;
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.powered-by {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.powered-by .saw-brand {
    color: var(--primary-nova);
    font-weight: 800;
}

.social-links {
    display: flex;
    gap: 15px;
}

.custom-check .form-check-input {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.custom-check .form-check-input:checked {
    background-color: var(--primary-nova);
    border-color: var(--primary-nova);
}

.hover-white:hover {
    color: white !important;
}

.is-invalid.form-control-premium {
    border-color: var(--primary-nova) !important;
}


.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-decoration: none;
}

.social-btn:hover {
    background: var(--primary-nova);
    border-color: var(--primary-nova);
    color: white;
    transform: translateY(-5px);
}

.social-btn.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-btn.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-color: #d6249f;
}

.social-btn.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

/* Signup Multi-step Redesign */
.signup-wrapper {
    padding: 80px 0;
    min-height: 80vh;
}

.signup-container-premium {
    display: flex;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    min-height: 600px;
}

.signup-sidebar-premium {
    width: 320px;
    background: rgba(255, 255, 255, 0.03);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px 40px;
    flex-shrink: 0;
}

.signup-form-content {
    flex-grow: 1;
    padding: 60px 80px;
    background: transparent;
}

.step-item-premium {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    opacity: 0.3;
    transition: 0.4s;
}

.step-item-premium.active {
    opacity: 1;
}

.step-item-premium.completed {
    opacity: 0.7;
}

.step-num-premium {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    transition: 0.3s;
}

.step-item-premium.active .step-num-premium {
    background: var(--primary-nova);
    border-color: var(--primary-nova);
    box-shadow: 0 0 20px rgba(225, 29, 72, 0.3);
}

.step-item-premium.completed .step-num-premium {
    background: #10b981;
    border-color: #10b981;
}

.step-info-premium .step-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

.step-info-premium .step-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Provisioning Overlay Premium */
#provisioning-overlay-premium {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 17, 0.98);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.provisioning-box {
    max-width: 500px;
    width: 100%;
}

.loader-nova {
    width: 100px;
    height: 100px;
    border: 5px solid rgba(225, 29, 72, 0.1);
    border-top: 5px solid var(--primary-nova);
    border-radius: 50%;
    margin: 0 auto 40px;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 30px rgba(225, 29, 72, 0.1);
}

.progress-nova-container {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    margin: 40px 0;
    overflow: hidden;
}

.progress-nova-fill {
    height: 100%;
    background: var(--primary-nova);
    width: 0;
    transition: 0.5s;
    box-shadow: 0 0 15px var(--primary-nova);
}

.form-step-premium {
    display: none;
}

.form-step-premium.active {
    display: block;
    animation: fadeInSlide 0.5s forwards;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .signup-container-premium {
        flex-direction: column;
    }

    .signup-sidebar-premium {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 30px;
        display: flex;
        overflow-x: auto;
        gap: 30px;
        scrollbar-width: none;
    }

    .signup-sidebar-premium::-webkit-scrollbar {
        display: none;
    }

    .step-item-premium {
        margin-bottom: 0;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .signup-form-content {
        padding: 40px 30px;
    }
}

/* HTTP error pages (404, 403) — Bootstrap + design tokens */
.error-state-page {
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    background: var(--bg-dark);
}

.error-state-page .hero-glow-1,
.error-state-page .hero-glow-2 {
    z-index: 0;
}

.error-state-inner {
    position: relative;
    z-index: 2;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.error-state-icon-wrap {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-state-icon-wrap svg {
    width: 48px;
    height: 48px;
    color: var(--primary-nova);
}

.error-state-code {
    font-size: clamp(4rem, 14vw, 7.5rem);
    font-weight: 1000;
    line-height: 1;
    letter-spacing: -4px;
    margin-bottom: 0.35rem;
    background: linear-gradient(135deg, #f8fafc 0%, #64748b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.error-state-title {
    font-size: clamp(1.35rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--primary-nova);
    margin-bottom: 1rem;
}

.error-state-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 2.25rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.error-state-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.error-state-actions .btn {
    min-width: 200px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}