/* IQTrend — site styles. Dark professional theme, gold accent. */

:root {
    --bg: #0a0d13;
    --bg-2: #0e1119;
    --bg-3: #12161f;
    --card: #131824;
    --card-2: #171d2b;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);
    --text: #eef1f6;
    --muted: #9aa4b5;
    --gold: #e8c464;
    --gold-2: #c9a13b;
    --gold-grad: linear-gradient(135deg, #f3d98b 0%, #e0b94f 45%, #b8860b 100%);
    --green: #16c784;
    --red: #ea3943;
    --radius: 18px;
    --radius-sm: 12px;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
    --font: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
    --maxw: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    /* Прижимаем футер к низу даже на страницах с малым кол-вом текста */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
body > main { flex: 1 0 auto; }
body > .site-footer { flex-shrink: 0; }

img, video { max-width: 100%; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: #f3d98b; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

/* Фоновый свечной график, рисуется по мере скролла (см. site.js) */
#bgCandles {
    position: fixed; inset: 0; width: 100%; height: 100%;
    z-index: 1; pointer-events: none;
}

::selection { background: rgba(232, 196, 100, 0.35); }

/* ---------- Header ---------- */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(10, 13, 19, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, background 0.3s;
}
.site-header.scrolled { border-bottom-color: var(--border); background: rgba(10, 13, 19, 0.9); }
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 68px; gap: 18px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: var(--text); letter-spacing: 0.2px; }
.logo img { width: 30px; height: 30px; border-radius: 8px; }
.logo b { color: inherit; }

.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--muted); font-size: 14.5px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }

.header-right { display: flex; align-items: center; gap: 14px; }

.lang-switch { position: relative; }
.lang-switch > button {
    background: none; border: 1px solid var(--border-strong); color: var(--text);
    padding: 7px 12px; border-radius: 10px; cursor: pointer; font-family: inherit;
    font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
    display: flex; align-items: center; gap: 6px;
}
.lang-switch > button:hover { border-color: var(--gold-2); }
.lang-menu {
    position: absolute; right: 0; top: calc(100% + 8px);
    background: var(--card-2); border: 1px solid var(--border-strong); border-radius: 12px;
    min-width: 140px; padding: 6px; display: none; box-shadow: var(--shadow);
}
.lang-switch.open .lang-menu { display: block; }
.lang-menu a { display: block; padding: 8px 12px; border-radius: 8px; color: var(--text); font-size: 14px; }
.lang-menu a:hover { background: rgba(255, 255, 255, 0.06); }
.lang-menu a.current { color: var(--gold); font-weight: 600; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 26px; border-radius: 12px; font-weight: 700; font-size: 15.5px;
    cursor: pointer; border: none; font-family: inherit; transition: transform 0.18s, box-shadow 0.18s, background 0.2s;
    text-align: center;
}
.btn-gold {
    background: var(--gold-grad); color: #171204 !important;
    box-shadow: 0 6px 24px rgba(224, 185, 79, 0.28);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(224, 185, 79, 0.42); }
.btn-ghost {
    background: rgba(255, 255, 255, 0.04); color: var(--text) !important;
    border: 1px solid var(--border-strong);
}
.btn-ghost:hover { border-color: var(--gold-2); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 14px; border-radius: 10px; }
.btn-lg { padding: 16px 36px; font-size: 17px; }

.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: 0.25s; }

/* ---------- Hero ---------- */
.hero {
    position: relative; min-height: 92vh; display: flex; flex-direction: column; justify-content: center;
    padding: 130px 0 90px; overflow: hidden;
}
.hero > .container { width: 100%; }
.hero-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0.5;
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 25% 20%, rgba(232, 196, 100, 0.10), transparent 55%),
        linear-gradient(180deg, rgba(10, 13, 19, 0.62) 0%, rgba(10, 13, 19, 0.86) 60%, var(--bg) 100%);
}
.hero-grid {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center;
}
.hero-text { max-width: 640px; }

/* Скрин продукта в хиро — рамка-окно, клик открывает крупно */
.hero-shot {
    border-radius: 16px; overflow: hidden; cursor: zoom-in;
    border: 1px solid rgba(232, 196, 100, 0.28);
    background: #0b0e14;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 70px rgba(232, 196, 100, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.hero-shot:hover { transform: translateY(-4px); box-shadow: 0 36px 90px rgba(0, 0, 0, 0.6), 0 0 90px rgba(232, 196, 100, 0.14); }
.hero-shot img { display: block; width: 100%; height: auto; }
.hero-mobile-shot { display: none; }
.shot-bar {
    display: flex; align-items: center; gap: 6px; padding: 10px 14px;
    background: rgba(19, 24, 36, 0.92); border-bottom: 1px solid var(--border);
}
.shot-bar span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.14); }
.shot-bar em { margin-left: 8px; font-style: normal; font-size: 12px; color: var(--muted); letter-spacing: 0.3px; }

.hero-stats-wrap { position: relative; z-index: 2; margin-top: 56px; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid rgba(232, 196, 100, 0.4); color: var(--gold);
    background: rgba(232, 196, 100, 0.07);
    font-size: 13px; font-weight: 600; letter-spacing: 0.4px;
    padding: 7px 16px; border-radius: 100px; margin-bottom: 26px;
}
.hero-badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 50% { opacity: 0.4; } }

.hero h1 {
    font-size: clamp(38px, 6.2vw, 68px); line-height: 1.06; font-weight: 800;
    letter-spacing: -1.5px; margin-bottom: 24px;
}
.hero h1 .grad {
    background: var(--gold-grad);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero .sub { font-size: clamp(16px, 2vw, 19px); color: var(--muted); max-width: 640px; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats {
    display: grid; grid-template-columns: repeat(4, auto); gap: 40px;
    justify-content: space-between;
    padding-top: 30px; border-top: 1px solid var(--border);
}
.hero-stat .num { font-size: 27px; font-weight: 800; color: var(--gold); letter-spacing: -0.5px; }
.hero-stat .lbl { font-size: 13px; color: var(--muted); margin-top: 2px; max-width: 150px; }

.info-i {
    display: inline-flex; align-items: center; justify-content: center;
    width: 18px; height: 18px; border-radius: 50%; margin-left: 8px; vertical-align: 4px;
    border: 1px solid var(--border-strong); background: rgba(255, 255, 255, 0.06);
    color: var(--muted); font-size: 11px; font-weight: 700; font-style: italic;
    font-family: Georgia, "Times New Roman", serif; cursor: pointer; transition: border-color 0.2s, color 0.2s;
}
.info-i:hover { border-color: var(--gold-2); color: var(--gold); }

/* ---------- Ticker ---------- */
.ticker-wrap {
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    background: var(--bg-2); overflow: hidden; padding: 14px 0;
    position: relative;
}
.ticker { display: flex; gap: 46px; width: max-content; animation: ticker 42s linear infinite; }
.ticker-wrap:hover .ticker { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }
.tick { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--muted); white-space: nowrap; }
.tick .sig { font-size: 11px; font-weight: 800; padding: 2px 8px; border-radius: 6px; letter-spacing: 0.5px; }
.tick .sig.buy { color: var(--green); background: rgba(22, 199, 132, 0.12); }
.tick .sig.sell { color: var(--red); background: rgba(234, 57, 67, 0.12); }

/* ---------- Sections ---------- */
section { padding: 96px 0; }
section.alt { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.sec-head { max-width: 660px; margin: 0 auto 56px; text-align: center; }
.sec-head h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -1px; line-height: 1.15; margin-bottom: 16px; }
.sec-head p { color: var(--muted); font-size: 17px; }
.sec-head .grad { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---------- Pain cards ---------- */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pain-card {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 30px 28px; transition: transform 0.25s, border-color 0.25s;
}
.pain-card:hover { transform: translateY(-4px); border-color: rgba(232, 196, 100, 0.35); }
.pain-card .quote {
    font-style: italic; font-weight: 600; font-size: 17.5px; line-height: 1.45;
    border-left: 3px solid var(--red); padding-left: 16px; margin-bottom: 18px;
    color: var(--text); min-height: 3.6em;
}
.pain-card .solution { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); font-size: 15px; }
.pain-card .solution .v { color: var(--green); font-weight: 800; line-height: 1.4; }

/* ---------- Video examples ---------- */
.videos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 40px; }
.video-card {
    position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer;
    border: 1px solid var(--border); aspect-ratio: 600 / 380; background-size: cover; background-position: center;
    transition: transform 0.25s, box-shadow 0.25s; padding: 0;
}
.video-card:hover { transform: translateY(-4px) scale(1.015); box-shadow: var(--shadow); }
.video-card .play {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(6, 8, 12, 0.28); transition: background 0.25s;
}
.video-card:hover .play { background: rgba(6, 8, 12, 0.1); }
.video-card .play span {
    width: 58px; height: 58px; border-radius: 50%; background: rgba(10, 13, 19, 0.65);
    border: 2px solid rgba(255, 255, 255, 0.85); display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(4px); transition: transform 0.25s, background 0.25s;
}
.video-card:hover .play span { transform: scale(1.12); background: rgba(224, 185, 79, 0.85); }
.video-card .play svg { width: 20px; height: 20px; fill: #fff; margin-left: 3px; }
.examples-cta { text-align: center; }

/* ---------- Features ---------- */
.features-wrap { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr); gap: 54px; align-items: center; }
.features-img { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: var(--card); }
.features-img img { display: block; width: 100%; }
.compare-slider {
    --pos: 56%;
    position: relative; padding: 10px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
    border-color: rgba(232, 196, 100, 0.28);
    box-shadow: 0 24px 76px rgba(0, 0, 0, 0.38), 0 0 52px rgba(232, 196, 100, 0.08);
    user-select: none; touch-action: pan-y;
}
.compare-stage {
    position: relative; overflow: hidden; border-radius: calc(var(--radius) - 8px);
    aspect-ratio: 16 / 9; background: #070a10;
}
.compare-img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center center; pointer-events: none;
}
.compare-before { z-index: 1; }
.compare-after-wrap {
    position: absolute; inset: 0; width: 100%;
    overflow: hidden; z-index: 2;
    clip-path: inset(0 calc(100% - var(--pos)) 0 0);
    will-change: clip-path;
}
.compare-after { width: 100%; max-width: 100%; }
.compare-handle {
    position: absolute; z-index: 5; top: 0; bottom: 0; left: var(--pos);
    width: 30px; transform: translateX(-50%); border: 0; background: transparent;
    cursor: ew-resize; color: #fff; touch-action: none;
}
.compare-handle::before {
    content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(232,196,100,0), rgba(232,196,100,0.78), rgba(45,242,155,0.82), rgba(232,196,100,0));
    box-shadow: 0 0 14px rgba(232, 196, 100, 0.42);
}
.compare-handle span {
    position: absolute; top: 50%; left: 50%; width: 18px; height: 50px;
    transform: translate(-50%, -50%);
    border-radius: 999px; border: 1px solid rgba(232,196,100,0.62);
    background:
        radial-gradient(circle at 50% 34%, rgba(255,255,255,0.9) 0 2px, transparent 3px),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.82) 0 2px, transparent 3px),
        radial-gradient(circle at 50% 66%, rgba(255,255,255,0.72) 0 2px, transparent 3px),
        linear-gradient(180deg, rgba(11,14,20,0.96), rgba(17,22,32,0.94));
    box-shadow: 0 10px 24px rgba(0,0,0,0.36), 0 0 18px rgba(232,196,100,0.22);
}
.compare-handle:hover span,
.compare-slider:focus-within .compare-handle span {
    border-color: rgba(45,242,155,0.72);
    box-shadow: 0 12px 28px rgba(0,0,0,0.4), 0 0 24px rgba(45,242,155,0.26);
}
.features-list { display: flex; flex-direction: column; gap: 10px; }
.feature-item {
    display: flex; gap: 18px; padding: 20px; border-radius: var(--radius-sm);
    border: 1px solid transparent; transition: background 0.25s, border-color 0.25s;
}
.feature-item:hover { background: var(--card); border-color: var(--border); }
.feature-ico {
    flex: 0 0 46px; width: 46px; height: 46px; border-radius: 12px;
    background: rgba(232, 196, 100, 0.1); border: 1px solid rgba(232, 196, 100, 0.25);
    display: flex; align-items: center; justify-content: center;
}
.feature-ico svg { width: 22px; height: 22px; stroke: var(--gold); }
.feature-item h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.feature-item p { color: var(--muted); font-size: 14.5px; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 34px 28px; position: relative; overflow: hidden;
}
.step::before {
    counter-increment: step; content: "0" counter(step);
    position: absolute; top: 14px; right: 20px; font-size: 54px; font-weight: 800;
    color: rgba(232, 196, 100, 0.1); letter-spacing: -2px;
}
.step .step-num {
    width: 40px; height: 40px; border-radius: 50%; background: var(--gold-grad);
    color: #171204; font-weight: 800; display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px; font-size: 16px;
}
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* ---------- Bonuses ---------- */
.bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.bonus-card {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; transition: transform 0.25s, border-color 0.25s; display: flex; flex-direction: column;
}
.bonus-card:hover { transform: translateY(-4px); border-color: rgba(232, 196, 100, 0.35); }
.bonus-card .bimg { cursor: zoom-in; overflow: hidden; border-bottom: 1px solid var(--border); position: relative; }
.bonus-card .bimg img { display: block; width: 100%; transition: transform 0.4s; }
.bonus-card .bimg:hover img { transform: scale(1.03); }
.bonus-card .bimg .zoom-hint {
    position: absolute; bottom: 10px; right: 12px; font-size: 12px; color: rgba(255,255,255,0.85);
    background: rgba(10, 13, 19, 0.65); padding: 4px 10px; border-radius: 8px; backdrop-filter: blur(4px);
}
.bonus-card .btext { padding: 26px 28px; }
.bonus-card .btag {
    display: inline-block; font-size: 11.5px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
    color: var(--green); background: rgba(22, 199, 132, 0.1); border: 1px solid rgba(22, 199, 132, 0.3);
    padding: 4px 10px; border-radius: 100px; margin-bottom: 12px;
}
.bonus-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.bonus-card p { color: var(--muted); font-size: 15px; }

/* ---------- Reviews (пагинируемый слайдер) ---------- */
.reviews-slider { display: flex; align-items: center; gap: 14px; }
.reviews-viewport { overflow: hidden; flex: 1; padding-top: 8px; margin-top: -8px; }
.reviews-track { display: flex; transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
.review-slide {
    flex: 0 0 100%; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch;
}
.review-arrow {
    flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%;
    background: var(--card); border: 1px solid var(--border-strong); color: var(--gold);
    font-size: 24px; line-height: 1; cursor: pointer; transition: border-color 0.2s, background 0.2s, opacity 0.2s;
    display: flex; align-items: center; justify-content: center; padding-bottom: 3px;
}
.review-arrow:hover { border-color: var(--gold-2); background: var(--card-2); }
.review-dots { display: flex; justify-content: center; gap: 9px; margin: 22px 0 26px; }
.review-dot {
    width: 9px; height: 9px; border-radius: 50%; border: none; cursor: pointer;
    background: rgba(255, 255, 255, 0.18); transition: background 0.2s, width 0.2s;
}
.review-dot.active { background: var(--gold); width: 24px; border-radius: 5px; }
.review-card {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 24px; cursor: zoom-in; display: flex; flex-direction: column;
    transition: transform 0.25s, border-color 0.25s;
}
.review-card:hover { transform: translateY(-4px); border-color: rgba(232, 196, 100, 0.4); }
.stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 14px; }
.stars svg { width: 15px; height: 15px; }
.review-text { font-size: 15px; font-style: italic; line-height: 1.65; margin-bottom: 18px; }
.review-meta { margin-top: auto; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.review-name { font-weight: 700; font-size: 13.5px; color: var(--muted); }
.review-src {
    font-size: 11.5px; font-weight: 700; letter-spacing: 0.5px; color: #2aabee;
    background: rgba(42, 171, 238, 0.1); border: 1px solid rgba(42, 171, 238, 0.3);
    padding: 3px 10px; border-radius: 100px; white-space: nowrap;
}
.reviews-note { text-align: center; color: var(--muted); font-size: 13px; max-width: 580px; margin: 0 auto; }

/* ---------- Pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 34px; align-items: stretch; }
.plan {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 34px 30px; display: flex; flex-direction: column; position: relative;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.plan:hover { transform: translateY(-5px); }
/* Подсветка "hl" следует за курсором (десктоп) или за скроллом (телефон) */
.plan.hl {
    border-color: rgba(232, 196, 100, 0.55);
    background: linear-gradient(180deg, rgba(232, 196, 100, 0.06), var(--card) 45%);
    box-shadow: 0 18px 50px rgba(224, 185, 79, 0.12);
}
.plan .badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--gold-grad); color: #171204; font-size: 12px; font-weight: 800;
    letter-spacing: 0.6px; text-transform: uppercase; padding: 5px 16px; border-radius: 100px; white-space: nowrap;
}
.plan .badge.alt {
    background: var(--card-2); color: var(--gold); border: 1px solid rgba(232, 196, 100, 0.5);
}
.plan .pname { font-size: 15px; font-weight: 700; color: var(--muted); letter-spacing: 0.4px; text-transform: uppercase; margin-bottom: 14px; }
.plan .pprice { display: flex; align-items: baseline; gap: 5px; margin-bottom: 4px; }
.plan .pprice .val { font-size: 44px; font-weight: 800; letter-spacing: -1.5px; transition: color 0.25s; }
.plan.hl .pprice .val { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
/* Кнопка тарифа: обычная — контурная, у подсвеченного — золотая */
.btn-plan {
    background: rgba(255, 255, 255, 0.04); color: var(--text) !important;
    border: 1px solid var(--border-strong);
}
.btn-plan:hover { transform: translateY(-2px); }
.plan.hl .btn-plan {
    background: var(--gold-grad); color: #171204 !important; border-color: transparent;
    box-shadow: 0 6px 24px rgba(224, 185, 79, 0.28);
}
.plan .pprice .unit { color: var(--muted); font-size: 15px; }
.plan .pequiv { color: var(--muted); font-size: 14.5px; margin-bottom: 8px; }
.plan .psave {
    display: inline-block; width: fit-content; font-size: 12.5px; font-weight: 700; color: var(--green);
    background: rgba(22, 199, 132, 0.1); border-radius: 100px; padding: 3px 12px; margin-bottom: 18px;
}
.plan .psave.empty { visibility: hidden; }
.plan .btn { margin-top: auto; }

.pay-note { text-align: center; color: var(--muted); font-size: 14px; margin: -8px 0 28px; }

.plan-includes {
    max-width: 640px; margin: 0 auto 30px; background: var(--bg-3); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 24px 30px;
}
.plan-includes .pi-title { font-weight: 700; margin-bottom: 12px; font-size: 15px; }
.plan-includes ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.plan-includes li { display: flex; gap: 10px; font-size: 14.5px; color: var(--muted); align-items: flex-start; }
.plan-includes li::before { content: "✓"; color: var(--green); font-weight: 800; }

.test-strip {
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px;
    max-width: 640px; margin: 0 auto 30px;
    background: linear-gradient(120deg, rgba(232, 196, 100, 0.09), rgba(232, 196, 100, 0.03));
    border: 1px dashed rgba(232, 196, 100, 0.45); border-radius: var(--radius); padding: 26px 30px;
}
.test-strip .tt b { display: block; font-size: 17px; }
.test-strip .tt span { color: var(--muted); font-size: 14.5px; }
.test-strip .tt .tnote { display: block; font-size: 12.5px; opacity: 0.75; margin-top: 4px; }

.pricing-notes { text-align: center; color: var(--muted); font-size: 13.5px; max-width: 640px; margin: 0 auto; }
.pricing-notes .secure { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px; }
.pricing-notes .secure svg { width: 15px; height: 15px; stroke: var(--green); flex: 0 0 15px; }
.pricing-notes .corporate { font-size: 14px; line-height: 1.65; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px 22px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; transition: border-color 0.25s; }
.faq-item[open] { border-color: rgba(232, 196, 100, 0.4); }
.faq-item summary {
    list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 700; font-size: 16px;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { flex: 0 0 auto; transition: transform 0.25s; color: var(--gold); font-size: 20px; line-height: 1; }
.faq-item[open] summary .chev { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 20px; color: var(--muted); font-size: 15px; }

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; }
.final-cta .inner {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(232, 196, 100, 0.12), transparent 65%),
        var(--card);
    border: 1px solid var(--border-strong); border-radius: 24px; padding: 70px 40px;
}
.final-cta h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -1px; margin-bottom: 14px; }
.final-cta p { color: var(--muted); margin-bottom: 30px; font-size: 17px; }
.final-cta .support { margin-top: 26px; color: var(--muted); font-size: 15px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-2); padding: 56px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 0.8fr; gap: 44px; margin-bottom: 40px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 13.5px; line-height: 1.7; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 16px; font-weight: 700; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text); font-size: 14.5px; opacity: 0.85; }
.footer-col a:hover { color: var(--gold); opacity: 1; }
.footer-contact { color: var(--muted); font-size: 14.5px; line-height: 1.8; }
.footer-contact a { color: var(--text); }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a {
    width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border-strong);
    display: flex; align-items: center; justify-content: center; transition: border-color 0.2s, transform 0.2s;
    background-size: 17px; background-repeat: no-repeat; background-position: center;
}
.socials a:hover { border-color: var(--gold-2); transform: translateY(-2px); }
.footer-bottom {
    border-top: 1px solid var(--border); padding-top: 24px;
    display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    color: var(--muted); font-size: 13px;
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
    position: fixed; z-index: 300; left: 20px; right: 20px; bottom: 20px;
    max-width: 680px; margin: 0 auto;
    background: var(--card-2); border: 1px solid var(--border-strong); border-radius: 16px;
    padding: 20px 22px; box-shadow: var(--shadow); display: none;
}
.cookie-banner.show { display: block; animation: rise 0.4s ease; }
@keyframes rise { from { transform: translateY(24px); opacity: 0; } }
.cookie-banner p { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }

/* ---------- Video modal / lightbox ---------- */
.modal {
    position: fixed; inset: 0; z-index: 400; display: none;
    align-items: center; justify-content: center; padding: 24px;
    background: rgba(5, 7, 10, 0.88); backdrop-filter: blur(6px); cursor: pointer;
}
.modal.show { display: flex; animation: fadein 0.25s ease; }
@keyframes fadein { from { opacity: 0; } }
.modal video, .modal img {
    max-width: min(1000px, 94vw); max-height: 76vh; border-radius: 14px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7); cursor: auto;
}
.modal .modal-body { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.modal .cap {
    max-width: min(720px, 90vw); text-align: center; color: var(--text); font-size: 14px; line-height: 1.6;
    background: var(--card-2); border: 1px solid var(--border-strong); border-radius: 12px;
    padding: 14px 20px; cursor: auto;
}
.modal .cap:empty { display: none; }
.modal .hint { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; color: var(--muted); font-size: 13px; }

/* ---------- Back to top ---------- */
.back-top {
    position: fixed; right: 22px; bottom: 22px; z-index: 90;
    width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--border-strong);
    background: var(--card-2); color: var(--gold); font-size: 19px; cursor: pointer;
    opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.2s;
}
.back-top.show { opacity: 1; pointer-events: auto; }
.back-top:hover { transform: translateY(-3px); }

/* ---------- Legal pages ---------- */
.legal-main { padding: 130px 24px 90px; max-width: 820px; margin: 0 auto; }
.legal-main h1 { font-size: clamp(30px, 4.5vw, 42px); letter-spacing: -1px; margin-bottom: 26px; }
.legal-main h2 { font-size: 21px; margin: 34px 0 12px; }
.legal-main p, .legal-main li { color: var(--muted); font-size: 15.5px; margin-bottom: 12px; }
.legal-main ul, .legal-main ol { padding-left: 22px; margin-bottom: 14px; }
.legal-main img { border-radius: 12px; border: 1px solid var(--border); }
.legal-main table { width: 100%; border-collapse: collapse; margin: 16px 0 22px; font-size: 14px; }
.legal-main th, .legal-main td { border: 1px solid var(--border-strong); padding: 10px 12px; text-align: left; color: var(--muted); vertical-align: top; }
.legal-main th { color: var(--text); background: var(--card); font-weight: 700; }
.legal-main .md-article { overflow-x: auto; }

.link-btn {
    background: none; border: none; padding: 0; font: inherit; color: inherit;
    cursor: pointer; text-decoration: underline; text-underline-offset: 3px;
}
.link-btn:hover { color: var(--gold); }
.legal-back { display: inline-block; margin-bottom: 30px; font-size: 14.5px; }

/* ---------- SEO guide ---------- */
.guide-main { background: var(--bg); }
.guide-hero { padding: 126px 0 70px; position: relative; overflow: hidden; }
.guide-hero::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(circle at 18% 20%, rgba(232, 196, 100, 0.11), transparent 28%),
        radial-gradient(circle at 82% 16%, rgba(22, 199, 132, 0.12), transparent 28%);
}
.guide-hero-grid {
    position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
    gap: 52px; align-items: center;
}
.guide-hero h1 { font-size: clamp(40px, 6vw, 72px); line-height: 0.98; letter-spacing: -2.2px; max-width: 820px; }
.guide-lead { color: var(--muted); font-size: clamp(17px, 1.6vw, 21px); line-height: 1.65; max-width: 700px; margin: 24px 0 0; }
.guide-hero-media {
    border: 1px solid var(--border-strong); border-radius: 24px; padding: 10px; background: rgba(255,255,255,0.06);
    box-shadow: 0 26px 80px rgba(31, 19, 84, 0.22);
}
.guide-hero-media img { width: 100%; height: auto; aspect-ratio: 1400 / 788; object-fit: cover; display: block; border-radius: 18px; }
.guide-toc {
    margin-top: 28px; max-width: 650px; background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 20px 22px;
}
.guide-toc b { display: block; margin-bottom: 10px; }
.guide-toc ol { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; padding-left: 19px; color: var(--muted); font-size: 14.5px; }
.guide-split { display: grid; grid-template-columns: 0.74fr 1.26fr; gap: 54px; align-items: start; }
.guide-sticky { position: sticky; top: 108px; }
.guide-sticky span {
    display: inline-flex; width: 44px; height: 44px; border-radius: 14px; align-items: center; justify-content: center;
    margin-bottom: 18px; background: var(--gold-grad); color: #171204; font-weight: 900;
}
.guide-sticky h2, .guide-iq h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.05; letter-spacing: -1.2px; }
.guide-copy {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 34px 38px; box-shadow: var(--shadow-soft);
}
.guide-copy p { color: var(--muted); font-size: 19px; line-height: 1.75; }
.guide-checks { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.guide-check {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm);
    padding: 24px 20px; min-height: 210px; transition: transform 0.22s ease, border-color 0.22s ease;
}
.guide-check:hover { transform: translateY(-4px); border-color: rgba(232, 196, 100, 0.42); }
.guide-check h3 { font-size: 17px; margin-bottom: 12px; }
.guide-check p { color: var(--muted); font-size: 14.5px; line-height: 1.65; }
.guide-markets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.guide-market {
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid var(--border); border-radius: var(--radius); padding: 30px;
}
.guide-market span { display: inline-block; color: var(--gold); font-weight: 800; margin-bottom: 14px; }
.guide-market p { color: var(--muted); line-height: 1.7; }
.guide-deep { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 980px; margin: 0 auto; }
.guide-deep-item {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 28px 32px; box-shadow: var(--shadow-soft);
}
.guide-deep-item h3 { font-size: 20px; margin-bottom: 12px; letter-spacing: -0.2px; }
.guide-deep-item p { color: var(--muted); font-size: 16.5px; line-height: 1.78; }
.guide-mistakes {
    list-style: none; display: grid; gap: 14px; margin: 0;
}
.guide-mistakes li {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm);
    padding: 18px 20px 18px 48px; color: var(--muted); position: relative; line-height: 1.65;
}
.guide-mistakes li::before {
    content: "!"; position: absolute; left: 18px; top: 18px; width: 20px; height: 20px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center; font-weight: 900;
    background: rgba(232, 196, 100, 0.16); color: var(--gold);
}
.guide-buying {
    list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 0;
}
.guide-buying li {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm);
    padding: 18px 20px 18px 48px; color: var(--muted); position: relative; line-height: 1.65;
}
.guide-buying li::before {
    content: "✓"; position: absolute; left: 18px; top: 18px; width: 20px; height: 20px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center; font-weight: 900;
    background: rgba(22, 199, 132, 0.14); color: var(--green);
}
.guide-table-wrap {
    overflow-x: auto; background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); box-shadow: var(--shadow-soft);
}
.guide-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.guide-table td {
    border-bottom: 1px solid var(--border); padding: 18px 20px; vertical-align: top;
    color: var(--muted); font-size: 15px; line-height: 1.6;
}
.guide-table tr:last-child td { border-bottom: none; }
.guide-table td:first-child { color: var(--text); font-weight: 800; width: 24%; }
.guide-ordered {
    counter-reset: guideSteps; list-style: none; display: grid; gap: 14px; margin: 0;
}
.guide-ordered li {
    counter-increment: guideSteps; background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 18px 20px 18px 58px; color: var(--muted);
    position: relative; line-height: 1.7;
}
.guide-ordered li::before {
    content: counter(guideSteps); position: absolute; left: 18px; top: 17px; width: 26px; height: 26px;
    border-radius: 9px; display: inline-flex; align-items: center; justify-content: center;
    background: var(--gold-grad); color: #171204; font-weight: 900; font-size: 12px;
}
.guide-iq-card {
    display: grid; grid-template-columns: 1fr 0.34fr; gap: 34px; align-items: center;
    background:
        radial-gradient(circle at 12% 0%, rgba(232, 196, 100, 0.15), transparent 32%),
        linear-gradient(135deg, var(--card), rgba(22, 199, 132, 0.06));
    border: 1px solid rgba(232, 196, 100, 0.32); border-radius: 26px; padding: 44px;
    box-shadow: 0 24px 80px rgba(31, 19, 84, 0.18);
}
.guide-iq-card p { color: var(--muted); font-size: 16.5px; line-height: 1.75; margin-top: 16px; }
.guide-iq-card ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
.guide-iq-card li {
    background: rgba(255,255,255,0.055); border: 1px solid var(--border);
    border-radius: 100px; padding: 9px 12px; font-weight: 700; font-size: 13.5px;
}
.guide-note { font-size: 13px !important; opacity: 0.82; }
.guide-iq-actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.guide-hero + section { padding-top: 34px; }

/* ---------- Articles hub ---------- */
.articles-main { background: var(--bg); }
.articles-hero { padding: 128px 0 40px; text-align: center; }
.articles-hero .hero-badge { margin-left: auto; margin-right: auto; }
.articles-hero h1 { font-size: clamp(42px, 6vw, 72px); line-height: 1; letter-spacing: -2px; margin-top: 20px; }
.articles-hero p { color: var(--muted); max-width: 760px; margin: 22px auto 0; font-size: 18px; line-height: 1.7; }
.articles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; padding-bottom: 78px; }
.article-card {
    display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, border-color 0.22s ease;
}
.article-card:hover { transform: translateY(-4px); border-color: rgba(232, 196, 100, 0.42); }
.article-card img { width: 100%; height: auto; aspect-ratio: 1400 / 788; object-fit: cover; display: block; }
.article-card span { color: var(--gold); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.8px; margin: 22px 24px 10px; }
.article-card h2 { font-size: clamp(22px, 3vw, 31px); line-height: 1.08; letter-spacing: -0.8px; margin: 0 24px 12px; }
.article-card p { color: var(--muted); font-size: 15.5px; line-height: 1.65; margin: 0 24px 26px; }

/* ---------- Free trial ad landing ---------- */
.trial-main { background: var(--bg); }
.trial-header {
    background: rgba(9, 11, 16, 0.78);
    backdrop-filter: blur(18px);
}
.trial-hero {
    min-height: 88vh; padding: 128px 0 82px; display: flex; align-items: center;
    position: relative; overflow: hidden;
}
.trial-hero::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(circle at 14% 15%, rgba(232, 196, 100, 0.16), transparent 30%),
        radial-gradient(circle at 88% 18%, rgba(22, 199, 132, 0.16), transparent 32%),
        linear-gradient(180deg, rgba(255,255,255,0.02), transparent 55%);
}
.trial-hero-grid {
    position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
    gap: clamp(36px, 5vw, 76px); align-items: center;
}
.trial-copy h1 {
    font-size: clamp(44px, 7vw, 88px); line-height: 0.94; letter-spacing: -2.7px; max-width: 790px;
}
.trial-copy h2 {
    margin-top: 22px; font-size: clamp(22px, 3vw, 34px); line-height: 1.14; letter-spacing: -0.8px;
    color: var(--gold);
}
.trial-lead {
    color: var(--muted); font-size: clamp(17px, 1.6vw, 21px); line-height: 1.72; max-width: 760px; margin: 22px 0 0;
}
.trial-trustline { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.trial-trustline span {
    border: 1px solid rgba(232, 196, 100, 0.28); background: rgba(232, 196, 100, 0.08);
    color: var(--text); border-radius: 999px; padding: 9px 13px; font-weight: 800; font-size: 13px;
}
.trial-primary { box-shadow: 0 18px 45px rgba(232, 196, 100, 0.24); }
.trial-visual {
    border: 1px solid rgba(232, 196, 100, 0.28); border-radius: 26px; padding: 12px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
    box-shadow: 0 30px 100px rgba(0,0,0,0.32), 0 0 70px rgba(232, 196, 100, 0.11);
    transform: rotate(-1deg);
}
.trial-visual img { width: 100%; height: auto; display: block; border-radius: 18px; background: #fff; }
.trial-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.trial-card {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-soft);
}
.trial-card img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; display: block; background: rgba(255,255,255,0.04); }
.trial-card h3 { font-size: 24px; margin: 22px 24px 10px; letter-spacing: -0.5px; }
.trial-card p { color: var(--muted); line-height: 1.7; margin: 0 24px 28px; }
.trial-included {
    list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 24px 0 0;
}
.trial-included li {
    border: 1px solid rgba(22, 199, 132, 0.22); border-radius: 999px; padding: 12px 16px;
    color: var(--text); background: rgba(22, 199, 132, 0.07); text-align: center; font-weight: 800;
}
.trial-benefits, .trial-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trial-benefit, .trial-step {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm);
    padding: 26px 24px; box-shadow: var(--shadow-soft);
}
.trial-benefit { position: relative; overflow: hidden; }
.trial-benefit::after {
    content: ""; position: absolute; inset: auto -18px -24px auto; width: 92px; height: 92px;
    border-radius: 50%; background: radial-gradient(circle, rgba(232,196,100,0.14), transparent 64%);
    pointer-events: none;
}
.trial-benefit-icon {
    width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid rgba(232,196,100,0.34); border-radius: 15px; margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(232,196,100,0.16), rgba(22,199,132,0.10));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 16px 38px rgba(0,0,0,0.16);
}
.trial-benefit-icon svg {
    width: 24px; height: 24px; fill: none; stroke: var(--gold); stroke-width: 2.1;
    stroke-linecap: round; stroke-linejoin: round;
}
.trial-benefit h3, .trial-step h3 { font-size: 20px; margin-bottom: 12px; letter-spacing: -0.3px; }
.trial-benefit p, .trial-step p { color: var(--muted); line-height: 1.7; }
.trial-step span {
    width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
    border-radius: 14px; margin-bottom: 18px; background: var(--gold-grad); color: #171204; font-weight: 900;
}
.trial-video {
    max-width: 520px; margin: 0 auto; border: 1px solid rgba(232, 196, 100, 0.3); border-radius: 26px;
    padding: 10px; background: rgba(255,255,255,0.06); box-shadow: 0 28px 90px rgba(0,0,0,0.26);
}
.trial-video video { width: 100%; display: block; border-radius: 18px; background: #000; }
.trial-form-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 34px; align-items: start; }
.trial-form-copy {
    position: sticky; top: 108px; background: var(--card); border: 1px solid rgba(232, 196, 100, 0.28);
    border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-soft);
}
.trial-form-copy h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.04; letter-spacing: -1.4px; }
.trial-form-copy p { color: var(--muted); font-size: 18px; line-height: 1.7; margin: 18px 0 22px; }
.trial-form-copy ul, .trial-proof ul { list-style: none; display: grid; gap: 10px; }
.trial-form-copy li, .trial-proof li {
    color: var(--text); padding-left: 28px; position: relative; line-height: 1.5; font-weight: 700;
}
.trial-form-copy li::before, .trial-proof li::before {
    content: ""; position: absolute; left: 0; top: 7px; width: 10px; height: 10px; border-radius: 50%; background: var(--green);
}
.trial-form {
    display: grid; gap: 16px; background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border: 1px solid var(--border-strong); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-soft);
}
.trial-form label, .trial-form fieldset, .trial-field { display: grid; gap: 8px; color: var(--text); font-weight: 800; font-size: 14px; }
.trial-form input[type="email"], .trial-form input[type="text"], .trial-form input[type="tel"] {
    width: 100%; border: 1px solid var(--border-strong); border-radius: 14px; background: rgba(255,255,255,0.07);
    color: var(--text); padding: 15px 15px; font: inherit; outline: none;
}
.trial-label-row { display: inline-flex; align-items: center; gap: 8px; position: relative; width: fit-content; }
.trial-label-row label { display: inline; gap: 0; }
.trial-info {
    width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%; border: 1px solid rgba(232,196,100,0.42); background: rgba(232,196,100,0.1);
    color: var(--gold); font: 900 12px/1 var(--font); cursor: pointer; padding: 0;
}
.trial-info::after {
    content: attr(data-trial-tooltip); position: absolute; left: calc(100% + 10px); top: 50%; transform: translateY(-50%) translateX(-4px);
    width: min(320px, 72vw); padding: 12px 14px; border-radius: 14px; border: 1px solid rgba(232,196,100,0.34);
    background: rgba(15,17,24,0.97); color: var(--text); box-shadow: 0 20px 58px rgba(0,0,0,0.34);
    font-size: 13px; font-weight: 700; line-height: 1.45; opacity: 0; pointer-events: none; z-index: 20;
    transition: opacity .18s ease, transform .18s ease;
}
.trial-info.open::after {
    opacity: 1; transform: translateY(-50%) translateX(0);
}
@media (hover: hover) and (pointer: fine) {
    .trial-info:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }
}
.trial-tv-warning {
    display: flex; align-items: flex-start; gap: 10px; margin: 2px 0 0;
    padding: 12px 13px; border: 1px solid rgba(232, 196, 100, 0.32); border-radius: 14px;
    background: linear-gradient(135deg, rgba(232, 196, 100, 0.12), rgba(232, 196, 100, 0.045));
    color: #f5d982; font-size: 13px; line-height: 1.55; font-weight: 800;
}
.trial-tv-warning span {
    width: 19px; height: 19px; flex: 0 0 19px; display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%; background: var(--gold-grad); color: #171204; font-size: 13px; font-weight: 950;
}
.trial-form input:focus { border-color: rgba(232, 196, 100, 0.62); box-shadow: 0 0 0 4px rgba(232, 196, 100, 0.12); }
.trial-two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.trial-form fieldset { border: 1px solid var(--border); border-radius: 16px; padding: 16px; }
.trial-form fieldset legend { padding: 0 7px; color: var(--muted); }
.trial-form fieldset label, .trial-form .check { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-weight: 600; line-height: 1.55; }
.trial-form input[type="radio"], .trial-form input[type="checkbox"] { margin-top: 3px; accent-color: #e8c464; }
.trial-form .hp { display: none; }
.trial-form-note { color: var(--muted); font-size: 13px; line-height: 1.5; margin: -2px 0 0; }
.trial-form-note a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.trial-form-msg { color: var(--gold); min-height: 20px; font-weight: 800; }
.trial-proof {
    display: grid; grid-template-columns: minmax(260px, 0.72fr) 1fr; gap: 32px; align-items: center;
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px;
}
.trial-proof img { width: 100%; border-radius: 18px; border: 1px solid var(--border); }
.trial-proof p { color: var(--muted); line-height: 1.75; margin-top: 22px; }
.trial-thanks { min-height: 78vh; padding: 140px 0 90px; display: flex; align-items: center; }
.trial-thanks-card {
    max-width: 860px; margin: 0 auto; text-align: center; background: var(--card); border: 1px solid rgba(232, 196, 100, 0.3);
    border-radius: 28px; padding: clamp(34px, 6vw, 72px); box-shadow: var(--shadow-soft);
}
.trial-thanks-card .hero-badge { margin-left: auto; margin-right: auto; }
.trial-thanks-card h1 { font-size: clamp(38px, 6vw, 70px); line-height: 1; letter-spacing: -2px; margin-top: 18px; }
.trial-thanks-card p { color: var(--muted); font-size: 18px; line-height: 1.7; max-width: 720px; margin: 18px auto 0; }
.trial-summary {
    margin: 24px auto 0; max-width: 560px; border: 1px solid var(--border); border-radius: 18px;
    padding: 18px; color: var(--muted); text-align: left; background: rgba(255,255,255,0.045);
}
.trial-thanks-actions { justify-content: center; margin-top: 26px; position: relative; z-index: 2; }
.trial-duplicate { display: none; color: var(--gold) !important; }
.trial-duplicate.show { display: block; }

/* Free-trial v2: reuse the main product visual language instead of a separate raw landing layout. */
.trial-main section { padding: 82px 0; }
.trial-main .trial-hero { min-height: auto; padding: 124px 0 88px; }
.trial-hero-grid { grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr); }
.trial-copy h1 { font-size: clamp(44px, 6.6vw, 78px); max-width: 720px; }
.trial-copy h2 { max-width: 680px; }
.trial-lead { max-width: 720px; }
.trial-copy .hero-ctas { margin-top: 28px; margin-bottom: 0; align-items: center; }
.trial-trustline { margin-top: 24px; gap: 12px; }
.trial-trustline span { display: inline-flex; align-items: center; min-height: 36px; }
.trial-visual {
    transform: none; padding: 0; border: none; background: transparent; box-shadow: none;
}
.trial-compare { border-radius: 26px; }
.trial-compare .compare-stage { aspect-ratio: 16 / 9; border-radius: 18px; }
.trial-compare .compare-handle { width: 26px; }
.trial-compare .compare-handle span { width: 16px; height: 46px; }
.trial-included {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 26px;
}
.trial-included span {
    border: 1px solid rgba(22, 199, 132, 0.24); border-radius: 999px; padding: 11px 16px;
    background: rgba(22, 199, 132, 0.07); font-weight: 800; color: var(--text);
}
.trial-form-grid { grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr); gap: 28px; }
.trial-form-copy { position: sticky; top: 96px; padding: 30px; }
.trial-form-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.trial-form-points span {
    border: 1px solid rgba(232, 196, 100, 0.26); border-radius: 999px; padding: 9px 12px;
    color: var(--text); background: rgba(232, 196, 100, 0.07); font-weight: 800; font-size: 13px;
}
.trial-form { grid-template-columns: 1fr 1fr; gap: 16px; padding: 28px; }
.trial-form > label:nth-of-type(1),
.trial-form > .trial-field,
.trial-form > label:nth-of-type(5),
.trial-email-note,
.trial-form .check,
.trial-form button,
.trial-form-note,
.trial-form-msg { grid-column: 1 / -1; }
.trial-form .trial-two { display: contents; }
.trial-form label.hp { display: none !important; }
.trial-form fieldset {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px;
}
.trial-form fieldset legend { grid-column: 1 / -1; margin-bottom: 4px; }
.trial-form fieldset label {
    border: 1px solid var(--border); border-radius: 13px; padding: 11px 12px;
    background: rgba(255,255,255,0.035);
}
.trial-form .check {
    border: 1px solid var(--border); border-radius: 14px; padding: 12px 14px;
    background: rgba(255,255,255,0.035);
}
.trial-main .reveal {
    opacity: 1;
    transform: none;
}
.trial-hero-stack {
    position: relative; z-index: 1; display: grid; gap: 30px; justify-items: center; text-align: center;
}
.trial-copy-center { max-width: 980px; margin: 0 auto; }
.trial-copy-center h1 {
    max-width: 980px; margin: 0 auto; font-size: clamp(50px, 8vw, 96px);
}
.trial-copy-center h2 { max-width: 760px; margin-left: auto; margin-right: auto; }
.trial-copy-bottom { max-width: 820px; margin: 0 auto; }
.trial-copy-bottom .trial-lead { margin-left: auto; margin-right: auto; }
.trial-copy-bottom .hero-ctas { justify-content: center; margin-top: 24px; }
.trial-copy-bottom .trial-trustline { justify-content: center; }
.trial-hero-stack .trial-visual { width: min(100%, 980px); }
.trial-hero-stack .trial-compare { width: 100%; }
.trial-hero-stack .compare-stage { aspect-ratio: 2.38 / 1; }
.trial-videos { margin-bottom: 26px; }
.trial-form fieldset { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.trial-form > label:nth-of-type(2),
.trial-form > label:nth-of-type(3) { grid-column: 1 / -1; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.1s; }
.reveal[data-d="2"] { transition-delay: 0.2s; }
.reveal[data-d="3"] { transition-delay: 0.3s; }
.reveal[data-d="4"] { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .ticker { animation: none; }
    html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
    .hero-grid { grid-template-columns: 1fr; gap: 38px; }
    .trial-hero-grid, .trial-form-grid, .trial-proof { grid-template-columns: 1fr; }
    .trial-form-copy { position: static; }
    .trial-cards { grid-template-columns: 1fr 1fr; }
    .trial-benefits, .trial-steps { grid-template-columns: 1fr 1fr; }
    .trial-included { grid-template-columns: 1fr; }
    .guide-hero-grid, .guide-split, .guide-iq-card { grid-template-columns: 1fr; }
    .guide-hero { padding-bottom: 34px; }
    .guide-hero-grid { gap: 34px; }
    .guide-checks { grid-template-columns: 1fr 1fr; }
    .guide-buying { grid-template-columns: 1fr; }
    .articles-grid { grid-template-columns: 1fr; }
    .guide-markets { grid-template-columns: 1fr; }
    .guide-sticky { position: static; }
    .pain-grid, .steps { grid-template-columns: 1fr 1fr; }
    .videos-grid { grid-template-columns: 1fr 1fr; }
    .review-slide { grid-template-columns: 1fr 1fr; }
    .features-wrap { grid-template-columns: 1fr; gap: 36px; }
    .compare-slider { max-width: 760px; width: 100%; margin: 0 auto; }
    .plans { grid-template-columns: 1fr 1fr; }
    .plans .plan:last-child { grid-column: span 2; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-stats { grid-template-columns: repeat(2, auto); gap: 24px 40px; }
}
@media (max-width: 680px) {
    section { padding: 68px 0; }
    .trial-hero { min-height: auto; padding: 104px 0 62px; }
    .trial-hero-grid { gap: 28px; }
    .trial-copy h1 { letter-spacing: -1.7px; }
    .trial-copy, .trial-copy .hero-ctas { text-align: center; justify-content: center; }
    .trial-copy .hero-ctas { margin-top: 24px; }
    .trial-copy .hero-badge { margin-left: auto; margin-right: auto; }
    .trial-hero .trial-trustline { display: none; }
    .trial-trustline { justify-content: center; }
    .trial-visual { transform: none; border-radius: 20px; padding: 8px; }
    .trial-cards, .trial-benefits, .trial-steps, .trial-two { grid-template-columns: 1fr; }
    .trial-card h3 { font-size: 21px; }
    .trial-form { grid-template-columns: 1fr; padding: 22px; }
    .trial-form fieldset { grid-template-columns: 1fr; }
    .trial-form-copy { padding: 24px; }
    .trial-info::after { left: 0; top: calc(100% + 10px); transform: translateY(-4px); width: min(300px, 78vw); }
    .trial-info.open::after { transform: translateY(0); }
    .trial-proof { padding: 18px; }
    .hero-video { display: none; }
    .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--bg-2); border-bottom: 1px solid var(--border); flex-direction: column; padding: 18px 24px; gap: 16px; align-items: flex-start; }
    .nav-links.open { display: flex; }
    .burger { display: block; }
    .header-cta { display: none; }
    .pain-grid, .steps, .bonus-grid, .plans { grid-template-columns: 1fr; }
    .compare-slider { padding: 7px; }
    .compare-handle { width: 28px; }
    .compare-handle span { width: 17px; height: 42px; }
    .review-slide { grid-template-columns: 1fr; }
    .reviews-slider { gap: 6px; }
    .review-arrow { width: 38px; height: 38px; font-size: 20px; }
    .plans .plan:last-child { grid-column: auto; }
    .plans { row-gap: 26px; }
    .videos-grid { grid-template-columns: 1fr; }
    .plan-includes ul { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero { min-height: auto; padding: 110px 0 64px; }
    /* на телефоне центрируем хиро, как и остальные секции */
    .hero-text { text-align: center; margin: 0 auto; }
    .hero-badge { margin-left: auto; margin-right: auto; }
    .hero-shot { display: none; }
    .hero-mobile-shot {
        display: block; width: min(100%, 420px); margin: 22px auto 22px;
        border-radius: 16px; overflow: hidden; cursor: zoom-in;
        border: 1px solid rgba(232, 196, 100, 0.34);
        background: #0b0e14;
        box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42), 0 0 46px rgba(232, 196, 100, 0.12);
    }
    .hero-mobile-shot img { display: block; width: 100%; height: auto; }
    .hero .sub { margin-left: auto; margin-right: auto; margin-bottom: 28px; }
    .hero-ctas { justify-content: center; }
    .hero-ctas .btn { flex: 1 1 100%; }
    .hero-stats { width: 100%; grid-template-columns: repeat(2, 1fr); text-align: center; }
    .hero-stat .lbl { max-width: none; }
    .pain-card .quote { min-height: 0; }
    .final-cta .inner { padding: 48px 22px; }
    .steps[style] { grid-template-columns: 1fr !important; }
    .guide-hero { padding: 104px 0 28px; }
    .guide-hero h1 { letter-spacing: -1.4px; }
    .guide-hero-grid { gap: 24px; }
    .guide-hero + section { padding-top: 34px; }
    .guide-toc ol, .guide-checks, .guide-iq-card ul { grid-template-columns: 1fr; }
    .guide-copy, .guide-iq-card, .guide-deep-item { padding: 24px; }
    .guide-check { min-height: 0; }
    .articles-hero { padding-top: 104px; }
}
