/* =============================================================================
   pages/exam-description.css
   ----
   Loaded by: exam_description.html
   All selectors are scoped under `.exam-page` so no leakage to other pages.

   Sections:
     1. Wrapper, atmospheric background, SVG dividers
     2. Hero (kicker, title, subtitle, meta row)
     3. Rating pill, buyers pill, reaction buttons
     4. CTA buttons (primary/secondary), trust line
     5. Hero visual (orbit, bubbles, badge card)
     6. Stats bar
     7. Pricing section (cards, ribbon, features list)
     8. Features section (icon cards)
     9. Section tabs (sticky)
    10. Content stack (info grid, accordion)
   ========================================================================== */

/* =============================================================================
   1. WRAPPER  +  ATMOSPHERIC BACKGROUND
   ========================================================================== */
.exam-page {
    position: relative;
    overflow: hidden;
}

.exam-atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.exam-atmosphere__svg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
}
.lux-dots {
    position: absolute;
    width: 200px; height: 140px;
    background-image: radial-gradient(circle, rgba(255, 194, 24, .25) 1px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: .35;
    pointer-events: none;
}
.lux-dots--tl { top: 60px; right: 4%; }
.lux-dots--br { bottom: 100px; left: 4%; }

/* â€” Section dividers (svg arc + center node) â€” */
.exam-page .divider {
    position: relative;
    height: 80px;
    margin: 0;
    background: transparent;
    border: none;
    overflow: hidden;
}
.exam-page .divider svg {
    width: 100%; height: 100%;
}
.exam-page .divider svg path {
    stroke: url(#dividerGold);
    stroke-width: 1.5;
    fill: none;
}
.exam-page .divider__node {
    position: absolute;
    top: 50%; left: 50%;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--gold-400);
    box-shadow: 0 0 0 6px rgba(255, 194, 24, .12),
                0 0 22px rgba(255, 194, 24, .55);
    transform: translate(-50%, -50%);
}

/* =============================================================================
   2. HERO
   ========================================================================== */
.exam-hero {
    position: relative;
    z-index: 1;
    padding: 56px 0 48px;
}

.exam-hero .breadcrumbs {
    display: inline-flex; align-items: center; flex-wrap: wrap; gap: 8px;
    padding: 7px 14px;
    margin: 0 0 22px;
    border-radius: var(--r-pill);
    background: var(--surface-1);
    border: 1px solid var(--line);
    backdrop-filter: blur(8px);
    font-size: .8rem;
    color: var(--ink-muted);
}
.exam-hero .breadcrumbs a {
    color: var(--ink-soft);
    text-decoration: none;
    padding: 2px 6px;
    transition: color var(--t-fast);
}
.exam-hero .breadcrumbs a:hover { color: var(--gold-300); }
.exam-hero .breadcrumbs span[aria-hidden="true"] { color: var(--ink-faint); }
.exam-hero .breadcrumbs .aria-current { color: var(--gold-300); font-weight: 700; }

.exam-hero__grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 50px;
    align-items: center;
}
@media (max-width: 980px) {
    .exam-hero__grid { grid-template-columns: 1fr; gap: 40px; }
    .hero__visual { order: 2; max-width: 460px; margin: 0 auto; }
}
.exam-hero__copy { min-width: 0; }

.kicker {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px;
    border-radius: var(--r-pill);
    background: rgba(255, 194, 24, .10);
    border: 1px solid var(--gold-line);
    color: var(--gold-300);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .02em;
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
}
.kicker::before {
    content: ""; width: 7px; height: 7px; border-radius: 50%;
    background: var(--gold-500);
    box-shadow: 0 0 0 4px rgba(255, 194, 24, .22), 0 0 14px rgba(255, 194, 24, .55);
}

.hero__title {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 3.6vw, 2.6rem);
    font-weight: 900;
    line-height: 1.25;
    color: var(--ink-white);
    letter-spacing: -.012em;
    margin: 0 0 18px;
}
.hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    position: relative;
    white-space: nowrap;
}
.hero__title em::after {
    content: ""; position: absolute;
    left: 0; right: 0; bottom: -2px; height: 3px;
    background: linear-gradient(90deg,
        rgba(255, 194, 24, 0), rgba(255, 194, 24, .55) 30%,
        rgba(255, 194, 24, .75) 70%, rgba(255, 194, 24, 0));
    border-radius: 999px;
}

.hero__subtitle {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 2;
    margin: 0 0 24px;
    padding-right: 14px;
    border-right: 3px solid var(--gold-500);
    max-width: 64ch;
}
.hero__subtitle strong { color: var(--gold-300); font-weight: 800; }

/* =============================================================================
   3. META ROW â€” rating, buyers, reactions
   ========================================================================== */
.hero__meta-row {
    display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
    margin-bottom: 20px;
}

.rating-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px;
    border-radius: var(--r-pill);
    background: var(--surface-2);
    border: 1px solid var(--line-strong);
    font-size: .82rem;
    color: var(--ink-soft);
    font-weight: 700;
}
.rating-pill__stars {
    position: relative;
    display: inline-flex;
    direction: ltr;
    font-size: .8rem;
    line-height: 1;
}
.rating-pill__stars-bg,
.rating-pill__stars-fg {
    display: inline-flex; gap: 1px;
}
.rating-pill__stars-bg { color: rgba(255, 255, 255, .15); }
.rating-pill__stars-fg {
    position: absolute; top: 0; left: 0;
    color: var(--gold-400);
    overflow: hidden;
    white-space: nowrap;
}
.rating-pill__value {
    color: var(--gold-300);
    font-weight: 900;
}
.rating-pill__label {
    color: var(--ink-muted);
    font-weight: 600;
    font-size: .78rem;
}

.buyers-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px;
    border-radius: var(--r-pill);
    background: var(--surface-gold);
    border: 1px solid var(--gold-line);
    color: var(--gold-300);
    font-size: .82rem;
    font-weight: 700;
}
.buyers-pill__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    color: var(--navy-900);
    font-size: .72rem;
    font-weight: 900;
}
.buyers-pill__count { color: var(--gold-300); font-weight: 900; }
.buyers-pill__label { color: var(--ink-muted); font-weight: 600; font-size: .78rem; }

.reactions-group {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 4px;
    border-radius: var(--r-pill);
    background: var(--surface-1);
    border: 1px solid var(--line-strong);
}
.reactions-group__divider {
    width: 1px; height: 18px;
    background: var(--line-strong);
    margin: 0 4px;
}
.reaction-btn,
.cta-icon-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: var(--ink-soft);
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--t-fast);
}
.reaction-btn:hover {
    background: var(--surface-gold);
    color: var(--gold-300);
}
.reaction-btn.is-active {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    color: var(--navy-900);
}
.reaction-btn--dislike.is-active {
    background: rgba(239, 68, 68, .25);
    color: #fca5a5;
}
.cta-icon-btn:hover { background: var(--surface-gold); color: var(--gold-300); }
.cta-icon-btn.is-saved { color: var(--gold-300); background: var(--surface-gold); }
.exam-like-icon { transition: transform var(--t-fast); }
.cta-icon-btn:hover .exam-like-icon { transform: scale(1.15); }

/* =============================================================================
   4. CTA ROW + TRUST LINE
   ========================================================================== */
.hero__cta-row {
    display: flex; flex-wrap: wrap; gap: 12px;
    margin-bottom: 20px;
}

.cta-primary,
.cta-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px;
    border-radius: var(--r-pill);
    font-weight: 800;
    font-size: .95rem;
    text-decoration: none;
    transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.cta-primary {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500), var(--gold-600));
    color: var(--navy-900);
    box-shadow: var(--shadow-gold);
    border: none;
    position: relative;
    overflow: hidden;
}
.cta-primary::before {
    content: ""; position: absolute; top: 0; bottom: 0; left: -85%; width: 50%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), transparent);
    transform: skewX(-22deg); transition: left .85s ease; pointer-events: none;
}
.cta-primary:hover { transform: translateY(-2px); }
.cta-primary:hover::before { left: 130%; }

.cta-secondary {
    background: var(--surface-2);
    color: var(--ink-white);
    border: 1.5px solid var(--line-strong);
    backdrop-filter: blur(8px);
}
.cta-secondary:hover {
    transform: translateY(-1px);
    border-color: var(--gold-line);
    color: var(--gold-300);
    background: var(--surface-gold);
}

.hero__trust {
    display: flex; flex-wrap: wrap; gap: 18px;
    padding-top: 18px;
    border-top: 1px dashed var(--line);
}
.hero__trust-item {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--ink-muted);
    font-size: .82rem;
}
.hero__trust-item i { color: var(--gold-400); }
.hero__trust-item strong { color: var(--ink-white); font-weight: 800; }
.hero__trust-item .ltr-text { direction: ltr; display: inline-block; }

/* =============================================================================
   5. HERO VISUAL â€” orbit + bubbles + badge card
   ========================================================================== */
.hero__visual {
    position: relative;
    aspect-ratio: 1.05 / 1;
    width: 100%;
    max-width: 520px;
    justify-self: center;
}

.orbit,
.orbit-inner {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
}
.orbit {
    width: 90%; height: 90%;
    border: 1px dashed rgba(255, 194, 24, .22);
    animation: examOrbit 80s linear infinite;
}
.orbit::before {
    content: "";
    position: absolute; top: -5px; left: 50%;
    transform: translateX(-50%);
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--gold-400);
    box-shadow: 0 0 18px rgba(255, 194, 24, .85);
}
.orbit-inner {
    width: 70%; height: 70%;
    border: 1px dashed rgba(91, 103, 166, .20);
    animation: examOrbit 60s linear infinite reverse;
}
@keyframes examOrbit { to { transform: translate(-50%, -50%) rotate(360deg); } }

.bubble {
    position: absolute;
    display: grid; place-items: center;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
    border: 1px solid var(--line-strong);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .45);
    animation: examBubbleFloat 5s ease-in-out infinite;
    z-index: 3;
}
@keyframes examBubbleFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}
.bubble__icon {
    display: grid; place-items: center;
    width: 100%; height: 100%;
    color: var(--gold-300);
    font-size: 1.4rem;
    text-shadow: 0 0 14px rgba(255, 194, 24, .55);
}
.bubble--rating {
    top: 12%; left: -2%;
    animation-delay: 0s;
}
.bubble--cert {
    bottom: 18%; right: -2%;
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    border-color: transparent;
    animation-delay: 1s;
    box-shadow: var(--shadow-gold), 0 14px 36px rgba(0, 0, 0, .45);
}
.bubble--cert .bubble__icon { color: var(--navy-900); text-shadow: none; }

/* â€” Centerpiece badge card (the certificate look) â€” */
.badge-card {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotate(-3deg);
    width: min(300px, 80%);
    aspect-ratio: 1.05/1;
    padding: 26px 22px;
    border-radius: var(--r-xl);
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 211, 74, .20), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(65, 84, 173, .25), transparent 50%),
        linear-gradient(135deg, var(--navy-700) 0%, var(--navy-900) 100%);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, .55),
        0 0 0 1px rgba(255, 255, 255, .04) inset,
        0 0 60px rgba(255, 194, 24, .10);
    display: flex; flex-direction: column; justify-content: space-between;
    z-index: 2;
}
.badge-card__head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px;
}
.badge-card__brand {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--gold-300);
    font-size: .82rem;
    font-weight: 800;
}
.badge-card__chip {
    width: 34px; height: 22px;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    box-shadow: 0 0 10px rgba(255, 194, 24, .35);
    position: relative;
}
.badge-card__chip::before,
.badge-card__chip::after {
    content: ""; position: absolute;
    background: rgba(0, 0, 0, .25);
    height: 1px; left: 4px; right: 4px;
}
.badge-card__chip::before { top: 8px; }
.badge-card__chip::after { top: 13px; }

.badge-card__logo {
    flex: 1;
    display: grid; place-items: center;
    margin: 12px 0;
    color: var(--ink-white);
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: .02em;
}
.badge-card__logo img {
    max-width: 70%;
    max-height: 130px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .4));
}
.badge-card__logo--fallback {
    color: var(--gold-300);
}

.badge-card__body {
    display: flex; flex-direction: column; gap: 4px;
    text-align: center;
}
.badge-card__code {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--ink-white);
    letter-spacing: .02em;
}
.badge-card__label {
    font-size: .76rem;
    color: var(--ink-muted);
    font-weight: 600;
}

/* =============================================================================
   6. STATS BAR
   ========================================================================== */
.stats-bar {
    padding: 28px 0;
    position: relative;
    z-index: 1;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 22px 28px;
    border-radius: var(--r-lg);
    background: var(--surface-1);
    border: 1px solid var(--line);
    backdrop-filter: blur(6px);
}
@media (max-width: 720px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

.stat {
    display: flex; flex-direction: column; gap: 4px;
    text-align: center;
    padding: 6px 8px;
    border-radius: var(--r);
    transition: background var(--t-fast);
}
.stat:hover { background: var(--surface-1); }

.stat__value {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--gold-300);
    line-height: 1.2;
    font-family: var(--ff-display);
}
.stat__label {
    font-size: .78rem;
    color: var(--ink-muted);
    font-weight: 600;
}

/* =============================================================================
   7. PRICING SECTION
   ========================================================================== */
.exam-page .section {
    position: relative;
    z-index: 1;
    padding: 50px 0;
}

.section__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}
.section__eyebrow {
    display: inline-block;
    padding: 5px 14px;
    border-radius: var(--r-pill);
    background: var(--surface-gold);
    border: 1px solid var(--gold-line);
    color: var(--gold-300);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .04em;
    margin-bottom: 14px;
    text-transform: uppercase;
}
.section__title {
    font-family: var(--ff-display);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 900;
    color: var(--ink-white);
    margin: 0 0 12px;
    line-height: 1.3;
    letter-spacing: -.012em;
}
.section__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
}
.section__subtitle {
    color: var(--ink-soft);
    font-size: .98rem;
    line-height: 1.95;
    margin: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
}
@media (max-width: 980px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

.pricing-card {
    position: relative;
    padding: 28px 26px 24px;
    border-radius: var(--r-lg);
    background: var(--surface-1);
    border: 1px solid var(--line);
    backdrop-filter: blur(6px);
    transition: transform var(--t), border-color var(--t), box-shadow var(--t);
    display: flex; flex-direction: column;
}
.pricing-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-line);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
}

.pricing-card--featured {
    background:
        radial-gradient(circle at 80% 0%, rgba(255, 194, 24, .10), transparent 50%),
        var(--surface-1);
    border-color: var(--gold-line);
    box-shadow:
        0 0 0 1px rgba(255, 194, 24, .14) inset,
        0 18px 40px rgba(0, 0, 0, .35);
}
.pricing-card__ribbon {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 16px;
    border-radius: var(--r) var(--r);
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    color: var(--navy-900);
    font-size: .72rem;
    font-weight: 900;
    box-shadow: var(--shadow-gold);
    /* margin-bottom: 5px !important; */
}

.pricing-card__name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--ink-white);
    margin-bottom: 4px;
    text-align: center;
}
.pricing-card__duration {
    font-size: .82rem;
    color: var(--ink-muted);
    margin-bottom: 18px;
    text-align: center;
}

.pricing-card__price-row {
    /* display: flex; */
    align-items: baseline;
    gap: 6px;
    margin-bottom: 6px;
    text-align: center;
}
.pricing-card__price {
    font-family: var(--ff-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold-300);
    line-height: 1;
    letter-spacing: -.01em;
}
.pricing-card__currency {
    color: var(--ink-soft);
    font-size: .9rem;
    font-weight: 700;
}

.pricing-card__divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
    margin: 18px 0;
}

.pricing-card__features {
    list-style: none; padding: 0; margin: 0 0 22px;
    display: flex; flex-direction: column; gap: 10px;
    flex: 1;
}
.pricing-card__feature {
    display: flex; align-items: flex-start; gap: 8px;
    color: var(--ink-soft);
    font-size: .88rem;
    line-height: 1.7;
}
.pricing-card__feature i {
    color: var(--gold-400);
    margin-top: 4px;
    flex-shrink: 0;
}
.pricing-card__feature strong { color: var(--gold-300); font-weight: 800; }

.pricing-card__cta {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 18px;
    border-radius: var(--r-pill);
    background: var(--surface-2);
    border: 1px solid var(--line-strong);
    color: var(--ink-white);
    font-size: .92rem;
    font-weight: 800;
    text-decoration: none;
    transition: all var(--t-fast);
}
.pricing-card__cta:hover {
    border-color: var(--gold-line);
    color: var(--gold-300);
    background: var(--surface-gold);
}
.pricing-card__cta i { transition: transform var(--t-fast); }
.pricing-card__cta:hover i { transform: translateX(-3px); }

.pricing-card--featured .pricing-card__cta {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    color: var(--navy-900);
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}
.pricing-card--featured .pricing-card__cta:hover {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    color: var(--navy-900);
    transform: translateY(-1px);
}

.pricing-footer {
    margin-top: 28px;
    text-align: center;
}
.pricing-footer__text {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 22px;
    border-radius: var(--r-pill);
    background: var(--surface-gold);
    border: 1px solid var(--gold-line);
    color: var(--ink-soft);
    font-size: .9rem;
}
.pricing-footer__text i { color: var(--gold-400); }
.pricing-footer__text strong { color: var(--gold-300); font-weight: 800; }

/* =============================================================================
   8. FEATURES SECTION
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 880px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
    padding: 24px 22px;
    border-radius: var(--r-lg);
    background: var(--surface-1);
    border: 1px solid var(--line);
    transition: all var(--t);
}
.feature-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold-line);
    background: var(--surface-2);
}
.feature-card__icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, rgba(255, 194, 24, .14), rgba(255, 194, 24, .04));
    border: 1px solid var(--gold-line);
    color: var(--gold-300);
    font-size: 1.4rem;
    margin-bottom: 14px;
    transition: all var(--t-fast);
}
.feature-card:hover .feature-card__icon {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    color: var(--navy-900);
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}
.feature-card__title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ink-white);
    margin: 0 0 8px;
    line-height: 1.4;
}
.feature-card__desc {
    color: var(--ink-soft);
    font-size: .88rem;
    line-height: 1.85;
    margin: 0;
}

/* =============================================================================
   9. SECTION TABS  (sticky navigation)
   ========================================================================== */
.section-tabs-wrap {
    position: sticky;
    top: 76px;
    z-index: 50;
    margin: 0 0 28px;
    padding: 8px 0;
    background: linear-gradient(180deg, rgba(12, 17, 36, .85), rgba(12, 17, 36, .7));
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
}
.section-tabs {
    display: flex; flex-wrap: nowrap; gap: 6px;
    overflow-x: auto;
    scrollbar-width: none; -ms-overflow-style: none;
}
.section-tabs::-webkit-scrollbar { display: none; }

.section-tab {
    flex-shrink: 0;
    padding: 9px 16px;
    border-radius: var(--r-pill);
    background: var(--surface-1);
    border: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: .85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--t-fast);
    white-space: nowrap;
}
.section-tab:hover {
    border-color: var(--gold-line);
    color: var(--gold-300);
    background: var(--surface-gold);
}
.section-tab.is-active {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    color: var(--navy-900);
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}

/* =============================================================================
   10. CONTENT STACK  â€”  info grid + accordion
   ========================================================================== */
.content-stack {
    display: flex; flex-direction: column; gap: 22px;
    padding-bottom: 60px;
}

.section-card {
    padding: 32px 30px;
    border-radius: var(--r-lg);
    background: var(--surface-1);
    border: 1px solid var(--line);
    backdrop-filter: blur(6px);
    box-shadow: var(--shadow-sm);
    scroll-margin-top: 140px;
}
@media (max-width: 640px) { .section-card { padding: 24px 20px; } }

.section-head {
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
    position: relative;
}
.section-head::after {
    content: ""; position: absolute;
    bottom: -1px; right: 0;
    width: 40px; height: 2px;
    background: linear-gradient(90deg, var(--gold-500), transparent);
}
.section-eyebrow {
    display: inline-block;
    color: var(--gold-300);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    margin-bottom: 6px;
    text-transform: uppercase;
}
.section-title {
    font-family: var(--ff-display);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--ink-white);
    margin: 0;
    line-height: 1.3;
}
.section-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
}
.section-rule { display: none; }

/* â€” Info grid (basic info table-like display) â€” */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
@media (max-width: 640px) { .info-grid { grid-template-columns: 1fr; } }

.info-item {
    padding: 16px 18px;
    border-radius: var(--r);
    background: var(--surface-1);
    border: 1px solid var(--line);
    min-height: 76px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}
.info-label {
    font-size: .78rem;
    color: var(--ink-muted);
    font-weight: 600;
    margin: 0;
}
.info-value {
    font-size: .96rem;
    font-weight: 700;
    color: var(--ink-white);
    line-height: 1.6;
    word-break: break-word;
    margin: 0;
}
.info-value.ltr-text {
    direction: ltr;
    text-align: right;
}

/* â€” Accordion (collapsible details/applications/process) â€” */
.accordion {
    display: flex; flex-direction: column; gap: 8px;
}
.accordion-item {
    background: var(--surface-1);
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color var(--t-fast);
}
.accordion-item:hover { border-color: var(--gold-line); }

.accordion-header { margin: 0; }
.accordion-button { 
    width: 100%;
    padding: 14px 18px;
    background: transparent;
    border: none;
    color: var(--ink-white);
    font-family: inherit;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
    text-align: right;
    transition: background var(--t-fast);
}
/* The first <span> of the button holds the leading icon + label.
   Make it inline-flex so the icon gets a real gap from the text. */
.accordion-button > span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.accordion-button > span:first-child > i {
    color: var(--gold-300);
    font-size: 1.05em;
    line-height: 1;
    flex-shrink: 0;
    transition: color var(--t-fast);
}
.accordion-button:not(.collapsed) > span:first-child > i {
    color: var(--gold-400);
}
.accordion-button:hover { background: var(--surface-1); }
.accordion-button:not(.collapsed) {
    background: rgba(255, 194, 24, .04);
    color: var(--gold-300);
}

.acc-icons {
    display: inline-flex; align-items: center; justify-content: center;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid var(--line-strong);
    color: var(--gold-300);
    font-size: .85rem;
    flex-shrink: 0;
    position: relative;
    transition: all var(--t-fast);
}
.acc-down,
.acc-up {
    position: absolute;
    transition: opacity var(--t-fast);
}
.accordion-button .acc-up   { opacity: 0; }
.accordion-button .acc-down { opacity: 1; }
.accordion-button:not(.collapsed) .acc-icons {
    background: var(--gold-500);
    color: var(--navy-900);
    border-color: transparent;
}
.accordion-button:not(.collapsed) .acc-up { opacity: 1; }
.accordion-button:not(.collapsed) .acc-down { opacity: 0; }

.accordion-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t) ease;
}
.accordion-collapse.show {
    max-height: 4000px;
}
.accordion-body {
    padding: 4px 18px 18px;
    color: var(--ink-soft);
    font-size: .92rem;
    line-height: 1.95;
}
.accordion-body p,
.accordion-body ul,
.accordion-body ol { margin: 0 0 1em; }
.accordion-body strong { color: var(--ink-white); font-weight: 800; }
.accordion-body a {
    color: var(--gold-300);
    border-bottom: 1px dashed rgba(255, 194, 24, .35);
    text-decoration: none;
}
.accordion-body a:hover { color: var(--gold-400); }

/* Like message (toast-like feedback) */
.exam-like-msg {
    display: none;
    margin-top: 8px;
    padding: 8px 12px;
    border-radius: var(--r);
    background: var(--surface-gold);
    border: 1px solid var(--gold-line);
    color: var(--gold-300);
    font-size: .85rem;
    font-weight: 600;
}
.exam-like-msg.is-active { display: inline-flex; align-items: center; gap: 6px; }

/* Comments wrap â€” picks up styling from comments.css */
.comments-wrap { margin-top: 10px; }

/* =============================================================================
   11. LIGHT-MODE OVERRIDES
   ========================================================================== */
[data-theme="light"] .exam-page .lux-dots {
    background-image: radial-gradient(circle, rgba(28, 36, 71, .15) 1px, transparent 1.5px);
    opacity: .25;
}
[data-theme="light"] .exam-atmosphere__svg path { opacity: .65; }

/* Light mode: card switches to a soft silver-blue so it doesn't clash
   with the bright background. Logos/branding inside still read clearly. */
[data-theme="light"] .badge-card {
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 211, 74, .14), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(65, 84, 173, .10), transparent 50%),
        linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 60%, #cfd6e6 100%);
    border-color: rgba(28, 36, 71, .14);
    box-shadow:
        0 30px 70px rgba(28, 36, 71, .18),
        0 0 0 1px rgba(255, 255, 255, .65) inset,
        0 0 60px rgba(255, 194, 24, .10);
}
[data-theme="light"] .badge-card__brand { color: var(--gold-700); }
[data-theme="light"] .badge-card__code { color: var(--navy-900); }
[data-theme="light"] .badge-card__label { color: var(--navy-700); }
[data-theme="light"] .badge-card__chip {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    box-shadow: 0 2px 8px rgba(255, 194, 24, .35);
}
[data-theme="light"] .badge-card__logo img {
    filter: drop-shadow(0 4px 12px rgba(28, 36, 71, .15));
}
[data-theme="light"] .badge-card__logo { color: var(--navy-900); }
[data-theme="light"] .badge-card__logo--fallback { color: var(--gold-700); }
[data-theme="light"] .bubble {
    background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .82));
    border-color: rgba(28, 36, 71, .14);
    box-shadow: 0 14px 36px rgba(28, 36, 71, .14);
}
[data-theme="light"] .bubble__icon { color: var(--gold-700); }
/* bubble--cert keeps its gold gradient (overridden after generic .bubble) */
[data-theme="light"] .bubble--cert {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    border-color: transparent;
    box-shadow: var(--shadow-gold), 0 14px 36px rgba(28, 36, 71, .14);
}
[data-theme="light"] .bubble--cert .bubble__icon { color: var(--navy-900); }
/* Orbit lines slightly darker in light mode for visibility */
[data-theme="light"] .orbit { border-color: rgba(255, 194, 24, .42); }
[data-theme="light"] .orbit-inner { border-color: rgba(28, 36, 71, .18); }
[data-theme="light"] .stat__value { color: var(--gold-700); }
[data-theme="light"] .pricing-card__price { color: var(--gold-700); }
[data-theme="light"] .pricing-card__feature i { color: var(--gold-600); }
[data-theme="light"] .pricing-card__feature strong { color: var(--gold-700); }
[data-theme="light"] .pricing-footer__text { color: var(--ink-soft); }
[data-theme="light"] .pricing-footer__text strong { color: var(--gold-700); }
[data-theme="light"] .pricing-footer__text i { color: var(--gold-700); }
[data-theme="light"] .feature-card__icon {
    background: linear-gradient(135deg, rgba(255, 194, 24, .14), rgba(255, 194, 24, .04));
    color: var(--gold-700);
}
[data-theme="light"] .section-tabs-wrap {
    background: linear-gradient(180deg, rgba(255, 255, 255, .85), rgba(255, 255, 255, .7));
}
[data-theme="light"] .section__eyebrow { color: var(--gold-700); }
[data-theme="light"] .section-eyebrow { color: var(--gold-700); }
[data-theme="light"] .info-value { color: var(--navy-900); }
[data-theme="light"] .accordion-button:not(.collapsed) { color: var(--gold-700); }
[data-theme="light"] .acc-icons { color: var(--gold-700); }
[data-theme="light"] .accordion-body strong { color: var(--navy-900); }
[data-theme="light"] .accordion-body a { color: var(--gold-700); }
[data-theme="light"] .accordion-body a:hover { color: var(--gold-600); }
[data-theme="light"] .hero__subtitle strong { color: var(--gold-700); }
[data-theme="light"] .hero__trust-item i { color: var(--gold-700); }
[data-theme="light"] .hero__trust-item strong { color: var(--navy-900); }
[data-theme="light"] .reaction-btn:hover { color: var(--gold-700); }
[data-theme="light"] .rating-pill__stars-bg { color: rgba(28, 36, 71, .15); }
[data-theme="light"] .rating-pill__value,
[data-theme="light"] .buyers-pill,
[data-theme="light"] .buyers-pill__count { color: var(--gold-700); }
[data-theme="light"] .kicker { color: var(--gold-700); }
