/* ── Semantic color tokens — dark theme defaults ─────────────────────────────
   Будь-яка тема-варіант може переоверрайдити ці змінні через :root {}
   Змінні акцент-кольорів (--accent, --accent-light тощо) живуть у css_vars
   що генерується theme_css_vars() у build.gs8z1.
────────────────────────────────────────────────────────────────────────────── */
:root {
  /* фони */
  --bg-page:        #0f1117;
  --bg-surface:     #151929;
  --bg-card:        #1a1f2e;
  --bg-card-inner:  #242938;
  --bg-raised:      #2d3748;
  --bg-hover:       #1e2638;
  /* бордери */
  --border:         #1e2535;
  --border-alt:     #2d3748;
  --border-section: #374151;
  /* текст */
  --text-primary:   #e2e8f0;
  --text-muted:     #94a3b8;
  --text-body:      #cbd5e1;
  --text-sub:       #a0aec0;
  --text-faint:     #6b7280;
  --text-dim:       #4b5563;
  --text-label:     #8892a4;
  --text-value:     #c9d1e0;
  /* семантичні (callout / pros-cons) */
  --bg-tip:         #1a2e1a;
  --bg-warning:     #2d1f0e;
  --bg-info:        #1a1f2e;
  --bg-pros:        #1a2e1a;
  --bg-cons:        #2d1a1a;
}

/* ── reset ───────────────────────────────────────────────────────────────────*/
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: system-ui, sans-serif;
  background: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.7;
}

/* ── Navbar ──────────────────────────────────────────────────────────────────*/
.u0rdea {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.ge8ec {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  height: 62px; display: flex; align-items: center;
  justify-content: space-between; position: relative;
}
.i8h6vq {
  color: var(--accent-light);
  font-weight: 800; font-size: 1.15rem;
  text-decoration: none; display: flex; align-items: center; gap: 4px;
}
.nnt3 { height: 46px; width: auto; max-width: 140px; object-fit: contain; border-radius: 6px; }
.ds2h5sn { list-style: none; display: flex; column-gap: 20px; row-gap: 6px; flex-wrap: wrap; align-items: center; --msep-color: var(--text-primary); }
.ds2h5sn a {
  color: var(--text-muted); white-space: nowrap;
  text-decoration: none; font-size: 0.88rem; transition: color 0.2s;
}
.ds2h5sn a:hover { color: var(--accent-light); }

/* ── Navbar dropdown ─────────────────────────────────────────────────────────*/
.j37n9s { position: relative; }
.yx39d4o {
  display: none; position: absolute; top: calc(100% + 6px); left: 50%;
  transform: translateX(-50%);
  background: var(--bg-surface); border: 1px solid var(--border-alt);
  border-radius: 10px; padding: 8px 0; min-width: 190px;
  box-shadow: 0 8px 24px rgba(0,0,0,.45); z-index: 200;
  list-style: none;
}
/* nav_drop_shape */
.jpe0   .yx39d4o { border-radius: 0; }
.al3e     .yx39d4o { border-radius: 6px; }
.pv4k73r  .yx39d4o { border-radius: 14px; }
.yj2vbkmw     .yx39d4o { border-radius: 24px; padding: 8px; }
/* rounded items to match container shape */
.al3e .yx39d4o li:first-child a { border-top-left-radius: 4px; border-top-right-radius: 4px; }
.al3e .yx39d4o li:last-child a { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; }
.pv4k73r .yx39d4o li:first-child a { border-top-left-radius: 10px; border-top-right-radius: 10px; }
.pv4k73r .yx39d4o li:last-child a { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; }
.yj2vbkmw .yx39d4o li a { border-radius: 16px; }
/* nav_drop_sep — горизонтальні роздільники між пунктами дропдауну */
.tru3r  .yx39d4o li + li { border-top: 1px solid var(--border-alt); }
.wfsga1c .yx39d4o li + li { border-top: 1px dashed var(--border-alt); }
.yeg5d45 .yx39d4o li + li { border-top: 1px dotted var(--border-alt); }
.jsr9 .yx39d4o li + li { border-top: 3px double var(--border-alt); }
/* Invisible bridge so mouse can travel from trigger to dropdown without losing hover */
.j37n9s::after {
  content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 10px;
}
.j37n9s:hover .yx39d4o,
.j37n9s:focus-within .yx39d4o { display: block; }
.yx39d4o li a {
  display: block; padding: 8px 18px; white-space: nowrap;
  color: var(--text-muted); font-size: 0.86rem; text-decoration: none;
  transition: color .15s, background .15s;
}
.yx39d4o li a:hover {
  color: var(--accent-light); background: var(--bg-hover);
}
@media (max-width: 640px) {
  .yx39d4o {
    position: static; transform: none; box-shadow: none;
    border: none; border-radius: 0; background: transparent;
    padding: 0 0 4px 16px;
  }
  .j37n9s:hover .yx39d4o,
  .j37n9s:focus-within .yx39d4o { display: block; }
  .yx39d4o li a { padding: 8px 16px; font-size: 0.88rem; }
}

.pctj {
  display: none; background: none; border: none;
  color: var(--text-muted); font-size: 1.4rem; cursor: pointer; padding: 4px 8px; line-height: 1;
}
.espmi { display: none; }
@media (max-width: 640px) {
  .espmi {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    z-index: 899; backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
  }
  .espmi.zbpnckt { display: block; }
}
@media (max-width: 640px) {
  .pctj { display: block; }
  .ds2h5sn {
    display: none; flex-direction: column; gap: 0; align-items: stretch; flex-wrap: nowrap;
    position: absolute; top: 56px; left: 0; right: 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border); padding: 8px 0;
  }
  .ds2h5sn.zbpnckt { display: flex; }
  .ds2h5sn li a {
    display: block; padding: 11px 24px; font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
  }
  .ds2h5sn li:last-child a { border-bottom: none; }
}

/* ── Hero: спільні стилі ─────────────────────────────────────────────────────*/
.qg8i9wf8 { min-height: 480px; }
.gogmwo {
  font-size: 2.6rem; font-weight: 800; color: var(--accent-pale);
  line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.01em;
}
.msmvlyz { font-size: 1.15rem; margin-bottom: 28px; max-width: 720px; margin-left: auto; margin-right: auto; }
.gg0kp3 .msmvlyz { margin-left: 0; margin-right: 0; }
.t3xtz9 {
  background: var(--accent); color: #fff; text-decoration: none;
  border-radius: 8px; padding: 14px 32px;
  font-size: 1.05rem; font-weight: 700; display: inline-block;
  transition: opacity 0.2s, transform 0.15s;
}
.t3xtz9:hover { opacity: 0.88; }

/* ── Hero: BG layout (картинка — повноширокий фон) ───────────────────────────*/
.uwst {
  position: relative; display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center;
  background-color: var(--bg-surface);
}
.jwmqej {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 50%, var(--accent-bg) 100%);
  opacity: 0.85;
}
/* hero-content — такий самий контейнер як page-wrap (1000px) */
.uwst .my1gd9 {
  position: relative; z-index: 1;
  width: 100%; max-width: 1100px; padding: 48px 24px;
}
.uwst .gogmwo { text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
.uwst .msmvlyz { color: #e2e8f0; }

/* BG alignment — лише text-align в межах 1000px контейнера */
.uwst.msiqjyb .my1gd9 { text-align: center; }
.uwst.gg0kp3   .my1gd9 { text-align: left; }

/* hero-flat: без фону, просто текст на page bg (WP-style) */
.p2jqh1bo {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-page);
  min-height: auto; padding: 48px 0 32px;
  border-bottom: 1px solid var(--border);
}
.p2jqh1bo .my1gd9 {
  width: 100%; max-width: 1100px; padding: 24px 24px;
}
.p2jqh1bo .gogmwo { color: var(--text-primary); text-shadow: none; }
.p2jqh1bo .msmvlyz { color: var(--text-muted); }
.p2jqh1bo .t3xtz9 { margin-top: 16px; }
.p2jqh1bo, .p2jqh1bo.qg8i9wf8 { min-height: auto !important; }
.p2jqh1bo.msiqjyb .my1gd9 { text-align: center; }
.p2jqh1bo.gg0kp3   .my1gd9 { text-align: left; }
/* flat hero: byline як звичайний текст, не оверлей */
.p2jqh1bo~.igteuw{position:static!important;left:auto!important;transform:none!important;width:100%!important;max-width:var(--content-mw,1100px)!important;margin:0 auto!important;padding:0 24px 12px!important}
.p2jqh1bo~.igteuw .t4wy6a{background:transparent!important;color:var(--text-muted)!important;backdrop-filter:none!important;-webkit-backdrop-filter:none!important;padding:0!important;border-radius:0!important;font-size:.8rem}

/* bg-color: градієнтний фон замість фото */
.q56mf {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}
/* hero_anim: shimmer — ледь помітний блиск по поверхні */
.xi7we .q56mf,
.xi7we .t5vciwqi {
  position: relative; overflow: hidden;
}
.xi7we .q56mf::after,
.xi7we .t5vciwqi::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.04) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: hg-shimmer 8s ease-in-out infinite;
}
@keyframes hg-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
/* hero_anim: breathe — ледь помітне дихання opacity */
.c84ti .q56mf,
.c84ti .t5vciwqi {
  animation: hg-breathe 10s ease-in-out infinite;
}
@keyframes hg-breathe {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.92; }
}
/* hero_anim: grain — ледь помітна зернистість поверх градієнту */
.x3dwet7n .q56mf,
.x3dwet7n .t5vciwqi,
.x3dwet7n .uwst .jwmqej {
  position: relative; overflow: hidden;
}
.x3dwet7n .q56mf::after,
.x3dwet7n .t5vciwqi::after,
.x3dwet7n .uwst .jwmqej::after {
  content: ''; position: absolute; inset: -50%; width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035; pointer-events: none;
  animation: hg-grain 0.5s steps(1) infinite;
}
@keyframes hg-grain {
  0%, 100% { transform: translate(0, 0); }
  25%      { transform: translate(-5%, -5%); }
  50%      { transform: translate(5%, 0); }
  75%      { transform: translate(0, 5%); }
}
/* hero_anim: drift — повільне зміщення розмитого blob */
.u4wid .q56mf,
.u4wid .t5vciwqi {
  position: relative; overflow: hidden;
}
.u4wid .q56mf::after,
.u4wid .t5vciwqi::after {
  content: ''; position: absolute;
  width: 60%; height: 120%; top: -10%; left: -10%;
  background: radial-gradient(ellipse, var(--accent-light) 0%, transparent 70%);
  opacity: 0.15; filter: blur(80px); pointer-events: none;
  animation: hg-drift 20s ease-in-out infinite;
}
@keyframes hg-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30%, 10%) scale(1.1); }
  66%      { transform: translate(10%, -10%) scale(0.95); }
}
.u4wid .uwst .jwmqej {
  position: relative; overflow: hidden;
}
.u4wid .uwst .jwmqej::after {
  content: ''; position: absolute;
  width: 60%; height: 120%; top: -10%; left: -10%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 70%);
  filter: blur(80px); pointer-events: none;
  animation: hg-drift 20s ease-in-out infinite;
}
/* hero_anim: fade-in — градієнт з'являється при завантаженні */
.xejtj .q56mf,
.xejtj .t5vciwqi,
.xejtj .uwst .jwmqej {
  animation: hg-fadein 1.2s ease-out both;
}
@keyframes hg-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* hero-bg з фото — overlay анімації */
.xi7we .uwst .jwmqej {
  position: relative; overflow: hidden;
}
.xi7we .uwst .jwmqej::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.03) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: hg-shimmer 8s ease-in-out infinite;
}
.c84ti .uwst .jwmqej {
  animation: hg-breathe 10s ease-in-out infinite;
}

.q56mf .jwmqej {
  background: none;
}
.q56mf .gogmwo { color: #fff; }
.q56mf .msmvlyz { color: rgba(255,255,255,0.85); }

/* ── Hero anim: split layouts ─────────────────────────────────────────────── */
.xi7we .ovlqv { position: relative; overflow: hidden; }
.xi7we .ovlqv::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.05) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: hg-shimmer 6s ease-in-out infinite;
}
.c84ti .ovlqv {
  animation: hg-breathe 7s ease-in-out infinite;
}
.x3dwet7n .ovlqv { position: relative; overflow: hidden; }
.x3dwet7n .ovlqv::after {
  content: ''; position: absolute; inset: -50%; width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035; pointer-events: none;
  animation: hg-grain 0.5s steps(1) infinite;
}
.u4wid .ovlqv { position: relative; overflow: hidden; }
.u4wid .ovlqv::after {
  content: ''; position: absolute;
  width: 60%; height: 120%; top: -10%; left: -10%;
  background: radial-gradient(ellipse, var(--accent-light) 0%, transparent 70%);
  opacity: 0.12; filter: blur(80px); pointer-events: none;
  animation: hg-drift 20s ease-in-out infinite;
}
.xejtj .ovlqv {
  animation: hg-fadein 1.2s ease-out both;
}


/* ── Hero: Split layout (текст + картинка поряд) ─────────────────────────────*/
.ovlqv {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-areas: "text media";
  min-height: 480px;
  background: linear-gradient(110deg, var(--accent-bg) 0%, var(--bg-card) 55%, var(--bg-surface) 100%);
}
.cuxro {
  grid-area: text;
  display: flex; flex-direction: column; justify-content: center;
  /* padding-left вирівняний з page-wrap (max-width 1000px) */
  padding: 60px 48px 60px clamp(24px, calc(50vw - 476px), 96px);
}
.bc5wv {
  grid-area: media;
  position: relative; overflow: hidden; min-height: 320px;
}
/* img абсолютний щоб заповнити комірку grid повністю */
.fode {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.t5vciwqi {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
}
.ovlqv .gogmwo { text-shadow: none; color: var(--accent-pale); }
.ovlqv .msmvlyz { color: var(--text-muted); }

/* Split alignment — всередині text-колонки */
.ovlqv.msiqjyb .cuxro { align-items: center; text-align: center; }
.ovlqv.gg0kp3   .cuxro { align-items: flex-start; text-align: left; }

/* split-overlay: картинка на всю половину з gradient overlay, текст може заходити */
.ztqsyd5 .bc5wv { position: relative; }
.ztqsyd5 .bc5wv::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--accent-bg) 0%, transparent 60%);
  pointer-events: none;
}
.ztqsyd5.oelmt .bc5wv::after {
  background: linear-gradient(270deg, var(--accent-bg) 0%, transparent 60%);
}


/* split-rounded: картинка з rounded corners + тінь, не на весь блок */
.yf1emv .bc5wv {
  display: flex; align-items: center; justify-content: center;
  padding: 32px 32px 32px 0; overflow: visible;
}
.yf1emv .fode {
  position: static; width: 100%; height: auto; aspect-ratio: 4/3;
  object-fit: cover; border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.yf1emv .t5vciwqi {
  position: static; width: 100%; aspect-ratio: 4/3; border-radius: 16px;
}
.yf1emv.oelmt .bc5wv { padding: 32px 0 32px 32px; }

/* split-inset: картинка з відступами і тінню, не на весь блок */
.cpklc1j0 .bc5wv {
  display: flex; align-items: center; justify-content: center;
  padding: 40px 48px 40px 16px;
  overflow: visible;
}
.cpklc1j0 .fode {
  position: static;
  width: 100%; height: auto; aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}
.cpklc1j0 .t5vciwqi {
  position: static;
  width: 100%; aspect-ratio: 4/3;
  border-radius: 16px;
}

/* ── Split reversed: зображення ліворуч, текст праворуч ─────────────────────*/
.oelmt { grid-template-areas: "media text"; }

/* флiп padding: тепер права сторона виходить до краю сторінки */
.oelmt .cuxro {
  padding: 60px clamp(24px, calc(50vw - 476px), 96px) 60px 48px;
}

/* inset-left: інвертувати padding */
.cpklc1j0.oelmt .bc5wv { padding: 40px 16px 40px 48px; }

/* ── Hero: split-cards ────────────────────────────────────────────────────── */
.f21n7er4 .e5u3jz {
  display: flex !important; flex-direction: column; justify-content: center;
  gap: 0; padding: 24px 20px;
  background: rgba(0,0,0,0.78); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-left: 1px solid rgba(255,255,255,0.08);
}
.hyif {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 22px 20px; text-decoration: none; color: #fff;
  background: rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.hyif:last-child { border-bottom: none; }
.hyif:hover { background: rgba(255,255,255,0.14); }
.cx1pz { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1; }
.as3hn { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.ryj3tmda { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.g9mrm52 { font-weight: 700; font-size: 0.95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.s5vs { font-size: 0.82rem; color: rgba(255,255,255,0.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ks8fg { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.l1uy4xu { font-weight: 800; font-size: 1.3rem; color: var(--accent-pale); }
.l1uy4xu small { font-size: 0.7rem; font-weight: 500; opacity: 0.6; }
.mih9rx { font-size: 0.8rem; padding: 6px 14px; white-space: nowrap; }

/* ── Hero: cards-top ─────────────────────────────────────────────────────── */
.z1foz { padding-bottom: 0; }
.z1foz .my1gd9 { padding-bottom: 24px; }
.vokjbeac {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  padding: 0 24px 32px; max-width: 960px; margin: 0 auto; width: 100%;
}
.niga {
  display: flex; align-items: center; gap: 12px;
  background: rgba(0,0,0,0.45); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 12px 16px;
  flex: 1 1 260px; max-width: 320px;
  text-decoration: none; color: #fff; transition: transform 0.2s, box-shadow 0.2s;
}
.niga:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.4); }
.k0afc97s { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.z7ozy9jf { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.i7gl { font-weight: 700; font-size: 0.9rem; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.v178c { font-size: 0.8rem; color: rgba(255,255,255,0.75); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.srmnc { font-weight: 800; font-size: 1.3rem; color: var(--accent-pale); flex-shrink: 0; }
.srmnc small { font-size: 0.7rem; font-weight: 500; opacity: 0.6; }

/* ── Hero: offer-cards ──────────────────────────────────────────────────── */
.ppdeylxf .huxyo36 {
  display: flex !important; flex-direction: column; justify-content: center;
  gap: 6px; padding: 28px 24px;
}
.lh2d4g {
  display: flex; align-items: center; gap: 10px; width: 100%;
  background: var(--bg-card); border: 1px solid var(--border-alt);
  overflow: hidden;
  border-radius: 10px; padding: 10px 16px;
  text-decoration: none; color: var(--text-primary);
  transition: background .15s;
}
.lh2d4g:hover { background: var(--bg-hover); }

/* ── Hero: floating-cards ────────────────────────────────────────────────── */
.njekp .bc5wv { display: flex !important; align-items: center; justify-content: center; position: relative; }
.wwyfz8dg {
  display: flex; flex-direction: column; gap: 12px;
  padding: 32px 24px; width: 100%; max-width: 420px;
}
.mrilkah {
  display: flex; align-items: center; gap: 14px; width: 100%;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 20px 18px;
  transform: translateX(calc(var(--fi) * 12px));
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}
.mrilkah:hover { transform: translateX(calc(var(--fi) * 12px)) translateY(-2px); }
.elnve { width: 46px; height: 46px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.rnw5xl { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.jlcswc { font-weight: 700; font-size: 0.85rem; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.qy00vp59 { font-size: 0.78rem; color: rgba(255,255,255,0.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.giyx { font-weight: 800; font-size: 1.2rem; color: var(--accent-pale); flex-shrink: 0; }

/* ── Hero: numbered-top ──────────────────────────────────────────────────── */
.ea787k .my1gd9 { max-width: 960px; }
.r7i9 {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin: 28px 0 32px;
}
.k12v {
  display: flex; align-items: center; gap: 10px;
  background: rgba(0,0,0,0.45); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px; padding: 10px 16px;
  text-decoration: none; color: #fff; transition: transform 0.2s, background 0.2s;
}
.k12v:hover { transform: translateY(-2px); background: rgba(0,0,0,0.55); }
.u4n82e3x { font-weight: 900; font-size: 1.5rem; color: var(--accent-pale); flex-shrink: 0; line-height: 1; }
.aux4zg { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.kt2n98kd { font-weight: 700; font-size: 0.85rem; white-space: nowrap; }
.ef0yl { font-size: 0.78rem; color: rgba(255,255,255,0.7); white-space: nowrap; }


@media (max-width: 700px) {
  .ovlqv { grid-template-columns: 1fr !important; grid-template-areas: "text" !important; }
  .ovlqv .bc5wv { display: none !important; }
  .njekp .bc5wv { display: none !important; }
  .f21n7er4 .e5u3jz { display: none !important; }
  .ppdeylxf .huxyo36 { display: none !important; }
  .cuxro  { padding: 36px 24px; }
  .ovlqv~.igteuw,.oelmt~.igteuw{max-width:100%;left:0;right:0;transform:none;padding:0 24px}
  /* cap hero height variants on mobile */
  .qg8i9wf8, .ovlqv { min-height: 320px !important; }
  /* reduce oversized headings on mobile */
  .gogmwo { font-size: clamp(1.7rem, 5.5vw, 2.4rem) !important; }
  /* cards-top: hide on mobile */
  .vokjbeac { display: none !important; }
  /* numbered: stack */
  .r7i9 { flex-direction: column; align-items: center; }
  .k12v { width: 100%; max-width: 340px; }
}

/* ── Image wrap + style variants ─────────────────────────────────────────────*/
/* img-wrap: обгортка для section-banner, transition для всіх ефектів */
.pzc14a2m { position: relative; overflow: hidden; margin: 16px 0; line-height: 0; }
.po0nv4w { width: 100%; height: 300px; object-fit: cover; display: block; }

/* plain — без ефектів */

/* rounded */
.bpfpyhc .pzc14a2m        { border-radius: 16px; }
.bpfpyhc .po0nv4w  { border-radius: 16px; }

/* shadow */
.b0y3r7p .pzc14a2m         { box-shadow: 0 4px 14px rgba(0,0,0,0.18); border-radius: 8px; }
.b0y3r7p .po0nv4w   { border-radius: 8px; }


/* ── Page wrap (hero post-content + TOC) ────────────────────────────────────*/
.xbka0j { max-width: 1100px; margin: 0 auto; padding: 40px 24px 32px; }

/* ── Section: повноширокий блок, вміст обмежений section-inner ──────────────*/
.zqbvbr { width: 100%; padding: 32px 0; position: relative; }
.q5rmvmt { max-width: 1100px; margin: 0 auto; padding: 24px 24px; position: relative; z-index: 1; }

/* ── section-bg variants ─────────────────────────────────────────────────────*/
/* even: чергування bg-page / bg-surface */
.kfj7pf .zqbvbr:nth-child(even) { background: var(--bg-surface); }
.kfj7pf .zqbvbr:nth-child(odd)  { background: var(--bg-page); }
/* stripe: чергування bg-page / bg-card (сильніший контраст) */
.nhp33tf9 .zqbvbr:nth-child(even) { background: var(--bg-card); }
.nhp33tf9 .zqbvbr:nth-child(odd)  { background: var(--bg-page); }

/* ── контраст коли секція має кольоровий фон ─────────────────────────────────*/
/* section-inner отримує чіткіший фон щоб виділятись від фону секції */
.kfj7pf .zqbvbr:nth-child(odd)  .q5rmvmt { background: var(--bg-card); border-radius: 6px; }
.kfj7pf .zqbvbr:nth-child(even) .q5rmvmt { background: var(--bg-raised); border-radius: 6px; }
.nhp33tf9 .zqbvbr:nth-child(odd)  .q5rmvmt { background: var(--bg-card); border-radius: 6px; }
.nhp33tf9 .zqbvbr:nth-child(even) .q5rmvmt { background: var(--bg-raised); border-radius: 6px; }

/* підсекції теж підіймаємо вище (щоб виділялись від section-inner) */
.kfj7pf .zqbvbr:nth-child(even) .h7cy .k08t5q,
.nhp33tf9 .zqbvbr:nth-child(even) .h7cy .k08t5q { background: var(--bg-card); box-shadow: 0 1px 4px rgba(0,0,0,0.2); }
.kfj7pf .zqbvbr:nth-child(odd) .h7cy .k08t5q,
.nhp33tf9 .zqbvbr:nth-child(odd) .h7cy .k08t5q { background: var(--bg-card-inner); }

.kfj7pf .zqbvbr:nth-child(even) .hjn6jj .k08t5q:nth-child(odd),
.nhp33tf9 .zqbvbr:nth-child(even) .hjn6jj .k08t5q:nth-child(odd)  { background: var(--bg-card); }
.kfj7pf .zqbvbr:nth-child(even) .hjn6jj .k08t5q:nth-child(even),
.nhp33tf9 .zqbvbr:nth-child(even) .hjn6jj .k08t5q:nth-child(even) { background: var(--bg-card-inner); }

/* ── Headings: base ──────────────────────────────────────────────────────────*/
h1.q61r6f2 { font-size: 2.2rem; font-weight: 800; color: var(--text-primary); margin-bottom: 16px; }
h2.q61r6f2 {
  font-size: 1.6rem; font-weight: 700; color: var(--accent-light);
  margin: 0 0 16px;
  /* декорація — лише через .ave7f* клас на body */
}
h3.rkmu8k1x { font-size: 1.2rem; font-weight: 700; color: var(--accent-pale); margin: 0 0 10px; }

/* ── Heading style variants (клас на <body>) ─────────────────────────────────*/

/* bar: ліва кольорова смуга */
.dpze7 h2.q61r6f2 {
  border-left: 4px solid var(--accent); padding-left: 14px;
}
/* underline: підкреслення знизу */
.rwfv6 h2.q61r6f2 {
  border-bottom: 2px solid var(--accent); padding-bottom: 10px;
  display: inline-block;
}
/* overline: тонка лінія зверху */
.vtat h2.q61r6f2 {
  border-top: 3px solid var(--accent); padding-top: 12px;
  color: var(--text-primary);
}
/* dot: маленька кольорова крапка перед заголовком */
.yqkr1j5 h2.q61r6f2::before {
  content: ""; display: inline-block; width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  margin-right: 12px; vertical-align: middle;
}
/* plain: просто жирний текст, без декорацій */
.a2m7 h2.q61r6f2 {
  color: var(--text-primary); font-size: 1.7rem;
}
/* slash: коса риска акцентного кольору перед текстом */
.akqtw7 h2.q61r6f2::before {
  content: "/"; color: var(--accent); font-weight: 800;
  margin-right: 10px;
}
/* caps: великі літери, розріджений трекінг, тонка нижня лінія */
.mpd0work h2.q61r6f2 {
  text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 1.1rem; color: var(--accent);
  border-bottom: 1px solid var(--border-alt); padding-bottom: 8px;
}

/* ── Reviews heading above lead (review_visible=hide variant) ───────────────*/
.lfuqsuw { font-size: 1.35rem; font-weight: 700; color: var(--accent-light); margin-bottom: 12px; }

/* ── Lead & intro/outro ──────────────────────────────────────────────────────*/
.ywhd0 { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 16px; }
@media (max-width: 640px) { .ywhd0 { display: none; } }
.k27w68c {
  background: linear-gradient(90deg, var(--grad-start), var(--grad-end));
  border-radius: 8px; padding: 12px 20px; margin-bottom: 24px;
  font-size: 1rem; font-weight: 600; color: #ede9fe;
}
.pmwlgi { margin-right: 8px; color: var(--c-arrow); }
/* intro/outro — blended with body text (classes kept for easy re-styling) */
.yinaoc9h { font-size: inherit; color: var(--text-body); margin: 8px 0 16px; }
.s8iyrxa { font-size: inherit; color: var(--text-body); margin: 16px 0 0; }

/* ── TOC ─────────────────────────────────────────────────────────────────────*/
.k11hrewf {
  background: var(--bg-surface);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 20px 24px; margin: 28px 0;
}
.qsfqbkjw { font-weight: 700; color: var(--accent-light); margin-bottom: 12px; font-size: 1rem; }
.gbfgwzob { padding-left: 20px; }
.gbfgwzob li { margin-bottom: 6px; }
.gbfgwzob a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; }
.gbfgwzob a:hover { color: var(--accent-light); }

/* ── toc_style variants ──────────────────────────────────────────────────────*/

/* notitle: список з нумерацією, без заголовка */
.kp6aae .qsfqbkjw { display: none; }

/* plain: без нумерації, тире перед кожним пунктом */
.c3n1x .qsfqbkjw { display: none; }
.c3n1x .gbfgwzob { padding-left: 0; list-style: none; }
.c3n1x .gbfgwzob li::before { content: "—"; margin-right: 9px; color: var(--accent); opacity: 0.7; }
.c3n1x .gbfgwzob a { font-size: 0.92rem; }

/* pills: горизонтальні pill-бейджі, без заголовка, без рамки контейнера */
.o1iqfkq9 .k11hrewf { background: none; border: none; box-shadow: none !important; padding: 12px 0; }
.o1iqfkq9 .qsfqbkjw { display: none; }
.o1iqfkq9 .gbfgwzob { padding-left: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.o1iqfkq9 .gbfgwzob li { margin-bottom: 0; }
.o1iqfkq9 .gbfgwzob a {
  display: inline-block;
  background: var(--accent-bg); color: var(--accent-light);
  border: 1px solid var(--accent-pale); border-radius: 999px;
  padding: 5px 16px; font-size: 0.88rem; font-weight: 500;
}
.o1iqfkq9 .gbfgwzob a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* cards: сітка карток з номером-кружечком, з заголовком */
.a2soqc .k11hrewf { padding: 20px 20px 16px; }
.a2soqc .gbfgwzob {
  padding-left: 0; list-style: none;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px;
  counter-reset: toc-c;
}
.a2soqc .gbfgwzob li { counter-increment: toc-c; margin-bottom: 0; }
.a2soqc .gbfgwzob a {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-card); border-radius: 8px;
  padding: 9px 12px; border: 1px solid var(--border);
  font-size: 0.88rem; color: var(--text-muted);
}
.a2soqc .gbfgwzob a::before {
  content: counter(toc-c);
  flex-shrink: 0; width: 22px; height: 22px;
  background: var(--accent); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700;
}
.a2soqc .gbfgwzob a:hover { color: var(--accent-light); border-color: var(--accent); }

/* inline: пункти в рядок через кому, без рамки, без заголовка */
.u1r1f6v .k11hrewf { background: none; border: none; box-shadow: none !important; padding: 8px 0; margin: 16px 0; }
.u1r1f6v .qsfqbkjw { display: none; }
.u1r1f6v .gbfgwzob { padding-left: 0; list-style: none; display: flex; flex-wrap: wrap; }
.u1r1f6v .gbfgwzob li { margin-bottom: 0; }
.u1r1f6v .gbfgwzob li::after { content: ","; color: var(--text-muted); margin-right: 10px; }
.u1r1f6v .gbfgwzob li:last-child::after { content: ""; margin-right: 0; }
.u1r1f6v .gbfgwzob a { font-size: 0.9rem; }

/* ── Subsection: base ────────────────────────────────────────────────────────*/
.k08t5q { padding: 14px 20px 18px; margin-bottom: 12px; border-radius: 10px; }

/* subs-cards (default) */
.h7cy .k08t5q { background: var(--bg-card); }

/* subs-even: через рядок різний фон */
.hjn6jj .k08t5q:nth-child(odd)  { background: var(--bg-card); }
.hjn6jj .k08t5q:nth-child(even) { background: var(--bg-raised); }

/* subs-lines: горизонтальні роздільники */
.q9y8u .k08t5q {
  background: none; border-radius: 0;
  border-bottom: 1px solid var(--border);
  padding: 22px 4px;
}
.q9y8u .k08t5q:last-child { border-bottom: none; }
.q9y8u h3.rkmu8k1x { border-bottom: 2px solid var(--accent); padding-bottom: 6px; display: inline-block; }

/* subs-bordered: акцентна смуга зліва */
.wvmehnm .k08t5q {
  background: none; border-radius: 0;
  border-left: 3px solid var(--accent);
  padding: 10px 0 10px 18px;
}
.wvmehnm .k08t5q + .k08t5q { margin-top: 4px; }

/* subs-flat: мінімальний, без фону */
.u6vn3fh8 .k08t5q { background: none; border-radius: 0; padding: 12px 0; }
.u6vn3fh8 .k08t5q + .k08t5q { border-top: 1px solid var(--border-section); }
.vn859s { color: var(--text-body); margin-bottom: 12px; font-size: inherit; }
.rcb0nij { color: var(--text-body); margin-top: 12px; font-size: inherit; }

/* ── intro_style variants (disabled — all blend with body text now) ──────────
   To re-enable visual distinction, uncomment the blocks below.

.zis2g .yinaoc9h,
.zis2g .s8iyrxa,
.zis2g .vn859s,
.zis2g .rcb0nij { font-style: normal; color: var(--text-body); }

.dobb .yinaoc9h,
.dobb .s8iyrxa {
  font-style: italic;
  border-left: 3px solid var(--border-section); padding-left: 12px;
}
.dobb .vn859s,
.dobb .rcb0nij {
  font-style: italic;
  border-left: 2px solid var(--border); padding-left: 10px;
}

.kxnyt .yinaoc9h,
.kxnyt .s8iyrxa,
.kxnyt .vn859s,
.kxnyt .rcb0nij {
  font-style: normal;
  background: var(--bg-raised); border-radius: 6px;
  padding: 10px 14px; color: var(--text-sub);
}
────────────────────────────────────────────────────────────────────────────── */

/* ── Elements ────────────────────────────────────────────────────────────────*/
.dp37y3cp { color: var(--text-body); margin-bottom: 10px; }
.kj2duy3e, .exr144lq { padding-left: 22px; color: var(--text-body); margin: 10px 0; }
.kj2duy3e li, .exr144lq li { margin-bottom: 6px; }
.exr144lq li { list-style: decimal; }

/* ── list_style variants ─────────────────────────────────────────────────────*/
/* Використовуємо ::marker замість ::before — не ламає float-контекст */

.l0euw9     .kj2duy3e { list-style-type: "● "; }
.xinetwg  .kj2duy3e { list-style-type: "■ "; }
.zd6dte7 .kj2duy3e { list-style-type: "◆ "; }
.mvsd6    .kj2duy3e { list-style-type: "★ "; }

.l0euw9     .coy2 { list-style-type: "● "; }
.xinetwg  .coy2 { list-style-type: "■ "; }
.zd6dte7 .coy2 { list-style-type: "◆ "; }
.mvsd6    .coy2 { list-style-type: "★ "; }

.l0euw9    .kj2duy3e li::marker, .l0euw9    .coy2 li::marker,
.xinetwg .kj2duy3e li::marker, .xinetwg .coy2 li::marker,
.zd6dte7 .kj2duy3e li::marker, .zd6dte7 .coy2 li::marker,
.mvsd6   .kj2duy3e li::marker, .mvsd6   .coy2 li::marker {
  color: var(--accent); font-size: 0.8em;
}

/* ol: CSS-лічильник з кольоровим маркером */
.l0euw9 .exr144lq,
.xinetwg .exr144lq,
.zd6dte7 .exr144lq,
.mvsd6 .exr144lq {
  list-style: none;
  counter-reset: el-step;
  padding-left: 2.2em;
}
.l0euw9 .exr144lq li,
.xinetwg .exr144lq li,
.zd6dte7 .exr144lq li,
.mvsd6 .exr144lq li {
  list-style: none;
  counter-increment: el-step;
  position: relative;
}
.l0euw9 .exr144lq li::before,
.xinetwg .exr144lq li::before,
.zd6dte7 .exr144lq li::before,
.mvsd6 .exr144lq li::before {
  content: counter(el-step);
  position: absolute; left: -2.2em; top: 0.05em;
  width: 1.45em; height: 1.45em;
  background: var(--accent); color: #fff;
  font-size: 0.72em; font-weight: 700;
  line-height: 1.45em; text-align: center;
}
/* форма маркера ol — залежно від варіанту */
.l0euw9     .exr144lq li::before { border-radius: 50%; }
.xinetwg  .exr144lq li::before { border-radius: 3px; }
.zd6dte7 .exr144lq li::before { border-radius: 3px; }
.mvsd6    .exr144lq li::before { border-radius: 50%; }

.ohsbzd74 { overflow-x: auto; margin: 12px 0; background: var(--accent-bg); border-radius: 10px; border: 1px solid var(--border-alt); }
.wfpi .ohsbzd74,
.szeu .ohsbzd74 { background: transparent; border: none; border-radius: 0; }
.z3te { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.z3te th {
  background: var(--bg-raised); color: var(--accent-light);
  padding: 8px 12px; text-align: left; font-weight: 600;
}
.z3te td { padding: 8px 12px; border-bottom: 1px solid var(--border-alt); color: var(--text-body); }
.z3te tr:hover td { background: var(--bg-hover); }

/* ── table_style variants ────────────────────────────────────────────────────*/

/* stripe: зебра */
.x6yd .z3te tbody tr:nth-child(even) td { background: var(--bg-surface); }

/* grid: рамки з усіх боків */
.yikt .z3te { border: 1px solid var(--border-alt); }
.yikt .z3te th,
.yikt .z3te td { border: 1px solid var(--border-alt); }

/* minimal: тільки лінія під th, рядки без рамок */
.brj00s .z3te th {
  background: transparent; color: var(--accent);
  border-bottom: 2px solid var(--accent); padding-bottom: 6px;
}
.brj00s .z3te td { border-bottom: none; }
.brj00s .z3te tr:not(:last-child) td { border-bottom: 1px solid var(--border-alt); }

/* accent: насичений заголовок */
.glrqsm .z3te th {
  background: var(--accent); color: #fff; letter-spacing: 0.03em;
}

/* card: таблиця як картка */
.iwb45kq .ohsbzd74 {
  overflow: hidden;
}
.iwb45kq .z3te th { border-bottom: 1px solid var(--border-alt); }
.iwb45kq .z3te tr:last-child td { border-bottom: none; }

.i8qfq8t { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin: 12px 0; }
.jxamdnbm { background: var(--bg-card-inner); border-radius: 8px; overflow: hidden; }
.fyeuquyp { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.bqql { background: var(--accent-bg-light); color: var(--accent); font-weight: 700; padding: 10px 14px; font-size: 0.9rem; }
.k0fcx9 { padding: 10px 14px 4px; font-size: 0.88rem; color: var(--text-sub); }
.coy2 { padding: 4px 14px 12px 28px; font-size: 0.82rem; color: var(--text-muted); }
.coy2 li { margin-bottom: 3px; }
.w4io5 {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  margin: 16px auto 4px; padding: 0;
  font-size: 1.5rem; color: var(--accent);
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  border-radius: 50%;
}
.w4io5::before { font-family: "Font Awesome 6 Free"; font-weight: 900; }
/* icon chars */
[data-i="f0eb"]::before{content:"\f0eb"} [data-i="f3ed"]::before{content:"\f3ed"}
[data-i="f0e7"]::before{content:"\f0e7"} [data-i="f3a5"]::before{content:"\f3a5"}
[data-i="f005"]::before{content:"\f005"} [data-i="f1b2"]::before{content:"\f1b2"}
[data-i="f201"]::before{content:"\f201"} [data-i="f023"]::before{content:"\f023"}
[data-i="f140"]::before{content:"\f140"} [data-i="f0ac"]::before{content:"\f0ac"}
[data-i="f058"]::before{content:"\f058"} [data-i="f1fe"]::before{content:"\f1fe"}
[data-i="f059"]::before{content:"\f059"} [data-i="f084"]::before{content:"\f084"}
[data-i="f1e0"]::before{content:"\f1e0"} [data-i="f6e2"]::before{content:"\f6e2"}
[data-i="f5da"]::before{content:"\f5da"} [data-i="f024"]::before{content:"\f024"}
[data-i="f0a3"]::before{content:"\f0a3"} [data-i="f6ff"]::before{content:"\f6ff"}
/* colors */
[data-c="a"]{color:var(--accent);background:color-mix(in srgb,var(--accent) 15%,transparent)}
[data-c="b"]{color:var(--accent-light);background:color-mix(in srgb,var(--accent-light) 15%,transparent)}
[data-c="c"]{color:var(--c-pros);background:color-mix(in srgb,var(--c-pros) 15%,transparent)}
[data-c="d"]{color:var(--c-stars);background:color-mix(in srgb,var(--c-stars) 15%,transparent)}
[data-c="e"]{color:var(--accent-pale);background:color-mix(in srgb,var(--accent-pale) 15%,transparent)}
[data-c="f"]{color:var(--c-warn-border);background:color-mix(in srgb,var(--c-warn-border) 15%,transparent)}
[data-c="g"]{color:var(--c-tip-border);background:color-mix(in srgb,var(--c-tip-border) 15%,transparent)}
[data-c="h"]{color:var(--c-cons);background:color-mix(in srgb,var(--c-cons) 15%,transparent)}
/* shapes */
[data-s="r"]{border-radius:50%}
[data-s="s"]{border-radius:10px}
[data-s="d"]{border-radius:50% 8px}
[data-s="h"]{border-radius:50%;clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%)}
[data-s="b"]{border-radius:60% 40% 50% 50%/50% 60% 40% 50%}
.sus7vl39 .w4io5 { margin-left: auto; margin-right: auto; }
.sus7vl39 .bqql { background: transparent; text-align: center; }

/* ── card_img: розміщення та форма зображень в картках ──────────────────────*/

/* top-round: картинка зверху, rounded corners, трохи менша */
.gzqgxct .fyeuquyp {
  margin: 10px 10px 0; width: calc(100% - 20px);
  aspect-ratio: 16/9; border-radius: 10px;
}

/* top-circle: маленький кружечок по центру зверху */
.d7l8jo .fyeuquyp {
  width: 72px; height: 72px; aspect-ratio: 1/1;
  border-radius: 50%; object-fit: cover;
  margin: 16px auto 4px; display: block;
  border: 3px solid var(--accent-bg);
}

/* side: картинка зліва, лише в першому рядку; body/list — повна ширина */
.zwp1027l .jxamdnbm { display: grid; grid-template-columns: auto 1fr; }
.zwp1027l .fyeuquyp {
  grid-column: 1; grid-row: 1;
  width: 88px; height: 88px; aspect-ratio: 1/1; object-fit: cover; align-self: center;
}
.zwp1027l .bqql { grid-column: 2; }
.zwp1027l .k0fcx9,
.zwp1027l .coy2 { grid-column: 1 / -1; }

/* side-circle: кружечок зліва лише в першому рядку; body/list — повна ширина */
.iwly .jxamdnbm { display: grid; grid-template-columns: auto 1fr; align-items: start; }
.iwly .fyeuquyp {
  grid-column: 1; grid-row: 1;
  width: 60px; height: 60px; aspect-ratio: 1/1;
  border-radius: 50%; object-fit: cover;
  margin: 14px 12px; border: 2px solid var(--accent-pale);
}
.iwly .bqql { grid-column: 2; }
.iwly .k0fcx9,
.iwly .coy2 { grid-column: 1 / -1; }


/* ── card_style variants ─────────────────────────────────────────────────────*/

/* accent: тонка ліва акцентна смужка, чистий заголовок */
.zh9ceq7 .jxamdnbm { border: 1px solid var(--border); border-left: 2px solid var(--accent); }
.zh9ceq7 .bqql { background: none; color: var(--accent-light); font-weight: 700; }

/* glass: напівпрозорий фон з blur, без рамок */
.jg5p .jxamdnbm { background: rgba(255,255,255,0.04); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.08); }
.jg5p .bqql { background: none; color: var(--accent-light); font-weight: 700; }

/* minimal: без рамок і фону, separator між картками */
.oizm3vfe .jxamdnbm { background: none; border: none; border-radius: 0; border-bottom: 1px solid var(--border); }
.oizm3vfe .jxamdnbm:last-child { border-bottom: none; }
.oizm3vfe .bqql { background: none; color: var(--accent-light); font-weight: 700; }

/* line-top: 3px акцентна смуга зверху, заголовок без заливки */
.gxoe .jxamdnbm { border: 1px solid var(--border); border-top: 3px solid var(--accent); }
.gxoe .bqql { background: none; color: var(--accent-light); font-weight: 700; padding-top: 13px; }

/* numbered: CSS-лічильник у вигляді кружечка перед заголовком */
.vwq5 .i8qfq8t { counter-reset: card-n; }
.vwq5 .jxamdnbm  { counter-increment: card-n; }
.vwq5 .bqql { display: flex; align-items: center; gap: 10px; }
.vwq5 .bqql::before {
  content: counter(card-n);
  flex-shrink: 0; min-width: 26px; height: 26px;
  background: var(--accent); color: #fff; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.76rem; font-weight: 700;
}

/* flat: мінімальний, нейтральний заголовок, тонка рамка */
.zpte97f .jxamdnbm { background: var(--bg-surface); border: 1px solid var(--border); }
.zpte97f .bqql { background: none; color: var(--text-main); font-weight: 700; border-bottom: 1px solid var(--border); }

.uv0oe0p { display: flex; gap: 14px; align-items: flex-start; border-radius: 8px; padding: 14px 18px; margin: 10px 0; }
.qfvbh5  { background: var(--bg-tip);     border-left: 4px solid var(--c-tip-border); }
.c9qfwuco { background: var(--bg-warning); border-left: 4px solid var(--c-warn-border); }
.bwqp { background: var(--bg-info);    border-left: 4px solid #60a5fa; }
.nmbq0vmq { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.uv0oe0p strong { color: var(--text-primary); font-size: 0.95rem; }
.uv0oe0p p { color: var(--text-muted); font-size: 0.88rem; margin-top: 4px; }

.k4sucao { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 10px 0; }
.xci8, .w15uxo { border-radius: 8px; padding: 14px; }
.xci8 { background: var(--bg-pros); }
.w15uxo { background: var(--bg-cons); }
.dco01d { font-weight: 700; font-size: 0.85rem; margin-bottom: 8px; }
.xci8 .dco01d { color: var(--c-pros-label); }
.w15uxo .dco01d { color: #f87171; }
.xci8 ul li { color: var(--c-pros); list-style: none; padding-left: 4px; margin-bottom: 5px; font-size: 0.88rem; }
.w15uxo ul li { color: var(--c-cons); list-style: none; padding-left: 4px; margin-bottom: 5px; font-size: 0.88rem; }

.po0nv4w { width: 100%; height: 300px; object-fit: cover; border-radius: 10px; display: block; }

/* ── CTA button ──────────────────────────────────────────────────────────────*/
.uxclf {
  background: var(--accent); color: #fff; border: none;
  border-radius: 6px; padding: 8px 16px; font-size: 0.88rem; font-weight: 600;
  cursor: pointer; text-decoration: none; display: inline-block; white-space: nowrap;
}
.uxclf:hover { opacity: 0.85; }

/* ── btn_style variants ──────────────────────────────────────────────────────*/
/* solid = default (accent bg, white text) — no override needed */

/* outline / ghost — only .uxclf; .t3xtz9 NEVER changes (always solid accent) */
.kuod9 .uxclf  { background: transparent; border: 2px solid var(--accent); color: var(--accent-light); }
.kuod9 .uxclf:hover  { background: var(--accent); color: #fff; opacity: 1; }
.tzrj6 .uxclf  { background: var(--accent-bg); border: 1px solid var(--accent); color: var(--accent-light); }
.tzrj6 .uxclf:hover  { background: var(--accent); color: #fff; opacity: 1; }

/* pill = solid but very rounded */
.ixbs4bf .t3xtz9 { border-radius: 50px; }
.ixbs4bf .uxclf  { border-radius: 50px; }
/* btn_pad */
.rpu8hv6 .t3xtz9 { padding-left: 22px; padding-right: 22px; }
.rpu8hv6 .uxclf  { padding-left: 12px; padding-right: 12px; }
.ay215 .t3xtz9 { padding-left: 44px; padding-right: 44px; }
.ay215 .uxclf  { padding-left: 24px; padding-right: 24px; }
.k10m5cz .t3xtz9 { padding-left: 56px; padding-right: 56px; }
.k10m5cz .uxclf  { padding-left: 32px; padding-right: 32px; }

/* ── btn_icon: SVG-іконки на .t3xtz9 і .uxclf (mask на currentColor) ──────*/
/* ::after — усі іконки після тексту (праворуч) */
.q2j3u   .t3xtz9::after, .q2j3u   .uxclf::after,
.vf2whoz3 .t3xtz9::after, .vf2whoz3 .uxclf::after,
.cy2t15    .t3xtz9::after, .cy2t15    .uxclf::after,
.otm0ui    .t3xtz9::after, .otm0ui    .uxclf::after,
.thri    .t3xtz9::after, .thri    .uxclf::after,
.w457jc     .t3xtz9::after, .w457jc     .uxclf::after,
.kwnyh    .t3xtz9::after, .kwnyh    .uxclf::after,
.s62l8ajf   .t3xtz9::after, .s62l8ajf   .uxclf::after {
  content: ""; display: inline-block;
  width: 1em; height: 1em; margin-left: 6px; vertical-align: -0.15em;
  background: currentColor;
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
}

/* SVG masks — кожна іконка */
.q2j3u .t3xtz9::after, .q2j3u .uxclf::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h16M13 5l7 7-7 7'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h16M13 5l7 7-7 7'/%3E%3C/svg%3E");
}
.vf2whoz3 .t3xtz9::after, .vf2whoz3 .uxclf::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E");
}
.cy2t15 .t3xtz9::after, .cy2t15 .uxclf::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 4l14 8-14 8z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 4l14 8-14 8z' fill='black'/%3E%3C/svg%3E");
}
.otm0ui .t3xtz9::after, .otm0ui .uxclf::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z' fill='black'/%3E%3C/svg%3E");
}
.thri .t3xtz9::after, .thri .uxclf::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.1 6.3 6.9.7-5 4.8 1.5 6.9L12 17.3l-6.5 3.4 1.5-6.9L2 9l6.9-.7z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.1 6.3 6.9.7-5 4.8 1.5 6.9L12 17.3l-6.5 3.4 1.5-6.9L2 9l6.9-.7z' fill='black'/%3E%3C/svg%3E");
}
.w457jc .t3xtz9::after, .w457jc .uxclf::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 3h12l4 6L12 22 2 9z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 3h12l4 6L12 22 2 9z' fill='black'/%3E%3C/svg%3E");
}
.kwnyh .t3xtz9::after, .kwnyh .uxclf::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c0 0-7 6-7 12a7 7 0 0 0 14 0c0-3-1.5-5-3.5-6.5 0 3-2 5-3.5 5C14 9 12 2 12 2z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c0 0-7 6-7 12a7 7 0 0 0 14 0c0-3-1.5-5-3.5-6.5 0 3-2 5-3.5 5C14 9 12 2 12 2z' fill='black'/%3E%3C/svg%3E");
}
.s62l8ajf .t3xtz9::after, .s62l8ajf .uxclf::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 19h20v2H2zM2 17L5.5 7l4.5 5L12 3l2 9 4.5-5L22 17z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 19h20v2H2zM2 17L5.5 7l4.5 5L12 3l2 9 4.5-5L22 17z' fill='black'/%3E%3C/svg%3E");
}

/* ── cta_icon: незалежні іконки для navbar-cta-btn і sticky-cta-btn ────────*/
.socm   .xzmjeq::after, .socm   .qs456nyx::after,
.i1km .xzmjeq::after, .i1km .qs456nyx::after,
.psy7m8a    .xzmjeq::after, .psy7m8a    .qs456nyx::after,
.medm7vy    .xzmjeq::after, .medm7vy    .qs456nyx::after,
.zcaxof    .xzmjeq::after, .zcaxof    .qs456nyx::after,
.lktoogw     .xzmjeq::after, .lktoogw     .qs456nyx::after,
.eh3l    .xzmjeq::after, .eh3l    .qs456nyx::after,
.tagra0   .xzmjeq::after, .tagra0   .qs456nyx::after {
  content: "" !important; display: inline-block !important;
  width: 1em; height: 1em; margin-left: 6px; vertical-align: -0.15em;
  background: currentColor !important;
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
}
.socm .xzmjeq::after, .socm .qs456nyx::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h16M13 5l7 7-7 7'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h16M13 5l7 7-7 7'/%3E%3C/svg%3E");
}
.i1km .xzmjeq::after, .i1km .qs456nyx::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E");
}
.psy7m8a .xzmjeq::after, .psy7m8a .qs456nyx::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 4l14 8-14 8z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 4l14 8-14 8z' fill='black'/%3E%3C/svg%3E");
}
.medm7vy .xzmjeq::after, .medm7vy .qs456nyx::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z' fill='black'/%3E%3C/svg%3E");
}
.zcaxof .xzmjeq::after, .zcaxof .qs456nyx::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.1 6.3 6.9.7-5 4.8 1.5 6.9L12 17.3l-6.5 3.4 1.5-6.9L2 9l6.9-.7z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.1 6.3 6.9.7-5 4.8 1.5 6.9L12 17.3l-6.5 3.4 1.5-6.9L2 9l6.9-.7z' fill='black'/%3E%3C/svg%3E");
}
.lktoogw .xzmjeq::after, .lktoogw .qs456nyx::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 3h12l4 6L12 22 2 9z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 3h12l4 6L12 22 2 9z' fill='black'/%3E%3C/svg%3E");
}
.eh3l .xzmjeq::after, .eh3l .qs456nyx::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c0 0-7 6-7 12a7 7 0 0 0 14 0c0-3-1.5-5-3.5-6.5 0 3-2 5-3.5 5C14 9 12 2 12 2z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c0 0-7 6-7 12a7 7 0 0 0 14 0c0-3-1.5-5-3.5-6.5 0 3-2 5-3.5 5C14 9 12 2 12 2z' fill='black'/%3E%3C/svg%3E");
}
.tagra0 .xzmjeq::after, .tagra0 .qs456nyx::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 19h20v2H2zM2 17L5.5 7l4.5 5L12 3l2 9 4.5-5L22 17z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 19h20v2H2zM2 17L5.5 7l4.5 5L12 3l2 9 4.5-5L22 17z' fill='black'/%3E%3C/svg%3E");
}

/* ── Casino showcase ─────────────────────────────────────────────────────────*/
.j2zafgnr { display: flex; flex-direction: column; gap: 6px; margin: 28px 0; }


.dn9tv4qm {
  background: var(--bg-card);
  border: 1px solid var(--border-alt);
  border-radius: 10px; padding: 10px 16px;
  display: flex; flex-direction: row; align-items: center; gap: 14px;
  transition: background .15s;
}
/* microdata wrapper — invisible to layout */
.dn9tv4qm > [itemprop="item"] { display: contents; }
.dn9tv4qm:hover { background: var(--bg-hover); }
.w47wegbl {
  background: var(--accent-bg);
  border-radius: 8px; padding: 4px 8px;
  display: flex; align-items: center; justify-content: center;
  min-width: 56px; height: 42px; flex-shrink: 1;
}
/* cs_logo_bg variants — override default accent-bg */
.ifchb5e .w47wegbl { background: #1a1a1a; }
.wf05bf .w47wegbl { background: rgba(128,128,128,.12); }
.tgokq6c9 .w47wegbl { background: var(--bg-raised); }
.vgptzu .w47wegbl { background: transparent; padding: 0; }
.czyd0x { max-height: 34px; max-width: 80px; object-fit: contain; }
.og08 { font-weight: 700; font-size: .85rem; color: var(--accent-light); }
.oou5msv5 { display: flex; align-items: center; gap: 12px; flex-shrink: 1; min-width: 0; }
.owe23 { font-weight: 700; font-size: .88rem; color: var(--text-primary); flex-shrink: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cx1w { color: var(--accent); font-size: .8rem; letter-spacing: 1px; flex-shrink: 1; min-width: 0; }
.vk090efy { display: flex; flex-direction: column; align-items: center; font-size: .78rem; flex: 1 1 0; min-width: 0; }
.yefgz { color: var(--text-label); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.qiwn0o { color: var(--text-value); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.o12b9 { margin-left: auto; flex-shrink: 0; white-space: nowrap; }
.o12b9.uxclf { padding-left: 16px !important; padding-right: 16px !important; }
/* планшет / мобіль: 2-колонкова сітка вертикальних карток */
@media (max-width: 720px) {
  .j2zafgnr { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .j2zafgnr .dn9tv4qm { flex-direction: column; align-items: center; padding: 16px 12px; border-radius: 14px; gap: 8px; }
  .j2zafgnr .oou5msv5 { flex-direction: column; align-items: center; gap: 4px; width: 100%; }
  .j2zafgnr .w47wegbl { width: 100%; min-width: unset; height: 52px; }
  .j2zafgnr .czyd0x { max-height: 40px; max-width: 110px; }
  .j2zafgnr .owe23 { min-width: unset; text-align: center; white-space: normal; }
  .j2zafgnr .vk090efy { flex-direction: row; justify-content: space-between; width: 100%; border-top: 1px solid var(--border); padding-top: 5px; }
  .j2zafgnr .o12b9 { width: 100%; text-align: center; margin-left: 0; }
  .shm4x .dn9tv4qm { row-gap: 8px !important; gap: 8px !important; }
}

/* ── Casino reviews ──────────────────────────────────────────────────────────*/
.vdd35 {
  background: var(--bg-card);
  border-radius: 12px; margin: 24px 0; overflow: hidden;
  border: 1px solid var(--border-alt);
}
.wk3gilga {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 24px; background: var(--bg-surface);
}
.xilsr {
  width: 90px; flex-shrink: 0;
  background: var(--bg-page);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  padding: 8px; min-height: 60px;
}
.xilsr img { max-width: 80px; max-height: 50px; object-fit: contain; }
.cltfp4 { color: var(--accent); font-weight: 700; font-size: 0.85rem; text-align: center; }
.lm51f { flex: 1; }
.lm51f h3 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 4px; }
.ciymc { color: var(--c-stars); font-size: 1.1rem; }
.n9ll5l2 { margin-bottom: 8px; }
.w3pthl { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 0.83rem; color: var(--text-muted); }
.ep8xjand::before   { content: "★ "; color: var(--accent); }
.jqh03a5n::before { content: "↓ "; color: var(--accent); }
.voyqaz::before { content: "✦ "; color: var(--accent); }
.tq3cd { flex-shrink: 0; }
.aaf3 img.e7sr { width: 100%; max-height: 240px; object-fit: cover; display: block; }
.wfpi { padding: 20px 24px; }
.ey2ijvi { color: var(--text-muted); margin-bottom: 16px; }
.b69r1 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 14px; }
.fpz2, .npt5fk { list-style: none; font-size: 0.9rem; }
.fpz2 li { color: var(--c-pros); margin-bottom: 4px; }
.npt5fk li { color: var(--c-cons); margin-bottom: 4px; }
/* CSS маркери для pros/cons замість символів в HTML */
.fpz2 li::before { content: "✓"; margin-right: 5px; }
.npt5fk li::before { content: "✗"; margin-right: 5px; }
.xe101 .fpz2 li::before { content: "→"; }
.xe101 .npt5fk li::before { content: "–"; }
.mxolg4w  .fpz2 li::before { content: "★"; }
.mxolg4w  .npt5fk li::before { content: "✕"; }
.l43w5    .fpz2 li::before { content: "◆"; }
.l43w5    .npt5fk li::before { content: "▲"; }
.ebzum4  .fpz2 li::before { content: "▶"; }
.ebzum4  .npt5fk li::before { content: "■"; }
.r2ek { margin-bottom: 8px; font-size: 0.85rem; color: var(--text-muted); }
.d4robdfc { background: var(--accent-bg); color: var(--accent-light); border-radius: 4px; padding: 2px 8px; margin: 2px 2px 2px 0; display: inline-block; }
.xxcw { background: var(--bg-pros); color: var(--c-tag-pay); }

/* ── expert note — використовує callout CSS, власних стилів немає ────────────*/
/* review-expert-note — callout прикріплений до низу картки огляду */
.ig4373 { margin: 0; border-radius: 0 0 8px 8px; border-left-width: 0 !important; border-top: 1px solid var(--border-alt); }
.ndcy1ghy .ig4373 { border-top-width: 4px !important; border-radius: 0 0 8px 8px; }
.btt5mr .ig4373 { border: none; border-top: 1.5px solid; }


/* ── review_cols: 2-колонки на десктопі ─────────────────────────────────────*/
@media (min-width: 860px) {
  .rx2ff .xl09 {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start;
  }
  .rx2ff .vdd35 { margin: 0; }
}

/* ── review_style variants ───────────────────────────────────────────────────*/
/* default = current, без override */

/* accent: акцентний фон хедера картки */
.ofds .wk3gilga { background: var(--accent-bg); border-bottom: 2px solid var(--accent); }
.ofds .lm51f h3 { color: var(--accent-light); }
.ofds .xilsr { background: var(--bg-page); border: 1px solid var(--border); }

/* top: жирна акцентна смуга зверху картки */
.k2i4k2a4 .vdd35 { border-top: 4px solid var(--accent); }
.k2i4k2a4 .wk3gilga { background: var(--bg-card); }

/* flat: мінімалістичний, без радіусів */
.s4bcxpp9 .vdd35 { border-radius: 0; border: none; border-bottom: 2px solid var(--border-alt); box-shadow: none; margin: 0 0 20px; }
.s4bcxpp9 .wk3gilga { background: transparent; border-bottom: 1px solid var(--border); padding: 14px 16px; }
.s4bcxpp9 .wfpi { padding: 14px 16px; }
.s4bcxpp9 .xilsr { border-radius: 4px; }
.s4bcxpp9 .ig4373 { border-radius: 0; }

/* split: лого в окремій кольоровій панелі зліва */
.cvs36tt .wk3gilga { padding: 0; gap: 0; overflow: hidden; }
.cvs36tt .xilsr { background: var(--accent-bg); border-radius: 0; width: 100px; min-height: 84px; padding: 20px 14px; align-self: stretch; border: none; }
.cvs36tt .lm51f { padding: 16px 20px; }
.cvs36tt .tq3cd { padding: 16px 20px; align-self: center; }

/* ── Brand card (single brand, two-column hero) ─────────────────────────────*/
/* ═══════════════════════════════════════════════════════════════════════════
   BRAND CARD — shared tokens
   ═══════════════════════════════════════════════════════════════════════════ */
.szeu {
  background: var(--bg-card);
  border: 1px solid var(--border-alt);
  border-radius: 12px;
  margin: 28px 0;
  overflow: hidden;
}
.ar9r2do {
  width: 100px; height: 68px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border-radius: 10px; padding: 8px;
  flex-shrink: 0;
}
.ar9r2do img { max-width: 100%; max-height: 100%; object-fit: contain; }
.ptlt { font-size: 1.15rem; font-weight: 700; color: var(--text); }
.rx1a77x { display: flex; align-items: center; gap: 8px; }
.rx1a77x .ciymc { font-size: .95rem; }
.rx1a77x strong { font-size: 1.1rem; color: var(--text); }
.m0eb2 { border-radius: 8px; overflow: hidden; }
.m0eb2 img { width: 100%; display: block; border-radius: 8px; }
.ocklpb { text-align: center; flex-shrink: 0; }
.z45i2c { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; }
.f1xf { font-size: .82rem; color: var(--text-muted); font-weight: 500; }
.bgvkh29 { font-size: .88rem; font-weight: 600; color: var(--text); }
.ipvg4 .bgvkh29 { font-size: 1.02rem; font-weight: 700; color: var(--accent); }
.szeu .k4sucao { gap: 10px; }
.szeu .xci8, .szeu .w15uxo { padding: 12px; }
.szeu .xci8 ul, .szeu .w15uxo ul { margin: 4px 0 0; padding-left: 18px; }
.szeu .xci8 li, .szeu .w15uxo li { font-size: .85rem; margin-bottom: 3px; }
.o09up24e { font-size: .8rem; color: var(--text-muted); margin-top: 10px; }
.o09up24e strong { color: var(--text-secondary); }
.o09up24e .d4robdfc { margin: 2px 4px 2px 0; }

/* ── LAYOUT 1: split — sidebar | data column ─────────────────────────────── */
.ddf9k3y { display: grid; grid-template-columns: 260px 1fr; gap: 0; }
.zcpndh {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center; padding: 24px; border-right: 1px solid var(--border-alt);
}
.zcpndh .m0eb2 { width: 100%; margin-top: 4px; }
.zcpndh .ocklpb { width: 100%; margin-top: auto; }
.mqq5 { display: flex; flex-direction: column; gap: 14px; padding: 20px; }
.ddf9k3y .ohhwc1 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--border-alt); border-radius: 8px; overflow: hidden;
}
.ddf9k3y .z45i2c { border-bottom: 1px solid var(--border-alt); }
.ddf9k3y .z45i2c:nth-child(odd) { border-right: 1px solid var(--border-alt); }
.ddf9k3y .ipvg4 { grid-column: 1 / -1; background: var(--accent-bg); border-right: none; }
@media (max-width: 720px) {
  .ddf9k3y { grid-template-columns: 1fr; }
  .zcpndh { flex-direction: row; flex-wrap: wrap; gap: 10px; border-right: none; border-bottom: 1px solid var(--border-alt); padding: 16px; }
  .zcpndh .ar9r2do { width: 72px; height: 50px; }
  .zcpndh .m0eb2 { max-width: 180px; }
  .zcpndh .ocklpb { width: auto; }
}

/* ── LAYOUT 2: hero — full-width screenshot header ────────────────────────── */
.mg5xhoht {
  position: relative; max-height: 240px; overflow: hidden;
}
.mg5xhoht > img { width: 100%; display: block; object-fit: cover; min-height: 160px; }
.p07xngmr {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; align-items: center; gap: 16px;
  padding: 16px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  color: #fff;
}
.p07xngmr .ar9r2do { background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border-radius: 10px; }
.p07xngmr .ptlt { color: #fff; font-size: 1.25rem; }
.p07xngmr .rx1a77x strong { color: #fff; }
.p07xngmr .rx1a77x .ciymc { filter: brightness(1.2); }
.p07xngmr .ocklpb { margin-left: auto; white-space: nowrap; }
.crjf6 { flex: 1; }
.vom9eqs {
  display: flex; align-items: center; gap: 16px; padding: 20px 24px;
  border-bottom: 1px solid var(--border-alt);
}
.vom9eqs .ocklpb { margin-left: auto; }
.m6rul14r { display: flex; flex-direction: column; gap: 16px; padding: 20px 24px; }
.fbhsed .ohhwc1 {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--border-alt); border-radius: 8px; overflow: hidden;
}
.fbhsed .z45i2c {
  flex: 1 1 auto; min-width: 120px;
  border-right: 1px solid var(--border-alt); border-bottom: 1px solid var(--border-alt);
}
.fbhsed .ipvg4 { flex-basis: 100%; background: var(--accent-bg); border-right: none; }
@media (max-width: 720px) {
  .p07xngmr { flex-wrap: wrap; gap: 10px; padding: 12px 16px; }
  .m6rul14r { padding: 16px; }
  .fbhsed .z45i2c { min-width: 50%; }
}

/* ── LAYOUT 3: magazine — editorial 3-column ──────────────────────────────── */
.k0h7stc {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-alt);
}
.pk23 { flex: 1; }
.pk23 .ptlt { font-size: 1.3rem; }
.yuh248 {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
}
.asqay { padding: 16px; border-right: 1px solid var(--border-alt); }
.asqay .m0eb2 { height: 100%; }
.asqay .m0eb2 img { height: 100%; object-fit: cover; }
.okk3je { padding: 0; border-right: 1px solid var(--border-alt); }
.okk3je .ohhwc1 { display: flex; flex-direction: column; }
.okk3je .z45i2c { border-bottom: 1px solid var(--border-alt); }
.okk3je .ipvg4 { background: var(--accent-bg); }
.xp2lq { padding: 16px; }
.xp2lq .k4sucao { grid-template-columns: 1fr; }
.l7j64ut9 {
  padding: 12px 24px; border-top: 1px solid var(--border-alt);
  display: flex; flex-wrap: wrap; gap: 12px;
}
@media (max-width: 860px) {
  .yuh248 { grid-template-columns: 1fr; }
  .asqay { border-right: none; border-bottom: 1px solid var(--border-alt); }
  .okk3je { border-right: none; border-bottom: 1px solid var(--border-alt); }
}
@media (max-width: 540px) {
  .k0h7stc { flex-wrap: wrap; padding: 16px; }
}

/* ── LAYOUT 4: compact — header bar → screenshot → data ──────────────────── */
.fbpxg {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 16px 20px; border-bottom: 1px solid var(--border-alt);
}
.xwvqs1 {
  display: flex; align-items: center; gap: 12px; flex: 1;
}
.xwvqs1 .ar9r2do { width: 72px; height: 50px; }
.xwvqs1 .ptlt { font-size: 1rem; white-space: nowrap; }
.xq72ut6 { border-bottom: 1px solid var(--border-alt); max-height: 280px; overflow: hidden; }
.xq72ut6 img { width: 100%; display: block; object-fit: cover; }
.zud3mc {
  display: flex; flex-direction: column; gap: 10px; padding: 14px 16px; overflow: hidden;
}
.aovso4t .ohhwc1 { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.aovso4t .z45i2c { padding: 0; flex: 0 0 auto; gap: 6px; }
.aovso4t .ipvg4 { display: none; }
.aovso4t .k4sucao { gap: 8px; }
.aovso4t .xci8, .aovso4t .w15uxo { padding: 8px; }
@media (max-width: 480px) {
  .fbpxg { flex-direction: column; align-items: stretch; }
}

/* ── LAYOUT 5: dossier — bar → screenshot → two-col data ─────────────────── */
.zec6v {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 24px; border-bottom: 1px solid var(--border-alt);
  background: var(--surface);
}
.rb07b { flex: 1; }
.drts9fm7 { max-height: 220px; overflow: hidden; border-bottom: 1px solid var(--border-alt); }
.drts9fm7 img { width: 100%; display: block; object-fit: cover; }
.hfmcsy8 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.qviqddo { padding: 16px 20px; border-right: 1px solid var(--border-alt); display: flex; flex-direction: column; gap: 14px; }
.qviqddo .ohhwc1 { display: flex; flex-direction: column; border: 1px solid var(--border-alt); border-radius: 8px; overflow: hidden; }
.qviqddo .z45i2c { border-bottom: 1px solid var(--border-alt); }
.qviqddo .z45i2c:last-child { border-bottom: none; }
.qviqddo .ipvg4 { background: var(--accent-bg); }
.ujssmw4 { padding: 16px 20px; }
@media (max-width: 720px) {
  .hfmcsy8 { grid-template-columns: 1fr; }
  .qviqddo { border-right: none; border-bottom: 1px solid var(--border-alt); }
  .zec6v { flex-wrap: wrap; gap: 10px; padding: 14px 16px; }
}

/* ── LAYOUT 6: scorecard — big score centerpiece ──────────────────────────── */
.qp6rhedb {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: center;
  border-bottom: 1px solid var(--border-alt);
}
.rj4lnfb {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px; text-align: center;
}
.ztxops {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 130px; height: 130px; border-radius: 50%;
  background: var(--accent-bg); border: 3px solid var(--accent);
  position: relative;
}
.t3ca { font-size: 1.8rem; font-weight: 800; color: var(--accent); line-height: 1; }
.t3ca .wpd6q4 { font-size: .9rem; font-weight: 500; color: var(--text-muted); }
.ztxops .ciymc { font-size: .75rem; margin-top: 2px; }
.ccyl { padding: 12px; display: flex; align-items: center; flex: 1; }
.ccyl .m0eb2 { width: 100%; }
.s4031 {
  padding: 0; border-bottom: 1px solid var(--border-alt);
}
.qdmwu67 .ohhwc1 {
  display: flex; flex-wrap: wrap;
}
.qdmwu67 .z45i2c {
  flex: 1 1 auto; min-width: 100px;
  border-right: 1px solid var(--border-alt); border-bottom: 1px solid var(--border-alt);
  flex-direction: column; align-items: center; gap: 2px; padding: 12px 8px; text-align: center;
}
.qdmwu67 .z45i2c:last-child { border-right: none; }
.qdmwu67 .f1xf { font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; }
.qdmwu67 .ipvg4 { background: var(--accent-bg); }
.hs6alj { padding: 16px 20px; display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 720px) {
  .qp6rhedb { grid-template-columns: 1fr; }
  .ztxops { width: 100px; height: 100px; margin: 16px auto; }
  .t3ca { font-size: 1.4rem; }
  .ccyl { justify-content: center; }
  .qdmwu67 .z45i2c { min-width: 50%; }
}

/* ── LAYOUT 7: stack — vertical full-width flow ──────────────────────────── */
.gl5lwd {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-alt);
}
.wuynek { max-height: 240px; overflow: hidden; border-bottom: 1px solid var(--border-alt); }
.wuynek img { width: 100%; display: block; object-fit: cover; }
.zomqikfb { padding: 16px 24px; border-bottom: 1px solid var(--border-alt); }
.xoq6 .ohhwc1 {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.xoq6 .z45i2c {
  background: var(--surface); border: 1px solid var(--border-alt);
  border-radius: 20px; padding: 6px 14px; gap: 8px;
}
.xoq6 .ipvg4 {
  background: var(--accent-bg); border-color: var(--accent-pale);
}
.xoq6 .k4sucao { margin: 0 24px; padding-top: 16px; }
.xoq6 .o09up24e { padding: 0 24px; }
.gda83fhw { padding: 16px 24px; border-top: 1px solid var(--border-alt); text-align: center; }
.gda83fhw .ocklpb { display: inline-block; }
@media (max-width: 540px) {
  .gl5lwd { flex-wrap: wrap; padding: 14px 16px; }
  .zomqikfb { padding: 12px 16px; }
  .xoq6 .k4sucao { margin: 0 16px; }
  .xoq6 .o09up24e { padding: 0 16px; }
  .gda83fhw { padding: 12px 16px; }
}


/* ── casino_style variants ───────────────────────────────────────────────────*/

/* grid: showcase в 2-col grid, review компактніший */
.bwvk0h .j2zafgnr {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 12px;
}
.bwvk0h .j2zafgnr .dn9tv4qm {
  flex-direction: column; align-items: center; padding: 16px 12px; border-radius: 14px; gap: 8px;
}
.bwvk0h .j2zafgnr .oou5msv5 { flex-direction: column; align-items: center; gap: 4px; width: 100%; }
.bwvk0h .j2zafgnr .w47wegbl { width: 100%; min-width: unset; height: 52px; }
.bwvk0h .j2zafgnr .owe23 { min-width: unset; text-align: center; white-space: normal; }
.bwvk0h .j2zafgnr .vk090efy {
  flex-direction: row; justify-content: space-between;
  width: 100%; border-top: 1px solid var(--border); padding-top: 5px;
}
.bwvk0h .j2zafgnr .o12b9 { width: 100%; text-align: center; margin-left: 0; }
.bwvk0h .wk3gilga { gap: 14px; }

/* ranked: accent-pill значення + uppercase лейбли (нумерація — через cs_rank) */
.zqrb .yefgz {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted);
}
.zqrb .qiwn0o {
  color: var(--accent); font-weight: 700;
  background: var(--accent-bg); border-radius: 100px;
  padding: 1px 9px; font-size: 0.8rem;
}
.zqrb .cx1w { color: var(--accent); }
.zqrb .wk3gilga { background: var(--accent-bg); }
.zqrb .ep8xjand, .zqrb .jqh03a5n, .zqrb .voyqaz {
  background: var(--bg-card); border-radius: 100px; padding: 1px 10px;
  border: 1px solid var(--border);
}

/* pill: label стекований над value, значення як rounded accent-badge */
.jq6bfvb .vk090efy { flex-direction: column; align-items: flex-start; gap: 2px; padding-top: 6px; }
.jq6bfvb .yefgz {
  font-size: 0.67rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--text-muted); line-height: 1;
}
.jq6bfvb .qiwn0o {
  font-weight: 700; font-size: 0.85rem;
  color: var(--accent); background: var(--accent-bg);
  border-radius: 6px; padding: 2px 10px; display: inline-block;
}
.jq6bfvb .cx1w { color: var(--accent); }
.jq6bfvb .wk3gilga { border-bottom: 2px solid var(--accent-bg); }
.jq6bfvb .ep8xjand, .jq6bfvb .jqh03a5n, .jq6bfvb .voyqaz {
  background: var(--accent-bg); color: var(--accent); border-radius: 100px;
  padding: 2px 10px; font-weight: 600; border: none;
}

/* accent: акцентна смуга зверху на showcase-картках, кольоровий заголовок review */
.kdim7xid .dn9tv4qm { border-top: 3px solid var(--accent); }
/* casino-accent logo bg тепер через cs_logo_bg варіант */
.kdim7xid .vdd35 { overflow: hidden; }
.kdim7xid .wk3gilga { background: var(--accent-bg); }

/* compact: менші відступи всюди */
.nv66 .dn9tv4qm { padding: 8px 14px; gap: 12px; }
.nv66 .w47wegbl { height: 32px; min-width: 52px; }
.nv66 .czyd0x { max-height: 24px; }
.nv66 .owe23 { font-size: 0.82rem; }
.nv66 .wk3gilga { padding: 14px 18px; gap: 14px; }
.nv66 .wfpi { padding: 14px 18px; }
.nv66 .xilsr { width: 70px; }
.nv66 .lm51f h3 { font-size: 1.05rem; }

/* stripe: смугасті рядки */
.tgljga .j2zafgnr { gap: 0; }
.tgljga .dn9tv4qm {
  border-radius: 0; border-left: none; border-right: none;
  border-top: none; border-bottom: 1px solid var(--border);
}
.tgljga .dn9tv4qm:last-child { border-bottom: none; }
.tgljga .dn9tv4qm:nth-child(odd) { background: var(--accent-bg); }
.tgljga .dn9tv4qm:nth-child(odd):hover { background: var(--bg-hover); }

/* bordered: таблиця з усіма рамками */
.shm4x .j2zafgnr {
  gap: 0; border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.shm4x .dn9tv4qm {
  border-radius: 0; border: none;
  border-bottom: 1px solid var(--border); row-gap: 0; column-gap: 12px;
}
.shm4x .dn9tv4qm:last-child { border-bottom: none; }
/* вертикальні межі між колонками */
.shm4x .cx1w,
.shm4x .fufl0,
.shm4x .gnsxj7 { border-left: 1px solid var(--border); padding-left: 10px; }
.shm4x .owe23 { padding: 0 10px; }

/* ── casino-named: назва під лого (column) ────────────────────────────────*/
.y3faswsg .oou5msv5 { flex-direction: column; align-items: center; gap: 4px; min-width: 110px; flex-shrink: 0; }
.y3faswsg .owe23 { text-align: center; white-space: normal; font-size: .82rem; line-height: 1.2; }
.y3faswsg .w47wegbl { min-width: 80px; height: 52px; }
.y3faswsg .czyd0x { max-height: 42px; max-width: 100px; }

/* ── casino-named-top: назва над лого ─────────────────────────────────────*/
.yiq3v .oou5msv5 { flex-direction: column-reverse; align-items: center; gap: 4px; min-width: 110px; flex-shrink: 0; }
.yiq3v .owe23 { text-align: center; white-space: normal; font-size: .82rem; line-height: 1.2; }
.yiq3v .w47wegbl { min-width: 80px; height: 52px; }
.yiq3v .czyd0x { max-height: 42px; max-width: 100px; }

/* ── casino-wide: високі горизонтальні картки з великим лого ───────────────*/
.xjdrmh .j2zafgnr { gap: 12px; }
.xjdrmh .dn9tv4qm {
  padding: 18px 24px; gap: 20px; border-radius: 12px;
  min-height: 80px;
}
.xjdrmh .w47wegbl {
  min-width: 90px; height: 64px; padding: 6px 12px; border-radius: 10px;
}
.xjdrmh .czyd0x { max-height: 52px; max-width: 120px; }
.xjdrmh .owe23 { font-size: 1rem; }
.xjdrmh .vk090efy { font-size: .85rem; }
.xjdrmh .qiwn0o { font-size: .9rem; }
.xjdrmh .o12b9.uxclf { padding: 10px 24px !important; font-size: .9rem; }

/* ── casino-jumbo: дуже великі картки, лого + інтерфейс скриншот ──────────*/
.qqmgf .j2zafgnr { gap: 16px; }
.qqmgf .dn9tv4qm {
  padding: 24px 28px; gap: 24px; border-radius: 14px;
  min-height: 100px; border-width: 2px;
}
.qqmgf .w47wegbl {
  min-width: 110px; height: 80px; padding: 8px 14px; border-radius: 12px;
  background: var(--bg-raised);
}
.qqmgf .czyd0x { max-height: 64px; max-width: 140px; }
.qqmgf .owe23 { font-size: 1.1rem; font-weight: 800; }
.qqmgf .cx1w { font-size: .95rem; letter-spacing: 2px; }
.qqmgf .vk090efy { font-size: .9rem; }
.qqmgf .qiwn0o { font-size: .95rem; font-weight: 700; }
.qqmgf .yefgz { font-size: .75rem; text-transform: uppercase; letter-spacing: .04em; }
.qqmgf .o12b9.uxclf { padding: 12px 32px !important; font-size: .95rem; font-weight: 700; }

/* ── fullrow: мобіль — 1 картка в ряд, ширша ─────────────────────────────*/
@media (max-width: 720px) {
  .jno4xs .j2zafgnr {
    grid-template-columns: 1fr;
  }
}

/* ── cs_cols: feature — бонус-колонка виділена як головна ──────────────────*/
.o9nj23c .fufl0 { flex: 1.8; }
.o9nj23c .fufl0 .qiwn0o {
  font-size: 0.88rem; font-weight: 700; color: var(--accent);
}
.o9nj23c .fufl0 .yefgz { font-weight: 700; color: var(--text-primary); }
.o9nj23c .ljn25b9b,
.o9nj23c .amos,
.o9nj23c .t0r8 { flex: 0.75; opacity: 0.65; }

/* ── cs_rating: вигляд рейтингу в showcase ──────────────────────────────────*/
/* show = default (accent color, базові стилі) */
.z91chj { display: none; }
.suay60 .cx1w { display: none; }
.s8s21 .cx1w { font-size: 1rem; letter-spacing: 2px; }
.lu10nz .cx1w {
  background: var(--accent-bg); border-radius: 100px;
  padding: 1px 10px; font-size: 0.75rem;
  color: var(--accent); font-weight: 700; letter-spacing: .5px;
}
/* score: цифровий рейтинг замість зірок — спільна база */
.ohxuttbi .cx1w,
.x2kb .cx1w,
.n7oz .cx1w { display: none; }
.ohxuttbi .z91chj,
.x2kb .z91chj,
.n7oz .z91chj { display: inline-flex; align-items: baseline; gap: 1px; line-height: 1; }

/* score: велике число без /10 */
.ohxuttbi .z91chj { font-size: 1.4rem; font-weight: 900; color: var(--accent); }
.ohxuttbi .z91chj small { display: none; }

/* score-pill: number/10 в pill, однаковий розмір */
.x2kb .z91chj {
  font-size: 0.85rem; font-weight: 800; color: var(--accent);
  background: var(--accent-bg); border-radius: 100px;
  padding: 2px 10px; gap: 0;
}
.x2kb .z91chj small { font-size: 1em; font-weight: 600; color: var(--accent); opacity: 0.65; }

/* score-box: ціле число в суцільному блоці */
.n7oz .z91chj {
  font-size: 1rem; font-weight: 900; color: var(--bg-page);
  background: var(--accent); border-radius: 6px;
  padding: 3px 9px; gap: 0;
}
.n7oz .z91chj small { display: none; }

/* score в оглядах — ховаємо зірки */
.ohxuttbi .n9ll5l2 .ciymc,
.x2kb .n9ll5l2 .ciymc,
.n7oz .n9ll5l2 .ciymc { display: none; }

/* score: тільки велике число, /10 приховано */
.ohxuttbi .n9ll5l2 strong { font-size: 1.6rem; font-weight: 900; color: var(--accent); }
.ohxuttbi .wpd6q4 { display: none; }

/* score-pill: число/10 рівного розміру в pill */
.x2kb .n9ll5l2 strong {
  font-size: 0.95rem; font-weight: 800; color: var(--accent);
  background: var(--accent-bg); border-radius: 100px;
  padding: 4px 14px; white-space: nowrap;
}
.x2kb .bsws,
.x2kb .wpd6q4 { font-size: 1em; }

/* score-box: тільки число в суцільному квадраті */
.n7oz .n9ll5l2 strong {
  font-size: 1.15rem; font-weight: 900; color: var(--bg-page);
  background: var(--accent); border-radius: 6px;
  padding: 4px 10px;
}
.n7oz .wpd6q4 { display: none; }

/* ── FAQ ─────────────────────────────────────────────────────────────────────*/
.amzrbs { margin: 16px 0; }
.wxpk { background: var(--bg-card); border-radius: 8px; margin-bottom: 8px; overflow: hidden; }
.wxpk summary {
  padding: 14px 18px; font-weight: 600; color: var(--accent-pale);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between;
}
.wxpk summary::after { content: "+"; color: var(--accent); }
.wxpk[open] summary::after { content: "−"; }
.wxpk p { padding: 0 18px 14px; color: var(--text-muted); font-size: 0.95rem; }

/* ── Sections ────────────────────────────────────────────────────────────────*/
.zqbvbr { margin-bottom: 0; }
.ag6iwm h2.q61r6f2 { color: var(--accent-light); border-color: var(--accent); }
.fnw3o9 h2.q61r6f2 { color: var(--accent-light); border-color: var(--accent); }

/* ── callout_colors variants ─────────────────────────────────────────────────*/

/* classic — default, вже задано в color_scheme */

/* vivid: смарагд / рожевий / фіолетовий */
.kc6j0pb .qfvbh5     { background: #052e16; border-color: #10b981; }
.kc6j0pb .c9qfwuco { background: #2d0a1e; border-color: #f43f5e; }
.kc6j0pb .bwqp    { background: #1e1036; border-color: #a855f7; }
.kc6j0pb .uv0oe0p strong  { color: #f1f5f9; }
.kc6j0pb .uv0oe0p p       { color: #cbd5e1; }
.kc6j0pb .bsipklfx    .qfvbh5     .nmbq0vmq::before,
.kc6j0pb .e9pyn  .qfvbh5     .nmbq0vmq::before,
.kc6j0pb .ofogy  .qfvbh5     .nmbq0vmq::before,
.kc6j0pb .erjwtujh .qfvbh5     .nmbq0vmq::before { color: #10b981; }
.kc6j0pb .bsipklfx    .c9qfwuco .nmbq0vmq::before,
.kc6j0pb .e9pyn  .c9qfwuco .nmbq0vmq::before,
.kc6j0pb .ofogy  .c9qfwuco .nmbq0vmq::before,
.kc6j0pb .erjwtujh .c9qfwuco .nmbq0vmq::before { color: #f43f5e; }
.kc6j0pb .bsipklfx    .bwqp    .nmbq0vmq::before,
.kc6j0pb .e9pyn  .bwqp    .nmbq0vmq::before,
.kc6j0pb .ofogy  .bwqp    .nmbq0vmq::before,
.kc6j0pb .erjwtujh .bwqp    .nmbq0vmq::before { color: #a855f7; }

/* warm: жовтий / червоний / помаранчевий */
.j28xd1l .qfvbh5     { background: #2d2000; border-color: #eab308; }
.j28xd1l .c9qfwuco { background: #2d0b0b; border-color: #ef4444; }
.j28xd1l .bwqp    { background: #2d1600; border-color: #f97316; }
.j28xd1l .uv0oe0p strong  { color: #f1f5f9; }
.j28xd1l .uv0oe0p p       { color: #cbd5e1; }
.j28xd1l .bsipklfx    .qfvbh5     .nmbq0vmq::before,
.j28xd1l .e9pyn  .qfvbh5     .nmbq0vmq::before,
.j28xd1l .ofogy  .qfvbh5     .nmbq0vmq::before,
.j28xd1l .erjwtujh .qfvbh5     .nmbq0vmq::before { color: #eab308; }
.j28xd1l .bsipklfx    .c9qfwuco .nmbq0vmq::before,
.j28xd1l .e9pyn  .c9qfwuco .nmbq0vmq::before,
.j28xd1l .ofogy  .c9qfwuco .nmbq0vmq::before,
.j28xd1l .erjwtujh .c9qfwuco .nmbq0vmq::before { color: #ef4444; }
.j28xd1l .bsipklfx    .bwqp    .nmbq0vmq::before,
.j28xd1l .e9pyn  .bwqp    .nmbq0vmq::before,
.j28xd1l .ofogy  .bwqp    .nmbq0vmq::before,
.j28xd1l .erjwtujh .bwqp    .nmbq0vmq::before { color: #f97316; }

/* cool: блакитний / індиго / бірюзовий */
.em7a .qfvbh5     { background: #0c1a2e; border-color: #38bdf8; }
.em7a .c9qfwuco { background: #12103a; border-color: #818cf8; }
.em7a .bwqp    { background: #0a2020; border-color: #2dd4bf; }
.em7a .uv0oe0p strong  { color: #f1f5f9; }
.em7a .uv0oe0p p       { color: #cbd5e1; }
.em7a .bsipklfx    .qfvbh5     .nmbq0vmq::before,
.em7a .e9pyn  .qfvbh5     .nmbq0vmq::before,
.em7a .ofogy  .qfvbh5     .nmbq0vmq::before,
.em7a .erjwtujh .qfvbh5     .nmbq0vmq::before { color: #38bdf8; }
.em7a .bsipklfx    .c9qfwuco .nmbq0vmq::before,
.em7a .e9pyn  .c9qfwuco .nmbq0vmq::before,
.em7a .ofogy  .c9qfwuco .nmbq0vmq::before,
.em7a .erjwtujh .c9qfwuco .nmbq0vmq::before { color: #818cf8; }
.em7a .bsipklfx    .bwqp    .nmbq0vmq::before,
.em7a .e9pyn  .bwqp    .nmbq0vmq::before,
.em7a .ofogy  .bwqp    .nmbq0vmq::before,
.em7a .erjwtujh .bwqp    .nmbq0vmq::before { color: #2dd4bf; }

/* accent: використовує динамічний акцент */
.n3ge .qfvbh5     { background: var(--accent-bg); border-color: var(--accent); }
.n3ge .c9qfwuco { background: var(--accent-bg-light); border-color: var(--accent-light); }
.n3ge .bwqp    { background: var(--accent-bg); border-color: var(--accent-pale); }
.n3ge .bsipklfx    .nmbq0vmq::before,
.n3ge .e9pyn  .nmbq0vmq::before,
.n3ge .ofogy  .nmbq0vmq::before,
.n3ge .erjwtujh .nmbq0vmq::before { color: var(--accent-light) !important; }

/* ── pros_cons_colors variants ───────────────────────────────────────────────*/

/* base: іконки через ::before на .gzguz / .gc3c22gr */
.gzguz::before,
.gc3c22gr::before { margin-right: 5px; }

/* classic — фіксовані контрастні кольори незалежно від акценту */
.do50ax9w .xci8 ul li,
.do50ax9w .fpz2 li         { color: #4ade80; }
.do50ax9w .xci8 .gzguz { color: #22c55e; }
.do50ax9w .w15uxo ul li,
.do50ax9w .npt5fk li         { color: #f87171; }
.do50ax9w .w15uxo .gc3c22gr { color: #ef4444; }

/* blue: синій pros / amber cons */
.ywvpa .xci8 { background: #0c1a2e; }
.ywvpa .w15uxo { background: #2d1f00; }
.ywvpa .xci8 .gzguz { color: #93c5fd; }
.ywvpa .w15uxo .gc3c22gr { color: #fcd34d; }
.ywvpa .xci8 ul li,
.ywvpa .fpz2 li            { color: #bfdbfe; }
.ywvpa .w15uxo ul li,
.ywvpa .npt5fk li            { color: #fde68a; }

/* accent: label акцентний, текст завжди читабельний */
.lbkchoz2 .xci8 { background: var(--accent-bg); }
.lbkchoz2 .w15uxo { background: var(--accent-bg-light); }
.lbkchoz2 .xci8 .gzguz { color: var(--accent-pale); }
.lbkchoz2 .w15uxo .gc3c22gr { color: var(--accent-light); }
.lbkchoz2 .xci8 ul li,
.lbkchoz2 .fpz2 li          { color: var(--text-body); }
.lbkchoz2 .w15uxo ul li,
.lbkchoz2 .npt5fk li          { color: var(--text-body); }

/* ── pros_cons_icons variants ────────────────────────────────────────────────*/

/* check: ✓ / ✗ */
.ykkf3w .gzguz::before { content: "✓ "; }
.ykkf3w .gc3c22gr::before { content: "✗ "; }

/* arrows: → / ← */
.xe101 .gzguz::before { content: "→ "; }
.xe101 .gc3c22gr::before { content: "← "; }

/* marks: ★ / ✕ */
.mxolg4w .gzguz::before { content: "★ "; }
.mxolg4w .gc3c22gr::before { content: "✕ "; }

/* geo: ◆ / ▲ */
.l43w5 .gzguz::before { content: "◆ "; }
.l43w5 .gc3c22gr::before { content: "▲ "; }

/* ── callout_style variants ──────────────────────────────────────────────────*/

/* sidebar (default) — вже визначено в базових .qgx13* */

/* outline: рамка з усіх боків, без заливки */
.btt5mr .uv0oe0p { background: transparent; border-left: none; border: 1.5px solid; }
.btt5mr .qfvbh5     { border-color: var(--c-tip-border); }
.btt5mr .c9qfwuco { border-color: var(--c-warn-border); }
.btt5mr .bwqp    { border-color: #60a5fa; }
/* outline: прозорий фон — текст завжди від сторінки */
.btt5mr .uv0oe0p strong { color: var(--text-primary); }
.btt5mr .uv0oe0p p      { color: var(--text-muted); }

/* topbar: смуга зверху */
.ndcy1ghy .uv0oe0p { border-left: none; border-top: 4px solid; border-radius: 0 0 8px 8px; }
.ndcy1ghy .qfvbh5     { border-top-color: var(--c-tip-border); }
.ndcy1ghy .c9qfwuco { border-top-color: var(--c-warn-border); }
.ndcy1ghy .bwqp    { border-top-color: #60a5fa; }

/* filled: насичений кольоровий фон — завжди темний, білий текст завжди читабельний */
.q2hnwuu .uv0oe0p { border-left: none; border-radius: 8px; }
.q2hnwuu .qfvbh5     { background: #065f46; }  /* dark emerald */
.q2hnwuu .c9qfwuco { background: #92400e; }  /* dark amber */
.q2hnwuu .bwqp    { background: #1e3a8a; }  /* dark blue */
.q2hnwuu .uv0oe0p strong,
.q2hnwuu .uv0oe0p p { color: #fff; }
.q2hnwuu .nmbq0vmq::before { color: rgba(255,255,255,0.85) !important; }
/* colors варіанти overrideять фони і для filled */
.kc6j0pb.q2hnwuu .qfvbh5,
.kc6j0pb .q2hnwuu .qfvbh5     { background: #052e16; }
.kc6j0pb.q2hnwuu .c9qfwuco,
.kc6j0pb .q2hnwuu .c9qfwuco { background: #2d0a1e; }
.kc6j0pb.q2hnwuu .bwqp,
.kc6j0pb .q2hnwuu .bwqp    { background: #1e1036; }
.j28xd1l.q2hnwuu .qfvbh5,
.j28xd1l .q2hnwuu .qfvbh5      { background: #2d2000; }
.j28xd1l.q2hnwuu .c9qfwuco,
.j28xd1l .q2hnwuu .c9qfwuco  { background: #2d0b0b; }
.j28xd1l.q2hnwuu .bwqp,
.j28xd1l .q2hnwuu .bwqp     { background: #2d1600; }
.em7a.q2hnwuu .qfvbh5,
.em7a .q2hnwuu .qfvbh5      { background: #0c1a2e; }
.em7a.q2hnwuu .c9qfwuco,
.em7a .q2hnwuu .c9qfwuco  { background: #12103a; }
.em7a.q2hnwuu .bwqp,
.em7a .q2hnwuu .bwqp     { background: #0a2020; }

/* ghost: без рамки, мінімальний фон */
.u50f42rq .uv0oe0p { border-left: none; border-radius: 6px; padding: 10px 14px; }
.u50f42rq .qfvbh5     { background: color-mix(in srgb, var(--c-tip-border) 10%, transparent); }
.u50f42rq .c9qfwuco { background: color-mix(in srgb, var(--c-warn-border) 10%, transparent); }
.u50f42rq .bwqp    { background: color-mix(in srgb, #60a5fa 10%, transparent); }
/* ghost: майже прозорий фон — текст завжди від сторінки */
.u50f42rq .uv0oe0p strong { color: var(--text-primary); }
.u50f42rq .uv0oe0p p      { color: var(--text-muted); }

/* card: картка з тінню */
.izms7igh .uv0oe0p { border-left: none; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.25); }

/* ── callout_icons variants ──────────────────────────────────────────────────*/
/* Приховуємо порожній span та рендеримо іконку через ::before */

.bsipklfx .nmbq0vmq,
.e9pyn .nmbq0vmq,
.ofogy .nmbq0vmq,
.erjwtujh .nmbq0vmq { font-size: 0; width: 1.1rem; flex-shrink: 0; }

.bsipklfx .nmbq0vmq::before,
.e9pyn .nmbq0vmq::before,
.ofogy .nmbq0vmq::before,
.erjwtujh .nmbq0vmq::before {
  display: block; font-size: 1.15rem; line-height: 1.3; font-style: normal;
}

/* geo: ✦ ▲ ◉ */
.bsipklfx .qfvbh5     .nmbq0vmq::before { content: "✦"; color: var(--c-tip-border); }
.bsipklfx .c9qfwuco .nmbq0vmq::before { content: "▲"; color: var(--c-warn-border); }
.bsipklfx .bwqp    .nmbq0vmq::before { content: "◉"; color: #60a5fa; }

/* marks: ★ ◆ ● */
.e9pyn .qfvbh5     .nmbq0vmq::before { content: "★"; color: var(--c-tip-border); }
.e9pyn .c9qfwuco .nmbq0vmq::before { content: "◆"; color: var(--c-warn-border); }
.e9pyn .bwqp    .nmbq0vmq::before { content: "●"; color: #60a5fa; }

/* sharp: ▶ ■ ▸ */
.ofogy .qfvbh5     .nmbq0vmq::before { content: "▶"; color: var(--c-tip-border); }
.ofogy .c9qfwuco .nmbq0vmq::before { content: "■"; color: var(--c-warn-border); }
.ofogy .bwqp    .nmbq0vmq::before { content: "▸"; color: #60a5fa; }

/* arrows: → ⬥ ◈ */
.erjwtujh .qfvbh5     .nmbq0vmq::before { content: "→"; color: var(--c-tip-border); }
.erjwtujh .c9qfwuco .nmbq0vmq::before { content: "⬥"; color: var(--c-warn-border); }
.erjwtujh .bwqp    .nmbq0vmq::before { content: "◈"; color: #60a5fa; }

/* ── shadow variant ──────────────────────────────────────────────────────────*/
.dwbq50 .h7cy .k08t5q,
.dwbq50 .hjn6jj .k08t5q  { box-shadow: 0 2px 8px rgba(0,0,0,0.22); }
.dwbq50 .jxamdnbm                { box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
.dwbq50 .dn9tv4qm                { box-shadow: 0 4px 12px rgba(0,0,0,0.28); }
.dwbq50 .vdd35            { box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.dwbq50 .ohsbzd74          { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }
.dwbq50 .k11hrewf                    { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }

/* shadow-none: скидаємо будь-які тіні */
.z1e9kfa .h7cy .k08t5q,
.z1e9kfa .hjn6jj .k08t5q,
.z1e9kfa .jxamdnbm,
.z1e9kfa .dn9tv4qm,
.z1e9kfa .vdd35,
.z1e9kfa .ohsbzd74,
.z1e9kfa .k11hrewf,
.z1e9kfa .izms7igh .uv0oe0p { box-shadow: none; }

/* ── text_size variants ──────────────────────────────────────────────────────*/
.onyuwvre   body, .onyuwvre   { font-size: 0.9rem; }
.onyuwvre   .dp37y3cp, .onyuwvre .vn859s, .onyuwvre .rcb0nij,
.onyuwvre   .yinaoc9h, .onyuwvre .s8iyrxa { font-size: 0.9rem; }
.onyuwvre   .kj2duy3e, .onyuwvre .exr144lq { font-size: 0.9rem; }

.uj5v   .dp37y3cp, .uj5v .vn859s, .uj5v .rcb0nij,
.uj5v   .yinaoc9h, .uj5v .s8iyrxa { font-size: 0.9rem; }
.uj5v   .kj2duy3e, .uj5v .exr144lq { font-size: 0.9rem; }

/* base — default, вже задано */

.sciyef9   .dp37y3cp, .sciyef9 .vn859s, .sciyef9 .rcb0nij,
.sciyef9   .yinaoc9h, .sciyef9 .s8iyrxa { font-size: 1.08rem; }
.sciyef9   .kj2duy3e, .sciyef9 .exr144lq { font-size: 1.05rem; }
.sciyef9   .z3te { font-size: 0.97rem; }

/* ── type_scale variants ─────────────────────────────────────────────────────*/
/* default — базові розміри вже визначені (h1=2.6 h2=1.6 h3=1.2) */

/* large */
.uq7r7 .gogmwo      { font-size: 3.2rem; }
.uq7r7 h2.q61r6f2 { font-size: 1.9rem; }
.uq7r7 h3.rkmu8k1x     { font-size: 1.4rem; }

/* display */
.trz77b8 .gogmwo      { font-size: 3.8rem; }
.trz77b8 h2.q61r6f2 { font-size: 2.2rem; }
.trz77b8 h3.rkmu8k1x     { font-size: 1.6rem; }

/* ── section_divider variants ────────────────────────────────────────────────*/
/* ::before — абсолютно позиційований на верхньому краю нової секції */
.zqbvbr + .zqbvbr { position: relative; }

/* Спільна база: abs-позиція на межі між секціями */
.f80tzn7p   .zqbvbr + .zqbvbr::before,
.t193qe43  .zqbvbr + .zqbvbr::before,
.g6w4ii   .zqbvbr + .zqbvbr::before,
.jv1bxns   .zqbvbr + .zqbvbr::before,
.ww7k   .zqbvbr + .zqbvbr::before,
.ttgkm .zqbvbr + .zqbvbr::before {
  position: absolute; top: -1px; left: 0; right: 0;
  transform: translateY(-50%);
}

/* line: тонка акцентна лінія */
.f80tzn7p .zqbvbr + .zqbvbr::before {
  content: ""; height: 1px; background: var(--accent); opacity: 0.5;
}

/* thick: товста градієнтна смуга */
.t193qe43 .zqbvbr + .zqbvbr::before {
  content: ""; height: 4px;
  background: linear-gradient(90deg, var(--grad-start), var(--accent), var(--grad-end));
}

/* dots: три крапки по центру */
.g6w4ii .zqbvbr + .zqbvbr::before {
  content: "● ● ●";
  text-align: center; font-size: 0.55rem; letter-spacing: 0.5em;
  color: var(--accent); opacity: 0.7; line-height: 1;
  padding-top: 6px;
}

/* fade: лінія що розчиняється по краях */
.jv1bxns .zqbvbr + .zqbvbr::before {
  content: ""; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 25%, var(--accent) 75%, transparent 100%);
  opacity: 0.6;
}

/* gap: трохи більший відступ, без декору; скасовуємо inner_pad щоб не стекалось */
.a6cetcms .zqbvbr { margin-bottom: 16px; }
.a6cetcms .zqbvbr + .zqbvbr { margin-top: 0; }
.a6cetcms .q5rmvmt { padding-top: 0; padding-bottom: 0; }

/* dash: пунктирна лінія */
.ww7k .zqbvbr + .zqbvbr::before {
  content: ""; border-top: 2px dashed var(--accent); opacity: 0.5;
}

/* stitch: строчка (дрібні крапки) */
.ttgkm .zqbvbr + .zqbvbr::before {
  content: ""; border-top: 3px dotted var(--accent); opacity: 0.5;
}

/* wave: заповнена хвиля hero-style — ::before виступає вгору з нової секції */
.eccm .zqbvbr + .zqbvbr::before,
.j1b2 .zqbvbr + .zqbvbr::before,
.xlp81q .zqbvbr + .zqbvbr::before {
  content: ""; display: block;
  position: absolute; top: -70px; left: 0; right: 0; height: 70px;
  background: var(--bg-page);
  pointer-events: none; z-index: 2;
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
}

/* section_bg=even: парні секції мають bg-surface, непарні — bg-page */
.kfj7pf .eccm .zqbvbr:nth-child(even)::before,
.kfj7pf .j1b2 .zqbvbr:nth-child(even)::before,
.kfj7pf .xlp81q .zqbvbr:nth-child(even)::before { background: var(--bg-surface); }

/* section_bg=stripe: парні секції мають bg-card */
.nhp33tf9 .eccm .zqbvbr:nth-child(even)::before,
.nhp33tf9 .j1b2 .zqbvbr:nth-child(even)::before,
.nhp33tf9 .xlp81q .zqbvbr:nth-child(even)::before { background: var(--bg-card); }

/* wave-a: плавна S-хвиля (1 гребінь) */
.eccm .zqbvbr + .zqbvbr::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 20 C12 0 37 0 50 20 C63 40 88 40 100 20 L100 50 Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 20 C12 0 37 0 50 20 C63 40 88 40 100 20 L100 50 Z' fill='black'/%3E%3C/svg%3E");
}

/* wave-b: 2 гребені */
.j1b2 .zqbvbr + .zqbvbr::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 20 C8 0 17 0 25 20 C33 40 42 40 50 20 C58 0 67 0 75 20 C83 40 92 40 100 20 L100 50 Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 20 C8 0 17 0 25 20 C33 40 42 40 50 20 C58 0 67 0 75 20 C83 40 92 40 100 20 L100 50 Z' fill='black'/%3E%3C/svg%3E");
}

/* wave-c: глибока дуга */
.xlp81q .zqbvbr + .zqbvbr::before {
  height: 80px; top: -80px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 40 C20 0 80 0 100 40 L100 50 Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 40 C20 0 80 0 100 40 L100 50 Z' fill='black'/%3E%3C/svg%3E");
}

/* ── hero_wave: SVG-хвиля на нижньому краю hero-bg ──────────────────────────*/
/* ::after з bg-page перекриває нижній край hero у формі хвилі */
.d7qj6 .uwst,
.vr64z1eg .uwst,
.go1s .uwst { overflow: hidden; }

/* wave: додатковий простір щоб хвиля не закривала CTA */
.d7qj6 .my1gd9,
.vr64z1eg .my1gd9 { margin-bottom: 60px; }
.go1s .my1gd9 { margin-bottom: 70px; }
.d7qj6 .cuxro,
.vr64z1eg .cuxro { padding-bottom: 60px; }
.go1s .cuxro { padding-bottom: 70px; }

.d7qj6 .uwst::before,
.vr64z1eg .uwst::before,
.go1s .uwst::before {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--bg-page);
  pointer-events: none; z-index: 2;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

/* wave-a: плавна S-хвиля (1 гребінь) */
.d7qj6 .uwst::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 20 C12 0 37 0 50 20 C63 40 88 40 100 20 L100 50 Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 20 C12 0 37 0 50 20 C63 40 88 40 100 20 L100 50 Z' fill='black'/%3E%3C/svg%3E");
}

/* wave-b: 2 гребені */
.vr64z1eg .uwst::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 20 C8 0 17 0 25 20 C33 40 42 40 50 20 C58 0 67 0 75 20 C83 40 92 40 100 20 L100 50 Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 20 C8 0 17 0 25 20 C33 40 42 40 50 20 C58 0 67 0 75 20 C83 40 92 40 100 20 L100 50 Z' fill='black'/%3E%3C/svg%3E");
}

/* wave-c: глибока дуга */
.go1s .uwst::before {
  height: 70px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 40 C20 0 80 0 100 40 L100 50 Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 40 C20 0 80 0 100 40 L100 50 Z' fill='black'/%3E%3C/svg%3E");
}

/* ── hero_grad: gradient direction + color mix ────────────────────────────*/
/* hg-br (default): grad-start → grad-end → accent, 135deg — set in base rules */

/* hero-overlay varies per hg-* too */
.qbq8xl .jwmqej { background: linear-gradient(225deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%); }
.qi6p1h .jwmqej { background: linear-gradient(45deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 100%); }
.tuybhc  .jwmqej { background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%); }
.kox56yvv  .jwmqej { background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%); }

/* hg-bl: зворотний кут */
.qbq8xl .q56mf { background: linear-gradient(225deg, var(--accent) 0%, var(--accent-light) 100%); }
.qbq8xl .t5vciwqi { background: linear-gradient(225deg, var(--accent), var(--accent-light)); }
.qbq8xl .ovlqv { background: linear-gradient(225deg, var(--accent-bg) 0%, var(--bg-surface) 100%); }

/* hg-tr: діагональ вгору */
.qi6p1h .q56mf { background: linear-gradient(45deg, var(--accent) 0%, var(--accent-light) 100%); }
.qi6p1h .t5vciwqi { background: linear-gradient(45deg, var(--accent), var(--accent-light)); }
.qi6p1h .ovlqv { background: linear-gradient(45deg, var(--bg-surface) 0%, var(--accent-bg) 100%); }

/* hg-r: горизонтальний */
.tuybhc .q56mf { background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%); }
.tuybhc .t5vciwqi { background: linear-gradient(90deg, var(--accent), var(--accent-light)); }
.tuybhc .ovlqv { background: linear-gradient(90deg, var(--accent-bg) 0%, var(--bg-surface) 100%); }

/* hg-b: вертикальний */
.kox56yvv .q56mf { background: linear-gradient(180deg, var(--accent) 0%, var(--accent-light) 100%); }
.kox56yvv .t5vciwqi { background: linear-gradient(180deg, var(--accent), var(--accent-light)); }
.kox56yvv .ovlqv { background: linear-gradient(180deg, var(--accent-bg) 0%, var(--bg-surface) 100%); }

/* hg-solid: суцільний колір без градієнту */
.ggue26 .q56mf { background: var(--accent); }
.ggue26 .q56mf .jwmqej { background: none; }
.ggue26 .t5vciwqi { background: var(--accent); }
.ggue26 .ovlqv { background: var(--accent-bg); }
.ggue26 .jwmqej { background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%); }


/* ── section_img: розміщення банерного зображення в секції ─────────────────*/
/* top = current (banner вгорі, повна ширина — без override) */

/* left: зображення зліва ~38%, текст обтікає справа */
.m5n3pw .pzc14a2m { float: left; width: 38%; margin: 0 28px 16px 0; }
.m5n3pw .pzc14a2m .po0nv4w { width: 100%; height: auto; max-height: 280px; object-fit: cover; border-radius: 10px; }
.m5n3pw .q5rmvmt::after { content: ''; display: block; clear: both; }

/* right: зображення справа ~38%, текст обтікає зліва */
.e9pp .pzc14a2m { float: right; width: 38%; margin: 0 0 16px 28px; }
.e9pp .pzc14a2m .po0nv4w { width: 100%; height: auto; max-height: 280px; object-fit: cover; border-radius: 10px; }
.e9pp .q5rmvmt::after { content: ''; display: block; clear: both; }

/* alt: непарні зліва, парні справа */
.atyfav9 .zqbvbr:nth-child(odd)  .pzc14a2m { float: left;  width: 38%; margin: 0 28px 16px 0; }
.atyfav9 .zqbvbr:nth-child(even) .pzc14a2m { float: right; width: 38%; margin: 0 0 16px 28px; }
.atyfav9 .pzc14a2m .po0nv4w { width: 100%; height: auto; max-height: 280px; object-fit: cover; border-radius: 10px; }
.atyfav9 .q5rmvmt::after { content: ''; display: block; clear: both; }

/* Великі блочні елементи — clear float щоб не стискались */
.m5n3pw .i8qfq8t,
.m5n3pw .j2zafgnr,
.e9pp .i8qfq8t,
.e9pp .j2zafgnr,
.atyfav9 .i8qfq8t,
.atyfav9 .j2zafgnr { clear: both; }

/* Маркери списків не мають налазити на float-картинку */
.m5n3pw .kj2duy3e,
.m5n3pw .exr144lq,
.e9pp .kj2duy3e,
.e9pp .exr144lq,
.atyfav9 .kj2duy3e,
.atyfav9 .exr144lq { overflow: hidden; }


@media (max-width: 640px) {
  .m5n3pw .pzc14a2m,
  .e9pp .pzc14a2m,
  .atyfav9 .pzc14a2m { float: none; width: 100%; margin: 0 0 16px 0; }
}

/* ── content_width: ширина контентного контейнера ───────────────────────────*/
/* default = 1100px (задано в .xbka0j, .q5rmvmt, .h9ug3) */
.ahwx .xbka0j,
.ahwx .q5rmvmt,
.ahwx .h9ug3  { max-width: 1100px; }
.ahwx { --content-mw: 1100px; }
.rtg5isgg .xbka0j,
.rtg5isgg .q5rmvmt,
.rtg5isgg .h9ug3  { max-width: 1200px; }
.rtg5isgg { --content-mw: 1200px; }
.v2hpug .xbka0j,
.v2hpug .q5rmvmt,
.v2hpug .h9ug3  { max-width: 1320px; }
.v2hpug { --content-mw: 1320px; }

/* ── Breadcrumb ─────────────────────────────────────────────────────────────*/
.sjnzv { font-size: 0.82rem; color: var(--text-muted); }
/* bc-inner: лише flex-контейнер, без padding/max-width — кожен варіант задає сам */
.n0ds { display: flex; align-items: center; }
.afurp6 {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; flex-wrap: wrap; gap: 0;
}
.oeyuqh8x { display: flex; align-items: center; }
.izyyp { color: var(--accent); text-decoration: none; padding: 2px 5px; border-radius: 4px; }
.izyyp:hover { text-decoration: underline; }
.xahj { margin: 0 3px; opacity: 0.45; }
.xahj::before { content: '/'; }
.rrbmga { padding: 2px 5px; color: var(--text-main); }

/* above: bc-inner центрує як page-wrap */
.bj8u .sjnzv {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 9px 0;
}
.bj8u .n0ds { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* below: всередині page-wrap — bc-inner лише відступ під ліву смугу */
.ucl11 .sjnzv {
  border-left: 3px solid var(--accent);
  padding: 4px 0;
  margin-bottom: 20px;
}
.ucl11 .n0ds { padding: 0 0 0 12px; }

/* float: bc-float-wrap — зовнішній контейнер; bc-inner тільки внутрішній padding картки */
.t9qel {
  max-width: 1100px; margin: -38px auto 0;
  padding: 0 24px; position: relative; z-index: 5;
}
.tgon6oa .n0ds { padding: 0 16px; }
.tgon6oa .sjnzv {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 0;
  box-shadow: 0 4px 18px rgba(0,0,0,0.28);
}
.tgon6oa .xbka0j { padding-top: 28px; }

/* content-width: above — обидва класи на <body>, тому без пробілу */
.ahwx.bj8u .n0ds { max-width: 1100px; }
.rtg5isgg.bj8u .n0ds { max-width: 1200px; }
.v2hpug.bj8u .n0ds { max-width: 1320px; }
/* float — bc-float-wrap окремий елемент, тому з пробілом */
.ahwx .t9qel { max-width: 1100px; }
.rtg5isgg .t9qel { max-width: 1200px; }
.v2hpug .t9qel { max-width: 1320px; }

/* ── section_gap: відстань між секціями (padding на .zqbvbr) ───────────*/
.evn53n66 .zqbvbr { padding-top: 16px; padding-bottom: 16px; }
.r2lh .zqbvbr { padding-top: 24px; padding-bottom: 24px; }
/* gap-md = base (32px) — без override */
.efv0b .zqbvbr { padding-top: 40px; padding-bottom: 40px; }
.e27k1n .zqbvbr { padding-top: 52px; padding-bottom: 52px; }

/* gap-varied: кожна секція має власний відступ циклом 4 */
.rjwz .zqbvbr:nth-child(4n+1) { padding-top: 20px;  padding-bottom: 20px; }
.rjwz .zqbvbr:nth-child(4n+2) { padding-top: 36px;  padding-bottom: 36px; }
.rjwz .zqbvbr:nth-child(4n+3) { padding-top: 28px;  padding-bottom: 28px; }
.rjwz .zqbvbr:nth-child(4n)   { padding-top: 44px;  padding-bottom: 44px; }

/* ── inner_pad: вертикальний відступ всередині section-inner ─────────────────*/
/* base = 24px (задано в .q5rmvmt вище) */
.luell .q5rmvmt { padding-top: 10px;  padding-bottom: 10px; }
.c4pkx0d .q5rmvmt { padding-top: 18px;  padding-bottom: 18px; }
/* ipad-md = base (24px) — без override */
.h8vztz3 .q5rmvmt { padding-top: 36px;  padding-bottom: 36px; }
.o9bs .q5rmvmt { padding-top: 48px;  padding-bottom: 48px; }

/* ── font_weight: жирність тексту ────────────────────────────────────────────*/
/* fw-300: тонкий */
.uizptpt4 { font-weight: 300; }
.uizptpt4 h2.q61r6f2 { font-weight: 600; }
.uizptpt4 h3.rkmu8k1x     { font-weight: 600; }
/* fw-400: default — без override */
/* fw-500: medium */
.wwmbh { font-weight: 500; }
.wwmbh h2.q61r6f2 { font-weight: 800; }
.wwmbh h3.rkmu8k1x     { font-weight: 700; }
/* fw-600: semibold */
.x53anfl9 { font-weight: 600; }
.x53anfl9 h2.q61r6f2 { font-weight: 900; }
.x53anfl9 h3.rkmu8k1x     { font-weight: 800; }
.x53anfl9 .uv0oe0p strong,
.x53anfl9 .uv0oe0p strong { font-weight: 600; }
/* .x53anfl9 .vn859s, .x53anfl9 .yinaoc9h { font-weight: 600; } */

/* ── Navbar CTA button ───────────────────────────────────────────────────────*/
.xzmjeq {
  margin-left: 16px; flex-shrink: 0;
  padding: 7px 16px; font-size: 0.82rem; font-weight: 700; border-radius: 6px;
}
/* show/hide via body class */
.l4j1 .xzmjeq { display: none; }
/* on mobile: hide navbar cta when menu is open (it's inside the burger zone) */
@media (max-width: 640px) { .xzmjeq { display: none; } }
/* solid by default */
.xzmjeq { background: var(--accent) !important; color: #fff !important; border: none !important; }
.xzmjeq:hover { opacity: 0.85; }
/* gradient variant — синхронізовано з hg-* btn gradients */
.e2q6s .xzmjeq { background: linear-gradient(135deg, var(--accent), var(--accent-light)) !important; }
/* on accent/glass navbar: grad-start → accent-light — контрастує з accent-фоном */
.yxolpm .xzmjeq,
.b527  .xzmjeq { background: var(--grad-start) !important; color: #fff !important; border: none !important; }
.yxolpm .xzmjeq:hover,
.b527  .xzmjeq:hover { opacity: 0.88; }
.e2q6s.yxolpm .xzmjeq,
.e2q6s.b527  .xzmjeq { background: linear-gradient(135deg, var(--grad-start), var(--accent-light)) !important; }

/* ── Sticky corner CTA button ────────────────────────────────────────────────*/
.qs456nyx {
  position: fixed; bottom: 32px; z-index: 900;
  padding: 12px 22px; font-size: 0.9rem; font-weight: 700; border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform .15s, opacity .15s;
}
.qs456nyx:hover { transform: translateY(-2px); opacity: 0.92; }
/* always solid background regardless of btn_style variant */
.qs456nyx { background: var(--accent) !important; color: #fff !important; border: none !important; }
/* position by variant */
.i3s1v6 .qs456nyx { display: none; }
.rri8 .qs456nyx { right: 32px; }
.b2kpx  .qs456nyx { left: 32px; }
@media (max-width: 480px) {
  .rri8 .qs456nyx { right: 20px; bottom: 20px; }
  .b2kpx  .qs456nyx { left: 20px; bottom: 20px; }
}

/* ── Footer ──────────────────────────────────────────────────────────────────*/
.zbcx3pcj { background: var(--bg-surface); border-top: 1px solid var(--border); margin-top: 60px; }
.h9ug3 { max-width: 1100px; margin: 0 auto; padding: 32px 24px; }
.bddf14nw { color: var(--text-faint); font-size: 0.85rem; margin-bottom: 6px; }
.w3qve { color: var(--text-dim); font-size: 0.8rem; }
/* brand/logo */
.llgz23a { display: inline-flex; align-items: center; gap: 8px; color: var(--text); text-decoration: none; font-weight: 700; font-size: 1rem; margin-bottom: 14px; }
.llgz23a img { height: 26px; width: auto; object-fit: contain; }
.el6bbi { color: var(--text-faint); font-size: 0.82rem; margin: 0; }
/* footer nav links */
.bhrtjxej { display: flex; flex-direction: column; gap: 6px; }
.bhrtjxej a, .iek7ui2 a { color: var(--text); text-decoration: none; font-size: 0.87rem; transition: color .15s; }
.bhrtjxej a:hover, .iek7ui2 a:hover { color: var(--accent-light); }
.bhrtjxej .fh6lw1a5 { padding-left: 10px; font-size: 0.82rem; opacity: 0.8; }
.iek7ui2 { display: flex; flex-wrap: wrap; gap: 4px 18px; }

/* minimal */
.se1f .h9ug3 { text-align: center; }
.se1f .iek7ui2 { justify-content: center; margin-bottom: 16px; }
.se1f .bddf14nw { margin-top: 0; }

/* service links — менший розмір, відступ зверху */
.auyu { margin-top: 10px; }
.auyu a { font-size: 0.8rem; opacity: 0.65; }

/* mobile footer */
@media (max-width: 640px) {
  .h9ug3 { padding-left: 16px; padding-right: 16px; }
  .xj4ts06 .h9ug3 { padding: 20px 16px; }
  .iek7ui2 { gap: 4px 12px; }
  .bddf14nw { font-size: 0.78rem; }
}


/* split — лого+tagline | topic nav (2-col grid) | service+legal */
.cb0bok .k43ju5l2 { display: grid; grid-template-columns: 1fr 1.6fr 1fr; gap: 2.5rem; align-items: start; }
.cb0bok .kj04gstw .llgz23a { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.05rem; text-decoration: none; color: var(--text); margin-bottom: 10px; }
.cb0bok .el6bbi { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; margin: 0; }
.cb0bok .udrzb { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 8px 16px; }
.cb0bok .udrzb a { font-size: 0.88rem; color: var(--text-muted); text-decoration: none; }
.cb0bok .udrzb a:hover { color: var(--accent); }
.cb0bok .bddf14nw { font-size: 0.78rem; color: var(--text-faint); margin: 14px 0 4px; line-height: 1.5; }
.cb0bok .w3qve { font-size: 0.78rem; color: var(--text-faint); margin: 0; }
@media (max-width: 768px) { .cb0bok .k43ju5l2 { grid-template-columns: 1fr 1fr; } .cb0bok .kj04gstw { grid-column: 1 / -1; } }
@media (max-width: 480px) { .cb0bok .k43ju5l2 { grid-template-columns: 1fr; } }


/* ribbon — компактний 1 рядок, service + disclaimer дрібно знизу */
.ejhorhgy .zxbozi { display: flex; align-items: center; gap: 0; flex-wrap: wrap; padding-bottom: 14px; border-bottom: 1px solid var(--border); margin-bottom: 12px; }
.ejhorhgy .llgz23a { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 1rem; text-decoration: none; color: var(--text); margin-right: auto; flex-shrink: 0; }
.ejhorhgy .fi8nj { display: flex; flex-wrap: wrap; gap: 4px 16px; margin-right: 24px; }
.ejhorhgy .fi8nj a { font-size: 0.87rem; color: var(--text-muted); text-decoration: none; }
.ejhorhgy .fi8nj a:hover { color: var(--accent); }
.tgsdx { font-size: 0.8rem; color: var(--text-faint); margin: 0; white-space: nowrap; }
.ejhorhgy .hbu8 { display: flex; align-items: baseline; gap: 1.5rem; flex-wrap: wrap; }
.ejhorhgy .vj3s { display: flex; flex-wrap: wrap; gap: 4px 14px; }
.ejhorhgy .vj3s a { font-size: 0.78rem; color: var(--text-faint); text-decoration: none; }
.ejhorhgy .vj3s a:hover { color: var(--accent); }
.ejhorhgy .bddf14nw { font-size: 0.78rem; color: var(--text-faint); margin: 0; }
@media (max-width: 640px) { .ejhorhgy .zxbozi { gap: 12px; } .ejhorhgy .llgz23a { margin-right: 0; width: 100%; } }

/* mega — верхня зона лого+2 колонки лінків, нижня legal-смуга */
.ya4rttc .esd98w6 { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; padding-bottom: 28px; border-bottom: 1px solid var(--border); margin-bottom: 20px; align-items: start; }
.ya4rttc .x7wmh48 .llgz23a { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.1rem; text-decoration: none; color: var(--text); margin-bottom: 10px; }
.ya4rttc .el6bbi { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; margin: 0; }
.ya4rttc .sathx { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); margin: 0 0 12px; }
.ya4rttc .udrzb { display: flex; flex-direction: column; gap: 9px; }
.ya4rttc .udrzb a { font-size: 0.88rem; color: var(--text-muted); text-decoration: none; }
.ya4rttc .udrzb a:hover { color: var(--accent); }
.ya4rttc .kh5u { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.ya4rttc .bddf14nw { font-size: 0.78rem; color: var(--text-faint); margin: 0; flex: 1; }
.ya4rttc .w3qve { font-size: 0.78rem; color: var(--text-faint); margin: 0; white-space: nowrap; }
@media (max-width: 768px) { .ya4rttc .esd98w6 { grid-template-columns: 1fr 1fr; } .ya4rttc .x7wmh48 { grid-column: 1 / -1; } }
@media (max-width: 480px) { .ya4rttc .esd98w6 { grid-template-columns: 1fr; } }

/* columns — 3 колонки: бренд | links (2-col grid) | legal */
.ph8z .tu9rg { display: grid; grid-template-columns: 1fr 2fr 1.2fr; gap: 2rem; align-items: start; }
.ph8z .bhrtjxej { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 6px 20px; }
@media (max-width: 760px) { .ph8z .tu9rg { grid-template-columns: 1fr 1fr; } .ph8z .mms0z3r:first-child { grid-column: 1 / -1; } }
@media (max-width: 480px) { .ph8z .tu9rg { grid-template-columns: 1fr; } }
/* columns без topic-сторінок — 2 колонки: бренд | service-лінки у grid */
.gs9pg .tu9rg { grid-template-columns: 1fr 2fr; }
.gs9pg .r5u5me .bhrtjxej { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
@media (max-width: 480px) { .gs9pg .tu9rg { grid-template-columns: 1fr; } }

/* centered — всі елементи по центру */
.a6wan5 .h9ug3 { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.a6wan5 .iek7ui2 { justify-content: center; }

/* ── nav_theme: колір фону navbar і footer ───────────────────────────────────*/
/* surface = default — без override */

/* page: bg-page замість bg-surface */
.vf74x .u0rdea      { background: var(--bg-page); border-bottom-color: var(--border-alt); }
.vf74x .zbcx3pcj { background: var(--bg-page); border-top-color: var(--border-alt); }

/* dark: завжди темний, незалежно від теми */
.uqi5jjvi .u0rdea      { background: #0d1117; border-bottom-color: #21262d; }
.uqi5jjvi .i8h6vq { color: var(--accent-light); }
.uqi5jjvi .ds2h5sn { --msep-color: #8b949e; }
.uqi5jjvi .ds2h5sn a { color: #8b949e; }
.uqi5jjvi .ds2h5sn a:hover { color: var(--accent-light); }
.uqi5jjvi .pctj { color: #8b949e; }
.uqi5jjvi .zbcx3pcj { background: #0d1117; border-top-color: #21262d; }
.uqi5jjvi .bddf14nw,
.uqi5jjvi .w3qve { color: #6e7681; }
.uqi5jjvi .bhrtjxej a, .uqi5jjvi .iek7ui2 a,
.uqi5jjvi .udrzb a, .uqi5jjvi .fi8nj a,
.uqi5jjvi .vj3s a, .uqi5jjvi .llgz23a { color: #8b949e; }
.uqi5jjvi .bhrtjxej a:hover, .uqi5jjvi .iek7ui2 a:hover,
.uqi5jjvi .udrzb a:hover, .uqi5jjvi .fi8nj a:hover { color: var(--accent-light); }
@media (max-width: 640px) {
  .uqi5jjvi .ds2h5sn { background: #0d1117; border-top-color: #21262d; }
  .uqi5jjvi .ds2h5sn li a { border-bottom-color: #21262d; }
}

/* light: завжди світлий */
.mptw .u0rdea      { background: #f0f4f8; border-bottom-color: #cbd5e1; }
.mptw .i8h6vq { color: var(--accent); }
.mptw .ds2h5sn { --msep-color: #475569; }
.mptw .ds2h5sn a { color: #475569; }
.mptw .ds2h5sn a:hover { color: var(--accent); }
.mptw .pctj { color: #64748b; }
.mptw .zbcx3pcj { background: #f0f4f8; border-top-color: #cbd5e1; }
.mptw .bddf14nw,
.mptw .w3qve { color: #64748b; }
.mptw .bhrtjxej a, .mptw .iek7ui2 a,
.mptw .udrzb a, .mptw .fi8nj a,
.mptw .vj3s a, .mptw .llgz23a { color: #374151; }
.mptw .bhrtjxej a:hover, .mptw .iek7ui2 a:hover,
.mptw .udrzb a:hover, .mptw .fi8nj a:hover { color: var(--accent); }
@media (max-width: 640px) {
  .mptw .ds2h5sn { background: #f0f4f8; border-top-color: #cbd5e1; }
  .mptw .ds2h5sn li a { border-bottom-color: #cbd5e1; color: #475569; }
}

/* accent: кольоровий акцентний фон */
.yxolpm .u0rdea      { background: var(--accent); border-bottom-color: var(--accent-light); }
.yxolpm .i8h6vq { color: #fff; }
.yxolpm .ds2h5sn { --msep-color: rgba(255,255,255,0.82); }
.yxolpm .ds2h5sn a { color: rgba(255,255,255,0.82); }
.yxolpm .ds2h5sn a:hover { color: #fff; }
.yxolpm .pctj { color: rgba(255,255,255,0.9); }
.yxolpm .zbcx3pcj { background: var(--accent); border-top-color: var(--accent-light); }
.yxolpm .bddf14nw,
.yxolpm .w3qve { color: rgba(255,255,255,0.72); }
.yxolpm .bhrtjxej a, .yxolpm .iek7ui2 a,
.yxolpm .udrzb a, .yxolpm .fi8nj a,
.yxolpm .vj3s a, .yxolpm .llgz23a { color: rgba(255,255,255,0.82); }
.yxolpm .bhrtjxej a:hover, .yxolpm .iek7ui2 a:hover,
.yxolpm .udrzb a:hover, .yxolpm .fi8nj a:hover { color: #fff; }
@media (max-width: 640px) {
  .yxolpm .ds2h5sn { background: var(--accent); border-top-color: var(--accent-light); }
  .yxolpm .ds2h5sn li a { border-bottom-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.82); }
}

/* glass: напівпрозорий з blur */
.b527 .u0rdea {
  background: color-mix(in srgb, var(--bg-surface) 60%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: color-mix(in srgb, var(--border) 50%, transparent);
}
.b527 .zbcx3pcj {
  background: color-mix(in srgb, var(--bg-surface) 60%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top-color: color-mix(in srgb, var(--border) 50%, transparent);
}
@media (max-width: 640px) {
  .b527 .ds2h5sn {
    background: color-mix(in srgb, var(--bg-surface) 85%, transparent);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
}

/* ── nav_height: висота navbar (вертикальний padding пунктів меню) ───────────*/
/* md = default (62px) — без override */
.dlviv .ge8ec { min-height: 52px; height: auto; padding-top: 6px; padding-bottom: 6px; }
.rmazaecm .ge8ec { min-height: 58px; height: auto; padding-top: 8px; padding-bottom: 8px; }
.b2wu .ge8ec { min-height: 72px; height: auto; }
.qx82eo7d .ge8ec { min-height: 84px; height: auto; }

/* ── nav_width: ширина контейнера ────────────────────────────────────────────*/
/* content = default (max-width: 1100px) — без override */
.xj4ts06 .ge8ec { max-width: none; padding: 0 32px; }
.xj4ts06 .h9ug3  { max-width: none; padding: 24px 32px; }
/* navbar-inner expands with content when nav-w-content (never narrower than 1000px default) */
.da1f83jt.rtg5isgg .ge8ec { max-width: 1200px; }
.da1f83jt.v2hpug .ge8ec { max-width: 1320px; }

/* ── nav_brand: кейс бренднейму (CSS text-transform) ────────────────────────*/
/* cap = default: перша з великої, далі lowercase */
.viuxhkkq   .i8h6vq { text-transform: capitalize; }
.m2hsmxv .i8h6vq { text-transform: lowercase; }
.txqwse .i8h6vq { text-transform: uppercase; letter-spacing: 0.06em; }


/* ── nav_logo_shape: форма логотипа ─────────────────────────────────────────*/
/* sq = default */

/* ── nav_logo_bg: фон на wrap-блоці (не на img) ─────────────────────────────*/
/* none = без фону (default) */
.gvqou, .sd9nq {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sblwbn .gvqou,
.sblwbn .sd9nq { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 8px; padding: 4px; }
.vthets .gvqou,
.vthets .sd9nq { background: linear-gradient(135deg, color-mix(in srgb, var(--grad-start) var(--logo-bg-opacity, 8%), transparent), color-mix(in srgb, var(--grad-end) var(--logo-bg-opacity, 8%), transparent)); border-radius: 8px; padding: 4px; }
.u90uo50 .gvqou,
.u90uo50 .sd9nq { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 999px; padding: 4px 8px; }
.j214d .gvqou,
.j214d .sd9nq { background: linear-gradient(135deg, color-mix(in srgb, var(--grad-start) var(--logo-bg-opacity, 8%), transparent), color-mix(in srgb, var(--grad-end) var(--logo-bg-opacity, 8%), transparent)); border-radius: 999px; padding: 4px 8px; }

/* ── nav_menu_weight: жирність пунктів меню ─────────────────────────────────*/
/* regular = default, успадковує font-weight */
.kx6r590   .ds2h5sn a { font-weight: 500; }
.fds1xl5q .ds2h5sn a { font-weight: 600; }
.crkqpsd3     .ds2h5sn a { font-weight: 700; }
.fk18gb    .ds2h5sn a { font-weight: 800; letter-spacing: 0.01em; }

/* ── nav_menu_sep: розділювач між пунктами на desktop ───────────────────────*/
/* none = без розділювача */
.dhix     .ds2h5sn > li + li::before,
.g9c6    .ds2h5sn > li + li::before,
.xlkj28    .ds2h5sn > li + li::before,
.rafpr .ds2h5sn > li + li::before,
.lbdq1zn .ds2h5sn > li + li::before,
.h570gdc  .ds2h5sn > li + li::before,
.nowo    .ds2h5sn > li + li::before {
  margin-right: 10px; margin-left: -10px; opacity: 0.5; color: var(--msep-color);
}
.dhix     .ds2h5sn > li + li::before { content: "·"; font-size: 1.4em; line-height: 1; vertical-align: middle; }
.g9c6    .ds2h5sn > li + li::before { content: "|"; }
.xlkj28    .ds2h5sn > li + li::before { content: "—"; }
.rafpr .ds2h5sn > li + li::before { content: "◆"; font-size: 0.45em; vertical-align: middle; }
.lbdq1zn .ds2h5sn > li + li::before { content: "›"; font-size: 1.3em; line-height: 1; }
.h570gdc  .ds2h5sn > li + li::before { content: "•"; font-size: 0.8em; vertical-align: middle; }
.nowo    .ds2h5sn > li + li::before { content: "✦"; font-size: 0.55em; vertical-align: middle; }

/* ── nav_burger: CSS-лінії замість символу ☰ ─────────────────────────────────*/
/* default = символ ☰ без змін; всі інші — тільки @media (завжди перемагають) */
@media (max-width: 640px) {

  /* ховаємо ☰ символ і центруємо кнопку */
  .tky8t .pctj,
  .lrlkczl .pctj,
  .n6kgm2f5 .pctj,
  .lue3 .pctj,
  .wbl19av .pctj {
    font-size: 0 !important;
    display: flex !important;
    align-items: center; justify-content: center;
    padding: 0; width: 40px;
  }

  /* базовий ::before */
  .tky8t .pctj::before,
  .lrlkczl .pctj::before,
  .n6kgm2f5 .pctj::before,
  .lue3 .pctj::before,
  .wbl19av .pctj::before { content: ""; display: block; flex-shrink: 0; }

  /* 2 лінії: повна + 68% */
  .tky8t .pctj::before {
    width: 22px; height: 11px;
    background:
      linear-gradient(currentColor, currentColor) 0 0    / 100% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 100% /  68% 2px no-repeat;
  }

  /* 3 лінії рівні */
  .lrlkczl .pctj::before {
    width: 22px; height: 17px;
    background:
      linear-gradient(currentColor, currentColor) 0 0    / 100% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 50%  / 100% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 100% / 100% 2px no-repeat;
  }

  /* 3 лінії спадні: 100 → 70 → 42% */
  .n6kgm2f5 .pctj::before {
    width: 22px; height: 17px;
    background:
      linear-gradient(currentColor, currentColor) 0 0    / 100% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 50%  /  70% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 100% /  42% 2px no-repeat;
  }

  /* 3 лінії, середня коротша: 100 → 52 → 100% */
  .lue3 .pctj::before {
    width: 22px; height: 17px;
    background:
      linear-gradient(currentColor, currentColor) 0 0    / 100% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 50%  /  52% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 100% / 100% 2px no-repeat;
  }

  /* 4 лінії спадні: 100 → 76 → 52 → 28% */
  .wbl19av .pctj::before {
    width: 22px; height: 25px;
    background:
      linear-gradient(currentColor, currentColor) 0 0     / 100% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 33.3% /  76% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 66.6% /  52% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 100%  /  28% 2px no-repeat;
  }

}

/* ── nav_mobile: стиль мобільного меню та кнопки бургера ────────────────────*/
/* default = поточна поведінка, без overrides */

/* float: плаваюча картка поряд із бургером ─────────────────────────────── */
@media (max-width: 640px) {
  .cxtqgopz .pctj {
    padding: 5px 14px;
  }
  .cxtqgopz .ds2h5sn {
    left: auto; right: 12px; top: 54px;
    width: auto; min-width: 180px;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
    padding: 6px 0;
  }
  .cxtqgopz .ds2h5sn li a {
    border-bottom: none; padding: 10px 22px;
  }
  .cxtqgopz .ds2h5sn li a:hover { background: var(--bg-raised); }
}

/* drawer: висувається з правого боку ───────────────────────────────────── */
@media (max-width: 640px) {
  .top3jwi9 .pctj {
    padding: 5px 10px;
  }
  .top3jwi9 .ds2h5sn {
    display: flex !important;
    position: fixed;
    top: 0; right: 0; bottom: 0; left: auto;
    width: 72vw; max-width: 280px;
    background: var(--bg-surface);
    border-left: 1px solid var(--border);
    border-top: none; border-radius: 0;
    padding: 72px 0 24px;
    transform: translateX(105%);
    transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
    z-index: 900;
    box-shadow: -4px 0 24px rgba(0,0,0,0.22);
  }
  .top3jwi9 .ds2h5sn.zbpnckt { transform: translateX(0); }
  .top3jwi9 .ds2h5sn li a {
    padding: 14px 28px; font-size: 1rem; border-bottom: 1px solid var(--border);
  }
  .top3jwi9 .ds2h5sn li:last-child a { border-bottom: none; }
}

/* sheet: з'їжджає знизу ────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .qms3pxm .pctj {
    padding: 5px 10px;
  }
  .qms3pxm .ds2h5sn {
    display: flex !important;
    position: fixed;
    bottom: 0; left: 0; right: 0; top: auto;
    border-radius: 18px 18px 0 0;
    border-top: 1px solid var(--border); border-left: none; border-right: none;
    padding: 20px 0 28px;
    transform: translateY(110%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    z-index: 900;
    box-shadow: 0 -6px 28px rgba(0,0,0,0.2);
  }
  .qms3pxm .ds2h5sn::before {
    content: ""; display: block;
    width: 40px; height: 4px;
    background: var(--border); border-radius: 2px;
    margin: 0 auto 14px;
  }
  .qms3pxm .ds2h5sn.zbpnckt { transform: translateY(0); }
  .qms3pxm .ds2h5sn li a {
    text-align: center; border-bottom: none; padding: 13px 28px; font-size: 1rem;
  }
}

/* overlay: повноекранне меню ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .jycokr .pctj {
    padding: 5px 10px;
  }
  .jycokr .ds2h5sn {
    display: flex !important;
    position: fixed; inset: 0;
    background: color-mix(in srgb, var(--bg-surface) 96%, transparent);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 4px; border: none; border-radius: 0; padding: 0;
    opacity: 0; pointer-events: none;
    transition: opacity 0.22s ease; z-index: 900;
  }
  .jycokr .ds2h5sn.zbpnckt { opacity: 1; pointer-events: auto; }
  .jycokr .ds2h5sn li a {
    font-size: 1.5rem; font-weight: 700; border-bottom: none;
    padding: 14px 48px; letter-spacing: 0.01em;
  }
}

/* ── nav_burger_shape: форма обводки бургера (перевизначає hardcoded radius) */
@media (max-width: 640px) {
  .dt5yvub     .pctj { border-radius: 0 !important; }
  .bvyu3r8   .pctj { border-radius: 8px !important; }
  .lku6 .pctj { border-radius: 50% !important; }
  .oxicv   .pctj { border-radius: 999px !important; }
}

/* ── nav_logo_size: розмір логотипу в навбарі ──────────────────────────────*/
/* default = 46px (задано в базовому .nnt3) */
.o5u7z .nnt3 { height: 28px; }
.zgov .nnt3 { height: 54px; }
.klmsfj .nnt3 { height: 54px; }

/* ── star_style: вигляд зірок (showcase + review) ───────────────────────────*/
/* default = accent color (задано в базових стилях .cx1w / .ciymc) */
.p5cpq2nq    .cx1w, .p5cpq2nq    .ciymc { color: #f59e0b; }
.ts19      .cx1w { font-size: 1rem; letter-spacing: 1.5px; }
.ts19      .ciymc   { font-size: 1.35rem; }
.nbbua    .cx1w, .nbbua    .ciymc { color: var(--text-muted); opacity: 0.7; letter-spacing: 2px; }
.jprr17     .cx1w, .jprr17     .ciymc { color: var(--accent); letter-spacing: 3px; font-size: 0.7rem; }
.p0dlvt .cx1w, .p0dlvt .ciymc { color: var(--accent); letter-spacing: 2px; }
.zy2iobx   .cx1w, .zy2iobx   .ciymc { color: #e91e63; letter-spacing: 2px; }
.l95y6x04  .cx1w, .l95y6x04  .ciymc { color: var(--accent); letter-spacing: 2px; font-size: 0.65rem; }
.kzoia3xk     .cx1w, .kzoia3xk     .ciymc { color: var(--accent); letter-spacing: 2px; font-size: 0.7rem; }

/* ── cs_cols: вигляд колонок таблиці оферів ────────────────────────────────*/
/* default = current: label above val, centered, flex:1 */

/* divided: вертикальний роздільник між сусідніми колонками даних */
.vingr3ed .vk090efy + .vk090efy {
  border-left: 1px solid var(--border); padding-left: 10px;
}

/* tall: вищі рядки showcase з більшими відступами */
.x0xurqc .dn9tv4qm { padding: 18px 24px; min-height: 68px; }

/* bold: великі акцентні значення + малі uppercase лейбли */
.po0hhx .yefgz {
  font-size: 0.62rem; text-transform: uppercase; letter-spacing: .07em;
  color: var(--text-muted);
}
.po0hhx .qiwn0o {
  font-size: 0.88rem; font-weight: 700; color: var(--accent);
}

/* tinted: кожна колонка даних з тонованим фоном */
.h6l7 .vk090efy {
  background: var(--accent-bg); border-radius: 6px; padding: 2px 8px;
}

/* ── cs_rank: нумерація рядків showcase ────────────────────────────────────*/
/* none = без нумерації (default) */

/* corner: маленький #1/#2 у правому верхньому куті */
.bygfodi .j2zafgnr { counter-reset: cs-rank; }
.bygfodi .dn9tv4qm { position: relative; counter-increment: cs-rank; }
.bygfodi .dn9tv4qm::before {
  content: "#" counter(cs-rank);
  position: absolute; top: 8px; right: 10px;
  font-size: 0.68rem; font-weight: 800; letter-spacing: -.01em;
  color: var(--accent); opacity: 0.5; font-variant-numeric: tabular-nums;
}

/* col: велика напівпрозора цифра як перша flex-колонка рядка */
.cfokluu3 .j2zafgnr { counter-reset: cs-rank; }
.cfokluu3 .dn9tv4qm::before {
  counter-increment: cs-rank;
  content: counter(cs-rank);
  font-size: 1.6rem; font-weight: 900;
  color: var(--accent); opacity: 0.2;
  min-width: 24px; text-align: center;
  align-self: center; flex-shrink: 0;
  font-variant-numeric: tabular-nums; line-height: 1;
}

/* ── faq_style: вигляд FAQ ─────────────────────────────────────────────────*/
/* default = bg-card + +/− тогл (базові стилі .wxpk вже задано) */

/* line: тільки нижня межа, без карток */
.ujlhhzj .wxpk {
  background: none; border-radius: 0; margin-bottom: 0;
  border-bottom: 1px solid var(--border); overflow: visible;
}
.ujlhhzj .wxpk summary { padding: 16px 2px; color: var(--text-primary); font-size: 0.98rem; }
.ujlhhzj .wxpk p { padding: 0 2px 16px; }

/* pill: summary як pill-бейдж з акцентним фоном */
.zt9jfea .wxpk { background: none; border-radius: 0; overflow: visible; margin-bottom: 12px; }
.zt9jfea .wxpk summary {
  background: var(--accent-bg); border-radius: 100px;
  padding: 10px 22px; color: var(--accent-light); font-weight: 700;
}
.zt9jfea .wxpk summary::after { content: "›"; font-size: 1.2em; }
.zt9jfea .wxpk[open] summary::after { content: "‹"; }
.zt9jfea .wxpk p { padding: 10px 22px 4px; }

/* outlined: ліва акцентна смуга замість суцільного фону */
.cdmohyo .wxpk {
  background: var(--bg-card); border-radius: 0;
  border-left: 3px solid var(--accent); overflow: hidden;
  margin-bottom: 10px;
}
.cdmohyo .wxpk summary { color: var(--text-primary); padding-left: 16px; }
.cdmohyo .wxpk summary::after { content: "›"; font-size: 1.1em; }
.cdmohyo .wxpk[open] summary::after { content: "‹"; }
.cdmohyo .wxpk p { padding-left: 16px; }

/* flush: суцільний акордеон без відступів між питаннями */
.ffohi .amzrbs { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.ffohi .wxpk {
  background: var(--bg-card); border-radius: 0; margin-bottom: 0;
  border-bottom: 1px solid var(--border);
}
.ffohi .wxpk:last-child { border-bottom: none; }
.ffohi .wxpk summary { color: var(--text-primary); border-radius: 0; }
.ffohi .wxpk summary::after { content: "›"; font-size: 1.1em; }
.ffohi .wxpk[open] summary::after { content: "‹"; }

/* accent: заливка summary акцентним кольором */
.rckc .wxpk { overflow: hidden; }
.rckc .wxpk summary {
  background: var(--accent); color: #fff; border-radius: 0;
}
.rckc .wxpk summary::after { color: rgba(255,255,255,.75); }
.rckc .wxpk[open] summary { border-radius: 0; }

/* ── Static pages: contact & privacy ────────────────────────────────────────*/
.i71esud { max-width: 1100px; margin: 0 auto; padding: 40px 24px 80px; }
.b5qyk86h {
  text-align: center; padding: 48px 0 36px;
  border-bottom: 1px solid var(--border); margin-bottom: 44px;
}
.wjwx {
  font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800;
  color: var(--text-primary); margin-bottom: 12px;
}
.n795rl { color: var(--text-muted); font-size: 1.05rem; }

/* ── Contact form ────────────────────────────────────────────────────────────*/
.ja7erxd {
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start;
  max-width: 680px;
}

.zi8l {
  background: var(--bg-card); border: 1px solid var(--border-alt);
  border-radius: 14px; padding: 32px;
}
.whcte { margin-bottom: 20px; }
.bv1xk {
  display: block; color: var(--text-muted); font-size: 0.78rem;
  font-weight: 600; margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.vo0s {
  width: 100%; background: var(--bg-page);
  border: 1px solid var(--border-alt); border-radius: 8px;
  padding: 10px 14px; color: var(--text-primary);
  font-size: 0.95rem; font-family: inherit;
  outline: none; transition: border-color .15s; box-sizing: border-box;
}
.vo0s:focus { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-bg); }
.mety9 { resize: vertical; min-height: 130px; }
.t6fsjwm { width: 100%; margin-top: 8px; }

.sr94hzi { display: flex; flex-direction: column; gap: 14px; }
.a12bh {
  background: var(--bg-card); border: 1px solid var(--border-alt);
  border-radius: 12px; padding: 18px 20px;
  display: flex; align-items: flex-start; gap: 14px;
}
.lpveh44 { font-size: 1.15rem; color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.rgzm {
  color: var(--text-muted); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 3px;
}
.biig { color: var(--text-primary); font-weight: 600; font-size: 0.92rem; word-break: break-all; }
.pwifh { align-items: flex-start; }
.pwifh p { color: var(--text-faint); font-size: 0.82rem; line-height: 1.55; margin: 0; }
.pvkhk .km7x { color: var(--text-muted); font-size: 0.88rem; line-height: 1.55; margin: 4px 0 0; }

/* ── Static page sections (about, faq on contact page) ───────────────────────*/
.p4bxmk {
  margin-top: 48px; padding-top: 40px;
  border-top: 1px solid var(--border);
}
.cj9y015 {
  font-size: 1.25rem; font-weight: 700; color: var(--accent-light);
  margin-bottom: 14px;
}
.hbtp { color: var(--text-muted); line-height: 1.75; }
.auq60m18 { color: var(--text-muted); line-height: 1.75; padding-left: 1.4em; }
.auq60m18 li { margin-bottom: 6px; }

/* contact FAQ */
.tff7r { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.to0d1kp {
  background: var(--bg-card); border: 1px solid var(--border-alt);
  border-radius: 10px; overflow: hidden;
}
.sz32gf {
  padding: 14px 18px; cursor: pointer; font-weight: 600;
  color: var(--text-primary); font-size: 0.95rem; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.sz32gf::after { content: "+"; color: var(--accent); font-size: 1.2rem; flex-shrink: 0; }
.to0d1kp[open] .sz32gf::after { content: "−"; }
.t0c1j09l { padding: 0 18px 14px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ── Privacy policy ──────────────────────────────────────────────────────────*/
.mhgbg { max-width: 760px; margin: 0 auto; }
.jirsb8z { color: var(--text-muted); line-height: 1.75; margin-bottom: 36px; }
.tv54bjwp { margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--border); }
.tv54bjwp:last-child { border-bottom: none; }
.tv54bjwp h2 {
  font-size: 1.1rem; font-weight: 700; color: var(--accent-light);
  margin-bottom: 12px;
}
.tv54bjwp p { color: var(--text-muted); line-height: 1.75; margin: 0; }

/* ── About page layouts ──────────────────────────────────────────────────────*/
.tjpqvv { max-width: 760px; margin: 0 auto; }
.tgdb { margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--border); }
.tgdb:last-child { border-bottom: none; }
.u8rqmvm { font-size: 1.1rem; font-weight: 700; color: var(--accent-light); margin-bottom: 12px; }
.tgdb p { color: var(--text-muted); line-height: 1.75; margin: 0; }
.tgdb ul.auq60m18 { margin: 0; }

.wgii { max-width: 900px; margin: 0 auto; }
.y5xnwg { display: grid; grid-template-columns: 200px 1fr; gap: 32px; padding-bottom: 32px; margin-bottom: 32px; border-bottom: 1px solid var(--border); align-items: start; }
.y5xnwg:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.y5xnwg .u8rqmvm { margin: 0; font-size: 1rem; }
.y5xnwg .jsn3i9en p { color: var(--text-muted); line-height: 1.75; margin: 0; }
@media (max-width: 640px) { .y5xnwg { grid-template-columns: 1fr; gap: 10px; } }

.yen2gbu { max-width: 640px; margin: 0 auto; text-align: center; }
.hlaeyag { margin-bottom: 48px; }
.hlaeyag .u8rqmvm { font-size: 1.2rem; font-weight: 700; color: var(--accent-light); margin-bottom: 14px; }
.hlaeyag p { color: var(--text-muted); line-height: 1.75; margin: 0; }

.bjqz7v { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.z8ra { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.thvib { font-size: 1.05rem; font-weight: 700; color: var(--accent-light); margin: 0 0 12px; }
.z8ra p { color: var(--text-muted); line-height: 1.7; margin: 0; font-size: 0.9rem; }
.z8ra .auq60m18 { margin: 0; font-size: 0.9rem; }
@media (max-width: 640px) { .bjqz7v { grid-template-columns: 1fr; } }

/* ── Privacy timeline layout ─────────────────────────────────────────────────*/
.oq26m { max-width: 760px; margin: 0 auto; }
.koyp7d { position: relative; padding-left: 28px; }
.koyp7d::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--border); }
.ovvu { position: relative; display: flex; gap: 20px; padding-bottom: 32px; }
.ovvu:last-child { padding-bottom: 0; }
.efgvnpbw { position: absolute; left: -28px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--accent); border: 3px solid var(--bg-surface); flex-shrink: 0; }
.thxsi h2 { font-size: 1.05rem; font-weight: 700; color: var(--accent-light); margin: 0 0 8px; }
.thxsi p { color: var(--text-muted); line-height: 1.75; margin: 0; }

/* ── Static hero variants ────────────────────────────────────────────────────*/
.amsi1 {
  background: var(--accent-bg); border-radius: 14px;
  border-bottom: none; padding: 44px 36px; margin-bottom: 44px;
}
.amsi1 .wjwx { color: var(--accent-light); }
.ws0w23d {
  text-align: left; border-bottom: none;
  border-left: 4px solid var(--accent); padding: 28px 0 28px 28px;
  margin-bottom: 44px;
}
.ws0w23d .wjwx { font-size: 2rem; }
.ws0w23d .n795rl { max-width: 680px; }
.rgj9cqct {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; text-align: left; padding: 40px 0 32px;
  border-bottom: 1px solid var(--border); margin-bottom: 44px;
}
.rgj9cqct .wjwx { margin: 0; font-size: 1.8rem; flex-shrink: 0; max-width: 45%; }
.rgj9cqct .n795rl  { margin: 0; }
@media (max-width: 640px) { .rgj9cqct { flex-direction: column; } }

.n6faht68 {
  background: linear-gradient(135deg, var(--accent-bg) 0%, var(--bg-surface) 100%);
  border-bottom: none; padding: 40px 32px 36px; margin-bottom: 32px; border-radius: 0 0 16px 16px;
}
.n6faht68 .wjwx { color: var(--accent-light); }
.iijs {
  background: var(--accent); border-bottom: none;
  padding: 40px 32px 36px; margin-bottom: 32px;
}
.iijs .wjwx { color: #fff; }
.iijs .n795rl  { color: rgba(255,255,255,0.85); }

/* ── Contact: layout variants ────────────────────────────────────────────────*/
/* side = default (already in .ja7erxd) */

/* top layout: info row above, full-width form */
.se6w {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px;
}
.se6w .a12bh { flex: 1 1 180px; }
.agefu { max-width: 680px; margin: 0 auto; }
.huzy {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px;
}
@media (max-width: 540px) { .huzy { grid-template-columns: 1fr; } }

/* ── Contact: form style variants ────────────────────────────────────────────*/
/* card = default (already set) */
.hpkrjung { background: transparent; border-color: transparent; padding-left: 0; padding-right: 0; }
.hpkrjung .vo0s {
  border: none; border-bottom: 2px solid var(--border-alt);
  border-radius: 0; background: transparent; padding-left: 0; padding-right: 0;
}
.hpkrjung .vo0s:focus { border-bottom-color: var(--accent); box-shadow: none; }
.ncb9ha81 .vo0s { background: var(--bg-raised); border-color: transparent; }
.ncb9ha81 .vo0s:focus { background: var(--bg-card); border-color: var(--accent); }
.g69gj .vo0s { border-radius: 100px; padding: 11px 20px; }
.g69gj .mety9 { border-radius: 14px; }

/* ── Privacy: accordion layout ───────────────────────────────────────────────*/
.mjwguh2b {
  background: var(--bg-card); border: 1px solid var(--border-alt);
  border-radius: 10px; overflow: hidden; margin-bottom: 10px;
}
.mjwguh2b summary {
  padding: 16px 20px; cursor: pointer; font-weight: 700;
  color: var(--accent-light); font-size: 1.05rem; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.mjwguh2b summary::-webkit-details-marker { display: none; }
.mjwguh2b summary::after { content: "+"; color: var(--accent); font-size: 1.2rem; flex-shrink: 0; }
.mjwguh2b[open] summary::after { content: "−"; }
.nmum7z5g {
  padding: 4px 20px 16px; color: var(--text-muted); line-height: 1.75;
  border-top: 1px solid var(--border);
}

/* ── Privacy: grid layout ────────────────────────────────────────────────────*/
.po9iek {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width: 640px) { .po9iek { grid-template-columns: 1fr; } }
.bdy2r {
  background: var(--bg-card); border: 1px solid var(--border-alt);
  border-radius: 12px; padding: 22px 24px;
}
.bdy2r h2 {
  font-size: 1rem; font-weight: 700; color: var(--accent-light); margin-bottom: 10px;
}
.bdy2r p { color: var(--text-muted); line-height: 1.7; margin: 0; font-size: 0.9rem; }

/* ── Privacy: numbered layout ────────────────────────────────────────────────*/
.wjryyb { counter-reset: priv-count; }
.xc835y {
  counter-increment: priv-count;
  display: grid; grid-template-columns: 52px 1fr; gap: 0 20px;
  margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--border);
}
.xc835y:last-child { border-bottom: none; }
.g7bhw7wz {
  font-size: 2.4rem; font-weight: 800; color: var(--accent);
  opacity: 0.3; line-height: 1.1; font-variant-numeric: tabular-nums;
}
.xc835y h2 {
  font-size: 1.1rem; font-weight: 700; color: var(--accent-light); margin-bottom: 10px;
}
.xc835y p { color: var(--text-muted); line-height: 1.75; margin: 0; }

/* Service page list + faq elements */
.tljwk8dz { color: var(--text-muted); line-height: 1.75; padding-left: 1.4em; margin: 0; }
.tljwk8dz li { margin-bottom: 6px; }
.fclct9 dt { font-weight: 600; color: var(--text); margin-top: 16px; }
.fclct9 dd { color: var(--text-muted); line-height: 1.75; margin: 4px 0 0 0; }

/* ── Byline slots — position control ── */
.i7tg5l{display:none}
.i7tg5l:empty,.t4wy6a:empty{display:none}
.wed9gp{position:relative;overflow:visible}

/* hero slot — shown for all hero positions */
.qh8i .igteuw,.di0zx9j1 .igteuw,
.brp6wysk .igteuw,.qpwhkib .igteuw,
.vfhu64 .igteuw,.pz0le .igteuw{display:block}
.uomkxe .aed04{display:block}

/* shared overlay: centered container matching hero-content width (always 1100px) */
.qh8i .igteuw,.di0zx9j1 .igteuw,
.brp6wysk .igteuw,.qpwhkib .igteuw,
.vfhu64 .igteuw{position:absolute;z-index:3;left:50%;transform:translateX(-50%);width:100%;max-width:1100px;padding:0 24px;box-sizing:border-box}
/* overlay byline badge */
.qh8i .igteuw .t4wy6a,.di0zx9j1 .igteuw .t4wy6a,
.brp6wysk .igteuw .t4wy6a,.qpwhkib .igteuw .t4wy6a,
.vfhu64 .igteuw .t4wy6a{margin:0;font-size:.75rem;opacity:1;color:#fff;background:color-mix(in srgb, var(--accent) 35%, rgba(0,0,0,.45));backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);padding:5px 12px;border-radius:6px;display:inline-flex;width:auto}
/* overlay positions: strip per-date backgrounds and borders — container badge is enough */
.qh8i .a600o,.di0zx9j1 .a600o,
.brp6wysk .a600o,.qpwhkib .a600o,
.vfhu64 .a600o{background:transparent!important;border:none!important;padding:0;border-radius:0;color:inherit!important}
/* top positions */
.qh8i .igteuw,.di0zx9j1 .igteuw{top:12px}
.qh8i .igteuw .t4wy6a{margin-right:auto}
.di0zx9j1 .igteuw .t4wy6a{margin-left:auto}
.di0zx9j1 .igteuw{text-align:right}
/* bottom positions */
.brp6wysk .igteuw,.qpwhkib .igteuw{bottom:12px}
.brp6wysk .igteuw .t4wy6a{margin-right:auto}
.qpwhkib .igteuw .t4wy6a{margin-left:auto}
.qpwhkib .igteuw{text-align:right}
/* center overlay at bottom of hero */
.vfhu64 .igteuw{bottom:16px}
.vfhu64 .igteuw .t4wy6a{margin:0 auto}

/* hero-bottom: below hero, matches page-wrap width */
.pz0le .igteuw{max-width:var(--content-mw,1100px);margin:0 auto;padding:8px 24px}
.pz0le .igteuw .t4wy6a{margin:0}
/* hero-bottom + split: align to text column start */
.pz0le .ovlqv~.igteuw,
.pz0le .oelmt~.igteuw{max-width:none;margin:0;padding:8px clamp(24px,calc(50vw - 476px),96px)}
.pz0le .ovlqv~.igteuw .t4wy6a,
.pz0le .oelmt~.igteuw .t4wy6a{justify-content:flex-start}

/* split hero: overlay positions fall back to static below hero (too complex to overlay on split 50/50) */
.ovlqv~.igteuw,.oelmt~.igteuw{position:static!important;left:auto!important;right:auto!important;top:auto!important;bottom:auto!important;transform:none!important;width:100%!important;max-width:none!important;padding:8px clamp(24px,calc(50vw - 476px),96px)!important}
.ovlqv~.igteuw .t4wy6a{justify-content:flex-start;margin-left:0;margin-right:auto;background:transparent;color:var(--text-body);backdrop-filter:none;-webkit-backdrop-filter:none}
.oelmt~.igteuw .t4wy6a{justify-content:flex-end;margin-left:auto;margin-right:0;background:transparent;color:var(--text-body);backdrop-filter:none;-webkit-backdrop-filter:none}

/* post-hero: inside page-wrap, inherits its width naturally */
.aed04 .t4wy6a{margin:0 0 12px}

/* ── Byline (compact author + dates) ── */
.t4wy6a{display:flex;flex-wrap:wrap;align-items:center;gap:6px 10px;font-size:.82rem;color:var(--text-muted);margin:10px 0 16px}
.q7zjm99{width:28px;height:28px;border-radius:50%;object-fit:cover;flex-shrink:0}
.tvicz{font-weight:600;color:var(--text-heading);opacity:1}
.l0tjuns::before{content:"·";margin:0 2px;opacity:.5}
.a600o{white-space:nowrap}

/* byline author style: text — no avatar */
.pc09f6pk .q7zjm99{display:none}

/* byline: hide author parts when author_pos=none or end (dates still show) */
/* author visibility controlled structurally in templates (not CSS display:none) */

/* ── Date style variants ── */
/* plain: default, no extra styling */

/* chips: pill badges */
.wzvmn .a600o{background:var(--date-bg, var(--accent-bg));padding:3px 10px;border-radius:99px;font-size:.78rem}
.wzvmn .l0tjuns::before{content:""}

/* cards: mini bordered cards */
.e19e .a600o{background:var(--date-bg, var(--accent-bg));padding:6px 12px;border-radius:var(--radius, 6px);font-size:.78rem;display:inline-flex;align-items:center;gap:4px}
.e19e .l0tjuns::before{content:""}

/* bar: single row with background */
.k0pf0 .t4wy6a{background:var(--date-bg, var(--accent-bg));padding:8px 14px;border-radius:var(--radius, 6px);gap:8px 16px}

/* tag: accent left border tag */
.rsizwt6 .a600o{border-left:2px solid var(--accent);padding-left:8px;font-size:.78rem}
.rsizwt6 .l0tjuns::before{content:""}

/* accent: date text in accent color */
.e47qr6cl .a600o{color:var(--accent);opacity:1;font-weight:500}

/* underline: thin line beneath dates */
.nbao2hhq .a600o{border-bottom:1px solid currentColor;padding-bottom:2px}

/* muted: extra small and faded */
.q5cvw .t4wy6a{font-size:.78rem;color:var(--text-faint);letter-spacing:.02em}

/* ── Date background variants ── */
.kvgg8{--date-bg:var(--accent-bg)}
.v9laq{--date-bg:var(--accent-bg-light)}
.ijcj{--date-bg:transparent}

/* ── Date separator variants ── */
.hqqjq .l0tjuns::before{content:""}
.dh1gu8v .l0tjuns::before{content:"•";opacity:.4}
.dh1gu8v .a600o + .a600o::before{content:"•";margin-right:6px;opacity:.4}
.h3k52eu .l0tjuns::before{content:"/";opacity:.35}
.h3k52eu .a600o + .a600o::before{content:"/";margin-right:6px;opacity:.35}
.k1hszh .l0tjuns::before{content:"|";opacity:.3}
.k1hszh .a600o + .a600o::before{content:"|";margin-right:6px;opacity:.3}
.ysqps3g .l0tjuns::before{content:"—";opacity:.3}
.ysqps3g .a600o + .a600o::before{content:"—";margin-right:6px;opacity:.3}
.wo1po .l0tjuns::before{content:"◆";font-size:.5em;opacity:.35}
.wo1po .a600o + .a600o::before{content:"◆";font-size:.5em;margin-right:6px;opacity:.35}
.nupsyw6 .l0tjuns::before{content:"·";opacity:.4}
.nupsyw6 .a600o + .a600o::before{content:"·";margin-right:6px;opacity:.4}
.zz2eje .l0tjuns::before{content:"›";opacity:.4}
.zz2eje .a600o + .a600o::before{content:"›";margin-right:6px;opacity:.4}
.duumnjv .l0tjuns::before{content:"→";opacity:.35;font-size:.85em}
.duumnjv .a600o + .a600o::before{content:"→";font-size:.85em;margin-right:6px;opacity:.35}


/* ── Author box (full card at article end) ── */
.nqpu{display:flex;align-items:flex-start;gap:16px;max-width:var(--content-width, 960px);margin:32px auto 24px;padding:20px 24px}
.x1z714{width:56px;height:56px;border-radius:50%;object-fit:cover;flex-shrink:0}
.wkqmm{display:flex;flex-direction:column;gap:3px}
.hd37m4sp{font-size:.7rem;text-transform:uppercase;letter-spacing:.06em;color:var(--text-body);opacity:.55}
.pw2b5ot{font-weight:700;font-size:1rem;color:var(--text-heading)}
.g4c7{font-size:.85rem;color:var(--text-body);opacity:.8;line-height:1.5;margin-top:4px}

/* author box variants */
.jb6eini .nqpu{background:var(--surface-alt);border-radius:var(--radius, 8px);border:1px solid var(--border)}
.oruhk .nqpu{border-top:3px solid var(--accent);padding-top:18px}
.fsxky98 .nqpu{border-left:3px solid var(--accent);border-radius:0}
.cqyzfg0e .nqpu{padding:20px 0}

/* author box visibility by author_pos */
/* author-box visibility controlled structurally in templates */

@media(max-width:640px){
  .nqpu{flex-direction:column;align-items:center;text-align:center;gap:10px;padding:16px}
  .g4c7{max-width:100%}
}


/* ── color scheme ── */
:root {
  --accent:          #535586;
  --accent-light:    #8587bb;
  --accent-pale:     #bbbdf4;
  --grad-start:      #aaace2;
  --grad-end:        #e0e0ff;
  --bg-page: #dbd8e4;
  --bg-surface: #fcf8fe;
  --bg-card: #f5f2fb;
  --bg-card-inner: #efecf6;
  --bg-raised: #eae7f1;
  --bg-hover: #e4e1ed;
  --border: #b2b1bc;
  --border-alt: #7b7a84;
  --border-section: #b2b1bc;
  --text-primary: #32323b;
  --text-muted: #5f5e68;
  --bg-page:        #f8f9fa;
  --bg-surface:     #ffffff;
  --bg-card:        #ffffff;
  --bg-card-inner:  #f3f4f6;
  --bg-raised:      #eef0f2;
  --bg-hover:       #f3f4f6;
  --border:         #e5e7eb;
  --border-alt:     #d1d5db;
  --border-section: #e5e7eb;
  --text-body: #303035;
  --text-sub: #47464b;
  --text-faint: #6b6a6f;
  --text-dim: #929095;
  --text-label: #5f5e63;
  --text-value: #3b3b40;
  --accent-bg:       #e0e0ff;
  --accent-bg-light: #d0d1ff;
  --bg-tip:        #f0fdf4;
  --bg-warning:    #fffbeb;
  --bg-info:       #eff6ff;
  --bg-pros:       #f0fdf4;
  --bg-cons:       #fef2f2;
  --c-pros:        #15803d;
  --c-cons:        #b91c1c;
  --c-pros-label:  #16a34a;
  --c-tip-border:  #059669;
  --c-warn-border: #d97706;
  --c-stars:       #b45309;
  --c-arrow:       #d97706;
  --c-tag-pay:     #15803d;
}
:root { --logo-bg-opacity: 64%; }

/* ── variants ── */
body, button, input { font-family: "Electrolize", sans-serif; }

.bdiy4 .nmbq0vmq { font-size: 0; width: 1.2rem; flex-shrink: 0; }.bdiy4 .nmbq0vmq::before {  content: ""; display: inline-block;  font-family: "Font Awesome 6 Free"; font-weight: 900;  font-size: 1.1rem; line-height: 1; }.bdiy4 .qfvbh5     .nmbq0vmq::before { content: "";  color: var(--c-tip-border); }.bdiy4 .c9qfwuco .nmbq0vmq::before { content: ""; color: var(--c-warn-border); }.bdiy4 .bwqp    .nmbq0vmq::before { content: ""; color: #60a5fa; }.kc6j0pb .bdiy4 .qfvbh5     .nmbq0vmq::before { color: #10b981; }.kc6j0pb .bdiy4 .c9qfwuco .nmbq0vmq::before { color: #f43f5e; }.kc6j0pb .bdiy4 .bwqp    .nmbq0vmq::before { color: #a855f7; }.j28xd1l  .bdiy4 .qfvbh5     .nmbq0vmq::before { color: #eab308; }.j28xd1l  .bdiy4 .c9qfwuco .nmbq0vmq::before { color: #ef4444; }.j28xd1l  .bdiy4 .bwqp    .nmbq0vmq::before { color: #f97316; }.em7a  .bdiy4 .qfvbh5     .nmbq0vmq::before { color: #38bdf8; }.em7a  .bdiy4 .c9qfwuco .nmbq0vmq::before { color: #818cf8; }.em7a  .bdiy4 .bwqp    .nmbq0vmq::before { color: #2dd4bf; }.n3ge .bdiy4 .nmbq0vmq::before { color: var(--accent-light) !important; }

.koievhec .qg8i9wf8, .koievhec .ovlqv { min-height: 520px; }

.neo2eoak .t3xtz9::after, .neo2eoak .uxclf::after {  content: ""; font-family: "Font Awesome 6 Free"; font-weight: 900;  display: inline-block; margin-left: 6px; vertical-align: -0.05em;  font-size: 0.8em; line-height: 1; }

.gxmf9608 .xzmjeq::after,.gxmf9608 .qs456nyx::after {  content: "" !important; font-family: "Font Awesome 6 Free" !important;  font-weight: 900 !important; display: inline-block !important;  margin-left: 6px; vertical-align: -0.05em; font-size: 0.8em; line-height: 1; }

.xahj::before { content: '›'; font-size: 1.1em; }

.zk8bblnk .a600o::before{font-family:"Font Awesome 6 Free";font-weight:900;margin-right:5px;font-size:1em;opacity:.55}.zk8bblnk .a600o:first-of-type::before{content:"\f073"}.zk8bblnk .a600o:last-of-type::before{content:"\f303"}