/*!
 * Everest.in — plugin styles (v2.0 — navy/gold, by Evermitch)
 *
 * Scoped under .everest-app to avoid clashing with the theme.
 * Brand palette matches the Evermitch datasolution site:
 *   navy #0a2540 (header / sidebar / footer bg)
 *   blue #1a5694 (primary buttons, active nav, links)
 *   gold #f59e0b (payment CTA, MOST POPULAR, highlight numbers)
 *
 * The admin-chosen --everest-primary (--ev-blue) themes the blue elements;
 * the gold accent (--ev-gold) is fixed.
 */

:root {
        --ev-navy:        #0a2540;
        --ev-blue:        #1a5694;
        --ev-blue-hover:  #14467d;
        --ev-gold:        #f59e0b;
        --ev-gold-hover:  #d97706;
        --ev-bg:          #ffffff;
        --ev-muted:       #f8fafc;
        --ev-border:      #e2e8f0;
        --ev-text:        #0f172a;
        --ev-text-muted:  #64748b;
        --ev-text-soft:   #94a3b8;

        /* Aliases used by older v1 rules — kept so a single source of truth. */
        --everest-primary:        var(--ev-blue);
        --everest-primary-hover:  var(--ev-blue-hover);
        --everest-primary-deep:   var(--ev-navy);
        --everest-bg:             var(--ev-bg);
        --everest-muted-bg:       var(--ev-muted);
        --everest-border:         var(--ev-border);
        --everest-text:           var(--ev-text);
        --everest-text-muted:     var(--ev-text-muted);
        --everest-text-soft:      var(--ev-text-soft);

        --everest-danger:    #dc2626;
        --everest-danger-bg: #fee2e2;
        --everest-warn:      #f59e0b;
        --everest-warn-bg:   #fef3c7;
        --everest-yellow:    #eab308;
        --everest-yellow-bg: #fef9c3;
        --everest-success:   #16a34a;
        --everest-success-bg:#dcfce7;

        --everest-radius:    12px;
        --everest-radius-sm: 8px;
        --everest-shadow:    0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.04);
        --everest-shadow-lg: 0 10px 30px rgba(15, 23, 42, 0.10), 0 4px 10px rgba(15, 23, 42, 0.06);
        --everest-font:      Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---- Reset within the app shell ---- */
.everest-app, .everest-app *, .everest-app *::before, .everest-app *::after { box-sizing: border-box; }
.everest-app {
        font-family: var(--everest-font);
        color: var(--everest-text);
        background: var(--everest-bg);
        line-height: 1.5;
        -webkit-font-smoothing: antialiased;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
}
.everest-app a { color: var(--ev-blue); text-decoration: none; }
.everest-app a:hover { color: var(--ev-blue-hover); text-decoration: underline; }
.everest-app h1, .everest-app h2, .everest-app h3, .everest-app h4 { color: var(--everest-text); margin: 0 0 8px; line-height: 1.25; }
.everest-app h1 { font-size: 28px; }
.everest-app h2 { font-size: 22px; }
.everest-app h3 { font-size: 18px; }
.everest-app h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--everest-text-muted); }
.everest-app p { margin: 0 0 12px; }
.everest-app ul { margin: 0; padding: 0; list-style: none; }
.everest-app button { font-family: inherit; cursor: pointer; }
.everest-app input, .everest-app textarea, .everest-app select { font-family: inherit; font-size: 14px; }

/* ---- Loading state ---- */
.everest-loading { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 80px 20px; text-align: center; flex: 1; gap: 14px; }
.everest-loading-logo svg { max-width: 220px; height: auto; }
.everest-loading-tagline { color: var(--everest-text-muted); font-size: 16px; }
.everest-loading-hint { color: var(--everest-text-soft); font-size: 13px; }
.everest-spinner { width: 28px; height: 28px; border: 3px solid var(--everest-border); border-top-color: var(--ev-blue); border-radius: 50%; animation: everest-spin 0.8s linear infinite; }
@keyframes everest-spin { to { transform: rotate(360deg); } }

/* ---- Layout containers ---- */
.everest-container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.everest-container.everest-narrow { max-width: 760px; }

/* ---- Header (navy) ---- */
.everest-header {
        background: var(--ev-navy);
        border-bottom: 3px solid var(--ev-gold);
        position: sticky;
        top: 0;
        z-index: 30;
}
.everest-header-row { display: flex; align-items: center; gap: 24px; height: 70px; }
.everest-header-brand { display: inline-flex; align-items: center; }
.everest-header-brand svg { display: block; }
.everest-header-brand svg text { fill: #0a2540; }
.everest-header-nav { display: flex; gap: 20px; flex: 1; }
.everest-header-nav a { color: #cbd5e1; font-weight: 500; font-size: 14px; padding: 6px 4px; border-bottom: 2px solid transparent; }
.everest-header-nav a:hover { color: #fff; text-decoration: none; border-bottom-color: var(--ev-gold); }
.everest-header-actions { display: flex; gap: 10px; align-items: center; }

/* ---- Footer (navy) ---- */
.everest-footer { margin-top: auto; background: var(--ev-navy); color: #cbd5e1; padding: 44px 0 16px; font-size: 14px; border-top: 3px solid var(--ev-gold); }
.everest-footer * { color: inherit; }
.everest-footer .everest-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 24px; }
.everest-footer h4 { color: var(--ev-gold); font-size: 12px; }
.everest-footer ul li { margin: 6px 0; }
.everest-footer ul li a { color: #cbd5e1; }
.everest-footer ul li a:hover { color: var(--ev-gold); text-decoration: none; }
.everest-footer-brand svg { background: #fff; padding: 6px 10px; border-radius: 6px; }
.everest-footer-tagline { color: #94a3b8; font-size: 13px; margin-top: 8px; }
.everest-footer-brought { color: #cbd5e1; font-size: 13px; margin-top: 4px; }
.everest-footer-bottom { border-top: 1px solid rgba(255,255,255,0.10); padding-top: 14px; text-align: center; color: #94a3b8; font-size: 13px; }
.everest-social li a::before { content: "›"; margin-right: 6px; color: var(--ev-gold); }

/* ---- Buttons ---- */
.everest-app .everest-btn {
        display: inline-flex; align-items: center; justify-content: center; gap: 6px;
        border: 1px solid transparent;
        border-radius: var(--everest-radius-sm);
        padding: 10px 18px;
        font-size: 14px; font-weight: 600;
        cursor: pointer;
        transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
        background: transparent; text-decoration: none;
}
.everest-app .everest-btn:focus-visible { outline: 2px solid var(--ev-blue); outline-offset: 2px; }
.everest-app .everest-btn-primary { background: var(--ev-blue); color: #fff; }
.everest-app .everest-btn-primary:hover { background: var(--ev-blue-hover); text-decoration: none; color: #fff; }
.everest-app .everest-btn-gold { background: var(--ev-gold); color: #1f2937; }
.everest-app .everest-btn-gold:hover { background: var(--ev-gold-hover); color: #fff; text-decoration: none; }
.everest-app .everest-btn-outline { border-color: var(--everest-border); color: var(--everest-text); background: #fff; }
.everest-app .everest-btn-outline:hover { border-color: var(--ev-blue); color: var(--ev-blue-hover); text-decoration: none; }
.everest-app .everest-btn-danger { background: var(--everest-danger); color: #fff; }
.everest-app .everest-btn-danger:hover { background: #b91c1c; text-decoration: none; }
.everest-app .everest-btn-ghost { color: var(--everest-text-muted); background: transparent; }
.everest-app .everest-btn-ghost:hover { background: var(--everest-muted-bg); color: var(--everest-text); text-decoration: none; }
.everest-app .everest-btn-sm { padding: 7px 12px; font-size: 13px; }
.everest-app .everest-btn-block { width: 100%; }
.everest-app .everest-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ---- Cards ---- */
.everest-card { background: #fff; border: 1px solid var(--everest-border); border-radius: var(--everest-radius); box-shadow: var(--everest-shadow); padding: 22px; }
.everest-card + .everest-card { margin-top: 16px; }

/* ---- Hero ---- */
.everest-hero {
        background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 60%);
        padding: 70px 0 50px;
        text-align: center;
}
.everest-hero h1 { font-size: 42px; letter-spacing: -0.02em; margin-bottom: 14px; }
.everest-hero h1 .accent { color: var(--ev-gold); }
.everest-hero p { font-size: 18px; color: var(--everest-text-muted); max-width: 640px; margin: 0 auto 24px; }
.everest-hero .everest-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.everest-trust { margin-top: 30px; display: flex; gap: 24px; justify-content: center; color: var(--everest-text-soft); font-size: 13px; flex-wrap: wrap; }
.everest-trust span::before { content: "✓ "; color: var(--everest-success); font-weight: 700; }

/* ---- Login ---- */
.everest-auth-wrap { display: flex; justify-content: center; padding: 50px 20px; flex: 1; }
.everest-auth-card { width: 100%; max-width: 420px; padding: 32px; }
.everest-auth-card h2 { text-align: center; margin-bottom: 6px; }
.everest-auth-card .everest-subtitle { text-align: center; color: var(--everest-text-muted); margin-bottom: 22px; font-size: 14px; }
.everest-auth-logo { display: flex; justify-content: center; margin-bottom: 14px; }
.everest-field { margin-bottom: 16px; }
.everest-field label { display: block; font-size: 13px; font-weight: 600; color: var(--everest-text); margin-bottom: 6px; }
.everest-input {
        width: 100%; padding: 10px 12px;
        border: 1px solid var(--everest-border);
        border-radius: var(--everest-radius-sm);
        background: #fff; color: var(--everest-text);
        font-size: 14px;
        transition: border-color 0.15s, box-shadow 0.15s;
}
.everest-input:focus { outline: none; border-color: var(--ev-blue); box-shadow: 0 0 0 3px rgba(26, 86, 148, 0.15); }
.everest-checkbox-row { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--everest-text-muted); }
.everest-auth-meta { display: flex; justify-content: space-between; align-items: center; margin: 6px 0 18px; font-size: 13px; }
.everest-auth-footer { text-align: center; margin-top: 18px; font-size: 13px; color: var(--everest-text-muted); }

/* ---- Dashboard layout (sidebar = navy) ---- */
.everest-dashboard { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - 70px); flex: 1; }
.everest-sidebar {
        background: var(--ev-navy);
        color: #cbd5e1;
        padding: 22px 16px;
        display: flex;
        flex-direction: column;
        gap: 4px;
        position: sticky;
        top: 70px;
        align-self: start;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
}
.everest-sidebar-brand { padding: 0 8px 16px; border-bottom: 1px solid rgba(255,255,255,0.10); margin-bottom: 12px; }
.everest-sidebar-brand svg { background: #fff; padding: 4px 8px; border-radius: 6px; }
.everest-sidebar-link {
        display: flex; align-items: center; gap: 10px;
        padding: 10px 12px;
        border-radius: var(--everest-radius-sm);
        color: #cbd5e1;
        font-size: 14px; font-weight: 500;
        cursor: pointer;
        border-left: 3px solid transparent;
}
.everest-sidebar-link:hover { background: rgba(245, 158, 11, 0.10); color: #fff; text-decoration: none; }
.everest-sidebar-link.active { background: rgba(245, 158, 11, 0.18); color: #fff; border-left-color: var(--ev-gold); }
.everest-sidebar-link.active:hover { background: rgba(245, 158, 11, 0.22); }
.everest-sidebar-foot { margin-top: auto; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.10); }
.everest-main { padding: 28px; min-width: 0; background: var(--everest-muted-bg); }
.everest-main-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.everest-main-head h2 { margin: 0; }

/* ---- Upload zone (navy border) ---- */
.everest-dropzone {
        border: 2px dashed var(--ev-blue);
        border-radius: var(--everest-radius);
        background: #f0f6ff;
        padding: 36px 20px;
        text-align: center;
        cursor: pointer;
        transition: background-color 0.15s, border-color 0.15s;
}
.everest-dropzone:hover, .everest-dropzone.everest-drag { background: #dbeafe; border-color: var(--ev-navy); }
.everest-dropzone-icon {
        width: 44px; height: 44px;
        border-radius: 50%;
        background: #fff;
        color: var(--ev-blue);
        display: inline-flex; align-items: center; justify-content: center;
        margin-bottom: 10px;
        font-size: 22px; font-weight: 700;
}
.everest-dropzone-title { font-weight: 600; margin-bottom: 4px; }
.everest-dropzone-hint { font-size: 13px; color: var(--everest-text-muted); }
.everest-dropzone input[type=file] { display: none; }

/* ---- Reports table ---- */
.everest-table-wrap { overflow-x: auto; border: 1px solid var(--everest-border); border-radius: var(--everest-radius); }
.everest-table { width: 100%; border-collapse: collapse; font-size: 14px; background: #fff; }
.everest-table th, .everest-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--everest-border); }
.everest-table th { background: var(--ev-navy); color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }
.everest-table tbody tr:last-child td { border-bottom: 0; }
.everest-table tbody tr:hover { background: #f8fafc; }
.everest-pill { display: inline-flex; align-items: center; gap: 6px; padding: 3px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.everest-pill .dot { width: 8px; height: 8px; border-radius: 50%; }
.everest-pill-low  { background: #d1fae5; color: #065f46; }
.everest-pill-low  .dot { background: var(--everest-success); }
.everest-pill-mid  { background: var(--everest-warn-bg); color: #92400e; }
.everest-pill-mid  .dot { background: var(--everest-warn); }
.everest-pill-high { background: var(--everest-danger-bg); color: #991b1b; }
.everest-pill-high .dot { background: var(--everest-danger); }
.everest-empty-row td { text-align: center; color: var(--everest-text-soft); padding: 40px 20px; }

/* Plan badges (used in reports table + admin) */
.everest-plan-pill {
        display: inline-flex; padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
}
.everest-plan-pill-free   { background: #e2e8f0; color: #475569; }
.everest-plan-pill-single { background: #dbeafe; color: #1e3a8a; }
.everest-plan-pill-pro    { background: #fde68a; color: #92400e; }

/* ---- Result card ---- */
.everest-result { display: grid; grid-template-columns: 1fr; gap: 16px; }
.everest-result-head { display: flex; align-items: baseline; gap: 16px; }
.everest-result-big { font-size: 56px; font-weight: 800; color: var(--ev-navy); line-height: 1; }
.everest-result-label { font-size: 14px; color: var(--everest-text-muted); }
.everest-result-sub { font-size: 13px; color: var(--everest-text-soft); margin-top: 4px; }
.everest-result-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.everest-match-row { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--everest-border); }
.everest-match-row:last-child { border-bottom: 0; }
.everest-match-dot { width: 12px; height: 12px; border-radius: 50%; flex: none; }
.everest-match-text { flex: 1; min-width: 0; }
.everest-match-text .name { font-weight: 600; font-size: 13px; }
.everest-match-text .desc { font-size: 12px; color: var(--everest-text-muted); }
.everest-match-meta { font-size: 12px; color: var(--everest-text-muted); text-align: right; }
.everest-match-meta .pct { font-weight: 700; color: var(--everest-text); font-size: 14px; }
.everest-source-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.everest-source-card { border: 1px solid var(--everest-border); border-radius: var(--everest-radius-sm); padding: 12px; }
.everest-source-card .num { font-size: 22px; font-weight: 700; }
.everest-source-card .lbl { font-size: 12px; color: var(--everest-text-muted); }
.everest-source-row { display: flex; align-items: center; gap: 8px; padding: 8px 0; border-bottom: 1px solid var(--everest-border); font-size: 13px; }
.everest-source-row:last-child { border-bottom: 0; }
.everest-source-row .rank { color: var(--everest-text-soft); width: 18px; }
.everest-source-row .src-dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.everest-source-row .name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.everest-source-row .pct { font-weight: 600; }

/* AI block — paid shows gold number; locked shows upgrade box. */
.everest-ai-block { display: flex; align-items: baseline; gap: 12px; }
.everest-ai-block .num { font-size: 32px; font-weight: 800; color: var(--ev-gold); }
.everest-ai-block .lbl { font-size: 14px; font-weight: 600; }
.everest-ai-block .desc { font-size: 12px; color: var(--everest-text-muted); margin-top: 4px; }

.everest-ai-locked {
        background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%);
        border: 1px dashed var(--ev-gold);
        border-radius: var(--everest-radius-sm);
        padding: 16px;
        display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
}
.everest-ai-locked .lock-icon { font-size: 24px; }
.everest-ai-locked .lock-text { flex: 1; min-width: 220px; }
.everest-ai-locked .lock-text strong { color: #92400e; display: block; }
.everest-ai-locked .lock-text span { color: #78350f; font-size: 13px; }

/* ---- Progress bar ---- */
.everest-progress { height: 8px; background: var(--everest-border); border-radius: 999px; overflow: hidden; }
.everest-progress-bar { height: 100%; background: var(--ev-blue); border-radius: 999px; transition: width 0.2s linear; }
.everest-processing { text-align: center; padding: 36px 20px; }
.everest-processing .title { font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.everest-processing .hint { font-size: 13px; color: var(--everest-text-muted); margin-bottom: 18px; }

/* ---- Pricing ---- */
.everest-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.everest-price-card { border: 1px solid var(--everest-border); border-radius: var(--everest-radius); padding: 24px; background: #fff; position: relative; box-shadow: var(--everest-shadow); }
.everest-price-card-popular { border-color: var(--ev-gold); box-shadow: 0 10px 30px rgba(245, 158, 11, 0.22); transform: translateY(-4px); }
.everest-popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--ev-gold); color: #1f2937; font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: 999px; letter-spacing: 0.06em; }
.everest-price-card header { margin-bottom: 16px; }
.everest-price-card header h3 { margin: 0 0 6px; }
.everest-price { display: flex; align-items: baseline; gap: 4px; }
.everest-price-amt { font-size: 30px; font-weight: 800; color: var(--ev-navy); }
.everest-price-per { font-size: 13px; color: var(--everest-text-muted); }
.everest-price-tagline { font-size: 13px; color: var(--everest-text-muted); margin: 6px 0 0; }
.everest-price-card ul { margin: 0 0 18px; }
.everest-price-card ul li { padding: 6px 0 6px 22px; position: relative; font-size: 14px; color: var(--everest-text); }
.everest-price-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--everest-success); font-weight: 700; }
.everest-price-card ul li.everest-no { color: var(--everest-text-soft); }
.everest-price-card ul li.everest-no::before { content: "✕"; color: var(--everest-text-soft); }

.everest-section-head { text-align: center; margin: 28px 0 6px; }
.everest-section-head h2 { font-size: 30px; color: var(--ev-navy); }
.everest-section-head p { color: var(--everest-text-muted); }

/* ---- FAQ ---- */
.everest-faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.everest-faq-item { border: 1px solid var(--everest-border); border-radius: var(--everest-radius-sm); background: #fff; padding: 0 16px; box-shadow: var(--everest-shadow); }
.everest-faq-item summary { padding: 14px 0; font-weight: 600; cursor: pointer; list-style: none; position: relative; padding-right: 24px; }
.everest-faq-item summary::-webkit-details-marker { display: none; }
.everest-faq-item summary::after { content: "+"; position: absolute; right: 0; color: var(--ev-gold); font-weight: 700; font-size: 18px; }
.everest-faq-item[open] summary::after { content: "−"; }
.everest-faq-item p { padding: 0 0 14px; color: var(--everest-text-muted); font-size: 14px; }

/* ---- Account ---- */
.everest-account-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.everest-plan-tag { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; background: var(--everest-muted-bg); border: 1px solid var(--everest-border); border-radius: 999px; font-size: 13px; font-weight: 600; }

/* ---- Affiliate ---- */
.everest-affiliate-promo { background: var(--ev-navy); color: #fff; border-radius: var(--everest-radius); padding: 28px; border-left: 4px solid var(--ev-gold); }
.everest-affiliate-promo h2 { color: #fff; }
.everest-affiliate-promo p { color: #cbd5e1; }

/* ---- Toast ---- */
.everest-toast-wrap { position: fixed; right: 18px; bottom: 18px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
.everest-toast { padding: 12px 16px; border-radius: var(--everest-radius-sm); background: var(--ev-navy); color: #fff; font-size: 13px; box-shadow: var(--everest-shadow-lg); pointer-events: auto; max-width: 320px; }
.everest-toast-success { background: var(--everest-success); }
.everest-toast-error   { background: var(--everest-danger); }
.everest-toast-info    { background: var(--ev-blue); }
.everest-toast-gold    { background: var(--ev-gold); color: #1f2937; }

/* ================== PlanChooser modal ================== */
.everest-modal-overlay {
        position: fixed; inset: 0;
        background: rgba(10, 37, 64, 0.55);
        backdrop-filter: blur(2px);
        z-index: 1000;
        display: flex; align-items: center; justify-content: center;
        padding: 20px;
}
.everest-modal {
        background: #fff; border-radius: var(--everest-radius);
        max-width: 980px; width: 100%; max-height: 92vh; overflow-y: auto;
        box-shadow: 0 30px 80px rgba(10, 37, 64, 0.30);
        border-top: 4px solid var(--ev-gold);
}
.everest-modal-head {
        background: var(--ev-navy); color: #fff;
        padding: 18px 24px;
        display: flex; justify-content: space-between; align-items: center;
}
.everest-modal-head h2 { color: #fff; margin: 0; font-size: 18px; }
.everest-modal-head .everest-modal-close {
        background: transparent; border: 0; color: #cbd5e1;
        font-size: 22px; cursor: pointer; padding: 0 8px; line-height: 1;
}
.everest-modal-head .everest-modal-close:hover { color: var(--ev-gold); }
.everest-modal-body { padding: 24px; }
.everest-modal-subtitle { color: var(--everest-text-muted); margin: 0 0 18px; font-size: 14px; }
.everest-planchooser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.everest-plan-card {
        border: 1px solid var(--everest-border); border-radius: var(--everest-radius);
        padding: 20px; background: #fff; position: relative; cursor: pointer;
        transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.everest-plan-card:hover { border-color: var(--ev-blue); box-shadow: var(--everest-shadow); transform: translateY(-2px); }
.everest-plan-card.everest-plan-card-popular { border-color: var(--ev-gold); box-shadow: 0 10px 30px rgba(245, 158, 11, 0.18); }
.everest-plan-card.everest-plan-card-disabled { opacity: 0.5; cursor: not-allowed; filter: grayscale(40%); }
.everest-plan-card.everest-plan-card-disabled:hover { border-color: var(--everest-border); transform: none; box-shadow: none; }
.everest-plan-card .everest-plan-name { font-size: 17px; font-weight: 700; color: var(--ev-navy); }
.everest-plan-card .everest-plan-price { font-size: 26px; font-weight: 800; color: var(--ev-navy); margin-top: 6px; }
.everest-plan-card .everest-plan-per { font-size: 13px; color: var(--everest-text-muted); }
.everest-plan-card .everest-plan-tag { font-size: 12px; color: var(--everest-text-muted); margin: 8px 0 12px; min-height: 32px; }
.everest-plan-card ul { margin: 0 0 14px; }
.everest-plan-card ul li { padding: 4px 0 4px 20px; position: relative; font-size: 13px; color: var(--everest-text); }
.everest-plan-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--everest-success); font-weight: 700; }
.everest-plan-card ul li.everest-no { color: var(--everest-text-soft); }
.everest-plan-card ul li.everest-no::before { content: "✕"; color: var(--everest-text-soft); }
.everest-plan-card .everest-plan-cta { width: 100%; }
.everest-plan-disabled-banner {
        background: var(--everest-warn-bg); color: #92400e;
        font-size: 11px; font-weight: 700; text-transform: uppercase;
        padding: 4px 10px; border-radius: 999px; display: inline-block; margin-bottom: 8px;
}

/* ================== MoMo payment panel ================== */
.everest-momo-panel { background: #fff; border: 1px solid var(--everest-border); border-radius: var(--everest-radius); padding: 24px; max-width: 540px; margin: 0 auto; }
.everest-momo-panel h3 { color: var(--ev-navy); margin: 0 0 6px; }
.everest-momo-panel .everest-momo-sub { color: var(--everest-text-muted); font-size: 13px; margin: 0 0 18px; }
.everest-momo-instructions {
        background: var(--ev-muted); border-left: 4px solid var(--ev-gold);
        border-radius: 8px; padding: 14px 16px; margin-bottom: 18px;
}
.everest-momo-instructions p { margin: 0 0 6px; font-size: 14px; color: var(--everest-text); }
.everest-momo-instructions p:last-child { margin-bottom: 0; }
.everest-momo-instructions strong { color: var(--ev-navy); }
.everest-momo-instructions .everest-momo-number { color: var(--ev-gold); font-weight: 800; font-size: 16px; }
.everest-momo-instructions .everest-momo-ref { color: var(--ev-gold); font-weight: 800; font-family: ui-monospace, "SF Mono", Menlo, monospace; }
.everest-momo-note { color: var(--everest-text-muted); font-size: 12px; margin-top: 12px; }
.everest-momo-pending {
        background: var(--everest-warn-bg); color: #92400e;
        border-radius: 8px; padding: 14px 16px; font-size: 14px;
}

/* ---- v4.0 — Paystack panel + return banners ---- */
.everest-paystack-panel .everest-paystack-summary {
        background: var(--ev-muted); border-radius: var(--everest-radius-sm);
        padding: 12px 14px; font-size: 14px; color: var(--everest-text);
}
.everest-paystack-panel .everest-paystack-summary strong { color: var(--ev-navy); }
.everest-paystack-cta {
        /* Paystack brand: blue #0277BD + green #00C3F7 accents. */
        background: linear-gradient(135deg, #0277BD 0%, #00C3F7 100%);
        color: #fff; border: none; padding: 14px 18px; font-size: 15px;
        font-weight: 700; border-radius: var(--everest-radius-sm);
        cursor: pointer; box-shadow: 0 4px 14px rgba(2, 119, 189, 0.28);
        transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.everest-paystack-cta:hover:not(:disabled) {
        transform: translateY(-1px); box-shadow: 0 6px 18px rgba(2, 119, 189, 0.36); filter: brightness(1.05);
}
.everest-paystack-cta:active:not(:disabled) { transform: translateY(0); }
.everest-paystack-cta:disabled { opacity: 0.7; cursor: progress; }
.everest-paystack-note {
        color: var(--everest-text-muted); font-size: 12px; margin: 12px 0 14px; line-height: 1.45;
}
.everest-paystack-brand {
        display: flex; align-items: center; justify-content: center; gap: 4px;
        color: #0277BD; font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
        padding-top: 6px; border-top: 1px dashed var(--everest-border); margin-top: 6px;
}
.everest-paystack-brand .everest-paystack-lock { color: #00C3F7; display: inline-flex; }

.everest-paystack-banner-card { padding: 14px 18px; margin-bottom: 14px; border-radius: var(--everest-radius); font-size: 14px; }
.everest-paystack-banner-card .everest-paystack-banner-row {
        display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
}
.everest-paystack-banner-ok { background: var(--everest-success-bg); color: #065f46; border: 1px solid #6ee7b7; border-left: 4px solid var(--everest-success); }
.everest-paystack-banner-warn { background: var(--everest-warn-bg); color: #92400e; border: 1px solid #fcd34d; border-left: 4px solid var(--everest-warn); }
.everest-paystack-banner-error { background: var(--everest-danger-bg); color: #991b1b; border: 1px solid #fca5a5; border-left: 4px solid var(--everest-danger); }
.everest-paystack-banner-card strong { color: inherit; }
.everest-paystack-banner-card .everest-paystack-banner-sub { margin: 8px 0 0; font-size: 13px; opacity: 0.85; line-height: 1.5; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
        .everest-dashboard { grid-template-columns: 1fr; }
        .everest-sidebar { position: static; max-height: none; flex-direction: row; flex-wrap: wrap; gap: 6px; padding: 12px; }
        .everest-sidebar-brand { display: none; }
        .everest-sidebar-link { padding: 8px 12px; }
        .everest-sidebar-foot { width: 100%; border-top: 0; padding-top: 0; margin-top: 0; }
        .everest-pricing-grid, .everest-planchooser-grid { grid-template-columns: 1fr; }
        .everest-price-card-popular, .everest-plan-card-popular { transform: none; }
        .everest-footer .everest-footer-grid { grid-template-columns: 1fr 1fr; }
        .everest-account-grid { grid-template-columns: 1fr; }
        .everest-source-summary { grid-template-columns: 1fr; }
        .everest-header-nav { display: none; }
        .everest-hero h1 { font-size: 32px; }
}
@media (max-width: 560px) {
        .everest-main { padding: 18px; }
        .everest-footer .everest-footer-grid { grid-template-columns: 1fr; }
        .everest-header-actions .everest-btn-outline { display: none; }
        .everest-result-big { font-size: 44px; }
}

/* ---- Standalone shortcode sections (pricing/faq) ---- */
.everest-pricing-section, .everest-faq-section { min-height: 100vh; display: flex; flex-direction: column; }
.everest-pricing-section .everest-container, .everest-faq-section .everest-container { padding-top: 30px; padding-bottom: 30px; flex: 1; }
