/* =========================================================
   VideoExpress AI - Product page
   MaxDigitalHub chrome (header/footer/theme) +
   Author-supplied review styles (eye-catching, conversion-focused).
   ========================================================= */

/* ---------- MaxDigitalHub tokens (header/footer/dark mode) ---------- */
:root {
    --bg: #ffffff;
    --bg-soft: #fafafa;
    --bg-elev: #ffffff;
    --text: #1f1f1f;
    --text-muted: #5a5a5a;
    --text-soft: #8a8a8a;
    --border: #ececec;
    --border-strong: #d8d8d8;
    --hero-bg: #c9bff0;
    --accent-btn: #ece6ff;
    --accent-btn-hover: #dcd2ff;
    --green: #b6f0a0;
    --green-strong: #9be07f;
    --green-soft: #e7fbe0;
    --chip-bg: #f1f1f1;
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-search: 0 6px 18px rgba(0, 0, 0, 0.06);
    --icon-fill: #1f1f1f;
    --icon-on-dark: #ffffff;
    --radius: 10px;
    --radius-sm: 6px;
    --container: 1200px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

[data-theme="dark"] {
    --bg: #121214;
    --bg-soft: #1a1a1d;
    --bg-elev: #1f1f24;
    --text: #f4f4f5;
    --text-muted: #b5b5bb;
    --text-soft: #8a8a92;
    --border: #2a2a30;
    --border-strong: #3a3a42;
    --hero-bg: #2a2454;
    --accent-btn: #2d2750;
    --accent-btn-hover: #3a3370;
    --green: #2f7a3f;
    --green-strong: #3aa050;
    --green-soft: #1f3a26;
    --chip-bg: #26262c;
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.4);
    --shadow-search: 0 6px 18px rgba(0, 0, 0, 0.5);
    --icon-fill: #f4f4f5;
    --icon-on-dark: #1a1a1d;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.2s ease, color 0.2s ease;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: transparent; color: inherit; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Header (MaxDigitalHub) ---------- */
.site-header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}
.logo {
    display: inline-flex;
    align-items: center;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.01em;
}
.logo-text {
    color: var(--text);
    white-space: nowrap;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.logo-dot { color: var(--text); }

.primary-nav ul { display: flex; gap: 32px; }
.primary-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.15s ease;
    padding: 6px 0;
    position: relative;
}
.primary-nav a:hover,
.primary-nav a.active { color: var(--text); }
.primary-nav a.active::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
}

.header-actions { display: flex; align-items: center; gap: 10px; }

/* Translate */
.translate-box { display: inline-flex; align-items: center; min-height: 32px; }
.translate-box .goog-te-gadget { font-size: 0 !important; color: transparent !important; }
.translate-box .goog-te-gadget .goog-te-combo {
    margin: 0 !important;
    padding: 6px 28px 6px 10px;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font);
    color: var(--text);
    background: var(--chip-bg);
    border: 1px solid var(--border);
    border-radius: 999px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 8px center;
}
[data-theme="dark"] .translate-box .goog-te-combo {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23bbb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
}
.translate-box .goog-te-gadget > span > a { display: none !important; }
.translate-box .goog-te-banner-frame.skiptranslate { display: none !important; }
body { top: 0 !important; }

/* Theme toggle */
.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--chip-bg);
    border: 1px solid var(--border);
    color: var(--text);
    transition: background 0.15s ease, transform 0.1s ease;
}
.theme-toggle:hover { background: var(--border); }
.theme-toggle:active { transform: scale(0.95); }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: inline-block; }
[data-theme="dark"] .theme-toggle .icon-sun { display: inline-block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

.nav-toggle {
    display: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--chip-bg);
    border: 1px solid var(--border);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0;
}
.nav-toggle span {
    display: block;
    width: 16px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =========================================================
   PRODUCT HERO (VideoExpress AI)
   Eye-catching, conversion-focused intro using local assets.
   ========================================================= */
.ve-hero {
    position: relative;
    background:
        radial-gradient(1200px 600px at 80% -20%, rgba(245, 158, 11, 0.18), transparent 60%),
        radial-gradient(900px 500px at 0% 100%, rgba(26, 86, 219, 0.20), transparent 60%),
        linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e3a8a 100%);
    color: #fff;
    overflow: hidden;
    padding: 80px 0 60px;
}

.ve-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    opacity: 0.5;
}

.ve-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.ve-hero-content .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
    color: #fef3c7;
}

.ve-hero-content .eyebrow .dot {
    width: 6px;
    height: 6px;
    background: #f59e0b;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    animation: ve-pulse 1.8s infinite;
}

@keyframes ve-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.6); }
    70%  { box-shadow: 0 0 0 8px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.ve-hero-content h1 {
    font-size: clamp(2rem, 4.2vw, 3rem);
    line-height: 1.1;
    font-weight: 800;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.ve-hero-content h1 .accent {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ve-hero-content p.lead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 24px;
    max-width: 560px;
    line-height: 1.6;
}

.ve-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 24px;
}

.ve-hero-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.92);
    white-space: nowrap;
    flex: 0 0 auto;
}

.ve-hero-stat .ic {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f59e0b;
    border-radius: 50%;
    color: #1e1b4b;
    font-weight: 800;
    font-size: 11px;
}

.ve-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.btn-ve-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #1f2937;
    font-weight: 800;
    font-size: 15px;
    padding: 14px 26px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.45);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-ve-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(245, 158, 11, 0.55);
}

.btn-ve-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 13px 22px;
    border-radius: 10px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.btn-ve-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
}

.ve-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.ve-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ve-hero-trust span::before {
    content: '✓';
    color: #22c55e;
    font-weight: 800;
}

/* =========================================================
   HERO ART — clean, simple
   White card with the logo, surrounded by a slowly rotating
   dashed circular ring. Nothing else.
   ========================================================= */
.ve-hero-art {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.ve-hero-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 220px;
    max-width: 100%;
}

/* Outer dashed ring (slow rotation) */
.ve-hero-ring {
    position: absolute;
    inset: 0;
    border: 2px dashed rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.1),
        0 0 30px rgba(245, 158, 11, 0.4);
    animation: ve-ring-rotate 16s linear infinite;
    pointer-events: none;
}

/* Inner white card with logo, sits centered inside the ring */
.ve-hero-icon {
    position: relative;
    z-index: 1;
    width: 78%;
    aspect-ratio: 4 / 1;
    background: #ffffff;
    border-radius: 14px;
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.35),
        0 0 0 6px rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
}

.ve-hero-icon img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Slow rotation for the dashed ring */
@keyframes ve-ring-rotate {
    0%   { transform: rotate(0deg);   }
    100% { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .ve-hero-ring { animation: none; }
}

@keyframes ve-float-legacy {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

.ve-hero-badge {
    position: absolute;
    background: #ffffff;
    color: #1f2937;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.30),
        0 0 0 1px rgba(255, 255, 255, 0.10);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    white-space: nowrap;
}

.ve-hero-badge.top    { top: 6%;  left: 4%;  }
.ve-hero-badge.bottom { bottom: 6%; right: 4%; }
.ve-hero-badge.left   { top: 50%; left: 0; transform: translateY(-50%); }

.ve-hero-badge .num {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 16px;
    font-weight: 800;
}

.ve-hero-badge .num {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 16px;
    font-weight: 800;
}

@media (max-width: 1100px) {
    .ve-hero-inner { gap: 32px; }
    .ve-hero-content h1 { font-size: clamp(1.8rem, 3.6vw, 2.4rem); }
    .ve-hero-icon { max-width: 380px; }
}

@media (max-width: 900px) {
    .ve-hero { padding: 56px 0 40px; }
    .ve-hero-inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .ve-hero-content p.lead { margin-left: auto; margin-right: auto; }
    .ve-hero-ctas { justify-content: center; }
    .ve-hero-stats { justify-content: center; }
    .ve-hero-trust { justify-content: center; }
    .ve-hero-art { min-height: auto; order: 2; }
    .ve-hero-icon { max-width: 360px; }
    .ve-hero-badge.top    { top: -6px; left: 0; }
    .ve-hero-badge.bottom { bottom: -6px; right: 0; }
    .ve-hero-badge.left   { display: none; }
}

@media (max-width: 640px) {
    .ve-hero { padding: 40px 0 32px; }
    .ve-hero-content h1 { font-size: 1.6rem; }
    .ve-hero-content p.lead { font-size: 0.95rem; }
    .ve-hero-stats { gap: 6px; }
    .ve-hero-stat { font-size: 11px; padding: 5px 9px; }
    .ve-hero-ctas .btn-ve-primary,
    .ve-hero-ctas .btn-ve-ghost { width: 100%; justify-content: center; }
    .ve-hero-art {
        min-height: 180px;
        padding: 0 8px;
    }
    .ve-hero-stage {
        width: 180px;
        height: 180px;
    }
    .ve-hero-badge {
        font-size: 10px;
        padding: 6px 10px;
        border-radius: 8px;
        gap: 4px;
        white-space: nowrap;
    }
    .ve-hero-badge .num { font-size: 12px; }
    .ve-hero-badge.top    { top: 2px; left: 2px;  }
    .ve-hero-badge.bottom { bottom: 2px; right: 2px; }
    .ve-hero-trust { font-size: 11px; gap: 10px; }
}

@media (max-width: 480px) {
    .ve-hero { padding: 32px 0 24px; }
    .ve-hero-content h1 { font-size: 1.4rem; }
    .ve-hero-stats { gap: 4px; }
    .ve-hero-stat { font-size: 10.5px; padding: 4px 8px; gap: 4px; }
    .ve-hero-stat .ic { width: 16px; height: 16px; font-size: 10px; }
    .ve-hero-icon::after { display: none; }
}

/* =========================================================
   AUTHOR-SUPPLIED REVIEW STYLES
   (kept verbatim + dark-mode overrides added)
   ========================================================= */
:root {
    --blue: #1a56db;
    --blue-dark: #1444b0;
    --amber: #f59e0b;
    --green: #16a34a;
    --red: #dc2626;
    --ink: #1f2937;
    --ink-muted: #6b7280;
    --bg: #f8fafc;
    --card: #ffffff;
    --border: #e5e7eb;
    --radius: 10px;
}

[data-theme="dark"] {
    --blue: #60a5fa;
    --blue-dark: #3b82f6;
    --amber: #fbbf24;
    --green: #22c55e;
    --red: #f87171;
    --ink: #f4f4f5;
    --ink-muted: #b5b5bb;
    --bg: #121214;
    --card: #1f1f24;
    --border: #2a2a30;
}
[data-theme="dark"] .site-header { background: var(--bg); border-color: var(--border); }
[data-theme="dark"] .site-footer { background: var(--bg-soft); border-color: var(--border); }


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body.ve-review-body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.ve-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 20px 18px 60px;
}

.page-intro {
    text-align: center;
    padding: 40px 20px 30px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 30px;
}

.intro-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    background: rgba(26, 86, 219, 0.08);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

[data-theme="dark"] .intro-eyebrow {
    color: var(--blue);
    background: rgba(96, 165, 250, 0.12);
}

.page-intro h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: 14px;
}

.page-intro h1 span { color: var(--blue); }

.intro-sub {
    font-size: 1.05rem;
    color: var(--ink-muted);
    max-width: 640px;
    margin: 0 auto 16px;
    line-height: 1.6;
}

.intro-stars { font-size: 1.5rem; margin-bottom: 4px; }

.intro-rating {
    font-size: 14px;
    color: var(--ink-muted);
    margin-bottom: 8px;
}

.intro-disclaimer {
    font-size: 13px;
    color: var(--ink-muted);
    margin-top: 10px;
}

.btn-accent {
    display: inline-block;
    background: linear-gradient(135deg, var(--blue), var(--amber));
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(26, 86, 219, 0.3);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 86, 219, 0.4);
}

.btn-primary {
    display: inline-block;
    background: var(--card);
    color: var(--blue);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid var(--blue);
    transition: background 0.2s;
}

.btn-primary:hover { background: rgba(26, 86, 219, 0.06); }

[data-theme="dark"] .btn-primary {
    background: transparent;
    color: var(--blue);
    border-color: var(--blue);
}

.verdict-strip {
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.06), rgba(245, 158, 11, 0.06));
    border-left: 4px solid var(--blue);
    border-radius: var(--radius);
    padding: 18px 22px;
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink);
}

.toc {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 26px;
    margin-bottom: 36px;
}

.toc-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--ink);
}

.toc ol { padding-left: 20px; columns: 2; column-gap: 24px; }

.toc li { margin-bottom: 6px; font-size: 14px; }

.toc a { color: var(--blue); text-decoration: none; }
.toc a:hover { text-decoration: underline; }

section { margin-bottom: 36px; }

.sh2 {
    font-size: clamp(1.25rem, 3vw, 1.6rem);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--blue);
}

.sh3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin: 20px 0 8px;
}

p { margin-bottom: 14px; font-size: 15px; line-height: 1.75; color: var(--ink); }

.info-box {
    background: rgba(26, 86, 219, 0.04);
    border: 1px solid rgba(26, 86, 219, 0.15);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin: 18px 0;
    color: var(--ink);
}

[data-theme="dark"] .info-box {
    background: rgba(96, 165, 250, 0.06);
    border-color: rgba(96, 165, 250, 0.20);
}

.info-box-title { font-weight: 700; font-size: 15px; margin-bottom: 8px; color: var(--blue); }

.warn-box {
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.20);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin: 18px 0;
    color: var(--ink);
}

.warn-box-title { font-weight: 700; font-size: 15px; margin-bottom: 8px; color: #92400e; }

[data-theme="dark"] .warn-box-title { color: var(--amber); }

.kw-cloud { display: flex; flex-wrap: wrap; gap: 6px; margin: 14px 0; }

.kw {
    display: inline-block;
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 4px;
    background: #f1f5f9;
    color: var(--ink-muted);
    border: 1px solid var(--border);
}

[data-theme="dark"] .kw {
    background: #26262c;
    color: var(--ink-muted);
    border-color: var(--border);
}

.kw.brand {
    background: rgba(26, 86, 219, 0.08);
    color: var(--blue);
    border-color: rgba(26, 86, 219, 0.2);
    font-weight: 600;
}

[data-theme="dark"] .kw.brand {
    background: rgba(96, 165, 250, 0.12);
    color: var(--blue);
    border-color: rgba(96, 165, 250, 0.30);
}

.kw.buy {
    background: rgba(245, 158, 11, 0.08);
    color: #92400e;
    border-color: rgba(245, 158, 11, 0.2);
    font-weight: 600;
}

[data-theme="dark"] .kw.buy {
    background: rgba(251, 191, 36, 0.12);
    color: var(--amber);
    border-color: rgba(251, 191, 36, 0.30);
}

.feat-list { padding-left: 22px; margin: 10px 0 16px; }

.feat-list li {
    font-size: 14.5px;
    margin-bottom: 8px;
    line-height: 1.6;
    color: var(--ink);
    list-style: disc;
}

.step-list { padding-left: 0; list-style: none; counter-reset: step; margin: 16px 0; }

.step-list li {
    counter-increment: step;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 18px;
    color: var(--ink);
}

.step-list li::before {
    content: counter(step);
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50%;
}

.step-list li div strong { display: block; margin-bottom: 4px; font-size: 15px; }

.step-list li div span { font-size: 14px; color: var(--ink-muted); line-height: 1.6; }

.cta-band {
    background: linear-gradient(135deg, #1e3a8a, var(--blue));
    color: #fff;
    text-align: center;
    padding: 30px 24px;
    border-radius: var(--radius);
    margin: 30px 0;
}

.cta-band h3 { font-size: 1.2rem; margin-bottom: 10px; }

.cta-band p { color: rgba(255, 255, 255, 0.85); font-size: 14px; margin-bottom: 14px; }

.cta-band .btn-accent {
    background: linear-gradient(135deg, var(--amber), #f97316);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.rating-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
    margin: 18px 0;
}

.rating-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
    color: var(--ink);
}

.rc-label { font-weight: 700; font-size: 14px; margin-bottom: 6px; color: var(--ink); }
.rc-stars { font-size: 1.1rem; margin-bottom: 6px; }
.rc-note { font-size: 12.5px; color: var(--ink-muted); line-height: 1.5; }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 18px 0; }

.pros-block, .cons-block {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    color: var(--ink);
}

.pros-block { border-left: 4px solid var(--green); }
.cons-block { border-left: 4px solid var(--red); }

.pros-block h4, .cons-block h4 { font-size: 15px; margin-bottom: 10px; }

.pros-block ul, .cons-block ul { padding-left: 18px; }

.pros-block li, .cons-block li {
    font-size: 13.5px;
    margin-bottom: 6px;
    line-height: 1.5;
    color: var(--ink);
    list-style: disc;
}

.table-wrap {
    overflow-x: auto;
    margin: 18px 0;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

table { width: 100%; border-collapse: collapse; font-size: 13.5px; }

th {
    background: var(--ink);
    color: #fff;
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
}

td { padding: 10px 12px; border-bottom: 1px solid var(--border); color: var(--ink); }

tr:nth-child(even) td { background: #f9fafb; }

[data-theme="dark"] tr:nth-child(even) td { background: #1a1a1d; }

.cy { color: var(--green); font-weight: 600; }
.cn { color: var(--red); }
.cp { color: #d97706; }

[data-theme="dark"] .cp { color: var(--amber); }

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 8px;
    overflow: hidden;
    color: var(--ink);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14.5px;
    transition: background 0.2s;
}

.faq-q:hover { background: rgba(26, 86, 219, 0.03); }

.faq-arrow { font-size: 14px; transition: transform 0.3s; color: var(--blue); }

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 18px;
}

.faq-item.open .faq-a { max-height: 400px; padding: 0 18px 16px; }

.faq-a p { font-size: 14px; color: var(--ink-muted); line-height: 1.7; }

.verdict-card {
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.05), rgba(245, 158, 11, 0.05));
    border: 2px solid var(--blue);
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    margin: 30px 0;
    color: var(--ink);
}

.verdict-card h2 { font-size: 1.3rem; margin-bottom: 14px; border: none; padding: 0; }

.verdict-score { font-size: 2.2rem; font-weight: 800; color: var(--blue); margin-bottom: 4px; }

.verdict-score-sub { font-size: 14px; color: var(--ink-muted); margin-bottom: 16px; }

.verdict-card p { max-width: 600px; margin: 0 auto 18px; font-size: 15px; line-height: 1.7; }

.verdict-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

@media (max-width: 900px) {
    .toc ol { columns: 1; }
}

@media (max-width: 768px) {
    .pros-cons { grid-template-columns: 1fr; }
    .rating-grid { grid-template-columns: repeat(2, 1fr); }
    .btn-accent, .btn-primary { display: block; text-align: center; }
    .page-intro h1 { font-size: clamp(1.4rem, 5vw, 1.9rem); }
    .sh2 { font-size: clamp(1.15rem, 4vw, 1.4rem); }
    .step-list li { padding: 14px; gap: 12px; }
    .step-list li::before { width: 28px; height: 28px; font-size: 13px; }
    .info-box, .warn-box { padding: 14px 16px; }
}

@media (max-width: 640px) {
    .pros-cons { grid-template-columns: 1fr; }
    .rating-grid { grid-template-columns: 1fr; }
    .ve-wrap { padding: 12px 12px 40px; }
    .page-intro { padding: 24px 12px 20px; }
    .verdict-card { padding: 22px 16px; }
    .verdict-score { font-size: 1.8rem; }
    .cta-band { padding: 24px 18px; }
    .cta-band h3 { font-size: 1.05rem; }
    .feat-list { padding-left: 18px; }
    .feat-list li { font-size: 14px; }
    p { font-size: 14.5px; }
    .faq-q { font-size: 14px; padding: 12px 14px; }
    .faq-a p { font-size: 13.5px; }
    .kw-cloud { gap: 4px; }
    .kw { font-size: 10.5px; padding: 2px 7px; }
    .verdict-btns .btn-accent,
    .verdict-btns .btn-primary { width: 100%; }
}

@media (max-width: 380px) {
    .ve-hero-content h1 { font-size: 1.25rem; }
    .ve-hero-stats .ve-hero-stat:nth-child(n+3) { font-size: 10px; }
    .container { padding: 0 12px; }
    .page-intro h1 { font-size: 1.3rem; }
}

/* =========================================================
   AdSense ad slots
   ========================================================= */
.ad-slot {
    max-width: 860px;
    margin: 28px auto;
    padding: 14px 18px;
    text-align: center;
    background: #ffffff;
    border: 1px dashed #e5e7eb;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 60px;
}
.ad-slot::before {
    content: 'Advertisement';
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-muted, #6b7280);
    margin-bottom: 10px;
    opacity: 0.6;
}
.ad-slot .adsbygoogle {
    display: block;
    min-height: 90px;
    margin: 0 auto;
}
[data-theme="dark"] .ad-slot {
    background: var(--bg-elev, #1f1f24);
    border-color: var(--border, #2a2a30);
}

/* =========================================================
   FOOTER (MaxDigitalHub)
   ========================================================= */
.site-footer {
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    padding: 56px 0 24px;
    margin-top: 0;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); margin: 12px 0 0; max-width: 360px; }
.footer-links h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 12px; color: var(--text); }
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: var(--text-muted); }
.footer-links a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; text-align: center; font-size: 12px; color: var(--text-soft); }

@media (max-width: 900px) {
    .nav-toggle { display: inline-flex; }
    .primary-nav {
        position: absolute;
        top: 72px; left: 0; right: 0;
        background: var(--bg-elev);
        border-bottom: 1px solid var(--border);
        max-height: 0; overflow: hidden;
        transition: max-height 0.25s ease;
    }
    .primary-nav ul { flex-direction: column; gap: 0; padding: 8px 24px 16px; }
    .primary-nav li { border-bottom: 1px solid var(--border); }
    .primary-nav li:last-child { border-bottom: none; }
    .primary-nav a { display: block; padding: 14px 0; }
    .nav-open .primary-nav { max-height: 500px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .container { padding: 0 16px; }
    .header-inner { height: 60px; gap: 12px; }
    .header-actions { gap: 6px; }
    .logo { font-size: 16px; }
    .footer-inner { grid-template-columns: 1fr; }
}
