/* ===== GLOBAL THEME ===== */
        body {
            background: #0f172a;
            color: #e2e8f0;
        }

        /* ===== HERO ===== */
        .hero-wrap {
            min-height: 90vh;
            display: flex;
            align-items: center;
            padding: 80px 0;
        }

        /* Brand */
        .brand-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 999px;
            background: rgba(99, 102, 241, 0.15);
            border: 1px solid rgba(99, 102, 241, 0.3);
            color: #a5b4fc;
            font-weight: 700;
            margin-bottom: 18px;
        }

        /* Title */
        .hero-title {
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 900;
            line-height: 1.05;
            letter-spacing: -1.5px;
        }

        /* FIXED gradient */
        .gradient-text {
            background: linear-gradient(135deg, #60a5fa, #a78bfa, #34d399);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Subtitle */
        .hero-subtitle {
            max-width: 600px;
            color: #94a3b8;
            line-height: 1.7;
            margin: 20px 0 30px;
        }

        /* Buttons */
        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-primary-glow {
            padding: 13px 26px;
            border-radius: 999px;
            background: linear-gradient(135deg, #2563eb, #7c3aed);
            color: white;
            font-weight: 800;
            box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
            transition: 0.3s;
            text-decoration: none;
        }

        .btn-primary-glow:hover {
            transform: translateY(-4px);
            box-shadow: 0 25px 60px rgba(124, 58, 237, 0.6);
        }

        /* Secondary CTA */
        .btn-outline-premium {
            padding: 13px 26px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #e2e8f0;
            font-weight: 700;
            background: transparent;
            transition: 0.3s;
        }

        .btn-outline-premium:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* ===== STATS ===== */
        .stat-card {
            padding: 14px 20px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat-card h4 {
            font-weight: 800;
        }

        /* ===== PREVIEW ===== */
        .preview-card {
            border-radius: 28px;
            padding: 28px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
        }

        /* Floating badge */
        .floating-badge {
            position: absolute;
            top: -15px;
            right: -10px;
            padding: 8px 14px;
            border-radius: 999px;
            background: linear-gradient(135deg, #f97316, #ef4444);
            font-weight: 800;
            font-size: 0.8rem;
        }

        /* Docs */
        .doc-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            border-radius: 14px;
            background: rgba(15, 23, 42, 0.7);
            margin-bottom: 12px;
        }

        .price-tag {
            margin-left: auto;
            background: rgba(34, 197, 94, 0.2);
            padding: 6px 10px;
            border-radius: 999px;
            font-weight: 700;
        }

        /* ===== FEATURES ===== */
        .feature-section {
            padding: 60px 0 100px;
        }

        .section-title {
            font-weight: 900;
        }

        .feature-card {
            padding: 26px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-6px);
        }

        /* ===== MOBILE ===== */
        @media(max-width:768px) {
            .hero-wrap {
                text-align: center;
            }

            .hero-actions {
                justify-content: center;
            }
        }

        .quick-action-section {
            padding: 28px 0;
        }

        .quick-card {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.18);
            backdrop-filter: blur(20px);
            border-radius: 26px;
            padding: 28px;
            color: #fff;
            box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
        }

        .quick-title {
            font-weight: 900;
            margin-bottom: 10px;
        }

        .quick-subtitle {
            color: #cbd5e1;
            max-width: 720px;
            line-height: 1.7;
        }

        .user-info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
            margin-top: 22px;
        }

        .user-info-box {
            padding: 14px 16px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.16);
        }

        .user-info-box span {
            display: block;
            font-size: 0.78rem;
            color: #94a3b8;
            margin-bottom: 4px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .user-info-box strong {
            color: #fff;
            word-break: break-word;
        }

        .quick-actions-card {
            background: rgba(15, 23, 42, 0.78);
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 26px;
            padding: 22px;
            height: 100%;
            box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
        }

        .quick-actions-card h5 {
            color: #fff;
            font-weight: 900;
            margin-bottom: 16px;
        }

        .quick-action-list {
            display: grid;
            gap: 12px;
        }

        .quick-action-btn {
            width: 100%;
            min-height: 48px;
            border: none;
            border-radius: 16px;
            padding: 12px 15px;
            color: #fff;
            font-weight: 800;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: linear-gradient(135deg, rgba(13, 110, 253, 0.95), rgba(124, 58, 237, 0.95));
            box-shadow: 0 10px 24px rgba(13, 110, 253, 0.25);
            transition: 0.25s ease;
        }

        .quick-action-btn:hover {
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 16px 34px rgba(124, 58, 237, 0.35);
        }

        .quick-action-btn i:first-child {
            margin-right: 8px;
        }

        .quick-action-btn.light {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.16);
        }

        .quick-action-btn.danger {
            background: linear-gradient(135deg, #ef4444, #dc2626);
        }

        .quick-action-btn.admin {
            background: linear-gradient(135deg, #f59e0b, #f97316);
        }

        .register-link {
            color: #38bdf8;
            font-weight: 900;
            text-decoration: none;
        }

        .register-link:hover {
            text-decoration: underline;
        }

        @media (max-width: 991px) {

            .quick-card,
            .quick-actions-card {
                border-radius: 22px;
                padding: 22px;
            }
        }

        @media (max-width: 576px) {
            .quick-action-section {
                padding: 18px 0;
            }

            .quick-card,
            .quick-actions-card {
                padding: 18px;
            }

            .quick-title {
                font-size: 1.35rem;
            }

            .quick-subtitle {
                font-size: 0.9rem;
            }

            .user-info-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .quick-action-btn {
                min-height: 44px;
                font-size: 0.88rem;
                border-radius: 14px;
            }
        }

        /* -------faq---------- */
        .faq-section {
            padding: 28px 0 60px;
        }

        .faq-wrapper {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.18);
            backdrop-filter: blur(20px);
            border-radius: 26px;
            padding: 28px;
            color: #fff;
            box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
        }

        .faq-heading {
            text-align: center;
            margin-bottom: 28px;
        }

        .faq-heading h2 {
            font-weight: 900;
            margin-bottom: 8px;
        }

        .faq-heading p {
            color: #cbd5e1;
            margin-bottom: 0;
        }

        .faq-box {
            background: rgba(15, 23, 42, 0.78);
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 18px;
            margin-bottom: 14px;
            overflow: hidden;
            transition: 0.3s ease;
        }

        .faq-box:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(13, 110, 253, 0.18);
        }

        .faq-question {
            width: 100%;
            border: none;
            background: transparent;
            color: #fff;
            padding: 18px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            font-weight: 800;
            text-align: left;
        }

        .faq-question span {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .faq-question i {
            color: #38bdf8;
        }

        .faq-toggle {
            min-width: 34px;
            height: 34px;
            border-radius: 12px;
            display: grid;
            place-items: center;
            background: linear-gradient(135deg, rgba(13, 110, 253, 0.95), rgba(124, 58, 237, 0.95));
            transition: 0.3s ease;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
        }

        .faq-answer p {
            color: #cbd5e1;
            line-height: 1.7;
            padding: 0 20px 18px 52px;
            margin: 0;
        }

        .faq-box.active .faq-answer {
            max-height: 220px;
        }

        .faq-box.active .faq-toggle {
            transform: rotate(45deg);
            background: linear-gradient(135deg, #ef4444, #dc2626);
        }

        @media (max-width: 576px) {
            .faq-section {
                padding: 18px 0 45px;
            }

            .faq-wrapper {
                padding: 18px;
                border-radius: 22px;
            }

            .faq-heading h2 {
                font-size: 1.35rem;
            }

            .faq-heading p {
                font-size: 0.9rem;
            }

            .faq-question {
                padding: 15px;
                font-size: 0.9rem;
            }

            .faq-answer p {
                padding: 0 15px 16px 15px;
                font-size: 0.88rem;
            }
        }






        /* =========================== svg ============================= */
        .support-loader {
    display: inline-block;
    vertical-align: middle;
}

.spinning-cog {
    animation: spinning-cog 1.3s infinite linear;
    transform-origin: center;
    transform-box: fill-box;
}

@keyframes spinning-cog {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ----- */
.library-spinner {
    color: hsl(228, 97%, 42%);
    animation: librarySpin 1.2s linear infinite;
    vertical-align: middle;
}

@keyframes librarySpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.view-pdf-loader-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.view-pdf-loader {
    width: 42px;
    height: 22px;
    color: currentColor;
}

.view-pdf-loader-back,
.view-pdf-loader-front {
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.view-pdf-loader-back {
    opacity: 0.18;
}

.view-pdf-loader-front {
    stroke-dasharray: 260;
    stroke-dashoffset: 260;
    animation: viewPdfDash 1.4s linear infinite;
}

@keyframes viewPdfDash {
    0% {
        stroke-dashoffset: 260;
        opacity: 1;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0.45;
    }
}
