/* ==========================================================================
   INEHub – Pocket Option Review 2026
   File: /src/styles/pocket-option-review.css
   ========================================================================== */

/* ─── DESIGN TOKENS ─── */
:root {
    --bg:          #080b13;
    --bg2:         #0c0f1c;
    --surface:     #0f1322;
    --surface2:    #141828;
    --surface3:    #191d2f;
    --border:      #1c2136;
    --border-hi:   #272d48;
    --green:       #00e676;
    --green-dark:  #00b359;
    --green-glow:  rgba(0, 230, 118, 0.15);
    --blue:        #4a9eff;
    --red:         #ff4d6d;
    --amber:       #ffb300;
    --purple:      #b47aff;
    --text:        #eef0f8;
    --muted:       #6e7590;
    --body-text:   #aab4cc;
    --faint:       #2a3050;
    --radius-sm:   8px;
    --radius:      12px;
    --radius-lg:   18px;
    --shadow-card: 0 4px 24px rgba(0,0,0,0.35);
    --shadow-glow: 0 0 40px rgba(0, 230, 118, 0.08);
    --transition:  0.2s cubic-bezier(.4,0,.2,1);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; }
img { max-width: 100%; display: block; }

/* ─── LAYOUT ─── */
.po-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes growBar {
    from { width: 0 !important; }
}
@keyframes pulse-ring {
    0%   { box-shadow: 0 0 0 0 rgba(0,230,118,0.4); }
    70%  { box-shadow: 0 0 0 12px rgba(0,230,118,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,230,118,0); }
}
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

.anim-fadeup { animation: fadeUp 0.6s ease both; }

/* ─── HERO ─── */
.po-hero {
    background: linear-gradient(140deg, #0b0f20 0%, #071510 50%, #0b0f20 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 280px 1fr;
    margin-bottom: 28px;
    box-shadow: var(--shadow-glow), var(--shadow-card);
    position: relative;
}

.po-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green), var(--blue), transparent);
}

/* Hero – Left Badge Column */
.hero-badge-col {
    background: rgba(0,0,0,0.3);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 44px 28px;
    gap: 22px;
}

.broker-logo-box {
    width: 160px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.broker-logo-box img {
    max-width: 160px;
    max-height: 64px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

/* Score Donut */
.score-donut {
    position: relative;
    width: 110px;
    height: 110px;
}
.score-donut svg { transform: rotate(-90deg); }
.score-donut circle { fill: none; }
.score-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.score-number {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--green);
    line-height: 1;
    letter-spacing: -1px;
}
.score-tag {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--muted);
    margin-top: 2px;
    text-align: center;
}

/* Trust Chips */
.trust-chip-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.t-chip {
    background: rgba(0,230,118,0.06);
    border: 1px solid rgba(0,230,118,0.18);
    border-radius: 6px;
    padding: 7px 12px;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 7px;
}
.t-chip i { font-size: 0.8rem; }

/* Hero – Right Content */
.hero-content-col {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 26px;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,230,118,0.08);
    border: 1px solid rgba(0,230,118,0.2);
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    width: fit-content;
}
.hero-h1 {
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 10px;
}
.hero-h1 .hi { color: var(--green); }
.hero-tagline {
    color: var(--muted);
    font-size: 0.98rem;
    margin-bottom: 18px;
}
.hero-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.h-meta {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.77rem;
    font-weight: 600;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
}
.h-meta i { color: var(--green); }

/* Promo Bar */
.promo-bar {
    background: #050e09;
    border: 1px solid rgba(0,230,118,0.22);
    border-left: 4px solid var(--green);
    border-radius: var(--radius-sm);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.promo-icon-wrap {
    width: 46px;
    height: 46px;
    background: rgba(0,230,118,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--green);
    flex-shrink: 0;
    animation: pulse-ring 2.5s infinite;
}
.promo-info { flex: 1; }
.promo-eyebrow {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    display: block;
    margin-bottom: 4px;
}
.promo-code-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.promo-code-text {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--amber);
    letter-spacing: 2px;
}
.copy-code-btn {
    background: var(--surface3);
    border: 1px solid var(--border-hi);
    color: var(--muted);
    padding: 4px 11px;
    border-radius: 5px;
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}
.copy-code-btn:hover { background: var(--border-hi); color: var(--text); }
.copy-code-btn.copied { background: var(--green); color: #050810; border-color: var(--green); }
.promo-cta-link {
    background: linear-gradient(135deg, var(--green) 0%, #00c85a 100%);
    color: #050810 !important;
    font-weight: 900;
    font-size: 0.93rem;
    padding: 13px 24px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    flex-shrink: 0;
}
.promo-cta-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,230,118,0.4);
    color: #050810 !important;
}

/* ─── STATS GRID ─── */
.po-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}
.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    opacity: 0;
    transition: opacity var(--transition);
}
.stat-card:hover { background: var(--surface2); border-color: var(--border-hi); transform: translateY(-3px); }
.stat-card:hover::before { opacity: 1; }
.stat-icon-wrap {
    width: 42px;
    height: 42px;
    background: var(--green-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--green);
    margin: 0 auto 12px;
}
.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--muted);
    margin-bottom: 5px;
}
.stat-val {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1.2;
}
.stat-sub { font-size: 0.72rem; color: var(--muted); margin-top: 3px; }

/* ─── TOC ─── */
.po-toc {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-bottom: 28px;
}
.toc-title {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.toc-title i { color: var(--green); }
.toc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.toc-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--muted);
    background: var(--surface2);
    border: 1px solid transparent;
    transition: var(--transition);
}
.toc-link i { color: var(--green); font-size: 0.75rem; flex-shrink: 0; }
.toc-link:hover { color: var(--text); border-color: var(--border-hi); background: var(--surface3); }
.toc-link.active {
    color: var(--green);
    border-color: rgba(0,230,118,0.35);
    background: rgba(0,230,118,0.06);
}
.toc-link.active i { color: var(--green); }

/* ─── SECTION WRAPPER ─── */
.po-section { margin-bottom: 36px; }

/* ─── SECTION HEADING ─── */
.section-eyebrow {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.section-eyebrow::before {
    content: '';
    width: 18px;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
}
.section-h2 {
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: -0.4px;
    margin-bottom: 20px;
    color: var(--text);
}

/* ─── BODY TEXT ─── */
.po-body {
    font-size: 1rem;
    color: var(--body-text);
    line-height: 1.78;
}
.po-body p { margin-bottom: 16px; }
.po-body p:last-child { margin-bottom: 0; }
.po-body a {
    color: var(--green);
    font-weight: 600;
    border-bottom: 1px dashed rgba(0,230,118,0.4);
}
.po-body a:hover { color: #fff; border-bottom-color: rgba(255,255,255,0.4); }
.po-body strong { color: var(--text); font-weight: 700; }

/* ─── SPLIT LAYOUT ─── */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
}
.video-embed {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 12px 36px rgba(0,0,0,0.4);
    aspect-ratio: 16/9;
    position: relative;
}
.video-embed iframe { width: 100%; height: 100%; border: none; display: block; }

/* ─── HIGHLIGHT BOX ─── */
.highlight-box {
    background: linear-gradient(135deg, rgba(0,230,118,0.05) 0%, rgba(74,158,255,0.05) 100%);
    border: 1px solid rgba(0,230,118,0.15);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 20px 0;
    position: relative;
}
.highlight-box::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--green), var(--blue));
    border-radius: 3px 0 0 3px;
}
.highlight-box p { margin: 0; font-size: 0.95rem; color: var(--body-text); line-height: 1.7; }

/* ─── AI TRADING CARD ─── */
.ai-card {
    background: linear-gradient(135deg, #0d1030 0%, #0a1a10 100%);
    border: 1px solid rgba(180, 122, 255, 0.25);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin: 28px 0;
    position: relative;
    overflow: hidden;
}
.ai-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), var(--blue), var(--green));
}
.ai-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.ai-icon {
    width: 52px;
    height: 52px;
    background: rgba(180,122,255,0.12);
    border: 1px solid rgba(180,122,255,0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--purple);
    animation: floatY 3s ease-in-out infinite;
    flex-shrink: 0;
}
.ai-card-title { font-size: 1.15rem; font-weight: 900; color: var(--text); margin-bottom: 3px; }
.ai-card-sub { font-size: 0.8rem; color: var(--purple); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.ai-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 20px 0;
}
.ai-feature {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(180,122,255,0.15);
    border-radius: var(--radius-sm);
    padding: 16px 14px;
    text-align: center;
}
.ai-feature-icon { font-size: 1.4rem; margin-bottom: 8px; }
.ai-feature-name { font-size: 0.82rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.ai-feature-desc { font-size: 0.75rem; color: var(--muted); line-height: 1.5; }
.ai-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.ai-badge {
    background: rgba(180,122,255,0.1);
    border: 1px solid rgba(180,122,255,0.25);
    color: var(--purple);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ─── EVALUATION BARS ─── */
.eval-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}
.eval-rows { display: flex; flex-direction: column; }
.eval-row {
    display: grid;
    grid-template-columns: 220px 1fr 70px;
    align-items: center;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.eval-row:last-child { border-bottom: none; }
.eval-name { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.eval-sub { font-size: 0.72rem; color: var(--muted); font-weight: 400; display: block; margin-top: 1px; }
.bar-track {
    background: var(--surface3);
    height: 7px;
    border-radius: 99px;
    overflow: hidden;
    position: relative;
}
.bar-fill {
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    position: relative;
    animation: growBar 1.4s cubic-bezier(.4,0,.2,1) both;
}
.bar-fill::after {
    content: '';
    position: absolute;
    right: -1px; top: 50%;
    transform: translateY(-50%);
    width: 11px; height: 11px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0,230,118,0.7);
}
.eval-score { text-align: right; font-weight: 900; font-size: 0.9rem; color: var(--green); }

/* ─── INFO CARDS ─── */
.info-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0;
}
.info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    transition: var(--transition);
}
.info-card:hover { background: var(--surface2); border-color: var(--border-hi); }
.info-card-icon { font-size: 1.3rem; color: var(--green); margin-bottom: 12px; }
.info-card-title { font-size: 0.9rem; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.info-card p { font-size: 0.85rem; color: var(--body-text); line-height: 1.6; margin: 0; }

/* ─── PROS & CONS ─── */
.pc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.pc-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}
.pc-card.pros { border-top: 3px solid var(--green); }
.pc-card.cons { border-top: 3px solid var(--red); }
.pc-card-title {
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 9px;
}
.pc-card.pros .pc-card-title { color: var(--green); }
.pc-card.cons .pc-card-title { color: var(--red); }
.pc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pc-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 0.9rem;
    color: var(--body-text);
    line-height: 1.6;
}
.pc-bullet {
    flex-shrink: 0;
    width: 18px; height: 18px;
    border-radius: 50%;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
}
.pros .pc-bullet { background: rgba(0,230,118,0.12); border: 1.5px solid var(--green); color: var(--green); }
.cons .pc-bullet { background: rgba(255,77,109,0.1); border: 1.5px solid var(--red); color: var(--red); }
.pc-cta { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border); }
.pc-cta a {
    font-weight: 800;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--green);
}
.pc-cta a:hover { color: #fff; }

/* ─── SPEC TABLE ─── */
.spec-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}
.spec-table { width: 100%; border-collapse: collapse; background: var(--surface); font-size: 0.91rem; }
.spec-table tr { transition: background var(--transition); }
.spec-table tr:hover { background: var(--surface2); }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table td {
    padding: 14px 22px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
    line-height: 1.55;
}
.spec-table td:first-child {
    width: 28%;
    font-weight: 700;
    color: var(--muted);
    background: rgba(255,255,255,0.015);
    border-right: 1px solid var(--border);
    white-space: nowrap;
}
.spec-table td:last-child { color: var(--body-text); }
.spec-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--green);
    color: #050810;
    font-weight: 800;
    font-size: 0.74rem;
    padding: 4px 12px;
    border-radius: 5px;
    margin-left: 10px;
    transition: var(--transition);
}
.spec-badge:hover { box-shadow: 0 3px 10px rgba(0,230,118,0.35); color: #050810; }

/* ─── PLATFORM CARDS ─── */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 20px 0;
}
.platform-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition);
}
.platform-card:hover { background: var(--surface2); border-color: var(--border-hi); transform: translateY(-2px); }
.platform-card-icon { font-size: 1.8rem; margin-bottom: 12px; }
.platform-card-name { font-size: 0.95rem; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.platform-card-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.55; }
.platform-os-chips { display: flex; flex-wrap: wrap; gap: 5px; justify-content: center; margin-top: 12px; }
.os-chip {
    background: var(--surface3);
    border: 1px solid var(--border-hi);
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 4px;
}

/* ─── ACCOUNT LEVEL TABLE ─── */
.level-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}
.level-table { width: 100%; border-collapse: collapse; font-size: 0.86rem; background: var(--surface); }
.level-table thead th {
    padding: 12px 16px;
    text-align: left;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--muted);
    background: var(--surface2);
    border-bottom: 1px solid var(--border);
}
.level-table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--body-text);
    vertical-align: middle;
}
.level-table tbody tr:last-child td { border-bottom: none; }
.level-table tbody tr:hover td { background: var(--surface2); }
.level-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 800;
    font-size: 0.82rem;
    padding: 4px 12px;
    border-radius: 20px;
}
.level-stranger   { background: rgba(100,100,120,0.15); color: #8a8aaa; border: 1px solid #333; }
.level-newbie     { background: rgba(74,158,255,0.12);  color: #4a9eff; border: 1px solid #1a4a80; }
.level-beginner   { background: rgba(0,188,212,0.12);   color: #00bcd4; border: 1px solid #004d5e; }
.level-experienced{ background: rgba(103,230,118,0.12); color: #67e676; border: 1px solid #1a5e20; }
.level-master     { background: rgba(255,179,0,0.12);   color: #ffb300; border: 1px solid #7a5200; }
.level-pro        { background: rgba(255,87,34,0.12);   color: #ff5722; border: 1px solid #7a2210; }
.level-guru       { background: rgba(156,39,176,0.15);  color: #ce93d8; border: 1px solid #4a1260; }

/* ─── FAQ ACCORDION ─── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(0,230,118,0.3); }
.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    cursor: pointer;
    text-align: left;
    color: var(--text);
    font-size: 0.93rem;
    font-weight: 700;
    transition: var(--transition);
}
.faq-q:hover { background: var(--surface2); }
.faq-q i { color: var(--green); font-size: 0.75rem; transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(.4,0,.2,1); }
.faq-a-inner {
    padding: 14px 20px 16px;
    font-size: 0.88rem;
    color: var(--body-text);
    line-height: 1.7;
    border-top: 1px solid var(--border);
}
.faq-a-inner a { color: var(--green); font-weight: 600; }

/* ─── SIGNALS BANNER ─── */
.signals-banner {
    background: radial-gradient(ellipse at 50% -20%, rgba(0,230,118,0.06) 0%, transparent 65%), var(--surface);
    border: 1px solid rgba(0,230,118,0.18);
    border-radius: var(--radius-lg);
    padding: 52px 44px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.signals-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.signals-banner h2 { font-size: 2rem; font-weight: 900; letter-spacing: -0.5px; margin-bottom: 10px; }
.signals-banner h2 .em { color: var(--green); }
.signals-sub { color: var(--muted); font-size: 0.97rem; max-width: 660px; margin: 0 auto 32px; line-height: 1.65; }
.how-box {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 30px;
    max-width: 680px;
    margin: 0 auto 30px;
    text-align: left;
}
.how-box-title {
    color: var(--green);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.how-steps { display: flex; flex-direction: column; gap: 13px; }
.how-step { display: flex; align-items: flex-start; gap: 13px; font-size: 0.9rem; color: var(--body-text); line-height: 1.6; }
.step-num {
    background: var(--green);
    color: #050810;
    font-weight: 900;
    font-size: 0.75rem;
    min-width: 24px; height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.how-step a { color: var(--green); font-weight: 700; }
.signals-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--green), #00b0ff);
    color: #050810 !important;
    font-weight: 900;
    font-size: 1.05rem;
    padding: 16px 38px;
    border-radius: 50px;
    margin-bottom: 26px;
    transition: var(--transition);
    box-shadow: 0 4px 22px rgba(0,230,118,0.22);
}
.signals-main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,230,118,0.38);
    color: #050810 !important;
}
.channel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 720px;
    margin: 0 auto;
}
.ch-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.86rem;
    transition: var(--transition);
    color: #fff;
}
.ch-btn:hover { filter: brightness(1.15); color: #fff; }
.ch-web { background: var(--surface3); border: 1px solid var(--border-hi); }
.ch-app { background: #43a047; }
.ch-tg  { background: #039be5; }

/* ─── EXPERT CARD ─── */
.expert-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
}

/* ─── MID CTA ─── */
.mid-cta-block { text-align: center; padding: 10px 0; }
.mid-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, #ff7300, #e91e63);
    color: #fff !important;
    font-weight: 900;
    font-size: 1rem;
    padding: 15px 32px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(255,50,50,0.2);
}
.mid-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 26px rgba(255,50,50,0.35);
    color: #fff !important;
}

/* ─── VERDICT GRID ─── */
.verdict-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 24px; }
.verdict-pane { border-radius: var(--radius-sm); padding: 22px; border: 1px solid var(--border); }
.verdict-pane.yes { background: rgba(0,230,118,0.03); border-left: 3px solid var(--green); }
.verdict-pane.no  { background: rgba(255,77,109,0.03); border-left: 3px solid var(--red); }
.verdict-pane h4 { font-size: 0.97rem; font-weight: 800; margin-bottom: 12px; }
.verdict-pane.yes h4 { color: var(--green); }
.verdict-pane.no  h4 { color: var(--red); }
.verdict-pane p { font-size: 0.87rem; color: #96a2bc; line-height: 1.62; margin-bottom: 10px; }
.verdict-pane p:last-child { margin-bottom: 0; }

/* ─── GEO BOX ─── */
.geo-box {
    margin-top: 22px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
}
.geo-box h3 { font-size: 0.95rem; font-weight: 800; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.geo-box h3 i { color: var(--blue); }
.geo-box p { font-size: 0.88rem; color: var(--body-text); line-height: 1.65; }

/* ─── COMPARISON TABLE ─── */
.compare-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.86rem; background: var(--surface); text-align: center; }
.compare-table thead th {
    padding: 14px 18px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--muted);
    background: var(--surface2);
    border-bottom: 1px solid var(--border);
}
.compare-table thead th:first-child { text-align: left; }
.compare-table thead th.highlight { color: var(--green); background: rgba(0,230,118,0.05); }
.compare-table thead th a {
    transition: var(--transition);
}
.compare-table thead th a:hover {
    color: var(--green) !important;
    opacity: 1;
}
.compare-table thead th.highlight a { color: var(--green); }
.compare-table thead th.highlight a:hover { color: #fff !important; }
.compare-table tbody td {
    padding: 13px 18px;
    border-bottom: 1px solid var(--border);
    color: var(--body-text);
    vertical-align: middle;
}
.compare-table tbody td:first-child { text-align: left; font-weight: 700; color: var(--text); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td { background: var(--surface2); }
.compare-table td.highlight { background: rgba(0,230,118,0.04); font-weight: 700; color: var(--text); }
.cmp-yes     { color: var(--green); font-size: 0.85rem; font-weight: 700; }
.cmp-no      { color: var(--red);   font-size: 0.85rem; }
.cmp-partial { color: var(--amber); font-size: 0.85rem; }

/* ─── FLOATING RIBBON ─── */
.float-ribbon {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 300;
    background: rgba(8,11,19,0.97);
    border-top: 1px solid rgba(0,230,118,0.2);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    backdrop-filter: blur(12px);
}
.float-ribbon.visible { transform: translateY(0); }
.float-ribbon-text { font-size: 0.87rem; color: var(--muted); }
.float-ribbon-text strong { color: var(--text); }
.float-ribbon-btn {
    background: var(--green);
    color: #050810 !important;
    font-weight: 900;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    transition: var(--transition);
}
.float-ribbon-btn:hover { box-shadow: 0 4px 16px rgba(0,230,118,0.35); color: #050810 !important; }
.ribbon-dismiss {
    position: absolute;
    right: 18px; top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--faint);
    cursor: pointer;
    font-size: 1rem;
    padding: 4px;
    transition: color var(--transition);
}
.ribbon-dismiss:hover { color: var(--muted); }

/* ─── DIVIDER ─── */
.po-divider { border: none; border-top: 1px solid var(--border); margin: 36px 0; }

/* ─── DISCLAIMER ─── */
.po-disclaimer { border-top: 1px solid var(--border); padding-top: 24px; margin-top: 8px; }
.po-disclaimer p { font-size: 0.78rem; color: #404660; line-height: 1.7; }
.po-disclaimer a { color: #505878; }
.po-disclaimer a:hover { color: var(--muted); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */

@media (max-width: 1050px) {
    .po-stats-grid { grid-template-columns: repeat(3, 1fr); }
    .toc-grid { grid-template-columns: repeat(2, 1fr); }
    .ai-features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
    .po-hero { grid-template-columns: 1fr; }
    .hero-badge-col {
        border-right: none;
        border-bottom: 1px solid var(--border);
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        padding: 24px 28px;
        justify-content: flex-start;
    }
    .split-layout { grid-template-columns: 1fr; }
    .info-cards-row { grid-template-columns: repeat(2, 1fr); }
    .platform-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    .po-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .toc-grid { grid-template-columns: 1fr 1fr; }
    .promo-bar { flex-direction: column; align-items: flex-start; }
    .promo-cta-link { width: 100%; justify-content: center; }
    .pc-grid, .verdict-grid, .channel-grid { grid-template-columns: 1fr; }
    .eval-row { grid-template-columns: 1fr 60px; }
    .eval-row .eval-name { grid-column: 1 / -1; margin-bottom: 2px; }
    .signals-banner { padding: 36px 22px; }
    .signals-banner h2 { font-size: 1.55rem; }
    .hero-content-col { padding: 26px 22px; }
    .hero-h1 { font-size: 1.85rem; }
    .ai-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .po-stats-grid { grid-template-columns: 1fr 1fr; }
    .info-cards-row, .platform-grid { grid-template-columns: 1fr; }
    .toc-grid { grid-template-columns: 1fr; }
    .spec-table td:first-child { width: 38%; }
    .hero-badge-col { flex-direction: column; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
}