/* ═══════════════════════════════════════════════════════════════════════
   PUBLIC PAGE DESIGN TOKENS — shared foundation.

   Flat card system: white surfaces on a tinted canvas, separated by a
   hairline and a single soft drop shadow. Neumorphism (paired light/dark
   embossing on a single same-colour canvas) has been retired — src/styles.css
   flattened these same token NAMES some time ago, but that file is only
   loaded on pages that mount React. Pure-PHP shortcode pages get their
   tokens from here alone, which is why this block had to be flattened too:
   until it was, every public PHP page still rendered the old design, and
   --pge-ui-neu-surface in particular resolved to the canvas colour, so
   "cards" were the same shade as the page behind them.

   The names are deliberately unchanged (--pge-ui-neu-*, ~200 references
   across the public templates). They read as legacy, but renaming them is a
   separate sweep; changing the VALUES reskins every consumer at once.
   ═══════════════════════════════════════════════════════════════════════ */
:root {
    /* ── Canvas / surfaces ─────────────────────────────── */
    --pge-ui-neu-bg:           var(--brand-canvas, #eef3ff);      /* page canvas */
    --pge-ui-neu-bg-deep:      color-mix(in srgb, var(--brand-canvas, #eef3ff) 94%, #000);  /* wells */
    --pge-ui-neu-surface:      #ffffff;                           /* cards sit ON the canvas */
    --pge-ui-neu-surface-flat: #ffffff;

    /* ── Shadow channels (kept for direct consumers) ──── */
    --pge-ui-neu-shl: 255,255,255;
    --pge-ui-neu-shd: 16,24,40;

    /* ── Elevation recipes (flat — no light/dark pairing) ── */
    --pge-ui-neu-out:
        0 1px 2px rgba(16, 24, 40, .05),
        0 4px 12px rgba(16, 24, 40, .08);
    --pge-ui-neu-out-sm:
        0 1px 2px rgba(16, 24, 40, .04),
        0 2px 6px rgba(16, 24, 40, .06);
    --pge-ui-neu-out-xs:
        0 1px 2px rgba(16, 24, 40, .05);
    /* Inset recipes resolve to none — the 2026-08 token contract
       (src/tokens.css) killed concave surfaces, and this file loads AFTER
       main.css on pages that carry both, so a live inset here would
       resurrect them. Wells read as sunken via background alone. */
    --pge-ui-neu-in:      none;
    --pge-ui-neu-in-deep: none;

    /* ── Typography — one family (Outfit) across the kit ── */
    --pge-ui-neu-font:      var(--brand-font, 'Outfit', system-ui, sans-serif);
    --pge-ui-neu-font-mono: 'JetBrains Mono', ui-monospace, monospace;
    --pge-ui-neu-font-display: var(--brand-heading-font, 'Outfit', system-ui, sans-serif);
    --pge-ui-neu-font-body:    var(--brand-font, 'Outfit', system-ui, sans-serif);

    /* ── Ink (text) ───────────────────────────────────── */
    --pge-ui-neu-ink:       var(--brand-ink, #1e293b);
    --pge-ui-neu-ink-soft:  #64748b;
    /* Phase-6 AA value (matches src/tokens.css --pg-n-400): 3.5:1 on white —
       large-text/UI tier only, never small body copy. */
    --pge-ui-neu-ink-faint: #7c8ba1;

    /* ── Accent (primary brand + CTA) ─────────────────────
       -soft / -deep are only ever used as the two stops of a
       linear-gradient() fill. Keeping them a narrow step apart renders
       those buttons as essentially solid brand colour with a hint of
       depth, which flattens every CTA without touching a consumer. */
    --pge-ui-neu-accent:      var(--brand-primary, #2563eb);
    --pge-ui-neu-accent-deep: color-mix(in srgb, var(--brand-primary, #2563eb) 88%, #000);
    --pge-ui-neu-accent-soft: var(--brand-primary, #2563eb);
    --pge-ui-neu-accent-out:  0 8px 20px -8px rgba(37, 99, 235, .40);

    /* ── Hover ────────────────────────────────────────── */
    --pge-ui-neu-hover: var(--brand-accent, var(--pge-ui-neu-accent));

    /* ── Coral (warm CTA — US/school only) ────────────── */
    --pge-ui-neu-coral:      #ff7e5f;
    --pge-ui-neu-coral-deep: #f2603c;
    --pge-ui-neu-coral-soft: #ff7e5f;
    --pge-ui-neu-coral-out:  0 8px 20px -8px rgba(220, 90, 50, .42);

    /* ── Status accents (tiny indicators only) ─────────── */
    --pge-ui-neu-good: #10b981;
    --pge-ui-neu-warn: #f59e0b;
    --pge-ui-neu-bad:  #ef4444;
    --pge-ui-neu-info: #06b6d4;

    /* ── Radii — must agree with src/tokens.css (12–16px card system) ── */
    --pge-ui-radius-lg:   16px;
    --pge-ui-radius-md:   12px;
    --pge-ui-radius-sm:   8px;
    --pge-ui-radius-2xl:  16px;
    --pge-ui-radius-pill: 999px;

    /* ── Focus ring (a11y) ────────────────────────────── */
    --pge-ui-neu-focus-ring:
        0 0 0 3px rgba(37, 99, 235, 0.40),
        0 0 0 6px rgba(37, 99, 235, 0.18);

    /* ── Display font stack (for big headlines) ──────── */
    --pge-ui-neu-display: var(--brand-heading-font, 'Outfit', system-ui, sans-serif);

    /* Public-page aliases for tokens that otherwise only live in src/styles.css
       (which public PHP pages do NOT load). Without these, var(--pge-ui-primary)
       resolves to nothing — buttons lose their fill and white label text
       becomes invisible on the neu canvas. Mapped to the accent so they
       adapt per portal (per-country accent via branding tokens). */
    --pge-ui-primary:               var(--pge-ui-neu-accent);
    --pge-ui-radius-xl:             16px;

    /* ── Acorn design system palette (merged, v35 brand kit) ─────── */
    --acorn-primary:    #1ea8e7;   /* Acorn sky-blue CTA */
    --acorn-sidebar:    #253a52;   /* Acorn dark-navy sidebar */
    --acorn-canvas:     #e7ecf3;   /* Acorn neumorphic canvas (same as --pge-ui-neu-bg) */
    --acorn-ink:        #2e3447;   /* Acorn body text */
    --acorn-ink-soft:   #5e6e82;   /* Acorn muted text */
    --acorn-border:     rgba(163,177,198,.2);

    /* ── Spacing scale (Acorn 8px grid) ─────────────────────────── */
    --pge-ui-space-xs:   4px;
    --pge-ui-space-sm:   8px;
    --pge-ui-space-md:  16px;
    --pge-ui-space-lg:  24px;
    --pge-ui-space-xl:  32px;
    --pge-ui-space-2xl: 48px;
    --pge-ui-space-3xl: 64px;

    /* Legacy token aliases — keeps _neu-public.php selectors working */
    --pge-ui-neu-shadow-sm:         var(--pge-ui-neu-out-sm);
    --pge-ui-neu-shadow:            var(--pge-ui-neu-out);
    --pge-ui-neu-shadow-lg:         var(--pge-ui-neu-out);
    --pge-ui-neu-shadow-xl:         var(--pge-ui-neu-out);
    --pge-ui-neu-shadow-inset:      var(--pge-ui-neu-in);
    --pge-ui-neu-shadow-inset-sm:   var(--pge-ui-neu-in);
    --pge-ui-neu-shadow-inset-deep: var(--pge-ui-neu-in-deep);
    --pge-ui-neu-border:            rgba(15, 20, 25, .08);
    --pge-ui-neu-border-strong:     rgba(15, 20, 25, .14);
    --pge-ui-neu-halo-primary:      var(--pge-ui-neu-accent-out);
    --pge-ui-neu-halo-saffron:      0 22px 44px -12px rgba(245, 158, 11, 0.55);
    --pge-ui-neu-halo-mint:         0 22px 44px -12px rgba(16, 185, 129, 0.45);
}

/* ═══════════════════════════════════════════════════════════════════════
   REGION ACCENTS
   Per-portal colour now resolves from the active theme's Brand Identity
   (--brand-primary / --brand-accent / --brand-ink) in :root above.
   Country portals differ purely by their branding.json /
   Customizer values — no hardcoded overrides here, so the Customizer is
   the single source of truth. Genuine design-level differences (coral
   CTA, progress-ring tint) remain below.
   ═══════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════
   CANVAS ENFORCEMENT
   Force portal body to use the tinted canvas. Strip the theme's white
   wrappers so white cards read as cards rather than dissolving into an
   equally white page.
   ═══════════════════════════════════════════════════════════════════════ */
body.pge-portal-testprep:not(:has(.pge-gje-v5)),
body.pge-portal-competitive:not(:has(.pge-gje-v5)),
body.brand-region-usa:not(:has(.pge-gje-v5)),
body.brand-region-school:not(:has(.pge-gje-v5)),
body.brand-region-india:not(:has(.pge-gje-v5)) {
    background-color: var(--pge-ui-neu-bg) !important;
    font-family: var(--pge-ui-neu-font) !important;
    color: var(--pge-ui-neu-ink) !important;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.005em;
}
body.pge-portal-testprep:not(:has(.pge-gje-v5)) .magcontent,
body.pge-portal-testprep:not(:has(.pge-gje-v5)) .site-content,
body.pge-portal-testprep:not(:has(.pge-gje-v5)) .content-area,
body.pge-portal-testprep:not(:has(.pge-gje-v5)) #main-area,
body.pge-portal-testprep:not(:has(.pge-gje-v5)) main,
body.pge-portal-competitive:not(:has(.pge-gje-v5)) .magcontent,
body.pge-portal-competitive:not(:has(.pge-gje-v5)) .site-content,
body.pge-portal-competitive:not(:has(.pge-gje-v5)) .content-area,
body.pge-portal-competitive:not(:has(.pge-gje-v5)) #main-area,
body.pge-portal-competitive:not(:has(.pge-gje-v5)) main,
body.brand-region-india:not(:has(.pge-gje-v5)) .magcontent,
body.brand-region-india:not(:has(.pge-gje-v5)) .site-content,
body.brand-region-india:not(:has(.pge-gje-v5)) .content-area,
body.brand-region-india:not(:has(.pge-gje-v5)) #main-area,
body.brand-region-india:not(:has(.pge-gje-v5)) main,
body.brand-region-usa:not(:has(.pge-gje-v5)) .magcontent,
body.brand-region-usa:not(:has(.pge-gje-v5)) .site-content,
body.brand-region-usa:not(:has(.pge-gje-v5)) .content-area,
body.brand-region-usa:not(:has(.pge-gje-v5)) #main-area,
body.brand-region-usa:not(:has(.pge-gje-v5)) main,
body.brand-region-school:not(:has(.pge-gje-v5)) .magcontent,
body.brand-region-school:not(:has(.pge-gje-v5)) .site-content,
body.brand-region-school:not(:has(.pge-gje-v5)) .content-area,
body.brand-region-school:not(:has(.pge-gje-v5)) #main-area,
body.brand-region-school:not(:has(.pge-gje-v5)) main {
    background: transparent !important;
    background-color: transparent !important;
}
/* Hide the theme's "fold-shadow" decoration */
body.pge-portal-testprep .fold-shadow,
body.pge-portal-testprep .fold-shadow-left,
body.pge-portal-competitive .fold-shadow,
body.pge-portal-competitive .fold-shadow-left,
body.brand-region-india .fold-shadow,
body.brand-region-india .fold-shadow-left,
body.brand-region-usa .fold-shadow,
body.brand-region-usa .fold-shadow-left,
body.brand-region-school .fold-shadow,
body.brand-region-school .fold-shadow-left {
    display: none !important;
}

/* ═══════════════════════════════════════════════════════════════════════
   COMPONENT PRIMITIVES — shared components usable by any template.
   Flat cards: a white surface, a hairline, and one soft shadow. Class
   names are kept (templates reference them) even though "neu-" no longer
   describes what they render.
   ═══════════════════════════════════════════════════════════════════════ */

/* Headings */
body.pge-portal-competitive:not(:has(.pge-gje-v5)) h1,
body.pge-portal-competitive:not(:has(.pge-gje-v5)) h2,
body.pge-portal-competitive:not(:has(.pge-gje-v5)) h3,
body.pge-portal-competitive:not(:has(.pge-gje-v5)) h4,
body.pge-portal-testprep:not(:has(.pge-gje-v5)) h1,
body.pge-portal-testprep:not(:has(.pge-gje-v5)) h2,
body.pge-portal-testprep:not(:has(.pge-gje-v5)) h3,
body.pge-portal-testprep:not(:has(.pge-gje-v5)) h4,
body.brand-region-india:not(:has(.pge-gje-v5)) h1,
body.brand-region-india:not(:has(.pge-gje-v5)) h2,
body.brand-region-india:not(:has(.pge-gje-v5)) h3,
body.brand-region-india:not(:has(.pge-gje-v5)) h4,
body.brand-region-usa:not(:has(.pge-gje-v5)) h1,
body.brand-region-usa:not(:has(.pge-gje-v5)) h2,
body.brand-region-usa:not(:has(.pge-gje-v5)) h3,
body.brand-region-usa:not(:has(.pge-gje-v5)) h4,
body.brand-region-school:not(:has(.pge-gje-v5)) h1,
body.brand-region-school:not(:has(.pge-gje-v5)) h2,
body.brand-region-school:not(:has(.pge-gje-v5)) h3,
body.brand-region-school:not(:has(.pge-gje-v5)) h4 {
    font-family: var(--pge-ui-neu-font) !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    color: var(--pge-ui-neu-ink) !important;
}
/* Dark-hero headings must stay white regardless of portal tokens */
.edu-search-hero .edu-search-heading,
.edu-archive-hero .edu-archive-title,
.edu-exam-hero .edu-exam-title,
.pge-lg-wrapper .pge-lg-brand .pge-lg-brand-title,
.pge-lg-wrapper .pge-lg-brand .pge-lg-brand-sub,
body[class] .pge-course__hero h1.pge-course__title,
body .pge-course__hero h1.pge-course__title,
body[class] .pge-course__hero .pge-course__byline strong,
body[class] .pgw-ready h2,
body[class] .pg-today-hero h1,
body[class] .pg-learning-home-hero h1,
body[class] .pg-adblock-overlay h2,
body[class] .pge-exam-pause-overlay h2 {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}
.pge-lg-wrapper .pge-lg-brand .pge-lg-brand-sub { color: rgba(255,255,255,.72) !important; }
.pgw-ready p { color: rgba(255,255,255,.79) !important; }

/* Raised card */
.neu-card {
    background: var(--pge-ui-neu-surface);
    border: 1px solid var(--pge-ui-neu-border);
    border-radius: var(--pge-ui-radius-lg);
    box-shadow: var(--pge-ui-neu-out);
    padding: 28px;
}

/* Inset well */
.neu-in {
    background: var(--pge-ui-neu-bg-deep);
    border: 1px solid var(--pge-ui-neu-border);
    border-radius: var(--pge-ui-radius-md);
    box-shadow: var(--pge-ui-neu-in);
    padding: 18px;
}

/* Small raised */
.neu-flat {
    background: var(--pge-ui-neu-surface);
    border: 1px solid var(--pge-ui-neu-border);
    border-radius: var(--pge-ui-radius-md);
    box-shadow: var(--pge-ui-neu-out-sm);
    padding: 18px;
}

/* Pill button */
.neu-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 999px;
    background: var(--pge-ui-neu-surface);
    box-shadow: var(--pge-ui-neu-out-xs);
    font-weight: 600;
    font-size: 13px;
    color: var(--pge-ui-neu-ink-soft);
    border: 1px solid var(--pge-ui-neu-border);
    cursor: pointer;
    transition: .15s;
    font-family: var(--pge-ui-neu-font);
}
.neu-pill:hover { color: var(--pge-ui-neu-hover); border-color: var(--pge-ui-neu-border-strong); }
/* Selected state reads as a filled chip rather than a pressed-in well. */
.neu-pill.is-active {
    background: color-mix(in srgb, var(--pge-ui-neu-accent) 10%, #fff);
    border-color: color-mix(in srgb, var(--pge-ui-neu-accent) 35%, #fff);
    box-shadow: none;
    color: var(--pge-ui-neu-accent);
}

/* Button */
.neu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--pge-ui-neu-border);
    cursor: pointer;
    font: 600 14px/1 var(--pge-ui-neu-font);
    padding: 16px 26px;
    border-radius: 18px;
    color: var(--pge-ui-neu-ink);
    background: var(--pge-ui-neu-surface);
    box-shadow: var(--pge-ui-neu-out-sm);
    transition: .15s ease;
}
.neu-btn:hover {
    color: var(--pge-ui-neu-hover);
    border-color: var(--pge-ui-neu-border-strong);
}
.neu-btn:active {
    box-shadow: var(--pge-ui-neu-out-xs);
    transform: translateY(1px);
    color: var(--pge-ui-neu-accent);
}

/* Primary button */
.neu-btn-primary {
    color: #fff;
    background: linear-gradient(145deg, var(--pge-ui-neu-accent-soft), var(--pge-ui-neu-accent-deep));
    box-shadow: var(--pge-ui-neu-accent-out);
}
.neu-btn-primary { border-color: transparent; }
.neu-btn-primary:hover { color: #fff; filter: brightness(1.05); }
.neu-btn-primary:active {
    box-shadow: var(--pge-ui-neu-out-xs);
    transform: translateY(1px);
}

/* Coral button (US/school warm CTA) */
.neu-btn-coral {
    color: #fff;
    background: linear-gradient(145deg, var(--pge-ui-neu-coral-soft), var(--pge-ui-neu-coral-deep));
    box-shadow: var(--pge-ui-neu-coral-out);
}
.neu-btn-coral { border-color: transparent; }
.neu-btn-coral:hover { color: #fff; filter: brightness(1.06); }
.neu-btn-coral:active {
    box-shadow: var(--pge-ui-neu-out-xs);
    transform: translateY(1px);
}

/* Progress ring */
.neu-ring {
    --p: 62;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background:
        conic-gradient(var(--pge-ui-neu-accent) calc(var(--p) * 1%), var(--pge-ui-neu-bg-deep) 0),
        var(--pge-ui-neu-bg-deep);
    display: grid;
    place-items: center;
    position: relative;
}
.neu-ring::before {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: var(--pge-ui-neu-surface);
}
.neu-ring span {
    position: relative;
    font: 700 12px var(--pge-ui-neu-font-mono);
    color: var(--pge-ui-neu-accent);
}
/* Competitive mode: orange progress rings */
body.pge-portal-competitive .neu-ring,
body.brand-region-india .neu-ring {
    background:
        conic-gradient(var(--brand-secondary, #ff8000) calc(var(--p) * 1%), transparent 0),
        var(--pge-ui-neu-bg);
}

/* Status dots */
.neu-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}
.neu-dot.good  { background: var(--pge-ui-neu-good); box-shadow: 0 0 0 4px rgba(16,185,129,.18); }
.neu-dot.warn  { background: var(--pge-ui-neu-warn); box-shadow: 0 0 0 4px rgba(245,158,11,.18); }
.neu-dot.bad   { background: var(--pge-ui-neu-bad);  box-shadow: 0 0 0 4px rgba(239,68,68,.18); }
.neu-dot.info  { background: var(--pge-ui-neu-info); box-shadow: 0 0 0 4px rgba(6,182,212,.18); }

/* Icon chip — a tinted accent circle rather than a concave well */
.neu-ic {
    display: grid;
    place-items: center;
    background: color-mix(in srgb, var(--pge-ui-neu-accent) 10%, #fff);
    color: var(--pge-ui-neu-accent);
    border-radius: 50%;
}

/* Badge / tag */
.neu-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .02em;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--pge-ui-neu-surface);
    border: 1px solid var(--pge-ui-neu-border);
    color: var(--pge-ui-neu-ink-soft);
}

/* Mono text */
.neu-mono {
    font-family: var(--pge-ui-neu-font-mono);
}

/* ═══════════════════════════════════════════════════════════════════════
   DARK MODE — mirrors the src/tokens.css dark block (change one, change
   both). Gated on the SAME attribute pair: the theme attribute is stamped
   on every page, but [data-pge-dark-scope] only lands (pre-paint, via
   App_Shell::theme_boot) on surfaces whose components support the flip —
   exam/diagnostic/lesson players, results, dashboard. Pure-marketing pages
   never carry the scope attribute and keep the light palette.
   ═══════════════════════════════════════════════════════════════════════ */
html[data-pge-admin-theme="dark"][data-pge-dark-scope] {
    --pge-ui-neu-bg:           #0f131c;
    --pge-ui-neu-bg-deep:      #141a23;
    --pge-ui-neu-surface:      #1c2230;
    --pge-ui-neu-surface-flat: #1c2230;
    --pge-ui-neu-ink:          #eef2f9;
    --pge-ui-neu-ink-soft:     #93a0b5;
    --pge-ui-neu-ink-faint:    #6b7890;
    --pge-ui-neu-border:        rgba(255, 255, 255, .10);
    --pge-ui-neu-border-strong: rgba(255, 255, 255, .17);
    --pge-ui-neu-shl: 0,0,0;
    --pge-ui-neu-shd: 0,0,0;
    --pge-ui-neu-out:    0 1px 2px rgba(0,0,0,.40), 0 4px 12px rgba(0,0,0,.45);
    --pge-ui-neu-out-sm: 0 1px 2px rgba(0,0,0,.35), 0 2px 6px rgba(0,0,0,.40);
    --pge-ui-neu-out-xs: 0 1px 2px rgba(0,0,0,.40);
    /* Accent fills hold (white label text keeps ≥7:1 on the brand blue);
       hover reads as text and lifts. -soft/-deep are gradient-fill stops
       only (see above) — pinned to the deep pair because -soft otherwise
       follows the lifted on-dark accent and fails under white labels. */
    --pge-ui-neu-accent-soft: #1b3beb;
    --pge-ui-neu-accent-deep: #10248f;
    --pge-ui-neu-hover: #8ab0ff;
}
/* color-mix(… , #fff) recipes read as glowing chips on the dark surface —
   remix against the surface instead. */
html[data-pge-admin-theme="dark"][data-pge-dark-scope] .neu-pill.is-active {
    background: color-mix(in srgb, var(--pge-ui-neu-accent) 22%, #1c2230);
    border-color: color-mix(in srgb, var(--pge-ui-neu-accent) 45%, #1c2230);
    color: #8ab0ff;
}
html[data-pge-admin-theme="dark"][data-pge-dark-scope] .neu-ic {
    background: color-mix(in srgb, var(--pge-ui-neu-accent) 22%, #1c2230);
    color: #8ab0ff;
}

/* ═══════════════════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    body.pge-portal-testprep *,
    body.pge-portal-competitive *,
    body.brand-region-usa *,
    body.brand-region-school *,
    body.brand-region-india * {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}
.pge-el{max-width:1200px;margin:0 auto;padding:0 20px;font-family:var(--pge-ui-neu-font,'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif);color:#1e293b;line-height:1.6}
.pge-el *{box-sizing:border-box}

/* Breadcrumb */
.pge-el__breadcrumb{font-size:14px;color:#64748b;margin-bottom:16px;padding-top:16px}
.pge-el__breadcrumb a{color:#1b3beb;text-decoration:none}
.pge-el__breadcrumb a:hover{text-decoration:underline}
.pge-el__bc-sep{margin:0 6px;color:#cbd5e1}

/* Hero — premium conversion-focused grid */
.pge-el__hero-grid{display:grid;grid-template-columns:1.2fr 1fr;gap:40px;align-items:center;padding:48px 0 40px;border-bottom:1px solid #e2e8f0;margin-bottom:32px}
@media(max-width:900px){.pge-el__hero-grid{grid-template-columns:1fr;text-align:center;gap:32px}}

/* Content Side */
.pge-el__hero-content{display:flex;flex-direction:column;gap:16px}
@media(max-width:900px){.pge-el__hero-content{align-items:center}}

.pge-el__hero-pulse-badge{display:inline-flex;align-items:center;gap:8px;background:#f8fafc;border:1px solid #e2e8f0;padding:6px 14px;border-radius:999px;align-self:flex-start;box-shadow:0 2px 8px rgba(0,0,0,.04)}
@media(max-width:900px){.pge-el__hero-pulse-badge{align-self:center}}
.pge-el__pulse-dot{width:8px;height:8px;border-radius:50%;position:relative}
.pge-el__pulse-dot::after{content:'';position:absolute;top:-4px;left:-4px;right:-4px;bottom:-4px;background:inherit;border-radius:50%;opacity:.4;animation:tbPulse 2s cubic-bezier(.4,0,.6,1) infinite}
@keyframes tbPulse{0%,100%{transform:scale(1);opacity:.4}50%{transform:scale(1.8);opacity:0}}
.pge-el__pulse-text{font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:.5px}

.pge-el__hero-title{font-size:clamp(28px,4vw,38px);font-weight:800;margin:0;color:#0f172a;line-height:1.2;letter-spacing:-.5px}
.pge-el__hero-sub{font-size:17px;color:#475569;margin:0;line-height:1.6;max-width:540px}

/* FOMO block */
.pge-el__hero-fomo{display:inline-flex;align-items:center;gap:8px;background:#fffaf0;border:1px solid #fed7aa;color:#9a3412;padding:10px 16px;border-radius:8px;font-size:14px;margin:8px 0}
.pge-el__hero-fomo strong{font-weight:700;color:#7c2d12}
.pge-el__fomo-icon{display:inline-flex;align-items:center;color:#ea580c}

.pge-el__hero-meta{color:#94a3b8;font-size:13px;margin:0}

/* Actions */
.pge-el__hero-actions{display:flex;gap:12px;margin-top:8px;flex-wrap:wrap}
@media(max-width:900px){.pge-el__hero-actions{justify-content:center}}
.pge-el__hero-btn{display:inline-flex;flex-direction:column;align-items:center;justify-content:center;padding:12px 32px;border-radius:10px;text-decoration:none;transition:all .2s;text-align:center}
.pge-el__hero-btn--primary{color:#fff;position:relative;overflow:hidden}
.pge-el__hero-btn--primary::after{content:'';position:absolute;top:0;left:-100%;width:50%;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.3),transparent);animation:tbShine 3s infinite}
@keyframes tbShine{0%{left:-100%}20%,100%{left:200%}}
.pge-el__hero-btn--primary:hover{transform:translateY(-2px);filter:brightness(1.05)}
.pge-el__hero-btn--outline{background:transparent;border:2px solid}
.pge-el__hero-btn--outline:hover{background:rgba(0,0,0,.02)}
.btn-main{font-size:16px;font-weight:700;line-height:1.2}
.btn-subtext{font-size:11px;font-weight:500;opacity:.9;margin-top:2px}

.pge-el__trust{display:flex;flex-wrap:wrap;gap:16px;margin-top:8px}
@media(max-width:900px){.pge-el__trust{justify-content:center}}
.pge-el__trust-item{font-size:13px;color:#64748b;font-weight:500;display:flex;align-items:center;gap:6px}
.pge-el__trust-item::before{content:'\2713';display:inline-flex;align-items:center;justify-content:center;width:16px;height:16px;background:#10b981;color:#fff;border-radius:50%;font-size:10px;font-weight:800}

/* Visual Side (Stats Card) */
.pge-el__hero-visual{position:relative;padding:20px}
.pge-el__hero-card{position:relative;background:#fff;border-radius:20px;padding:28px;box-shadow:0 20px 40px rgba(0,0,0,.08);border:1px solid rgba(255,255,255,.5);z-index:2;overflow:hidden}
.pge-el__hero-card::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,#3b82f6,#8b5cf6,#ec4899)}
.pge-el__hero-card-bg{position:absolute;inset:0;background:radial-gradient(circle at top right,rgba(59,130,246,.04),transparent 70%);z-index:-1}

.pge-el__hero-card-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:24px}
.pge-el__card-title{font-size:16px;font-weight:700;color:#0f172a}
.pge-el__card-badge{font-size:11px;font-weight:700;padding:4px 10px;border-radius:6px;text-transform:uppercase;letter-spacing:.5px}

.pge-el__hero-card .pge-el__stats{margin:0;display:flex;flex-direction:column;gap:12px}
.pge-el__hero-card .pge-el__stat{background:#f8fafc;padding:16px 20px;border-radius:12px;text-align:left;display:flex;align-items:center;justify-content:space-between}
.pge-el__hero-card .pge-el__stat-label{font-size:13px;color:#475569;text-transform:none;letter-spacing:0;font-weight:600}
.pge-el__hero-card .pge-el__stat-num{font-size:20px}

.pge-el__hero-card-footer{margin-top:24px;padding-top:20px;border-top:1px solid #e2e8f0;display:flex;align-items:center;gap:12px}
.pge-el__avatars{display:flex;align-items:center}
.pge-el__avatars img{width:32px;height:32px;border-radius:50%;border:2px solid #fff;margin-left:-10px;background:#e2e8f0}
.pge-el__avatars img:first-child{margin-left:0}
.pge-el__avatar-count{width:32px;height:32px;border-radius:50%;border:2px solid #fff;margin-left:-10px;display:flex;align-items:center;justify-content:center;font-size:10px;font-weight:700;z-index:1}
.pge-el__footer-text{font-size:13px;color:#64748b;font-weight:500}

/* Stats */
.pge-el__stats{display:flex;justify-content:center;gap:16px;flex-wrap:wrap;margin:20px 0}
.pge-el__stat{background:#f8fafc;padding:12px 20px;border-radius:8px;text-align:center;min-width:100px}
.pge-el__stat-num{display:block;font-size:22px;font-weight:700;color:#0f172a}
.pge-el__stat-label{display:block;font-size:12px;color:#64748b;text-transform:uppercase;letter-spacing:.5px}

/* Sections */
.pge-el__section{margin-bottom:36px}
.pge-el__section-title{font-size:22px;font-weight:700;margin:0 0 16px;color:#0f172a;padding-bottom:8px;border-bottom:2px solid #e2e8f0}
.pge-el__about-text{font-size:15px;color:#475569;line-height:1.8}

/* Two-col layout */
.pge-el__two-col{display:grid;grid-template-columns:1.4fr 1fr;gap:32px;margin-bottom:36px;align-items:start}
@media(max-width:768px){.pge-el__two-col{grid-template-columns:1fr}}
.pge-el__section--side{position:sticky;top:24px}
@media(max-width:768px){.pge-el__section--side{position:static}}

/* Subject cards */
.pge-el__subject-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(140px,1fr));gap:12px}
.pge-el__subject-card{background:#f8fafc;border:1px solid #e2e8f0;border-radius:10px;padding:16px 12px;text-align:center;transition:transform .2s,box-shadow .2s}
.pge-el__subject-card:hover{transform:translateY(-2px);box-shadow:0 4px 12px rgba(0,0,0,.08)}
.pge-el__subject-icon{width:44px;height:44px;border-radius:10px;display:inline-flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:16px;margin-bottom:8px}
.pge-el__subject-name{display:block;font-size:14px;font-weight:600;color:#1e293b;margin-bottom:4px}
.pge-el__subject-count{display:block;font-size:12px;color:#94a3b8}

/* Difficulty */
.pge-el__diff-card{background:#f8fafc;border:1px solid #e2e8f0;border-radius:14px;padding:24px}
.pge-el__difficulty{display:flex;flex-direction:column;gap:16px}
.pge-el__diff-row{display:flex;align-items:center;gap:10px}
.pge-el__diff-label{width:60px;font-size:14px;font-weight:600;flex-shrink:0}
.pge-el__diff-bar-bg{flex:1;height:12px;background:#e2e8f0;border-radius:6px;overflow:hidden}
.pge-el__diff-bar{height:100%;border-radius:6px;transition:width .6s ease}
.pge-el__diff-pct{width:40px;font-size:14px;font-weight:600;color:#475569;text-align:right}
.pge-el__diff-stats{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:24px;padding-top:20px;border-top:1px solid #e2e8f0}
.pge-el__diff-stat{text-align:center;background:#fff;border:1px solid #e2e8f0;border-radius:10px;padding:14px 8px}
.pge-el__diff-stat-num{display:block;font-size:22px;font-weight:700;color:#0f172a}
.pge-el__diff-stat-label{display:block;font-size:12px;color:#64748b;margin-top:2px}

/* Grade pills */
.pge-el__grade-pills{display:flex;flex-wrap:wrap;gap:10px}
.pge-el__grade-pill{display:inline-block;padding:8px 18px;border-radius:20px;background:#f1f5f9;color:#334155;font-size:14px;font-weight:500;text-decoration:none;border:1px solid #e2e8f0;transition:all .2s}
.pge-el__grade-pill:hover{background:#1b3beb;color:#fff;border-color:#1b3beb}
.pge-el__grade-count{font-size:12px;color:#94a3b8}
.pge-el__grade-pill:hover .pge-el__grade-count{color:rgba(255,255,255,.8)}

/* Exam list */
.pge-el__exam-list{display:flex;flex-direction:column;gap:6px;background:#f8fafc;border-radius:14px;padding:12px}
.pge-el__exam-row{display:flex;align-items:center;gap:12px;padding:10px 14px;border-radius:10px;text-decoration:none !important;color:inherit;transition:background .15s}
.pge-el__exam-row:hover{background:#fff;box-shadow:0 2px 8px rgba(0,0,0,.06)}
.pge-el__exam-icon{display:inline-grid;place-items:center;width:38px;height:38px;border-radius:10px;flex-shrink:0;background:color-mix(in srgb,var(--pge-ui-neu-accent,#2563eb) 10%,#fff);color:var(--pge-ui-neu-accent,#2563eb)}
.pge-el__exam-body{flex:1;min-width:0}
.pge-el__exam-name{font-size:14px;font-weight:600;color:#1e293b;line-height:1.3;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;text-decoration:none !important}
.pge-el__exam-detail{font-size:12px;color:#94a3b8;margin-top:2px}
.pge-el__exam-badge{font-size:10px;font-weight:700;padding:2px 8px;border-radius:4px;flex-shrink:0;white-space:nowrap}
.pge-el__exam-badge--premium{background:linear-gradient(135deg,#fbbf24,#f59e0b);color:#78350f}
.pge-el__exam-badge--free{background:#dcfce7;color:#166534}
.pge-el__exam-arrow{font-size:12px;font-weight:700;color:#1b3beb;flex-shrink:0;white-space:nowrap}

/* Performance */
.pge-el__perf-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.pge-el__perf-card{background:#f8fafc;border:1px solid #e2e8f0;border-radius:10px;padding:20px;text-align:center}
.pge-el__perf-value{display:block;font-size:28px;font-weight:800}
.pge-el__perf-label{display:block;font-size:12px;color:#64748b;text-transform:uppercase;margin-top:4px}
@media(max-width:768px){.pge-el__perf-grid{grid-template-columns:repeat(2,1fr)}}

/* FAQ */
.pge-el__faq{display:flex;flex-direction:column;gap:8px}
.pge-el__faq-item{border:1px solid #e2e8f0;border-radius:10px;overflow:hidden}
.pge-el__faq-q{padding:16px 20px;font-weight:600;cursor:pointer;font-size:15px;list-style:none;display:flex;align-items:center;justify-content:space-between}
.pge-el__faq-q::after{content:'+';font-size:20px;color:#94a3b8;font-weight:400;transition:transform .2s}
.pge-el__faq-item[open] .pge-el__faq-q::after{content:'-'}
.pge-el__faq-q::-webkit-details-marker{display:none}
.pge-el__faq-a{padding:0 20px 16px;color:#475569;font-size:14px}
.pge-el__faq-a p{margin:0}

/* Related exam types — redesigned */
.pge-el__related-grid2{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:12px}
.pge-el__rel-card{display:flex;align-items:center;gap:14px;padding:14px 16px;border-radius:12px;background:#fff;border:1.5px solid #e2e8f0;text-decoration:none !important;color:inherit;transition:all .2s}
.pge-el__rel-card:hover{border-color:#94a3b8;box-shadow:0 4px 16px rgba(0,0,0,.07);transform:translateY(-1px)}
.pge-el__rel-badge{flex-shrink:0;color:#fff;font-weight:800;font-size:12px;padding:8px 12px;border-radius:8px;letter-spacing:.5px;min-width:50px;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.15)}
.pge-el__rel-info{flex:1;min-width:0}
.pge-el__rel-name{display:block;font-size:13px;font-weight:600;color:#1e293b;line-height:1.3;text-decoration:none !important}
.pge-el__rel-state{display:block;font-size:11px;color:#94a3b8;margin-top:2px}
.pge-el__rel-arrow{flex-shrink:0;font-size:16px;color:#cbd5e1;transition:transform .2s,color .2s}
.pge-el__rel-card:hover .pge-el__rel-arrow{color:#64748b;transform:translateX(3px)}

/* How It Works — 3 steps */
.pge-el__steps{display:flex;align-items:flex-start;justify-content:center;gap:8px;flex-wrap:nowrap}
.pge-el__step{flex:1;min-width:150px;max-width:240px;text-align:center;padding:20px 16px}
.pge-el__step-num{display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;border-radius:50%;color:#fff;font-size:20px;font-weight:800;margin-bottom:12px}
.pge-el__step-title{font-size:15px;font-weight:700;color:#1e293b;margin:0 0 6px}
.pge-el__step-desc{font-size:13px;color:#64748b;line-height:1.5;margin:0}
.pge-el__step-arrow{color:#cbd5e1;font-size:24px;padding-top:30px;flex-shrink:0}

/* Boost step — tiny glowing tutor CTA inline with 1-2-3 */
.pge-el__step--boost{text-decoration:none !important;background:linear-gradient(135deg,#ecfdf5,#f0fdf4);border:1.5px solid #86efac;border-radius:10px;flex:0 0 auto;min-width:0;max-width:130px;width:130px;padding:12px 8px;animation:tbBoostGlow 2s ease-in-out infinite;cursor:pointer;transition:transform .2s,box-shadow .2s}
.pge-el__step--boost:hover{transform:translateY(-2px);box-shadow:0 4px 14px rgba(22,163,74,.2)}
.pge-el__step--boost .pge-el__step-title{font-size:11px;color:#15803d;margin:0 0 3px}
.pge-el__step--boost .pge-el__step-desc{font-size:10px;line-height:1.3}
.pge-el__step-num--boost{background:linear-gradient(135deg,#16a34a,#059669) !important;width:28px;height:28px;font-size:14px;line-height:1;margin-bottom:6px}
.pge-el__step-arrow--boost{color:#16a34a;font-size:18px;padding-top:20px;animation:tbBoostArrow 1s ease-in-out infinite}
.pge-el__boost-btn{display:inline-block;margin-top:6px;padding:3px 10px;background:linear-gradient(135deg,#16a34a,#059669);color:#fff;font-size:9px;font-weight:700;border-radius:50px;letter-spacing:.2px}
@keyframes tbBoostGlow{0%,100%{box-shadow:0 0 4px rgba(22,163,74,.1)}50%{box-shadow:0 0 12px rgba(22,163,74,.22)}}
@keyframes tbBoostArrow{0%,100%{transform:translateX(0)}50%{transform:translateX(4px)}}

/* Benefits grid */
.pge-el__benefits{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.pge-el__benefit{background:#f8fafc;border:1px solid #e2e8f0;border-radius:14px;padding:20px;text-align:center;transition:all .2s}
.pge-el__benefit:hover{border-color:#94a3b8;box-shadow:0 4px 12px rgba(0,0,0,.06)}
.pge-el__benefit-icon{display:inline-grid;place-items:center;width:44px;height:44px;border-radius:12px;margin:0 auto 10px;background:color-mix(in srgb,var(--pge-ui-neu-accent,#2563eb) 10%,#fff);color:var(--pge-ui-neu-accent,#2563eb)}
.pge-el__benefit-title{font-size:14px;font-weight:700;color:#1e293b;margin:0 0 6px}
.pge-el__benefit-desc{font-size:13px;color:#64748b;line-height:1.5;margin:0}

/* Testimonials */
.pge-el__testimonials{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:16px}
.pge-el__testimonial{background:#fff;border:1px solid #e2e8f0;border-radius:14px;padding:20px;transition:all .2s}
.pge-el__testimonial:hover{box-shadow:0 4px 12px rgba(0,0,0,.06)}
.pge-el__testimonial-stars{font-size:16px;margin-bottom:8px}
.pge-el__testimonial-quote{font-size:14px;color:#475569;line-height:1.6;font-style:italic;margin:0 0 12px}
.pge-el__testimonial-author{display:flex;align-items:center;gap:8px}
.pge-el__testimonial-avatar{width:32px;height:32px;border-radius:50%;background:#1b3beb;color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:14px;flex-shrink:0}
.pge-el__testimonial-name{font-size:13px;font-weight:600;color:#334155}

/* CTA */
.pge-el__cta-section{text-align:center;padding:40px 32px;border-radius:16px;margin:32px 0;color:#fff}
.pge-el__cta-title{font-size:24px;font-weight:800;margin:0 0 8px;color:#fff}
.pge-el__cta-text{font-size:15px;opacity:.9;margin:0 0 20px;color:rgba(255,255,255,.9)}
.pge-el__cta-actions{display:flex;justify-content:center;gap:12px;flex-wrap:wrap}
.pge-el__cta-btn{display:inline-block;background:#fff;color:#1b3beb;font-weight:700;padding:12px 28px;border-radius:8px;text-decoration:none;font-size:15px;transition:all .2s}
.pge-el__cta-btn:hover{opacity:.9;transform:translateY(-1px)}
.pge-el__cta-btn--outline{background:transparent;border:2px solid rgba(255,255,255,.6);color:#fff}
.pge-el__cta-btn--outline:hover{background:rgba(255,255,255,.1);border-color:#fff}

/* ═══ INDEX PAGE — Premium Redesign ═══ */

/* Hero — illustration-driven layout */
.pge-idx-hero{background:linear-gradient(135deg,#ecfdf5 0%,#eff6ff 40%,#f8fafc 100%);padding:0 0 0;margin:-20px -20px 0;border-radius:0 0 32px 32px;overflow:visible}
.pge-idx-hero__inner{display:flex;align-items:center;gap:40px;max-width:1200px;margin:0 auto;padding:56px 40px 40px}
.pge-idx-hero__text{flex:1;min-width:0}
.pge-idx-hero__eyebrow{display:inline-block;font-size:13px;font-weight:700;color:#1b3beb;text-transform:uppercase;letter-spacing:.08em;margin-bottom:16px;background:rgba(37,99,235,.08);padding:6px 14px;border-radius:999px}
.pge-idx-hero__title{font-size:clamp(28px,4vw,44px);font-weight:400;color:#0f172a;margin:0 0 16px;line-height:1.2}
.pge-idx-hero__title strong{font-weight:800;display:block}
.pge-idx-hero__sub{font-size:16px;color:#475569;margin:0 0 20px;line-height:1.7;max-width:520px}
.pge-idx-hero__flow{display:flex;align-items:center;gap:8px;margin-bottom:28px;font-size:14px;font-weight:600;color:#334155}
.pge-idx-hero__flow-sep{width:20px;height:2px;background:#cbd5e1;border-radius:1px}
.pge-idx-hero__actions{display:flex;gap:12px;flex-wrap:wrap}
.pge-idx-hero__btn{display:inline-flex;align-items:center;padding:13px 28px;border-radius:10px;font-weight:700;font-size:15px;text-decoration:none;transition:all .2s;border:2px solid transparent}
.pge-idx-hero__btn--primary{background:#1b3beb;color:#fff;border-color:#1b3beb;box-shadow:0 4px 14px rgba(37,99,235,.25)}
.pge-idx-hero__btn--primary:hover{opacity:.9;transform:translateY(-1px);box-shadow:0 8px 24px rgba(37,99,235,.3);color:#fff}
.pge-idx-hero__btn--outline{background:transparent;color:#1b3beb;border-color:#d1d5db}
.pge-idx-hero__btn--outline:hover{border-color:#1b3beb;background:rgba(37,99,235,.04)}
.pge-idx-hero__illust{flex:0 0 380px;max-width:380px}
.pge-idx-hero__svg{width:100%;height:auto;display:block}

/* Trust stats bar — floating card */
.pge-idx-stats{display:flex;justify-content:center;background:#fff;border-radius:16px;box-shadow:0 4px 32px rgba(0,0,0,.07);max-width:800px;margin:-28px auto 0;position:relative;z-index:2;overflow:hidden}
.pge-idx-stats__item{flex:1;display:flex;align-items:center;gap:14px;padding:22px 24px}
.pge-idx-stats__item+.pge-idx-stats__item{border-left:1px solid #f1f5f9}
.pge-idx-stats__item div{display:flex;flex-direction:column}
.pge-idx-stats__item strong{font-size:22px;font-weight:800;color:#0f172a;line-height:1.2}
.pge-idx-stats__item span{font-size:12px;color:#64748b;white-space:nowrap}
.pge-idx-stats__icon{flex-shrink:0;width:44px;height:44px;border-radius:12px;display:flex;align-items:center;justify-content:center;background:#f8fafc}

/* Section headers */
.pge-idx-section-header{text-align:center;margin-bottom:32px}
.pge-idx-section__title{font-size:28px;font-weight:800;color:#0f172a;margin:0 0 8px}
.pge-idx-section__sub{font-size:15px;color:#64748b;margin:0}

/* Popular Exams section */
.pge-idx-exams{max-width:1200px;margin:0 auto;padding:56px 20px 48px}

/* Category tabs */
.pge-idx-tabs{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:28px;justify-content:center}
.pge-idx-tabs__btn{display:inline-flex;align-items:center;gap:6px;padding:10px 22px;border-radius:999px;border:1.5px solid #e5e7eb;background:#fff;color:#374151;font-size:14px;font-weight:600;cursor:pointer;transition:all .2s;white-space:nowrap;font-family:inherit}
.pge-idx-tabs__btn:hover{border-color:#9ca3af;background:#f9fafb}
.pge-idx-tabs__btn--active{background:#1b3beb;color:#fff;border-color:#1b3beb}
.pge-idx-tabs__btn--active:hover{background:#1b3beb;border-color:#1b3beb}
.pge-idx-tabs__count{font-size:11px;font-weight:700;background:rgba(0,0,0,.06);padding:2px 8px;border-radius:999px}
.pge-idx-tabs__btn--active .pge-idx-tabs__count{background:rgba(255,255,255,.25);color:#fff}

/* Tab panels */
.pge-idx-panel{display:none}
.pge-idx-panel--active{display:block}

/* Exam card grid — premium individual cards */
.pge-idx-card-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:12px}
.pge-idx-card,.pge-idx-card:hover,.pge-idx-card__name,.pge-idx-card__meta{text-decoration:none !important}
.pge-idx-card{display:flex;align-items:center;gap:14px;padding:16px 18px;background:#fff;border:1px solid #e5e7eb;border-radius:12px;text-decoration:none;color:inherit;transition:all .2s}
.pge-idx-card:hover{border-color:#94a3b8;box-shadow:0 4px 16px rgba(0,0,0,.06);transform:translateY(-1px)}
.pge-idx-card__icon{width:42px;height:42px;border-radius:10px;background:linear-gradient(135deg,#1b3beb,#60a5fa);display:flex;align-items:center;justify-content:center;color:#fff;font-weight:800;font-size:14px;flex-shrink:0;letter-spacing:.5px}
.pge-idx-card__body{flex:1;min-width:0}
.pge-idx-card__name{display:block;font-size:14px;font-weight:600;color:#1e293b;line-height:1.35;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.pge-idx-card__meta{display:block;font-size:12px;color:#94a3b8;margin-top:2px}
.pge-idx-card__arrow{color:#cbd5e1;flex-shrink:0;transition:all .15s}
.pge-idx-card:hover .pge-idx-card__arrow{color:#64748b;transform:translateX(2px)}
.pge-idx-card__badge{flex-shrink:0;font-size:11px;font-weight:600;color:#92400e;background:#fef3c7;padding:3px 8px;border-radius:10px;letter-spacing:.02em;white-space:nowrap}
.pge-idx-card--scheduled{position:relative}
.pge-idx-card--scheduled .pge-idx-card__name{color:#475569}

/* Explore all link */
.pge-idx-explore{text-align:center;margin-top:20px}
.pge-idx-explore a{color:#1b3beb;font-weight:600;font-size:15px;text-decoration:none;transition:opacity .2s}
.pge-idx-explore a:hover{opacity:.8}

/* Why Us section */
.pge-idx-why{max-width:1200px;margin:0 auto;padding:0 20px 56px}
.pge-idx-why__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.pge-idx-why__card{background:#fff;border:1px solid #e5e7eb;border-radius:16px;padding:28px 24px;text-align:center;transition:all .25s}
.pge-idx-why__card:hover{border-color:#94a3b8;box-shadow:0 8px 24px rgba(0,0,0,.06);transform:translateY(-2px)}
.pge-idx-why__icon{width:56px;height:56px;border-radius:14px;background:#f0f9ff;display:inline-flex;align-items:center;justify-content:center;margin-bottom:16px;color:#1b3beb}
.pge-idx-why__card-title{font-size:15px;font-weight:700;color:#0f172a;margin:0 0 8px}
.pge-idx-why__card-desc{font-size:13px;color:#64748b;line-height:1.6;margin:0}

/* How It Works */
.pge-idx-how{max-width:1200px;margin:0 auto;padding:0 20px 56px}
.pge-idx-how__steps{display:flex;align-items:flex-start;justify-content:center;gap:0;flex-wrap:nowrap}
.pge-idx-how__step{flex:1;max-width:280px;text-align:center;padding:24px 20px}
.pge-idx-how__num{display:inline-flex;align-items:center;justify-content:center;width:48px;height:48px;border-radius:50%;color:#fff;font-size:20px;font-weight:800;margin-bottom:16px;box-shadow:0 4px 12px rgba(0,0,0,.1)}
.pge-idx-how__step-title{font-size:16px;font-weight:700;color:#0f172a;margin:0 0 8px}
.pge-idx-how__step-desc{font-size:13px;color:#64748b;line-height:1.6;margin:0}
.pge-idx-how__connector{display:flex;align-items:center;padding-top:36px;flex-shrink:0}

/* Bottom CTA */
.pge-idx-cta{max-width:1200px;margin:0 auto 40px;padding:0 20px}
.pge-idx-cta__inner{background:linear-gradient(135deg,#1b3beb,#3b82f6,#60a5fa);border-radius:20px;padding:48px 40px;text-align:center;position:relative;overflow:hidden}
.pge-idx-cta__inner::before{content:'';position:absolute;top:-50%;right:-30%;width:400px;height:400px;border-radius:50%;background:rgba(255,255,255,.06)}
.pge-idx-cta__inner::after{content:'';position:absolute;bottom:-40%;left:-20%;width:300px;height:300px;border-radius:50%;background:rgba(255,255,255,.04)}
.pge-idx-cta__title{font-size:28px;font-weight:800;color:#fff;margin:0 0 10px;position:relative;z-index:1}
.pge-idx-cta__text{font-size:16px;color:rgba(255,255,255,.85);margin:0 0 24px;position:relative;z-index:1}
.pge-idx-cta__actions{display:flex;justify-content:center;gap:12px;flex-wrap:wrap;position:relative;z-index:1}
.pge-idx-cta__btn{display:inline-block;background:#fff;color:#1b3beb;font-weight:700;padding:14px 32px;border-radius:10px;text-decoration:none;font-size:15px;transition:all .2s;border:2px solid transparent}
.pge-idx-cta__btn:hover{opacity:.95;transform:translateY(-1px);box-shadow:0 4px 16px rgba(0,0,0,.15)}
.pge-idx-cta__btn--outline{background:transparent;border-color:rgba(255,255,255,.5);color:#fff}
.pge-idx-cta__btn--outline:hover{background:rgba(255,255,255,.1);border-color:#fff}

/* ── Browse by State (India — text list with SVG icons) ── */
.pge-el__state-section{max-width:1200px;margin:0 auto;padding:0 20px 56px}
.pge-el__state-groups{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.pge-el__state-region-title{font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:#64748b;margin:0 0 12px;padding-bottom:8px;border-bottom:2px solid #e5e7eb}
.pge-el__state-list{display:flex;flex-direction:column;gap:0}
.pge-el__state-item{display:flex;align-items:center;gap:10px;padding:10px 8px;text-decoration:none;color:#1e293b;border-radius:8px;transition:background .15s;font-size:14px;font-weight:500}
.pge-el__state-item:hover{background:#f1f5f9}
.pge-el__state-item-svg{width:24px;height:24px;object-fit:contain;flex-shrink:0;opacity:.6;transition:opacity .2s}
.pge-el__state-item:hover .pge-el__state-item-svg{opacity:1}
.pge-el__state-item-arrow{margin-left:auto;font-size:16px;color:#cbd5e1;transition:color .15s}
.pge-el__state-item:hover .pge-el__state-item-arrow{color:#64748b}

/* ── Browse by State (USA — SVG grid) ── */
.pge-el__state-grid-section{max-width:1200px;margin:0 auto;padding:0 20px 56px}
.pge-el__group-header{text-align:center;margin-bottom:28px}
.pge-el__group-title{font-size:28px;font-weight:800;color:#0f172a;margin:0 0 8px}
.pge-el__group-sub{font-size:15px;color:#64748b;margin:0}
.pge-el__state-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:12px}
.pge-el__state-card{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;padding:18px 10px;background:#fff;border:1px solid #e5e7eb;border-radius:12px;text-decoration:none;color:#1e293b;transition:all .2s;min-height:110px}
.pge-el__state-card:hover{border-color:#1b3beb;box-shadow:0 8px 24px rgba(37,99,235,.1);transform:translateY(-3px)}
.pge-el__state-card:hover .pge-el__state-svg{filter:none;opacity:1}
.pge-el__state-card:hover .pge-el__state-name{color:#1b3beb}
.pge-el__state-svg{width:48px;height:48px;object-fit:contain;filter:grayscale(.3);opacity:.65;transition:all .2s}
.pge-el__state-placeholder{width:48px;height:48px;border-radius:50%;background:#f1f5f9;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:16px;color:#64748b}
.pge-el__state-name{font-size:12px;font-weight:600;color:#334155;text-align:center;line-height:1.3;transition:color .2s}
.pge-el__state-abbr{font-size:10px;color:#94a3b8;font-weight:500}

/* ── Responsive ── */
@media(max-width:1024px){
    .pge-idx-hero__inner{flex-direction:column;text-align:center;padding:40px 24px 32px}
    .pge-idx-hero__text{align-items:center}
    .pge-idx-hero__sub{margin-left:auto;margin-right:auto}
    .pge-idx-hero__flow{justify-content:center}
    .pge-idx-hero__actions{justify-content:center}
    .pge-idx-hero__illust{flex:0 0 auto;max-width:320px;margin:0 auto}
    .pge-idx-card-grid{grid-template-columns:repeat(2,1fr)}
    .pge-idx-why__grid{grid-template-columns:repeat(2,1fr)}
    .pge-el__state-grid{grid-template-columns:repeat(4,1fr)}
    .pge-el__state-groups{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
    .pge-el__two-col{grid-template-columns:1fr}
    .pge-el__perf-grid{grid-template-columns:repeat(2,1fr)}
    .pge-idx-stats{flex-direction:column;border-radius:12px;max-width:100%;margin-top:-20px}
    .pge-idx-stats__item+.pge-idx-stats__item{border-left:none;border-top:1px solid #f1f5f9}
    .pge-idx-stats__item{padding:16px 20px}
    .pge-idx-how__steps{flex-direction:column;align-items:center;gap:0}
    .pge-idx-how__connector{transform:rotate(90deg);padding:0;margin:4px 0}
}
@media(max-width:640px){
    .pge-el{padding:0 12px}
    .pge-idx-hero{margin:-12px -12px 0}
    .pge-idx-hero__inner{padding:32px 16px 24px;gap:24px}
    .pge-idx-hero__title{font-size:26px}
    .pge-idx-hero__illust{max-width:260px}
    .pge-idx-card-grid{grid-template-columns:1fr}
    .pge-idx-why__grid{grid-template-columns:1fr}
    .pge-idx-cta__inner{padding:32px 20px;border-radius:16px}
    .pge-idx-cta__title{font-size:22px}
    .pge-idx-cta__actions{flex-direction:column;align-items:center}
    .pge-idx-cta__btn{width:100%;text-align:center;max-width:300px}
    .pge-el__state-grid{grid-template-columns:repeat(2,1fr)}
    .pge-el__state-card{min-height:80px;padding:12px 6px}
    .pge-el__state-svg{width:36px;height:36px}
    .pge-el__state-groups{grid-template-columns:1fr}
    .pge-idx-tabs{gap:6px}
    .pge-idx-tabs__btn{padding:8px 14px;font-size:13px}
    .pge-idx-exams{padding:40px 12px 36px}
    .pge-el__hero-title{font-size:22px}
    .pge-el__hero-sub{font-size:14px}
    .pge-el__hero-actions{flex-direction:column;align-items:center}
    .pge-el__hero-btn{width:100%;justify-content:center;max-width:300px}
    .pge-el__steps{flex-direction:column;align-items:center}
    .pge-el__step-arrow{transform:rotate(90deg);padding:0}
    .pge-el__benefits{grid-template-columns:1fr}
    .pge-el__testimonials{grid-template-columns:1fr}
    .pge-el__exam-name{white-space:normal}
    .pge-el__related-grid2{grid-template-columns:1fr}
    .pge-el__subject-grid{grid-template-columns:repeat(2,1fr)}
    .pge-el__cta-section{padding:24px 16px;border-radius:12px}
    .pge-el__cta-title{font-size:20px}
    .pge-el__cta-actions{flex-direction:column;align-items:center}
    .pge-el__cta-btn{width:100%;text-align:center;max-width:300px}
}

/* ──────────────────────────────────────────────────────────────────
   HYBRID NEUMORPHISM RE-SKIN — per-exam landing page
   Soft-UI for hero, exam rows, subject pills, benefits, FAQs, CTA.
   ────────────────────────────────────────────────────────────────── */
body.pge-portal-testprep .pge-el__exam-row, body.brand-region-usa .pge-el__exam-row, body.brand-region-school .pge-el__exam-row,
body.pge-portal-competitive .pge-el__exam-row,
body.pge-portal-testprep .pge-el__benefit, body.brand-region-usa .pge-el__benefit, body.brand-region-school .pge-el__benefit,
body.pge-portal-competitive .pge-el__benefit,
body.pge-portal-testprep .pge-el__faq-item, body.brand-region-usa .pge-el__faq-item, body.brand-region-school .pge-el__faq-item,
body.pge-portal-competitive .pge-el__faq-item {
    background: var(--pge-ui-neu-surface);
    border: 1px solid var(--pge-ui-neu-border);
    border-radius: var(--pge-ui-radius-xl);
    box-shadow: var(--pge-ui-neu-shadow-sm);
    transition: transform .15s ease, box-shadow .2s ease;
}
body.pge-portal-testprep .pge-el__exam-row:hover, body.brand-region-usa .pge-el__exam-row:hover, body.brand-region-school .pge-el__exam-row:hover,
body.pge-portal-competitive .pge-el__exam-row:hover,
body.pge-portal-testprep .pge-el__benefit:hover, body.brand-region-usa .pge-el__benefit:hover, body.brand-region-school .pge-el__benefit:hover,
body.pge-portal-competitive .pge-el__benefit:hover {
    transform: translateY(-1px);
    box-shadow: var(--pge-ui-neu-shadow);
}
body.pge-portal-testprep .pge-el__exam-icon, body.brand-region-usa .pge-el__exam-icon, body.brand-region-school .pge-el__exam-icon,
body.pge-portal-competitive .pge-el__exam-icon,
body.pge-portal-testprep .pge-el__benefit-icon, body.brand-region-usa .pge-el__benefit-icon, body.brand-region-school .pge-el__benefit-icon,
body.pge-portal-competitive .pge-el__benefit-icon {
    background: color-mix(in srgb, var(--pge-ui-neu-accent) 10%, #fff);
    color: var(--pge-ui-neu-accent);
    border-radius: 12px;
}
body.pge-portal-testprep .pge-el__grade-pill, body.brand-region-usa .pge-el__grade-pill, body.brand-region-school .pge-el__grade-pill,
body.pge-portal-competitive .pge-el__grade-pill {
    background: var(--pge-ui-neu-surface);
    border: 1px solid var(--pge-ui-neu-border);
    box-shadow: var(--pge-ui-neu-shadow-sm);
    border-radius: var(--pge-ui-radius-pill);
    transition: transform .15s ease, box-shadow .2s ease, color .2s ease;
}
body.pge-portal-testprep .pge-el__grade-pill:hover, body.brand-region-usa .pge-el__grade-pill:hover, body.brand-region-school .pge-el__grade-pill:hover,
body.pge-portal-competitive .pge-el__grade-pill:hover {
    transform: translateY(-1px);
    box-shadow: var(--pge-ui-neu-shadow);
    color: var(--pge-ui-primary);
}
body.pge-portal-testprep .pge-el__diff-bar-bg, body.brand-region-usa .pge-el__diff-bar-bg, body.brand-region-school .pge-el__diff-bar-bg,
body.pge-portal-competitive .pge-el__diff-bar-bg {
    background: var(--pge-ui-neu-bg);
    box-shadow: var(--pge-ui-neu-shadow-inset-sm);
    border-radius: var(--pge-ui-radius-pill);
}
body.pge-portal-testprep .pge-el__cta-section, body.brand-region-usa .pge-el__cta-section, body.brand-region-school .pge-el__cta-section,
body.pge-portal-competitive .pge-el__cta-section {
    background: var(--pge-ui-neu-surface);
    border: 1px solid var(--pge-ui-neu-border);
    border-radius: var(--pge-ui-radius-2xl);
    box-shadow: var(--pge-ui-neu-shadow-lg);
}
body.pge-portal-testprep .pge-el__cta-btn, body.brand-region-usa .pge-el__cta-btn, body.brand-region-school .pge-el__cta-btn,
body.pge-portal-competitive .pge-el__cta-btn {
    box-shadow:
        -3px -3px 8px rgba(255,255,255,0.5),
         4px  4px 10px rgba(15,23,42,0.18),
         inset 0 1px 0 rgba(255,255,255,0.18);
}
body.pge-portal-testprep .pge-el__cta-btn:hover, body.brand-region-usa .pge-el__cta-btn:hover, body.brand-region-school .pge-el__cta-btn:hover,
body.pge-portal-competitive .pge-el__cta-btn:hover {
    transform: translateY(-1px);
}
body.pge-portal-testprep .pge-el__cta-btn:active, body.brand-region-usa .pge-el__cta-btn:active, body.brand-region-school .pge-el__cta-btn:active,
body.pge-portal-competitive .pge-el__cta-btn:active {
    transform: translateY(0);
    box-shadow:
        inset 2px 2px 5px rgba(15,23,42,0.25),
        inset -2px -2px 5px rgba(255,255,255,0.18);
}

/* ══════════════════════════════════════════════════════════════════
   PREPGRO PREMIUM POLISH — exam landing (Acorn v35 alignment)
   Montserrat 800 headings, Nunito Sans meta, neumorphic hero card,
   stat rings, index cards. Additive over the base neumorphism layer.
   ══════════════════════════════════════════════════════════════════ */

/* ── Hero title & sub: Montserrat display + Nunito Sans body ── */
body.pge-portal-testprep .pge-el__hero-title,
body.brand-region-usa   .pge-el__hero-title,
body.brand-region-school .pge-el__hero-title,
body.pge-portal-competitive .pge-el__hero-title {
    font-family: var(--pge-ui-neu-display, 'Montserrat', 'Sora', sans-serif);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--pge-ui-neu-ink);
}
body.pge-portal-testprep .pge-el__hero-sub,
body.brand-region-usa   .pge-el__hero-sub,
body.brand-region-school .pge-el__hero-sub,
body.pge-portal-competitive .pge-el__hero-sub {
    font-family: var(--pge-ui-neu-font-body, 'Nunito Sans', 'Sora', sans-serif);
    color: var(--pge-ui-neu-ink-soft);
}

/* ── Hero card: full neumorphic surface ── */
body.pge-portal-testprep .pge-el__hero-card,
body.brand-region-usa   .pge-el__hero-card,
body.brand-region-school .pge-el__hero-card,
body.pge-portal-competitive .pge-el__hero-card {
    background: var(--pge-ui-neu-surface);
    border: 1px solid var(--pge-ui-neu-border);
    border-radius: var(--pge-ui-radius-2xl, 28px);
    box-shadow: var(--pge-ui-neu-shadow);
}
/* Gradient accent bar: prepGro brand gradient */
body.pge-portal-testprep .pge-el__hero-card::before,
body.brand-region-usa   .pge-el__hero-card::before,
body.brand-region-school .pge-el__hero-card::before,
body.pge-portal-competitive .pge-el__hero-card::before {
    background: linear-gradient(90deg, #1A4FC4, #2D7EF5, #5299FF) !important;
    height: 4px;
    border-radius: var(--pge-ui-radius-2xl, 28px) var(--pge-ui-radius-2xl, 28px) 0 0;
}

/* ── Stats inside hero card: inset wells ── */
body.pge-portal-testprep .pge-el__hero-card .pge-el__stat,
body.brand-region-usa   .pge-el__hero-card .pge-el__stat,
body.brand-region-school .pge-el__hero-card .pge-el__stat,
body.pge-portal-competitive .pge-el__hero-card .pge-el__stat {
    background: var(--pge-ui-neu-bg);
    box-shadow: var(--pge-ui-neu-in);
    border-radius: var(--pge-ui-radius-md, 18px);
    border: none;
}
body.pge-portal-testprep .pge-el__hero-card .pge-el__stat-num,
body.brand-region-usa   .pge-el__hero-card .pge-el__stat-num,
body.brand-region-school .pge-el__hero-card .pge-el__stat-num,
body.pge-portal-competitive .pge-el__hero-card .pge-el__stat-num {
    font-family: var(--pge-ui-neu-font-mono);
    font-weight: 700;
    color: var(--pge-ui-neu-accent);
}
body.pge-portal-testprep .pge-el__hero-card .pge-el__stat-label,
body.brand-region-usa   .pge-el__hero-card .pge-el__stat-label,
body.brand-region-school .pge-el__hero-card .pge-el__stat-label,
body.pge-portal-competitive .pge-el__hero-card .pge-el__stat-label { color: var(--pge-ui-neu-ink-soft); }

/* ── Index page stat bar: neumorphic raised pill ── */
body.pge-portal-testprep .pge-idx-stats,
body.brand-region-usa   .pge-idx-stats,
body.brand-region-school .pge-idx-stats,
body.pge-portal-competitive .pge-idx-stats {
    background: var(--pge-ui-neu-surface);
    box-shadow: var(--pge-ui-neu-shadow);
    border-radius: var(--pge-ui-radius-2xl, 28px);
    border: 1px solid var(--pge-ui-neu-border);
}
body.pge-portal-testprep .pge-idx-stats__item + .pge-idx-stats__item,
body.brand-region-usa   .pge-idx-stats__item + .pge-idx-stats__item,
body.brand-region-school .pge-idx-stats__item + .pge-idx-stats__item,
body.pge-portal-competitive .pge-idx-stats__item + .pge-idx-stats__item {
    border-left-color: var(--pge-ui-neu-border);
}
body.pge-portal-testprep .pge-idx-stats__item strong,
body.brand-region-usa   .pge-idx-stats__item strong,
body.brand-region-school .pge-idx-stats__item strong,
body.pge-portal-competitive .pge-idx-stats__item strong {
    font-family: var(--pge-ui-neu-font-mono);
    color: var(--pge-ui-neu-ink);
}
body.pge-portal-testprep .pge-idx-stats__icon,
body.brand-region-usa   .pge-idx-stats__icon,
body.brand-region-school .pge-idx-stats__icon,
body.pge-portal-competitive .pge-idx-stats__icon {
    background: var(--pge-ui-neu-bg);
    box-shadow: var(--pge-ui-neu-in);
    border-radius: 14px;
    color: var(--pge-ui-neu-accent);
}

/* ── Index exam cards: neumorphic raised + Montserrat name ── */
body.pge-portal-testprep .pge-idx-card,
body.brand-region-usa   .pge-idx-card,
body.brand-region-school .pge-idx-card,
body.pge-portal-competitive .pge-idx-card {
    background: var(--pge-ui-neu-surface);
    border: 1px solid var(--pge-ui-neu-border);
    border-radius: var(--pge-ui-radius-xl, 22px);
    box-shadow: var(--pge-ui-neu-out-sm);
    transition: transform .18s ease, box-shadow .22s ease;
}
body.pge-portal-testprep .pge-idx-card:hover,
body.brand-region-usa   .pge-idx-card:hover,
body.brand-region-school .pge-idx-card:hover,
body.pge-portal-competitive .pge-idx-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--pge-ui-neu-out);
}
body.pge-portal-testprep .pge-idx-card__name,
body.brand-region-usa   .pge-idx-card__name,
body.brand-region-school .pge-idx-card__name,
body.pge-portal-competitive .pge-idx-card__name {
    font-family: var(--pge-ui-neu-display, 'Montserrat', 'Sora', sans-serif);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--pge-ui-neu-ink);
}
body.pge-portal-testprep .pge-idx-card__icon,
body.brand-region-usa   .pge-idx-card__icon,
body.brand-region-school .pge-idx-card__icon,
body.pge-portal-competitive .pge-idx-card__icon {
    background: linear-gradient(145deg, #2D7EF5, #1A4FC4);
    box-shadow: var(--pge-ui-neu-accent-out);
    border-radius: 12px;
}

/* ── Why-us cards: neumorphic raised ── */
body.pge-portal-testprep .pge-idx-why__card,
body.brand-region-usa   .pge-idx-why__card,
body.brand-region-school .pge-idx-why__card,
body.pge-portal-competitive .pge-idx-why__card {
    background: var(--pge-ui-neu-surface);
    border: 1px solid var(--pge-ui-neu-border);
    border-radius: var(--pge-ui-radius-xl, 22px);
    box-shadow: var(--pge-ui-neu-out-sm);
    transition: transform .18s ease, box-shadow .22s ease;
}
body.pge-portal-testprep .pge-idx-why__card:hover,
body.brand-region-usa   .pge-idx-why__card:hover,
body.brand-region-school .pge-idx-why__card:hover,
body.pge-portal-competitive .pge-idx-why__card:hover {
    transform: translateY(-2px);
    box-shadow: var(--pge-ui-neu-out);
}
body.pge-portal-testprep .pge-idx-why__card-title,
body.brand-region-usa   .pge-idx-why__card-title,
body.brand-region-school .pge-idx-why__card-title,
body.pge-portal-competitive .pge-idx-why__card-title {
    font-family: var(--pge-ui-neu-display, 'Montserrat', 'Sora', sans-serif);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--pge-ui-neu-ink);
}
body.pge-portal-testprep .pge-idx-why__icon,
body.brand-region-usa   .pge-idx-why__icon,
body.brand-region-school .pge-idx-why__icon,
body.pge-portal-competitive .pge-idx-why__icon {
    background: var(--pge-ui-neu-bg);
    box-shadow: var(--pge-ui-neu-in);
    color: var(--pge-ui-neu-accent);
}

/* ── Hero index title: Montserrat 800 ── */
body.pge-portal-testprep .pge-idx-hero__title,
body.brand-region-usa   .pge-idx-hero__title,
body.brand-region-school .pge-idx-hero__title,
body.pge-portal-competitive .pge-idx-hero__title {
    font-family: var(--pge-ui-neu-display, 'Montserrat', 'Sora', sans-serif);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--pge-ui-neu-ink);
}

/* ── Bottom CTA: gradient band matching brand kit ── */
body.pge-portal-testprep .pge-idx-cta__inner,
body.brand-region-usa   .pge-idx-cta__inner,
body.brand-region-school .pge-idx-cta__inner,
body.pge-portal-competitive .pge-idx-cta__inner {
    background: linear-gradient(155deg, #0B1220 0%, #0F1A2E 50%, #0d1f38 100%);
    border: 1px solid rgba(255,255,255,.06);
    box-shadow: 0 24px 60px rgba(0,0,0,.28);
}
body.pge-portal-testprep .pge-idx-cta__title,
body.brand-region-usa   .pge-idx-cta__title,
body.brand-region-school .pge-idx-cta__title,
body.pge-portal-competitive .pge-idx-cta__title {
    font-family: var(--pge-ui-neu-display, 'Montserrat', 'Sora', sans-serif);
    font-weight: 800;
    letter-spacing: -0.03em;
}
