/* ==========================================================================
   INEHub – Deriv Review 2026
   File: /src/styles/deriv-review.css
   ========================================================================== */

: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;
    --coral:       #ff6b6b;
    --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);
}

*, *::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; }

.drv-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 ─── */
.drv-hero {
    background: linear-gradient(140deg, #0b0f20 0%, #0d0b1a 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;
}

.drv-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--coral), var(--purple), transparent);
}

.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(--coral);
    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-chip-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.t-chip {
    background: rgba(255,107,107,0.07);
    border: 1px solid rgba(255,107,107,0.2);
    border-radius: 6px;
    padding: 7px 12px;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--coral);
    display: flex;
    align-items: center;
    gap: 7px;
}
.t-chip i { font-size: 0.8rem; }

/* Hero Right */
.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(255,107,107,0.08);
    border: 1px solid rgba(255,107,107,0.2);
    color: var(--coral);
    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(--coral); }
.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(--coral); }

/* Promo Bar */
.promo-bar {
    background: #100a0a;
    border: 1px solid rgba(255,107,107,0.22);
    border-left: 4px solid var(--coral);
    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(255,107,107,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--coral);
    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-reg-text {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    display: block;
    margin-top: 2px;
}
.promo-cta-link {
    background: linear-gradient(135deg, var(--coral) 0%, #ff3d3d 100%);
    color: #fff !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(255,107,107,0.4);
    color: #fff !important;
}

/* ─── STATS GRID ─── */
.drv-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(--coral), var(--purple));
    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: rgba(255,107,107,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--coral);
    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 ─── */
.drv-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(--coral); }
.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);
    cursor: pointer;
}
.toc-link i { color: var(--coral); 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(--coral);
    border-color: rgba(255,107,107,0.35);
    background: rgba(255,107,107,0.06);
}

/* ─── SECTION ─── */
.drv-section { margin-bottom: 36px; }

.section-eyebrow {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--coral);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.section-eyebrow::before {
    content: '';
    width: 18px;
    height: 2px;
    background: var(--coral);
    border-radius: 2px;
}
.section-h2 {
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: -0.4px;
    margin-bottom: 20px;
    color: var(--text);
}

.drv-body { font-size: 1rem; color: var(--body-text); line-height: 1.78; }
.drv-body p { margin-bottom: 16px; }
.drv-body p:last-child { margin-bottom: 0; }
.drv-body a { color: var(--coral); font-weight: 600; border-bottom: 1px dashed rgba(255,107,107,0.4); }
.drv-body a:hover { color: #fff; border-bottom-color: rgba(255,255,255,0.4); }
.drv-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;
}
.video-embed iframe { width: 100%; height: 100%; border: none; display: block; }

/* ─── HIGHLIGHT BOX ─── */
.highlight-box {
    background: linear-gradient(135deg, rgba(255,107,107,0.05) 0%, rgba(180,122,255,0.05) 100%);
    border: 1px solid rgba(255,107,107,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(--coral), var(--purple));
    border-radius: 3px 0 0 3px;
}
.highlight-box p { margin: 0; font-size: 0.95rem; color: var(--body-text); line-height: 1.7; }

/* ─── SYNTHETIC INDICES FEATURE BOX ─── */
.synth-card {
    background: linear-gradient(135deg, #100a1a 0%, #0a1020 100%);
    border: 1px solid rgba(180,122,255,0.25);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin: 28px 0;
    position: relative;
    overflow: hidden;
}
.synth-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--coral), var(--purple), var(--blue));
}
.synth-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}
.synth-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;
}
.synth-title { font-size: 1.15rem; font-weight: 900; color: var(--text); margin-bottom: 3px; }
.synth-sub { font-size: 0.8rem; color: var(--purple); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.synth-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 20px 0;
}
.synth-item {
    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;
}
.synth-item-icon { font-size: 1.4rem; margin-bottom: 8px; }
.synth-item-name { font-size: 0.82rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.synth-item-desc { font-size: 0.75rem; color: var(--muted); line-height: 1.5; }
.synth-badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.synth-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; }
.bar-fill {
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--purple), var(--coral));
    animation: growBar 1.4s cubic-bezier(.4,0,.2,1) both;
    position: relative;
}
.bar-fill::after {
    content: '';
    position: absolute;
    right: -1px; top: 50%;
    transform: translateY(-50%);
    width: 11px; height: 11px;
    background: var(--coral);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255,107,107,0.7);
}
.eval-score { text-align: right; font-weight: 900; font-size: 0.9rem; color: var(--coral); }

/* ─── 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(--coral); 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(--coral); }
.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(--coral);
    color: #fff;
    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(255,107,107,0.35); color: #fff; }

/* ─── 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; }

/* ─── FAQ ─── */
.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(255,107,107,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(--coral); 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(--coral); font-weight: 600; }

/* ─── SIGNALS BANNER ─── */
.signals-banner {
    background: radial-gradient(ellipse at 50% -20%, rgba(255,107,107,0.06) 0%, transparent 65%), var(--surface);
    border: 1px solid rgba(255,107,107,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(--coral), transparent);
}
.signals-banner h2 { font-size: 2rem; font-weight: 900; letter-spacing: -0.5px; margin-bottom: 10px; }
.signals-banner h2 .em { color: var(--coral); }
.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(--coral); 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(--coral); color: #fff; 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(--coral); font-weight: 700; }
.signals-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--coral), var(--purple));
    color: #fff !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(255,107,107,0.22);
}
.signals-main-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,107,107,0.38); color: #fff !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-block { text-align: center; padding: 10px 0; }
.mid-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, var(--coral), #c0392b);
    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,107,107,0.2);
}
.mid-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 26px rgba(255,107,107,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; }

/* ─── 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(--coral); background: rgba(255,107,107,0.05); }
.compare-table thead th a { transition: var(--transition); }
.compare-table thead th a:hover { color: var(--coral) !important; }
.compare-table thead th.highlight a { color: var(--coral); }
.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(255,107,107,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(255,107,107,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(--coral);
    color: #fff !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(255,107,107,0.35); color: #fff !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); }

/* ─── MISC ─── */
.drv-divider { border: none; border-top: 1px solid var(--border); margin: 36px 0; }
.drv-disclaimer { border-top: 1px solid var(--border); padding-top: 24px; margin-top: 8px; }
.drv-disclaimer p { font-size: 0.78rem; color: #404660; line-height: 1.7; }

/* ─── BREADCRUMB ─── */
.drv-breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; font-size: 0.82rem; color: var(--muted); padding: 20px 0 16px; }
.drv-breadcrumb a { color: var(--muted); }
.drv-breadcrumb a:hover { color: var(--coral); }
.drv-breadcrumb i { font-size: 0.58rem; }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1050px) {
    .drv-stats-grid { grid-template-columns: repeat(3, 1fr); }
    .toc-grid { grid-template-columns: repeat(2, 1fr); }
    .synth-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
    .drv-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) {
    .drv-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; }
    .synth-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .drv-stats-grid { grid-template-columns: 1fr 1fr; }
    .info-cards-row, .platform-grid { grid-template-columns: 1fr; }
    .toc-grid { grid-template-columns: 1fr; }
    .hero-badge-col { flex-direction: column; align-items: center; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
}