/*
 * SEO Audit Pro — Static Preview
 * Light, serious, trustworthy UI · Navy + burnt orange
 * by Ernest Mezhonov
 */

/* ============================================================
   Design tokens (LIGHT theme)
   ============================================================ */
:root {
    /* Navy (headings / brand) */
    --navy-900: #0c1730;
    --navy-800: #12234b;
    --navy-700: #17316b;
    --navy-600: #1e40a0;
    --navy-500: #2b56c9;

    /* Burnt orange (accent) */
    --orange-700: #b8460f;
    --orange-600: #dd5713;
    --orange-500: #ef6c1f;
    --orange-400: #f68a44;
    --orange-100: #ffe8d8;
    --orange-50:  #fff3ec;

    /* Blue accent tints (official / primary accent) */
    --blue-50:  #eef3ff;
    --blue-100: #dbe6ff;
    --blue-200: #c2d4ff;

    /* Neutral surfaces */
    --bg: #f4f7fc;
    --bg-2: #eef3fb;
    --surface: #ffffff;
    --surface-tint: #f8fafd;
    --navy-wash: #0e1c3d;   /* for occasional dark blocks */

    /* Text */
    --ink: #0f1b3a;
    --ink-2: #33415c;
    --muted: #64728f;
    --muted-2: #8b97b0;

    /* Lines */
    --line: #e4eaf3;
    --line-2: #d5deec;

    /* Semantic */
    --good: #1f9d63;
    --good-bg: #e5f6ee;
    --warn: #c9821a;
    --warn-bg: #fdf1dc;
    --bad: #d6474a;
    --bad-bg: #fce8e8;

    /* Effects */
    --shadow-xs: 0 1px 2px rgba(15, 27, 58, 0.06);
    --shadow-sm: 0 4px 14px rgba(15, 27, 58, 0.07);
    --shadow-md: 0 14px 40px rgba(15, 27, 58, 0.10);
    --shadow-lg: 0 30px 70px rgba(15, 27, 58, 0.14);
    --glow-orange: 0 12px 30px rgba(239, 108, 31, 0.28);

    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 22px;

    --container: 1180px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ============================================================
   Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font);
    color: var(--ink-2);
    background: var(--bg);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
h1, h2, h3, h4 { line-height: 1.14; letter-spacing: -0.02em; font-weight: 700; color: var(--ink); }

.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--navy-600);
    padding: 7px 15px; border-radius: 100px;
    background: var(--blue-50); border: 1px solid var(--blue-100);
}
.eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--navy-500); }

.section { padding: clamp(72px, 9vw, 132px) 0; }
.section.tint { background: var(--surface); border-block: 1px solid var(--line); }
.section.wash { background: linear-gradient(180deg, var(--navy-900), var(--navy-wash)); }
.section.wash h2, .section.wash h3, .section.wash p, .section.wash .step h3 { color: #fff; }
.section.wash .section-header p { color: #b7c4de; }

.section-header { max-width: 720px; margin: 0 auto clamp(46px, 6vw, 78px); text-align: center; }
.section-header .eyebrow { margin-bottom: 20px; }
.section-header h2 { font-size: clamp(27px, 4.2vw, 44px); margin-bottom: 16px; }
.section-header p { color: var(--muted); font-size: clamp(15px, 1.5vw, 18px); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-family: inherit; font-weight: 600; font-size: 15px; line-height: 1;
    padding: 15px 26px; border-radius: 12px; border: 1px solid transparent; cursor: pointer;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .2s;
    white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: linear-gradient(135deg, var(--orange-500), var(--orange-600)); color: #fff; box-shadow: var(--glow-orange); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(239, 108, 31, 0.4); }
.btn-navy { background: var(--navy-800); color: #fff; }
.btn-navy:hover { transform: translateY(-2px); background: var(--navy-700); box-shadow: var(--shadow-md); }
.btn-ghost { background: var(--surface); border-color: var(--line-2); color: var(--ink); box-shadow: var(--shadow-xs); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--orange-400); color: var(--orange-600); }
.btn-outline-light { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.3); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.btn-sm { padding: 11px 18px; font-size: 14px; }
.btn-block { width: 100%; }

/* ============================================================
   Header
   ============================================================ */
.header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.85); border-bottom: 1px solid transparent; transition: box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s; backdrop-filter: blur(16px) saturate(150%); -webkit-backdrop-filter: blur(16px) saturate(150%); }
.header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 42px; height: 42px; border-radius: 12px; background: linear-gradient(150deg, var(--navy-600), var(--navy-900)); display: grid; place-items: center; box-shadow: 0 6px 18px rgba(18, 35, 75, 0.28); flex-shrink: 0; position: relative; }
.brand-mark::after { content: ''; position: absolute; right: -2px; bottom: -2px; width: 12px; height: 12px; border-radius: 50%; background: var(--orange-500); border: 2px solid var(--surface); }
.brand-mark svg { width: 23px; height: 23px; color: #fff; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text b { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; color: var(--navy-800); }
.brand-text span { font-size: 11.5px; color: var(--muted); letter-spacing: 0.01em; font-style: italic; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a { font-size: 14.5px; font-weight: 500; color: var(--ink-2); padding: 9px 13px; border-radius: 9px; transition: color .2s, background .2s; }
.nav-menu a:hover { color: var(--navy-700); background: var(--bg-2); }
.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: 8px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line-2); border-radius: 10px; padding: 8px; cursor: pointer; color: var(--ink); }
.nav-toggle svg { width: 22px; height: 22px; }

/* ============================================================
   Hero
   ============================================================ */
.hero { padding: clamp(52px, 7vw, 92px) 0 clamp(46px, 6vw, 80px); position: relative; }
.hero::before {
    content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
    background:
        radial-gradient(760px 480px at 12% 0%, rgba(43, 86, 201, 0.10), transparent 60%),
        radial-gradient(680px 460px at 92% 6%, rgba(239, 108, 31, 0.10), transparent 58%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 60px); align-items: center; }
.hero-title { font-size: clamp(33px, 5.4vw, 60px); font-weight: 800; letter-spacing: -0.035em; margin: 22px 0 20px; color: var(--navy-900); }
.hero-title .accent { background: linear-gradient(120deg, var(--navy-500), var(--navy-700)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-subtitle { font-size: clamp(16px, 1.7vw, 19px); color: var(--muted); max-width: 540px; margin-bottom: 28px; }
.hero-search { display: flex; gap: 10px; max-width: 580px; margin-bottom: 14px; }
.hero-search .field { flex: 1; display: flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--line-2); border-radius: 12px; padding: 4px 4px 4px 16px; box-shadow: var(--shadow-sm); min-width: 0; }
.hero-search .field svg { width: 18px; height: 18px; color: var(--muted-2); flex-shrink: 0; }
.hero-search input { flex: 1; border: none; outline: none; font-family: inherit; font-size: 15px; color: var(--ink); background: transparent; min-width: 0; padding: 12px 0; }
.hero-search .btn { flex-shrink: 0; }
.hero-actions-2 { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; flex-wrap: wrap; max-width: 580px; }
.link-demo { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--navy-700); }
.link-demo svg { width: 16px; height: 16px; }
.link-demo:hover { color: var(--orange-600); }
.hero-note { font-size: 13px; color: var(--muted-2); }
.hero-trust { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 13.5px; margin-top: 26px; }
.hero-trust .avatars { display: flex; }
.hero-trust .avatars img { width: 34px; height: 34px; border-radius: 50%; border: 2.5px solid var(--surface); margin-left: -10px; object-fit: cover; box-shadow: var(--shadow-xs); }
.hero-trust .avatars img:first-child { margin-left: 0; }
.hero-trust b { color: var(--ink); }

/* Card (demo mini report) */
.card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.hero-card { padding: 24px; position: relative; }
.hc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.hc-url { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--muted); }
.hc-url .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--good); box-shadow: 0 0 0 3px var(--good-bg); }
.hc-badge { font-size: 11px; font-weight: 700; color: var(--good); background: var(--good-bg); padding: 5px 10px; border-radius: 8px; }
.hc-score { display: flex; align-items: center; gap: 22px; margin-bottom: 22px; }

.gauge {
    --val: 87;
    width: 124px; height: 124px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0;
    background: radial-gradient(closest-side, var(--surface) 72%, transparent 73% 100%),
        conic-gradient(var(--orange-500) calc(var(--val) * 1%), var(--bg-2) 0);
}
.gauge-inner { text-align: center; }
.gauge-inner b { font-size: 33px; font-weight: 800; letter-spacing: -0.03em; display: block; line-height: 1; color: var(--navy-900); }
.gauge-inner span { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.hc-score-meta h4 { font-size: 18px; margin-bottom: 6px; }
.hc-score-meta p { font-size: 13px; color: var(--muted); }
.hc-bars { display: flex; flex-direction: column; gap: 13px; }
.hc-bar-row .top { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; }
.hc-bar-row .top span:first-child { color: var(--ink-2); }
.hc-bar-row .top span:last-child { color: var(--ink); font-weight: 700; }
.hc-track { height: 7px; border-radius: 100px; background: var(--bg-2); overflow: hidden; }
.hc-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--orange-600), var(--orange-400)); transform-origin: left; animation: barGrow 1.2s var(--ease) both; }
.hc-fill.g { background: linear-gradient(90deg, #16915a, var(--good)); }
@keyframes barGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ============================================================
   Trust strip
   ============================================================ */
.trust-strip { padding: 26px 0; background: var(--surface); border-block: 1px solid var(--line); }
.trust-strip .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.trust-strip .lead { font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); max-width: 170px; }
.trust-metrics { display: grid; grid-template-columns: repeat(4, auto); gap: clamp(18px, 4vw, 48px); }
.trust-metric b { display: block; font-size: clamp(22px, 3vw, 30px); font-weight: 800; letter-spacing: -0.03em; color: var(--navy-800); white-space: nowrap; line-height: 1.15; }
.trust-metric b .accent { color: var(--orange-600); display: inline; }
.trust-metric > span { display: block; font-size: 12.5px; color: var(--muted); margin-top: 2px; }

/* ============================================================
   Access / free vs paid
   ============================================================ */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 860px; margin: 0 auto; }
.plan { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 30px; position: relative; box-shadow: var(--shadow-sm); }
.plan.pro { border-color: var(--orange-400); box-shadow: var(--shadow-md); }
.plan .plan-tag { position: absolute; top: 20px; right: 22px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 10px; border-radius: 8px; }
.plan.free .plan-tag { color: var(--navy-700); background: var(--bg-2); }
.plan.pro .plan-tag { color: #fff; background: linear-gradient(135deg, var(--orange-500), var(--orange-600)); }
.plan h3 { font-size: 21px; margin-bottom: 6px; }
.plan .price { font-size: 15px; color: var(--muted); margin-bottom: 20px; }
.plan .price b { font-size: 30px; color: var(--navy-900); letter-spacing: -0.03em; }
.plan ul { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.plan ul li { display: flex; gap: 10px; font-size: 14px; color: var(--ink-2); }
.plan ul li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.plan ul li.on svg { color: var(--good); }
.plan ul li.off { color: var(--muted-2); }
.plan ul li.off svg { color: var(--muted-2); }

/* ============================================================
   Feature grid (large capability list)
   ============================================================ */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease); }
.feature:hover { transform: translateY(-3px); border-color: var(--line-2); box-shadow: var(--shadow-md); }
.feature .f-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--blue-50); color: var(--navy-600); display: grid; place-items: center; margin-bottom: 15px; }
.feature .f-ic svg { width: 21px; height: 21px; }
.feature h4 { font-size: 15.5px; margin-bottom: 6px; }
.feature p { font-size: 13.5px; color: var(--muted); }

/* Compact checklist chips (checks / tools / channels) */
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip-item { display: inline-flex; align-items: center; gap: 7px; background: var(--surface); border: 1px solid var(--line); border-radius: 100px; padding: 8px 14px; font-size: 13px; color: var(--ink-2); box-shadow: var(--shadow-xs); }
.chip-item svg { width: 14px; height: 14px; color: var(--good); flex-shrink: 0; }
.chip-item.brand svg { color: var(--orange-500); }

/* ============================================================
   Screenshots / examples (SERP + AI answer)
   ============================================================ */
.examples { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.example-col > .ex-label { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 700; color: var(--navy-700); margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em; }
.example-col > .ex-label .badge { font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 100px; text-transform: none; letter-spacing: 0; }
.example-col > .ex-label .badge.seo { color: var(--navy-700); background: var(--bg-2); }
.example-col > .ex-label .badge.ai { color: var(--orange-600); background: var(--orange-50); }

/* Browser chrome mockup */
.browser { background: var(--surface); border: 1px solid var(--line-2); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-md); }
.browser-bar { display: flex; align-items: center; gap: 8px; padding: 11px 14px; background: var(--surface-tint); border-bottom: 1px solid var(--line); }
.browser-bar .dots { display: flex; gap: 6px; }
.browser-bar .dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.browser-bar .addr { flex: 1; font-size: 12px; color: var(--muted); background: var(--bg); border: 1px solid var(--line); border-radius: 7px; padding: 6px 12px; }
.browser-body { padding: 20px; }

/* SERP */
.serp-search { display: flex; align-items: center; gap: 10px; border: 1px solid var(--line-2); border-radius: 100px; padding: 10px 16px; margin-bottom: 20px; }
.serp-search svg { width: 16px; height: 16px; color: var(--muted-2); }
.serp-search span { font-size: 14px; color: var(--ink-2); }
.serp-result { margin-bottom: 18px; }
.serp-result .site { display: flex; align-items: center; gap: 9px; margin-bottom: 4px; }
.serp-result .site .ic { width: 24px; height: 24px; border-radius: 50%; background: var(--navy-800); color: #fff; display: grid; place-items: center; font-size: 12px; font-weight: 700; }
.serp-result .site .u b { font-size: 12.5px; color: var(--ink); display: block; line-height: 1.2; }
.serp-result .site .u small { font-size: 11.5px; color: var(--good); }
.serp-result .title { font-size: 19px; color: #1a4bc9; margin: 2px 0 4px; letter-spacing: -0.01em; font-weight: 500; }
.serp-result .desc { font-size: 13px; color: var(--muted); }
.serp-result.top { background: var(--orange-50); border: 1px solid var(--orange-100); border-radius: 12px; padding: 14px; position: relative; }
.serp-result.top::after { content: '#1'; position: absolute; top: 12px; right: 12px; font-size: 11px; font-weight: 700; color: var(--orange-600); background: #fff; padding: 3px 8px; border-radius: 100px; box-shadow: var(--shadow-xs); }
.serp-rank-note { font-size: 12.5px; color: var(--muted); display: flex; align-items: center; gap: 7px; }
.serp-rank-note svg { width: 15px; height: 15px; color: var(--good); }

/* AI answer (нейроответ) */
.ai-answer .ai-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.ai-answer .ai-head .logo { width: 32px; height: 32px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.ai-answer .ai-head .logo img { width: 100%; height: 100%; }
.ai-answer .ai-head b { font-size: 14px; }
.ai-answer .ai-head span { font-size: 12px; color: var(--muted); }
.ai-answer .q { font-size: 14px; color: var(--ink); font-weight: 600; background: var(--bg-2); border-radius: 10px; padding: 11px 14px; margin-bottom: 14px; }
.ai-answer .a { font-size: 13.5px; color: var(--ink-2); line-height: 1.7; }
.ai-answer .a mark { background: var(--orange-100); color: var(--orange-700); padding: 1px 5px; border-radius: 5px; font-weight: 600; }
.ai-answer .cite { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; color: var(--navy-600); background: var(--bg-2); border: 1px solid var(--line); border-radius: 6px; padding: 2px 7px; margin: 0 2px; vertical-align: middle; }
.ai-sources { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.ai-sources .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted-2); margin-bottom: 9px; }
.ai-sources .src { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ink-2); padding: 6px 0; }
.ai-sources .src .n { width: 18px; height: 18px; border-radius: 5px; background: var(--orange-500); color: #fff; display: grid; place-items: center; font-size: 10px; font-weight: 700; flex-shrink: 0; }
.ai-sources .src.you { font-weight: 600; color: var(--orange-700); }

/* ============================================================
   Analyze cards
   ============================================================ */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.a-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 25px 22px; transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease); position: relative; overflow: hidden; }
.a-card:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: var(--shadow-md); }
.a-card.highlight { border-color: var(--orange-400); background: linear-gradient(180deg, var(--orange-50), var(--surface)); }
.a-card.highlight::before { content: 'ИИ · GEO'; position: absolute; top: 16px; right: 16px; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; color: var(--orange-600); background: #fff; padding: 4px 8px; border-radius: 6px; box-shadow: var(--shadow-xs); }
.a-icon { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px; background: var(--blue-50); color: var(--navy-600); }
.a-card.highlight .a-icon { background: var(--orange-100); color: var(--orange-600); }
.a-icon svg { width: 24px; height: 24px; }
.a-card h3 { font-size: 17px; margin-bottom: 13px; }
.a-card ul { display: flex; flex-direction: column; gap: 9px; }
.a-card ul li { display: flex; gap: 9px; font-size: 13.5px; color: var(--muted); }
.a-card ul li svg { width: 16px; height: 16px; color: var(--orange-500); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   Tools
   ============================================================ */
.tools-groups { display: flex; flex-direction: column; gap: 38px; }
.tool-group-title { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; font-size: 14px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink); font-weight: 700; }
.tool-group-title::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.tool-group-title .tag { font-size: 11px; color: var(--muted); background: var(--bg-2); padding: 3px 9px; border-radius: 100px; text-transform: none; letter-spacing: 0; font-weight: 600; }
.tools-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tool-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease); display: flex; flex-direction: column; min-height: 148px; }
.tool-card:hover { transform: translateY(-3px); border-color: var(--orange-400); box-shadow: var(--shadow-md); }
.tool-card .t-ic { width: 40px; height: 40px; border-radius: 11px; background: var(--blue-50); display: grid; place-items: center; color: var(--navy-600); margin-bottom: 13px; }
.tool-card .t-ic svg { width: 20px; height: 20px; }
.tool-card h4 { font-size: 15px; margin-bottom: 6px; }
.tool-card p { font-size: 13px; color: var(--muted); margin-bottom: 13px; flex: 1; }
.tool-link { font-size: 13px; font-weight: 600; color: var(--orange-600); display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; cursor: pointer; }
.tool-card:hover .tool-link { gap: 10px; }

/* ============================================================
   GEO platforms
   ============================================================ */
.geo-platforms { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ============================================================
   FAQ (AEO / answer engines)
   ============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-xs); }
.faq-item h3 { font-size: 17px; margin-bottom: 8px; color: var(--navy-800); display: flex; gap: 10px; align-items: flex-start; }
.faq-item h3::before { content: '?'; flex-shrink: 0; width: 24px; height: 24px; border-radius: 7px; background: var(--blue-50); color: var(--navy-600); font-size: 14px; font-weight: 800; display: grid; place-items: center; margin-top: 1px; }
.faq-item p { font-size: 14.5px; color: var(--muted); padding-left: 34px; }
.platform-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 25px 22px; text-align: center; transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s; box-shadow: var(--shadow-xs); }
.platform-card:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: var(--shadow-md); }
.platform-logo { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 14px; object-fit: contain; box-shadow: var(--shadow-sm); }
.platform-card h3 { font-size: 16px; margin-bottom: 8px; }
.platform-card p { font-size: 13px; color: var(--muted); }
.platform-card .ready { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 12px; font-weight: 700; color: var(--good); }
.platform-card .ready svg { width: 14px; height: 14px; }

/* ============================================================
   Process
   ============================================================ */
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-xs); }
.step .num { font-size: 15px; font-weight: 800; color: var(--navy-600); width: 46px; height: 46px; border-radius: 13px; background: var(--blue-50); display: grid; place-items: center; margin-bottom: 20px; }
.step h3 { font-size: 18px; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--muted); }

/* ============================================================
   CTA
   ============================================================ */
.cta-wrap { background: linear-gradient(135deg, var(--navy-800), var(--navy-900)); border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 66px); text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.cta-wrap::before { content: ''; position: absolute; inset: 0; background: radial-gradient(600px 300px at 50% -20%, rgba(239,108,31,0.32), transparent 70%); pointer-events: none; }
.cta-wrap h2 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 15px; color: #fff; position: relative; }
.cta-wrap p { color: #c2cee6; max-width: 560px; margin: 0 auto 28px; position: relative; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--navy-900); color: #b7c4de; padding: 58px 0 28px; }
.footer h4 { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 42px; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: #93a2c4; margin-bottom: 16px; }
.footer-col.brand-col .brand-mark { box-shadow: none; background: linear-gradient(150deg, var(--navy-500), var(--navy-700)); }
.footer-col.brand-col .brand-mark::after { border-color: var(--navy-900); }
.footer-col.brand-col .brand-text b { color: #fff; }
.footer-col.brand-col .brand-text span { color: #93a2c4; }
.footer-col.brand-col .brand { margin-bottom: 16px; }
.footer-col.brand-col p { font-size: 14px; color: #93a2c4; max-width: 320px; margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a { font-size: 14px; color: #b7c4de; transition: color .2s; }
.footer-col ul a:hover { color: var(--orange-400); }
.footer-since { font-size: 13px; color: #6f7fa3; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; align-items: center; }
.footer-bottom p { font-size: 13px; color: #93a2c4; }
.footer-bottom a { color: var(--orange-400); font-weight: 600; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 10px; border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; color: #93a2c4; transition: color .2s, border-color .2s; }
.footer-socials a:hover { color: var(--orange-400); border-color: var(--orange-400); }
.footer-socials svg { width: 18px; height: 18px; }

/* ============================================================
   Sub-page hero (inner pages)
   ============================================================ */
.page-hero { padding: clamp(50px, 7vw, 84px) 0 clamp(30px, 4vw, 46px); background: linear-gradient(180deg, var(--bg-2), var(--bg)); border-bottom: 1px solid var(--line); }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(30px, 5vw, 50px); letter-spacing: -0.035em; margin-bottom: 14px; color: var(--navy-900); }
.page-hero p { font-size: clamp(15px, 1.6vw, 18px); color: var(--muted); max-width: 640px; }
.breadcrumbs { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.breadcrumbs a:hover { color: var(--orange-600); }
.breadcrumbs span { color: var(--muted-2); }

/* Prose (legal / about content) */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { font-size: 24px; margin: 40px 0 14px; color: var(--navy-800); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 18px; margin: 26px 0 10px; }
.prose p { font-size: 15.5px; color: var(--ink-2); margin-bottom: 14px; }
.prose ul { margin: 0 0 16px; padding-left: 4px; display: flex; flex-direction: column; gap: 9px; }
.prose ul li { display: flex; gap: 10px; font-size: 15px; color: var(--ink-2); }
.prose ul li::before { content: ''; width: 7px; height: 7px; border-radius: 2px; background: var(--orange-500); margin-top: 9px; flex-shrink: 0; }
.prose .muted { color: var(--muted); font-size: 14px; }
.prose a.inline { color: var(--navy-600); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose-updated { font-size: 13px; color: var(--muted-2); margin-bottom: 28px; }

/* ============================================================
   Auth (fake registration)
   ============================================================ */
.auth-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 72px); }
.auth-aside { background: linear-gradient(160deg, var(--navy-800), var(--navy-900)); color: #fff; padding: clamp(36px, 5vw, 64px); display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.auth-aside::before { content: ''; position: absolute; inset: 0; background: radial-gradient(500px 300px at 80% 0%, rgba(239,108,31,.28), transparent 65%); }
.auth-aside > * { position: relative; }
.auth-aside .eyebrow { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: var(--orange-300, #fba869); margin-bottom: 22px; }
.auth-aside h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); margin-bottom: 16px; }
.auth-aside p { color: #c2cee6; margin-bottom: 26px; max-width: 400px; }
.auth-aside ul { display: flex; flex-direction: column; gap: 14px; }
.auth-aside ul li { display: flex; gap: 11px; font-size: 14.5px; color: #dbe4f5; }
.auth-aside ul li svg { width: 20px; height: 20px; color: var(--orange-400); flex-shrink: 0; }
.auth-main { display: flex; align-items: center; justify-content: center; padding: clamp(32px, 5vw, 60px) 24px; }
.auth-form { width: 100%; max-width: 400px; }
.auth-form h1 { font-size: 26px; margin-bottom: 6px; }
.auth-form .sub { font-size: 14px; color: var(--muted); margin-bottom: 26px; }
.auth-social { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.auth-social .btn { justify-content: center; }
.auth-divider { display: flex; align-items: center; gap: 14px; color: var(--muted-2); font-size: 12px; margin-bottom: 20px; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.field-group { margin-bottom: 16px; }
.field-group label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 7px; }
.field-group input { width: 100%; border: 1px solid var(--line-2); border-radius: 11px; padding: 13px 15px; font-family: inherit; font-size: 15px; color: var(--ink); background: var(--surface); transition: border-color .2s, box-shadow .2s; }
.field-group input:focus { outline: none; border-color: var(--orange-400); box-shadow: 0 0 0 4px var(--orange-50); }
.field-hint { font-size: 12px; color: var(--muted-2); margin-top: 6px; }
.auth-check { display: flex; gap: 9px; align-items: flex-start; font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.auth-check input { margin-top: 3px; }
.auth-alt { text-align: center; font-size: 14px; color: var(--muted); margin-top: 20px; }
.auth-alt a { color: var(--orange-600); font-weight: 600; }

/* ============================================================
   Full audit demo (locked / paid)
   ============================================================ */
.report-panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.report-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding: 22px 26px; border-bottom: 1px solid var(--line); background: var(--surface-tint); }
.report-top .u { display: flex; align-items: center; gap: 12px; }
.report-top .u .fav { width: 38px; height: 38px; border-radius: 10px; background: var(--navy-800); display: grid; place-items: center; color: #fff; font-weight: 800; }
.report-top .u b { font-size: 15px; display: block; }
.report-top .u span { font-size: 12.5px; color: var(--muted); }
.report-verdict { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); }
.report-verdict b { color: var(--good); font-size: 15px; }
.report-body { display: grid; grid-template-columns: 260px 1fr; }
.report-side { padding: 28px 26px; border-right: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.gauge-lg { --val: 87; width: 168px; height: 168px; }
.gauge-lg .gauge-inner b { font-size: 46px; }
.report-side .label { font-size: 13px; color: var(--muted); }
.report-side .chip { font-size: 12px; font-weight: 700; color: var(--good); background: var(--good-bg); padding: 6px 12px; border-radius: 8px; }
.report-cats { padding: 26px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; align-content: start; }
.rcat { background: var(--surface-tint); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; }
.rcat-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.rcat-head .n { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14.5px; color: var(--ink); }
.rcat-head .ic { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; background: var(--blue-50); color: var(--navy-600); }
.rcat-head .ic svg { width: 17px; height: 17px; }
.rcat-score { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; color: var(--navy-900); }
.rcat-track { height: 6px; border-radius: 100px; background: var(--bg-2); overflow: hidden; margin-bottom: 12px; }
.rcat-fill { height: 100%; border-radius: 100px; transform-origin: left; animation: barGrow 1.2s var(--ease) both; }
.rcat-fill.good { background: linear-gradient(90deg, #16915a, var(--good)); }
.rcat-fill.warn { background: linear-gradient(90deg, #b3760f, var(--warn)); }
.rcat-fill.org { background: linear-gradient(90deg, var(--orange-600), var(--orange-400)); }
.rcat-notes { display: flex; flex-direction: column; gap: 7px; }
.rcat-notes li { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted); }
.rcat-notes li svg { width: 15px; height: 15px; flex-shrink: 0; }
.rcat-notes li.ok svg { color: var(--good); }
.rcat-notes li.no svg { color: var(--warn); }

/* Detailed checks table */
.checks-table { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.checks-row { display: grid; grid-template-columns: 34px 1fr auto; gap: 12px; align-items: center; padding: 13px 18px; border-bottom: 1px solid var(--line); }
.checks-row:last-child { border-bottom: none; }
.checks-row .st { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; }
.checks-row .st svg { width: 15px; height: 15px; }
.checks-row .st.ok { background: var(--good-bg); color: var(--good); }
.checks-row .st.warn { background: var(--warn-bg); color: var(--warn); }
.checks-row .st.bad { background: var(--bad-bg); color: var(--bad); }
.checks-row .name b { font-size: 14px; color: var(--ink); display: block; }
.checks-row .name span { font-size: 12.5px; color: var(--muted); }
.checks-row .val { font-size: 13px; font-weight: 600; color: var(--ink-2); }

/* Locked / paywall */
.locked { position: relative; }
.locked-inner { filter: blur(6px); pointer-events: none; user-select: none; }
.locked-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 14px; padding: 24px; background: linear-gradient(180deg, rgba(244,247,252,.55), rgba(244,247,252,.92)); border-radius: var(--radius); }
.locked-overlay .lock-ic { width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, var(--orange-500), var(--orange-600)); display: grid; place-items: center; color: #fff; box-shadow: var(--glow-orange); }
.locked-overlay .lock-ic svg { width: 26px; height: 26px; }
.locked-overlay h3 { font-size: 20px; }
.locked-overlay p { font-size: 14px; color: var(--muted); max-width: 380px; }
.paywall-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--orange-600); background: var(--orange-50); border: 1px solid var(--orange-100); padding: 4px 10px; border-radius: 100px; }
.paywall-tag svg { width: 13px; height: 13px; }

/* ============================================================
   Reveal + toast
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

.toast-wrap { position: fixed; bottom: 24px; right: 24px; z-index: 1000; display: flex; flex-direction: column; gap: 10px; }
.toast { display: flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--line-2); border-left: 3px solid var(--orange-500); border-radius: 12px; padding: 14px 18px; box-shadow: var(--shadow-lg); min-width: 280px; transform: translateX(120%); transition: transform .4s var(--ease); font-size: 14px; color: var(--ink); }
.toast.show { transform: none; }
.toast svg { width: 20px; height: 20px; color: var(--orange-500); flex-shrink: 0; }

/* Mobile menu */
.mobile-menu { position: fixed; inset: 72px 0 auto 0; background: rgba(255,255,255,.98); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); padding: 16px 24px 24px; display: none; flex-direction: column; gap: 4px; z-index: 99; box-shadow: var(--shadow-md); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 13px 12px; font-size: 16px; color: var(--ink-2); border-radius: 10px; }
.mobile-menu a:hover { background: var(--bg-2); color: var(--navy-700); }
.mobile-menu .btn { margin-top: 8px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-card { max-width: 480px; }
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .tools-grid { grid-template-columns: repeat(2, 1fr); }
    .geo-platforms { grid-template-columns: repeat(2, 1fr); }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .examples { grid-template-columns: 1fr; }
    .report-body { grid-template-columns: 1fr; }
    .report-side { border-right: none; border-bottom: 1px solid var(--line); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-col.brand-col { grid-column: 1 / -1; }
    .auth-wrap { grid-template-columns: 1fr; }
    .auth-aside { display: none; }
}
@media (max-width: 900px) {
    .trust-strip .container { flex-direction: column; align-items: flex-start; }
    .trust-strip .lead { max-width: none; }
    .trust-metrics { grid-template-columns: repeat(2, 1fr); gap: 22px 18px; width: 100%; }
}

@media (max-width: 760px) {
    .nav-menu { display: none; }
    .nav-actions .btn { display: none; }
    .nav-toggle { display: inline-flex; }
    .process-steps { grid-template-columns: 1fr; }
    .report-cats { grid-template-columns: 1fr; }
    .plans { grid-template-columns: 1fr; }
    .hc-score { flex-direction: column; text-align: center; align-items: center; }
    .hero-search { flex-direction: column; }
    .hero-search .btn { width: 100%; }
    .hero-actions-2 { width: 100%; }
    .hero-actions-2 .btn { width: 100%; }
}
@media (max-width: 520px) {
    .cards-grid, .tools-grid, .geo-platforms, .feature-grid { grid-template-columns: 1fr; }
    .container { padding-inline: 18px; }
    .footer-grid { grid-template-columns: 1fr; }
    .toast-wrap { left: 18px; right: 18px; bottom: 18px; }
    .toast { min-width: 0; }
}
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    html { scroll-behavior: auto; }
    .js .reveal { opacity: 1; transform: none; }
}
