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

:root {
    --black:        #0a0a0a;
    --white:        #ffffff;
    --gray-50:      #fafafa;
    --gray-100:     #f4f4f5;
    --gray-200:     #e4e4e7;
    --gray-400:     #a1a1aa;
    --gray-600:     #52525b;
    --gray-800:     #27272a;
    --accent:       #2563eb;
    --accent-light: #eff6ff;
    --green:        #16a34a;
    --green-light:  #f0fdf4;
    --purple:       #7c3aed;
    --purple-light: #f5f3ff;
    --orange:       #ea580c;
    --orange-light: #fff7ed;
    --radius:       12px;
    --radius-lg:    20px;
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ── NAV ─────────────────────────────────────────────── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--gray-200);
}

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

.logo-wrap {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-wrap img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.15s;
}

.nav-links a:hover { color: var(--black); }

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: background 0.15s;
}

.burger:hover { background: var(--gray-100); }

.burger span {
    display: block;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 99;
    padding: 16px 24px 24px;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    text-decoration: none;
    color: var(--gray-800);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    transition: color 0.15s;
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--black); }

.mobile-menu .mob-cta {
    margin-top: 8px;
    background: var(--black);
    color: var(--white) !important;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    border-bottom: none !important;
}

@media (max-width: 600px) {
    .nav-links { display: none; }
    .burger { display: flex; }
}

.nav-cta {
    background: var(--black);
    color: var(--white) !important;
    padding: 9px 20px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.15s !important;
}

.nav-cta:hover { opacity: 0.78; }

/* ── HERO ────────────────────────────────────────────── */
.hero {
    max-width: 1120px;
    margin: 0 auto;
    padding: 100px 24px 72px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-light);
    color: var(--accent);
    border: 1px solid #bfdbfe;
    border-radius: 100px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 36px;
}

.hero-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.25; }
}

h1 {
    font-size: clamp(38px, 6.5vw, 72px);
    font-weight: 900;
    letter-spacing: -2.5px;
    line-height: 1.03;
    margin-bottom: 26px;
    color: var(--black);
}

.typed-cursor {
    display: inline-block;
    color: var(--accent);
    font-weight: 300;
    animation: blink 0.75s step-end infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

h1 em {
    font-style: normal;
    background: linear-gradient(130deg, var(--accent) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--gray-600);
    max-width: 620px;
    margin: 0 auto 52px;
    line-height: 1.6;
}

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

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions a { width: 100%; justify-content: center; }
}

.btn-primary {
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.15s, box-shadow 0.15s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.16);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-600);
    text-decoration: none;
    padding: 16px 24px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    border: 1px solid var(--gray-200);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.15s, color 0.15s;
}

.btn-ghost:hover { border-color: var(--gray-400); color: var(--black); }

/* ── PLATFORM STRIP ──────────────────────────────────── */
.platform-strip {
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 24px;
    background: var(--gray-50);
}

.platform-strip-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.ps-label {
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 500;
}

.ps-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
}

.ps-icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    color: #fff;
}

.ps-yandex { background: #fc3f1d; }
.ps-gpt    { background: var(--purple); }
.ps-ws     { background: var(--accent); }

/* ── STATS ───────────────────────────────────────────── */
.stats {
    background:
        radial-gradient(ellipse at top left, rgba(37,99,235,0.18) 0%, transparent 55%),
        radial-gradient(ellipse at bottom right, rgba(124,58,237,0.14) 0%, transparent 55%),
        var(--black);
    padding: 72px 24px;
}

.stats-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 48px;
    text-align: center;
}

.stat-num {
    font-size: 52px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 10px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-num span { color: var(--accent); }

.stat-label {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.5;
}

/* ── SECTION HELPERS ─────────────────────────────────── */
.section {
    max-width: 1120px;
    margin: 0 auto;
    padding: 96px 24px;
}

.section-full {
    padding: 96px 24px;
}

.section-full-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.s-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 14px;
    text-align: center;
}

.s-label.blue   { color: var(--accent); }
.s-label.green  { color: var(--green); }
.s-label.purple { color: var(--purple); }
.s-label.orange { color: var(--orange); }

.s-title {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.08;
    margin-bottom: 14px;
    text-align: center;
}

.s-sub {
    color: var(--gray-600);
    font-size: 17px;
    max-width: 540px;
    margin: 0 auto 64px;
    text-align: center;
    line-height: 1.6;
}

/* ── FEATURES GRID ───────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feat-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.feat-card:hover {
    border-color: #c4c4c8;
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
}

.feat-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.feat-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.feat-text {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ── HOW IT WORKS ────────────────────────────────────── */
.how-bg {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: start;
}

.step-arrow {
    display: flex;
    align-items: center;
    padding: 0 12px;
    padding-top: 10px;
    color: var(--gray-400);
}

@media (max-width: 860px) {
    .steps {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .step-arrow { display: none; }
}

.step-num {
    width: 42px;
    height: 42px;
    background: var(--black);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 18px;
}

.step-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-text {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ── REPLY EXAMPLE ───────────────────────────────────── */
.example-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 680px) {
    .example-card { grid-template-columns: 1fr; }
    .ex-divider   { display: none; }
}

.ex-divider { background: var(--gray-200); min-height: 180px; }

.ex-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 14px;
}

.ex-tag.review { color: var(--gray-400); }
.ex-tag.reply  { color: var(--green); }

.ex-stars { color: #f59e0b; font-size: 18px; margin-bottom: 12px; }

.ex-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-800);
}

.ex-meta {
    font-size: 13px;
    color: var(--gray-400);
    margin-top: 12px;
}

.ai-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green-light);
    color: var(--green);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
}

/* ── NEWS BLOCK ──────────────────────────────────────── */
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

@media (max-width: 760px) { .news-grid { grid-template-columns: 1fr; } }

.news-text-col h3 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.news-text-col p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--gray-800);
}

.check-list li::before {
    content: '✓';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--green-light);
    color: var(--green);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    margin-top: 1px;
}

.news-ui-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.nui-header {
    background: var(--black);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nui-dot { width: 10px; height: 10px; border-radius: 50%; }
.nui-dot.r { background: #ff5f57; }
.nui-dot.y { background: #febc2e; }
.nui-dot.g { background: #28c840; }

.nui-title {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin-left: 6px;
}

.nui-body { padding: 24px; }

.nui-field {
    margin-bottom: 16px;
}

.nui-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--gray-400);
    font-weight: 600;
    margin-bottom: 6px;
}

.nui-value {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--gray-800);
    line-height: 1.5;
}

.nui-badge-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.nui-badge {
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
}

.nui-badge.green {
    background: var(--green-light);
    color: var(--green);
}

.nui-publish-btn {
    width: 100%;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 9px;
    padding: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: default;
    margin-top: 4px;
}

/* ── WORDSTAT BLOCK ──────────────────────────────────── */
.ws-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

@media (max-width: 760px) { .ws-grid { grid-template-columns: 1fr; } }

.ws-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.ws-header {
    background: var(--accent);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ws-header-title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.ws-header-sub {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
}

.ws-rows { padding: 8px 0; }

.ws-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 14px;
}

.ws-row:last-child { border-bottom: none; }

.ws-kw { color: var(--gray-800); }

.ws-cnt {
    font-size: 13px;
    color: var(--gray-400);
    font-variant-numeric: tabular-nums;
}

.ws-sel {
    background: var(--accent-light);
}

.ws-sel .ws-kw {
    color: var(--accent);
    font-weight: 600;
}

.ws-arrow {
    font-size: 28px;
    color: var(--gray-400);
    text-align: center;
    padding: 12px 0;
    align-self: center;
}

@media (max-width: 760px) { .ws-arrow { display: none; } }

.ws-result-card {
    background: var(--purple-light);
    border: 1px solid #ddd6fe;
    border-radius: var(--radius-lg);
    padding: 28px;
}

.ws-result-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--purple);
    margin-bottom: 16px;
}

.ws-result-keys {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ws-key-tag {
    background: #fff;
    border: 1px solid #ddd6fe;
    color: var(--purple);
    border-radius: 8px;
    padding: 7px 14px;
    font-size: 14px;
    font-weight: 600;
}

.ws-text-col h3 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.ws-text-col p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* ── PRICING ─────────────────────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

@media (max-width: 860px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

.plan-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    transition: box-shadow 0.2s;
}

.plan-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.09); }

.plan-card.popular {
    border-color: var(--accent);
    border-width: 2px;
    box-shadow: 0 8px 32px rgba(37,99,235,0.12);
}

.plan-popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    white-space: nowrap;
}

.plan-name {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    margin-bottom: 6px;
}

.plan-name.popular { color: var(--accent); }

.plan-for {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 24px;
}

.plan-price {
    font-size: 46px;
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--black);
    line-height: 1;
    margin-bottom: 4px;
}

.plan-price sup {
    font-size: 20px;
    font-weight: 700;
    vertical-align: super;
    letter-spacing: 0;
}

.plan-period {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 28px;
}

.plan-divider {
    height: 1px;
    background: var(--gray-200);
    margin-bottom: 24px;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-800);
    line-height: 1.45;
}

.plan-features li .pf-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    margin-top: 1px;
}

.pf-yes { background: var(--green-light); color: var(--green); }
.pf-no  { background: var(--gray-100);    color: var(--gray-400); }

.plan-btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.plan-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    text-decoration: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    transition: opacity 0.15s, transform 0.15s;
}

.plan-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.plan-btn.tg    { background: var(--gray-100); color: var(--gray-800); }
.plan-btn.tg-accent { background: var(--accent); color: #fff; }
.plan-btn.mx    { background: transparent; color: var(--gray-600); border: 1px solid var(--gray-200); }
.plan-btn.mx:hover { border-color: var(--gray-400); color: var(--black); }

.plan-note {
    text-align: center;
    font-size: 13px;
    color: var(--gray-400);
    margin-top: 24px;
}

/* ── REVIEWS ─────────────────────────────────────────── */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.review-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow 0.2s;
}

.review-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.07); }

.review-stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; }

.review-text {
    font-size: 15px;
    color: var(--gray-800);
    line-height: 1.7;
    flex: 1;
}

.review-text::before { content: '«'; }
.review-text::after  { content: '»'; }

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--gray-100);
    padding-top: 16px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    flex-shrink: 0;
}

.review-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
}

.review-role {
    font-size: 13px;
    color: var(--gray-400);
}

/* ── FAQ ─────────────────────────────────────────────── */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 22px 28px;
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    line-height: 1.4;
}

.faq-question:hover { background: var(--gray-50); }

.faq-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-600);
    transition: transform 0.2s, background 0.2s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--accent-light);
    color: var(--accent);
}

.faq-answer {
    display: none;
    padding: 0 28px 22px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.75;
    border-top: 1px solid var(--gray-100);
    padding-top: 18px;
}

.faq-item.open .faq-answer { display: block; }

.faq-answer b { color: var(--black); }

/* ── CTA ─────────────────────────────────────────────── */
.cta-section {
    background:
        radial-gradient(ellipse at top right, rgba(37,99,235,0.2) 0%, transparent 55%),
        radial-gradient(ellipse at bottom left, rgba(124,58,237,0.16) 0%, transparent 55%),
        var(--black);
    padding: 100px 24px;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.07;
}

.cta-section p {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 44px;
}

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

.btn-white {
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    padding: 18px 36px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.15s, transform 0.15s;
}

.btn-white:hover { opacity: 0.88; transform: translateY(-2px); }

.btn-max {
    background: transparent;
    color: var(--white);
    text-decoration: none;
    padding: 18px 36px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: border-color 0.15s, transform 0.15s;
}

.btn-max:hover { border-color: rgba(255,255,255,0.7); transform: translateY(-2px); }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
    border-top: 1px solid var(--gray-200);
    padding: 56px 24px 32px;
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.footer-cols {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

@media (max-width: 720px) {
    .footer-cols { grid-template-columns: 1fr; gap: 32px; }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-bottom: 14px;
}

.footer-logo img { height: 32px; width: auto; object-fit: contain; }

.footer-desc {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 20px;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    transition: opacity 0.15s;
}

.footer-contact-link:hover { opacity: 0.65; }

.footer-col-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-size: 14px;
    transition: color 0.15s;
}

.footer-links a:hover { color: var(--black); }

.footer-bottom {
    border-top: 1px solid var(--gray-200);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

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

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 13px;
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.15s;
}

.footer-legal a:hover { color: var(--black); }
