            :root {
                --primary: #16c5d8;
                --primary-dark: #0ca8ba;
                --dark: #121c24;
                --muted: #6c757d;
                --light: #f4fbfc;
                --white: #ffffff;
                --border: #e3f3f5;
                --shadow: 0 18px 45px rgba(18, 28, 36, 0.08);
                --shadow-hover: 0 24px 60px rgba(18, 28, 36, 0.14);
                --radius: 22px;
            }

            html {
                scroll-behavior: smooth;
                scroll-padding-top: 72px;
            }

            body {
                font-family: "Segoe UI", Tahoma, Arial, sans-serif;
                color: var(--muted);
                background-color: var(--white);
                line-height: 1.8;
            }

            a {
                text-decoration: none;
            }

            section,
            header {
                scroll-margin-top: 72px;
            }

            .section-padding {
                padding: 100px 0;
            }

            .section-label {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                color: var(--primary-dark);
                background-color: rgba(22, 197, 216, 0.1);
                border: 1px solid rgba(22, 197, 216, 0.2);
                border-radius: 50rem;
                padding: 7px 18px;
                font-size: 14px;
                font-weight: 800;
                margin-bottom: 16px;
            }

            .section-title {
                color: var(--dark);
                font-size: clamp(30px, 4vw, 46px);
                font-weight: 900;
                line-height: 1.3;
                margin-bottom: 16px;
            }

            .section-text {
                max-width: 720px;
                margin: 0 auto;
                color: var(--muted);
            }

            /* Navbar */
            .navbar {
                background-color: rgba(255, 255, 255, 0.98);
                box-shadow: 0 8px 28px rgba(18, 28, 36, 0.08);
                backdrop-filter: blur(14px);
                padding: 18px 0;
            }

            .landing-navbar {
                border-bottom: 1px solid rgba(18, 28, 36, 0.06);
            }

            .navbar-brand {
                display: flex;
                align-items: center;
                gap: 10px;
                color: var(--dark);
                font-size: 30px;
                font-weight: 900;
            }

                .navbar-brand:hover {
                    color: var(--dark);
                }

            .brand-mark {
                width: 38px;
                height: 38px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                color: var(--primary);
                background: transparent;
                border-radius: 0;
                box-shadow: none;
                font-size: 38px;
            }

            .navbar-nav .nav-link {
                position: relative;
                color: var(--dark);
                font-size: 14px;
                font-weight: 800;
                padding: 12px 16px;
                transition: color 0.25s ease;
            }

                .navbar-nav .nav-link:hover,
                .navbar-nav .nav-link.active {
                    color: var(--primary-dark);
                }

                .navbar-nav .nav-link.active::after {
                    content: "";
                    position: absolute;
                    right: 16px;
                    left: 16px;
                    bottom: -18px;
                    height: 3px;
                    background-color: var(--primary-dark);
                    border-radius: 50rem;
                }

             @media (max-width: 991.98px) {
                .navbar-nav .nav-link.active::after {
                    right: 0;
                    left: auto;
                    bottom: 0;
                    width: 100%;
                    height: 2px;
                }
            }

            .navbar-action {
                min-width: 120px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                padding: 10px 22px;
                font-size: 14px;
            }

            /* Buttons */
            .btn-main {
                color: var(--white);
                background: linear-gradient(135deg, var(--primary), var(--primary-dark));
                border: 0;
                border-radius: 50rem;
                padding: 12px 30px;
                font-weight: 800;
                box-shadow: 0 14px 30px rgba(22, 197, 216, 0.28);
                transition: all 0.3s ease;
            }

                .btn-main:hover {
                    color: var(--white);
                    transform: translateY(-3px);
                    box-shadow: 0 18px 40px rgba(22, 197, 216, 0.36);
                }

            .btn-soft {
                color: var(--primary-dark);
                background-color: var(--white);
                border: 1px solid rgba(22, 197, 216, 0.35);
                border-radius: 50rem;
                padding: 12px 30px;
                font-weight: 800;
                transition: all 0.3s ease;
            }

                .btn-soft:hover {
                    color: var(--white);
                    background-color: var(--primary);
                    border-color: var(--primary);
                    transform: translateY(-3px);
                }

            /* Hero */
            .hero-home {
                position: relative;
                overflow: hidden;
                padding: 95px 0 70px;
                background:
                    radial-gradient(circle at 18% 42%, rgba(22, 197, 216, 0.18), transparent 32%),
                    linear-gradient(180deg, #f8fdff 0%, #ffffff 100%);
            }

            .hero-content {
                max-width: 620px;
            }

            .hero-home h1 {
                color: var(--dark);
                font-size: clamp(42px, 6vw, 70px);
                font-weight: 900;
                line-height: 1.25;
                margin: 22px 0;
            }

            .hero-home h1 span {
                display: block;
                color: var(--primary-dark);
            }

            .hero-home p {
                color: #5e6b75;
                font-size: 19px;
                max-width: 560px;
            }

            .hero-action {
                min-width: 170px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
            }

            .hero-note {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                color: var(--dark);
                font-size: 14px;
                font-weight: 800;
                margin-top: 18px;
            }

            .hero-note i {
                color: var(--primary-dark);
                font-size: 20px;
            }

            .hero-car-wrap {
                position: relative;
                min-height: 420px;
            }

            .hero-car-bg {
                position: absolute;
                inset-inline-start: -120px;
                top: 10px;
                width: 560px;
                height: 330px;
                background: rgba(22, 197, 216, 0.16);
                border-radius: 55% 45% 48% 52%;
            }

            .hero-car-img {
                max-width: 100%;
                height: auto;
                display: block;
            }

            .hero-car-wrap {
                overflow: hidden;
            }

            @media (max-width: 767.98px) {
                .hero-home {
                    padding: 1.5rem 0 2rem;
                }

                .hero-home .row {
                    gap: 1rem;
                }

                .hero-car-wrap {
                    min-height: 260px;
                    height: 260px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    overflow: hidden;
                }

                .hero-car-img {
                    width: 100%;
                    max-width: 100%;
                    height: auto;
                    margin: 0 auto;
                    object-fit: contain;
                    filter: drop-shadow(0 18px 28px rgba(18, 28, 36, 0.12));
                }

                .hero-content {
                    max-width: 100%;
                }

                .hero-content h1 {
                    font-size: 2rem;
                    line-height: 1.35;
                }

                .hero-content p {
                    font-size: 1rem;
                }

                .hero-action {
                    width: 100%;
                    justify-content: center;
                }

                .hero-feature-strip {
                    grid-template-columns: 1fr;
                    gap: 1rem;
                    margin-top: 1.5rem;
                }
            }
            .hero-car-fallback {
                position: relative;
                z-index: 2;
                min-height: 320px;
                width: min(620px, 100%);
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 14px;
                color: var(--primary-dark);
                background: rgba(255, 255, 255, 0.7);
                border: 2px dashed rgba(22, 197, 216, 0.35);
                border-radius: 30px;
                font-weight: 900;
                box-shadow: var(--shadow);
            }

            .hero-car-fallback i {
                font-size: 86px;
            }

            .hero-feature-strip {
                position: relative;
                z-index: 4;
                display: grid;
                grid-template-columns: repeat(5, 1fr);
                gap: 0;
                margin: 0 auto;
                padding: 26px 28px;
                background-color: rgba(255, 255, 255, 0.96);
                border: 1px solid rgba(22, 197, 216, 0.12);
                border-radius: 24px;
                box-shadow: var(--shadow-hover);
            }

            .hero-feature {
                min-width: 0;
                display: flex;
                align-items: center;
                gap: 14px;
                padding: 0 18px;
                border-inline-start: 1px solid rgba(18, 28, 36, 0.08);
            }

            .hero-feature div {
                min-width: 0;
            }

            .hero-feature span {
                display: block;
                color: var(--muted);
                font-size: 13px;
                line-height: 1.6;
                white-space: normal;
            }

            /* Subscription Steps */
            .subscription-section {
                background: radial-gradient(circle at 15% 20%, rgba(22, 197, 216, 0.09), transparent 30%), radial-gradient(circle at 85% 15%, rgba(22, 197, 216, 0.08), transparent 28%), linear-gradient(180deg, #ffffff 0%, #f7fdfe 100%);
            }

            .subscription-steps-wrapper {
                position: relative;
            }

            .subscription-step-card {
                position: relative;
                height: 100%;
                min-height: 270px;
                padding: 58px 26px 28px;
                text-align: center;
                background-color: var(--white);
                border: 1px solid var(--border);
                border-radius: 18px;
                box-shadow: var(--shadow);
                transition: all 0.3s ease;
            }

                .subscription-step-card:hover {
                    transform: translateY(-10px);
                    border-color: rgba(22, 197, 216, 0.35);
                    box-shadow: var(--shadow-hover);
                }

                .subscription-step-card::after {
                    content: "";
                    position: absolute;
                    top: 50%;
                    inset-inline-start: -32px;
                    width: 34px;
                    border-top: 3px dotted rgba(22, 197, 216, 0.55);
                }

            .subscription-steps-wrapper .col-lg:first-child .subscription-step-card::after {
                display: none;
            }

            .subscription-step-number {
                position: absolute;
                top: -30px;
                left: 50%;
                width: 58px;
                height: 58px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                color: var(--white);
                background: linear-gradient(135deg, var(--primary), var(--primary-dark));
                border-radius: 50%;
                font-size: 22px;
                font-weight: 900;
                box-shadow: 0 14px 30px rgba(22, 197, 216, 0.34);
                transform: translateX(-50%);
            }

            .subscription-icon {
                width: 86px;
                height: 86px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                color: var(--primary);
                background-color: rgba(22, 197, 216, 0.12);
                border-radius: 50%;
                font-size: 40px;
                margin-bottom: 22px;
            }

            .subscription-step-card h4 {
                color: var(--dark);
                font-size: 22px;
                font-weight: 900;
                margin-bottom: 14px;
            }

            .subscription-step-card p {
                color: var(--muted);
                font-size: 15px;
                margin-bottom: 0;
            }

            .subscription-alert {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 28px;
                padding: 32px;
                text-align: center;
                background: linear-gradient(135deg, rgba(22, 197, 216, 0.08), rgba(255, 255, 255, 0.92));
                border: 1px solid rgba(22, 197, 216, 0.22);
                border-radius: 18px;
                box-shadow: var(--shadow);
            }

            .subscription-alert-icon {
                width: 78px;
                height: 78px;
                flex: 0 0 78px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                color: var(--primary);
                background-color: rgba(22, 197, 216, 0.11);
                border-radius: 20px;
                font-size: 42px;
            }

            .subscription-alert h3 {
                color: var(--dark);
                font-size: 24px;
                font-weight: 900;
                margin-bottom: 8px;
            }

            .subscription-alert p {
                margin-bottom: 0;
            }

            .subscription-coming-soon {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                color: var(--primary-dark);
                font-weight: 900;
                white-space: nowrap;
            }

            /* Pricing */
            .pricing-card {
                position: relative;
                overflow: hidden;
            }

                .pricing-card.featured {
                    border: 2px solid var(--primary);
                    transform: translateY(-14px);
                }

            .popular-badge {
                position: absolute;
                top: 22px;
                inset-inline-end: 22px;
                color: var(--white);
                background-color: var(--primary);
                border-radius: 50rem;
                padding: 6px 14px;
                font-size: 13px;
                font-weight: 800;
            }

            .price {
                color: var(--dark);
                font-size: 46px;
                font-weight: 900;
                margin-bottom: 18px;
            }

            /* Statistics */
            .stats-section {
                color: var(--white);
                background: linear-gradient(rgba(18, 28, 36, 0.95), rgba(18, 28, 36, 0.95)), radial-gradient(circle at 20% 20%, rgba(22, 197, 216, 0.28), transparent 36%);
            }

            .stat-card {
                padding: 30px 20px;
                border: 1px solid rgba(255, 255, 255, 0.1);
                border-radius: var(--radius);
                background-color: rgba(255, 255, 255, 0.05);
                transition: all 0.3s ease;
            }

                .stat-card:hover {
                    transform: translateY(-8px);
                    background-color: rgba(22, 197, 216, 0.14);
                }

            .stat-number {
                color: var(--primary);
                font-size: 44px;
                font-weight: 900;
                line-height: 1;
                margin-bottom: 12px;
            }

            /* Testimonials */
            .customer-image {
                width: 78px;
                height: 78px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                color: #7c98a0;
                background-color: var(--light);
                border: 2px dashed rgba(22, 197, 216, 0.35);
                border-radius: 50%;
                font-size: 11px;
                font-weight: 800;
                line-height: 1.3;
                text-align: center;
            }

            .rating {
                color: #ffc107;
            }

            /* Contact */
            .contact-section {
                background-color: var(--light);
            }

            .contact-item {
                display: flex;
                gap: 16px;
                padding: 18px 0;
                border-bottom: 1px solid rgba(18, 28, 36, 0.08);
            }

                .contact-item i {
                    width: 46px;
                    height: 46px;
                    flex: 0 0 46px;
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    color: var(--white);
                    background-color: var(--primary);
                    border-radius: 16px;
                    font-size: 20px;
                }

            .form-control {
                border-color: var(--border);
                border-radius: 16px;
                padding: 13px 16px;
            }

                .form-control:focus {
                    border-color: var(--primary);
                    box-shadow: 0 0 0 0.25rem rgba(22, 197, 216, 0.16);
                }

            .social-link {
                width: 42px;
                height: 42px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                color: var(--white);
                background-color: var(--dark);
                border-radius: 50%;
                transition: all 0.3s ease;
            }

                .social-link:hover {
                    color: var(--white);
                    background-color: var(--primary);
                    transform: translateY(-4px);
                }

            /* Footer */
            .footer {
                color: rgba(255, 255, 255, 0.72);
                background-color: #101820;
            }

                .footer h5,
                .footer-brand {
                    color: var(--white);
                    font-weight: 900;
                }

            .footer-link {
                display: block;
                color: rgba(255, 255, 255, 0.72);
                margin-bottom: 10px;
                transition: all 0.25s ease;
            }

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

            .footer-bottom {
                background-color: #0b1117;
                border-top: 1px solid rgba(255, 255, 255, 0.08);
            }

            /* Animations */
            .animate-up {
                animation: animateUp 0.9s ease both;
            }

             @keyframes animateUp {
                from {
                    opacity: 0;
                    transform: translateY(28px);
                }

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

            @media (max-width: 991.98px) {
                .navbar-nav .nav-item {
                    text-align: end;
                }

                .navbar-nav .nav-link {
                    display: inline-flex;
                    width: auto;
                    padding: 10px 0;
                }

                .navbar-nav .nav-link.active::after {
                    right: 0;
                    left: auto;
                    bottom: 0;
                    width: 100%;
                    height: 2px;
                }
            }

             @media (max-width: 991.98px) {
                html {
                    scroll-padding-top: 72px;
                }

                .section-padding {
                    padding: 75px 0;
                }

                .hero-home {
                    padding: 95px 0 70px;
                }

                .feature-list {
                    grid-template-columns: 1fr;
                }

                .image-large,
                .about-image {
                    min-height: 340px;
                }

                .pricing-card.featured {
                    transform: none;
                }

                .navbar {
                    z-index: 1050;
                }

                .navbar-collapse {
                    padding-top: 18px;
                    padding-bottom: 8px;
                }

                .navbar-nav .nav-link {
                    padding: 10px 0;
                }

                .navbar .btn {
                    width: 100%;
                }

                .subscription-step-card::after {
                    display: none;
                }

                .subscription-step-card {
                    min-height: auto;
                    padding-top: 54px;
                }

                .subscription-alert {
                    flex-direction: column;
                    padding: 28px 20px;
                }

                .subscription-coming-soon {
                    white-space: normal;
                }
            }

             @media (max-width: 1199.98px) {
                .hero-feature-strip {
                    grid-template-columns: repeat(2, 1fr);
                    margin-top: 24px;
                }

                .hero-feature {
                    border: 0;
                    padding: 12px;
                }
            }

            .pricing-section {
    background:
        radial-gradient(circle at 50% 0%, rgba(22, 197, 216, 0.08), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #fbfeff 100%);
}

.pricing-plan-card {
    position: relative;
    height: 100%;
    padding: 34px 30px;
    text-align: center;
    background-color: var(--white);
    border: 1px solid rgba(18, 28, 36, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(18, 28, 36, 0.06);
    transition: all 0.3s ease;
}

.pricing-plan-card:hover {
    transform: translateY(-8px);
    border-color: rgba(22, 197, 216, 0.35);
    box-shadow: var(--shadow-hover);
}

.pricing-plan-card.featured {
    border-color: rgba(22, 197, 216, 0.45);
}

.plan-badge {
    position: absolute;
    top: 18px;
    inset-inline-start: 18px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50rem;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 900;
}

.plan-icon {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    background-color: rgba(22, 197, 216, 0.12);
    border-radius: 50%;
    font-size: 30px;
    margin-bottom: 22px;
}

.plan-title {
    color: var(--dark);
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 12px;
}

.plan-title span {
    color: var(--primary-dark);
    font-size: 34px;
}

.plan-description {
    min-height: 58px;
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 22px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    text-align: start;
}

.plan-features li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: var(--dark);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
}

.plan-features i {
    order: 2;
    color: var(--primary-dark);
    font-size: 18px;
    font-weight: 900;
}

.pricing-note-card {
    padding: 42px 28px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(22, 197, 216, 0.12), transparent 36%),
        rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(22, 197, 216, 0.35);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.pricing-note-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    background-color: rgba(22, 197, 216, 0.1);
    border: 1px solid rgba(22, 197, 216, 0.35);
    border-radius: 50%;
    font-size: 28px;
    margin-bottom: 20px;
}

.pricing-note-card h3 {
    color: var(--dark);
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 12px;
}

.pricing-note-card p {
    color: var(--muted);
    margin-bottom: 24px;
}

.pricing-note-action {
    min-width: 190px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.faq-section {
    background:
        radial-gradient(circle at 50% 0%, rgba(22, 197, 216, 0.08), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #fbfeff 100%);
}

.faq-accordion .accordion-item {
    overflow: hidden;
    margin-bottom: 14px;
    background-color: var(--white);
    border: 1px solid rgba(18, 28, 36, 0.1);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(18, 28, 36, 0.04);
}

.faq-accordion .accordion-button {
    color: var(--dark);
    background-color: var(--white);
    font-weight: 900;
    padding: 18px 22px;
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    margin-right: auto;
    margin-left: 0;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-dark);
    background-color: rgba(22, 197, 216, 0.06);
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-body {
    color: var(--muted);
    padding: 0 22px 20px;
}

.faq-help-card {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 30px 34px;
    background:
        radial-gradient(circle at 50% 0%, rgba(22, 197, 216, 0.1), transparent 42%),
        rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(22, 197, 216, 0.32);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.faq-help-icon {
    width: 66px;
    height: 66px;
    flex: 0 0 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    background-color: rgba(22, 197, 216, 0.12);
    border-radius: 50%;
    font-size: 32px;
}

.faq-help-content {
    flex: 1;
}

.faq-help-content h3 {
    color: var(--dark);
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 6px;
}

.faq-help-content p {
    margin-bottom: 0;
}

.faq-help-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.faq-help-action {
    min-width: 150px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

  @media (max-width: 991.98px) {
    .faq-help-card {
        flex-direction: column;
        text-align: center;
    }

    .faq-help-actions {
        justify-content: center;
    }
}
   
        .access-denied-navbar {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 8px 28px rgba(18, 28, 36, 0.08);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(18, 28, 36, 0.06);
            padding: 18px 0;
        }

        .access-denied-navbar-inner {
            width: min(1120px, calc(100% - 32px));
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .access-denied-brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--dark);
            font-size: 30px;
            font-weight: 900;
        }

        .access-denied-brand:hover {
            color: var(--dark);
        }

        .access-denied-brand i {
            color: var(--primary);
            font-size: 38px;
            line-height: 1;
        }

        .access-denied-links {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 22px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .access-denied-links a {
            position: relative;
            color: var(--dark);
            font-size: 14px;
            font-weight: 800;
            padding: 12px 0;
            transition: color 0.25s ease;
        }

        .access-denied-links a:hover,
        .access-denied-links a.active {
            color: var(--primary-dark);
        }

        .access-denied-links a.active::after {
            content: "";
            position: absolute;
            right: 0;
            left: 0;
            bottom: -18px;
            height: 3px;
            background-color: var(--primary-dark);
            border-radius: 50rem;
        }

        .access-denied-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .access-denied-button {
            min-width: 138px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-radius: 50rem;
            padding: 10px 22px;
            font-size: 14px;
            font-weight: 800;
            transition: all 0.3s ease;
        }

        .access-denied-button-primary {
            color: var(--white);
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            box-shadow: 0 14px 30px rgba(22, 197, 216, 0.28);
        }

        .access-denied-button-primary:hover {
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 18px 40px rgba(22, 197, 216, 0.36);
        }

        .access-denied-button-soft {
            color: var(--primary-dark);
            background-color: var(--white);
            border: 1px solid rgba(22, 197, 216, 0.35);
        }

        .access-denied-button-soft:hover {
            color: var(--white);
            background-color: var(--primary);
            border-color: var(--primary);
            transform: translateY(-3px);
        }

        .access-denied-page {
            min-height: calc(100vh - 89px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 50px 16px;
        }

        .access-denied-card {
            width: min(974px, 100%);
            display: grid;
            grid-template-columns: 1fr 1fr;
            overflow: hidden;
            background-color: var(--white);
            border-radius: 24px;
            box-shadow: var(--shadow-hover);
        }

        .access-denied-visual {
            position: relative;
            min-height: 550px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 46px;
            background:
                radial-gradient(circle at 50% 42%, rgba(22, 197, 216, 0.12), transparent 33%),
                linear-gradient(135deg, #ffffff 0%, #fbfeff 100%);
        }

        .access-denied-visual::before {
            content: "";
            position: absolute;
            width: 292px;
            height: 292px;
            border-radius: 50%;
            background-color: rgba(22, 197, 216, 0.1);
            transform: translateY(-18px);
        }

        .access-denied-shield {
            position: absolute;
            top: 118px;
            width: 154px;
            height: 154px;
            color: var(--primary);
            opacity: 0.82;
            z-index: 1;
        }

        .access-denied-car {
            position: relative;
            z-index: 2;
            width: min(395px, 100%);
            margin-top: 150px;
            filter: drop-shadow(0 22px 24px rgba(18, 28, 36, 0.16));
        }

        .access-denied-decoration {
            position: absolute;
            color: rgba(22, 197, 216, 0.2);
            font-size: 24px;
            font-weight: 900;
        }

        .access-denied-decoration-dot {
            width: 9px;
            height: 9px;
            background-color: rgba(22, 197, 216, 0.2);
            border-radius: 50%;
        }

        .access-denied-decoration-one {
            top: 68px;
            right: 173px;
        }

        .access-denied-decoration-two {
            top: 130px;
            left: 100px;
        }

        .access-denied-decoration-three {
            top: 190px;
            right: 50px;
        }

        .access-denied-decoration-four {
            top: 196px;
            left: 72px;
        }

        .access-denied-content {
            min-height: 550px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 58px 72px;
            text-align: center;
            color: var(--white);
            background:
                radial-gradient(circle at 42% 18%, rgba(22, 197, 216, 0.18), transparent 32%),
                linear-gradient(135deg, #102233 0%, #071827 100%);
        }

        .access-denied-content-inner {
            width: 100%;
        }

        .access-denied-lock {
            position: relative;
            width: 102px;
            height: 102px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--white);
            border: 2px solid rgba(22, 197, 216, 0.85);
            border-radius: 50%;
            font-size: 43px;
        }

        .access-denied-lock-badge {
            position: absolute;
            right: -1px;
            bottom: 12px;
            width: 33px;
            height: 33px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 50%;
            font-size: 18px;
            box-shadow: 0 8px 18px rgba(22, 197, 216, 0.35);
        }

        .access-denied-title {
            color: var(--white);
            font-size: clamp(34px, 4vw, 42px);
            font-weight: 900;
            line-height: 1.35;
            margin-bottom: 18px;
        }

        .access-denied-text {
            color: rgba(255, 255, 255, 0.78);
            font-size: 17px;
            line-height: 1.9;
            margin-bottom: 30px;
        }

        .access-denied-message {
            color: #fff3cd;
            background-color: rgba(255, 193, 7, 0.12);
            border: 1px solid rgba(255, 193, 7, 0.28);
            border-radius: 16px;
            padding: 14px 18px;
            margin-bottom: 28px;
        }

        .access-denied-divider {
            height: 1px;
            margin: 0 0 36px;
            background-color: rgba(255, 255, 255, 0.09);
        }

        .access-denied-content .access-denied-button {
            width: min(316px, 100%);
            min-height: 52px;
            margin-inline: auto;
            margin-bottom: 18px;
            font-size: 16px;
        }

        .access-denied-outline-button {
            color: rgba(255, 255, 255, 0.9);
            background-color: transparent;
            border: 1px solid rgba(22, 197, 216, 0.9);
        }

        .access-denied-outline-button:hover {
            color: var(--white);
            background-color: rgba(22, 197, 216, 0.14);
            transform: translateY(-3px);
        }

         @media (max-width: 991.98px) {
            .access-denied-navbar-inner {
                flex-wrap: wrap;
            }

            .access-denied-links {
                order: 3;
                width: 100%;
                flex-wrap: wrap;
                gap: 12px 18px;
            }

            .access-denied-links a.active::after {
                bottom: 0;
            }

            .access-denied-card {
                grid-template-columns: 1fr;
            }

            .access-denied-visual,
            .access-denied-content {
                min-height: auto;
            }

            .access-denied-visual {
                padding: 44px 24px;
            }

            .access-denied-content {
                padding: 48px 24px;
            }
        }

         @media (max-width: 575.98px) {
            .access-denied-navbar-inner {
                justify-content: center;
                text-align: center;
            }

            .access-denied-actions {
                width: 100%;
                flex-direction: column-reverse;
            }

            .access-denied-button {
                width: 100%;
            }

            .access-denied-links {
                justify-content: center;
            }

            .access-denied-card {
                border-radius: 18px;
            }

            .access-denied-visual {
                min-height: 340px;
            }

            .access-denied-shield {
                top: 68px;
                width: 128px;
                height: 128px;
            }

            .access-denied-car {
                margin-top: 120px;
            }
        }