:root {
  --bg: oklch(0.985 0.006 90);         /* фон страницы — тёплый кремовый */
  --ink: oklch(0.19 0.03 265);         /* тёмная navy — шапка/подвал/активные чипы */
  --ink-2: oklch(0.19 0.03 265);       /* hero-карточка (тот же navy) */
  --cobalt: oklch(0.70 0.17 38);       /* coral — основной акцент (кнопки/ссылки) */
  --cobalt-deep: oklch(0.60 0.16 38);  /* coral потемнее — hover/ссылки в тексте */
  --accent-2: oklch(0.70 0.15 195);    /* teal — вторичный акцент (градиент лого) */
  --lime: oklch(84% 0.22 128);         /* акцентная метка */
  --fog: oklch(0.94 0.008 90);         /* нейтральный фон бейджей */
  --card: oklch(0.995 0.003 90);       /* фон карточек */
  --border: oklch(0.91 0.006 90);      /* граница карточек */
  --text: oklch(0.2 0.02 265);         /* основной текст */
  --text-dim: oklch(0.5 0.02 265);     /* второстепенный текст */
  --green: oklch(52% 0.11 155);        /* рост / позитив */
  --red: oklch(55% 0.13 25);           /* падение / негатив */
}
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: 'Manrope', -apple-system, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-thumb { background: oklch(87% 0.012 240); border-radius: 8px; }
::selection { background: oklch(0.70 0.17 38 / 0.25); }

.gx-page { min-height: 100vh; display: flex; flex-direction: column; }

.gx-header { background: var(--ink); position: sticky; top: 0; z-index: 20; }
.gx-header-inner {
  max-width: 1240px; margin: 0 auto; padding: clamp(12px,2vw,16px) clamp(20px,4vw,40px);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.gx-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.gx-brand-mark {
  width: 32px; height: 32px; border-radius: 10px;
  background: linear-gradient(135deg, var(--cobalt), var(--accent-2)); flex-shrink: 0;
}
.gx-brand-name { font-weight: 800; font-size: 18px; color: oklch(0.98 0.005 90); letter-spacing: -0.02em; }
.gx-nav { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.gx-nav a { color: oklch(0.78 0.01 265); text-decoration: none; font-size: 13.5px; font-weight: 600; white-space: nowrap; }
.gx-nav a.active { color: oklch(0.98 0.005 90); }
.gx-nav a:hover { color: oklch(0.98 0.005 90); }
.gx-burger {
  display: none; width: 38px; height: 38px; border-radius: 10px; border: none;
  background: oklch(0.27 0.02 265); cursor: pointer; flex-shrink: 0;
  align-items: center; justify-content: center; flex-direction: column; gap: 4px;
}
.gx-burger span { display: block; width: 17px; height: 2px; background: oklch(0.98 0.005 90); border-radius: 2px; }
.gx-lang {
  flex-shrink: 0; background: oklch(0.27 0.02 265); color: oklch(0.95 0.01 265);
  border: none; border-radius: 8px; padding: 7px 8px; font-size: 13px; font-weight: 600;
  font-family: inherit; cursor: pointer; -webkit-appearance: none; appearance: none;
}
.gx-lang:hover { background: oklch(0.32 0.02 265); }
.gx-lang option { background: var(--ink); color: white; }
.gx-mobile-menu { display: none; flex-direction: column; gap: 2px; padding: 6px 20px 20px; border-top: 1px solid oklch(0.30 0.02 265); }
.gx-mobile-menu a { color: oklch(0.95 0.01 265); text-decoration: none; font-size: 15.5px; font-weight: 600; padding: 11px 4px; }
.gx-mobile-menu a.active { color: var(--accent-2); }
.gx-header.open .gx-mobile-menu { display: flex; }
@media (max-width: 900px) {
  .gx-nav { display: none; }
  .gx-burger { display: flex; }
}

.gx-hero { background: linear-gradient(180deg, oklch(0.96 0.02 195) 0%, var(--bg) 65%); }
.gx-hero-inner { max-width: 1240px; margin: 0 auto; padding: 22px clamp(20px,4vw,40px) 20px; }

.gx-main { flex: 1; min-width: 0; max-width: 1240px; margin: 0 auto; width: 100%;
  padding: 26px clamp(20px,4vw,40px) 60px; }

.gx-footer { background: var(--ink); margin-top: 32px; padding: clamp(32px,5vw,48px) clamp(20px,4vw,40px) 26px; }
.gx-footer-inner { max-width: 1240px; margin: 0 auto; display: flex; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.gx-footer-brand { display: flex; flex-direction: column; gap: 12px; max-width: 300px; }
.gx-footer-desc { font-size: 13.5px; color: oklch(0.65 0.01 265); line-height: 1.6; }
.gx-footer-cols { display: grid; grid-template-columns: repeat(2, minmax(140px,1fr)); gap: 22px 32px; flex: 1; max-width: 420px; }
.gx-footer-h { font-size: 12px; font-weight: 700; color: oklch(0.98 0.005 90); text-transform: uppercase;
  letter-spacing: 0.04em; margin-bottom: 4px; display: block; }
.gx-footer-cols a { color: oklch(0.68 0.01 265); text-decoration: none; font-size: 13.5px; display: block; padding: 3px 0; }
.gx-footer-cols a:hover { color: oklch(0.9 0.01 265); }
.gx-footer-bottom { border-top: 1px solid oklch(0.28 0.02 265); margin-top: 28px; padding-top: 16px; text-align: center; }
.gx-footer-bottom span { font-size: 12.5px; color: oklch(0.55 0.01 265); }

.page-title { font-size: clamp(22px,3vw,30px); font-weight: 800; letter-spacing: -0.02em; }
.page-sub { font-size: 13.5px; color: var(--text-dim); margin-top: 5px; }
.crumbs { font-size: 13px; color: var(--text-dim); margin-bottom: 4px; }
.crumbs a { color: var(--cobalt-deep); font-weight: 600; }
.crumbs a:hover { text-decoration: underline; }
.crumbs-sep { color: oklch(80% 0.01 240); }

.hero {
  background: var(--ink-2); border-radius: 22px; padding: 30px 34px; margin-bottom: 18px;
  color: white; display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
}
.hero-label { font-size: 13px; color: oklch(78% 0.03 245); margin-bottom: 8px; }
.hero-value { font-size: 40px; font-weight: 800; letter-spacing: -0.03em; }
.hero-delta { font-size: 13.5px; font-weight: 600; margin-top: 6px; }

.grid { display: grid; gap: 16px; margin-bottom: 18px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1fr 1fr; }

.card {
  background: var(--card); border: 1px solid var(--border); border-radius: 18px;
  padding: 22px 24px; box-shadow: 0 1px 2px oklch(0.2 0.02 265 / 0.06);
}
.card-title { font-size: 14.5px; font-weight: 700; margin-bottom: 14px; }
.stat-label { font-size: 12px; color: var(--text-dim); margin-bottom: 8px; }
.stat-value { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }

table.dt { width: 100%; border-collapse: collapse; font-size: 13.5px; }
table.dt th { text-align: right; font-weight: 600; color: var(--text-dim); font-size: 12px;
  padding: 6px 10px; border-bottom: 1px solid var(--border); }
table.dt td { text-align: right; padding: 8px 10px; border-bottom: 1px solid oklch(95% 0.004 240); }
table.dt th:first-child, table.dt td:first-child { text-align: left; }
table.dt tr:last-child td { border-bottom: none; }

.badge {
  display: inline-block; font-size: 11.5px; font-weight: 600; padding: 4px 10px;
  border-radius: 7px; background: var(--fog); color: oklch(30% 0.015 250);
}
.badge.ok { background: oklch(90% 0.12 155); color: oklch(30% 0.08 155); }
.badge.bad { background: oklch(90% 0.1 25); color: oklch(35% 0.1 25); }
.badge.mid { background: oklch(92% 0.05 250); color: oklch(35% 0.14 250); }

.empty { color: var(--text-dim); font-size: 14px; padding: 20px 0; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.chip {
  font-size: 13px; font-weight: 600; padding: 7px 14px; border-radius: 100px;
  background: var(--card); border: 1px solid var(--border); color: var(--text-dim);
}
.chip:hover { background: oklch(96% 0.006 240); }
.chip.active { background: var(--ink); border-color: var(--ink); color: white; }
.chip.radio { cursor: pointer; }

.filters {
  background: var(--card); border: 1px solid var(--border); border-radius: 18px;
  padding: 20px 24px; margin-bottom: 20px;
}
.filters form { display: flex; flex-direction: column; gap: 16px; }
.filter-row { display: flex; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
.filter-label { font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-dim); min-width: 90px; padding-top: 8px; }
.filter-options { display: flex; flex-wrap: wrap; gap: 7px; flex: 1; }
select.region-select {
  font-size: 13.5px; font-weight: 600; padding: 8px 12px; border-radius: 8px;
  background: var(--card); border: 1px solid var(--border); color: var(--text); min-width: 220px;
}
.tag-check { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 600;
  padding: 6px 12px; border-radius: 7px; background: var(--fog); color: oklch(30% 0.015 250); cursor: pointer; }
.tag-check input { accent-color: var(--cobalt); }
.filter-top-row { display: flex; flex-wrap: wrap; gap: 20px; align-items: flex-start; }
.filter-top-row .filter-row { flex: 1; min-width: 200px; }
.filters-actions { display: flex; gap: 10px; }

.filter-details { border: 1px solid var(--border); border-radius: 10px; background: var(--fog); }
.filter-details + .filter-details { margin-top: 8px; }
.filter-details summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; font-size: 12.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--text-dim); user-select: none;
}
.filter-details summary::-webkit-details-marker { display: none; }
.filter-details summary .fd-chevron { margin-left: auto; font-size: 15px; transition: transform 0.15s ease; }
.filter-details[open] summary .fd-chevron { transform: rotate(180deg); }
.filter-details[open] summary { border-bottom: 1px solid var(--border); }
.filter-badge {
  background: var(--cobalt); color: white; font-size: 11px; font-weight: 700;
  padding: 1px 7px; border-radius: 999px; line-height: 1.5;
}
.filter-details-body { padding: 12px 14px; display: flex; flex-wrap: wrap; gap: 7px; }
.filter-details-body .filter-row { width: 100%; align-items: center; gap: 10px; margin-bottom: 2px; }
.filter-details-body .filter-label { min-width: 76px; padding-top: 0; font-size: 10.5px; }
.btn-primary {
  background: var(--ink); color: white; font-size: 13.5px; font-weight: 600; padding: 10px 20px;
  border-radius: 9px; border: none; cursor: pointer;
}
.btn-secondary {
  background: transparent; border: 1.5px solid var(--border); color: var(--text-dim);
  font-size: 13.5px; font-weight: 600; padding: 9px 18px; border-radius: 9px;
}

.result-count { font-size: 13px; color: var(--text-dim); margin-bottom: 14px; }
.listing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; margin-bottom: 22px; }
.listing-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
  display: flex; flex-direction: column; box-shadow: 0 1px 2px oklch(0.2 0.02 265 / 0.06);
}
.lc-thumb { position: relative; width: 100%; aspect-ratio: 4/3; background: var(--fog); overflow: hidden; }
.lc-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0; transition: opacity .25s ease; }
.lc-thumb.loaded img { opacity: 1; }
.lc-thumb.loaded .lc-spinner, .lc-thumb.err .lc-spinner { display: none; }
.lc-spinner {
  position: absolute; top: 50%; left: 50%; width: 20px; height: 20px; margin: -10px 0 0 -10px;
  border: 2px solid var(--border); border-top-color: var(--cobalt); border-radius: 50%;
  animation: lc-spin .7s linear infinite;
}
@keyframes lc-spin { to { transform: rotate(360deg); } }
.cmp-toggle {
  position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; border-radius: 10px;
  border: none; background: oklch(1 0 0 / 0.9); display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 15px; color: oklch(0.5 0.02 265); box-shadow: 0 1px 3px oklch(0.2 0.02 265 / 0.15);
}
.cmp-toggle:hover { color: var(--cobalt-deep); }
.cmp-toggle.active { background: var(--cobalt); color: white; }
.cmp-bar {
  position: fixed; left: 50%; bottom: 20px; transform: translateX(-50%); z-index: 30;
  background: var(--ink); color: white; border-radius: 100px; padding: 10px 10px 10px 20px;
  display: none; align-items: center; gap: 14px; box-shadow: 0 8px 24px oklch(0.2 0.02 265 / 0.35);
}
.cmp-bar.show { display: flex; }
.cmp-bar span { font-size: 13.5px; font-weight: 600; }
.cmp-bar button { border: none; border-radius: 100px; font-weight: 700; font-size: 13px; cursor: pointer; }
.cmp-bar .cmp-go { background: var(--cobalt); color: white; padding: 9px 18px; }
.cmp-bar .cmp-clear { background: transparent; color: oklch(0.7 0.01 265); padding: 9px 10px; }
.tc-count { display:inline-flex; align-items:center; }
.tc-spin { display:inline-block; font-size:11px; color: var(--text-dim); animation: lc-spin .8s linear infinite; }
.listing-body { padding: 16px 16px 16px; display: flex; flex-direction: column; gap: 6px; }
.listing-price { font-size: 17px; font-weight: 800; letter-spacing: -0.01em; }
.listing-meta { font-size: 12.5px; color: var(--text-dim); }
.listing-title { font-size: 13px; color: var(--text); line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.6em; }
.listing-link {
  margin-top: 4px; font-size: 12.5px; font-weight: 700; color: var(--cobalt-deep);
  word-break: break-word; overflow-wrap: anywhere; display: block;
}
.listing-link:hover { text-decoration: underline; }
.plain-link-city { margin-bottom: 16px; }
.plain-link-city:last-child { margin-bottom: 0; }
.plain-link-city-h { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-dim); margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid var(--border); }
.plain-link-row { display: flex; flex-wrap: wrap; gap: 7px 18px; }
.plain-link-item { display: inline-flex; align-items: baseline; gap: 4px; }
.plain-link { font-size: 13.5px; font-weight: 600; color: var(--cobalt-deep); }
.plain-link:hover { text-decoration: underline; }
.plain-link.active { color: var(--text); text-decoration: underline; font-weight: 700; }
.plain-link-n { font-size: 11px; color: var(--text-dim); }
.plain-link-row { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.article-body { margin: 20px 0; }
.article-body h3 { font-size: 15px; font-weight: 700; margin: 22px 0 8px; color: var(--text); }
.article-body h3:first-child { margin-top: 0; }
.article-body p { font-size: 14px; line-height: 1.65; margin: 0 0 12px; color: var(--text); }
.article-body ul, .article-body ol { margin: 0 0 12px; padding-inline-start: 22px; font-size: 14px; line-height: 1.65; }
.article-body li { margin-bottom: 5px; }
.pagination { display: flex; gap: 8px; align-items: center; justify-content: center; margin-top: 8px; }
.section-label { font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--text-dim); margin: 26px 0 12px; }
img.heatmap { max-width: 100%; border-radius: 16px; border: 1px solid var(--border); }

.ready-banner { display:flex; align-items:center; gap:10px; background: oklch(95% 0.05 155);
  color: oklch(38% 0.09 155); border:1px solid oklch(88% 0.06 155); border-radius: 14px;
  padding: 12px 16px; font-size: 13.5px; font-weight: 600; margin-bottom: 16px; }
.rb-dot { width:8px; height:8px; border-radius:50%; background: var(--green); flex-shrink:0; }
.muted { color: var(--text-dim); font-size: 13px; margin-top: 4px; }
.seg { display:inline-flex; border:1px solid var(--border); border-radius:10px; overflow:hidden; margin-bottom:14px; }
.seg-b { border:none; background:transparent; padding:8px 16px; font-size:13px; font-weight:600;
  color: var(--text-dim); cursor:pointer; }
.seg-b.active { background: oklch(93% 0.02 245); color: oklch(30% 0.06 245); }
.frow { display:flex; flex-wrap:wrap; gap:10px; align-items:center; }
.frow input[type=number], .frow input[type=email] { flex:1; min-width:120px; padding:9px 12px;
  border:1px solid var(--border); border-radius:9px; font-size:13.5px; font-family:inherit; }
#in-url { padding:11px 14px; border:1px solid var(--border); border-radius:10px; font-size:14px; font-family:inherit; }
.chk { display:flex; align-items:center; gap:7px; font-size:13px; color: var(--text-dim); }
.tg-soon { font-size:12px; color: var(--text-dim); background: var(--fog); border-radius:8px; padding:5px 10px; }
.prg-head { display:flex; justify-content:space-between; align-items:baseline; margin-bottom:9px; font-size:14px; }
.prg-track { height:6px; background: var(--fog); border-radius:99px; overflow:hidden; }
.prg-bar { height:100%; width:0; background: var(--cobalt); border-radius:99px; transition: width .5s ease; }
.prg-indet { width:40% !important; animation: prg-slide 1.1s ease-in-out infinite; }
@keyframes prg-slide { 0% { margin-left:-40%; } 100% { margin-left:100%; } }
.prg-link { margin-top:12px; font-size:12px; color: var(--text-dim); }
.prg-link a { color: var(--cobalt-deep); font-weight:600; }
.res-head { display:flex; justify-content:space-between; align-items:flex-start; gap:12px; flex-wrap:wrap; margin-bottom:14px; }
.res-title { font-size:16px; font-weight:700; }
.res-foot { margin-top:14px; padding-top:12px; border-top:1px solid var(--border); }
.res-foot a { color: var(--cobalt-deep); font-weight:600; }
.recheck-link { color: var(--cobalt-deep); font-weight:600; white-space:nowrap; }
.recheck-link .ti { font-size:13px; vertical-align:-1px; }
.badge { font-size:13px; font-weight:600; padding:6px 12px; border-radius:10px; white-space:nowrap; }
.badge.ok { background: oklch(93% 0.07 155); color: oklch(38% 0.1 155); }
.badge.bad { background: oklch(93% 0.06 25); color: oklch(45% 0.13 25); }
.grid3 { display:grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap:12px; }
.grid2 { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap:16px; margin-top:16px; }
.mcard { background: var(--fog); border-radius:12px; padding:14px; }
.ml { font-size:12.5px; color: var(--text-dim); }
.mv { font-size:22px; font-weight:800; letter-spacing:-0.02em; margin-top:2px; }
.mh { font-size:12px; color: var(--text-dim); }
.blk .bl { font-size:12.5px; color: var(--text-dim); margin-bottom:8px; }
.chip { display:inline-block; background: var(--fog); color: var(--text); font-size:12px;
  padding:4px 10px; border-radius:99px; margin:0 6px 6px 0; }
.chip.up { background: oklch(93% 0.07 155); color: oklch(38% 0.1 155); }
.chip.down { background: oklch(93% 0.06 25); color: oklch(45% 0.13 25); }
.fgrid { display:grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap:10px; }
.fgrid label { display:flex; flex-direction:column; gap:4px; font-size:12px; color: var(--text-dim); }
.fgrid input, .fgrid select { padding:8px 10px; border:1px solid var(--border); border-radius:8px;
  font-size:13.5px; font-family:inherit; background: var(--card); }
.dropzone { margin-top:14px; border:1.5px dashed var(--border); border-radius:12px; padding:18px;
  text-align:center; color: var(--text-dim); font-size:13.5px; display:flex; flex-direction:column;
  align-items:center; gap:6px; cursor:pointer; }
.dropzone.over { border-color: var(--cobalt); background: oklch(97% 0.02 245); }
.dropzone .ti { font-size:26px; }
.ref-photo-card { margin-bottom: 18px; }
.ref-photo-row { display:flex; gap:16px; align-items:stretch; flex-wrap:wrap; margin-top:8px; }
.ref-photo-img { width:120px; height:120px; border-radius:12px; object-fit:cover; flex-shrink:0;
  background: var(--fog); }
.ref-photo-empty { display:flex; align-items:center; justify-content:center; color: var(--text-dim); font-size:26px; }
.ref-photo-actions { flex:1; min-width:220px; display:flex; flex-direction:column; justify-content:center; }
.ref-photo-actions .dropzone { margin-top:8px; padding:12px; }
.linklike { color: var(--cobalt-deep); font-weight:600; cursor:pointer; }
.muted2 { font-size:12px; color: var(--text-dim); }
.pill { display:inline-block; background: var(--fog); border-radius:99px; padding:1px 9px; font-size:11.5px; }
.contact-wait { margin-top:12px; padding-top:12px; border-top:1px solid var(--border); }
.ph-grid { display:grid; grid-template-columns: repeat(auto-fill, minmax(140px,1fr)); gap:12px; }
.ph-card { background: var(--fog); border-radius:12px; overflow:hidden; display:flex; flex-direction:column; }
.ph-card img { width:100%; aspect-ratio:4/3; display:block; object-fit:cover; background: var(--fog); }
.ph-empty { width:100%; aspect-ratio:4/3; display:flex; align-items:center; justify-content:center; color: var(--text-dim); font-size:22px; }
.ph-body { padding:8px 10px 10px; display:flex; flex-direction:column; gap:8px; flex:1; }
.ph-tags { font-size:12px; color: var(--text-dim); line-height:1.5; }
.ph-similar { border:1px solid var(--border); background:transparent; border-radius:8px; font-size:11.5px;
  padding:6px 8px; cursor:pointer; color: var(--text-dim); display:flex; align-items:center; gap:5px;
  margin-top:auto; text-decoration:none; }
.ph-similar:hover { background: var(--card); color: var(--text); }
.cache-notice { display:flex; align-items:center; gap:8px; background: oklch(96% 0.03 85);
  color: oklch(42% 0.09 75); border:1px solid oklch(88% 0.06 80); border-radius:12px;
  padding:10px 14px; font-size:13px; margin-bottom:14px; flex-wrap:wrap; }
.cache-notice .btn-secondary { margin-left:auto; font-size:12.5px; padding:6px 12px; }
.review-blk { margin-top:26px; padding-top:20px; border-top:1px solid var(--border); }
.review-blk .bl { margin-bottom:12px; }
.stars { display:flex; gap:6px; margin-bottom:14px; }
.star-i { font-size:26px; line-height:1; color: oklch(85% 0.01 240); cursor:pointer;
  transition: color .12s ease, transform .12s ease; }
.star-i:hover { transform: scale(1.12); }
.star-i.on { color: oklch(75% 0.15 85); }
#rv-comment { width:100%; margin-bottom:12px; padding:10px 12px; border:1px solid var(--border);
  border-radius:9px; font-size:13.5px; font-family:inherit; resize:vertical; box-sizing:border-box; }
table.cmp { width:100%; border-collapse:collapse; font-size:13.5px; }
table.cmp th { text-align:left; color:var(--text-dim); font-size:12px; font-weight:600;
  padding:8px 10px; border-bottom:1px solid var(--border); white-space:nowrap; }
table.cmp td { padding:8px 10px; border-bottom:1px solid oklch(95% 0.004 240); text-align:center; }
table.cmp tr:first-child td { font-size:14px; }
.cmp-thumb-wrap { width:84px; margin:0 auto; }
.cmp-thumb-wrap .lc-thumb { border-radius:10px; }

.tools-grid { display:grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap:14px; margin-bottom:32px; }
.tool-card { display:flex; flex-direction:column; gap:8px; padding:20px; transition: border-color .15s ease, transform .15s ease; }
.tool-card:hover { border-color: var(--cobalt); transform: translateY(-1px); }
.tool-icon { width:38px; height:38px; border-radius:10px; background: var(--fog); color: var(--cobalt-deep);
  display:flex; align-items:center; justify-content:center; font-size:18px; }
.tool-title { font-size:14.5px; font-weight:700; color: var(--text); }
.tool-desc { font-size:12.5px; color: var(--text-dim); line-height:1.45; }

.news-list { display:flex; flex-direction:column; }
.news-row {
  display:flex; gap:14px; align-items:flex-start; padding:14px 0;
  border-bottom:1px solid oklch(95% 0.004 240); cursor:pointer;
}
.news-row:first-child { padding-top:2px; }
.news-row:last-child { border-bottom:none; padding-bottom:2px; }
.news-row:hover .news-title { color: var(--cobalt-deep); }
.news-thumb { width:110px; height:66px; flex-shrink:0; border-radius:10px; overflow:hidden;
  box-shadow: 0 1px 2px oklch(0.2 0.02 265 / 0.12); }
.news-thumb svg, .news-thumb img { display:block; width:100%; height:100%; object-fit:cover; background: var(--fog); }
.news-body { min-width:0; flex:1; }
.news-title { font-size:14px; font-weight:700; color: var(--text); line-height:1.35;
  display:flex; align-items:center; gap:10px; flex-wrap:wrap; transition: color .12s ease; }
.news-desc { font-size:12.5px; color: var(--text-dim); line-height:1.45; margin-top:4px; }
.news-source { font-size:11.5px; color: var(--text-dim); margin-top:6px; display:flex;
  align-items:center; gap:5px; }
.news-source .ti { font-size:13px; }
@media (max-width: 480px) {
  .news-thumb { width:84px; height:52px; }
}

/* ---- адаптив: телефон/планшет ---- */
@media (max-width: 700px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero { flex-direction: column; align-items: flex-start; gap: 16px; padding: 24px 22px; }
  .hero-value { font-size: 32px; }
  table.dt, table.cmp {
    display: block; overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch;
  }
  table.dt td:first-child, table.dt th:first-child,
  table.cmp td:first-child, table.cmp th:first-child { white-space: normal; }
  .filter-label { min-width: 0; width: 100%; padding-top: 0; }
  .filters { padding: 16px 16px; }
  .gx-main { padding-left: 16px; padding-right: 16px; }
  .gx-hero-inner { padding-left: 16px; padding-right: 16px; }
}
@media (max-width: 480px) {
  .listing-grid, .ph-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .ref-photo-actions { min-width: 0; }
  .gx-footer-cols { grid-template-columns: 1fr 1fr; gap: 20px 16px; }
}
@media (max-width: 360px) {
  .gx-footer-cols { grid-template-columns: 1fr; }
}

.gx-account-link {
  display: flex; align-items: center; justify-content: center; width: 38px; height: 38px;
  border-radius: 10px; background: oklch(0.27 0.02 265); color: oklch(0.9 0.01 265);
  font-size: 18px; flex-shrink: 0;
}
.gx-account-link:hover { background: oklch(0.32 0.02 265); }

.acc-card { max-width: 380px; margin: 0 auto; text-align: center; }
.acc-back { display: inline-flex; align-items: center; gap: 4px; color: var(--text-dim);
  font-size: 13px; font-weight: 600; margin-bottom: 8px; cursor: pointer; }
.acc-mark { width: 52px; height: 52px; border-radius: 16px; margin: 4px auto 18px;
  background: linear-gradient(135deg, var(--cobalt), var(--accent-2));
  display: flex; align-items: center; justify-content: center; color: white; font-size: 22px; }
.acc-title { font-size: 20px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 8px; }
.acc-sub { font-size: 13.5px; color: var(--text-dim); line-height: 1.5; margin-bottom: 22px; }
.acc-sub b { color: var(--text); }
#acc-email-input {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 12px;
  font-size: 15px; font-family: inherit; text-align: center; margin-bottom: 14px;
}
#acc-email-input:focus { outline: none; border-color: var(--cobalt); }
.otp-row { display: flex; gap: 10px; justify-content: center; margin-bottom: 18px; }
.otp-box {
  width: 46px; height: 58px; border: 1.5px solid var(--border); border-radius: 12px;
  text-align: center; font-size: 22px; font-weight: 700; font-family: inherit; color: var(--text);
}
.otp-box:focus { outline: none; border-color: var(--cobalt); box-shadow: 0 0 0 3px oklch(0.70 0.17 38 / 0.15); }
.acc-timer { font-size: 13px; color: var(--text-dim); margin-bottom: 18px; }
.acc-timer b { color: var(--text); font-weight: 700; }
.acc-err { font-size: 12.5px; color: var(--red); margin: -6px 0 14px; min-height: 16px; }
.acc-loggedin { text-align: left; }
.acc-email-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--fog);
  padding: 8px 14px; border-radius: 100px; font-size: 13.5px; font-weight: 700; margin-bottom: 18px; }
.acc-email-badge .ti { color: var(--green); }

.hbar-chart { display: block; margin-top: 6px; }
.hbar-chart text { font-family: inherit; }
.hbar-label { font-size: 12.5px; fill: var(--text-dim); dominant-baseline: middle; }
.hbar-value { font-size: 12.5px; font-weight: 700; fill: var(--text); dominant-baseline: middle; }
.hbar-track { fill: var(--fog); }
.hbar-legend { display: flex; gap: 16px; margin-bottom: 8px; }
.hbar-legend-item { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--text-dim); }
.hbar-legend-item i { width: 10px; height: 10px; border-radius: 3px; display: inline-block; }