/*
Theme Name: LW Pay
Theme URI: https://little-white.by
Description: Minimal dark theme for Little White payment site
Author: Little White
Author URI: https://little-white.by
Version: 2.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GPL v2 or later
Text Domain: lw-pay
*/

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

:root {
    --bg: #0a0a1a;
    --bg2: #12122a;
    --bg3: #1a1a35;
    --border: #2a2a4a;
    --accent: #4a90d9;
    --accent-light: #aad4ff;
    --text: #e0e0e0;
    --text-bright: #fff;
    --text-dim: #9a9a9a;
    --text-dimmer: #7a7a7a;
    --green: #28ca41;
    --red: #ff5f57;
    --yellow: #ffbd2e;
    --purple: #9a69c7;
    --teal: #0ecad4;
    --mock-blue: #2196F3;
    --mock-orange: #FF9800;
    --mock-green: #4CAF50;
    --radius: 12px;
    --nav-bg: rgba(10, 10, 26, 0.85);
    --nav-bg-mobile: rgba(10, 10, 26, 0.97);
    --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 12px 40px rgba(100, 150, 255, 0.12);
    --shadow-feature: 0 8px 30px rgba(74, 144, 217, 0.1);
    --illust-bg-1: #1a1a35;
    --illust-bg-2: #0f0f25;
    --illust-ring: #2a2a4a;
    --devkit-term-bg: #1e1515;
    --hero-grad-start: #fff;
    --hero-grad-end: var(--accent-light);
}

[data-theme="light"] {
    --bg: #ffffff;
    --bg2: #f7f9fc;
    --bg3: #e8ecf2;
    --border: rgba(0, 0, 0, 0.08);
    --accent: #4a90d9;
    --accent-light: #2a6cb8;
    --text: #4c4c4c;
    --text-bright: #1a1a2e;
    --text-dim: #5c6b7a;
    --text-dimmer: #5f6d7a;
    --green: #137820;
    --red: #e04840;
    --yellow: #d4a017;
    --purple: #7c4daf;
    --teal: #0ba8b0;
    --mock-blue: #1565c0;
    --mock-orange: #b35e00;
    --mock-green: #1a7a2a;
    --nav-bg: rgba(255, 255, 255, 0.88);
    --nav-bg-mobile: rgba(255, 255, 255, 0.97);
    --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 40px rgba(74, 144, 217, 0.1);
    --shadow-feature: 0 8px 30px rgba(74, 144, 217, 0.06);
    --illust-bg-1: #e0e8f5;
    --illust-bg-2: #dce4f0;
    --illust-ring: #c8d4e4;
    --devkit-term-bg: #f7f7f7;
    --hero-grad-start: #1a1a2e;
    --hero-grad-end: var(--accent);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { text-decoration: none; }
a:hover { color: var(--accent-light); }

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

/* === NAV === */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; gap: 6px; text-decoration: none; position: relative; top: -4px; }
.nav-logo-bracket { font-size: 48px; font-weight: 300; color: var(--accent); line-height: 1; }
.nav-logo-inner { text-align: center; }
.nav-logo-name { font-size: 22px; font-weight: 800; color: var(--text-bright); letter-spacing: 1px; line-height: 1.1; display: block; }
.nav-logo-sub { font-size: 10px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--accent); display: block; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: var(--text-dim); text-decoration: none; font-size: 14px; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text-bright); }

.lang-switch { display: flex; gap: 4px; background: var(--bg2); border-radius: 6px; padding: 2px; border: 1px solid var(--border); }
.lang-btn { padding: 4px 10px; border: none; background: transparent; color: var(--text-dim); font-size: 12px; font-weight: 600; border-radius: 4px; cursor: pointer; transition: all .2s; text-decoration: none; display: inline-block; -webkit-tap-highlight-color: rgba(74,144,217,.3); touch-action: manipulation; min-height: 32px; line-height: 24px; }
.lang-btn.active { background: #3574b8; color: #fff; }


/* Mega-menu */
.nav-mega-parent { position: relative; }
.nav-mega-trigger { display: inline-flex; align-items: center; gap: 4px; background: none; border: none; padding: 0; font: inherit; color: inherit; cursor: pointer; }
.nav-mega-arrow { transition: transform .2s; }
.nav-mega-parent:hover .nav-mega-arrow { transform: rotate(180deg); }

.nav-mega-dropdown {
    display: none; position: absolute; top: 100%; left: -16px;
    background: var(--bg2); border: 1px solid var(--border); border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.2); padding: 8px; min-width: 240px;
    z-index: 200;
}
.nav-mega-parent:hover .nav-mega-dropdown { display: flex; }

.nav-mega-panel { display: flex; flex-direction: column; min-width: 220px; }
.nav-mega-l2, .nav-mega-l3 {
    display: none; position: absolute; left: 100%; top: 0;
    background: var(--bg2); border: 1px solid var(--border); border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.2); padding: 8px; min-width: 220px;
}
.nav-mega-l1 { position: relative; }

.nav-mega-item-row {
    display: flex; align-items: center; border-radius: 8px; transition: all .15s;
}
.nav-mega-item-row:hover { background: var(--border); }
.nav-mega-item {
    display: flex; align-items: center; gap: 10px; padding: 8px 12px;
    color: var(--text-dim); text-decoration: none; font-size: 13px;
    border-radius: 8px; transition: all .15s; flex: 1;
}
.nav-mega-item:hover, .nav-mega-item.active { color: var(--text-bright); }
.nav-mega-icon { flex-shrink: 0; display: flex; align-items: center; color: var(--accent); }
.nav-mega-chevron-btn {
    display: flex; align-items: center; justify-content: center;
    padding: 8px 10px; cursor: pointer; border-radius: 0 8px 8px 0;
    color: var(--text-dim); transition: all .15s;
}
.nav-mega-chevron-btn:hover { color: var(--accent); background: rgba(74,144,217,.1); }
.nav-mega-chevron { flex-shrink: 0; opacity: .5; }
.nav-mega-chevron-btn:hover .nav-mega-chevron { opacity: 1; }

/* Show L2 on L1 row hover */
.nav-mega-item-row[data-cat]:hover + .nav-mega-l2,
.nav-mega-l2:hover { display: flex; }

/* Show L3 on L2 item hover */
.nav-mega-l2 .nav-mega-item[data-cat]:hover + .nav-mega-l3,
.nav-mega-l3:hover { display: flex; }

/* Краткое описание под названием подпункта (поле «Краткое описание» категории), не больше 2 строк */
.nav-mega-l2 { width: 320px; }
.nav-mega-l2 .nav-mega-item:hover { background: var(--border); }
.nav-mega-item.has-desc, .nav-mob-sub-link.has-desc { align-items: flex-start; }
.nav-mega-item.has-desc { padding: 9px 12px; }
.nav-mega-item.has-desc .nav-mega-icon, .nav-mob-sub-link.has-desc .nav-mega-icon { margin-top: 1px; }
.nav-mega-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.nav-mega-title { line-height: 1.35; }
.has-desc .nav-mega-title { color: var(--text); font-weight: 600; }
.has-desc:hover .nav-mega-title { color: var(--text-bright); }
.nav-mega-desc {
    font-size: 12px; line-height: 1.4; font-weight: 400; color: var(--text-dim);
    display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; line-clamp: 2; overflow: hidden;
}

.nav-hamburger { display: none; background: none; border: none; color: var(--text); font-size: 24px; cursor: pointer; }
.nav-mobile-controls { display: none; }
.nav-mob-section { display: none; }


/* === HERO === */
.hero {
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 144, 217, 0.08), transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(74, 144, 217, 0.1);
    border: 1px solid rgba(74, 144, 217, 0.25);
    border-radius: 20px;
    font-size: 13px;
    color: var(--accent-light);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.2em;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--hero-grad-start), var(--hero-grad-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2em;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero compact (product page) */
.hero-compact { padding: 120px 0 60px; }

.hero-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.hero-price small {
    font-size: 16px;
    color: var(--text-dim);
    font-weight: 400;
}

.hero-price-note {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 24px;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
    border: none;
    cursor: pointer;
}

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover {
    background: #3a7fc9;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(74, 144, 217, 0.3);
}

.btn-accent { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.btn-accent:hover { background: var(--accent); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(74, 144, 217, 0.3); }
[data-theme="light"] .btn-primary { background: #2a6cb8; }
[data-theme="light"] .btn-accent,
[data-theme="light"] .btn-outline { color: #2a6cb8; border-color: #2a6cb8; }
/* На hover фон заливается акцентом — текст должен быть белым (иначе правило выше перебивает .btn-accent:hover). */
[data-theme="light"] .btn-accent:hover,
[data-theme="light"] .btn-outline:hover { color: #fff; }

.btn-secondary { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent-light); }

.btn-outline { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }

.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 7px 16px; font-size: 13px; }

/* === SECTIONS === */
section { padding: 80px 0; }

.section-label {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-light);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-bright);
}

.section-desc {
    color: var(--text-dim);
    font-size: 1.05em;
    max-width: 600px;
    line-height: 1.7;
}

#demo .section-desc {
    margin: 0 auto;
    padding-bottom: 30px;
}

/* === PAGE HEADER (catalog) === */
.page-header {
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(74, 144, 217, .06), transparent 70%);
    pointer-events: none;
}

.page-header h1, .page-header h2 {
    font-size: 2.6em;
    font-weight: 800;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--hero-grad-start), var(--hero-grad-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    color: var(--text-dim);
    font-size: 1.1em;
    max-width: 550px;
    margin: 0 auto;
}

.page-header + .plugins-section {
    padding-top: 0;
}

/* === SEARCH === */
.search-bar { max-width: 480px; margin: 30px auto 0; position: relative; }
.search-bar input {
    width: 100%;
    padding: 12px 20px 12px 44px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: 15px;
}
.search-bar input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(74, 144, 217, .15); }
.search-bar input::placeholder { color: var(--text-dimmer); }
.search-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); font-size: 16px; color: var(--text-dimmer); pointer-events: none; }

/* === PLUGIN CARDS (catalog) === */
.plugins-section { }
.plugins-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }

.catalog-section { margin-bottom: 48px; }
.catalog-parent-title { font-size: 24px; font-weight: 600; margin: 0 0 24px; }
.catalog-parent-title a { color: var(--text); text-decoration: none; }
.catalog-parent-title a:hover { color: var(--mock-blue); }
.catalog-group-title { font-size: 14px; font-weight: 700; color: var(--text-dim); text-transform: uppercase; letter-spacing: 2px; margin: 0 0 16px; padding-bottom: 8px; border-bottom: 2px solid var(--border); }
.catalog-tabs { display: flex; gap: 0; margin-bottom: 24px; border-bottom: 2px solid var(--border); }
.catalog-tab { background: none; border: none; padding: 10px 24px; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: color .2s, border-color .2s; }
.catalog-tab:hover { color: var(--text); }
.catalog-tab.active { color: var(--mock-blue); border-bottom-color: var(--mock-blue); }
.catalog-tab-content { display: none; }
.catalog-tab-content.active { display: block; }
.catalog-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .catalog-grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 782px) { .catalog-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .catalog-grid-4 { grid-template-columns: 1fr; } }

.plugin-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    text-decoration: none;
    color: var(--text);
    display: block;
}
.plugin-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); color: var(--text); }

.card-illustration { width: 100%; height: 200px; position: relative; overflow: hidden; }
.illust-theme-screenshot { display: flex; align-items: flex-start; }
.illust-theme-screenshot img { width: 100%; height: 100%; object-fit: cover; }
.illust-free { }
.card-free-badge {
    position: absolute; bottom: 10px; right: 12px;
    background: var(--green); color: #fff; font-size: 10px; font-weight: 700;
    padding: 3px 8px; border-radius: 4px; letter-spacing: 1px;
    text-transform: uppercase; opacity: 1;
}
.card-ai-badge {
    position: absolute; bottom: 10px; right: 12px;
    background: rgba(154,105,199,.2); color: #8457b7;
    font-size: 11px; font-weight: 600; padding: 3px 10px;
    border-radius: 4px; letter-spacing: .5px; z-index: 2;
}

.card-body { padding: 22px 24px 24px; }
.card-tag { display: inline-block; padding: 3px 10px; border-radius: 12px; font-size: 11px; font-weight: 600; margin-bottom: 10px; }
.tag-analytics { background: #1a2544; color: var(--accent-light); }
.tag-seo { background: #152e2d; color: #38e650; }
.tag-security { background: #361e31; color: #ff9b95; }
.tag-perf { background: #362c2b; color: #eda303; }
.tag-tools { background: #261f42; color: #c4a6e6; }
.tag-cache { background: #142648; color: #64b5f6; }
.tag-media { background: #112e44; color: #4db1b7; }
.tag-ecommerce { background: #362624; color: #ffb74d; }

/* Cart Recovery illustration */
.illust-cart { background: linear-gradient(135deg, var(--illust-bg-1), var(--illust-bg-2)); }
.cart-scene { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; gap: 6px; }
.cart-main { font-size: 44px; position: relative; z-index: 1; transition: transform .3s; }
.cart-main.shake { animation: cart-shake .4s ease; }
.cart-main.happy { animation: cart-happy .5s ease; }
.cart-status {
    font-size: 16px; font-weight: 700; opacity: 0;
    transition: opacity .3s, transform .3s;
    transform: scale(.5);
}
.cart-status.show { opacity: 1; transform: scale(1); }
.cart-msgs { position: absolute; top: 50%; transform: translateY(-50%); right: -60px; display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.cart-msg {
    font-size: 24px; opacity: 0;
    transform: translateX(30px);
    transition: opacity .4s, transform .5s cubic-bezier(.2,.8,.3,1);
}
.illust-free .cart-msg { font-size: 20px; }
.cart-msg.fly { opacity: 1; transform: translateX(0); }
.cart-msg.land { transform: translateX(-40px) scale(.8); opacity: 0; transition: all .3s ease-in; }
.cart-msg { position: relative; }
.cart-msg-badge {
    position: absolute; top: -8px; right: -12px;
    font-size: 8px; font-weight: 700; line-height: 1;
    padding: 2px 4px; border-radius: 4px;
    opacity: 0; transform: scale(.3);
    animation: cart-badge-pop .3s ease forwards;
}
.cart-msg-badge-ok { background: var(--green); color: #fff; }
.cart-msg-badge-ai { background: rgba(154,105,199,.3); color: #c4a6e6; font-size: 7px; }
@keyframes cart-badge-pop {
    0% { opacity: 0; transform: scale(.3); }
    60% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}
.cart-ai-pop {
    position: absolute; top: -10px; right: -50px;
    font-size: 11px; padding: 3px 10px;
    background: rgba(154,105,199,.2); color: #c4a6e6;
    border-radius: 8px; font-weight: 600; letter-spacing: .5px;
    opacity: 0; transform: scale(.5);
    transition: opacity .3s, transform .3s;
}
.cart-ai-pop.show { opacity: 1; transform: scale(1); }
@keyframes cart-shake {
    0%, 100% { transform: rotate(0); }
    20% { transform: rotate(-8deg); }
    40% { transform: rotate(8deg); }
    60% { transform: rotate(-5deg); }
    80% { transform: rotate(5deg); }
}
@keyframes cart-happy {
    0% { transform: scale(1); }
    40% { transform: scale(1.15); }
    100% { transform: scale(1); }
}
@keyframes pulse-ring { 0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: .3; } 50% { transform: translate(-50%,-50%) scale(1.1); opacity: .15; } }
@keyframes cart-blink { 0%, 100% { opacity: .3; } 50% { opacity: .8; } }

.card-body h2 { font-size: 1.15em; margin-bottom: 8px; color: var(--accent-light); }
.card-body p { font-size: .88em; color: var(--text-dim); line-height: 1.55; margin-bottom: 16px; }
.card-meta { display: flex; justify-content: space-between; align-items: center; }
.card-version { font-size: 16px; color: #333; }
.card-link { display: inline-flex; align-items: center; gap: 4px; padding: 7px 16px; background: #3574b8; color: #fff; border-radius: 8px; text-decoration: none; font-size: 13px; font-weight: 600; transition: background .2s; }
.card-link:hover { background: #2c5f99; color: #fff; }

/* === CARD ILLUSTRATIONS === */

/* 1. Analytics */
.illust-analytics { background: linear-gradient(135deg, var(--illust-bg-1), var(--illust-bg-2)); }
.ia-bars { position: absolute; bottom: 24px; left: 24px; display: flex; gap: 8px; align-items: flex-end; }
.ia-bar { width: 16px; border-radius: 4px 4px 0 0; animation: ia-grow 2.5s ease infinite alternate; }
.ia-bar:nth-child(1) { height: 50px; background: var(--accent); animation-delay: 0s; }
.ia-bar:nth-child(2) { height: 75px; background: var(--red); animation-delay: .3s; }
.ia-bar:nth-child(3) { height: 35px; background: var(--yellow); animation-delay: .6s; }
.ia-bar:nth-child(4) { height: 60px; background: var(--green); animation-delay: .9s; }
.ia-bar:nth-child(5) { height: 45px; background: var(--purple); animation-delay: 1.2s; }
@keyframes ia-grow { 0% { transform: scaleY(1); } 100% { transform: scaleY(.55); } }
.ia-donut { position: absolute; top: 28px; right: 28px; width: 80px; height: 80px; animation: ia-spin 12s linear infinite; }
@keyframes ia-spin { to { transform: rotate(360deg); } }
.ia-stat { position: absolute; top: 28px; left: 24px; }
.ia-stat-num { font-size: 22px; font-weight: 700; color: var(--accent); }
.ia-stat-label { font-size: 10px; color: var(--text-dimmer); text-transform: uppercase; letter-spacing: 1px; }

/* 2. SEO */
.illust-seo { background: linear-gradient(135deg, var(--illust-bg-1), var(--illust-bg-2)); }
.seo-ui { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; gap: 10px; }
.seo-gauge { position: relative; width: 100px; height: 50px; overflow: hidden; }
.seo-gauge-bg { width: 100px; height: 100px; border: 8px solid var(--illust-ring); border-radius: 50%; border-bottom-color: transparent; border-left-color: transparent; transform: rotate(-45deg); }
.seo-gauge-fill {
    position: absolute; top: 0; left: 0; width: 100px; height: 100px;
    border: 8px solid transparent; border-radius: 50%;
    transform: rotate(-45deg);
    transition: border-top-color .3s, border-right-color .3s;
}
.seo-score {
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    font-size: 24px; font-weight: 700; font-family: monospace;
    transition: color .3s;
}
.seo-checks { display: flex; flex-wrap: wrap; gap: 3px 10px; min-height: 28px; justify-content: center; max-width: 180px; }
.seo-check-item {
    display: flex; align-items: center; gap: 5px;
    font-size: 10px; font-weight: 600; white-space: nowrap;
    opacity: 0; transform: translateY(4px);
    transition: opacity .3s, transform .3s;
}
.seo-check-item.show { opacity: 1; transform: translateY(0); }
.seo-check-item.pass { color: var(--green); }
.seo-check-item.fail { color: var(--red); }
@keyframes seo-blink { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }

/* 3. Security */
.illust-security { background: linear-gradient(135deg, var(--illust-bg-1), var(--illust-bg-2)); overflow: hidden; }
.sec-bugs { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.sec-bug {
    position: absolute; font-size: 20px; opacity: 0;
    transition: opacity .3s;
}
.sec-bug.alive {
    opacity: .85;
    animation: sec-bug-float 3s ease-in-out infinite;
}
.sec-bug.zapped {
    animation: sec-bug-zap .6s ease-out forwards;
}
.sec-zap-ring {
    position: absolute; pointer-events: none; z-index: 3;
    width: 32px; height: 32px; border-radius: 50%;
    border: 2px solid var(--red);
    opacity: 0;
}
.sec-zap-ring.show {
    animation: sec-ring-burst .6s ease-out forwards;
}
.sec-zap-x {
    position: absolute; pointer-events: none; z-index: 3;
    font-size: 14px; font-weight: 900; color: var(--red);
    opacity: 0;
}
.sec-zap-x.show {
    animation: sec-x-rise .7s ease-out forwards;
}
@keyframes sec-bug-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5px, -7px) rotate(8deg); }
    50% { transform: translate(-4px, 5px) rotate(-5deg); }
    75% { transform: translate(6px, 3px) rotate(4deg); }
}
@keyframes sec-bug-zap {
    0% { opacity: .85; transform: scale(1); filter: brightness(1); }
    20% { opacity: 1; transform: scale(1.3); filter: brightness(3) saturate(0); }
    50% { opacity: .6; transform: scale(.8); filter: brightness(2) saturate(0); }
    100% { opacity: 0; transform: scale(0); filter: brightness(3); }
}
@keyframes sec-ring-burst {
    0% { transform: translate(-50%, -50%) scale(.3); opacity: .9; border-width: 3px; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; border-width: 1px; }
}
@keyframes sec-x-rise {
    0% { transform: translate(-50%, -50%) scale(.5); opacity: 0; }
    20% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
    50% { transform: translate(-50%, -70%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -120%) scale(.8); opacity: 0; }
}
.sec-shield { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -55%); display: flex; align-items: center; justify-content: center; }
.sec-shield-body { position: relative; display: flex; align-items: center; justify-content: center; }
.sec-shield-body svg.sec-shield-svg { width: 80px; height: 90px; filter: drop-shadow(0 4px 12px rgba(255, 95, 87, .3)); }
.sec-shield-body .sec-check { position: absolute; font-size: 28px; color: var(--green); animation: sec-pulse 2s ease infinite; }
@keyframes sec-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
.sec-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -55%); width: 120px; height: 120px; border: 1px solid rgba(255, 95, 87, 0.15); border-radius: 50%; animation: sec-ring-pulse 3s ease infinite; }
@keyframes sec-ring-pulse { 0%, 100% { transform: translate(-50%, -55%) scale(1); opacity: .5; } 50% { transform: translate(-50%, -55%) scale(1.15); opacity: 0; } }

/* 4. Performance */
.illust-perf { background: linear-gradient(135deg, var(--illust-bg-1), var(--illust-bg-2)); }
.perf-ui { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; flex-direction: column; gap: 6px; width: 170px; }
.perf-wf-label { font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim); opacity: .6; }
.perf-waterfall { display: flex; flex-direction: column; gap: 5px; }
.perf-wf-row { display: flex; align-items: center; gap: 6px; }
.perf-wf-name { font-size: 9px; font-weight: 600; color: var(--text-dim); width: 28px; text-align: right; font-family: monospace; flex-shrink: 0; }
.perf-wf-track { flex: 1; height: 6px; background: var(--illust-ring); border-radius: 3px; overflow: hidden; }
.perf-wf-bar { height: 100%; border-radius: 3px; transition: width 1.2s cubic-bezier(.4,0,.2,1), background .8s; }
.perf-time { font-size: 11px; font-weight: 700; font-family: monospace; text-align: right; transition: color .5s; }

/* 5. Media */
.illust-media { background: linear-gradient(135deg, var(--illust-bg-1), var(--illust-bg-2)); }
.media-ui { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; gap: 12px; }
.media-card { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 18px 28px 14px; border-radius: 12px; border: 1px solid var(--illust-ring); background: var(--illust-bg-1); }
.media-card { position: relative; z-index: 2; }
.media-card-icon { color: var(--text-dim); transition: opacity .3s; }
.media-card-loader {
    display: none; width: 32px; height: 32px;
    border: 3px solid var(--illust-ring); border-top-color: var(--yellow);
    border-radius: 50%; animation: media-spin .8s linear infinite;
}
.media-card.phase-1 .media-card-icon { opacity: 0; width: 0; height: 0; overflow: hidden; }
.media-card.phase-1 .media-card-loader { display: block; }
@keyframes media-spin { to { transform: rotate(360deg); } }
.media-fly {
    position: absolute; top: 50%; z-index: -1;
    font-size: 11px; font-weight: 700; font-family: monospace; letter-spacing: .5px;
    white-space: nowrap; pointer-events: none;
    transition: left .8s, transform .8s, color .5s, opacity .4s;
    left: 0; transform: translate(calc(-100% - 12px), -50%); color: var(--text-dim); opacity: 0;
}
.media-fly.fly-left { left: 0; transform: translate(calc(-100% - 12px), -50%); color: var(--text-dim); opacity: 1; }
.media-fly.fly-center { left: 50%; transform: translate(-50%, -50%); color: var(--yellow); opacity: .35; }
.media-fly.fly-hide { left: 50%; transform: translate(-50%, -50%); color: var(--yellow); opacity: 0; }
.media-fly.fly-right { left: 100%; transform: translate(12px, -50%); color: var(--green); opacity: 1; transition: left .5s cubic-bezier(.4,0,.2,1), transform .5s cubic-bezier(.4,0,.2,1), color .3s, opacity .4s; }
.media-fly.fly-gone { left: 100%; transform: translate(40px, -50%); color: var(--green); opacity: 0; transition: left .3s cubic-bezier(.4,0,.2,1), transform .3s cubic-bezier(.4,0,.2,1), opacity .3s; }

/* MediaPress — JS-driven phases via classes, CSS handles transitions */
.media-card { transition: background .6s, border-color .6s, box-shadow .6s; }
.media-card-icon { transition: color .6s; }

/* PRO phases */
.media-anim.phase-0 { background: var(--illust-bg-1); border-color: var(--illust-ring); box-shadow: none; }
.media-anim.phase-0 .media-card-icon { color: var(--text-dim); }
.media-anim.phase-1 { background: rgba(255,189,46,.1); border-color: var(--yellow); box-shadow: none; }
.media-anim.phase-1 .media-card-icon { color: var(--yellow); }
.media-anim.phase-2 { background: var(--green); border-color: var(--green); box-shadow: 0 0 24px rgba(40,202,65,.3); }
.media-anim.phase-2 .media-card-icon { color: #fff; }

/* Free phases — softer */
.media-anim-free.phase-1 { background: rgba(255,189,46,.06); border-color: rgba(255,189,46,.4); box-shadow: none; }
.media-anim-free.phase-1 .media-card-icon { color: rgba(255,189,46,.7); }
.media-anim-free.phase-2 { background: rgba(40,202,65,.08); border-color: rgba(40,202,65,.4); box-shadow: none; }
.media-anim-free.phase-2 .media-card-icon { color: rgba(40,202,65,.7); }

/* Progress bar — JS sets width/color, CSS transitions */
.media-bar { display: flex; align-items: center; gap: 8px; width: 160px; }
.media-bar-track { flex: 1; height: 5px; background: var(--illust-ring); border-radius: 3px; overflow: hidden; }
.media-bar-fill { height: 100%; border-radius: 3px; transition: width .6s, background .6s; }
.media-bar-label { font-size: 11px; font-weight: 700; white-space: nowrap; font-family: monospace; transition: color .6s; }

/* Fly text — also JS-driven */
@keyframes media-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

/* 6. Tools */
.illust-tools { background: linear-gradient(135deg, var(--illust-bg-1), var(--illust-bg-2)); }

/* Cache illustration */
.illust-cache { background: linear-gradient(135deg, var(--illust-bg-1), var(--illust-bg-2)); }
.cache-scene { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; gap: 10px; }
.illust-free .cache-scene { top: 45%; }
.cache-stack { position: relative; width: 110px; height: 125px; }
.cache-file {
    position: absolute; width: 60px; height: 38px;
    border-radius: 5px; border: 1.5px solid var(--illust-ring);
    background: var(--illust-bg-1);
    display: flex; align-items: center; justify-content: center;
    font-size: 9px; font-weight: 700; font-family: monospace;
    color: var(--text-dim);
    opacity: 0; transform: translateY(15px) scale(.8);
    transition: opacity .35s, transform .35s;
}
.cache-file.show { opacity: 1; transform: translateY(0) scale(1); }
.cache-file.cached { border-color: #3ce056; background: #1a1a35; color: #3ce056; transition: border-color .5s, background .5s, color .5s; }
[data-theme="light"] .cache-file.cached { border-color: #116821; background: #e0e8f5; color: #116821; }
.cache-file.f0 { left: 0; bottom: 0; z-index: 1; }
.cache-file.f1 { left: 14px; bottom: 26px; z-index: 2; }
.cache-file.f2 { left: 28px; bottom: 52px; z-index: 3; }
.cache-file.f3 { left: 42px; bottom: 78px; z-index: 4; }
.cache-req {
    position: absolute; top: 50%; left: -40px;
    font-size: 14px;
    opacity: 0; transform: translateX(-10px);
    transition: opacity .3s, transform .4s cubic-bezier(.2,.8,.3,1);
}
.cache-req.fly { opacity: 1; transform: translateX(0); }
.cache-req.land { opacity: 0; transform: translateX(50px); transition: all .3s ease-in; }
.cache-hit {
    position: absolute; top: 8px; right: -50px;
    font-size: 13px; font-weight: 700; color: #fff;
    background: #2e7d32; border-radius: 5px;
    padding: 3px 10px; white-space: nowrap;
    opacity: 0; transform: scale(.5);
    transition: opacity .25s, transform .25s;
    z-index: 10;
}
.cache-hit.show { opacity: 1; transform: scale(1); }
.cache-hit.fly { transform: translateY(-18px) scale(.8); opacity: 0; transition: all .4s ease-in; }
.cache-time {
    position: absolute; bottom: -8px; right: -46px;
    font-size: 12px; font-weight: 700; color: var(--green);
    font-family: monospace;
    opacity: 0; transition: opacity .3s;
}
.cache-time.show { opacity: 1; }
.cache-counter {
    font-size: 12px; font-weight: 600; color: #2196F3;
    font-family: monospace; transition: color .3s;
}
/* Forms illustration */
.illust-forms { background: linear-gradient(135deg, var(--illust-bg-1), var(--illust-bg-2)); }
.forms-scene { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; gap: 6px; }
.illust-free .forms-scene { top: 45%; }
.forms-ui { display: flex; flex-direction: column; gap: 6px; width: 140px; }
.forms-field { height: 14px; background: var(--illust-ring); border-radius: 4px; opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s; }
.forms-field-short { width: 70%; }
.forms-field-area { height: 28px; }
.forms-field.show { opacity: 1; transform: translateY(0); }
.forms-captcha { display: flex; gap: 6px; justify-content: center; margin-top: 2px; }
.forms-icon { font-size: 18px; color: var(--text-dim); opacity: .4; transition: opacity .3s, transform .3s; }
.forms-icon-active { opacity: 1; color: #2196F3; transform: scale(1.15); }
.forms-btn { height: 16px; width: 60px; background: #2196F3; border-radius: 4px; align-self: flex-end; opacity: 0; transition: opacity .3s; }
.forms-btn.show { opacity: 1; }
.forms-check { position: absolute; top: 12px; right: 12px; font-size: 16px; color: #28ca41; opacity: 0; transform: scale(0); transition: opacity .3s, transform .3s; }
.forms-check.show { opacity: 1; transform: scale(1); }

/* Backup illustration */
.illust-backup { background: linear-gradient(135deg, var(--illust-bg-1), var(--illust-bg-2)); }
.backup-scene { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; gap: 4px; }
.illust-free .backup-scene { top: 45%; }
.backup-db { color: var(--text-dim); opacity: 0; transform: scale(.8); transition: opacity .3s, transform .3s; }
.backup-db.show { opacity: 1; transform: scale(1); }
.backup-arrow { font-size: 22px; color: #2196F3; opacity: 0; transition: opacity .3s; }
.backup-arrow.show { opacity: 1; animation: backup-pulse 1.2s infinite; }
@keyframes backup-pulse { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(4px); } }
.backup-zip { color: #28ca41; opacity: 0; transform: scale(.8); transition: opacity .3s, transform .3s; }
.backup-zip.show { opacity: 1; transform: scale(1); }
.backup-label { font-size: 11px; font-weight: 700; color: #28ca41; font-family: monospace; opacity: 0; transition: opacity .3s; }
.backup-label.show { opacity: 1; }

/* Reviews illustration */
.illust-reviews { background: linear-gradient(135deg, var(--illust-bg-1), var(--illust-bg-2)); }
.reviews-scene { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; gap: 6px; width: 140px; }
.illust-free .reviews-scene { top: 45%; }
.reviews-stars { display: flex; gap: 2px; }
.rev-star { font-size: 20px; color: #FF9800; opacity: 0; transform: scale(.5); transition: opacity .25s, transform .25s; }
.rev-star.show { opacity: 1; transform: scale(1); }
.rev-star-half { opacity: .5; }
.reviews-avg { font-size: 28px; font-weight: 700; color: #FF9800; font-family: monospace; opacity: 0; transition: opacity .3s; }
.reviews-avg.show { opacity: 1; }
.reviews-bars { width: 100%; display: flex; flex-direction: column; gap: 3px; }
.rev-bar { display: flex; align-items: center; gap: 4px; font-size: 10px; color: var(--text-dim); opacity: 0; transform: translateX(-8px); transition: opacity .3s, transform .3s; }
.rev-bar.show { opacity: 1; transform: translateX(0); }
.rev-bar span { width: 10px; text-align: right; }
.rev-bar-track { flex: 1; height: 6px; background: var(--illust-ring); border-radius: 3px; overflow: hidden; }
.rev-bar-fill { height: 100%; width: 0; background: #FF9800; border-radius: 3px; transition: width .6s ease; }
.rev-bar.show .rev-bar-fill { width: var(--w); }
.reviews-badge { font-size: 10px; font-weight: 600; color: #28ca41; opacity: 0; transition: opacity .3s; }
.reviews-badge.show { opacity: 1; }

/* Logs illustration */
.illust-logs { background: linear-gradient(135deg, var(--illust-bg-1), var(--illust-bg-2)); }
.logs-scene { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 160px; }
.illust-free .logs-scene { top: 45%; }
.logs-lines { display: flex; flex-direction: column; gap: 4px; }
.logs-line { display: flex; align-items: center; gap: 5px; font-size: 9px; font-family: monospace; color: var(--text-dim); opacity: 0; transform: translateX(-10px); transition: opacity .25s, transform .25s; }
.logs-line.show { opacity: 1; transform: translateX(0); }
.logs-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.logs-dot-ok { background: #28ca41; }
.logs-dot-warn { background: #FF9800; }
.logs-text { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.logs-time { color: var(--text-dim); opacity: .6; }
.logs-pulse { position: absolute; top: 8px; right: 8px; width: 8px; height: 8px; border-radius: 50%; background: #28ca41; opacity: 0; }
.logs-pulse.show { opacity: 1; animation: logs-blink 1.5s infinite; }
@keyframes logs-blink { 0%,100%{ opacity: 1; } 50%{ opacity: .3; } }

/* Card tags for new plugins */
.tag-forms { background: #14203e; color: #64b5f6; }
.tag-backup { background: #172e1a; color: #6fd985; }
.tag-reviews { background: #362c1e; color: #ffb74d; }
.tag-logs { background: #1e1f2a; color: #b0b4bc; }
.tag-theme { background: #2a1e3a; color: #c4a6e6; }

.devkit-term {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 180px; background: var(--devkit-term-bg); border: 1px solid var(--illust-ring);
    border-radius: 8px; overflow: hidden;
}
.devkit-bar {
    display: flex; gap: 5px; padding: 6px 8px;
    background: rgba(255,255,255,.04); border-bottom: 1px solid var(--illust-ring);
}
.devkit-dot { width: 7px; height: 7px; border-radius: 50%; }
.devkit-body {
    padding: 8px 10px; min-height: 80px; font-family: monospace;
    font-size: 10px; line-height: 1.6;
}
.devkit-line {
    opacity: 0; transform: translateX(-4px);
    transition: opacity .25s, transform .25s;
    white-space: nowrap; overflow: hidden;
}
.devkit-line.show { opacity: 1; transform: translateX(0); }
.devkit-line .dk-key { color: var(--purple); }
.devkit-line .dk-str { color: var(--green); }
.devkit-line .dk-num { color: var(--yellow); }
.devkit-line .dk-fn { color: var(--accent); }
.devkit-line .dk-err { color: var(--red); }
.devkit-line .dk-dim { color: var(--text-dim); }
.devkit-line .dk-ai { color: #8457b7; }
.devkit-line .dk-ok { color: var(--green); font-weight: 700; }
.devkit-cursor {
    display: inline-block; width: 6px; height: 12px; background: var(--accent);
    vertical-align: middle; margin-left: 2px;
    animation: dk-blink 1s step-end infinite;
}
@keyframes dk-blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }
@keyframes tools-pop { 0%, 100% { transform: scale(1); opacity: .4; } 50% { transform: scale(1.4); opacity: 1; } }

/* === SERVICES === */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.service-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; transition: transform .2s, box-shadow .2s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-feature); }
.service-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.service-card h3 { font-size: 18px; color: var(--text-bright); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-dim); line-height: 1.6; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* === HERO HOME === */
.hero-home {
    position: relative;
    padding: 140px 0 60px;
    text-align: center;
    overflow: hidden;
}

.hh-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(74,144,217,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74,144,217,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 100%);
    pointer-events: none;
}

.hh-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}
.hh-glow-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: 20%;
    background: rgba(74,144,217,.08);
    animation: hh-drift 8s ease-in-out infinite;
}
.hh-glow-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: 15%;
    background: rgba(154,105,199,.06);
    animation: hh-drift 8s ease-in-out infinite reverse;
}

@keyframes hh-drift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -20px); }
}

.hh-title {
    font-size: 2.6em;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--text-bright);
    line-height: 1.2;
    position: relative;
}

.hh-title span {
    background: linear-gradient(135deg, var(--accent), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hh-sub {
    color: var(--text-dim);
    font-size: 1.1em;
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
    position: relative;
}

.hh-lead {
    color: var(--text-bright);
    font-size: clamp(1.1em, 3.4vw, 1.4em);
    font-weight: 600;
    max-width: 640px;
    margin: 0 auto 12px;
    line-height: 1.4;
    position: relative;
}

.hh-pills {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    position: relative;
}

.hh-pill {
    padding: 5px 14px;
    background: rgba(74,144,217,.08);
    border: 1px solid rgba(74,144,217,.15);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-light);
    letter-spacing: .3px;
}

.hh-numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 36px;
    position: relative;
}

.hh-num-card {
    text-align: center;
    padding: 32px 16px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}

.hh-num-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(74,144,217,.1);
    border-color: rgba(74,144,217,.3);
}

.hh-num-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .6s ease;
}

.hh-num-card:hover::before {
    transform: scaleX(1);
}

.hh-num-value {
    font-size: 44px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--hero-grad-start), var(--hero-grad-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.hh-num-desc {
    font-size: 14px;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 4px;
}

.hh-num-sub {
    font-size: 12px;
    color: var(--text-dimmer);
}

.hh-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.hero-home + #projects { padding-top: 40px; }
.hero-home + #projects .projects-grid { margin-top: 0; }

/* === PROJECTS === */
.projects-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 40px; }
.project-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .2s, box-shadow .2s; }
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-feature); }
.project-visual { display: block; height: 180px; position: relative; overflow: hidden; text-decoration: none; color: inherit; }
.project-body { padding: 24px; }
.project-tag { display: inline-block; padding: 3px 10px; border-radius: 12px; font-size: 11px; font-weight: 600; margin-bottom: 10px; }
.tag-wp { background: #242a35; color: #8b97a8; }
.tag-wpg { background: #25233d; color: #b0a3e6; }
.tag-web { background: #152e2d; color: #6fd985; }
.tag-soft { background: #261f42; color: #c4a6e6; }
.project-card h3 { font-size: 16px; color: var(--text-bright); margin-bottom: 8px; }
.project-card p { font-size: 13px; color: var(--text-dim); line-height: 1.6; margin-bottom: 14px; }
.project-link { color: var(--accent-light); text-decoration: none; font-size: 13px; font-weight: 600; }
.project-link:hover { text-decoration: none; }

/* Project visuals */
.vis-dashboard { background: linear-gradient(135deg, var(--illust-bg-1), var(--illust-bg-2)); }
.vis-bars { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; align-items: flex-end; }
.vis-bar { width: 18px; border-radius: 4px 4px 0 0; animation: bar-grow 2s ease infinite alternate; }
.vis-bar:nth-child(1) { height: 50px; background: var(--accent); animation-delay: 0s; }
.vis-bar:nth-child(2) { height: 80px; background: var(--red); animation-delay: .2s; }
.vis-bar:nth-child(3) { height: 35px; background: var(--yellow); animation-delay: .4s; }
.vis-bar:nth-child(4) { height: 65px; background: var(--green); animation-delay: .6s; }
.vis-bar:nth-child(5) { height: 45px; background: var(--purple); animation-delay: .8s; }
.vis-bar:nth-child(6) { height: 70px; background: var(--teal); animation-delay: 1s; }
@keyframes bar-grow { 0% { transform: scaleY(1); } 100% { transform: scaleY(.6); } }
.vis-donut { position: absolute; top: 20px; right: 30px; width: 60px; height: 60px; }

.vis-code { background: linear-gradient(135deg, #1e1e2e, var(--illust-bg-2)); }
[data-theme="light"] .vis-code { background: linear-gradient(135deg, #e8edf5, var(--illust-bg-2)); }
.vis-code-lines { position: absolute; top: 30px; left: 24px; right: 24px; font-family: monospace; font-size: 11px; line-height: 1.8; }
.vis-code-line { opacity: 0; animation: code-fade .5s ease forwards; }
.vis-code-line:nth-child(1) { color: #c792ea; animation-delay: .2s; }
.vis-code-line:nth-child(2) { color: #82aaff; animation-delay: .6s; }
.vis-code-line:nth-child(3) { color: #c3e88d; animation-delay: 1s; }
.vis-code-line:nth-child(4) { color: #ffcb6b; animation-delay: 1.4s; }
.vis-code-line:nth-child(5) { color: #89ddff; animation-delay: 1.8s; }
@keyframes code-fade { to { opacity: 1; } }

.vis-web { background: linear-gradient(135deg, #0d1b2a, var(--illust-bg-2)); }
[data-theme="light"] .vis-web { background: linear-gradient(135deg, #dce4f0, var(--illust-bg-2)); }
.vis-globe { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 100px; height: 100px; border: 2px solid rgba(74,144,217,.3); border-radius: 50%; animation: globe-spin 8s linear infinite; }
.vis-globe::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 100px; border: 2px solid rgba(74,144,217,.2); border-radius: 50%; }
.vis-globe::after { content: ''; position: absolute; top: 50%; left: 0; transform: translateY(-50%); width: 100px; height: 60px; border: 2px solid rgba(74,144,217,.2); border-radius: 50%; }
@keyframes globe-spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
.vis-orbit-dot { position: absolute; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: orbit-pulse 2s ease infinite; }
.vis-orbit-dot:nth-child(1) { top: 10px; left: 60px; animation-delay: 0s; }
.vis-orbit-dot:nth-child(2) { top: 80px; left: 20px; animation-delay: .7s; }
.vis-orbit-dot:nth-child(3) { top: 50px; right: 15px; animation-delay: 1.4s; }
@keyframes orbit-pulse { 0%,100% { opacity: .3; transform: scale(1); } 50% { opacity: 1; transform: scale(1.5); } }

.vis-plugin { background: linear-gradient(135deg, var(--illust-bg-1), var(--illust-bg-2)); }
.vis-puzzle { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.vis-pz { width: 40px; height: 40px; border-radius: 8px; position: absolute; animation: pz-float 3s ease infinite; }
.vis-pz:nth-child(1) { background: var(--accent); top: -40px; left: -40px; animation-delay: 0s; }
.vis-pz:nth-child(2) { background: var(--purple); top: -40px; left: 6px; animation-delay: .5s; }
.vis-pz:nth-child(3) { background: var(--red); top: 6px; left: -40px; animation-delay: 1s; }
.vis-pz:nth-child(4) { background: var(--yellow); top: 6px; left: 6px; animation-delay: 1.5s; }
@keyframes pz-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* WordPress Themes project visual */
.vis-themes { background: linear-gradient(135deg, #0d1b2a, var(--illust-bg-2)); overflow: visible; }
[data-theme="light"] .vis-themes { background: linear-gradient(135deg, #e8edf5, var(--illust-bg-2)); }
.vis-theme-stack { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 180px; height: 100px; }
.vis-theme-card { position: absolute; width: 150px; border-radius: 6px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,.25); transition: transform .4s ease; }
[data-theme="light"] .vis-theme-card { box-shadow: 0 4px 16px rgba(0,0,0,.1); background: #fff; }
.vis-theme-3 { top: 0; left: -20px; transform: rotate(-8deg) scale(.85); opacity: .5; z-index: 1; }
.vis-theme-2 { top: 4px; left: 14px; transform: rotate(-3deg) scale(.92); opacity: .7; z-index: 2; }
.vis-theme-1 { top: 8px; left: 48px; transform: rotate(2deg); z-index: 3; animation: theme-float 3s ease infinite; }
@keyframes theme-float { 0%,100% { transform: rotate(2deg) translateY(0); } 50% { transform: rotate(2deg) translateY(-5px); } }
.project-card:hover .vis-theme-3 { transform: rotate(-14deg) scale(.85) translateX(-8px); opacity: .6; }
.project-card:hover .vis-theme-2 { transform: rotate(-6deg) scale(.92) translateX(-4px); opacity: .8; }
.project-card:hover .vis-theme-1 { transform: rotate(4deg) translateX(4px); }
.vis-tb { display: flex; gap: 3px; padding: 5px 6px; background: rgba(0,0,0,.3); }
[data-theme="light"] .vis-tb { background: rgba(0,0,0,.08); }
.vis-tb span { width: 5px; height: 5px; border-radius: 50%; }
.vis-tb span:nth-child(1) { background: #ff5f57; }
.vis-tb span:nth-child(2) { background: #ffbd2e; }
.vis-tb span:nth-child(3) { background: #28ca41; }
.vis-th { height: 40px; }
.vis-tc { display: flex; gap: 3px; padding: 4px; }
.vis-tc div { flex: 1; height: 24px; border-radius: 3px; background: rgba(255,255,255,.08); }
[data-theme="light"] .vis-tc div { background: rgba(0,0,0,.06); }
.vis-tf { display: flex; gap: 3px; padding: 0 4px 4px; }
.vis-tf div { height: 8px; border-radius: 2px; background: rgba(255,255,255,.05); }
[data-theme="light"] .vis-tf div { background: rgba(0,0,0,.04); }
.vis-tf div:first-child { width: 40%; }
.vis-tf div:last-child { width: 25%; }

/* LW Images project visual */
.vis-images { background: linear-gradient(135deg, #0a1628, var(--illust-bg-2)); }
[data-theme="light"] .vis-images { background: linear-gradient(135deg, #e2eaf5, var(--illust-bg-2)); }
.vis-compress-scene { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); display: flex; align-items: center; gap: 16px; }
.vis-compress-before, .vis-compress-after { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.vis-file-icon { font-size: 36px; opacity: .8; }
.vis-compress-before .vis-file-size { font-size: 14px; font-weight: 700; color: #ff6b6b; font-family: monospace; }
.vis-compress-after .vis-file-size { font-size: 14px; font-weight: 700; color: #51cf66; font-family: monospace; }
.vis-compress-arrow { font-size: 24px; color: var(--accent); animation: arrow-pulse 1.5s ease infinite; }
@keyframes arrow-pulse { 0%,100% { opacity: .4; transform: translateX(0); } 50% { opacity: 1; transform: translateX(4px); } }
.vis-compress-badge { position: absolute; top: 14px; right: 16px; background: rgba(81,207,102,.15); color: #51cf66; font-size: 13px; font-weight: 700; padding: 3px 10px; border-radius: 10px; font-family: monospace; }
.tag-service { background: #1b2e33; color: #51cf66; }

/* LW Images catalog card illustration */
.illust-images { position: relative; background: linear-gradient(135deg, #0a1628 0%, #162340 100%); }
[data-theme="light"] .illust-images { background: linear-gradient(135deg, #e2eaf5 0%, #d0ddf0 100%); }
.illust-images .card-ai-badge { position: absolute; top: 10px; right: 12px; background: rgba(81,207,102,.15); color: #51cf66; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 8px; }
.images-scene { display: flex; align-items: center; justify-content: center; gap: 12px; height: 100%; }
.images-before, .images-after { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.images-before svg { color: #ff6b6b; opacity: .8; }
.images-after svg { color: #51cf66; opacity: .8; }
.images-arrow { font-size: 22px; color: var(--accent); animation: arrow-pulse 1.5s ease infinite; }
.images-size { font-size: 12px; font-weight: 700; font-family: monospace; }
.images-size-big { color: #ff6b6b; }
.images-size-small { color: #51cf66; }
.images-saving { position: absolute; bottom: 10px; right: 12px; background: rgba(81,207,102,.15); color: #51cf66; font-size: 14px; font-weight: 700; padding: 2px 10px; border-radius: 10px; font-family: monospace; }
.tag-images { background: #1b2e33; color: #51cf66; }

/* LW Images landing demo */
.lwimg-demo { display: flex; align-items: center; justify-content: center; gap: 32px; padding: 48px 24px; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); position: relative; }
.lwimg-demo__before, .lwimg-demo__after { text-align: center; }
.lwimg-demo__label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim); margin-bottom: 12px; }
.lwimg-demo__file { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.lwimg-demo__file svg { color: var(--text-dim); }
.lwimg-demo__before .lwimg-demo__file svg { color: #ff6b6b; opacity: .7; }
.lwimg-demo__after .lwimg-demo__file svg { color: #51cf66; opacity: .7; }
.lwimg-demo__name { font-size: 13px; color: var(--text); font-family: monospace; }
.lwimg-demo__size { font-size: 18px; font-weight: 700; font-family: monospace; }
.lwimg-demo__size--big { color: #ff6b6b; }
.lwimg-demo__size--small { color: #51cf66; }
.lwimg-demo__arrow { color: var(--accent); animation: arrow-pulse 1.5s ease infinite; }
.lwimg-demo__badge { position: absolute; top: 16px; right: 20px; background: rgba(81,207,102,.15); color: #51cf66; font-size: 16px; font-weight: 700; padding: 4px 14px; border-radius: 12px; font-family: monospace; }
@media (max-width: 600px) {
    .lwimg-demo { flex-direction: column; gap: 20px; padding: 32px 16px; }
    .lwimg-demo__arrow { transform: rotate(90deg); }
}

/* === APPROACH === */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 40px; }
.why-card { text-align: center; padding: 28px 16px; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); }
.why-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.why-card h3 { font-size: 14px; color: var(--text-bright); margin-bottom: 6px; }
.why-card p { font-size: 12px; color: var(--text-dim); line-height: 1.5; }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.contact-info h3 { font-size: 18px; color: var(--text-bright); margin-bottom: 20px; }
.contact-item { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.contact-item-icon { font-size: 20px; flex-shrink: 0; }
.contact-item strong { display: block; color: var(--text-bright); font-size: 14px; margin-bottom: 2px; }
.contact-item a, .contact-item span { color: var(--text-dim); font-size: 14px; }
.contact-owner { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); }
.contact-owner h3 { font-size: 16px; }
.contact-owner ul { list-style: none; }
.contact-owner li { font-size: 13px; color: var(--text-dim); padding: 4px 0; }
.contact-owner li strong { display: inline; color: var(--text); }
.contact-owner a { color: var(--accent-light); text-decoration: underline; }
.contact-form { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.contact-form h3 { font-size: 18px; color: var(--text-bright); margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; color: var(--text-dim); margin-bottom: 6px; }
.form-group input, .form-group textarea { width: 100%; padding: 10px 14px; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; color: var(--text); font-size: 14px; font-family: inherit; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(74,144,217,.15); }
.form-submit { background: var(--accent); color: #fff; border: none; border-radius: 8px; padding: 12px 28px; font-size: 15px; font-weight: 600; cursor: pointer; transition: background .2s; }
.form-submit:hover { background: #3a7fc9; }

/* === CTA BOX === */
.cta-section { text-align: center; padding: 80px 0; }
.cta-box { background: var(--bg2); border: 1px solid var(--border); border-radius: 20px; padding: 60px 40px; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 50% 120%, rgba(74,144,217,.08), transparent 50%); pointer-events: none; }
.cta-box h2 { font-size: 2em; color: var(--text-bright); margin-bottom: 12px; }
.cta-box p { color: var(--text-dim); margin-bottom: 28px; font-size: 1.05em; }

/* === COMPARISON TABLE === */
.comparison-table-wrap { margin-top: 48px; max-width: 700px; margin-left: auto; margin-right: auto; }
.comparison-table { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; font-size: 14px; }
.comparison-table th, .comparison-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); }
.comparison-table thead th { background: var(--bg2); color: var(--text-dim); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; text-align: center; }
.comparison-table thead th:first-child { text-align: left; }
.comparison-table tbody tr:nth-child(odd) { background: rgba(255,255,255,.02); }
.comparison-table tbody tr:nth-child(even) { background: rgba(74,144,217,.03); }
.comparison-table tbody tr:hover { background: rgba(74,144,217,.08); }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody td:first-child { color: var(--text); font-weight: 500; }
.comparison-table td:nth-child(2), .comparison-table td:nth-child(3) { text-align: center; width: 80px; }
.ct-yes { color: var(--green); font-weight: 700; font-size: 18px; }
.ct-no { color: var(--text-dimmer); font-size: 16px; }

/* === SUPPORT CARDS === */
.support-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-top: 40px; }
.support-card { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 24px 16px; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); text-decoration: none; color: var(--text); transition: transform .2s, box-shadow .2s; text-align: center; }
.support-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-feature); color: var(--text); }
.support-card-icon { font-size: 28px; }
.support-card strong { font-size: 14px; color: var(--text-bright); }
.support-card span { font-size: 12px; color: var(--text-dim); }

/* === LEGAL PAGES === */
.legal-page { padding: 120px 0 80px; }
.legal-page h1 { font-size: 2em; font-weight: 700; color: var(--text-bright); margin-bottom: 8px; }
.legal-meta { color: var(--text-dim); font-size: 14px; margin-bottom: 40px; }
.legal-content h2 { font-size: 1.3em; color: var(--text-bright); margin: 32px 0 12px; }
.legal-content h3 { font-size: 1.1em; color: var(--text-bright); margin: 24px 0 8px; }
.legal-content p { color: var(--text-dim); line-height: 1.7; margin-bottom: 12px; }
.legal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 12px; }
.legal-content li { color: var(--text-dim); line-height: 1.7; margin-bottom: 4px; }
.legal-content a { color: var(--accent); text-decoration: underline; }
.legal-content strong { color: var(--text); }

/* === DASHBOARD MOCK === */
.dashboard-section { padding: 40px 0 80px; }

.dashboard-mock {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    max-width: 960px;
    margin: 0 auto;
}

.theme-preview {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.theme-preview__desktop {
    flex: 1;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.theme-preview__desktop img {
    display: block;
    width: 100%;
    height: auto;
}
.theme-preview__mobile {
    flex: 0 0 180px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    padding: 8px;
}
.theme-preview__mobile img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
}
@media (max-width: 768px) {
    .theme-preview { flex-direction: column; gap: 16px; }
    .theme-preview__mobile { flex: none; width: 160px; margin: 0 auto; }
}

.mock-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg3);
    border-bottom: 1px solid var(--border);
}

.mock-dot { width: 10px; height: 10px; border-radius: 50%; }

.mock-url {
    flex: 1;
    margin-left: 8px;
    background: var(--bg);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    color: var(--text-dimmer);
}

.mock-body { padding: 24px; }

.mock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.mock-title { font-size: 18px; font-weight: 700; color: var(--text-bright); }
.mock-badge { padding: 4px 12px; background: rgba(40, 202, 65, .15); color: var(--green); border-radius: 12px; font-size: 11px; font-weight: 600; }
[data-theme="light"] .mock-badge { background: #d8f2e0; }

.mock-cards { display: flex; gap: 12px; margin-bottom: 20px; }

.mock-card {
    flex: 1;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
}

.mock-card-num { font-size: 28px; font-weight: 700; color: var(--accent); }
.mock-card-label { font-size: 11px; color: var(--text-dimmer); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }

.mock-charts { display: flex; gap: 12px; margin-bottom: 20px; }

.mock-chart-box {
    flex: 1;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mock-chart-title { font-size: 12px; color: var(--text-dim); margin-bottom: 12px; text-align: center; }
.donut-svg { width: 120px; height: 120px; }

.mock-table {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.mock-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 10px 16px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dimmer);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border);
}

.mock-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 10px 16px;
    font-size: 13px;
    border-bottom: 1px solid var(--border);
}

.mock-table-row:last-child { border-bottom: none; }
.mock-table-row .url { color: var(--accent); }
[data-theme="light"] .mock-table-row .url { color: #2a6cb8; }
.mock-table-row .num { color: var(--text-dim); }
.mock-table-row .status-ok { color: var(--green); }
.mock-table-row .status-warn { color: var(--yellow); }
[data-theme="light"] .mock-table-row .status-warn { color: #8a5d00; }
.mock-table-row .status-err { color: var(--red); }

/* === FEATURES GRID === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: transform .2s, box-shadow .2s;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-feature);
}

.feature-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.feature-card h3 { font-size: 16px; color: var(--text-bright); margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--text-dim); line-height: 1.6; }

/* === STEPS (how it works) === */
.steps { display: flex; gap: 24px; margin-top: 40px; }

.step {
    flex: 1;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
}

.step h3 { font-size: 15px; color: var(--text-bright); margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--text-dim); line-height: 1.6; }

/* === PRIVACY BOX === */
.privacy-box {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-left: 4px solid var(--green);
    border-radius: var(--radius);
    padding: 32px;
    margin-top: 40px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.privacy-icon { font-size: 36px; flex-shrink: 0; }
.privacy-box h3 { font-size: 18px; color: var(--text-bright); margin-bottom: 10px; }
.privacy-points { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.privacy-points li { font-size: 14px; color: var(--text-dim); padding-left: 20px; position: relative; }
.privacy-points li::before { content: '\2713'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* === FAQ (button-style) === */
.faq-list { margin-top: 40px; max-width: 700px; margin-left: auto; margin-right: auto; }

.faq-item { border-bottom: 1px solid var(--border); }

/* details/summary FAQ */
details.faq-item summary {
    color: var(--text-bright);
    font-size: 15px;
    font-weight: 600;
    padding: 20px 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

details.faq-item summary::-webkit-details-marker { display: none; }

details.faq-item summary::after {
    content: '+';
    font-size: 20px;
    color: var(--accent);
    transition: transform .2s;
    flex-shrink: 0;
    margin-left: 16px;
}

details.faq-item[open] summary::after { transform: rotate(45deg); }

details.faq-item p,
.faq-answer p {
    padding-bottom: 20px;
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.7;
}

/* Legacy button/div FAQ (kept for backwards compat) */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-bright);
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

.faq-question::after {
    content: '+';
    font-size: 20px;
    color: var(--accent);
    transition: transform .2s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

/* === PRICING === */
.pricing-section { padding: 80px 0; }
.pricing-title { text-align: center; font-size: 2em; font-weight: 700; color: var(--text-bright); margin-bottom: 40px; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}
/* Одиночная карточка в блоке «Выберите тариф» — не шире 468px, по центру.
   Двойная спецификация (.pricing-grid.pricing-grid--solo), чтобы перебить базовый .pricing-grid. */
.pricing-grid.pricing-grid--solo { grid-template-columns: minmax(280px, 468px); justify-content: center; }

.pricing-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: transform .2s, border-color .2s;
    position: relative;
}

.pricing-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.pricing-card.popular { border-color: var(--accent); }

.pricing-card.popular::before {
    content: attr(data-badge);
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-duration { font-size: 14px; color: var(--text-dim); margin-bottom: 8px; }
.pricing-name { font-size: 1.3rem; margin-bottom: 16px; color: var(--text-bright); }

.pricing-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.pricing-price small { font-size: 14px; color: var(--text-dim); font-weight: 400; }

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 24px 0;
    font-size: 14px;
}

.pricing-features li { padding: 6px 0; color: var(--text-dim); }
.pricing-features li::before { content: '\2713 '; color: var(--green); font-weight: 700; }

/* === NO RESULTS === */
.no-results { text-align: center; padding: 60px 20px; color: var(--text-dimmer); display: none; }
.no-results.visible { display: block; }
.no-results span { font-size: 48px; display: block; margin-bottom: 12px; }

/* === WOOCOMMERCE OVERRIDES === */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    background: var(--bg2) !important;
    border-color: var(--border) !important;
    color: var(--text) !important;
    border-radius: var(--radius) !important;
}

.woocommerce-message { border-left-color: var(--green) !important; }
.woocommerce-error { border-left-color: var(--red) !important; }
.woocommerce-message a, .woocommerce-info a { color: var(--accent) !important; }

.woocommerce table.shop_table {
    background: var(--bg2);
    border-color: var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    border-color: var(--border) !important;
    color: var(--text);
}

.woocommerce table.shop_table thead th {
    background: var(--bg2);
    color: var(--text-dim);
}

.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button {
    background: var(--accent) !important;
    color: #fff !important;
    border-radius: 8px !important;
    border: none !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    transition: background .2s !important;
}

.woocommerce .button:hover,
.woocommerce button.button:hover {
    background: #3a7fc9 !important;
}

.woocommerce form .form-row label { color: var(--text-dim); }

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    background: var(--bg2);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 8px;
    padding: 10px 14px;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus {
    border-color: var(--accent);
    outline: none;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dim);
    border-bottom: 1px solid var(--border);
}
.woocommerce-MyAccount-navigation ul li:last-child a {
    border-bottom: none;
}

.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover {
    color: var(--text-bright);
    background: var(--bg2);
}

.woocommerce-account .woocommerce-MyAccount-content { color: var(--text); }
.woocommerce-account .woocommerce-MyAccount-content section { padding: 0; }

/* WooCommerce Blocks notices (dark theme) */
.wc-block-components-notice-banner {
    background: var(--bg2) !important;
    border-color: var(--border) !important;
    color: var(--text) !important;
    border-radius: var(--radius) !important;
    padding: 16px 20px !important;
}

.wc-block-components-notice-banner > svg {
    background-color: var(--text-dim) !important;
}

.wc-block-components-notice-banner.is-success {
    background: rgba(40, 202, 65, .08) !important;
    border-color: var(--green) !important;
}

.wc-block-components-notice-banner.is-success > svg {
    background-color: var(--green) !important;
}

.wc-block-components-notice-banner.is-error {
    background: rgba(255, 95, 87, .08) !important;
    border-color: var(--red) !important;
}

.wc-block-components-notice-banner.is-error > svg {
    background-color: var(--red) !important;
}

.wc-block-components-notice-banner.is-warning {
    background: rgba(255, 189, 46, .08) !important;
    border-color: var(--yellow) !important;
}

.wc-block-components-notice-banner.is-warning > svg {
    background-color: var(--yellow) !important;
}

.wc-block-components-notice-banner.is-info {
    background: rgba(74, 144, 217, .08) !important;
    border-color: var(--accent) !important;
}

.wc-block-components-notice-banner.is-info > svg {
    background-color: var(--accent) !important;
}

.wc-block-components-notice-banner .wc-block-components-notice-banner__content,
.wc-block-components-notice-banner .wc-block-components-notice-banner__content a,
.wc-block-components-notice-banner .wc-forward {
    color: var(--text) !important;
}

.wc-block-components-notice-banner .wc-forward:hover {
    color: var(--accent-light) !important;
}

.wc-block-components-notice-banner > .wc-block-components-button {
    color: var(--text-dim) !important;
}

/* WooCommerce Blocks checkout/cart dark theme */
.wc-block-components-totals-wrapper,
.wc-block-components-totals-item {
    border-color: var(--border) !important;
    color: var(--text) !important;
}

.wc-block-components-order-summary,
.wc-block-checkout__form,
.wc-block-components-express-payment,
.wc-block-components-checkout-step {
    color: var(--text) !important;
}

.wc-block-components-text-input input,
.wc-block-components-text-input textarea,
.wc-block-components-combobox .components-combobox-control input {
    background: var(--bg2) !important;
    border-color: var(--border) !important;
    color: var(--text) !important;
    border-radius: 8px !important;
}

.wc-block-components-text-input label,
.wc-block-components-combobox label {
    color: var(--text-dim) !important;
}

.wc-block-components-checkout-step__heading,
.wc-block-components-checkout-step__description {
    color: var(--text) !important;
}

.wc-block-components-radio-control__label,
.wc-block-components-radio-control__description,
.wc-block-components-radio-control__secondary-label,
.wc-block-components-radio-control__secondary-description {
    color: var(--text) !important;
}

.wp-block-woocommerce-checkout-order-summary-block {
    background: var(--bg2) !important;
    border-color: var(--border) !important;
    border-radius: var(--radius) !important;
}

/* Hide default WC elements we replace */
.woocommerce-products-header { display: none; }

/* === SUPPORT SECTION === */
.support-subtitle { color: var(--text-dim); font-size: 16px; max-width: 520px; margin: 8px auto 24px; line-height: 1.6; }

.support-cta-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.support-cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 36px 32px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    transition: transform .2s, box-shadow .2s, border-color .2s;
    width: 280px;
    text-align: center;
}

.support-cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(74, 144, 217, .15);
    border-color: var(--accent);
    color: var(--text);
}

.support-cta-icon { color: var(--accent); display: flex; align-items: center; justify-content: center; }
.support-cta-card strong { font-size: 18px; color: var(--text-bright, var(--text)); }
.support-cta-desc { font-size: 13px; color: var(--text-dim); line-height: 1.5; }

.support-cta-btn {
    display: inline-block;
    margin-top: 4px;
    padding: 8px 20px;
    background: #3574b8;
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: background .2s;
}

.support-cta-card:hover .support-cta-btn { background: #2c5f99; }

/* SEO text */
.seo-text-section { padding: 48px 0; border-top: 1px solid var(--border); }
.seo-text-section h2 { font-size: 1.2rem; margin-bottom: 12px; color: var(--text-dim); }
.seo-text-section p { font-size: 0.92rem; line-height: 1.7; color: var(--text-dim); margin-bottom: 12px; max-width: 800px; }
.seo-text-section p:last-child { margin-bottom: 0; }

/* === FOOTER === */
.site-footer {
    margin-top: auto;
    border-top: 1px solid var(--border);
    padding: 30px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy { font-size: 13px; color: var(--text-dim); }

.lwta-cb-reject { color: #555 !important; }

.footer-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.footer-links a { color: var(--text-dim); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: var(--accent-light); }

.footer-donate { display: flex; gap: 12px; align-items: center; }
.footer-donate a { color: var(--text-dimmer); transition: color .2s; display: flex; align-items: center; }
.footer-donate a:hover { color: var(--accent-light); }

/* Payment logos */
.payment-logos-section { padding: 32px 0; border-top: 1px solid var(--border); }
.payment-logos { width: 100%; max-width: 600px; height: auto; opacity: .85; }
[data-theme="light"] .payment-logos-dark,
[data-theme="dark"] .payment-logos-light { display: none; }
[data-theme="light"] .payment-logos-light,
[data-theme="dark"] .payment-logos-dark { display: inline; }
.payment-logos-footer { max-width: 400px; height: 28px; opacity: .5; }
.footer-payment-logos { display: flex; align-items: center; justify-content: center; width: 100%; margin-top: 8px; }

/* Legal page (shared) */
.legal-page { padding: 60px 0; }
.legal-page h1 { margin-bottom: 8px; }
.legal-meta { color: var(--text-dim); margin-bottom: 32px; }
.legal-content h2 { margin-top: 32px; margin-bottom: 12px; font-size: 1.25rem; }
.legal-content h3 { margin-top: 24px; margin-bottom: 8px; font-size: 1.1rem; }
.legal-content p { margin-bottom: 12px; line-height: 1.7; }
.legal-content ul { margin: 0 0 16px 24px; }
.legal-content li { margin-bottom: 8px; line-height: 1.7; }
.legal-content ol { margin: 0 0 16px 24px; }
.legal-content ol li { margin-bottom: 8px; line-height: 1.7; }
.legal-content a { color: var(--accent-light); }
.legal-receipt-link { display: inline-block; margin-top: 8px; padding: 8px 20px; border: 1px solid var(--accent); border-radius: 8px; color: var(--accent-light); text-decoration: none; transition: background .2s; }
.legal-receipt-link:hover { background: var(--accent); color: #fff; }

/* === 404 PAGE === */
.error-page { text-align: center; padding: 120px 20px; flex: 1; }

.error-code {
    font-size: 8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.error-page h1 { font-size: 1.5rem; margin-bottom: 12px; }
.error-page p { color: var(--text-dim); margin-bottom: 32px; }

/* === THEME TOGGLE === */
.theme-toggle {
    background: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 5px 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    transition: color .2s, border-color .2s;
    -webkit-tap-highlight-color: rgba(74,144,217,.3);
    touch-action: manipulation;
    min-width: 36px;
    min-height: 36px;
    position: relative;
}
.theme-toggle::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.theme-toggle:hover { color: var(--accent); border-color: var(--accent); }
.theme-toggle svg { width: 16px; height: 16px; display: block; pointer-events: none; }
.theme-toggle .icon-sun { display: block; }
.theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: block; }

/* === LIGHT THEME: tag contrast overrides === */
[data-theme="light"] .tag-analytics,
[data-theme="light"] .tag-wp { background: #eef1f5; color: #66727f; }
[data-theme="light"] .tag-wpg { background: #ece9fa; color: #5b4aa0; }
[data-theme="light"] .tag-seo,
[data-theme="light"] .tag-web { background: #d8f2e0; color: #137820; }
[data-theme="light"] .tag-security { background: #f8e2e3; color: #c23028; }
[data-theme="light"] .tag-perf { background: #f8f0dd; color: #7a5500; }
[data-theme="light"] .tag-tools,
[data-theme="light"] .tag-soft { background: #e9e3f4; color: #6b4d8a; }
[data-theme="light"] .tag-cache { background: #d7eafb; color: #1565c0; }
[data-theme="light"] .tag-media { background: #d4f2f6; color: #076268; }
[data-theme="light"] .tag-ecommerce { background: #f8ead6; color: #8a5000; }
[data-theme="light"] .tag-images,
[data-theme="light"] .tag-service { background: #def3e6; color: #1a7a2a; }
[data-theme="light"] .tag-forms { background: #d7eafb; color: #1565c0; }
[data-theme="light"] .tag-backup { background: #def3e6; color: #1a7a2a; }
[data-theme="light"] .tag-reviews { background: #f8ead6; color: #8a5000; }
[data-theme="light"] .tag-logs { background: #eaebed; color: #44494f; }
[data-theme="light"] .tag-theme { background: #e9e3f4; color: #6b4d8a; }

/* === SVG TRACK (donut backgrounds) === */
.svg-track { stroke: var(--illust-ring); }

/* === THEME TRANSITION === */
body, .site-nav, .plugin-card, .feature-card, .step, .pricing-card,
.mock-bar, .dashboard-mock, .faq-question, .privacy-box,
.search-bar input, .woocommerce-MyAccount-navigation ul,
.woocommerce-MyAccount-navigation ul li a {
    transition: background-color .3s, color .3s, border-color .3s, box-shadow .3s;
}

/* === TOAST NOTIFICATIONS === */
.lw-toast-container {
    position: fixed;
    top: 80px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    max-width: 420px;
    width: calc(100% - 48px);
}

.lw-toast {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 44px 16px 20px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    pointer-events: auto;
    transform: translateX(120%);
    opacity: 0;
    transition: transform .35s cubic-bezier(.32,.72,0,1), opacity .35s;
    position: relative;
}

.lw-toast.show { transform: translateX(0); opacity: 1; }
.lw-toast.hide { transform: translateX(120%); opacity: 0; }

.lw-toast-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    color: var(--text-dimmer);
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
}
.lw-toast-close:hover { color: var(--text); }

.lw-toast.toast-error { border-left: 3px solid var(--red); }
.lw-toast.toast-success { border-left: 3px solid var(--green); }
.lw-toast.toast-info { border-left: 3px solid var(--accent); }

.lw-toast a { color: var(--accent) !important; text-decoration: underline; }

@media (max-width: 640px) {
    .lw-toast-container { top: 70px; right: 12px; max-width: calc(100% - 24px); width: calc(100% - 24px); }
}

/* === WP ADMIN BAR — bottom === */
#wpadminbar { top: auto !important; bottom: 0; position: fixed !important; }
html.admin-bar { margin-top: 0 !important; }
html.admin-bar body { margin-bottom: 32px; }
@media screen and (max-width: 782px) {
    html.admin-bar body { margin-bottom: 46px; }
}

/* === RESPONSIVE === */
@media (max-width: 960px) {
    .hero h1 { font-size: 2.4em; }
    .page-header h1 { font-size: 2em; }
    .hh-title { font-size: 2em; }
    .hh-numbers { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .steps { flex-direction: column; }
    .mock-charts { flex-direction: column; }
    .mock-cards { flex-wrap: wrap; }
    .mock-card { min-width: calc(50% - 6px); }
    .plugins-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }

    html, body { position: relative; width: 100vw; overflow-x: hidden; }

    /* Mobile nav */
    .nav-logo-sub { display: none; }
    .nav-logo-bracket { font-size: 36px; }
    .nav-logo-name { position: relative; top: 3px; }
    .site-nav { width: 100vw; }
    .nav-links { display: none; }
    .nav-desktop-only { display: none !important; }
    .nav-mobile-controls { display: flex; align-items: center; gap: 10px; margin-left: auto; margin-right: 12px; }
    .nav-hamburger { display: block; }
    body.nav-locked { overflow: hidden; }
    .site-nav.open .nav-links {
        display: flex;
        flex-direction: column;
        gap: 14px;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        height: calc(100vh - 60px);
        background: var(--nav-bg-mobile);
        padding: 20px 24px;
        overflow-y: auto;
        z-index: 100;
    }

    /* Hide currency widget when mobile menu is open */
    .site-nav.open ~ .lw-currency-widget { display: none !important; }

    /* Mobile mega-menu: inline, no hover dropdowns */
    .nav-mega-dropdown { display: none !important; }
    .nav-mega-arrow { display: none; }
    .nav-mega-trigger { pointer-events: none; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim) !important; padding: 8px 0 4px; }

    /* Mobile catalog sections */
    .site-nav.open .nav-mob-section { display: block; list-style: none; width: 100%; }
    .nav-mob-cats { display: flex; flex-direction: column; gap: 2px; width: 100%; }
    .nav-mob-cat-row { display: flex; align-items: center; width: 100%; }
    .nav-mob-cat-link {
        flex: 1; display: flex; align-items: center; gap: 10px;
        padding: 10px 12px; font-size: 14px; color: var(--text-dim);
        text-decoration: none; border-radius: 6px; text-align: left;
    }
    .nav-mob-cat-link:hover, .nav-mob-cat-link.active { color: var(--text-bright); background: var(--border); }
    .nav-mob-toggle {
        width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
        background: none; border: none; color: var(--text-dim); cursor: pointer;
        border-radius: 6px; transition: all .2s; flex-shrink: 0;
    }
    .nav-mob-toggle:hover { background: var(--border); color: var(--text-bright); }
    .nav-mob-toggle.open svg { transform: rotate(180deg); }
    .nav-mob-sub { padding-left: 28px; display: none; flex-direction: column; gap: 1px; width: 100%; }
    .nav-mob-toggle svg { transition: transform .2s; }
    .nav-mob-sub-link.has-desc { padding: 8px 12px; }
    .nav-mob-sub-link {
        display: flex; align-items: center; gap: 10px;
        padding: 7px 12px; font-size: 13px; color: var(--text-dim);
        text-decoration: none; border-radius: 4px; text-align: left;
    }
    .nav-mob-sub-link .nav-mega-icon { color: var(--accent); flex-shrink: 0; }
    .nav-mob-sub-link:hover { color: var(--text-bright); background: var(--border); }
}

@media (max-width: 640px) {
    .hero { padding: 120px 0 60px; }
    .hero h1 { font-size: 1.8em; }
    .hero-compact { padding: 100px 0 40px; }
    .hero-subtitle { font-size: 1em; }
    .hero-price { font-size: 2rem; }
    .page-header { padding: 60px 0 20px; }
    .page-header h1 { font-size: 1.6em; }
    .hero-home { padding: 120px 0 40px; }
    .hh-title { font-size: 1.6em; }
    .hh-numbers { grid-template-columns: 1fr 1fr; }
    .hh-num-value { font-size: 32px; }
    .section-title { font-size: 1.5em; }
    .features-grid { grid-template-columns: 1fr; }
    .plugins-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .mock-cards { flex-direction: column; }
    .mock-table-header,
    .mock-table-row { grid-template-columns: 2fr 1fr 1fr; }
    .mock-table-header span:nth-child(4),
    .mock-table-row span:nth-child(4) { display: none; }
    .privacy-box { flex-direction: column; }
    .services-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; gap: 12px; }
    .contact-grid { grid-template-columns: 1fr; }
    .cta-box { padding: 32px 16px; border-radius: 12px; }
    .cta-box h2 { font-size: 1.5em; }
    .support-cards { grid-template-columns: 1fr 1fr; }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 8px 16px; }
    .footer-payment-logos { margin-top: 16px; }
    .payment-logos-footer { max-width: 100%; }
}

/* ─── Hide admin bar on mobile ─── */
@media (max-width: 768px) {
    #wpadminbar { display: none !important; }
    html { margin-top: 0 !important; }
}

/* ─── Currency Widget ─── */
.lw-currency-widget {
    position: fixed; right: 16px; top: 50%; transform: translateY(-50%);
    display: flex; flex-direction: column; gap: 4px;
    background: var(--bg2); border: 1px solid var(--border); border-radius: 8px;
    padding: 4px; z-index: 1000; box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.lw-cw-btn {
    padding: 8px 12px; font-size: 12px; font-weight: 600; color: var(--text-dim);
    background: transparent; border: none; border-radius: 6px; text-decoration: none;
    text-align: center; transition: all .2s; cursor: pointer; display: block; line-height: 1;
    font-family: inherit; -webkit-tap-highlight-color: rgba(74,144,217,.3); touch-action: manipulation;
}
.lw-cw-btn:hover { color: var(--text-bright); background: var(--border); }
.lw-cw-btn.active { background: #3574b8; color: #fff; }

/* Multi-currency: all currencies rendered, JS shows active */
.lw-cur { display: none; }
.lw-cur-BYN { display: inline; }
.lw-price-equiv { font-size: 0.75em; color: var(--text-dim); margin-left: 4px; }

@media (max-width: 768px) {
    .lw-currency-widget { right: 8px; padding: 3px; }
    .lw-cw-btn { padding: 6px 10px; font-size: 11px; }
}

/* ─── Checkout Page ─── */
.checkout-page { padding: 80px 0 120px; }

.checkout-banner {
    background: #1d2327; color: #4ade80; font-family: monospace; font-size: 16px;
    letter-spacing: 2px; padding: 12px 18px; border-radius: 8px; text-align: center;
    margin: 0 0 20px; user-select: all;
}
[data-theme="light"] .checkout-banner { background: #1d2327; }

.checkout-renew-notice {
    background: var(--bg2); border: 1px solid var(--accent); border-radius: 8px;
    padding: 10px 16px; margin-bottom: 20px; font-size: 14px; color: var(--accent);
}
.checkout-renew-notice code { background: rgba(74,144,217,.15); padding: 2px 6px; border-radius: 4px; }

.checkout-product {
    display: flex; gap: 20px; background: var(--bg2); border: 1px solid var(--border);
    border-radius: 16px; padding: 24px; margin-bottom: 24px;
}
.checkout-product-img { width: 100px; height: 100px; object-fit: contain; border-radius: 12px; flex-shrink: 0; }
.checkout-product-info { flex: 1; min-width: 0; }
.checkout-product-title { font-size: 1.3rem; font-weight: 700; color: var(--text-bright); margin: 0 0 6px; }
.checkout-product-desc { font-size: 13px; color: var(--text-dim); margin: 0 0 14px; line-height: 1.5; }

.checkout-product-meta { margin-top: 4px; }
.checkout-meta-inline { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.checkout-price-monthly { font-size: 18px; color: var(--accent); font-weight: 700; }

.checkout-tier-badge {
    display: inline-block; padding: 3px 12px; border-radius: 20px; font-size: 12px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px;
}
.tier-lite  { background: rgba(100,100,100,.2); color: var(--text-dim); }
.tier-basic { background: rgba(74,144,217,.15); color: var(--accent); }
.tier-max   { background: rgba(168,85,247,.15); color: #a855f7; }

.checkout-month-select {
    background: var(--bg); border: 1px solid var(--border); color: var(--text-bright);
    padding: 6px 12px; border-radius: 8px; font-size: 14px; cursor: pointer;
}

.checkout-features {
    list-style: none; margin: 14px 0 0; padding: 0; font-size: 13px;
}
.checkout-features li { padding: 3px 0; color: var(--text-dim); }
.checkout-features li::before { content: '\2713 '; color: var(--green); font-weight: 700; }

/* Form */
.checkout-form { display: flex; flex-direction: column; gap: 16px; }
.checkout-field label { display: block; font-size: 13px; font-weight: 600; color: var(--text-bright); margin-bottom: 6px; }
.checkout-field .required { color: #ef4444; }
.checkout-field input {
    width: 100%; padding: 10px 14px; background: var(--bg2); border: 1px solid var(--border);
    border-radius: 8px; color: var(--text-bright); font-size: 14px; transition: border-color .2s;
    box-sizing: border-box;
}
.checkout-field input:focus { border-color: var(--accent); outline: none; }

/* Payment placeholder */
.checkout-payment { margin-top: 8px; }
.checkout-payment h3 { font-size: 14px; font-weight: 600; color: var(--text-bright); margin: 0 0 8px; }
.checkout-payment-placeholder {
    background: var(--bg2); border: 1px dashed var(--border); border-radius: 8px;
    padding: 16px; text-align: center; color: var(--text-dim); font-size: 13px;
}

/* Summary */
.checkout-summary {
    background: var(--bg2); border: 1px solid var(--border); border-radius: 12px;
    padding: 16px 20px; margin-top: 8px;
}
.checkout-summary-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; color: var(--text-dim); }
.checkout-summary-discount { color: var(--green); }
.checkout-summary-total { font-size: 18px; font-weight: 700; color: var(--text-bright); border-top: 1px solid var(--border); padding-top: 10px; margin-top: 4px; }

.checkout-action { margin-top: 8px; }
.checkout-submit {
    width: 100%; padding: 14px; font-size: 16px; font-weight: 600; justify-content: center;
}
.checkout-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.checkout-hint {
    text-align: center; padding: 14px; background: var(--bg2); border: 1px dashed var(--border);
    border-radius: 8px; color: var(--text-dim); font-size: 14px;
}
.checkout-hint:empty { display: none; }

/* Sticky mobile bar */
.checkout-sticky {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: var(--bg2); border-top: 1px solid var(--border);
    padding: 12px 16px; align-items: center; justify-content: space-between; gap: 12px;
    box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}
.checkout-sticky-total { font-size: 18px; font-weight: 700; color: var(--text-bright); }
.checkout-sticky-btn { flex: 1; padding: 12px; font-size: 14px; font-weight: 600; white-space: nowrap; }
.checkout-sticky-btn:disabled { opacity: 0.6; }
.checkout-sticky-hint { flex: 1; text-align: center; font-size: 13px; color: var(--text-dim); }
.checkout-sticky-action { flex: 1; display: flex; align-items: center; }

@media (max-width: 768px) {
    .checkout-sticky { display: flex; }
    .checkout-submit { display: none; }
    .checkout-page { padding-bottom: 100px; }
    .checkout-product { flex-direction: column; }
    .checkout-product-img { width: 64px; height: 64px; }
}

/* top spacing under fixed nav (info pages) */
.legal-page{padding-top:130px}.page-header{padding-top:120px}@media(max-width:768px){.legal-page{padding-top:96px}.page-header{padding-top:88px}}

.lang-switch .lang-btn.active{color:#fff}

/* === LW COMPRESS PROMO (front page) === */
.compress-promo {
    position: relative;
    overflow: hidden;
    padding: 64px 0;
    margin-bottom: 32px;
    background: linear-gradient(135deg, rgba(74,144,217,.12) 0%, rgba(154,105,199,.10) 100%), var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.compress-promo::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    top: -160px;
    right: 8%;
    border-radius: 50%;
    background: rgba(74,144,217,.14);
    filter: blur(90px);
    pointer-events: none;
}
.compress-promo .container { position: relative; }
.compress-promo + #projects { padding-top: 40px; }
.compress-promo + #projects .projects-grid { margin-top: 0; }
.cp-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }
.cp-points { list-style: none; margin: 20px 0 28px; display: flex; flex-wrap: wrap; gap: 10px 14px; }
.cp-points li { color: var(--text); font-size: 15px; }
.cp-points li::before { content: "\2713"; color: #51cf66; font-weight: 700; margin-right: 4px; }
.cp-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.cp-demo { position: relative; min-height: 240px; border: 1px solid var(--border); border-radius: var(--radius); background: linear-gradient(135deg, #0a1628, var(--illust-bg-2)); display: flex; align-items: center; justify-content: center; }
[data-theme="light"] .cp-demo { background: linear-gradient(135deg, #e2eaf5, var(--illust-bg-2)); }
.cp-viz { width: 78%; display: flex; flex-direction: column; gap: 18px; padding: 26px 0; }
.cp-stat { text-align: center; font-family: monospace; font-weight: 800; font-size: 44px; color: #51cf66; line-height: 1.1; }
.cp-stat small { display: block; font-family: inherit; font-size: 13px; color: var(--text-dim); font-weight: 600; padding-top: 8px; }
.cp-stat-icon { font-size: 48px; line-height: 1; vertical-align: top; margin: 0; color: #fff; font-weight: 400; }
[data-theme="light"] .cp-stat-icon { color: #1a1a2e; }
.cp-bar-row { display: flex; align-items: center; gap: 12px; font-size: 13px; }
.cp-bar-lbl { width: 52px; color: var(--text-dim); font-weight: 600; }
.cp-bar-track { flex: 1; height: 22px; border-radius: 6px; background: rgba(255,255,255,.07); overflow: hidden; }
[data-theme="light"] .cp-bar-track { background: rgba(0,0,0,.07); }
.cp-bar { height: 100%; border-radius: 6px; display: flex; align-items: center; justify-content: flex-end; padding: 0 8px; font-family: monospace; font-size: 12px; font-weight: 700; color: #fff; white-space: nowrap; line-height: 24px; }
.cp-bar-before { width: 100%; background: linear-gradient(90deg, #c94b4b, #ff6b6b); }
.cp-bar-after { width: 19%; min-width: 58px; font-weight: 400; background: linear-gradient(90deg, #2f9e44, #51cf66); animation: cp-shrink 2.8s ease-out infinite; }
@keyframes cp-shrink { 0% { width: 100%; } 55% { width: 19%; } 100% { width: 19%; } }
@media (max-width: 960px) { .compress-promo { padding: 48px 0; } .cp-inner { grid-template-columns: 1fr; gap: 32px; } .cp-demo { min-height: 200px; } }
@media (max-width: 768px) { .compress-promo { margin-bottom: 24px; } .btn-lg { padding: 12px 24px 11px 24px; font-size: 15px; } .compress-promo .btn-secondary { display: none; } }

.cp-first{padding-top:130px;margin-bottom:0}.page-header-sub{padding-top:40px}@media(max-width:768px){.cp-first{padding-top:96px}.page-header-sub{padding-top:48px}}

/* Translate illustration (RU⇄EN + crossfading glyphs) */
.illust-translate { background: linear-gradient(135deg, var(--illust-bg-1), var(--illust-bg-2)); }
.illust-translate .tr-scene { position: absolute; top: 38%; left: 50%; transform: translate(-50%,-50%); display: flex; align-items: center; gap: 12px; }
.illust-translate .tr-chip { font-family: monospace; font-size: 13px; font-weight: 700; color: var(--text-dim); border: 1.5px solid var(--illust-ring); border-radius: 8px; padding: 6px 11px; background: var(--illust-bg-1); }
.illust-translate .tr-swap { color: var(--accent); font-size: 22px; animation: tr-swap 2.2s ease-in-out infinite; }
.illust-translate .tr-glyph { position: absolute; top: 68%; left: 50%; transform: translate(-50%,-50%); width: 64px; height: 64px; }
.illust-translate .tr-g { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 46px; font-weight: 800; color: var(--accent); opacity: 0; animation: tr-cross 6s infinite; }
.illust-translate .tr-g2 { animation-delay: 2s; }
.illust-translate .tr-g3 { animation-delay: 4s; }
@keyframes tr-swap { 0%,100% { transform: translateX(0); } 50% { transform: translateX(4px) scale(1.18); } }
@keyframes tr-cross { 0% { opacity: 0; transform: scale(.7); } 5% { opacity: 1; transform: scale(1); } 28% { opacity: 1; transform: scale(1); } 33%,100% { opacity: 0; transform: scale(.7); } }

/* WhitePage CMS — мокап окна браузера (тема-адаптивный: тёмная база + light-override) */
.illust-whitepage { display: flex; align-items: center; justify-content: center; padding: 18px;
    background: linear-gradient(135deg, #1a1f2e, #232a3d); }
.illust-whitepage .wp-win { width: 80%; border-radius: 10px; overflow: hidden;
    border: 1px solid rgba(255,255,255,.12); background: #0f131c; box-shadow: 0 10px 28px rgba(0,0,0,.35); }
.illust-whitepage .wp-bar { display: flex; align-items: center; gap: 5px; padding: 7px 9px;
    background: #171d2a; border-bottom: 1px solid rgba(255,255,255,.08); }
.illust-whitepage .wp-dot { width: 8px; height: 8px; border-radius: 50%; }
.illust-whitepage .wp-url { margin-left: 8px; font-size: 9px; color: #7a8699; font-family: monospace; }
.illust-whitepage .wp-body { padding: 12px; }
.illust-whitepage .wp-hero { height: 26px; border-radius: 6px;
    background: linear-gradient(135deg, #7c6bd6, #4a90d9); margin-bottom: 10px; }
.illust-whitepage .wp-nav { display: flex; gap: 7px; margin-bottom: 10px; }
.illust-whitepage .wp-nav-i { flex: 1; height: 22px; border-radius: 5px; background: rgba(255,255,255,.09); }
.illust-whitepage .wp-line { height: 7px; border-radius: 4px; background: rgba(255,255,255,.12); margin-bottom: 6px; }
.illust-whitepage .wp-line-2 { width: 65%; margin-bottom: 0; }
[data-theme="light"] .illust-whitepage { background: linear-gradient(135deg, #e6ecf6, #dbe3f0); }
[data-theme="light"] .illust-whitepage .wp-win { border-color: rgba(20,30,55,.12); background: #ffffff;
    box-shadow: 0 10px 26px rgba(35,55,95,.14); }
[data-theme="light"] .illust-whitepage .wp-bar { background: #f2f5fa; border-bottom-color: rgba(20,30,55,.08); }
[data-theme="light"] .illust-whitepage .wp-url { color: #8a94a6; }
[data-theme="light"] .illust-whitepage .wp-nav-i { background: rgba(30,45,80,.08); }
[data-theme="light"] .illust-whitepage .wp-line { background: rgba(30,45,80,.13); }

/* ─────────────────────────────────────────────────────────────────────────
   crm2 content-вью (товар/категория/поиск/страница) — единый стиль под тему.
   Storefront-разметка товаров была на WooCommerce-классах; здесь — свои,
   опирающиеся на переменные темы (--bg2/--border/--acc/--text*).
   ───────────────────────────────────────────────────────────────────────── */
.lw-content{padding:104px 0 72px}/* верхний отступ = высота fixed .site-nav (~60) + воздух, чтобы хлебные крошки не уходили под шапку */
@media(max-width:768px){.lw-content{padding:88px 0 56px}}
.lw-bc{font-size:13px;color:var(--text-dim);margin-bottom:18px;display:flex;gap:8px;flex-wrap:wrap;align-items:center}
.lw-bc a{color:var(--text-dim)}
.lw-bc a:hover{color:var(--text-bright)}
.lw-bc .sep{opacity:.5}
.lw-prod-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:22px;margin-top:28px}
.lw-prod-card{display:flex;flex-direction:column;border:1px solid var(--border);border-radius:14px;background:var(--bg2);overflow:hidden;transition:transform .2s,border-color .2s,box-shadow .2s}
.lw-prod-card:hover{transform:translateY(-4px);border-color:var(--acc,#4a90d9);box-shadow:0 16px 40px rgba(0,0,0,.3)}
.lw-prod-media{aspect-ratio:16/10;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,var(--illust-bg-1,#1a1a2e),var(--illust-bg-2,#16213e));overflow:hidden}
.lw-prod-media .pmedia,.lw-prod-media .pmedia img{width:100%;height:100%;object-fit:cover;display:block}
.lw-prod-media .pmedia-emoji{font-size:46px}
.lw-prod-media .pmedia-txt,.lw-prod-media .pmedia-ini{font-size:24px}
/* ── Монограмма-заглушка (нет фото): 7 статичных стилей фона × цвет (--th) + буквы/эмодзи ── */
.pmedia{position:relative;display:flex;align-items:center;justify-content:center;width:100%;height:100%;overflow:hidden}
/* базовый двухцветный градиент — общий для всех стилей, кроме glow/flat */
.pmedia:not(.has-img){background:
  radial-gradient(120% 120% at 27% 20%, hsl(var(--th,214) 70% 60% / .40), transparent 60%),
  radial-gradient(120% 120% at 82% 88%, hsl(calc(var(--th,214) + 46) 66% 52% / .32), transparent 60%),
  linear-gradient(140deg, hsl(var(--th,214) 44% 25%), hsl(calc(var(--th,214) + 20) 50% 15%))}
.pmedia:not(.has-img)::after{content:"";position:absolute;left:0;right:0;top:0;height:46%;z-index:0;
  background:linear-gradient(180deg,rgba(255,255,255,.10),transparent);pointer-events:none}
/* узоры по стилям */
.pmedia.pm-dots::before,.pmedia.pm-grid::before,.pmedia.pm-diagonal::before,.pmedia.pm-rings::before{
  content:"";position:absolute;inset:0;z-index:0;
  -webkit-mask-image:radial-gradient(130% 110% at 50% -8%,#000 52%,transparent 100%);
  mask-image:radial-gradient(130% 110% at 50% -8%,#000 52%,transparent 100%)}
.pmedia.pm-dots::before{background-image:radial-gradient(rgba(255,255,255,.18) 1.3px,transparent 1.5px);background-size:16px 16px;opacity:.55}
.pmedia.pm-grid::before{background-image:linear-gradient(rgba(255,255,255,.14) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.14) 1px,transparent 1px);background-size:22px 22px;opacity:.5}
.pmedia.pm-diagonal::before{background-image:repeating-linear-gradient(45deg,rgba(255,255,255,.10) 0 2px,transparent 2px 12px);opacity:.7}
.pmedia.pm-rings::before{background-image:repeating-radial-gradient(circle at 50% 48%,rgba(255,255,255,.13) 0 1px,transparent 1px 18px);opacity:.6}
/* glow — усиленные цветные пятна-сияния */
.pmedia.pm-glow:not(.has-img){background:
  radial-gradient(60% 60% at 30% 28%, hsl(var(--th,214) 85% 62% / .55), transparent 62%),
  radial-gradient(65% 65% at 78% 82%, hsl(calc(var(--th,214) + 50) 80% 58% / .45), transparent 62%),
  linear-gradient(140deg, hsl(var(--th,214) 40% 20%), hsl(calc(var(--th,214) + 18) 46% 12%))}
/* flat — ровный цвет */
.pmedia.pm-flat:not(.has-img){background:hsl(var(--th,214) 40% 30%)}
/* контент монограммы */
.pmedia-txt,.pmedia-ini,.pmedia-emoji{position:relative;z-index:1}
.pmedia-txt,.pmedia-ini{display:inline-flex;align-items:center;justify-content:center;
  font-weight:800;letter-spacing:2px;color:#fff;line-height:1;
  min-width:1.9em;padding:.4em .48em;border-radius:14px;
  background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.22);
  box-shadow:0 10px 34px rgba(0,0,0,.24),inset 0 1px 0 rgba(255,255,255,.20)}
.lw-prod-body{display:flex;flex-direction:column;gap:8px;padding:18px 18px 20px;flex:1}
.lw-prod-title{font-size:17px;font-weight:700;color:var(--text-bright);line-height:1.3}
.lw-prod-short{font-size:13.5px;color:var(--text-dim);flex:1}
.lw-prod-pricerow{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-top:2px}
.lw-prod-pricerow .price{font-size:18px;font-weight:800;color:var(--text-bright)}
.lw-prod-pricerow .price-old{text-decoration:line-through;color:var(--text-dimmer);font-size:14px}
.lw-prod-pricerow .price.sale{color:var(--green,#28ca41)}
.lw-prod-actions{display:flex;gap:8px;margin-top:6px}
.lw-prod-actions .btn{flex:1;text-align:center;justify-content:center}
.stock{font-size:12px;font-weight:700;padding:2px 8px;border-radius:6px}
.stock.out{color:#ff5f57;background:rgba(255,95,87,.12)}
.stock.low{color:#ffbd2e;background:rgba(255,189,46,.12)}
.stock.pre{color:#4a90d9;background:rgba(74,144,217,.12)}
/* Одиночный товар */
.lw-product{display:grid;grid-template-columns:minmax(0,440px) 1fr;gap:40px;margin-top:24px}
@media(max-width:820px){.lw-product{grid-template-columns:1fr;gap:26px}}
.lw-product-media{border:1px solid var(--border);border-radius:16px;overflow:hidden;background:linear-gradient(135deg,var(--illust-bg-1,#1a1a2e),var(--illust-bg-2,#16213e));aspect-ratio:4/3;display:flex;align-items:center;justify-content:center}
.lw-product-media .pmedia,.lw-product-media img{width:100%;height:100%;object-fit:cover}
.lw-product-media .pmedia-emoji{font-size:88px}
.lw-product-media .pmedia-txt,.lw-product-media .pmedia-ini{font-size:48px}
/* Обложка-баннер страницы (над статьёй) + обложки блога */
.lw-page-cover{aspect-ratio:16/6;border:1px solid var(--border);border-radius:16px;overflow:hidden;margin:0 0 26px}
.lw-page-cover .pmedia-txt,.lw-page-cover .pmedia-ini{font-size:40px}
.lw-page-cover .pmedia-emoji{font-size:64px}
.post-cover{display:block;position:relative;overflow:hidden}
.post-cover .pmedia-txt,.post-cover .pmedia-ini{font-size:26px}
.post-cover .pmedia-emoji{font-size:44px}
.post-card{display:grid;grid-template-columns:190px 1fr;align-items:stretch;overflow:hidden;padding:0}
.post-card .post-cover{min-height:150px}
.post-card-body{padding:18px 20px 20px;min-width:0}
.post-cover-wide{aspect-ratio:16/6;border:1px solid var(--border);border-radius:16px;overflow:hidden;margin:0 0 22px}
.post-cover-wide .pmedia-txt,.post-cover-wide .pmedia-ini{font-size:40px}
.post-cover-wide .pmedia-emoji{font-size:64px}
@media(max-width:640px){.post-card{grid-template-columns:1fr}.post-card .post-cover{aspect-ratio:16/7;min-height:0}}
.lw-product-info h1{font-size:30px;line-height:1.2;margin:0 0 14px}
.lw-product-price{font-size:26px;font-weight:800;color:var(--text-bright);margin:6px 0 18px;display:flex;align-items:center;gap:12px;flex-wrap:wrap}
.lw-product-desc{color:var(--text);line-height:1.7;margin:8px 0 22px}
.lw-product-rating{margin:-4px 0 12px;color:var(--yellow,#f5b301);font-size:16px;letter-spacing:1px}
.lw-product-rating .rnum{color:var(--text-dim);font-size:13px;margin-left:6px;letter-spacing:0}
.lw-product-rating .rcount{color:var(--text-dimmer);font-size:13px;letter-spacing:0}
.lw-product-lead{color:var(--text);line-height:1.7;margin:8px 0 18px;font-size:16px}
.lw-product-hint{color:var(--text-dim);font-size:13.5px;margin:0 0 18px;display:flex;align-items:center;gap:8px}
.lw-product-hint::before{content:"";flex:0 0 auto;width:16px;height:16px;background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a90d9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8' cy='15' r='4.5'/%3E%3Cpath d='M11.2 11.8 20 3'/%3E%3Cpath d='M16.5 6.5l3 3'/%3E%3C/svg%3E") center/contain no-repeat}
/* Мета-факты в шапке товара */
.lw-product-meta{list-style:none;margin:0 0 20px;padding:16px 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border);display:flex;flex-direction:column;gap:9px}
.lw-product-meta li{display:flex;justify-content:space-between;gap:16px;font-size:14px}
.lw-product-meta .k{color:var(--text-dim)}
.lw-product-meta .v{color:var(--text-bright);font-weight:600;text-align:right}
.lw-product-meta .v a{color:var(--accent)}
/* Детальная секция: описание + характеристики */
.lw-product-detail{margin-top:56px;display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:44px;align-items:start}
.lw-product-detail.is-specs-only{grid-template-columns:1fr;max-width:640px}
@media(max-width:820px){.lw-product-detail{grid-template-columns:1fr;gap:32px}}
.lw-product-detail .section-title{font-size:24px;margin:0 0 16px}
.lw-product-block+.lw-product-block{margin-top:40px}
.lw-features{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:11px}
.lw-features li{position:relative;padding-left:30px;color:var(--text);line-height:1.6}
.lw-features li::before{content:"";position:absolute;left:0;top:2px;width:19px;height:19px;background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2328ca41' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat}
/* Карточка характеристик */
.lw-spec{border:1px solid var(--border);border-radius:16px;background:var(--bg2);padding:22px 24px;box-shadow:var(--shadow-feature)}
.lw-product-detail-aside{position:sticky;top:96px}
@media(max-width:820px){.lw-product-detail-aside{position:static}}
.lw-spec-title{font-size:17px;font-weight:700;color:var(--text-bright);margin:0 0 12px}
.lw-spec-list{margin:0}
.lw-spec-row{display:flex;justify-content:space-between;gap:16px;padding:11px 0;border-top:1px solid var(--border);font-size:14px}
.lw-spec-row:first-child{border-top:none;padding-top:2px}
.lw-spec-row dt{color:var(--text-dim);margin:0}
.lw-spec-row dd{margin:0;color:var(--text-bright);font-weight:600;text-align:right}
.lw-spec-row dd a{color:var(--accent)}
.lw-spec-group{margin:14px 0 2px;padding-top:12px;border-top:1px solid var(--border);font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.04em;color:var(--text-dimmer)}
.lw-product-actions{display:flex;gap:12px;flex-wrap:wrap}
.lw-search-form{display:flex;gap:10px;max-width:520px;margin:8px 0 18px}
.lw-search-form input{flex:1;padding:12px 16px;border:1px solid var(--border);border-radius:10px;background:var(--bg2);color:var(--text-bright);font-size:15px}
.lw-search-extra{list-style:none;margin:0 0 18px;padding:0;display:flex;flex-direction:column;gap:6px}
.lw-search-extra a{color:var(--text)}
.lw-pager{display:flex;gap:14px;justify-content:center;margin-top:36px}
.lw-page-article{max-width:800px;margin:0 auto}
.lw-page-article h1{font-size:32px;margin:0 0 22px}
.lw-page-content{line-height:1.75;color:var(--text)}
.lw-page-content h2{font-size:24px;margin:32px 0 14px}
.lw-page-content h3{font-size:19px;margin:26px 0 12px}
.lw-page-content p{margin:0 0 16px}
.lw-page-content ul,.lw-page-content ol{margin:0 0 16px 22px;display:flex;flex-direction:column;gap:7px}
.lw-page-content img{max-width:100%;height:auto;border-radius:10px}
.lw-page-content table{width:100%;border-collapse:collapse;margin:0 0 18px}
.lw-page-content th,.lw-page-content td{border:1px solid var(--border);padding:9px 12px;text-align:left}

/* FAQ-аккордеон (динамический блок «Вопрос-ответ»): ответ — HTML внутри .faq-a */
.faq-a { padding-bottom: 20px; font-size: 14px; color: var(--text-dim); line-height: 1.7; }
.faq-a > :first-child { margin-top: 0; }
.faq-a > :last-child { margin-bottom: 0; padding-bottom: 0; }
.faq-a p { margin: 0 0 12px; }
.faq-a ul, .faq-a ol { margin: 0 0 12px; padding-left: 20px; }
.faq-a li { margin: 4px 0; }
.faq-a a { color: var(--accent); }

/* Вход/регистрация ЛК — app.css задаёт базу через свои переменные (--panel/--line/--txt),
   которых в этой теме нет; перекрываем под палитру little-white. */
/* .site-nav фиксирована — клирим её высоту, только для страницы входа (не трогаем full-bleed hero главной) */
#main-content:has(.auth-box) { padding: 130px 20px 80px; }
@media (max-width: 768px) { #main-content:has(.auth-box) { padding: 96px 16px 56px; } }
.auth-box {
    max-width: 420px; margin: 0 auto;
    background: var(--bg2); border: 1px solid var(--border); border-radius: 16px;
    padding: 32px; box-shadow: 0 10px 40px rgba(0,0,0,.18);
}
.auth-box .tabs { display: flex; gap: 8px; margin-bottom: 22px; }
.auth-box .tab {
    flex: 1; background: none; border: none; border-bottom: 2px solid transparent;
    color: var(--text-dim); padding: 10px 8px; cursor: pointer; font: inherit;
    font-weight: 600; transition: color .2s, border-color .2s;
}
.auth-box .tab:hover { color: var(--text); }
.auth-box .tab.active { color: var(--text-bright); border-color: var(--accent); }
.auth-form h2 { font-size: 22px; margin: 0 0 6px; color: var(--text-bright); }
.auth-form label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--text-dim); }
.auth-form input {
    background: var(--bg); border: 1px solid var(--border); border-radius: 10px;
    padding: 12px 14px; color: var(--text-bright); font: inherit;
}
.auth-form input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(74,144,217,.15); }
.auth-form .btn.primary {
    margin-top: 4px; background: var(--accent); color: #fff; border: none;
    border-radius: 10px; padding: 12px; font: inherit; font-weight: 700; cursor: pointer;
    transition: background .2s, transform .1s;
}
.auth-form .btn.primary:hover { background: var(--accent-light); }
.auth-form .btn.primary:active { transform: translateY(1px); }
.auth-form .link { align-self: flex-start; font-size: 13px; color: var(--accent); }
.auth-form .msg { margin: 0; font-size: 13px; min-height: 1em; }
.auth-form .msg.ok { color: #2e9e5b; }
.auth-form .msg.err { color: #d9534f; }
.auth-box .muted.small { margin: 20px 0 0; font-size: 12px; color: var(--text-dimmer); line-height: 1.6; }

/* ============================================================
   ОФОРМЛЕНИЕ ЗАКАЗА (/checkout, /checkout/pay) — в стилистике витрины.
   app.css рисует checkout своими generic-токенами (--panel/--line/--txt/--acc),
   которых в этой теме нет → перекрываем под палитру little-white (свет + тьма).
   ============================================================ */
/* .site-nav фиксирована — отбиваем её высоту сверху (как у .auth-box/.account) */
#main-content:has(.checkout) { padding: 120px 20px 84px; }
@media (max-width: 768px) { #main-content:has(.checkout) { padding: 92px 14px 56px; } }

.checkout { max-width: 680px; margin: 0 auto; position: relative; }
/* мягкое свечение-подложка, как в кабинете */
.checkout::before {
    content: ''; position: absolute; top: -24px; left: 50%; transform: translateX(-50%);
    width: 640px; height: 320px; max-width: 100%;
    background: radial-gradient(circle, rgba(74,144,217,.10), transparent 70%);
    pointer-events: none; z-index: 0;
}
.checkout > * { position: relative; z-index: 1; }

.checkout .bc { font-size: 13px; color: var(--text-dim); margin-bottom: 16px; }
.checkout .bc a { color: var(--text-dim); text-decoration: none; }
.checkout .bc a:hover { color: var(--accent); }
.checkout > h1 {
    font-size: clamp(26px, 4vw, 34px); font-weight: 800; letter-spacing: -.02em;
    color: var(--text-bright); margin: 0 0 20px;
}
.checkout .link { color: var(--accent); }

/* Карточки-панели */
.checkout .panel {
    background: var(--bg2); border: 1px solid var(--border); border-radius: 16px;
    padding: 24px; margin-top: 18px; margin-bottom: 40px; box-shadow: var(--shadow-feature);
}
.checkout .panel > h2 { font-size: 18px; font-weight: 700; color: var(--text-bright); margin: 0 0 14px; }
.checkout .muted, .checkout .muted.small { color: var(--text-dim); }
.checkout .small { font-size: 12.5px; }

/* Сводка заказа */
.checkout .co-summary .co-item { padding: 13px 0; border-bottom: 1px solid var(--border); }
.checkout .co-summary .co-item:first-of-type { padding-top: 2px; }
.checkout .co-summary .co-row {
    display: flex; justify-content: space-between; gap: 16px; color: var(--text);
}
.checkout .co-summary .co-item-name { font-weight: 600; color: var(--text-bright); }
.checkout .co-summary .co-item-name .muted { font-weight: 400; color: var(--text-dim); }
.checkout .co-summary .co-item-sum { white-space: nowrap; color: var(--text); }
.checkout .co-summary .co-item-desc {
    margin: 5px 0 0; font-size: 13px; line-height: 1.5; color: var(--text-dim); max-width: 46ch;
}
/* Ключ + срок действия — в одну строку (срок справа) */
.checkout .co-summary .co-item-keyline {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; flex-wrap: wrap; margin-top: 8px;
}
.checkout .co-summary .co-item-access {
    display: inline-flex; align-items: center; gap: 7px; margin: 0;
    font-size: 12.5px; font-weight: 600; color: var(--accent);
}
.checkout .co-summary .co-item-access::before {
    content: ""; flex: 0 0 auto; width: 14px; height: 14px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a90d9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8' cy='15' r='4.5'/%3E%3Cpath d='M11.2 11.8 20 3'/%3E%3Cpath d='M16.5 6.5l3 3'/%3E%3C/svg%3E") center/contain no-repeat;
}
.checkout .co-summary .co-item-term { margin: 0; font-size: 12.5px; color: var(--text-dim); text-align: right; white-space: nowrap; }
.checkout .co-total {
    text-align: right; font-size: 15px; color: var(--text-dim);
    border-top: 1px solid var(--border); margin-top: 12px; padding-top: 14px;
}
.checkout .co-total b { font-size: 22px; color: var(--text-bright); margin-left: 8px; }

/* Секция оплаты — без карточки-панели (выделяется на фоне сводки-карточки над ней) */
.checkout .co-pay { padding-top: 0; padding-bottom: 40px; }
.checkout .co-pay > h2 { font-size: 20px; font-weight: 700; color: var(--text-bright); margin: 0 0 16px; }
.checkout .co-pay > p { color: var(--text); }

/* Поля оформления (свободный список) */
.checkout .co-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 18px; margin: 4px 0 20px; max-width: 640px; }
.checkout .co-field { display: flex; flex-direction: column; gap: 7px; color: var(--text-dim); margin: 0; max-width: none; }
.checkout .co-field-lbl { font-size: 13px; }
.checkout .co-field .req { color: var(--red); }
.checkout .co-field input[type="text"],
.checkout .co-field input[type="email"],
.checkout .co-field input[type="tel"],
.checkout .co-field textarea,
.checkout .co-field select {
    background: var(--bg); border: 1px solid var(--border); border-radius: 10px;
    padding: 12px 14px; color: var(--text-bright); font: inherit; width: 100%;
}
.checkout .co-field select { cursor: pointer; }
.checkout .co-field textarea { min-height: 76px; resize: vertical; }
.checkout .co-field input:focus,
.checkout .co-field textarea:focus,
.checkout .co-field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(74,144,217,.15); }
.checkout .co-field-check { flex-direction: row; align-items: flex-start; gap: 10px; }
.checkout .co-field-check input { margin-top: 2px; width: 16px; height: 16px; flex: 0 0 auto; accent-color: var(--accent); }
.checkout .co-field-check span { font-size: 13.5px; line-height: 1.45; }
.checkout .co-field:has(textarea), .checkout .co-field-check { grid-column: 1 / -1; }
@media (max-width: 560px) { .checkout .co-fields { grid-template-columns: 1fr; } }

/* Способ оплаты */
.checkout .co-pay .cpm-label { color: var(--text-dim); }

/* Способы оплаты — карточки-радио (как на боевом checkout) */
.checkout .checkout-payment { margin: 4px 0 18px; }
.checkout .cpm-label { font-size: 13px; color: var(--text-dim); margin-bottom: 8px; }
.checkout .checkout-payment-methods { display: flex; flex-direction: column; gap: 10px; }
.checkout .checkout-payment-method {
    display: flex; align-items: flex-start; gap: 11px; padding: 14px 16px;
    border: 1px solid var(--border); border-radius: 12px; cursor: pointer;
    transition: border-color .15s, background .15s;
}
.checkout .checkout-payment-method:hover { border-color: var(--accent); }
.checkout .checkout-payment-method:has(input:checked) { border-color: var(--accent); background: rgba(74,144,217,.07); }
.checkout .checkout-payment-method input { margin-top: 3px; accent-color: var(--accent); flex: 0 0 auto; }
.checkout .cpm-body { display: flex; flex-direction: column; gap: 3px; }
.checkout .cpm-title { font-weight: 600; color: var(--text-bright); }
.checkout .cpm-desc { font-size: 13px; line-height: 1.45; color: var(--text-dim); }

/* Кнопка оплаты — крупная, акцентная, во всю ширину */
.checkout .co-pay .btn.primary,
.checkout .co-pay .btn.primary.big {
    display: block; width: 100%; margin-top: 6px;
    background: var(--accent); color: #fff; border: none; border-radius: 12px;
    padding: 15px 20px; font-weight: 700; font-size: 16px; cursor: pointer;
    box-shadow: 0 8px 24px rgba(74,144,217,.28);
    transition: background .2s, transform .1s, box-shadow .2s;
}
.checkout .co-pay .btn.primary:hover { background: var(--accent-light); color: #fff; box-shadow: 0 10px 28px rgba(74,144,217,.34); }
.checkout .co-pay .btn.primary:active { transform: translateY(1px); }
.checkout .co-pay p { color: var(--text); }
.checkout .co-pay .msg { min-height: 18px; font-size: 13px; margin: 10px 0 0; }
.checkout .co-pay .msg.err { color: var(--red); }
.checkout .co-pay .msg.ok { color: var(--green); }

/* Гостевой блок: соц-кнопки, разделитель «или», табы (поля — общий .auth-form) */
.checkout .co-auth .social-stub { display: flex; gap: 10px; flex-wrap: wrap; margin: 4px 0 2px; }
.checkout .btn.social {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    flex: 1; min-width: 180px; cursor: not-allowed; opacity: .75;
    background: var(--bg); border: 1px solid var(--border); color: var(--text-dim);
    border-radius: 10px; padding: 12px;
}
.checkout .btn.social .soon {
    font-size: 10px; background: var(--yellow); color: #241a06;
    border-radius: 8px; padding: 1px 6px; margin-left: 2px; vertical-align: middle;
}
.checkout .or { display: flex; align-items: center; gap: 12px; color: var(--text-dim); font-size: 13px; margin: 16px 0; }
.checkout .or::before, .checkout .or::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.checkout .tabs { display: flex; gap: 8px; margin: 6px 0 18px; }
.checkout .tab {
    flex: 1; background: none; border: none; border-bottom: 2px solid transparent;
    color: var(--text-dim); padding: 10px 8px; cursor: pointer; font: inherit;
    font-weight: 600; transition: color .2s, border-color .2s;
}
.checkout .tab:hover { color: var(--text); }
.checkout .tab.active { color: var(--text-bright); border-color: var(--accent); }

/* .note — пустая корзина / ожидание оплаты */
.checkout .note {
    background: var(--bg3); border: 1px solid var(--border); color: var(--text);
    padding: 14px 16px; border-radius: 12px;
}
.checkout .note a { color: var(--accent); }

/* /checkout/pay — вторичные кнопки (назад / мои заказы) */
.checkout-pay .co-pay .btn:not(.primary) {
    display: inline-block; margin: 4px 8px 0 0; padding: 11px 18px;
    background: var(--bg); border: 1px solid var(--border); color: var(--text-bright);
    border-radius: 10px; text-decoration: none; font-weight: 600;
}
.checkout-pay .co-pay .btn:not(.primary):hover { border-color: var(--accent); color: var(--accent); }

/* ============================================================
   ЛИЧНЫЙ КАБИНЕT (/account/dashboard) — в стилистике витрины
   ============================================================ */
.account { padding: 120px 0 72px; position: relative; } /* 120 = высота fixed .site-nav (60) + воздух, как у .page-header */
.account::before {
    content: ''; position: absolute; top: 40px; left: 50%; transform: translateX(-50%);
    width: 720px; height: 360px; max-width: 100%;
    background: radial-gradient(circle, rgba(74,144,217,.08), transparent 70%);
    pointer-events: none; z-index: 0;
}
.account .container { position: relative; z-index: 1; }

/* ── Шапка кабинета ── */
.lk-hero {
    display: flex; align-items: center; gap: 20px;
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: 18px; padding: 24px 28px; margin-bottom: 22px;
    box-shadow: var(--shadow-feature);
}
.lk-ava {
    flex: 0 0 auto; width: 64px; height: 64px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; font-weight: 800; color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    box-shadow: 0 8px 24px rgba(74,144,217,.35); user-select: none;
}
[data-theme="light"] .lk-ava { background: linear-gradient(135deg, #4a90d9, #2a6cb8); }
.lk-hi { flex: 1 1 auto; min-width: 0; }
.lk-hi .section-label { margin-bottom: 6px; }
.lk-name {
    font-size: 1.9em; font-weight: 800; line-height: 1.15; margin: 0 0 4px;
    background: linear-gradient(135deg, var(--hero-grad-start), var(--hero-grad-end));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    word-break: break-word;
}
.lk-mail { margin: 0; color: var(--text-dim); font-size: .98em; word-break: break-all; }
.lk-logout { flex: 0 0 auto; align-self: flex-start; }

/* ── Полоса статистики ── */
.lk-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 22px;
}
.lk-stat {
    background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 18px 20px; display: grid; grid-template-columns: auto 1fr;
    grid-template-rows: auto auto; column-gap: 16px; align-items: center;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.lk-stat:hover { transform: translateY(-3px); box-shadow: var(--shadow-feature); border-color: var(--accent); }
.lk-stat-ico {
    grid-row: 1 / span 2; align-self: center;
    width: 46px; height: 46px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(74, 144, 217, .12); color: var(--accent);
}
.lk-stat-ico svg { width: 24px; height: 24px; }
.lk-stat-num { grid-column: 2; align-self: end; font-size: 1.9em; font-weight: 800; color: var(--text-bright); line-height: 1; }
.lk-stat-num.is-on  { color: var(--green); font-size: 1.35em; }
.lk-stat-num.is-off { color: var(--yellow); font-size: 1.35em; }
.lk-stat-cap { grid-column: 2; align-self: start; font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-dim); font-weight: 600; margin-top: 3px; }

/* ── Сетка карточек ── */
.lk-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.lk-card {
    background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 24px 26px; min-width: 0;
}
.lk-card.lk-wide { grid-column: 1 / -1; }
.lk-card-h { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.lk-card-h h2 { font-size: 1.15em; font-weight: 700; color: var(--text-bright); margin: 0; }
.lk-more { font-size: 13px; font-weight: 600; color: var(--accent); white-space: nowrap; }
.lk-more:hover { color: var(--accent-light); }
.lk-loading { color: var(--text-dim); font-size: 14px; padding: 6px 0; }

/* ── Пустые состояния ── */
.lk-empty { text-align: center; padding: 22px 0 10px; color: var(--text-dim); }
.lk-empty-ico { display: inline-flex; margin-bottom: 10px; opacity: .7; color: var(--text-dim); }
.lk-empty-ico svg { width: 40px; height: 40px; }
.lk-empty p { margin: 0 0 14px; font-size: 14px; }

/* ── Карточки заказов (переопределяют базовые app.css в бренд-палитре) ── */
.account .order-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; }
.account .order-card {
    display: block; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 16px 18px; transition: transform .2s, border-color .2s, box-shadow .2s;
}
.account .order-card:hover { transform: translateY(-2px); border-color: var(--accent); box-shadow: var(--shadow-feature); text-decoration: none; }
.account .oc-top { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.account .oc-num { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-weight: 600; font-size: 12px; letter-spacing: -.2px; color: var(--text-bright); white-space: nowrap; }
.account .oc-sum { font-size: 20px; font-weight: 800; color: var(--text-bright); margin: 10px 0 6px; }
.account .oc-meta { display: flex; justify-content: space-between; gap: 8px; color: var(--text-dim); font-size: 12px; }

/* ── Лицензии ── */
.lk-lics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (max-width: 680px) { .lk-lics { grid-template-columns: 1fr; } }
.lk-lic {
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
    background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px;
}
.lk-lic-name { font-weight: 600; color: var(--text-bright); font-size: 14px; }
.lk-lic-key {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13px;
    background: var(--bg3); border: 1px solid var(--border); border-radius: 6px; padding: 3px 8px;
    color: var(--text); letter-spacing: .5px;
}

/* ── Бейджи статусов (бренд-палитра, для заказов и лицензий) ── */
.account .badge { margin-left: auto; font-size: 12px; font-weight: 600; border-radius: 6px; padding: 3px 9px; }
.account .badge.st-paid, .account .badge.st-active { background: rgba(40,202,65,.15); color: var(--green); }
.account .badge.st-cod { background: rgba(255,189,46,.15); color: var(--yellow); }
.account .badge.st-pending_payment { background: rgba(74,144,217,.15); color: var(--accent); }
.account .badge.st-cancelled, .account .badge.st-refunded, .account .badge.st-failed, .account .badge.st-expired { background: rgba(255,95,87,.15); color: var(--red); }

/* ── 2FA внутри карточки ── */
.account .tfa-on { color: var(--green); font-weight: 600; margin: 0 0 6px; }
.account [data-2fa] > p.muted { margin: 0 0 14px; }
.account .tfa-steps { color: var(--text-dim); }
.account .tfa-row input {
    background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; color: var(--text);
}
.account .tfa-row input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(74,144,217,.15); }
.account .msg.err { color: var(--red); }
.account .msg.ok { color: var(--green); }
.account .msg:empty { display: none; }

/* ── Адаптив ── */
@media (max-width: 860px) {
    .lk-grid { grid-template-columns: 1fr; }
    .lk-card.lk-wide { grid-column: auto; }
}
@media (max-width: 620px) {
    .account { padding: 96px 0 56px; }
    .lk-hero { flex-wrap: wrap; padding: 20px; gap: 14px; }
    .lk-ava { width: 54px; height: 54px; font-size: 24px; }
    .lk-name { font-size: 1.5em; }
    .lk-logout { order: 3; margin-left: auto; }
    .lk-stats { grid-template-columns: 1fr; gap: 12px; }
    .lk-stat { padding: 16px 18px; }
    .lk-stat-num { font-size: 1.6em; }
}

/* ── Страница одного заказа в ЛК (/account/order/{n}) ── */
.account-order .lk-bc { font-size: 13px; color: var(--text-dim); margin-bottom: 18px; }
.account-order .lk-bc a { color: var(--text-dim); }
.account-order .lk-bc a:hover { color: var(--accent); }
.account-order .lk-bc-sep { margin: 0 8px; opacity: .6; }
.account-order .lk-bc-cur { color: var(--text-bright); }
.ord-hero .ord-num { font-size: 1.5em; letter-spacing: .5px; }

.ord-layout { display: grid; grid-template-columns: 1fr 300px; gap: 18px; align-items: start; }
.ord-items { display: flex; flex-direction: column; }
.ord-item {
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
    padding: 14px 0; border-bottom: 1px solid var(--border);
}
.ord-item:last-child { border-bottom: 0; }
.ord-item-t { font-weight: 600; color: var(--text-bright); font-size: 15px; flex: 1 1 auto; min-width: 0; }
a.ord-item-t:hover { color: var(--accent); }
.ord-item-go { font-size: 12px; opacity: .7; }
.ord-item-q { color: var(--text-dim); font-size: 14px; white-space: nowrap; }
.ord-item-p { font-weight: 700; color: var(--text-bright); font-size: 15px; white-space: nowrap; min-width: 90px; text-align: right; }
.ord-total {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-top: 14px; padding-top: 14px; border-top: 2px solid var(--border);
}
.ord-total span { color: var(--text-dim); font-size: 14px; }
.ord-total b { font-size: 22px; font-weight: 800; color: var(--text-bright); }

.ord-summary { position: sticky; top: 80px; }
.ord-status { display: inline-block; margin-left: 0 !important; margin-bottom: 16px; font-size: 13px; padding: 5px 12px; }
.ord-facts { margin: 0; display: flex; flex-direction: column; gap: 12px; }
.ord-facts > div { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.ord-facts dt { color: var(--text-dim); font-size: 13px; margin: 0; }
.ord-facts dd { margin: 0; color: var(--text-bright); font-weight: 600; font-size: 14px; text-align: right; }
.ord-pay { display: block; text-align: center; margin-top: 18px; }

@media (max-width: 780px) {
    .ord-layout { grid-template-columns: 1fr; }
    .ord-summary { position: static; order: -1; } /* на мобилке сводка сверху */
}

/* ── Данные виртуального товара в заказе/лицензиях ── */
.ord-items .ord-line { border-bottom: 1px solid var(--border); }
.ord-items .ord-line:last-child { border-bottom: 0; }
.ord-items .ord-line .ord-item { border-bottom: 0; }

.ord-virt {
    margin: 2px 0 14px; padding: 14px 16px;
    background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
    display: flex; flex-direction: column; gap: 10px;
}
.ord-virt-key-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ord-virt-lbl { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim); font-weight: 600; }
.ord-virt-key, .lk-lic-key {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 15px; letter-spacing: 1px;
    background: var(--bg3); border: 1px solid var(--border); border-radius: 8px; padding: 6px 12px;
    color: var(--text-bright); user-select: all;
}
.ord-copy {
    font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 8px; cursor: pointer;
    background: transparent; color: var(--accent); border: 1px solid var(--accent); transition: all .15s;
}
.ord-copy:hover { background: var(--accent); color: #fff; }
.ord-copy.ok { color: var(--green); border-color: var(--green); background: transparent; }
.ord-virt-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.ord-dl, .lk-lic-dl { display: inline-block; padding: 8px 16px; font-size: 14px; }
.ord-virt-meta { font-size: 13px; color: var(--text-dim); }
.ord-virt-note {
    font-size: 13px; color: var(--text-dim); line-height: 1.6; white-space: pre-line;
    border-top: 1px dashed var(--border); padding-top: 10px;
}

/* Лицензии на дашборде */
.lk-lic { flex-direction: column; align-items: stretch; gap: 10px; }
.lk-lic-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.lk-lic-keyrow { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.lk-lic-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* Виртуальный товар: несколько ключей (по копии) */
.ord-virt-head { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim); font-weight: 700; margin-bottom: 2px; }
.ord-dl-sm { font-size: 13px; font-weight: 600; color: var(--accent); white-space: nowrap; }
.ord-dl-sm:hover { color: var(--accent-light); }
.ord-virt-mini { font-size: 12px; color: var(--text-dim); white-space: nowrap; }
.ord-virt-key-row { padding: 4px 0; }

/* ── Отзыв у позиции заказа (ЛК) ── */
.ord-rev { margin: 4px 0 6px; }
.ord-rev-open { font-size: 13px; font-weight: 600; color: var(--accent); background: transparent; border: 1px solid var(--border); border-radius: 8px; padding: 6px 14px; cursor: pointer; transition: all .15s; }
.ord-rev-open:hover { border-color: var(--accent); background: rgba(74,144,217,.08); }
.ord-rev-done { font-size: 13px; color: var(--green); font-weight: 600; padding: 4px 0; }
.ord-rev-form { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; padding: 14px; background: var(--bg); border: 1px solid var(--border); border-radius: 12px; }
.ord-rev-form[hidden] { display: none; }
.ord-rev-stars { display: flex; gap: 4px; font-size: 26px; line-height: 1; cursor: pointer; color: var(--yellow); user-select: none; }
.ord-rev-stars [data-star] { transition: transform .1s; }
.ord-rev-stars [data-star]:hover { transform: scale(1.15); }
.ord-rev-text { background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; color: var(--text); font: inherit; resize: vertical; }
.ord-rev-text:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(74,144,217,.15); }
.ord-rev-actions { display: flex; gap: 10px; align-items: center; }
.ord-rev-cancel { background: transparent; border: 0; color: var(--text-dim); font-size: 13px; cursor: pointer; }
.ord-rev-cancel:hover { color: var(--text-bright); }
.ord-rev-msg { margin: 0; font-size: 13px; min-height: 1em; }
.ord-rev-msg.err { color: var(--red); }

/* ── Отзывы на странице товара ── */
.lw-reviews .section-title { display: flex; align-items: baseline; gap: 14px; }
.lw-rev-agg { font-size: .6em; font-weight: 700; color: var(--yellow); }
.lw-rev-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }
@media (max-width: 760px) { .lw-rev-list { grid-template-columns: 1fr; } }
.lw-rev { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; }
.lw-rev-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.lw-rev-author { font-weight: 700; color: var(--text-bright); }
.lw-rev-stars { color: var(--yellow); letter-spacing: 1px; }
.lw-rev-date { color: var(--text-dim); font-size: 13px; margin-left: auto; }
.lw-rev-body { color: var(--text); line-height: 1.7; }
.lw-rev-reply { margin-top: 12px; padding: 10px 14px; background: var(--bg3); border-radius: 10px; font-size: 14px; color: var(--text-dim); }
.lw-rev-reply-lbl { font-weight: 700; color: var(--accent); }

/* ── Переключатель языков (модуль lw-translate) в стилистике темы little-white ──
   Скоуп .lw-theme даёт выше специфичность, чем базовый CSS модуля → перебивает его.
   Использует токены темы (--accent/--border/--bg2/--radius/--shadow-card) → авто светлая/тёмная. */
.lw-theme .lwt-lang > summary {
    border: 1px solid var(--border);
    color: var(--text-dim);
    background: var(--bg2);
    border-radius: 999px;
    padding: .34em .72em;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .03em;
    transition: color .2s, border-color .2s, background .2s;
}
.lw-theme .lwt-lang > summary:hover,
.lw-theme .lwt-lang[open] > summary {
    color: var(--accent);
    border-color: var(--accent);
    background: var(--bg3);
}
.lw-theme .lwt-lang > summary::after { border-color: currentColor; opacity: .8; }
.lw-theme .lwt-lang-cur { font-weight: 700; }
.lw-theme .lwt-lang-menu {
    background: var(--bg2);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: .35em;
    min-width: 13em;
    top: calc(100% + .5em);
}
.lw-theme .lwt-lang-menu a {
    color: var(--text);
    border-radius: 8px;
    padding: .5em .7em;
    transition: background .15s, color .15s;
}
.lw-theme .lwt-lang-menu a b { color: var(--text-dim); }
.lw-theme .lwt-lang-menu a:hover { background: rgba(74, 144, 217, .12); color: var(--accent); }
.lw-theme .lwt-lang-menu li.on a,
.lw-theme .lwt-lang-menu li.on a b { color: var(--accent); }

/* ЛК: активации ключа (домены) — ядро 2.4.4 */
.ord-act { margin: 2px 0 10px; padding: 12px 14px; background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; display: flex; flex-direction: column; gap: 8px; width: 100%; box-sizing: border-box; }
.ord-act-h { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ord-act-lbl { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim); font-weight: 600; }
.ord-act-cnt { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; font-weight: 700; color: var(--green); background: var(--bg3); border: 1px solid var(--border); border-radius: 999px; padding: 2px 10px; line-height: 1.5; }
.ord-act-cnt.full { color: var(--yellow); }
.ord-act-wait { font-size: 12px; color: var(--text-dim); }
.ord-act-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding: 8px 12px; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; }
.ord-act-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex: none; box-shadow: 0 0 0 3px rgba(40, 202, 65, .15); }
.ord-act-dot.dev { background: var(--purple); box-shadow: 0 0 0 3px rgba(154, 105, 199, .18); }
.ord-act-dom { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 14px; font-weight: 600; color: var(--text-bright); flex: 1 1 auto; min-width: 0; overflow-wrap: anywhere; }
.ord-act-dev { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--purple); border: 1px solid currentColor; border-radius: 999px; padding: 1px 8px; }
.ord-act-since { font-size: 12px; color: var(--text-dim); white-space: nowrap; }
.ord-act-ctl { display: flex; gap: 6px; margin-left: auto; }
.ord-act-btn { font-size: 12px; font-weight: 600; font-family: inherit; background: transparent; border: 1px solid var(--border); border-radius: 8px; padding: 5px 12px; cursor: pointer; color: var(--text); transition: all .15s; }
.ord-act-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(74, 144, 217, .08); }
.ord-act-btn[data-act="remove"]:hover { border-color: var(--red); color: var(--red); background: rgba(255, 95, 87, .08); }
.ord-act-add { align-self: flex-start; font-size: 13px; padding: 8px 16px; color: var(--accent); border: 1px dashed var(--accent); }
.ord-act-add:hover { background: var(--accent); color: #fff; border-style: solid; }
.ord-act-empty { font-size: 13px; color: var(--text-dim); line-height: 1.55; }
.ord-act-form { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; padding: 10px; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; }
.ord-act-form[hidden] { display: none; }
.ord-act-input { flex: 1 1 220px; min-width: 0; padding: 9px 12px; border: 1px solid var(--border); border-radius: 8px; font: inherit; font-size: 14px; background: var(--bg2); color: var(--text-bright); }
.ord-act-input::placeholder { color: var(--text-dimmer); }
.ord-act-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(74, 144, 217, .15); }
.ord-act-submit { font: inherit; font-size: 13px; font-weight: 600; padding: 9px 18px; border-radius: 8px; cursor: pointer; background: var(--accent); color: #fff; border: 1px solid var(--accent); transition: all .15s; }
.ord-act-submit:hover { background: var(--accent-light); border-color: var(--accent-light); }
.ord-act-msg { min-height: 0; }
.ord-act-msg:empty { display: none; }
@media (max-width: 560px) { .ord-act-ctl { margin-left: 0; width: 100%; } .ord-act-since { display: none; } }

/* ===== Модули WhitePage (/whitepage-modules/): табы, карточки, страницы модулей, иллюстрации (2026-09-11) ===== */
.wpm-tabs { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.wpm-tabs::-webkit-scrollbar { display: none; }
.wpm-tabs .catalog-tab { flex: 0 0 auto; white-space: nowrap; text-transform: none; letter-spacing: 0; font-size: 15px; font-weight: 600; padding: 10px 18px; }
.wpm-tab-n { display: inline-block; min-width: 20px; margin-left: 4px; padding: 1px 7px; border-radius: 10px; border: 1px solid var(--border); font-size: 12px; font-weight: 600; color: var(--text-dim); text-align: center; }
.wpm-tabs .catalog-tab.active .wpm-tab-n { border-color: var(--mock-blue); color: var(--mock-blue); }
.wpm-card[hidden] { display: none; }
.wpm-card .card-body h3 { font-size: 1.15em; margin-bottom: 8px; color: var(--accent-light); }
.wpm-tag-pro { background: linear-gradient(135deg, #6d4bd8, #3574b8); color: #fff; }
.wpm-card .card-meta { gap: 12px; }
.wpm-card-price { display: flex; flex-direction: column; gap: 2px; font-size: 13px; line-height: 1.35; }
.wpm-free { color: #28ca41; font-weight: 600; }
.wpm-pro-from { color: var(--text-dim); font-weight: 600; }
[data-theme="light"] .wpm-free { color: #1a7a2a; }

/* Страница модуля: герой */
.wpm-hero .lw-bc { margin-bottom: 22px; }
.wpm-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: -10px 0 26px; }
.wpm-badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 12px; border-radius: 999px; font-size: 13px; font-weight: 600; border: 1px solid var(--border); color: var(--text-dim); background: var(--bg2); }
.wpm-badge-free { color: #28ca41; border-color: rgba(40, 202, 65, .35); background: rgba(40, 202, 65, .08); }
[data-theme="light"] .wpm-badge-free { color: #1a7a2a; }
.wpm-badge-pro { color: #fff; border-color: transparent; background: linear-gradient(135deg, #6d4bd8, #3574b8); }
.wpm-hero-demo { overflow: hidden; background: none; min-height: 260px; }
.wpm-hero-demo .card-illustration { position: absolute; inset: 0; height: auto; }

/* Страница модуля: бесплатная версия и PRO (стили как у тарифов /services/whitepage/, свои — там они встроены в шаблон) */
.wpm-pro .wp-pricing-grid { max-width: 760px; margin-left: auto; margin-right: auto; }
.wpm-pro .wp-plan-note { font-size: 12.5px; color: var(--text-dim); margin: -6px 0 12px; min-height: 1.4em; }
.wpm-pro .wp-card-comm::before { content: none !important; }
.wpm-pro .wp-pill { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; background: linear-gradient(135deg, #6d4bd8, #3574b8); color: #fff; padding: 4px 16px; border-radius: 20px; font-size: 12px; font-weight: 700; letter-spacing: .5px; white-space: nowrap; z-index: 1; }
.wpm-pro-note { text-align: center; max-width: 680px; margin: 24px auto 0; font-size: 14px; }

/* Страница модуля: подключение, другие модули */
.wpm-needs { display: flex; align-items: center; gap: 18px; max-width: 760px; margin: 32px auto 0; padding: 20px 24px; background: linear-gradient(135deg, rgba(16, 185, 129, .08), rgba(59, 130, 246, .06)); border: 1px solid var(--border); border-radius: 16px; }
.wpm-needs .wp-lic-note__i { font-size: 30px; line-height: 1; flex: 0 0 auto; }
.wpm-needs p { font-size: 15px; color: var(--text); line-height: 1.65; margin: 0; }
.wpm-nosite { text-align: center; margin: 24px auto 0; font-size: 14px; }
.wpm-nosite a { color: var(--accent); }
.wpm-related .wpm-grid { margin-top: 32px; }
.wpm-all { text-align: center; margin-top: 28px; }

/* Блок модулей на /services/whitepage/ */
a.feature-card.wpm-feat { display: block; text-decoration: none; color: inherit; }
a.feature-card.wpm-feat .card-tag { margin: 0 0 0 6px; font-size: 10px; padding: 2px 8px; vertical-align: middle; }
.wpm-mod-cta { text-align: center; margin-top: 32px; }

/* Иллюстрации модулей без аналога среди карточек плагинов */
.illust-wpm { background: linear-gradient(135deg, var(--illust-bg-1), var(--illust-bg-2)); display: flex; align-items: center; justify-content: center; gap: 22px; }
.wpm-pay-card { position: relative; width: 170px; height: 104px; border-radius: 12px; padding: 14px 16px; background: linear-gradient(135deg, #3574b8, #6d4bd8); color: #fff; box-shadow: 0 10px 28px rgba(0, 0, 0, .25); display: flex; flex-direction: column; justify-content: space-between; }
.wpm-pay-chip { width: 26px; height: 20px; border-radius: 4px; background: linear-gradient(135deg, #f5d77a, #c9a33c); }
.wpm-pay-brand { position: absolute; top: 14px; right: 16px; font-weight: 700; font-size: 13px; letter-spacing: .3px; }
.wpm-pay-num { font-family: monospace; font-size: 13px; letter-spacing: 1.5px; opacity: .9; }
.wpm-pay-methods { display: flex; flex-direction: column; gap: 8px; }
.wpm-pay-methods span { font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 8px; border: 1.5px solid var(--illust-ring); background: var(--illust-bg-1); color: var(--text-dim); text-align: center; }
.wpm-pay-ok { position: absolute; bottom: 16px; right: 18px; width: 28px; height: 28px; border-radius: 50%; background: var(--green); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 15px; }
.wpm-qr { display: grid; grid-template-columns: repeat(7, 12px); gap: 3px; padding: 10px; background: #fff; border-radius: 10px; box-shadow: 0 8px 24px rgba(0, 0, 0, .2); }
.wpm-qr i { width: 12px; height: 12px; border-radius: 2px; }
.wpm-qr i.on { background: #1a1a35; }
.wpm-erip-lines { display: flex; flex-direction: column; gap: 8px; width: 120px; }
.wpm-erip-t { font-weight: 800; font-size: 18px; color: var(--text-bright); letter-spacing: .5px; }
.wpm-erip-l { height: 8px; border-radius: 4px; background: var(--illust-ring); }
.wpm-erip-l.short { width: 60%; }
.wpm-erip-paid { font-size: 12px; font-weight: 700; color: var(--green); }
.wpm-chat { display: flex; flex-direction: column; gap: 8px; width: 160px; }
.wpm-bubble { font-size: 12px; padding: 7px 12px; border-radius: 14px; max-width: 150px; line-height: 1.3; }
.wpm-bubble.in { align-self: flex-start; background: var(--illust-bg-1); border: 1px solid var(--illust-ring); color: var(--text); border-bottom-left-radius: 4px; }
.wpm-bubble.out { align-self: flex-end; background: #2aabee; color: #fff; border-bottom-right-radius: 4px; }
.wpm-captcha { display: grid; grid-template-columns: repeat(2, 38px); gap: 8px; }
.wpm-captcha span { width: 38px; height: 38px; border-radius: 10px; border: 1.5px solid var(--illust-ring); background: var(--illust-bg-1); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--text-dim); }
.wpm-captcha span.on { border-color: var(--green); color: #ff5f57; box-shadow: 0 0 0 3px rgba(40, 202, 65, .18); }
.illust-wpm-cur { flex-direction: column; gap: 14px; }
.wpm-cur-price { font-family: monospace; font-size: 44px; font-weight: 800; color: var(--text-bright); line-height: 1; }
.wpm-cur-price small { font-size: 20px; opacity: .6; }
.wpm-cur-chips { display: flex; gap: 8px; }
.wpm-cur-chips span { font-family: monospace; font-size: 13px; font-weight: 700; padding: 6px 11px; border-radius: 8px; border: 1.5px solid var(--illust-ring); background: var(--illust-bg-1); color: var(--text-dim); }
.wpm-cur-chips span.on { border-color: var(--accent); color: var(--accent); }
@media (max-width: 480px) { .illust-wpm { gap: 14px; } .wpm-pay-card { width: 150px; } .wpm-tabs .catalog-tab { font-size: 14px; padding: 10px 14px; } }
/* ===== /Модули WhitePage ===== */
