:root {
  /* ЖилКомСоюз — светло-голубая палитра (типовая для ЖКХ). */
  --bg: #f4f8fb;
  --paper: #ffffff;
  --ink: #1a2935;
  --ink-2: #34495e;
  --muted: #6e7c8a;
  --muted-2: #a8b5c3;
  --line: #dbe7f0;
  --line-2: #c1d4e3;
  --hover: #eaf2f9;
  --accent: #2980b9;
  --hot: #c0392b;
  --ok: #27ae60;
  --grad-1: #5dade2;
  --grad-2: #2980b9;
  --grad-hot-1: #e74c3c;
  --grad-hot-2: #c0392b;
  --grad-ok-1: #58d68d;
  --grad-ok-2: #27ae60;
  --shadow-sm: 0 1px 2px rgba(26,41,53,0.04), 0 1px 3px rgba(26,41,53,0.06);
  --shadow-md: 0 2px 4px rgba(26,41,53,0.04), 0 6px 18px rgba(26,41,53,0.08);
  --shadow-lg: 0 4px 10px rgba(26,41,53,0.06), 0 16px 40px rgba(41,128,185,0.22);
  --brand: #2980b9;
  /* Две УК группы */
  --uk-zks: #2980b9;   /* ЖилКомСоюз — синий */
  --uk-acc: #d68910;   /* Арх-Строй Союз — тёплый оранжевый (контраст с синим) */
  /* Совместимость со старыми селекторами (не используются активно) */
  --uk-2005: var(--uk-zks);
  --uk-zd:   var(--uk-acc);
  --uk-zds:  var(--uk-zks);
  --uk-bastion: var(--uk-acc);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* HEADER */
.header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  position: sticky; top: 0; z-index: 30;
  animation: slideDown .5s cubic-bezier(.2,.8,.2,1) both;
}
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.org { display: flex; align-items: center; gap: 12px; min-width: 0; }
.org-mark {
  width: 36px; height: 36px;
  background:
    url('org-mark.svg') center/76% no-repeat,
    linear-gradient(135deg, var(--grad-1), var(--grad-2));
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(41,128,185,0.32);
  position: relative;
  overflow: hidden;
  font-size: 0;
}
.org-mark::after {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 50%; height: 200%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%);
  transform: rotate(15deg);
  animation: logoShine 4.5s ease-in-out infinite;
}
@keyframes logoShine {
  0%, 70%, 100% { left: -60%; }
  85% { left: 130%; }
}
.org-text { display: flex; flex-direction: column; justify-content: center; min-width: 0; line-height: 1.2; }
.org-text--short { display: none; }
.org-name { font-weight: 700; font-size: 14px; color: var(--accent); letter-spacing: -0.01em; }
.org-place { font-weight: 700; font-size: 14px; color: var(--accent); letter-spacing: -0.01em; }
.org-full { font-size: 12px; color: var(--muted); margin-top: 1px; }

.head-right { display: flex; align-items: center; gap: 16px; }
.phone-h { font-size: 13px; color: var(--ink); }
.phone-h .l { color: var(--muted); margin-right: 6px; }

.btn {
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  color: var(--paper);
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-family: inherit;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, filter .15s;
  box-shadow: 0 4px 14px rgba(41,128,185,0.32);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(41,128,185,0.42); filter: brightness(1.05); }
.btn:active { transform: translateY(0); }
.btn-sec {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-sec:hover { background: var(--hover); border-color: var(--line-2); filter: none; box-shadow: var(--shadow-md); }
.btn-lg { padding: 13px 22px; font-size: 14px; border-radius: 12px; }
.header .btn {
  animation: ctaPulse 2.6s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(41,128,185,0.32), 0 0 0 0 rgba(41,128,185,0.45); }
  60% { box-shadow: 0 6px 18px rgba(41,128,185,0.42), 0 0 0 10px rgba(41,128,185,0); }
}
.header .btn:hover { animation-play-state: paused; }

/* BREADCRUMB */
.crumbs {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  font-size: 13px;
  color: var(--muted);
}
.crumbs a { transition: color .12s; }
.crumbs a:hover { color: var(--accent); }
.crumbs .sep { margin: 0 8px; color: var(--muted-2); }
.crumbs .here { color: var(--ink); font-weight: 500; }

/* PAGE */
.page { padding: 32px 0 80px; }
.page-head { margin-bottom: 32px; }
.page-head .eyebrow {
  font-size: 12px; font-weight: 600; color: var(--accent);
  text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 8px;
}
.page-head h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700; letter-spacing: -0.8px; line-height: 1.1;
}
.page-head p { color: var(--muted); margin-top: 10px; max-width: 720px; font-size: 15px; }

.section { margin-bottom: 36px; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; gap: 12px; flex-wrap: wrap; }
.section-head h2 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.6px; color: var(--ink); }
.section-head .more { font-size: 13px; color: var(--muted); }
.section-head .more:hover { color: var(--accent); }

/* CARDS */
.card {
  background: var(--paper);
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

/* INFO LIST */
.kv-list {
  background: var(--paper);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.kv {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.kv:last-child { border-bottom: none; }
.kv:hover { background: var(--hover); }
.kv .k { color: var(--muted); font-size: 13px; }
.kv .v { color: var(--ink); font-size: 14px; font-weight: 500; }
.kv .v.big { font-size: 18px; font-weight: 700; letter-spacing: -0.3px; }
.kv .v.mono { font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace; font-size: 13px; }

/* TABLE */
.table-wrap {
  background: var(--paper);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.table-wrap.scroll { overflow-x: auto; }
table.t { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 720px; }
table.t th, table.t td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); white-space: nowrap; }
table.t th { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); background: var(--bg); position: sticky; top: 0; z-index: 2; }
table.t tr:last-child td { border-bottom: none; }
table.t tr:hover td { background: var(--hover); }
table.t td.addr { white-space: normal; min-width: 280px; font-weight: 500; }
table.t td.num { font-variant-numeric: tabular-nums; }

/* STATUS BADGE */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.badge.ok { background: #efe8dc; color: #5c7a3a; }
.badge.ok .d { width: 6px; height: 6px; background: #6f8b5a; border-radius: 50%; }

/* FOOTER */
.footer { background: var(--paper); border-top: 1px solid var(--line); padding: 28px 0 20px; font-size: 13px; color: var(--muted); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 24px;
}
.footer h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.6px; color: var(--ink); font-weight: 600; margin-bottom: 10px; }
.footer a { display: block; padding: 3px 0; color: var(--muted); }
.footer a:hover { color: var(--accent); }
.footer .org-line { color: var(--accent); font-weight: 700; font-size: 15px; line-height: 1.2; letter-spacing: -0.01em; }
.footer .reqs { font-size: 12px; color: var(--muted); line-height: 1.7; margin-top: 10px; }
.footer-brand { display: grid; grid-template-columns: auto 1fr; column-gap: 14px; row-gap: 14px; }
.footer-mark {
  width: 44px; height: 44px;
  background:
    url('org-mark.svg') center/76% no-repeat,
    linear-gradient(135deg, var(--grad-1), var(--grad-2));
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(41,128,185,0.32);
}
.footer-name { align-self: center; }
.footer-brand .reqs { grid-column: 1 / -1; margin-top: 0; }
.footer-bot {
  padding-top: 16px; border-top: 1px solid var(--line); display: flex; justify-content: space-between;
  gap: 12px; flex-wrap: wrap; font-size: 12px; color: var(--muted);
}
.footer-bot a { display: inline; padding: 0; }

/* TOAST */
.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translate(-50%, 16px);
  background: var(--ink); color: var(--paper);
  padding: 14px 22px; border-radius: 12px;
  font-size: 14px; font-weight: 500;
  z-index: 2000;
  opacity: 0;
  transition: opacity .25s ease, transform .25s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 12px 32px rgba(26,41,53,0.30);
  max-width: 90vw; text-align: center;
}
.toast.in { opacity: 1; transform: translate(-50%, 0); }

/* UK PILLS (фильтр по 4 управляющим компаниям) */
.uk-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
  width: max-content;
  max-width: 100%;
  overflow-x: auto;
}
/* На мобилке — одна строка с горизонтальным скроллом, чтобы не «плыло» */
@media (max-width: 720px) {
  .uk-pills-wrap { position: relative; }
  .uk-pills-wrap::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 18px;
    width: 44px;
    pointer-events: none;
    background: linear-gradient(to right, transparent, var(--bg) 70%);
    border-top-right-radius: 14px;
    border-bottom-right-radius: 14px;
    opacity: 1;
    transition: opacity .15s;
    z-index: 2;
  }
  .uk-pills-wrap.at-end::after { opacity: 0; }
  .uk-pills-wrap::before {
    content: '→';
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-60%);
    z-index: 3;
    pointer-events: none;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.7;
    animation: pillsHint 1.6s ease-in-out infinite;
  }
  .uk-pills-wrap.at-end::before { display: none; }
  @keyframes pillsHint {
    0%, 100% { transform: translateY(-60%) translateX(0); opacity: 0.5; }
    50%      { transform: translateY(-60%) translateX(4px); opacity: 1; }
  }
  .uk-pills {
    flex-wrap: nowrap;
    width: 100%;
    border-radius: 14px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }
  .uk-pills::-webkit-scrollbar { display: none; }
  .uk-pill { flex-shrink: 0; scroll-snap-align: start; }
}
.uk-pill {
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.uk-pill:hover { background: var(--hover); color: var(--ink); }
.uk-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; opacity: 0.65; }
.uk-pill[aria-pressed="true"] {
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  color: #fff;
  box-shadow: 0 4px 12px rgba(41,128,185,0.32);
}
.uk-pill[aria-pressed="true"] .dot { background: #fff; opacity: 1; }
.uk-pill[data-uk="zks"] { --pill-c: var(--uk-zks); }
.uk-pill[data-uk="acc"] { --pill-c: var(--uk-acc); }
.uk-pill[data-uk] .dot { background: var(--pill-c); opacity: 1; }
.uk-pill[data-uk][aria-pressed="true"] {
  background: var(--pill-c) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(26,41,53,0.25);
}
.uk-pill[data-uk][aria-pressed="true"] .dot { background: #fff !important; }

.uk-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  color: #fff;
}
.uk-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; }
.uk-badge[data-uk="2005"]    { background: var(--uk-2005); }
.uk-badge[data-uk="zd"]      { background: var(--uk-zd); }
.uk-badge[data-uk="zds"]     { background: var(--uk-zds); color: #2a1f17; }
.uk-badge[data-uk="zds"] .dot{ background: #2a1f17; }
.uk-badge[data-uk="bastion"] { background: var(--uk-bastion); }

[data-uk-target]:not(.uk-show) { display: none; }

/* UK CARDS (4 карточки УК на главной) */
.uk-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 900px) { .uk-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .uk-cards { grid-template-columns: 1fr; } }
.uk-card {
  background: var(--paper);
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 4px solid var(--c, var(--accent));
  transition: transform .15s, box-shadow .15s;
  cursor: pointer;
}
.uk-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.uk-card-mark {
  width: 28px; height: 28px;
  background: var(--c, var(--accent));
  border-radius: 7px;
  box-shadow: 0 4px 10px color-mix(in srgb, var(--c, var(--accent)) 35%, transparent);
  position: relative;
  margin-bottom: 4px;
}
.uk-card-mark::after {
  content: '';
  position: absolute; inset: 6px;
  background: rgba(255,255,255,0.55);
  border-radius: 3px;
}
.uk-card-name { font-size: 15px; font-weight: 700; color: var(--ink); letter-spacing: -0.2px; }
.uk-card-meta { font-size: 12px; color: var(--muted); line-height: 1.45; flex: 1; }
.uk-card-arr {
  font-size: 12px; font-weight: 600; color: var(--c, var(--accent));
  margin-top: 8px;
}

/* ANIM */
@keyframes slideDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* Touch */
@media (hover: none) and (pointer: coarse) {
  .card:active, .kv:active { transform: scale(0.99); transition: transform .1s ease; }
  .btn:active { transform: scale(0.96) !important; filter: brightness(0.95); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

@media (max-width: 900px) {
  .kv { grid-template-columns: 1fr; gap: 4px; padding: 14px 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .head-right .phone-h { display: none; }
  .org-full { display: none; }
  .org-text--full { display: none; }
  .org-text--short { display: flex; }
}

/* Visually hidden — для SEO H1 без визуальных артефактов */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ═══ Tips-slot widget (index.html) ═══ */
.tips-slot {
  overflow: hidden;
  transition: height 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
.tip-card {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  margin: 0 auto 16px;
  max-width: 1180px;
  background: linear-gradient(135deg, #eaf4fb 0%, #ffffff 100%);
  border: 1px solid rgba(41, 128, 185, 0.18);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(41, 128, 185, 0.08);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1), transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.tip-card.in { opacity: 1; transform: translateY(0); }
.tip-card.out { opacity: 0; transform: translateY(-8px); }
.tip-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(41, 128, 185, 0.15);
  display: grid; place-items: center;
  font-size: 22px;
}
.tip-body { min-width: 0; }
.tip-head {
  display: flex; gap: 8px; align-items: center; margin-bottom: 4px;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em;
}
.tip-uk { padding: 2px 8px; border-radius: 8px; font-weight: 600; color: #fff; }
.tip-uk.zks { background: #2980b9; }
.tip-uk.acc { background: #d68910; }
.tip-uk.both { background: linear-gradient(90deg, #2980b9, #d68910); }
.tip-kind { color: #6b7280; font-weight: 500; }
.tip-title {
  font-size: 15px; font-weight: 600; color: #1c5a86;
  line-height: 1.3;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.tip-text {
  font-size: 13px; color: #4b5563; line-height: 1.4;
  margin-top: 2px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.tip-actions {
  display: flex; align-items: center; gap: 8px;
}
.tip-cta {
  font-size: 13px; font-weight: 600; color: #2980b9;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(41, 128, 185, 0.08);
  transition: background 150ms;
  white-space: nowrap;
}
.tip-cta:hover { background: rgba(41, 128, 185, 0.16); }
.tip-close {
  width: 32px; height: 32px;
  border: 0;
  background: transparent;
  color: #9ca3af;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  border-radius: 8px;
  transition: background 150ms, color 150ms;
}
.tip-close:hover { background: rgba(0, 0, 0, 0.06); color: #4b5563; }

@media (max-width: 720px) {
  .tips-slot {
    /* На мобильном layout не сдвигается — фиксированная высота, cross-fade */
    height: auto;
    min-height: 0;
  }
  .tip-card {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
    padding: 12px 14px;
    gap: 10px;
    margin: 0 12px 12px;
  }
  .tip-icon { width: 40px; height: 40px; font-size: 20px; }
  .tip-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
    margin-top: 4px;
  }
  .tip-title { font-size: 14px; white-space: normal; }
  .tip-text { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .tips-slot, .tip-card { transition: none !important; }
}

/* ═══ Nav in articles + news (наследует стили .header) ═══ */
.header-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; text-decoration: none; }
.brand-mark {
  width: 36px; height: 36px;
  background: url('/org-mark.svg') center/76% no-repeat, linear-gradient(135deg, var(--grad-1), var(--grad-2));
  border-radius: 10px; flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(41,128,185,0.32);
  position: relative; overflow: hidden;
}
.brand-mark::after {
  content: ''; position: absolute; top: -50%; left: -60%;
  width: 50%; height: 200%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%);
  transform: rotate(15deg); animation: logoShine 4.5s ease-in-out infinite;
}
.brand-text { display: flex; flex-direction: column; justify-content: center; min-width: 0; line-height: 1.2; }
.brand-name { font-weight: 700; font-size: 14px; color: var(--accent); letter-spacing: -0.01em; }
.brand-sub { font-size: 12px; color: var(--muted); }

.nav { display: flex; gap: 6px; align-items: center; flex-wrap: nowrap; }
.nav a {
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  border-radius: 8px;
  transition: background 150ms, color 150ms;
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav a:hover { background: var(--hover); color: var(--accent); }
.nav a.active { background: rgba(41,128,185,0.10); color: var(--accent); }

.cta-btn {
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(41,128,185,0.32);
  animation: ctaPulse 2.6s ease-in-out infinite;
  transition: transform .15s, box-shadow .15s, filter .15s;
  display: inline-flex; align-items: center;
  white-space: nowrap;
}
.cta-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(41,128,185,0.42); filter: brightness(1.05); animation-play-state: paused; }
.cta-btn:active { transform: translateY(0); }

@media (max-width: 900px) {
  .brand-sub { display: none; }
  .brand-name { font-size: 12px; }
  .brand-mark { width: 30px; height: 30px; }
  .nav a { padding: 6px 8px; font-size: 12px; }
  .cta-btn { padding: 8px 12px; font-size: 12px; }
  .header-wrap { gap: 8px; padding: 0 12px; }
}
@media (max-width: 720px) {
  .brand-name { font-size: 11.5px; }
  .brand-mark { width: 26px; height: 26px; }
  .nav { display: none; }
}
@media (max-width: 400px) {
  .brand-name { display: none; }
}
