/* Custom Modern Styles for Exam4Success Clone */

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-color: #1f2937;
    --bg-light: #f3f4f6;
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    background-color: var(--white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

/* New Brand Logo Styles */
.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-icon-box {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.2rem;
    margin-right: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.5px;
    color: var(--text-color);
}

.brand-text span {
    color: var(--primary-color);
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
}

.btn-primary-custom:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}


/* =========================================
   HEADER SEARCH ICON + GLOBAL SEARCH MODAL
   ========================================= */
.nav-search-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid #e5e7eb;
    background: #f8fafc;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background-color .2s, border-color .2s, color .2s;
}
.nav-search-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

#globalSearchModal .modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
#globalSearchModal .modal-header {
    padding: 1.5rem 1.5rem .5rem;
}
#globalSearchModal .modal-body {
    padding: 0 1.5rem 1.5rem;
}
.global-search-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.global-search-icon {
    position: absolute;
    left: 1rem;
    color: #9ca3af;
    font-size: .95rem;
}
.global-search-input {
    width: 100%;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: .85rem 1rem .85rem 2.6rem;
    font-size: 1rem;
    outline: none;
    transition: border-color .2s;
}
.global-search-input:focus {
    border-color: var(--primary-color);
}
.global-search-results {
    margin-top: .75rem;
    max-height: 360px;
    overflow-y: auto;
}
.gs-result-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .65rem .75rem;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: background-color .15s;
}
.gs-result-item:hover, .gs-result-item.active {
    background: #eff6ff;
}
.gs-result-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #eff6ff;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0;
}
.gs-result-item[data-type="vendor"] .gs-result-icon {
    background: #fef3c7;
    color: #b45309;
}
.gs-result-title {
    font-size: .9rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.3;
}
.gs-result-sub {
    font-size: .78rem;
    color: #6b7280;
}
.gs-empty, .gs-loading {
    padding: .75rem;
    font-size: .85rem;
    color: #9ca3af;
    text-align: center;
}

/* Autocomplete dropdown for the homepage hero search box */
.hero-search-wrap {
    position: relative;
}
.hero-search-wrap .global-search-results {
    position: absolute;
    top: calc(100% + .5rem);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,.18);
    padding: .5rem;
    z-index: 20;
    margin-top: 0;
}
/* Hide the dropdown box entirely when it has no results */
.global-search-results:empty {
    display: none;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    padding: 5rem 0 4.5rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 55%, #1d4ed8 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    color: #bfdbfe;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .04em;
    padding: .35rem .9rem;
    border-radius: 20px;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    color: #fff;
}

.hero-title-highlight {
    color: #60a5fa;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,.78);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: rgba(255,255,255,.1);
    color: #e0f2fe;
    font-size: .8rem;
    font-weight: 600;
    padding: .3rem .75rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.15);
}

.hero-tag i { color: #4ade80; font-size: .7rem; }

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.hero-cta-btn { border-radius: 10px !important; font-weight: 700 !important; }

/* Stats card in hero */
.hero-stats-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(8px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.hero-stat-item { text-align: center; }

.hero-stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.hero-stat-num span { font-size: 1.2rem; color: #60a5fa; }

.hero-stat-label {
    font-size: .75rem;
    color: rgba(255,255,255,.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: .3rem;
}

.hero-vendors-row { border-top: 1px solid rgba(255,255,255,.12); grid-column: 1/-1; }

.hero-vendor-label {
    font-size: .75rem;
    color: rgba(255,255,255,.5);
    margin-bottom: .5rem;
}

.hero-vendor-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}

.hero-vendor-chips span {
    background: rgba(255,255,255,.1);
    color: #bfdbfe;
    font-size: .72rem;
    font-weight: 700;
    padding: .2rem .6rem;
    border-radius: 6px;
}

.search-box {
    background: var(--white);
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.search-input {
    border: none;
    padding: 0.75rem 1.5rem;
    width: 100%;
    outline: none;
    border-radius: 50px;
    font-size: 1rem;
}

.search-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.search-btn:hover {
    transform: scale(1.05);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-text {
    color: #6b7280;
    line-height: 1.6;
}

/* Vendors Section */
.vendors-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #111827;
}

.vendor-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    transition: all 0.2s ease;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
}

.vendor-card:hover {
    background-color: var(--white);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Info Section */
.info-section {
    padding: 5rem 0;
}

.info-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.info-content p {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background-color: #111827;
    color: #9ca3af;
    padding: 4rem 0 2rem;
}

.footer-title {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.copyright {
    border-top: 1px solid #374151;
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
}

.footer-support-btn {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .5rem .85rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: .875rem;
    font-weight: 600;
    transition: all .18s;
    margin-bottom: .6rem;
    width: fit-content;
}
.footer-support-btn.btn-live-chat {
    background: #2563eb !important;
    color: #fff !important;
    border: 1.5px solid #2563eb !important;
    cursor: pointer;
}
.footer-support-btn.btn-live-chat:hover {
    background: #1d4ed8 !important;
    border-color: #1d4ed8 !important;
    color: #fff !important;
}
.footer-support-btn.btn-message {
    background: transparent !important;
    color: #e5e7eb !important;
    border: 1.5px solid #4b5563 !important;
}
.footer-support-btn.btn-message:hover {
    border-color: #9ca3af !important;
    color: #fff !important;
    background: #1f2937 !important;
}

/* Testimonial Cards */
.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.avatar {
    font-size: 1.2rem;
}

/* Star Rating */
.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating input {
    display: none;
}

.rating label {
    cursor: pointer;
    width: 25px;
    font-size: 25px;
    color: #d1d5db; /* Gray-300 */
    transition: color 0.2s;
    margin-right: 5px;
}

.rating label:hover,
.rating label:hover ~ label,
.rating input:checked ~ label {
    color: #fbbf24; /* Amber-400 */
}

/* FAQ Section */
.faq-category-title {
    background-color: transparent;
    padding: 0 0 1rem 0;
    border-radius: 0;
    color: var(--text-color);
    font-weight: 800;
    font-size: 1.5rem;
    border-left: none;
    display: flex;
    align-items: center;
    box-shadow: none;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 2rem;
}

.faq-category-title i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.5rem;
    background: #eff6ff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

/* Vendor Page Styles */
.vendor-logo-box {
    background: #fff;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.exam-item {
    transition: background-color 0.2s ease;
}

.exam-item:hover {
    background-color: #f9fafb;
}

.vendor-search {
    max-width: 100%;
}

/* Exam Pages */
.exam-hero {
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
}

.exam-meta li {
    margin-bottom: 0.5rem;
    color: #4b5563;
    font-weight: 500;
}

.badge-soft-success {
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    padding: 0.35rem 0.6rem;
    border-radius: 50px;
    font-weight: 600;
}

.badge-soft-info {
    background-color: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
    padding: 0.35rem 0.6rem;
    border-radius: 50px;
    font-weight: 600;
}

.question-item {
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
}

.question-item .h6 {
    color: #111827;
}

.pricing-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    transition: all 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

#scrollUp {
    text-align: center;
    bottom: 40px;
    cursor: pointer;
    display: none;
    position: fixed;
    left: 40px;
    z-index: 999;
}

#scrollUp i {
    background-color: #007bff;
    height: 40px;
    font-size: 24px;
    width: 42px;
    color: #fff;
    line-height: 36px;
    transition: all 0.3s ease 0s;
    margin-left: 2px;
}


.footer .brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.5px;
    color: #fff;
}

.footer .brand-logo {
    margin-bottom: 15px;
}

/* =========================================
   PAGE CONTENT WRAPPER
   ========================================= */
.page-content {
    min-height: 60vh;
}

/* =========================================
   BREADCRUMBS
   ========================================= */
.breadback {
    background-color: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

/* =========================================
   PAGE HERO (static pages)
   ========================================= */
.page-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 55%, #1d4ed8 100%);
    padding: 3rem 0 2.5rem;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.page-hero h1 {
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -.025em;
    margin-bottom: .5rem;
    position: relative;
}
.page-hero .page-hero-subtitle {
    color: rgba(255,255,255,.65);
    font-size: .95rem;
    margin-bottom: 1rem;
    position: relative;
}

/* =========================================
   PAGE BODY (static pages content area)
   ========================================= */
.page-body {
    padding: 3rem 0 4rem;
    background: #f8fafc;
}
.page-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    padding: 2.5rem;
}
.page-section-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid #e5e7eb;
}
/* Contact page */
.contact-info-card {
    background: #f0f7ff;
    border: 1.5px solid #bfdbfe;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}
.contact-info-card .ci-icon {
    width: 42px; height: 42px;
    background: #2563eb;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1rem;
    flex-shrink: 0;
}
.contact-info-card .ci-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #64748b; margin-bottom: .15rem; }
.contact-info-card .ci-value { font-size: .92rem; font-weight: 600; color: #1e293b; }
/* FAQ accordion */
.faq-category-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e3a5f;
    padding: .6rem 1rem;
    background: #eff6ff;
    border-left: 4px solid #2563eb;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0 1rem;
}
.faq-accordion .accordion-button {
    font-weight: 600;
    font-size: .9rem;
    color: #0f172a;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: #eff6ff;
    color: #1d4ed8;
    box-shadow: none;
}
.faq-accordion .accordion-item {
    border: 1.5px solid #e5e7eb;
    border-radius: 10px !important;
    margin-bottom: .5rem;
    overflow: hidden;
}
.faq-accordion .accordion-body {
    font-size: .88rem;
    color: #374151;
    line-height: 1.7;
}

.breadcrumbs {
    padding: 0.75rem 0;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    align-items: center;
}

.breadcrumb li {
    font-size: 0.875rem;
    color: #6b7280;
}

.breadcrumb li a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb li a:hover {
    text-decoration: underline;
}

.breadcrumb li + li::before {
    content: "/";
    margin: 0 0.4rem;
    color: #9ca3af;
}

.breadcrumb li.active {
    color: #374151;
    font-weight: 500;
}

/* =========================================
   UNIFIED BREADCRUMB BAR
   Sits as its own strip above the hero/content
   on every page - never inside a colored hero.
   ========================================= */
.breadcrumb-bar {
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
    padding: .6rem 0;
}
.breadcrumb-bar .breadcrumb {
    font-size: .82rem;
}

/* =========================================
   404 PAGE
   ========================================= */
.page-404 {
    padding: 5rem 0;
}

.error-404-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

/* =========================================
   GENERAL SECTION SPACING
   ========================================= */
.section {
    padding: 3rem 0;
}

/* =========================================
   USER CENTER / CUSTOMER AREA
   ========================================= */
.member-area-container {
    display: flex;
    gap: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
    margin: 2rem 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.07);
}

.member-nav {
    width: 220px;
    min-width: 220px;
    background: #f9fafb;
    border-right: 1px solid #e5e7eb;
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
}

.member-nav a {
    display: block;
    padding: 0.65rem 1.25rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    border-left: 3px solid transparent;
}

.member-nav a:hover,
.member-nav a.selected {
    background: #eff6ff;
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.member-nav label.re-sell-option {
    display: block;
    padding: 0.75rem 1.25rem 0.25rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
    margin-top: 0.5rem;
}

.member-nav a.signout-link {
    margin-top: auto;
    color: #ef4444;
    border-top: 1px solid #e5e7eb;
    padding-top: 0.75rem;
}

.member-nav a.signout-link:hover {
    background: #fef2f2;
    color: #dc2626;
    border-left-color: #ef4444;
}

.member-area-right-contents {
    flex: 1;
    padding: 2rem;
    overflow-x: auto;
}

.mobile-nav {
    display: none;
}

.certification {
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid #e5e7eb;
}

.certification h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.certification p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Dashboard tiles */
.dash-tab-singl {
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s;
    position: relative;
    background: #fff;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    cursor: pointer;
}

.dash-tab-singl:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 6px -1px rgba(37,99,235,0.1);
    transform: translateY(-2px);
}

.dash-tab-singl i,
.dash-tab-singl .fa {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.dash-tab-singl h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin: 0;
}

.rib-wrapper-tab {
    position: absolute;
    top: -8px;
    right: -8px;
}

.rib-tab {
    background: var(--primary-color);
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* User center tables */
.tbl-Cl {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.tbl-Cl th {
    background: #f3f4f6;
    padding: 0.65rem 1rem;
    font-weight: 600;
    color: #374151;
    text-align: left;
    border: 1px solid #e5e7eb;
}

.tbl-Cl td {
    padding: 0.65rem 1rem;
    border: 1px solid #e5e7eb;
    color: #4b5563;
}

/* =========================================
   EXAM / VENDOR PAGE STYLES
   ========================================= */
.breadback + .section,
.breadback + section {
    padding-top: 2rem;
}

/* Filter buttons for vendor listing */
.buttons {
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #374151;
    padding: 0.3rem 0.65rem;
    border-radius: 0.375rem;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.buttons:hover,
.buttons.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Exam detail table */
.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f9fafb;
}

.exam-stat h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.exam-stat .subtitle {
    color: #6b7280;
    font-size: 1rem;
}

.info-header {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* =========================================
   LOGIN / REGISTER PAGES
   ========================================= */
.login-wrapper h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.login-footer {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.login-footer a {
    color: var(--primary-color);
}

/* =========================================
   FORMS
   ========================================= */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

/* Alert / notice styles */
.successNotice {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin: 0.75rem 0;
}

.errorNotice {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin: 0.75rem 0;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    .member-area-container {
        flex-direction: column;
    }

    .member-nav {
        width: 100%;
        min-width: unset;
        flex-direction: row;
        flex-wrap: wrap;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding: 0.5rem;
    }

    .member-nav a {
        padding: 0.4rem 0.75rem;
        border-left: none;
        border-bottom: 2px solid transparent;
        font-size: 0.8rem;
    }

    .member-nav a:hover,
    .member-nav a.selected {
        border-left-color: transparent;
        border-bottom-color: var(--primary-color);
    }

    .member-nav a.signout-link {
        border-top: none;
        border-left: none;
    }

    .member-area-right-contents {
        padding: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .error-404-box {
        padding: 2rem 1rem;
    }
}

/* =========================================
   BOOTSTRAP 3 COMPAT / SHARED VIEW CLASSES
   ========================================= */

/* Bootstrap 3 form-group → Bootstrap 5 mb-3 */
.form-group {
    margin-bottom: 1rem;
}

/* Bootstrap 3 has-error */
.has-error .form-control {
    border-color: #dc3545;
}

.has-error .help-block {
    color: #dc3545;
    font-size: 0.85rem;
}

/* Bootstrap 3 input-group-prepend (now removed in BS5) */
.input-group-prepend {
    display: flex;
}

.input-group-prepend .input-group-text {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

/* mainwhitebg used in old views */
.mainwhitebg {
    background: #fff;
    padding: 2rem 0;
    min-height: 60vh;
}

/* wrapper / sec-spacer (legacy layout wrapper classes) */
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.sec-spacer {
    flex: 1;
}

/* mb-30 / mt-30 custom spacing used in views */
.mb-30 { margin-bottom: 30px !important; }
.mt-30 { margin-top: 30px !important; }
.mt-15 { margin-top: 15px !important; }

/* bg-theme-blue (used in old login form spans) */
.bg-theme-blue {
    background-color: var(--primary-color) !important;
}

/* all_vendors section */
.all_vendors {
    padding: 2rem 0;
}

/* Register / login page adjustment */
.registerareaAdj {
    max-width: 600px;
    margin: 2rem auto;
}

.svgContainer {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 1em;
    border-radius: 50%;
    background: none;
    border: solid 2.5px #3a5e77;
    overflow: hidden;
    pointer-events: none;
}

/* Coupon bar */
.topDiscountBar {
    z-index: 9999;
    position: relative;
}

/* popup overlay */
.popup-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 2rem;
    border-radius: 0.75rem;
    z-index: 9999;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

/* Cart section */
#ViewCart {
    padding: 2rem 0;
}

/* Loading overlay */
.loadingimg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

/* Exam table in listing */
.each_exam {
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

/* NoPadding utility */
.NoPadding {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* ===========================================================
   DISCOUNT PACKS — MODERN PRICING CARDS
   =========================================================== */

/* Equal-height column stretch */
.bundlePack {
    display: flex;
    flex-direction: column;
}

/* Gold card needs top padding to clear the "Most Popular" badge */
.bundlePack.goldBox {
    padding-top: 16px;
    position: relative;
}

/* Card shell */
.price-holder {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 28px rgba(0,0,0,.07);
    border: 1.5px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease;
}

.price-holder:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 52px rgba(0,0,0,.13);
}

/* Form fills the card */
.price-holder form.form-inline {
    display: flex !important;
    flex-direction: column;
    height: 100%;
}

/* Gradient is set on the FORM so it shows seamlessly through both
   .overly-icon and h2 (which are transparent) */
.bronzBox .price-holder form { background: linear-gradient(160deg, #7c2d12 0%, #b45309 45%, #d97706 100%); }
.silverBox .price-holder form { background: linear-gradient(160deg, #1e293b 0%, #334155 50%, #64748b 100%); }
.goldBox   .price-holder form { background: linear-gradient(160deg, #78350f 0%, #b45309 40%, #f59e0b 100%); }

/* ---- Header: trophy icon ---- */
.price-holder .overly-icon {
    display: block !important;
    background: transparent !important;
    padding: 1.75rem 1.5rem 0 !important;
    text-align: center;
}

.price-holder .overly-icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 4px 14px rgba(0,0,0,.4));
}

/* ---- Header: title ---- */
.price-holder h2 {
    background: transparent !important;
    color: #fff !important;
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    margin: 0 !important;
    padding: .7rem 1.5rem 1.6rem !important;
    text-align: center;
    border: none !important;
    line-height: 1.3 !important;
}

.price-holder h2 span {
    display: block !important;
    font-size: .7rem !important;
    font-weight: 600 !important;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .82;
    margin-top: .3rem;
}

/* ---- Product image: hidden ---- */
.mega_img { display: none !important; }

/* ---- Features list ---- */
.price-holder ul {
    list-style: none !important;
    padding: 1.3rem 1.5rem !important;
    margin: 0 !important;
    background: #fff;
    flex: 1;
}

.price-holder ul li {
    padding: .42rem 0 !important;
    font-size: .875rem !important;
    color: #374151 !important;
    display: flex !important;
    align-items: center !important;
    gap: .65rem;
    border: none !important;
    background: none !important;
}

/* Hide old star icons */
.price-holder ul li i { display: none !important; }

/* Custom circular check bullet */
.price-holder ul li::before {
    content: '';
    display: inline-block;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px;
}

.bronzBox .price-holder ul li::before {
    background-color: #fef3c7;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath fill='%23d97706' d='M11.28.72a1 1 0 0 0-1.44 0L4 6.56 2.16 4.72A1 1 0 1 0 .72 6.16l2.56 2.56a1 1 0 0 0 1.44 0l6.56-6.56a1 1 0 0 0 0-1.44z'/%3E%3C/svg%3E");
}

.silverBox .price-holder ul li::before {
    background-color: #f1f5f9;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath fill='%2364748b' d='M11.28.72a1 1 0 0 0-1.44 0L4 6.56 2.16 4.72A1 1 0 1 0 .72 6.16l2.56 2.56a1 1 0 0 0 1.44 0l6.56-6.56a1 1 0 0 0 0-1.44z'/%3E%3C/svg%3E");
}

.goldBox .price-holder ul li::before {
    background-color: #fef9c3;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath fill='%23f59e0b' d='M11.28.72a1 1 0 0 0-1.44 0L4 6.56 2.16 4.72A1 1 0 1 0 .72 6.16l2.56 2.56a1 1 0 0 0 1.44 0l6.56-6.56a1 1 0 0 0 0-1.44z'/%3E%3C/svg%3E");
}

/* ---- Pricing box ---- */
.pricingBox {
    padding: 1.25rem 1.5rem 1.25rem !important;
    background: #f8fafc !important;
    border-top: 1.5px solid #f1f5f9;
    text-align: center;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: .25rem;
}

.priceLabel {
    font-size: .65rem !important;
    font-weight: 800 !important;
    letter-spacing: .14em;
    color: #94a3b8 !important;
    text-transform: uppercase;
}

.oldPriceWas {
    font-size: .95rem !important;
    color: #94a3b8 !important;
    text-decoration: line-through !important;
    font-weight: 500 !important;
}

/* Force override inline color styles from DB-generated HTML */
.oldPriceWas span { color: inherit !important; }

.newPrice {
    font-size: 2.6rem !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    letter-spacing: -.02em;
}

.bronzBox .newPrice { color: #b45309 !important; }
.silverBox .newPrice { color: #334155 !important; }
.goldBox   .newPrice { color: #92400e !important; }

/* Override inline color on DB-generated price spans */
.newPrice span { color: inherit !important; }

.newPrice span[itemprop="priceCurrency"] {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    vertical-align: super;
    line-height: 0;
}

.sale-off {
    display: inline-block !important;
    background: #dcfce7 !important;
    color: #15803d !important;
    font-weight: 700 !important;
    font-size: .72rem !important;
    padding: .28rem .85rem !important;
    border-radius: 20px !important;
    letter-spacing: .05em;
    border: none !important;
    margin-top: .1rem;
}

/* ---- CTA Button — full-width, flush bottom to kill form-gradient bleed ---- */
.price-holder .btn-u-red {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: .9rem 1rem !important;
    border-radius: 0 0 18px 18px !important;
    font-size: .9rem !important;
    font-weight: 700 !important;
    letter-spacing: .05em;
    color: #fff !important;
    border: none !important;
    cursor: pointer;
    transition: filter .2s ease, transform .15s ease;
    position: relative;
}

.bronzBox .price-holder .btn-u-red { background: linear-gradient(135deg, #b45309 0%, #d97706 100%) !important; }
.silverBox .price-holder .btn-u-red { background: linear-gradient(135deg, #1e293b 0%, #64748b 100%) !important; }
.goldBox   .price-holder .btn-u-red { background: linear-gradient(135deg, #92400e 0%, #f59e0b 100%) !important; }

.price-holder .btn-u-red:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

/* ---- Gold "Most Popular" badge ---- */
.goldBox::before {
    content: '★  MOST POPULAR';
    position: absolute;
    top: 1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #b45309, #f59e0b);
    color: #fff;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .12em;
    padding: .32rem 1.2rem;
    border-radius: 20px;
    z-index: 10;
    white-space: nowrap;
    box-shadow: 0 3px 12px rgba(245,158,11,.5);
}

/* Gold card highlighted border */
.goldBox .price-holder {
    border: 2px solid #f59e0b;
    box-shadow: 0 8px 40px rgba(245,158,11,.17);
}

/* Responsive */
@media (max-width: 767px) {
    .price-blocks { margin-bottom: 2.5rem !important; }
    .price-blocks:last-child { margin-bottom: 0 !important; }
}

/* =========================================
   HOMEPAGE - SHARED SECTION STYLES
   ========================================= */
.bg-light-gray { background: #f8fafc; }

.home-section { padding: 5rem 0; }

.home-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.home-section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #111827;
    margin-bottom: .6rem;
}

.home-section-sub {
    font-size: 1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   TRUST BAR
   ========================================= */
.trust-bar {
    background: #1e3a5f;
    padding: .85rem 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.trust-bar-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #bfdbfe;
    font-size: .82rem;
    font-weight: 600;
    white-space: nowrap;
}

.trust-bar-item i { color: #60a5fa; font-size: .85rem; }

/* =========================================
   VENDOR CARDS (NEW)
   ========================================= */
.vendor-card-new {
    display: flex;
    align-items: center;
    gap: .85rem;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: .9rem 1rem;
    text-decoration: none;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.vendor-card-new:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 16px rgba(37,99,235,.1);
    transform: translateY(-2px);
    text-decoration: none;
}

.vcn-initials {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    color: #fff;
    font-size: .8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vcn-body { flex: 1; min-width: 0; }

.vcn-name {
    font-size: .88rem;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vcn-meta {
    display: flex;
    gap: .75rem;
    margin-top: .2rem;
    flex-wrap: wrap;
}

.vcn-meta span {
    font-size: .72rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: .25rem;
}

.vcn-meta i { color: #2563eb; font-size: .65rem; }

.vcn-arrow { color: #d1d5db; font-size: .75rem; flex-shrink: 0; }

.vendor-card-new:hover .vcn-arrow { color: #2563eb; }

.vendor-card-all .vcn-initials.all-icon {
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    font-size: 1rem;
}

.vendor-card-all .vcn-name { color: #2563eb; }

/* =========================================
   EXAM CARDS (NEW)
   ========================================= */
.exam-card-new {
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.exam-card-new:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.09);
    transform: translateY(-3px);
}

.ecn-header {
    background: linear-gradient(135deg, #0f172a, #1d4ed8);
    padding: .75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ecn-vendor {
    font-size: .72rem;
    font-weight: 700;
    color: #bfdbfe;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.ecn-code {
    background: rgba(255,255,255,.15);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    padding: .15rem .5rem;
    border-radius: 5px;
}

.ecn-body {
    padding: 1rem;
    flex: 1;
}

.ecn-title {
    font-size: .88rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.4;
    margin-bottom: .6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ecn-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.ecn-meta span {
    font-size: .75rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: .3rem;
}

.ecn-meta i { color: #2563eb; font-size: .7rem; }

.ecn-actions {
    display: flex;
    border-top: 1px solid #f1f5f9;
}

.ecn-btn-free, .ecn-btn-buy {
    flex: 1;
    text-align: center;
    padding: .6rem .5rem;
    font-size: .78rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    transition: background .15s;
}

.ecn-btn-free {
    color: #2563eb;
    background: #eff6ff;
    border-right: 1px solid #e5e7eb;
}

.ecn-btn-free:hover { background: #dbeafe; text-decoration: none; color: #1d4ed8; }

.ecn-btn-buy {
    color: #fff;
    background: #2563eb;
}

.ecn-btn-buy:hover { background: #1d4ed8; text-decoration: none; color: #fff; }

/* =========================================
   HOW IT WORKS
   ========================================= */
.how-it-works-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 55%, #1d4ed8 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.hiw-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: background .2s;
}

.hiw-card:hover { background: rgba(255,255,255,.11); }

.hiw-step {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: #60a5fa;
    color: #0f172a;
    border-radius: 50%;
    font-size: .78rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hiw-icon {
    width: 64px;
    height: 64px;
    background: rgba(96,165,250,.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #60a5fa;
    margin: .5rem auto 1.25rem;
}

.hiw-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: .75rem;
}

.hiw-text {
    font-size: .88rem;
    color: rgba(255,255,255,.68);
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   FEATURE CARDS (NEW)
   ========================================= */
.feature-card-new {
    background: #fff;
    border: 1.5px solid #f1f5f9;
    border-radius: 14px;
    padding: 1.75rem;
    height: 100%;
    transition: box-shadow .2s, transform .2s;
}

.feature-card-new:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.08);
    transform: translateY(-3px);
}

.fcn-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.1rem;
}

.fcn-title {
    font-size: 1rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: .6rem;
}

.fcn-text {
    font-size: .875rem;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

/* =========================================
   PRODUCT TYPE CARDS
   ========================================= */
.product-type-card {
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 18px;
    padding: 2rem;
    height: 100%;
    position: relative;
    transition: box-shadow .2s;
}

.product-type-card:hover { box-shadow: 0 10px 32px rgba(0,0,0,.08); }

.product-type-featured {
    border-color: #2563eb;
    box-shadow: 0 4px 20px rgba(37,99,235,.12);
}

.ptc-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    padding: .28rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
}

.ptc-icon {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #2563eb;
    margin-bottom: 1.2rem;
}

.product-type-featured .ptc-icon {
    background: #2563eb;
    color: #fff;
    margin-top: .5rem;
}

.ptc-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.2rem;
}

.ptc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.ptc-list li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .875rem;
    color: #374151;
    padding: .35rem 0;
    border-bottom: 1px solid #f9fafb;
}

.ptc-list li:last-child { border-bottom: none; }

.ptc-list li i { color: #16a34a; font-size: .8rem; margin-top: .15rem; flex-shrink: 0; }

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, #1d4ed8 100%);
}

.cta-banner-inner {
    position: relative;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(251,191,36,.15);
    border: 1px solid rgba(251,191,36,.3);
    color: #fbbf24;
    font-size: .78rem;
    font-weight: 700;
    padding: .3rem .8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    letter-spacing: .04em;
}

.cta-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: .75rem;
}

.cta-sub {
    font-size: .95rem;
    color: rgba(255,255,255,.72);
    margin: 0;
}

.cta-main-btn {
    display: block;
    margin-bottom: .5rem;
    border-radius: 10px !important;
    font-weight: 700 !important;
}

/* =========================================
   LOGIN / REGISTER PAGE REDESIGN
   ========================================= */
.auth-page-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 55%, #1d4ed8 100%);
    padding: 2.5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.auth-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.auth-page-hero h1 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: .3rem;
}

.auth-page-hero p { color: rgba(255,255,255,.7); font-size: .9rem; margin: 0; }

.auth-body { padding: 3rem 0 4rem; background: #f8fafc; }

.auth-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 28px rgba(0,0,0,.08);
    overflow: hidden;
}

.auth-card-header {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    padding: 1.75rem 2rem 1.5rem;
    text-align: center;
}

.auth-card-header .auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: .4rem;
    text-decoration: none;
}

.auth-card-header h1 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.auth-card-header p {
    color: rgba(255,255,255,.75);
    font-size: .83rem;
    margin: .25rem 0 0;
}

.auth-card-body { padding: 2rem; }

.auth-input-group .input-group-text {
    background: #eff6ff;
    border-color: #e5e7eb;
    color: #2563eb;
    font-size: 1rem;
}

.auth-input-group .form-control {
    border-color: #e5e7eb;
    border-left: none;
    font-size: .95rem;
    padding: .65rem .9rem;
}

.auth-input-group .form-control:focus {
    box-shadow: none;
    border-color: #2563eb;
}

.auth-input-group .input-group-text + .form-control { border-left: none; }
.auth-input-group .input-group:focus-within .input-group-text { border-color: #2563eb; }

.auth-divider {
    text-align: center;
    position: relative;
    margin: 1.2rem 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.auth-divider span {
    position: relative;
    background: #fff;
    padding: 0 .75rem;
    font-size: .8rem;
    color: #9ca3af;
}

.auth-trust-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #f1f5f9;
}

.auth-trust-item {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .75rem;
    color: #6b7280;
}

.auth-trust-item i { color: #16a34a; }

@media (max-width: 575px) {
    .hero-stats-card { display: none; }
    .trust-bar-inner { gap: .75rem 1.5rem; }
    .cta-main-btn { display: block !important; }
    .auth-card-body { padding: 1.5rem; }
}

/* ============================================================
   SUCCESS STORIES PAGE
   ============================================================ */

/* Hero extras */
.ss-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .04em;
    padding: .3rem .85rem;
    border-radius: 99px;
    margin-bottom: 1rem;
}
.ss-hero-badge i { color: #fbbf24; }

.page-hero h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 800; color: #fff; margin-bottom: .5rem; }
.page-hero p.ss-hero-sub { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 580px; }

/* Stats strip */
.ss-stats-strip {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1.25rem 0;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.ss-stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.ss-stat-item { text-align: center; }
.ss-stat-num  { display: block; font-size: 1.45rem; font-weight: 800; color: #1e3a5f; line-height: 1; }
.ss-stat-label{ display: block; font-size: .75rem; color: #6b7280; text-transform: uppercase; letter-spacing: .05em; margin-top: .2rem; }
.ss-stat-div  { width: 1px; height: 2.5rem; background: #e5e7eb; }

/* Section header */
.ss-stories-section { padding: 4rem 0 3rem; background: #f8fafc; }
.ss-section-header  { text-align: center; margin-bottom: 2.5rem; }
.ss-section-header h2 { font-size: 1.75rem; font-weight: 800; color: #1e3a5f; margin-bottom: .5rem; }
.ss-section-header p  { color: #6b7280; font-size: .9rem; }

/* Story cards */
.ss-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    transition: box-shadow .2s, transform .2s;
    position: relative;
    overflow: hidden;
}
.ss-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    border-radius: 16px 16px 0 0;
}
.ss-card:hover {
    box-shadow: 0 8px 32px rgba(37,99,235,.12);
    transform: translateY(-3px);
}

.ss-card-top {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.ss-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
}
.ss-user-info { flex: 1; min-width: 0; }
.ss-username  { font-weight: 700; color: #1e293b; font-size: .95rem; }
.ss-exam-badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .7rem;
    color: #2563eb;
    background: #eff6ff;
    border-radius: 99px;
    padding: .15rem .6rem;
    margin-top: .2rem;
    font-weight: 600;
}
.ss-exam-badge-link {
    display: inline-flex;
    text-decoration: none;
    transition: background .15s, color .15s;
    cursor: pointer;
}
.ss-exam-badge-link:hover {
    background: #2563eb;
    color: #fff;
    text-decoration: none;
}
.ss-badge-arrow {
    font-size: .6rem;
    opacity: .7;
    margin-left: .15rem;
}

.ss-verified-badge {
    font-size: 1.1rem;
    color: #16a34a;
    flex-shrink: 0;
}

.ss-stars { color: #fbbf24; font-size: .85rem; letter-spacing: .05em; }

.ss-card-title {
    font-weight: 700;
    color: #1e3a5f;
    font-size: .97rem;
    line-height: 1.35;
}

.ss-card-story {
    color: #4b5563;
    font-size: .88rem;
    line-height: 1.65;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ss-card-footer {
    font-size: .78rem;
    color: #9ca3af;
    border-top: 1px solid #f1f5f9;
    padding-top: .6rem;
    margin-top: auto;
}
.ss-card-footer i { margin-right: .3rem; }

/* Share / submit section */
.ss-share-section {
    background: #f1f5f9;
    border-top: 1px solid #e2e8f0;
    padding: 2.5rem 0 3rem;
}

/* Compact top bar */
.ss-share-topbar {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1.75rem;
}
.ss-share-topbar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.ss-share-icon {
    font-size: 1.5rem;
    color: #2563eb;
    flex-shrink: 0;
}
.ss-share-title { font-size: 1.15rem; font-weight: 800; color: #1e3a5f; margin: 0 0 .2rem; }
.ss-share-sub   { font-size: .82rem; color: #6b7280; margin: 0; }

/* Full-width form */
.ss-fullform { width: 100%; }

.ss-form-label  { font-size: .82rem; font-weight: 700; color: #374151; margin-bottom: .3rem; display: block; }
.ss-textarea    { border-radius: 8px; border: 1.5px solid #e5e7eb; font-size: .88rem; resize: vertical; min-height: 100px; }
.ss-textarea:focus { border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,.1); outline: none; }

.ss-form-action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}
.ss-submit-note {
    font-size: .78rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: .4rem;
}
.ss-submit-note i { color: #2563eb; }
.ss-submit-btn  { border-radius: 8px; font-weight: 700; white-space: nowrap; }

@media (max-width: 767px) {
    .ss-stats-strip  { padding: 1rem 0; }
    .ss-stat-div     { display: none; }
    .ss-stats-inner  { gap: 1rem 2rem; justify-content: center; }
    .ss-share-topbar { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .ss-form-action-row { flex-direction: column; align-items: stretch; }
    .ss-submit-btn   { width: 100%; }
}

/* ================================================================
   EXAM QUESTIONS PAGE  (qp-*)
   ================================================================ */
.qp-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 55%, #1d4ed8 100%);
    color: #fff;
    padding: 2.5rem 0 2rem;
}
.qp-hero-inner  { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.qp-hero-left   { flex: 1 1 0; }
.qp-hero-badge  { display: inline-flex; align-items: center; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); color: #93c5fd; font-size: .78rem; font-weight: 600; letter-spacing: .04em; padding: .35rem .8rem; border-radius: 20px; margin-bottom: .9rem; }
.qp-hero-title  { font-size: 1.85rem; font-weight: 800; line-height: 1.2; margin: 0 0 .5rem; }
.qp-hero-sub    { font-size: 1rem; color: rgba(255,255,255,.75); margin: 0 0 1rem; }
.qp-hero-stats  { display: flex; flex-wrap: wrap; gap: .5rem .9rem; }
.qp-stat        { font-size: .82rem; color: rgba(255,255,255,.85); display: flex; align-items: center; gap: .35rem; }
.qp-stat i      { color: #93c5fd; }
.qp-hero-right  { text-align: center; flex-shrink: 0; }
.qp-cta-btn     { display: inline-flex; align-items: center; background: #fff; color: #1d4ed8; font-weight: 700; font-size: 1rem; padding: .75rem 1.8rem; border-radius: 10px; text-decoration: none; transition: transform .15s, box-shadow .15s; box-shadow: 0 4px 20px rgba(0,0,0,.2); }
.qp-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.3); color: #1d4ed8; }
.qp-cta-note    { font-size: .76rem; color: rgba(255,255,255,.65); margin-top: .6rem; }

.qp-main        { padding: 2.5rem 0 4rem; }

.qp-section     { background: #fff; border-radius: 14px; border: 1px solid #e5e7eb; padding: 1.8rem 2rem; margin-bottom: 1.5rem; }
.qp-section-header { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.2rem; }
.qp-section-icon { width: 36px; height: 36px; background: #eff6ff; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #2563eb; font-size: 1rem; flex-shrink: 0; }
.qp-section-title { font-size: 1.2rem; font-weight: 700; color: #1e293b; margin: 0; }

.qp-intro-body p { color: #475569; line-height: 1.75; margin-bottom: .9rem; }
.qp-intro-body p:last-child { margin-bottom: 0; }

/* Topics */
.qp-topics-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: .75rem; }
.qp-topic-card  { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 8px; padding: .7rem 1rem; display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.qp-topic-name  { font-size: .84rem; color: #1e293b; font-weight: 500; }
.qp-topic-weight { font-size: .78rem; font-weight: 600; color: #2563eb; background: #eff6ff; padding: .2rem .5rem; border-radius: 5px; white-space: nowrap; }

/* Study Plan */
.qp-studyplan-section { background: #f0f9ff; border-color: #bae6fd; }
.qp-studyplan .sw-week { margin-bottom: 1.2rem; }
.qp-studyplan .sw-week:last-child { margin-bottom: 0; }
.qp-studyplan h4 { font-size: 1rem; font-weight: 700; color: #0369a1; margin-bottom: .5rem; }
.qp-studyplan ul { margin: 0; padding-left: 1.3rem; }
.qp-studyplan ul li { font-size: .88rem; color: #334155; line-height: 1.7; margin-bottom: .2rem; }

/* Questions */
.qp-qs-note     { font-size: .88rem; color: #64748b; margin-bottom: 1.2rem; }
.qp-question-card { border: 1.5px solid #e2e8f0; border-radius: 12px; padding: 1.25rem 1.4rem; margin-bottom: 1.1rem; background: #fff; transition: border-color .18s ease, box-shadow .18s ease; }
.qp-question-card:hover { border-color: #bfdbfe; box-shadow: 0 6px 20px -8px rgba(29,78,216,.15); }
.qp-question-card:last-child { margin-bottom: 0; }
.qp-question-header { display: flex; align-items: center; gap: .6rem; margin-bottom: .85rem; }
.qp-q-num       { background: linear-gradient(135deg, #2563eb, #1d4ed8); color: #fff; font-size: .75rem; font-weight: 700; padding: .25rem .6rem; border-radius: 6px; letter-spacing: .02em; box-shadow: 0 2px 6px -2px rgba(29,78,216,.5); }
.qp-q-type      { font-size: .75rem; color: #64748b; background: #f1f5f9; border: 1px solid #e2e8f0; padding: .22rem .55rem; border-radius: 6px; }
.qp-question-text { font-size: .95rem; font-weight: 500; color: #0f172a; line-height: 1.65; margin-bottom: .9rem; }
.qp-question-text img { max-width: 100%; height: auto; }

/* Answer options: A/B/C letter badges inside clickable option rows */
.qp-options     { display: flex; flex-direction: column; gap: .55rem; font-size: .89rem; color: #334155; margin-bottom: 1rem; }
.qp-options .radio { margin: 0; }
.qp-options .radio label { display: flex; align-items: flex-start; gap: .8rem; width: 100%; margin: 0; padding: .7rem .9rem; background: #f8fafc; border: 1.5px solid #e2e8f0; border-radius: 10px; cursor: pointer; font-weight: 400; transition: background .15s ease, border-color .15s ease, box-shadow .15s ease; }
.qp-options .radio label:hover { background: #eff6ff; border-color: #93c5fd; }
.qp-options .radio input[type="radio"],
.qp-options .radio input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.qp-options .checkmark { flex: 0 0 auto; width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: #1d4ed8; border: 1px solid #93c5fd; border-radius: 50%; font-size: .8rem; font-weight: 700; line-height: 1; transition: background .15s ease, color .15s ease, box-shadow .15s ease; }
.qp-options .radio label:hover .checkmark { box-shadow: 0 0 0 3px rgba(29,78,216,.12); }
.qp-options .checkmark + span { flex: 1; line-height: 1.6; padding-top: .2rem; }
.qp-options .checkmark + span img { max-width: 100%; height: auto; }
.qp-options .radio input:checked + .checkmark { background: #1d4ed8; color: #fff; border-color: #1d4ed8; box-shadow: 0 0 0 3px rgba(29,78,216,.18); }
.qp-options .radio label:has(input:checked) { background: #eff6ff; border-color: #1d4ed8; }
.qp-options .radio label:has(input:checked) .checkmark + span { color: #1e293b; font-weight: 500; }

.qp-reveal-btn  { font-size: .82rem; background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; font-weight: 600; padding: .4rem 1rem; border-radius: 7px; }
.qp-reveal-btn:hover { background: #dbeafe; }
.qp-hide-btn    { font-size: .82rem; background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; font-weight: 600; padding: .4rem 1rem; border-radius: 7px; }
.qp-hide-btn:hover { background: #fee2e2; }
.qp-answer-box  { margin-top: .9rem; background: #f0fdf4; border: 1px solid #bbf7d0; border-left: 4px solid #22c55e; border-radius: 8px; padding: 1rem 1.1rem; }
.qp-correct-label { display: inline-flex; align-items: center; gap: .35rem; font-size: .85rem; color: #15803d; font-weight: 600; background: #dcfce7; border: 1px solid #bbf7d0; padding: .3rem .7rem; border-radius: 999px; margin-bottom: .6rem; }
.qp-explanation { font-size: .86rem; color: #3f4a5c; line-height: 1.7; }
.qp-more-questions { text-align: center; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid #e5e7eb; }
.qp-more-questions p { font-size: .9rem; color: #64748b; margin-bottom: .9rem; }
.qp-buy-inline-btn { background: #1d4ed8; color: #fff; font-weight: 700; border-radius: 9px; padding: .65rem 1.8rem; }
.qp-buy-inline-btn:hover { background: #1e40af; color: #fff; }

/* FAQs */
.qp-accordion-item { border: 1px solid #e5e7eb !important; border-radius: 9px !important; margin-bottom: .6rem; overflow: hidden; }
.qp-accordion-item .accordion-button { font-size: .93rem; font-weight: 600; color: #1e293b; background: #f8fafc; box-shadow: none; }
.qp-accordion-item .accordion-button:not(.collapsed) { color: #1d4ed8; background: #eff6ff; }
.qp-accordion-item .accordion-button::after { filter: none; }
.qp-faq-answer  { font-size: .88rem; color: #475569; line-height: 1.75; }

/* Sidebar */
.qp-sidebar { position: sticky; top: 80px; }
.qp-detail-card { border: 1px solid #e5e7eb; border-radius: 14px; overflow: hidden; margin-bottom: 1.2rem; }
.qp-detail-card-header { background: #1e293b; color: #fff; font-size: .88rem; font-weight: 600; padding: .85rem 1.2rem; }
.qp-detail-list { list-style: none; margin: 0; padding: 0; }
.qp-detail-list li { display: flex; justify-content: space-between; align-items: center; padding: .7rem 1.2rem; border-bottom: 1px solid #f1f5f9; font-size: .85rem; }
.qp-detail-list li:last-child { border-bottom: none; }
.qp-dl-label { color: #64748b; }
.qp-dl-value { color: #1e293b; font-weight: 500; text-align: right; }

.qp-buy-box     { background: linear-gradient(135deg, #1e3a5f, #1d4ed8); color: #fff; border-radius: 14px; padding: 1.5rem 1.4rem; margin-bottom: 1.2rem; }
.qp-buy-stars   { display: flex; align-items: center; gap: .3rem; margin-bottom: .7rem; }
.qp-buy-stars i { color: #fbbf24; font-size: .9rem; }
.qp-buy-stars span { font-size: .82rem; color: rgba(255,255,255,.75); margin-left: .3rem; }
.qp-buy-title   { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.qp-buy-desc    { font-size: .84rem; color: rgba(255,255,255,.8); margin-bottom: 1.1rem; line-height: 1.6; }
.qp-buy-main-btn { display: block; text-align: center; background: #fff; color: #1d4ed8; font-weight: 700; padding: .75rem 1rem; border-radius: 9px; text-decoration: none; margin-bottom: 1rem; transition: transform .15s; font-size: .95rem; }
.qp-buy-main-btn:hover { transform: translateY(-2px); color: #1d4ed8; }
.qp-buy-features { list-style: none; padding: 0; margin: 0; }
.qp-buy-features li { font-size: .82rem; color: rgba(255,255,255,.85); padding: .25rem 0; display: flex; align-items: center; gap: .5rem; }
.qp-buy-features li i { color: #86efac; font-size: .75rem; }

.qp-guarantee-badge { border: 1px solid #e5e7eb; border-radius: 14px; padding: 1rem 1.2rem; display: flex; align-items: center; gap: 1rem; }
.qp-award-icon  { font-size: 2rem; color: #f59e0b; flex-shrink: 0; }
.qp-guarantee-badge strong { display: block; font-size: .95rem; color: #1e293b; }
.qp-guarantee-badge span   { font-size: .78rem; color: #64748b; display: block; margin-top: .1rem; }

@media (max-width: 991px) {
    .qp-hero-inner  { flex-direction: column; }
    .qp-hero-right  { width: 100%; }
    .qp-cta-btn     { width: 100%; justify-content: center; }
    .qp-sidebar     { position: static; }
    .qp-section     { padding: 1.3rem 1.1rem; }
    .qp-hero-title  { font-size: 1.4rem; }
    .qp-topics-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575px) {
    .qp-topics-grid { grid-template-columns: 1fr; }
    .qp-hero-title  { font-size: 1.2rem; }
}

/* ================================================================
   BUY / PRODUCT PAGE  (bp-*)
   ================================================================ */
.bp-hero { background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 55%, #1d4ed8 100%); color: #fff; padding: 2.5rem 0 2rem; }
.bp-hero-inner { text-align: center; max-width: 800px; margin: 0 auto; }
.bp-hero-code-badge { display: inline-flex; align-items: center; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); color: #93c5fd; font-size: .8rem; font-weight: 600; letter-spacing: .05em; padding: .3rem .9rem; border-radius: 20px; margin-bottom: .9rem; }
.bp-hero-title { font-size: 2rem; font-weight: 800; line-height: 1.2; margin: 0 0 .7rem; }
.bp-hero-sub   { font-size: .95rem; color: rgba(255,255,255,.8); margin: 0 0 1.2rem; line-height: 1.65; }
.bp-hero-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem .9rem; }
.bp-hero-trust span { font-size: .82rem; color: rgba(255,255,255,.85); display: flex; align-items: center; gap: .35rem; }

/* Exam Info Table */
.bp-info-strip  { background: #fff; border-bottom: 1px solid #e5e7eb; padding: 1.8rem 0; }
.bp-info-table-wrap { overflow-x: auto; }
.bp-info-table  { width: 100%; border-collapse: collapse; }
.bp-info-table th { background: #f8fafc; font-size: .82rem; font-weight: 600; color: #64748b; text-transform: uppercase; letter-spacing: .05em; padding: .65rem 1rem; border: 1px solid #e5e7eb; white-space: nowrap; }
.bp-info-table td { font-size: .9rem; color: #1e293b; padding: .65rem 1rem; border: 1px solid #e5e7eb; }
.bp-link        { color: #2563eb; text-decoration: none; font-size: .88rem; }
.bp-link:hover  { text-decoration: underline; }

/* Pricing */
.bp-pricing-section { background: #f8fafc; padding: 3rem 0; }
.bp-pricing-header  { text-align: center; margin-bottom: 2rem; }
.bp-pricing-header h2 { font-size: 1.6rem; font-weight: 700; color: #1e293b; margin-bottom: .4rem; }
.bp-pricing-header p  { color: #64748b; font-size: .93rem; }
.bp-discount-alert   { display: inline-flex; align-items: center; background: #fef9c3; color: #854d0e; border: 1px solid #fde68a; border-radius: 20px; font-size: .82rem; font-weight: 600; padding: .3rem .9rem; margin-top: .5rem; }

.bp-price-card  { background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; padding: 1.8rem 1.5rem; text-align: center; height: 100%; display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; position: relative; }
.bp-price-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.1); transform: translateY(-3px); }
.bp-price-card-featured { border-color: #2563eb; border-width: 2px; }
.bp-price-card-featured:hover { box-shadow: 0 8px 30px rgba(37,99,235,.2); }
.bp-pc-badge    { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #2563eb; color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .28rem .8rem; border-radius: 20px; white-space: nowrap; }
.bp-pc-icon     { font-size: 2.2rem; color: #2563eb; margin-bottom: .8rem; }
.bp-pc-title    { font-size: 1.15rem; font-weight: 700; color: #1e293b; margin: 0 0 .3rem; }
.bp-pc-subtitle { font-size: .8rem; color: #64748b; margin: 0 0 1rem; }
.bp-pc-price    { display: flex; align-items: flex-end; justify-content: center; gap: .2rem; margin-bottom: 1.1rem; }
.bp-pc-currency { font-size: 1.2rem; font-weight: 700; color: #1e293b; line-height: 2.8rem; }
.bp-pc-amount   { font-size: 3rem; font-weight: 800; color: #1e293b; line-height: 1; }
.bp-pc-was      { font-size: .8rem; color: #94a3b8; text-decoration: line-through; line-height: 2.8rem; margin-left: .3rem; }
.bp-pc-deal     { margin-bottom: .5rem; }
.bp-pc-save-badge { display: inline-flex; align-items: center; gap: .35rem; background: linear-gradient(135deg, #f59e0b, #ef4444); color: #fff; font-size: .8rem; font-weight: 700; letter-spacing: .02em; padding: .3rem .85rem; border-radius: 999px; box-shadow: 0 4px 12px -4px rgba(239,68,68,.55); animation: bpSavePulse 2.2s ease-in-out infinite; }
.bp-pc-save-badge-hot { background: linear-gradient(135deg, #ef4444, #b91c1c); box-shadow: 0 4px 14px -4px rgba(185,28,28,.6); }
@keyframes bpSavePulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.07); } }
.bp-pc-original { font-size: 1.15rem; font-weight: 600; color: #94a3b8; text-decoration: line-through; text-decoration-color: #ef4444; text-decoration-thickness: 2px; line-height: 2.6rem; margin-right: .45rem; }
.bp-pc-features { list-style: none; padding: 0; margin: 0 0 1.4rem; text-align: left; flex: 1; }
.bp-pc-features li { font-size: .85rem; color: #475569; padding: .3rem 0; display: flex; align-items: center; gap: .5rem; border-bottom: 1px solid #f1f5f9; }
.bp-pc-features li:last-child { border-bottom: none; }
.bp-pc-features li i { color: #16a34a; font-size: .75rem; flex-shrink: 0; }
.bp-pc-actions  { display: flex; flex-direction: column; gap: .6rem; }
.bp-demo-btn    { background: #f1f5f9; color: #475569; border: 1px solid #e2e8f0; font-size: .85rem; font-weight: 600; border-radius: 8px; padding: .55rem 1rem; width: 100%; }
.bp-demo-btn:hover { background: #e2e8f0; }
.bp-buy-btn     { background: #1d4ed8; color: #fff; font-weight: 700; font-size: .9rem; border-radius: 8px; padding: .65rem 1rem; width: 100%; border: none; }
.bp-buy-btn:hover { background: #1e40af; color: #fff; }
.bp-buy-btn-featured { background: #2563eb; font-size: 1rem; padding: .75rem 1rem; }
.bp-buy-btn-featured:hover { background: #1d4ed8; }

.bp-trust-strip { display: flex; justify-content: center; flex-wrap: wrap; gap: .5rem 2rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid #e5e7eb; }
.bp-trust-item  { display: flex; align-items: center; gap: .5rem; font-size: .83rem; color: #475569; }
.bp-trust-item i { color: #2563eb; font-size: 1rem; }

/* FAQ */
.bp-faq-section { padding: 3rem 0; }
.bp-section-title { font-size: 1.4rem; font-weight: 700; color: #1e293b; margin-bottom: 1.5rem; }
.bp-accordion   { display: flex; flex-direction: column; gap: .6rem; }
.bp-accordion-item { border: 1px solid #e5e7eb !important; border-radius: 10px !important; overflow: hidden; }
.bp-accordion-item .accordion-button { font-size: .93rem; font-weight: 600; color: #1e293b; background: #f8fafc; box-shadow: none; }
.bp-accordion-item .accordion-button:not(.collapsed) { color: #1d4ed8; background: #eff6ff; }
.bp-accordion-item .accordion-body { font-size: .88rem; color: #475569; line-height: 1.75; }

@media (max-width: 991px) {
    .bp-hero-title  { font-size: 1.5rem; }
    .bp-pc-amount   { font-size: 2.3rem; }
}
@media (max-width: 575px) {
    .bp-hero-title  { font-size: 1.25rem; }
    .bp-trust-strip { gap: .5rem 1rem; }
}
/* ===== Related Exams Sidebar Card ===== */
.qp-related-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 1.25rem;
}
.qp-related-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    padding: .9rem 1rem;
}
.qp-related-title-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #fff;
    font-weight: 700;
    font-size: .84rem;
    letter-spacing: .02em;
}
.qp-related-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(34,197,94,.25);
    animation: qp-pulse 2s infinite;
}
@keyframes qp-pulse {
    0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,.25); }
    50%      { box-shadow: 0 0 0 5px rgba(34,197,94,.1); }
}
.qp-related-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.qp-related-item {
    border-bottom: 1px solid #f1f5f9;
    border-right: 1px solid #f1f5f9;
}
.qp-related-item:nth-child(even) { border-right: none; }
.qp-related-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .55rem .75rem;
    text-decoration: none;
    transition: background .15s;
    gap: .25rem;
    height: 100%;
}
.qp-related-link:hover {
    background: #eff6ff;
    text-decoration: none;
}
.qp-related-info {
    display: flex;
    flex-direction: column;
    gap: .1rem;
    min-width: 0;
}
.qp-related-code {
    font-family: 'SFMono-Regular', Consolas, monospace;
    font-size: .75rem;
    font-weight: 600;
    color: #1e40af;
    letter-spacing: .01em;
    line-height: 1.2;
}
.qp-related-link:hover .qp-related-code { color: #1d4ed8; }
.qp-related-date {
    font-size: .67rem;
    color: #64748b;
    line-height: 1.2;
}
.qp-related-arrow {
    font-size: .55rem;
    color: #cbd5e1;
    flex-shrink: 0;
}
.qp-related-link:hover .qp-related-arrow { color: #2563eb; }

/* ===== Buy Page Vendor Recent Updates Section ===== */
.bp-related-section {
    padding: 2.5rem 0 3rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}
.bp-related-header-row {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1.5rem;
}
.bp-related-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(34,197,94,.25);
    animation: qp-pulse 2s infinite;
}
.bp-related-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}
.bp-related-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: .75rem;
}
.bp-related-item {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: .7rem .9rem;
    text-decoration: none;
    transition: border-color .15s, box-shadow .15s, transform .15s;
}
.bp-related-item:hover {
    border-color: #2563eb;
    box-shadow: 0 2px 8px rgba(37,99,235,.12);
    transform: translateY(-1px);
    text-decoration: none;
}
.bp-related-code {
    font-family: 'SFMono-Regular', Consolas, monospace;
    font-size: .8rem;
    font-weight: 700;
    color: #1e40af;
    letter-spacing: .01em;
    line-height: 1.3;
}
.bp-related-item:hover .bp-related-code { color: #2563eb; }
.bp-related-date {
    font-size: .7rem;
    color: #64748b;
    line-height: 1.2;
}
@media (max-width: 991px) { .bp-related-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575px) { .bp-related-grid { grid-template-columns: repeat(2, 1fr); } }

/* ================================================================
   ORDER CONFIRMATION + PAYMENT STATUS PAGES  (oc-*)
   ================================================================ */
.oc-hero {
    background: linear-gradient(135deg, #0f172a 0%, #14532d 55%, #16a34a 100%);
    padding: 3rem 0 2.5rem;
    text-align: center;
    color: #fff;
}
.oc-hero-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 2px solid rgba(255,255,255,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    margin: 0 auto 1rem;
    color: #86efac;
}
.oc-hero h1 {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: .5rem;
}
.oc-hero-sub {
    color: rgba(255,255,255,.75);
    font-size: .95rem;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.65;
}
.oc-order-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
    font-size: .82rem;
    font-weight: 700;
    padding: .35rem .9rem;
    border-radius: 20px;
    white-space: nowrap;
}
.oc-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
}
.oc-item:last-child { border-bottom: 0; padding-bottom: 0; }
.oc-item-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}
.oc-item-body { flex: 1 1 0; min-width: 0; }
.oc-item-name {
    font-weight: 700;
    color: #0f172a;
    font-size: .95rem;
    margin-bottom: .15rem;
}
.oc-item-sub {
    font-size: .83rem;
    color: #64748b;
    margin-bottom: 0;
}
.oc-item-price { text-align: right; flex-shrink: 0; }
.oc-item-price .oc-amount {
    font-weight: 800;
    color: #0f172a;
    font-size: 1.02rem;
    display: block;
}
.oc-item-price .oc-updates {
    display: block;
    font-size: .74rem;
    color: #16a34a;
    font-weight: 600;
    margin-top: .15rem;
}
.oc-totals {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-top: 1.25rem;
}
.oc-totals .oc-trow {
    display: flex;
    justify-content: space-between;
    padding: .35rem 0;
    font-size: .9rem;
    color: #475569;
}
.oc-totals .oc-trow.oc-grand {
    border-top: 1px solid #e5e7eb;
    margin-top: .4rem;
    padding-top: .75rem;
    font-size: 1.08rem;
    font-weight: 800;
    color: #0f172a;
}
.oc-info-label {
    font-size: .74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #94a3b8;
    margin-bottom: .2rem;
}
.oc-info-value {
    font-size: .92rem;
    color: #1e293b;
    font-weight: 500;
    margin-bottom: 1rem;
    word-break: break-word;
}
.oc-password-box {
    background: #fef9c3;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 1rem 1.2rem;
    margin-top: .5rem;
}
.oc-password-box p {
    font-size: .84rem;
    color: #713f12;
    margin-bottom: .6rem;
    line-height: 1.6;
}
.oc-note {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 10px;
    padding: 1rem 1.2rem;
    font-size: .85rem;
    color: #1e3a5f;
    line-height: 1.65;
    display: flex;
    gap: .7rem;
    align-items: flex-start;
}
.oc-note i { color: #2563eb; margin-top: .2rem; flex-shrink: 0; }
.oc-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .75rem;
    margin: 1.75rem 0 1.25rem;
}
.oc-btn-secondary {
    background: #fff;
    color: #374151;
    border: 1px solid #d1d5db;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: background-color .2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}
.oc-btn-secondary:hover { background: #f3f4f6; color: #111827; }
.oc-status-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 2rem;
}
.oc-status-icon.oc-error { background: #fee2e2; color: #dc2626; }
.oc-error-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: .75rem;
}
.oc-error-text {
    font-size: .95rem;
    color: #475569;
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 1.5rem;
}
.oc-error-text a { color: var(--primary-color); font-weight: 600; }
.oc-help-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    text-align: left;
    border-top: 1px solid #e5e7eb;
    padding-top: 1.25rem;
}
.oc-help-list li {
    font-size: .87rem;
    color: #475569;
    padding: .3rem 0;
    display: flex;
    align-items: flex-start;
    gap: .6rem;
}
.oc-help-list li i { color: #16a34a; margin-top: .25rem; flex-shrink: 0; font-size: .8rem; }
@media (max-width: 575px) {
    .oc-item { flex-wrap: wrap; }
    .oc-item-price { text-align: left; width: 100%; padding-left: calc(42px + 1rem); }
    .oc-actions a { width: 100%; justify-content: center; text-align: center; }
}