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

/* ══════════════ VARIABLES ══════════════ */
:root {
  /* Base */
  --bg: #0a0b1a;
  --bg-card: #0e1025;
  --bg-badge: #1a1d35;
  --text: #f1f5f9;
  --text-primary: #f1f5f9;
  --text-muted: #8b8fa3;
  --cyan: #6ee9fe;
  --cyan-dark: #00d4ff;
  --accent: #6ee9fe;
  --purple: #8b5cf6;
  --border: rgba(255,255,255,0.08);
  --font: 'Istok Web', sans-serif;
  --font-inter: 'Inter', sans-serif;
  --font-mono: 'Roboto Mono', monospace;
  /* Report */
  --card-bg: rgba(255,255,255,0.03);
  --card-border: rgba(255,255,255,0.08);
  --red: #ef4444;
  --amber: #f59e0b;
  --blue: #3b82f6;
  --green: #22c55e;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); min-height: 100vh; }

/* ══════════════ HEADER — index.html ══════════════ */
header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(15,23,42,0.5);
  border-bottom: 1px solid var(--border);
  padding: 0 120px;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100px;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; flex-shrink: 0;
}
.header-nav-group {
  display: flex; align-items: center; gap: 120px;
}
nav { display: flex; gap: 24px; align-items: center; }
nav a {
  font-size: 16px; color: var(--text); text-decoration: none;
  font-family: var(--font); white-space: nowrap;
  transition: color .2s;
}
nav a:hover { color: var(--cyan); }

/* ── MOBILE PANEL ── */
.mobile-panel { display: none; }
.hamburger {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 60px; height: 60px;
  background: none; border: none; cursor: pointer;
  border-radius: 22px; transition: background .2s; flex-shrink: 0;
}
.hamburger:hover { background: rgba(255,255,255,0.08); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, width .3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav-links {
  display: none; flex-direction: column; align-items: flex-end;
  gap: 12px; padding: 0 12px;
}
.mobile-nav-links.open { display: flex; }
.mobile-nav-links a,
.mobile-nav-links button {
  font-size: 16px; font-family: var(--font);
  color: var(--text); text-decoration: none;
  background: none; border: none; cursor: pointer;
  text-align: right; padding: 0; line-height: 1; white-space: nowrap;
  transition: color .2s;
}
.mobile-nav-links a:hover,
.mobile-nav-links button:hover { color: var(--cyan); }
.mobile-nav-contact {
  display: flex; align-items: center; justify-content: flex-end; padding: 0 12px;
}

@media (max-width: 900px) {
  header { padding: 30px 40px; }
  .header-inner { height: auto; align-items: flex-start; }
  .header-nav-group { display: none; }
  .mobile-panel {
    display: flex; flex-direction: column; align-items: flex-end; gap: 24px; flex: 1;
  }
}

/* ══════════════ HEADER — report.html ══════════════ */
.header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  background: rgba(15,23,42,0.5);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  height: 100px; padding: 0 120px;
}
.header-nav {
  display: flex; align-items: center; gap: 32px;
}
.header-nav a {
  color: var(--text-primary); text-decoration: none;
  font-size: 14px; opacity: 0.8; transition: opacity 0.2s;
}
.header-nav a:hover { opacity: 1; }
.header-contact {
  background: transparent; border: 1px solid var(--border);
  border-radius: 16px; color: var(--text-primary);
  font-family: 'Istok Web', sans-serif; font-size: 14px;
  padding: 8px 20px; cursor: pointer; text-decoration: none;
}

/* ══════════════ FOOTER — index.html ══════════════ */
footer {
  background: rgba(26,29,53,0.2);
  border-top: 1px solid var(--border);
}
.footer-wrap {
  display: flex; flex-direction: column; gap: 24px;
  padding: 12px 120px 0; min-height: 267px;
}
.footer-main {
  flex: 1; display: flex; align-items: center; position: relative; padding-top: 23px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.footer-tagline { font-size: 13px; color: var(--text); font-family: var(--font); white-space: nowrap; }
.footer-product {
  position: absolute; left: 250px; display: flex; flex-direction: column; gap: 12px;
}
.footer-product h4 { font-size: 14px; font-weight: 700; font-family: var(--font); color: var(--text); }
.footer-product ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-product li a { font-size: 14px; color: var(--text); text-decoration: none; font-family: var(--font); }
.footer-legal { position: absolute; right: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-legal a { font-size: 14px; color: #6ee9fe; text-decoration: none; font-family: var(--font); }
.footer-sep { height: 1px; background: var(--border); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  height: 18px; padding-bottom: 24px;
}
.footer-bottom p { font-size: 12px; color: var(--text); font-family: var(--font-inter); }

/* ══════════════ FOOTER — report.html ══════════════ */
.footer {
  background: rgba(26,29,53,0.2);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 40px 120px 24px;
  display: flex; flex-direction: column; gap: 24px;
}
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; }
.footer-logo-icon {
  width: 32px; height: 32px; background: rgba(0,212,255,0.2);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.footer-logo-icon svg { width: 20px; height: 20px; }
.footer-logo-text { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 20px; color: var(--text-primary); }
.footer-logo-text span { color: var(--accent); }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav-title { font-weight: 700; font-size: 14px; color: var(--text-primary); }
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { font-size: 14px; color: var(--text-primary); opacity: 0.7; text-decoration: none; transition: opacity 0.2s; }
.footer-nav a:hover { opacity: 1; }
.footer-copy { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--text-primary); opacity: 0.6; }

/* ══════════════ HERO ══════════════ */
.hero {
  padding: 60px 120px 120px;
  display: flex; flex-direction: column; align-items: center;
  position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; pointer-events: none;
  width: 484px; height: 480px; border-radius: 400px;
  background: radial-gradient(ellipse at center,
    rgba(0,212,255,.1) 0%, rgba(139,92,246,.1) 50%, rgba(0,212,255,.1) 100%);
  filter: blur(40px); top: 60px; left: calc(50% + 60px);
}
.hero-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 24px; max-width: 600px; width: 100%; position: relative; z-index: 1;
}
.hero-badge {
  background: rgba(0,212,255,0.05); border: 1px solid rgba(0,212,255,0.3);
  border-radius: 8px; height: 26px; width: 100%;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.hero-badge-dot {
  position: absolute; left: 12px; width: 8px; height: 8px;
  background: #00d4ff; border-radius: 50%; opacity: .51;
}
.hero-badge span { font-weight: 700; font-size: 12px; color: #00d4ff; font-family: var(--font); }
.hero-h1 { text-align: center; }
.hero-h1 .line {
  font-size: 56px; font-weight: 700; line-height: 1.1;
  letter-spacing: -1.12px; color: #e8e9ed; display: block;
}
.hero-h1 .gradient {
  background: linear-gradient(180deg, #00d4ff 0%, #8b5cf6 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.search-bar {
  width: 100%; background: rgba(220,202,250,0.12); border: 1px solid #1dbafc;
  border-radius: 16px; display: flex; align-items: center; gap: 12px;
  padding-left: 21px; overflow: hidden; text-decoration: none; min-height: 62px;
}
.search-bar .s-icon { width: 20px; height: 20px; flex-shrink: 0; }
.search-url-wrap { flex: 1; min-width: 0; }
.search-url {
  width: 100%; background: none; border: none; outline: none;
  font-size: 16px; color: rgba(241,245,249,0.8);
  font-family: var(--font); caret-color: #6ee9fe;
}
.search-url::placeholder { color: rgba(241,245,249,0.4); }
.error-message { color: #ef4444; font-size: 14px; margin-top: 8px; font-family: var(--font); display: none; }
.search-go {
  background: linear-gradient(180deg, #6ee9fe 22%, #687bf9 123%);
  border: none; border-radius: 0 15px 15px 0;
  display: flex; align-items: center; gap: 12px;
  padding: 0 24px; height: 62px; cursor: pointer; flex-shrink: 0;
}
.search-go img { width: 14px; height: 14px; }
.search-go span { font-size: 20px; font-family: var(--font); color: #0f172a; letter-spacing: -0.6px; white-space: nowrap; }
.hero-desc {
  text-align: center; font-size: 18px; line-height: 1.7;
  color: var(--text); max-width: 446px; font-family: var(--font);
}
.social-proof { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.avatars { display: flex; position: relative; width: 104px; height: 32px; flex-shrink: 0; }
.avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: #0b0d1f; border: 2px solid #1a1d35;
  position: absolute; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-family: var(--font);
}
.avatar:nth-child(1) { left: 0; }
.avatar:nth-child(2) { left: 24px; }
.avatar:nth-child(3) { left: 48px; }
.avatar:nth-child(4) { left: 72px; }
.rating { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.rating p { font-size: 14px; color: #e8e9ed; }
.stars { display: flex; align-items: center; gap: 2px; font-size: 14px; }
.stars .s { color: #fbbf24; }
.stars .r { font-size: 12px; color: var(--text); margin-left: 6px; }

/* ══════════════ PREVIOUS AUDITED ══════════════ */
.section-prev { padding: 60px 0; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.prev-spinner {
  width: 40px; height: 40px; border-radius: 50%;
  border: 3px solid rgba(110,233,254,0.15);
  border-top-color: var(--cyan);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.lbl { font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--cyan); font-family: var(--font); }
.audits-grid { display: grid; grid-template-columns: repeat(3, 330px); gap: 20px; }
.audit-card { border-radius: 12px; overflow: hidden; }
.audit-thumb { height: 207px; background: #1a1d35; overflow: hidden; }
.audit-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.audit-foot {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-top: none;
  display: flex; align-items: center; gap: 12px; padding: 0 17px; height: 67px;
}
.score-badge {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #fff; font-family: var(--font);
}
.site-meta { display: flex; flex-direction: column; }
.site-name { font-size: 16px; color: #f1f5f9; line-height: 1.5; }
.site-lbl { font-size: 12px; color: #64748b; }

/* ══════════════ PRICING ══════════════ */
.section-pricing { padding: 40px 120px; display: flex; flex-direction: column; align-items: center; gap: 60px; }
.section-head { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.pill-badge {
  background: rgba(17,19,40,0.6); border: 1px solid var(--border);
  border-radius: 9999px; height: 32px;
  display: flex; align-items: center; gap: 8px; padding: 0 16px;
  font-size: 12px; color: var(--text-muted); letter-spacing: 0.6px;
  text-transform: uppercase; font-family: var(--font);
}
.pill-badge img { width: 14px; height: 14px; }
.section-title { font-size: 52px; font-weight: 700; font-family: var(--font); color: #e8e9ed; text-align: center; line-height: 1.15; }
.section-title .g {
  background: linear-gradient(180deg, #00d4ff 0%, #8b5cf6 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-sub { font-size: 18px; color: var(--text-muted); text-align: center; line-height: 1.55; max-width: 550px; }
.pricing-badges { display: flex; gap: 24px; align-items: center; font-size: 14px; color: var(--text-muted); font-family: var(--font); }
.pricing-badge { display: flex; align-items: center; gap: 8px; }
.pricing-cards { display: flex; gap: 18px; align-items: flex-start; }
.pcard { border-radius: 20px; overflow: hidden; background: rgba(255,255,255,0.08); }
.pcard-inner { background: #0e1025; border-radius: 19px; padding: 32px; display: flex; flex-direction: column; gap: 28px; width: 351px; }
.pcard.pop { background: linear-gradient(120deg, rgba(0,212,255,.25) 0%, rgba(0,0,0,0) 50%, rgba(0,212,255,.125) 100%); padding: 0 1px 1px; }
.pop-tag {
  background: #6ee9fe; color: #0a0b1a; font-size: 11px; font-family: var(--font-inter); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.55px; padding: 5px 16px 6px; border-radius: 0 0 10px 10px;
  align-self: center; flex-shrink: 0;
}
.pcard.pop .pcard-inner { gap: 20px; padding-top: 40px; width: 360px; }
.pcard.expert .pcard-inner { background: #0f172a; }
.tier-name { font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; font-family: var(--font); }
.c-free { color: var(--text); }
.c-pro { color: #6ee9fe; }
.c-expert { color: #8b5cf6; }
.price-row { display: flex; align-items: baseline; gap: 4px; }
.price-big { font-size: 42px; font-weight: 700; font-family: var(--font); color: var(--text); line-height: 1; }
.price-per { font-size: 16px; color: var(--text); font-family: var(--font); }
.price-desc { font-size: 16px; color: var(--text); line-height: 1.375; font-family: var(--font); max-width: 250px; }
.divider { height: 1px; background: rgba(255,255,255,0.06); }
.feat-list { display: flex; flex-direction: column; gap: 14px; }
.feat-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; font-family: var(--font); }
.chk { width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center; }
.chk-free { background: rgba(255,255,255,0.12); }
.chk-pro  { background: rgba(0,212,255,0.13); }
.chk-exp  { background: rgba(139,92,246,0.13); }
.chk svg { width: 8px; height: 8px; }

/* ══════════════ HEURISTICS ══════════════ */
.section-heuristics-wrap { padding: 60px 120px 0; display: flex; flex-direction: column; align-items: center; }
.heur-head { max-width: 672px; text-align: center; padding-bottom: 60px; }
.heur-head h2 { font-size: 40px; font-weight: 700; font-family: var(--font); color: var(--text); line-height: 1.175; margin: 12px 0; }
.heur-head p { font-size: 18px; color: var(--text); line-height: 1.6; max-width: 616px; margin: 0 auto; }
.heur-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; width: 100%; max-width: 1137px; padding-bottom: 120px; }
.heur-card { background: rgba(17,19,40,0.5); border: 1px solid var(--border); border-radius: 14px; padding: 12px; display: flex; flex-direction: column; gap: 12px; }
.heur-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.heur-icon img { width: 20px; height: 20px; }
.heur-card h3 { font-size: 16px; font-weight: 700; font-family: var(--font); color: var(--text); line-height: 1.22; }
.heur-card p { font-size: 14px; color: var(--text); line-height: 1.49; font-family: var(--font); }

/* ══════════════ CTA ══════════════ */
.section-cta { padding: 40px 370px; }
.cta-box {
  background: #1a1d35; border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px; padding: 40px;
  display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center;
}
.cta-box h2 { font-size: 32px; font-weight: 700; font-family: var(--font); color: var(--text); white-space: nowrap; }
.cta-box p { font-size: 16px; color: var(--text); font-family: var(--font-inter); line-height: 1.625; max-width: 500px; }
.cta-btns { display: flex; gap: 16px; align-items: center; }

/* ══════════════ STATS ══════════════ */
.section-stats { background: #f1f5f9; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 97px 100px 96px; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.stat { display: flex; flex-direction: column; gap: 4px; align-items: center; }
.stat-num {
  font-size: 40px; font-weight: 700; font-family: var(--font);
  background: linear-gradient(180deg, #00d4ff 0%, #8b5cf6 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.47;
}
.stat-lbl { font-size: 16px; font-weight: 700; color: #384d6f; font-family: var(--font); }
.stat-sub { font-size: 14px; color: #0f172a; font-family: var(--font); }

/* ══════════════ HOW IT WORKS ══════════════ */
.section-how {
  padding: 120px; display: flex; flex-direction: column; align-items: center; gap: 64px;
  background: rgba(26,29,53,0.3); position: relative;
}
.section-how::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,212,255,.18) 0%, rgba(139,92,246,.18) 50%, rgba(5,223,114,.18) 100%);
  opacity: .18; pointer-events: none;
}
.how-head { display: flex; flex-direction: column; gap: 14px; align-items: center; text-align: center; max-width: 672px; position: relative; }
.how-head h2 { font-size: 40px; font-weight: 700; font-family: var(--font); color: var(--text); line-height: 1.175; }
.how-head p { font-size: 16px; color: var(--text); font-family: var(--font); line-height: 1.8; }
.steps { display: flex; align-items: flex-start; justify-content: center; position: relative; }
.step { display: flex; flex-direction: column; align-items: center; gap: 20px; width: 384px; }
.step-icon-wrap { position: relative; width: 64px; height: 64px; flex-shrink: 0; }
.step-num {
  position: absolute; top: -8px; right: -8px; z-index: 1;
  width: 24px; height: 24px; background: #0f172a; border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-family: var(--font-mono); font-weight: 500; color: var(--text);
}
.step-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; border: 1px solid; }
.step-icon img { width: 28px; height: 28px; }
.si-1 { background: rgba(110,233,254,.1); border-color: rgba(110,233,254,.3); }
.si-2 { background: rgba(139,92,246,.1); border-color: rgba(139,92,246,.3); }
.si-3 { background: rgba(5,223,114,.1); border-color: rgba(5,223,114,.3); }
.step-text { display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center; max-width: 320px; }
.step-text h3 { font-size: 18px; font-weight: 700; font-family: var(--font); color: var(--text); }
.step-text p { font-size: 14px; color: var(--text); font-family: var(--font); line-height: 1.7; }

/* ══════════════ REPORT PAGE ══════════════ */
.page {
  padding: 60px 120px; max-width: 1440px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 24px;
}
.top-bar { display: flex; align-items: center; justify-content: space-between; padding-top: 8px; }
.top-actions { display: flex; align-items: center; gap: 8px; }

/* Site card */
.site-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; padding: 33px; display: flex; gap: 32px; align-items: flex-start; }
.site-info { flex: 1; display: flex; flex-direction: column; gap: 24px; }
.site-header { display: flex; gap: 16px; align-items: flex-start; }
.site-globe-icon { width: 48px; height: 48px; background: rgba(0,212,255,0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.site-globe-icon svg { width: 24px; height: 24px; color: var(--accent); }
.site-title-group h1 { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 32px; line-height: 1.5; letter-spacing: -0.8px; color: var(--text-primary); }
.site-url { display: flex; align-items: center; gap: 4px; color: var(--accent); font-size: 14px; text-decoration: none; margin-top: 2px; }
.site-url svg { width: 12px; height: 12px; }
.site-meta-row { display: flex; gap: 0; }
.site-meta-inner { display: flex; gap: 0; align-items: flex-start; }

/* Score ring */
.score-ring { position: relative; width: 140px; height: 140px; flex-shrink: 0; }
.score-ring svg { width: 140px; height: 140px; transform: rotate(-90deg); }
.score-ring-inner { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.score-number { font-family: 'Inter', sans-serif; font-size: 36px; font-weight: 400; letter-spacing: -0.9px; color: var(--amber); line-height: 1; }
.score-label { font-size: 12px; color: var(--text-primary); margin-top: 2px; }
.site-meta-details { display: flex; flex-direction: column; gap: 12px; margin-left: 164px; }
.meta-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-primary); line-height: 1.5; }
.meta-item svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.7; }
.issue-counts { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 0; margin-top: 4px; }
.issue-dot { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-primary); }
.dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* Browser mockup */
.browser-mockup { width: 340px; flex-shrink: 0; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; overflow: hidden; }
.browser-bar { display: flex; align-items: center; gap: 4px; padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.browser-dot { width: 10px; height: 10px; border-radius: 50%; }
.browser-url { margin-left: 8px; font-size: 11px; color: var(--text-primary); opacity: 0.7; }
.browser-screenshot { width: 100%; aspect-ratio: 340/200; background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); overflow: hidden; }
.browser-screenshot img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }

/* Metric cards */
.metrics-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.metric-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 14px; padding: 17px; display: flex; align-items: center; gap: 12px; height: 82px; }
.metric-icon { width: 32px; height: 32px; background: rgba(0,212,255,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.metric-icon svg { width: 16px; height: 16px; color: var(--accent); }
.metric-label { font-size: 12px; color: var(--text-primary); margin-bottom: 2px; }
.metric-value { font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 400; line-height: 1.5; }
.val-amber { color: var(--amber); }
.val-red   { color: var(--red); }
.val-green { color: var(--green); }

/* Tabs */
.tabs { display: inline-flex; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 14px; padding: 4px; gap: 4px; }

/* Two-col grid */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.panel { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 14px; padding: 24px; }
.panel-title { font-size: 18px; color: var(--text-primary); margin-bottom: 4px; }
.panel-subtitle { font-size: 14px; color: var(--text-primary); opacity: 0.7; margin-bottom: 16px; }

/* Radar */
.radar-wrap { display: flex; align-items: center; justify-content: center; margin-top: 8px; }
.radar-svg { width: 100%; max-width: 460px; aspect-ratio: 1; height: 320px; }

/* Score bars */
.bar-list { display: flex; flex-direction: column; gap: 10px; margin-top: 30px; }
.bar-row { display: grid; grid-template-columns: 120px 1fr 21px; align-items: center; gap: 12px; font-size: 12px; color: var(--text-primary); padding-bottom: 8px; }
.bar-track { background: rgba(255,255,255,0.06); border-radius: 4px; height: 19px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 4px; background: var(--amber); }
.bar-fill-red   { background: var(--red); }
.bar-fill-green { background: var(--green); }
.bar-val { text-align: right; font-family: 'Inter', sans-serif; font-size: 12px; }

/* Recommendations */
.recommendations { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 14px; padding: 25px; display: flex; flex-direction: column; gap: 20px; }
.rec-header { display: flex; align-items: center; gap: 12px; }
.rec-icon { width: 36px; height: 36px; background: rgba(0,212,255,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rec-icon svg { width: 20px; height: 20px; color: var(--accent); }
.rec-title { font-size: 18px; color: var(--text-primary); }
.rec-subtitle { font-size: 14px; color: var(--text-primary); opacity: 0.7; }
.rec-list { display: flex; flex-direction: column; gap: 16px; }
.rec-item { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 17px; display: flex; gap: 16px; align-items: flex-start; }
.rec-num { width: 32px; height: 32px; border-radius: 50%; background: rgba(0,212,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; color: var(--accent); }
.rec-body { flex: 1; }
.rec-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 6px; }
.rec-name { font-size: 16px; color: var(--text-primary); }
.badge { font-size: 11px; padding: 2px 8px; border-radius: 9999px; line-height: 1.5; }
.badge-red   { background: rgba(239,68,68,0.15);   color: var(--red); }
.badge-amber { background: rgba(245,158,11,0.15);  color: var(--amber); }
.badge-muted { background: rgba(255,255,255,0.06); color: var(--text-primary); }
.rec-desc { font-size: 14px; color: var(--text-primary); opacity: 0.85; line-height: 1.5; }

/* CTA banner */
.cta-banner { background: linear-gradient(180deg, rgba(0,212,255,0.08) 0%, rgba(139,92,246,0.08) 100%); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 40px 120px; display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.cta-icon svg { width: 32px; height: 32px; color: var(--accent); }
.cta-title { font-size: 22px; color: var(--text-primary); font-family: 'Istok Web', sans-serif; }
.cta-desc { font-size: 14px; color: var(--text-primary); opacity: 0.8; max-width: 440px; line-height: 1.6; }

/* ══════════════ PLAN PRO PAGE ══════════════ */
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; color: #6ee9fe; text-decoration: none;
  font-family: var(--font); letter-spacing: -0.42px;
}
.back-link:hover { opacity: 0.8; }
.back-link svg { width: 16px; height: 16px; flex-shrink: 0; }

.pro-hero-card {
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(159.09deg, rgba(0,212,255,0.08) 0%, rgba(139,92,246,0.04) 100%);
  border-radius: 16px; padding: 24px 49px 32px;
  display: flex; flex-direction: column; gap: 20px;
}
.pro-hero-top { display: flex; align-items: center; gap: 12px; }
.pro-plan-icon {
  width: 44px; height: 44px;
  background: rgba(0,212,255,0.1); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pro-plan-label {
  font-size: 12px; color: #6ee9fe;
  text-transform: uppercase; letter-spacing: 1.2px;
  font-family: var(--font); font-weight: 700;
}
.pro-hero-body { display: flex; justify-content: space-between; align-items: flex-end; }
.pro-hero-text { display: flex; flex-direction: column; gap: 16px; }
.pro-hero-h1 {
  font-size: 48px; font-weight: 400;
  line-height: 72px; letter-spacing: -1.2px;
  color: var(--text); font-family: var(--font);
  max-width: 500px; margin: 0;
}
.pro-hero-desc {
  font-size: 16px; line-height: 1.7;
  color: rgba(241,245,249,0.8); font-family: var(--font); max-width: 565px;
}
.pro-price-block { display: flex; align-items: baseline; gap: 4px; padding-top: 64px; flex-shrink: 0; }
.pro-price-big { font-size: 56px; font-weight: 700; line-height: 1; color: var(--text); font-family: var(--font); letter-spacing: -1.4px; }
.pro-price-per { font-size: 18px; color: rgba(241,245,249,0.7); font-family: var(--font); }
.pro-section-title { font-size: 24px; font-weight: 700; color: var(--text); font-family: var(--font); margin: 0 0 16px; }
.pro-features-row { display: flex; gap: 16px; align-items: flex-start; }
.pro-features-col { display: flex; flex-direction: column; gap: 8px; flex: 0 0 480px; }
.pro-feat-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 21px;
  display: flex; align-items: center; gap: 16px; min-height: 70px;
}
.pro-feat-card.disabled { opacity: 0.5; border-color: rgba(255,255,255,0.04); }
.pro-feat-icon {
  width: 36px; height: 36px; background: rgba(0,212,255,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pro-feat-card.disabled .pro-feat-icon { background: rgba(255,255,255,0.05); }
.pro-feat-info { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.pro-feat-name { font-size: 14px; font-weight: 700; color: var(--text); font-family: var(--font); }
.pro-feat-status { font-size: 12px; color: #6ee9fe; font-family: var(--font); }
.pro-feat-card.disabled .pro-feat-status { color: rgba(241,245,249,0.6); }
.pro-feat-check {
  width: 18px; height: 18px; background: rgba(0,212,255,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pro-form-col {
  flex: 1;
  background: linear-gradient(146.7deg, rgba(139,92,246,0.06) 0%, rgba(0,212,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
}
.pro-form-title { font-size: 20px; font-weight: 700; color: var(--text); font-family: var(--font); }
.pro-form-fields { display: flex; flex-direction: column; gap: 12px; }
.pro-field-wrap { position: relative; }
.pro-field-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; color: rgba(241,245,249,0.4);
  display: flex; align-items: center; justify-content: center; pointer-events: none;
}
.pro-field-icon svg { width: 18px; height: 18px; }
.pro-field-wrap--textarea .pro-field-icon { top: 14px; transform: none; }
.pro-form-input, .pro-form-textarea {
  width: 100%; height: 47px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
  padding: 0 16px 0 48px; font-size: 14px; color: var(--text); font-family: var(--font);
  outline: none; transition: border-color 0.2s;
}
.pro-form-textarea { height: auto; padding-top: 12px; padding-bottom: 12px; resize: vertical; min-height: 80px; }
.pro-form-input:focus, .pro-form-textarea:focus { border-color: rgba(110,233,254,0.5); }
.pro-form-input::placeholder, .pro-form-textarea::placeholder { color: rgba(241,245,249,0.35); }
.pro-form-note { font-size: 12px; color: rgba(241,245,249,0.45); font-family: var(--font); text-align: center; line-height: 1.5; }
.pro-table-wrap { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; overflow: hidden; }
.pro-table { width: 100%; border-collapse: collapse; }
.pro-table th { padding: 0 24px; height: 52px; text-align: left; font-size: 14px; font-weight: 700; font-family: var(--font); color: rgba(241,245,249,0.5); border-bottom: 1px solid rgba(255,255,255,0.08); }
.pro-table th.col-pro { color: #6ee9fe; }
.pro-table td { padding: 0 24px; height: 54px; font-size: 14px; font-family: var(--font); color: var(--text); border-bottom: 1px solid rgba(255,255,255,0.04); }
.pro-table tr:last-child td { border-bottom: none; }
.pro-table td.col-pro { color: #6ee9fe; }
.pro-table td.col-feat { color: rgba(241,245,249,0.7); }
.pro-table td.cross { color: rgba(241,245,249,0.2); }
.pro-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pro-faq-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.pro-faq-q { font-size: 16px; font-weight: 700; color: var(--text); font-family: var(--font); }
.pro-faq-a { font-size: 14px; color: rgba(241,245,249,0.7); font-family: var(--font); line-height: 1.6; }

/* ══════════════ PLAN EXPERT PAGE ══════════════ */
.exp-hero-card {
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(162.87deg, rgba(139,92,246,0.08) 0%, rgba(0,212,255,0.04) 100%);
  border-radius: 16px; padding: 24px 49px 32px;
  display: flex; flex-direction: column; gap: 20px;
}
.exp-hero-top { display: flex; align-items: center; gap: 12px; }
.exp-plan-icon {
  width: 44px; height: 44px; background: rgba(139,92,246,0.1); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.exp-plan-label { font-size: 12px; color: #8b5cf6; text-transform: uppercase; letter-spacing: 1.2px; font-family: var(--font); font-weight: 700; }
.exp-hero-body { display: flex; justify-content: space-between; align-items: flex-end; }
.exp-hero-text { display: flex; flex-direction: column; gap: 16px; }
.exp-hero-h1 { font-size: 48px; font-weight: 400; line-height: 72px; letter-spacing: -1.2px; color: var(--text); font-family: var(--font); max-width: 500px; margin: 0; }
.exp-hero-desc { font-size: 16px; line-height: 1.7; color: rgba(241,245,249,0.8); font-family: var(--font); max-width: 571px; }
.exp-price-block { display: flex; align-items: baseline; gap: 4px; padding-top: 64px; flex-shrink: 0; }
.exp-price-big { font-size: 56px; font-weight: 700; line-height: 1; color: var(--text); font-family: var(--font); letter-spacing: -1.4px; }
.exp-price-per { font-size: 18px; color: rgba(241,245,249,0.7); font-family: var(--font); }
.exp-section-title { font-size: 24px; font-weight: 700; color: var(--text); font-family: var(--font); margin: 0 0 16px; }
.exp-features-row { display: flex; gap: 16px; align-items: flex-start; }
.exp-features-col { display: flex; flex-direction: column; gap: 8px; flex: 0 0 480px; }
.exp-feat-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 21px; display: flex; align-items: flex-start; gap: 14px; min-height: 80px; }
.exp-feat-icon { width: 32px; height: 32px; background: rgba(139,92,246,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.exp-feat-info { display: flex; flex-direction: column; gap: 4px; }
.exp-feat-name { font-size: 16px; font-weight: 700; color: var(--text); font-family: var(--font); line-height: 1.4; }
.exp-feat-desc { font-size: 14px; color: rgba(241,245,249,0.6); font-family: var(--font); line-height: 1.55; }
.exp-form-col { flex: 1; background: linear-gradient(146.7deg, rgba(139,92,246,0.06) 0%, rgba(0,212,255,0.03) 100%); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 32px; display: flex; flex-direction: column; gap: 20px; }
.exp-form-header { display: flex; flex-direction: column; gap: 8px; }
.exp-form-title { font-size: 24px; font-weight: 700; color: var(--text); font-family: var(--font); line-height: 1.5; }
.exp-form-subtitle { font-size: 14px; color: rgba(241,245,249,0.6); font-family: var(--font); line-height: 1.57; }
.exp-form-fields { display: flex; flex-direction: column; gap: 12px; }
.exp-field-wrap { position: relative; }
.exp-field-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: rgba(241,245,249,0.4); display: flex; align-items: center; justify-content: center; pointer-events: none; }
.exp-field-icon svg { width: 20px; height: 20px; }
.exp-field-wrap--textarea .exp-field-icon { top: 14px; transform: none; }
.exp-form-input, .exp-form-textarea { width: 100%; height: 47px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 0 16px 0 48px; font-size: 14px; color: var(--text); font-family: var(--font); outline: none; transition: border-color 0.2s; }
.exp-form-textarea { height: 139px; padding-top: 12px; padding-bottom: 12px; resize: vertical; }
.exp-form-input:focus, .exp-form-textarea:focus { border-color: rgba(139,92,246,0.5); }
.exp-form-input::placeholder, .exp-form-textarea::placeholder { color: #475569; }
.exp-form-note { font-size: 12px; color: rgba(241,245,249,0.45); font-family: var(--font); text-align: center; line-height: 1.5; }
.exp-table-wrap { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; overflow: hidden; }
.exp-table { width: 100%; border-collapse: collapse; }
.exp-table th { padding: 0 24px; height: 52px; text-align: left; font-size: 14px; font-weight: 700; font-family: var(--font); color: rgba(241,245,249,0.5); border-bottom: 1px solid rgba(255,255,255,0.08); }
.exp-table th.col-exp { color: #8b5cf6; }
.exp-table td { padding: 0 24px; height: 54px; font-size: 14px; font-family: var(--font); color: var(--text); border-bottom: 1px solid rgba(255,255,255,0.04); }
.exp-table tr:last-child td { border-bottom: none; }
.exp-table td.col-exp { color: #8b5cf6; }
.exp-table td.col-feat { color: rgba(241,245,249,0.7); }
.exp-table td.cross { color: rgba(241,245,249,0.2); }
.exp-table .x-icon { display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; }
.exp-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.exp-faq-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 21px; display: flex; flex-direction: column; gap: 12px; }
.exp-faq-q { font-size: 16px; font-weight: 700; color: var(--text); font-family: var(--font); line-height: 1.4; }
.exp-faq-a { font-size: 14px; color: rgba(241,245,249,0.7); font-family: var(--font); line-height: 1.7; }

@media (max-width: 900px) {
  .pro-hero-h1, .exp-hero-h1     { font-size: 32px; line-height: 1.3; }
  .pro-price-big, .exp-price-big { font-size: 40px; }
  .pro-hero-body, .exp-hero-body { flex-direction: column; gap: 20px; }
  .pro-price-block, .exp-price-block { padding-top: 0; }
  .pro-features-row, .exp-features-row { flex-direction: column; }
  .pro-features-col, .exp-features-col { flex: none; width: 100%; }
  .pro-faq-grid, .exp-faq-grid   { grid-template-columns: 1fr; }
  .pro-table th, .pro-table td,
  .exp-table th, .exp-table td   { padding: 0 12px; font-size: 12px; }
}

/* ══════════════ INDEX PAGE OVERRIDES ══════════════ */
.hero { padding: 60px 120px 80px; }
.hero::after {
  top: 50%; left: 50%;
  transform: translate(-10%, -50%);
}
.search-url::placeholder { color: rgba(241,245,249,0.5); }
.section-prev { padding: 60px 204px; }
.audits-grid {
  display: grid;
  grid-template-columns: repeat(3, 330.66px);
  gap: 20px;
}
.section-how::before {
  background: linear-gradient(90deg,
    rgba(0,212,255,.18) 0%,
    rgba(139,92,246,.18) 50%,
    rgba(5,223,114,.18) 100%);
  opacity: 1;
}
.section-stats {
  background: #f1f5f9;
  padding: 97px 100px 96px;
}
.error-message {
  display: none;
  color: #ef4444;
  font-size: 14px;
  font-family: var(--font);
  text-align: center;
}
.error-message.visible { display: block; }

/* ══════════════ MOBILE ══════════════ */
@media (max-width: 900px) {
  .hero-h1 .line        { font-size: 45px; }
  .hero-badge span      { font-size: 10px; }
  .hero-desc            { font-size: 14px; }
  .search-url           { font-size: 13px; }
  .search-go span       { font-size: 16px; }
  .avatar               { font-size: 9px; }
  .rating p             { font-size: 11px; }
  .stars                { font-size: 11px; }
  .stars .r             { font-size: 10px; }
  .lbl                  { font-size: 10px; }
  .site-name            { font-size: 13px; }
  .site-lbl             { font-size: 10px; }
  .score-badge          { font-size: 13px; }
  .pill-badge           { font-size: 10px; }
  .section-title        { font-size: 42px; }
  .section-sub          { font-size: 14px; }
  .pricing-badges       { font-size: 11px; }
  .tier-name            { font-size: 10px; }
  .price-big            { font-size: 34px; }
  .price-per            { font-size: 13px; }
  .price-desc           { font-size: 13px; }
  .feat-item            { font-size: 11px; }
  .pop-tag              { font-size: 9px; }
  .heur-head h2         { font-size: 32px; }
  .heur-head p          { font-size: 14px; }
  .heur-card h3         { font-size: 13px; }
  .heur-card p          { font-size: 11px; }
  .cta-box h2           { font-size: 26px; }
  .cta-box p            { font-size: 13px; }
  .stat-num             { font-size: 32px; }
  .stat-lbl             { font-size: 13px; }
  .stat-sub             { font-size: 11px; }
  .how-head h2          { font-size: 32px; }
  .how-head p           { font-size: 13px; }
  .step-text h3         { font-size: 14px; }
  .step-text p          { font-size: 11px; }
  .step-num             { font-size: 8px; }
  .footer-tagline       { font-size: 10px; }
  .footer-product h4    { font-size: 11px; }
  .footer-product li a  { font-size: 11px; }
  .footer-legal a       { font-size: 11px; }
  .footer-bottom p      { font-size: 10px; }
  .heur-grid            { grid-template-columns: repeat(3, 1fr); }
  .audits-grid          { grid-template-columns: 1fr; width: 90%; }
  .pricing-cards        { flex-direction: column; align-items: center; width: 100%; }
  .pcard                { width: 90%; }
  .pcard-inner          { width: 100%; }
  .pcard.pop .pcard-inner { width: 100%; }
}
