/* ── Semantic color tokens — dark theme defaults ─────────────────────────────
   Будь-яка тема-варіант може переоверрайдити ці змінні через :root {}
   Змінні акцент-кольорів (--accent, --accent-light тощо) живуть у css_vars
   що генерується theme_css_vars() у build.divanh.
────────────────────────────────────────────────────────────────────────────── */
: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 ──────────────────────────────────────────────────────────────────*/
.h1o6vk49 {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.g7o6 {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  height: 62px; display: flex; align-items: center;
  justify-content: space-between; position: relative;
}
.ehwok80z {
  color: var(--accent-light);
  font-weight: 800; font-size: 1.15rem;
  text-decoration: none; display: flex; align-items: center; gap: 4px;
}
.k8ol { height: 46px; width: auto; max-width: 140px; object-fit: contain; border-radius: 6px; }
.x54ne84n { list-style: none; display: flex; column-gap: 20px; row-gap: 6px; flex-wrap: wrap; align-items: center; --msep-color: var(--text-primary); }
.x54ne84n a {
  color: var(--text-muted); white-space: nowrap;
  text-decoration: none; font-size: 0.88rem; transition: color 0.2s;
}
.x54ne84n a:hover { color: var(--accent-light); }

/* ── Navbar dropdown ─────────────────────────────────────────────────────────*/
.hfy4ut { position: relative; }
.jo3t5d89 {
  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 */
.b2723nle   .jo3t5d89 { border-radius: 0; }
.twc6h     .jo3t5d89 { border-radius: 6px; }
.dxwd58  .jo3t5d89 { border-radius: 14px; }
.prmu     .jo3t5d89 { border-radius: 24px; padding: 8px; }
/* rounded items to match container shape */
.twc6h .jo3t5d89 li:first-child a { border-top-left-radius: 4px; border-top-right-radius: 4px; }
.twc6h .jo3t5d89 li:last-child a { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; }
.dxwd58 .jo3t5d89 li:first-child a { border-top-left-radius: 10px; border-top-right-radius: 10px; }
.dxwd58 .jo3t5d89 li:last-child a { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; }
.prmu .jo3t5d89 li a { border-radius: 16px; }
/* nav_drop_sep — горизонтальні роздільники між пунктами дропдауну */
.t5vv3c8m  .jo3t5d89 li + li { border-top: 1px solid var(--border-alt); }
.mj2ddsi .jo3t5d89 li + li { border-top: 1px dashed var(--border-alt); }
.v59yktz .jo3t5d89 li + li { border-top: 1px dotted var(--border-alt); }
.x0kewy .jo3t5d89 li + li { border-top: 3px double var(--border-alt); }
/* Invisible bridge so mouse can travel from trigger to dropdown without losing hover */
.hfy4ut::after {
  content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 10px;
}
.hfy4ut:hover .jo3t5d89,
.hfy4ut:focus-within .jo3t5d89 { display: block; }
.jo3t5d89 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;
}
.jo3t5d89 li a:hover {
  color: var(--accent-light); background: var(--bg-hover);
}
@media (max-width: 640px) {
  .jo3t5d89 {
    position: static; transform: none; box-shadow: none;
    border: none; border-radius: 0; background: transparent;
    padding: 0 0 4px 16px;
  }
  .hfy4ut:hover .jo3t5d89,
  .hfy4ut:focus-within .jo3t5d89 { display: block; }
  .jo3t5d89 li a { padding: 8px 16px; font-size: 0.88rem; }
}

.oh5f1 {
  display: none; background: none; border: none;
  color: var(--text-muted); font-size: 1.4rem; cursor: pointer; padding: 4px 8px; line-height: 1;
}
.fwcqrnrg { display: none; }
@media (max-width: 640px) {
  .fwcqrnrg {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    z-index: 899; backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
  }
  .fwcqrnrg.vu19 { display: block; }
}
@media (max-width: 640px) {
  .oh5f1 { display: block; }
  .x54ne84n {
    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;
  }
  .x54ne84n.vu19 { display: flex; }
  .x54ne84n li a {
    display: block; padding: 11px 24px; font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
  }
  .x54ne84n li:last-child a { border-bottom: none; }
}

/* ── Hero: спільні стилі ─────────────────────────────────────────────────────*/
.jnix0xea { min-height: 480px; }
.v2yk {
  font-size: 2.6rem; font-weight: 800; color: var(--accent-pale);
  line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.01em;
}
.e0jyj { font-size: 1.15rem; margin-bottom: 28px; max-width: 720px; margin-left: auto; margin-right: auto; }
.tkrsctv .e0jyj { margin-left: 0; margin-right: 0; }
.dx7iun {
  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;
}
.dx7iun:hover { opacity: 0.88; }

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

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

/* hero-flat: без фону, просто текст на page bg (WP-style) */
.uqs4 {
  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);
}
.uqs4 .qdhqws {
  width: 100%; max-width: 1100px; padding: 24px 24px;
}
.uqs4 .v2yk { color: var(--text-primary); text-shadow: none; }
.uqs4 .e0jyj { color: var(--text-muted); }
.uqs4 .dx7iun { margin-top: 16px; }
.uqs4, .uqs4.jnix0xea { min-height: auto !important; }
.uqs4.px1tzo .qdhqws { text-align: center; }
.uqs4.tkrsctv   .qdhqws { text-align: left; }
/* flat hero: byline як звичайний текст, не оверлей */
.uqs4~.eld7{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}
.uqs4~.eld7 .kq75339n{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: градієнтний фон замість фото */
.iqoix9h9 {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}
/* hero_anim: shimmer — ледь помітний блиск по поверхні */
.siuxi .iqoix9h9,
.siuxi .oxy9f {
  position: relative; overflow: hidden;
}
.siuxi .iqoix9h9::after,
.siuxi .oxy9f::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 */
.bmuub .iqoix9h9,
.bmuub .oxy9f {
  animation: hg-breathe 10s ease-in-out infinite;
}
@keyframes hg-breathe {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.92; }
}
/* hero_anim: grain — ледь помітна зернистість поверх градієнту */
.q1vlcur0 .iqoix9h9,
.q1vlcur0 .oxy9f,
.q1vlcur0 .k2im4 .b368 {
  overflow: hidden;
}
.q1vlcur0 .iqoix9h9::after,
.q1vlcur0 .oxy9f::after,
.q1vlcur0 .k2im4 .b368::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 */
.gzezjga0 .iqoix9h9,
.gzezjga0 .oxy9f {
  position: relative; overflow: hidden;
}
.gzezjga0 .iqoix9h9::after,
.gzezjga0 .oxy9f::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); }
}
.gzezjga0 .k2im4 .b368 {
  overflow: hidden;
}
.gzezjga0 .k2im4 .b368::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 — градієнт з'являється при завантаженні */
.kkni .iqoix9h9,
.kkni .oxy9f,
.kkni .k2im4 .b368 {
  animation: hg-fadein 1.2s ease-out both;
}
@keyframes hg-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* hero-bg з фото — overlay анімації */
.siuxi .k2im4 .b368 {
  overflow: hidden;
}
.siuxi .k2im4 .b368::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;
}
.bmuub .k2im4 .b368 {
  animation: hg-breathe 10s ease-in-out infinite;
}

.iqoix9h9 .b368 {
  background: none;
}
.iqoix9h9 .v2yk { color: #fff; }
.iqoix9h9 .e0jyj { color: rgba(255,255,255,0.85); }
.iqoix9h9 .dx7iun { background: #fff; color: var(--accent); }
.iqoix9h9 .dx7iun:hover { opacity: 0.92; }

/* ── Hero anim: split layouts ─────────────────────────────────────────────── */
.siuxi .ct42 { position: relative; overflow: hidden; }
.siuxi .ct42::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;
}
.bmuub .ct42 {
  animation: hg-breathe 7s ease-in-out infinite;
}
.q1vlcur0 .ct42 { position: relative; overflow: hidden; }
.q1vlcur0 .ct42::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;
}
.gzezjga0 .ct42 { position: relative; overflow: hidden; }
.gzezjga0 .ct42::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;
}
.kkni .ct42 {
  animation: hg-fadein 1.2s ease-out both;
}


/* ── Hero: Split layout (текст + картинка поряд) ─────────────────────────────*/
.ct42 {
  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%);
}
.oi8z7zt2 {
  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);
}
.dltf {
  grid-area: media;
  position: relative; overflow: hidden; min-height: 320px;
}
/* img абсолютний щоб заповнити комірку grid повністю */
.mr4ooi {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.oxy9f {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
}
.ct42 .v2yk { text-shadow: none; color: var(--accent-pale); }
.ct42 .e0jyj { color: var(--text-muted); }

/* Split alignment — всередині text-колонки */
.ct42.px1tzo .oi8z7zt2 { align-items: center; text-align: center; }
.ct42.tkrsctv   .oi8z7zt2 { align-items: flex-start; text-align: left; }

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


/* split-rounded: картинка з rounded corners + тінь, не на весь блок */
.us1e .dltf {
  display: flex; align-items: center; justify-content: center;
  padding: 32px 32px 32px 0; overflow: visible;
}
.us1e .mr4ooi {
  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);
}
.us1e .oxy9f {
  position: static; width: 100%; aspect-ratio: 4/3; border-radius: 16px;
}
.us1e.zlbh5s2y .dltf { padding: 32px 0 32px 32px; }

/* split-inset: картинка з відступами і тінню, не на весь блок */
.m3q2g6t .dltf {
  display: flex; align-items: center; justify-content: center;
  padding: 40px 48px 40px 16px;
  overflow: visible;
}
.m3q2g6t .mr4ooi {
  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);
}
.m3q2g6t .oxy9f {
  position: static;
  width: 100%; aspect-ratio: 4/3;
  border-radius: 16px;
}

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

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

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

/* ── Hero: split-cards ────────────────────────────────────────────────────── */
.ef63 .iqds0n {
  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);
}
.zlzjc {
  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;
}
.zlzjc:last-child { border-bottom: none; }
.zlzjc:hover { background: rgba(255,255,255,0.14); }
.qz209p1 { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1; }
.wirwsy { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.h2mw8o { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ht9g { font-weight: 700; font-size: 0.95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.kv3wq { font-size: 0.82rem; color: rgba(255,255,255,0.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ib0z { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.x53t { font-weight: 800; font-size: 1.3rem; color: var(--accent-pale); }
.x53t small { font-size: 0.7rem; font-weight: 500; opacity: 0.6; }
.eed9q { font-size: 0.8rem; padding: 6px 14px; white-space: nowrap; }

/* ── Hero: cards-top ─────────────────────────────────────────────────────── */
.yi9y0 { padding-bottom: 0; }
.yi9y0 .qdhqws { padding-bottom: 24px; }
.yvouf {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  padding: 0 24px 32px; max-width: 960px; margin: 0 auto; width: 100%;
}
.jahxd12 {
  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;
}
.jahxd12:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.4); }
.l5rc { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.h3b1pe { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.nlhmno { font-weight: 700; font-size: 0.9rem; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tyhvkvqe { font-size: 0.8rem; color: rgba(255,255,255,0.75); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.kllgic { font-weight: 800; font-size: 1.3rem; color: var(--accent-pale); flex-shrink: 0; }
.kllgic small { font-size: 0.7rem; font-weight: 500; opacity: 0.6; }

/* ── Hero: offer-cards ──────────────────────────────────────────────────── */
.hvk0vpu .q4gr {
  display: flex !important; flex-direction: column; justify-content: center;
  gap: 6px; padding: 28px 24px;
}
.fgnm49 {
  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;
}
.fgnm49:hover { background: var(--bg-hover); }

/* ── Hero: floating-cards ────────────────────────────────────────────────── */
.axgsa .dltf { display: flex !important; align-items: center; justify-content: center; position: relative; }
.jozl {
  display: flex; flex-direction: column; gap: 12px;
  padding: 32px 24px; width: 100%; max-width: 420px;
}
.vikh {
  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;
}
.vikh:hover { transform: translateX(calc(var(--fi) * 12px)) translateY(-2px); }
.od2p { width: 46px; height: 46px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.e7psu { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.m890b6 { font-weight: 700; font-size: 0.85rem; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.xgh84qdj { font-size: 0.78rem; color: rgba(255,255,255,0.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.plq0asrj { font-weight: 800; font-size: 1.2rem; color: var(--accent-pale); flex-shrink: 0; }

/* ── Hero: numbered-top ──────────────────────────────────────────────────── */
.cicyii .qdhqws { max-width: 960px; }
.imeg9rf {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin: 28px 0 32px;
}
.nkw2kl {
  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;
}
.nkw2kl:hover { transform: translateY(-2px); background: rgba(0,0,0,0.55); }
.rvuifr { font-weight: 900; font-size: 1.5rem; color: var(--accent-pale); flex-shrink: 0; line-height: 1; }
.rh2rq { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.l5kguqb { font-weight: 700; font-size: 0.85rem; white-space: nowrap; }
.w5i5 { font-size: 0.78rem; color: rgba(255,255,255,0.7); white-space: nowrap; }


@media (max-width: 700px) {
  .ct42 { grid-template-columns: 1fr !important; grid-template-areas: "text" !important; }
  .ct42 .dltf { display: none !important; }
  .axgsa .dltf { display: none !important; }
  .ef63 .iqds0n { display: none !important; }
  .hvk0vpu .q4gr { display: none !important; }
  .oi8z7zt2  { padding: 36px 24px; }
  .ct42~.eld7,.zlbh5s2y~.eld7{max-width:100%;left:0;right:0;transform:none;padding:0 24px}
  /* cap hero height variants on mobile */
  .jnix0xea, .ct42 { min-height: 320px !important; }
  /* reduce oversized headings on mobile */
  .v2yk { font-size: clamp(1.7rem, 5.5vw, 2.4rem) !important; }
  /* cards-top: hide on mobile */
  .yvouf { display: none !important; }
  /* numbered: stack */
  .imeg9rf { flex-direction: column; align-items: center; }
  .nkw2kl { width: 100%; max-width: 340px; }
}

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

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

/* rounded */
.kzk3i .g7zfqcs        { border-radius: 16px; }
.kzk3i .jbyuh  { border-radius: 16px; }

/* shadow */
.ogsy8p .g7zfqcs         { box-shadow: 0 4px 14px rgba(0,0,0,0.18); border-radius: 8px; }
.ogsy8p .jbyuh   { border-radius: 8px; }


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

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

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

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

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

.hnej .et7gt:nth-child(even) .xjtf .l4v44n:nth-child(odd),
.ri1l1bd .et7gt:nth-child(even) .xjtf .l4v44n:nth-child(odd)  { background: var(--bg-card); }
.hnej .et7gt:nth-child(even) .xjtf .l4v44n:nth-child(even),
.ri1l1bd .et7gt:nth-child(even) .xjtf .l4v44n:nth-child(even) { background: var(--bg-card-inner); }

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

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

/* bar: ліва кольорова смуга */
.yjw8 h2.uteyx0eg {
  border-left: 4px solid var(--accent); padding-left: 14px;
}
/* underline: підкреслення знизу */
.wre14 h2.uteyx0eg {
  border-bottom: 2px solid var(--accent); padding-bottom: 10px;
  display: inline-block;
}
/* overline: тонка лінія зверху */
.w5bb0 h2.uteyx0eg {
  border-top: 3px solid var(--accent); padding-top: 12px;
  color: var(--text-primary);
}
/* dot: маленька кольорова крапка перед заголовком */
.jm76qo1 h2.uteyx0eg::before {
  content: ""; display: inline-block; width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  margin-right: 12px; vertical-align: middle;
}
/* plain: просто жирний текст, без декорацій */
.q46aj5 h2.uteyx0eg {
  color: var(--text-primary); font-size: 1.7rem;
}
/* slash: коса риска акцентного кольору перед текстом */
.vdfln h2.uteyx0eg::before {
  content: "/"; color: var(--accent); font-weight: 800;
  margin-right: 10px;
}
/* caps: великі літери, розріджений трекінг, тонка нижня лінія */
.nv8pu h2.uteyx0eg {
  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) ───────────────*/
.x30r8 { font-size: 1.35rem; font-weight: 700; color: var(--accent-light); margin-bottom: 12px; }

/* ── Lead & intro/outro ──────────────────────────────────────────────────────*/
.ew8au { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 16px; }
@media (max-width: 640px) { .ew8au { display: none; } }
.wlwq7 {
  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;
}
.t9bes6z { margin-right: 8px; color: var(--c-arrow); }
/* intro/outro — blended with body text (classes kept for easy re-styling) */
.bsh9y { font-size: inherit; color: var(--text-body); margin: 8px 0 16px; }
.j5b7js { font-size: inherit; color: var(--text-body); margin: 16px 0 0; }

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

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

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

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

/* pills: горизонтальні pill-бейджі, без заголовка, без рамки контейнера */
.wv1a4ol .lj98fcgw { background: none; border: none; box-shadow: none !important; padding: 12px 0; }
.wv1a4ol .khae5bm { display: none; }
.wv1a4ol .z8m3i83 { padding-left: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.wv1a4ol .z8m3i83 li { margin-bottom: 0; }
.wv1a4ol .z8m3i83 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;
}
.wv1a4ol .z8m3i83 a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* cards: сітка карток з номером-кружечком, з заголовком */
.abo5 .lj98fcgw { padding: 20px 20px 16px; }
.abo5 .z8m3i83 {
  padding-left: 0; list-style: none;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px;
  counter-reset: toc-c;
}
.abo5 .z8m3i83 li { counter-increment: toc-c; margin-bottom: 0; }
.abo5 .z8m3i83 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);
}
.abo5 .z8m3i83 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;
}
.abo5 .z8m3i83 a:hover { color: var(--accent-light); border-color: var(--accent); }

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

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

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

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

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

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

/* subs-flat: мінімальний, без фону */
.wd6kj .l4v44n { background: none; border-radius: 0; padding: 12px 0; }
.wd6kj .l4v44n + .l4v44n { border-top: 1px solid var(--border-section); }
.aebpm { color: var(--text-body); margin-bottom: 12px; font-size: inherit; }
.b1tym2 { 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.

.zr298 .bsh9y,
.zr298 .j5b7js,
.zr298 .aebpm,
.zr298 .b1tym2 { font-style: normal; color: var(--text-body); }

.d34yv3e3 .bsh9y,
.d34yv3e3 .j5b7js {
  font-style: italic;
  border-left: 3px solid var(--border-section); padding-left: 12px;
}
.d34yv3e3 .aebpm,
.d34yv3e3 .b1tym2 {
  font-style: italic;
  border-left: 2px solid var(--border); padding-left: 10px;
}

.btvw9q .bsh9y,
.btvw9q .j5b7js,
.btvw9q .aebpm,
.btvw9q .b1tym2 {
  font-style: normal;
  background: var(--bg-raised); border-radius: 6px;
  padding: 10px 14px; color: var(--text-sub);
}
────────────────────────────────────────────────────────────────────────────── */

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

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

.vf71     .fdab7 { list-style-type: "● "; }
.awn8c  .fdab7 { list-style-type: "■ "; }
.q5177tv .fdab7 { list-style-type: "◆ "; }
.q7gpx7    .fdab7 { list-style-type: "★ "; }

.vf71     .z6kid { list-style-type: "● "; }
.awn8c  .z6kid { list-style-type: "■ "; }
.q5177tv .z6kid { list-style-type: "◆ "; }
.q7gpx7    .z6kid { list-style-type: "★ "; }

.vf71    .fdab7 li::marker, .vf71    .z6kid li::marker,
.awn8c .fdab7 li::marker, .awn8c .z6kid li::marker,
.q5177tv .fdab7 li::marker, .q5177tv .z6kid li::marker,
.q7gpx7   .fdab7 li::marker, .q7gpx7   .z6kid li::marker {
  color: var(--accent); font-size: 0.8em;
}

/* ol: CSS-лічильник з кольоровим маркером */
.vf71 .xyiz,
.awn8c .xyiz,
.q5177tv .xyiz,
.q7gpx7 .xyiz {
  list-style: none;
  counter-reset: el-step;
  padding-left: 2.2em;
}
.vf71 .xyiz li,
.awn8c .xyiz li,
.q5177tv .xyiz li,
.q7gpx7 .xyiz li {
  list-style: none;
  counter-increment: el-step;
  position: relative;
}
.vf71 .xyiz li::before,
.awn8c .xyiz li::before,
.q5177tv .xyiz li::before,
.q7gpx7 .xyiz 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 — залежно від варіанту */
.vf71     .xyiz li::before { border-radius: 50%; }
.awn8c  .xyiz li::before { border-radius: 3px; }
.q5177tv .xyiz li::before { border-radius: 3px; }
.q7gpx7    .xyiz li::before { border-radius: 50%; }

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

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

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

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

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

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

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

.j2eptc { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin: 12px 0; }
.uz7dp { background: var(--bg-card-inner); border-radius: 8px; overflow: hidden; }
.qnkmoe { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.uilryp { background: var(--accent-bg-light); color: var(--accent); font-weight: 700; padding: 10px 14px; font-size: 0.9rem; }
.ixo5sa0l { padding: 10px 14px 4px; font-size: 0.88rem; color: var(--text-sub); }
.z6kid { padding: 4px 14px 12px 28px; font-size: 0.82rem; color: var(--text-muted); }
.z6kid li { margin-bottom: 3px; }
.huzv {
  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%;
}
.huzv::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%}
.uiwm8h .huzv { margin-left: auto; margin-right: auto; }
.uiwm8h .uilryp { background: transparent; text-align: center; }

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

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

/* top-circle: маленький кружечок по центру зверху */
.qix9y .qnkmoe {
  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 — повна ширина */
.dghl .uz7dp { display: grid; grid-template-columns: auto 1fr; }
.dghl .qnkmoe {
  grid-column: 1; grid-row: 1;
  width: 88px; height: 88px; aspect-ratio: 1/1; object-fit: cover; align-self: center;
}
.dghl .uilryp { grid-column: 2; }
.dghl .ixo5sa0l,
.dghl .z6kid { grid-column: 1 / -1; }

/* side-circle: кружечок зліва лише в першому рядку; body/list — повна ширина */
.m4ecb .uz7dp { display: grid; grid-template-columns: auto 1fr; align-items: start; }
.m4ecb .qnkmoe {
  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);
}
.m4ecb .uilryp { grid-column: 2; }
.m4ecb .ixo5sa0l,
.m4ecb .z6kid { grid-column: 1 / -1; }


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

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

/* glass: напівпрозорий фон з blur, без рамок */
.g7rcbml .uz7dp { 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); }
.g7rcbml .uilryp { background: none; color: var(--accent-light); font-weight: 700; }

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

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

/* numbered: CSS-лічильник у вигляді кружечка перед заголовком */
.ggkp .j2eptc { counter-reset: card-n; }
.ggkp .uz7dp  { counter-increment: card-n; }
.ggkp .uilryp { display: flex; align-items: center; gap: 10px; }
.ggkp .uilryp::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: мінімальний, нейтральний заголовок, тонка рамка */
.fofsl21 .uz7dp { background: var(--bg-surface); border: 1px solid var(--border); }
.fofsl21 .uilryp { background: none; color: var(--text-main); font-weight: 700; border-bottom: 1px solid var(--border); }

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

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

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

/* ── CTA button ──────────────────────────────────────────────────────────────*/
.pkijrr {
  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;
}
.pkijrr:hover { opacity: 0.85; }

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

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

/* pill = solid but very rounded */
.li9j .dx7iun { border-radius: 50px; }
.li9j .pkijrr  { border-radius: 50px; }
/* btn_pad */
.d37g .dx7iun { padding-left: 22px; padding-right: 22px; }
.d37g .pkijrr  { padding-left: 12px; padding-right: 12px; }
.buu2 .dx7iun { padding-left: 44px; padding-right: 44px; }
.buu2 .pkijrr  { padding-left: 24px; padding-right: 24px; }
.pe0i5r .dx7iun { padding-left: 56px; padding-right: 56px; }
.pe0i5r .pkijrr  { padding-left: 32px; padding-right: 32px; }

/* ── btn_icon: SVG-іконки на .dx7iun і .pkijrr (mask на currentColor) ──────*/
/* ::after — усі іконки після тексту (праворуч) */
.vxfu   .dx7iun::after, .vxfu   .pkijrr::after,
.d89b00 .dx7iun::after, .d89b00 .pkijrr::after,
.gcdvtv4    .dx7iun::after, .gcdvtv4    .pkijrr::after,
.c1w5w    .dx7iun::after, .c1w5w    .pkijrr::after,
.r6eyomj    .dx7iun::after, .r6eyomj    .pkijrr::after,
.pdko4ncb     .dx7iun::after, .pdko4ncb     .pkijrr::after,
.feqducop    .dx7iun::after, .feqducop    .pkijrr::after,
.r2d9   .dx7iun::after, .r2d9   .pkijrr::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 — кожна іконка */
.vxfu .dx7iun::after, .vxfu .pkijrr::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");
}
.d89b00 .dx7iun::after, .d89b00 .pkijrr::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");
}
.gcdvtv4 .dx7iun::after, .gcdvtv4 .pkijrr::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");
}
.c1w5w .dx7iun::after, .c1w5w .pkijrr::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");
}
.r6eyomj .dx7iun::after, .r6eyomj .pkijrr::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");
}
.pdko4ncb .dx7iun::after, .pdko4ncb .pkijrr::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");
}
.feqducop .dx7iun::after, .feqducop .pkijrr::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");
}
.r2d9 .dx7iun::after, .r2d9 .pkijrr::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 ────────*/
.ot2cn8h   .fzywk0::after, .ot2cn8h   .ha4gqp::after,
.u6gp .fzywk0::after, .u6gp .ha4gqp::after,
.c0uuvr    .fzywk0::after, .c0uuvr    .ha4gqp::after,
.aenfn    .fzywk0::after, .aenfn    .ha4gqp::after,
.bnx2fnak    .fzywk0::after, .bnx2fnak    .ha4gqp::after,
.ymb0     .fzywk0::after, .ymb0     .ha4gqp::after,
.ddeko7    .fzywk0::after, .ddeko7    .ha4gqp::after,
.t4t261   .fzywk0::after, .t4t261   .ha4gqp::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;
}
.ot2cn8h .fzywk0::after, .ot2cn8h .ha4gqp::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");
}
.u6gp .fzywk0::after, .u6gp .ha4gqp::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");
}
.c0uuvr .fzywk0::after, .c0uuvr .ha4gqp::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");
}
.aenfn .fzywk0::after, .aenfn .ha4gqp::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");
}
.bnx2fnak .fzywk0::after, .bnx2fnak .ha4gqp::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");
}
.ymb0 .fzywk0::after, .ymb0 .ha4gqp::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");
}
.ddeko7 .fzywk0::after, .ddeko7 .ha4gqp::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");
}
.t4t261 .fzywk0::after, .t4t261 .ha4gqp::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 ─────────────────────────────────────────────────────────*/
.uql5q { display: flex; flex-direction: column; gap: 6px; margin: 28px 0; }


.aifty {
  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 */
.aifty > [itemprop="item"] { display: contents; }
.aifty:hover { background: var(--bg-hover); }
.xgafs4q {
  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 */
.tgdmav9 .xgafs4q { background: #1a1a1a; }
.wy3dt0k .xgafs4q { background: rgba(128,128,128,.12); }
.ewh0 .xgafs4q { background: var(--bg-raised); }
.cwqo .xgafs4q { background: transparent; padding: 0; }
.n3qut7g { max-height: 34px; max-width: 80px; object-fit: contain; }
.ljbwa1 { font-weight: 700; font-size: .85rem; color: var(--accent-light); }
.erxx9yt { display: flex; align-items: center; gap: 12px; flex-shrink: 1; min-width: 0; }
.erj6o3f { font-weight: 700; font-size: .88rem; color: var(--text-primary); flex-shrink: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tl5zw { color: var(--accent); font-size: .8rem; letter-spacing: 1px; flex-shrink: 1; min-width: 0; }
.dbe8e { display: flex; flex-direction: column; align-items: center; font-size: .78rem; flex: 1 1 0; min-width: 0; }
.bdbkj3i { color: var(--text-label); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.y8u9xmq4 { color: var(--text-value); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.k75j1 { margin-left: auto; flex-shrink: 0; white-space: nowrap; }
.k75j1.pkijrr { padding-left: 16px !important; padding-right: 16px !important; }
/* планшет / мобіль: 1 картка в ряд */
@media (max-width: 720px) {
  .uql5q { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .uql5q .aifty { flex-direction: column; align-items: center; padding: 16px 12px; border-radius: 14px; gap: 8px; }
  .uql5q .erxx9yt { flex-direction: column; align-items: center; gap: 4px; width: 100%; }
  .uql5q .xgafs4q { width: 100%; min-width: unset; height: 52px; }
  .uql5q .n3qut7g { max-height: 40px; max-width: 110px; }
  .uql5q .erj6o3f { min-width: unset; text-align: center; white-space: normal; }
  .uql5q .dbe8e { flex-direction: row; justify-content: space-between; width: 100%; border-top: 1px solid var(--border); padding-top: 5px; }
  .uql5q .k75j1 { width: 100%; text-align: center; margin-left: 0; }
  .m05yk .aifty { row-gap: 8px !important; gap: 8px !important; }
}

/* ── Casino reviews ──────────────────────────────────────────────────────────*/
.tpgpzt8c {
  background: var(--bg-card);
  border-radius: 12px; margin: 24px 0; overflow: hidden;
  border: 1px solid var(--border-alt);
}
.yuex {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 24px; background: var(--bg-surface);
}
.wti2gbe {
  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;
}
.wti2gbe img { max-width: 80px; max-height: 50px; object-fit: contain; }
.h15pbg { color: var(--accent); font-weight: 700; font-size: 0.85rem; text-align: center; }
.bddlbvh { flex: 1; }
.bddlbvh h3 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 4px; }
.l9vv6oe { color: var(--c-stars); font-size: 1.1rem; }
.zxtqu { margin-bottom: 8px; }
.i6y6 { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 0.83rem; color: var(--text-muted); }
.dx95kej::before   { content: "★ "; color: var(--accent); }
.ns4d::before { content: "↓ "; color: var(--accent); }
.qyymdbm::before { content: "✦ "; color: var(--accent); }
.llyp { flex-shrink: 0; }
.dqvw img.e40t8hc { width: 100%; max-height: 240px; object-fit: cover; display: block; }
.fyr1j52p { padding: 20px 24px; }
.ooad1z { color: var(--text-muted); margin-bottom: 16px; }
.iw4wqk { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 14px; }
.nvi3lyk, .f4m26 { list-style: none; font-size: 0.9rem; }
.nvi3lyk li { color: var(--c-pros); margin-bottom: 4px; }
.f4m26 li { color: var(--c-cons); margin-bottom: 4px; }
/* CSS маркери для pros/cons замість символів в HTML */
.nvi3lyk li::before { content: "✓"; margin-right: 5px; }
.f4m26 li::before { content: "✗"; margin-right: 5px; }
.nhh43aqv .nvi3lyk li::before { content: "→"; }
.nhh43aqv .f4m26 li::before { content: "–"; }
.uz9j0  .nvi3lyk li::before { content: "★"; }
.uz9j0  .f4m26 li::before { content: "✕"; }
.ab072oc    .nvi3lyk li::before { content: "◆"; }
.ab072oc    .f4m26 li::before { content: "▲"; }
.x88x  .nvi3lyk li::before { content: "▶"; }
.x88x  .f4m26 li::before { content: "■"; }
.qfsa6p { margin-bottom: 8px; font-size: 0.85rem; color: var(--text-muted); }
.ig14hvz7 { background: var(--accent-bg); color: var(--accent-light); border-radius: 4px; padding: 2px 8px; margin: 2px 2px 2px 0; display: inline-block; }
.gdgxzpwb { background: var(--bg-pros); color: var(--c-tag-pay); }

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


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

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

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

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

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

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

/* ── Brand card (single brand, two-column hero) ─────────────────────────────*/
/* ═══════════════════════════════════════════════════════════════════════════
   BRAND CARD — shared tokens
   ═══════════════════════════════════════════════════════════════════════════ */
.hn90 {
  background: var(--bg-card);
  border: 1px solid var(--border-alt);
  border-radius: 12px;
  margin: 28px 0;
  overflow: hidden;
}
.uj8x0hl {
  width: 100px; height: 68px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border-radius: 10px; padding: 8px;
  flex-shrink: 0;
}
.uj8x0hl img { max-width: 100%; max-height: 100%; object-fit: contain; }
.p5juhm { font-size: 1.15rem; font-weight: 700; color: var(--text); }
.brwgg { display: flex; align-items: center; gap: 8px; }
.brwgg .l9vv6oe { font-size: .95rem; }
.brwgg strong { font-size: 1.1rem; color: var(--text); }
.os5usgr { border-radius: 8px; overflow: hidden; }
.os5usgr img { width: 100%; display: block; border-radius: 8px; }
.ovzna4u { text-align: center; flex-shrink: 0; }
.j4i4h { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; }
.e2fl9 { font-size: .82rem; color: var(--text-muted); font-weight: 500; }
.zrrmex { font-size: .88rem; font-weight: 600; color: var(--text); }
.sjeb .zrrmex { font-size: 1.02rem; font-weight: 700; color: var(--accent); }
.hn90 .hdph { gap: 10px; }
.hn90 .kvegx62, .hn90 .hyo95x { padding: 12px; }
.hn90 .kvegx62 ul, .hn90 .hyo95x ul { margin: 4px 0 0; padding-left: 18px; }
.hn90 .kvegx62 li, .hn90 .hyo95x li { font-size: .85rem; margin-bottom: 3px; }
.ef3n02 { font-size: .8rem; color: var(--text-muted); margin-top: 10px; }
.ef3n02 strong { color: var(--text-secondary); }
.ef3n02 .ig14hvz7 { margin: 2px 4px 2px 0; }

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

/* ── LAYOUT 2: hero — full-width screenshot header ────────────────────────── */
.vlyzva7 {
  position: relative; max-height: 240px; overflow: hidden;
}
.vlyzva7 > img { width: 100%; display: block; object-fit: cover; min-height: 160px; }
.tmcfz {
  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;
}
.tmcfz .uj8x0hl { background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border-radius: 10px; }
.tmcfz .p5juhm { color: #fff; font-size: 1.25rem; }
.tmcfz .brwgg strong { color: #fff; }
.tmcfz .brwgg .l9vv6oe { filter: brightness(1.2); }
.tmcfz .ovzna4u { margin-left: auto; white-space: nowrap; }
.js0o3 { flex: 1; }
.eacl {
  display: flex; align-items: center; gap: 16px; padding: 20px 24px;
  border-bottom: 1px solid var(--border-alt);
}
.eacl .ovzna4u { margin-left: auto; }
.pmcit69n { display: flex; flex-direction: column; gap: 16px; padding: 20px 24px; }
.t08tvuz .k10o07w {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--border-alt); border-radius: 8px; overflow: hidden;
}
.t08tvuz .j4i4h {
  flex: 1 1 auto; min-width: 120px;
  border-right: 1px solid var(--border-alt); border-bottom: 1px solid var(--border-alt);
}
.t08tvuz .sjeb { flex-basis: 100%; background: var(--accent-bg); border-right: none; }
@media (max-width: 720px) {
  .tmcfz { flex-wrap: wrap; gap: 10px; padding: 12px 16px; }
  .pmcit69n { padding: 16px; }
  .t08tvuz .j4i4h { min-width: 50%; }
}

/* ── LAYOUT 3: magazine — editorial 3-column ──────────────────────────────── */
.yf03acr {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-alt);
}
.fmew5 { flex: 1; }
.fmew5 .p5juhm { font-size: 1.3rem; }
.ksqalpe {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
}
.xsftvg32 { padding: 16px; border-right: 1px solid var(--border-alt); }
.xsftvg32 .os5usgr { height: 100%; }
.xsftvg32 .os5usgr img { height: 100%; object-fit: cover; }
.l1iqvp5t { padding: 0; border-right: 1px solid var(--border-alt); }
.l1iqvp5t .k10o07w { display: flex; flex-direction: column; }
.l1iqvp5t .j4i4h { border-bottom: 1px solid var(--border-alt); }
.l1iqvp5t .sjeb { background: var(--accent-bg); }
.vreceoq { padding: 16px; }
.vreceoq .hdph { grid-template-columns: 1fr; }
.h187 {
  padding: 12px 24px; border-top: 1px solid var(--border-alt);
  display: flex; flex-wrap: wrap; gap: 12px;
}
@media (max-width: 860px) {
  .ksqalpe { grid-template-columns: 1fr; }
  .xsftvg32 { border-right: none; border-bottom: 1px solid var(--border-alt); }
  .l1iqvp5t { border-right: none; border-bottom: 1px solid var(--border-alt); }
}
@media (max-width: 540px) {
  .yf03acr { flex-wrap: wrap; padding: 16px; }
}

/* ── LAYOUT 4: compact — header bar → screenshot → data ──────────────────── */
.iran9 {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 16px 20px; border-bottom: 1px solid var(--border-alt);
}
.smez7t {
  display: flex; align-items: center; gap: 12px; flex: 1;
}
.smez7t .uj8x0hl { width: 72px; height: 50px; }
.smez7t .p5juhm { font-size: 1rem; white-space: nowrap; }
.bfanl3 { border-bottom: 1px solid var(--border-alt); max-height: 280px; overflow: hidden; }
.bfanl3 img { width: 100%; display: block; object-fit: cover; }
.slg0omy {
  display: flex; flex-direction: column; gap: 10px; padding: 14px 16px; overflow: hidden;
}
.ukn5mwsh .k10o07w { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.ukn5mwsh .j4i4h { padding: 0; flex: 0 0 auto; gap: 6px; }
.ukn5mwsh .sjeb { display: none; }
.ukn5mwsh .hdph { gap: 8px; }
.ukn5mwsh .kvegx62, .ukn5mwsh .hyo95x { padding: 8px; }
@media (max-width: 480px) {
  .iran9 { flex-direction: column; align-items: stretch; }
}

/* ── LAYOUT 8: mini — compact single-row bar for topic pages ─────────────── */
.upa629f { padding: 0; }
.b2s14a20 {
  display: flex; align-items: center; gap: 16px; padding: 12px 20px; flex-wrap: wrap;
}
.rjar {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.rjar .uj8x0hl { width: 48px; height: 48px; }
.rjar .p5juhm { font-size: 0.95rem; font-weight: 700; white-space: nowrap; }
.rjar .brwgg { font-size: 0.8rem; }
.rjar .brwgg strong { font-size: 0.85rem; }
.my53 { flex: 1; min-width: 0; overflow: hidden; }
.upa629f .k10o07w {
  display: flex; flex-wrap: wrap; gap: 4px 14px;
}
.upa629f .j4i4h { padding: 0; flex: 0 0 auto; gap: 4px; }
.upa629f .e2fl9 { font-size: 0.7rem; }
.upa629f .zrrmex { font-size: 0.8rem; }
.upa629f .sjeb .zrrmex { font-size: 0.85rem; font-weight: 700; }
.upa629f .ovzna4u .pkijrr { padding: 8px 20px; font-size: 0.85rem; }
@media (max-width: 640px) {
  .b2s14a20 { flex-direction: column; align-items: stretch; gap: 10px; }
  .upa629f .ovzna4u { text-align: center; }
}

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

/* ── LAYOUT 6: scorecard — big score centerpiece ──────────────────────────── */
.m58z {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: center;
  border-bottom: 1px solid var(--border-alt);
}
.u05i5j {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px; text-align: center;
}
.gr9zzhq {
  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;
}
.dmx4z { font-size: 1.8rem; font-weight: 800; color: var(--accent); line-height: 1; }
.dmx4z .x83sv { font-size: .9rem; font-weight: 500; color: var(--text-muted); }
.gr9zzhq .l9vv6oe { font-size: .75rem; margin-top: 2px; }
.e9no7q9y { padding: 12px; display: flex; align-items: center; flex: 1; }
.e9no7q9y .os5usgr { width: 100%; }
.z9uy0zrw {
  padding: 0; border-bottom: 1px solid var(--border-alt);
}
.ttfj .k10o07w {
  display: flex; flex-wrap: wrap;
}
.ttfj .j4i4h {
  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;
}
.ttfj .j4i4h:last-child { border-right: none; }
.ttfj .e2fl9 { font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; }
.ttfj .sjeb { background: var(--accent-bg); }
.xj2ta { padding: 16px 20px; display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 720px) {
  .m58z { grid-template-columns: 1fr; }
  .gr9zzhq { width: 100px; height: 100px; margin: 16px auto; }
  .dmx4z { font-size: 1.4rem; }
  .e9no7q9y { justify-content: center; }
  .ttfj .j4i4h { min-width: 50%; }
}

/* ── LAYOUT 7: stack — vertical full-width flow ──────────────────────────── */
.iwo9afm {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-alt);
}
.yqzyrl { max-height: 240px; overflow: hidden; border-bottom: 1px solid var(--border-alt); }
.yqzyrl img { width: 100%; display: block; object-fit: cover; }
.fwyo { padding: 16px 24px; border-bottom: 1px solid var(--border-alt); }
.vaopu2k9 .k10o07w {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.vaopu2k9 .j4i4h {
  background: var(--surface); border: 1px solid var(--border-alt);
  border-radius: 20px; padding: 6px 14px; gap: 8px;
}
.vaopu2k9 .sjeb {
  background: var(--accent-bg); border-color: var(--accent-pale);
}
.vaopu2k9 .hdph { margin: 0 24px; padding-top: 16px; }
.vaopu2k9 .ef3n02 { padding: 0 24px; }
.x68r1nq0 { padding: 16px 24px; border-top: 1px solid var(--border-alt); text-align: center; }
.x68r1nq0 .ovzna4u { display: inline-block; }
@media (max-width: 540px) {
  .iwo9afm { flex-wrap: wrap; padding: 14px 16px; }
  .fwyo { padding: 12px 16px; }
  .vaopu2k9 .hdph { margin: 0 16px; }
  .vaopu2k9 .ef3n02 { padding: 0 16px; }
  .x68r1nq0 { padding: 12px 16px; }
}


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

/* grid: showcase в 2-col grid, review компактніший */
.pe90k48b .uql5q {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 12px;
}
.pe90k48b .uql5q .aifty:only-child {
  grid-column: 1 / -1; flex-direction: row; align-items: center; padding: 18px 24px; gap: 16px;
}
.pe90k48b .uql5q .aifty:only-child .erxx9yt { flex-direction: row; width: auto; }
.pe90k48b .uql5q .aifty:only-child .xgafs4q { width: 72px; height: 52px; min-width: 72px; }
.pe90k48b .uql5q .aifty:only-child .erj6o3f { text-align: left; }
.pe90k48b .uql5q .aifty:only-child .dbe8e { flex-direction: row; width: auto; border-top: none; padding-top: 0; }
.pe90k48b .uql5q .aifty:only-child .k75j1 { width: auto; }
.pe90k48b .uql5q .aifty {
  flex-direction: column; align-items: center; padding: 16px 12px; border-radius: 14px; gap: 8px;
}
.pe90k48b .uql5q .erxx9yt { flex-direction: column; align-items: center; gap: 4px; width: 100%; }
.pe90k48b .uql5q .xgafs4q { width: 100%; min-width: unset; height: 52px; }
.pe90k48b .uql5q .erj6o3f { min-width: unset; text-align: center; white-space: normal; }
.pe90k48b .uql5q .dbe8e {
  flex-direction: row; justify-content: space-between;
  width: 100%; border-top: 1px solid var(--border); padding-top: 5px;
}
.pe90k48b .uql5q .k75j1 { width: 100%; text-align: center; margin-left: 0; }
.pe90k48b .yuex { gap: 14px; }

/* ranked: accent-pill значення + uppercase лейбли (нумерація — через cs_rank) */
.npvjmw .bdbkj3i {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted);
}
.npvjmw .y8u9xmq4 {
  color: var(--accent); font-weight: 700;
  background: var(--accent-bg); border-radius: 100px;
  padding: 1px 9px; font-size: 0.8rem;
}
.npvjmw .tl5zw { color: var(--accent); }
.npvjmw .yuex { background: var(--accent-bg); }
.npvjmw .dx95kej, .npvjmw .ns4d, .npvjmw .qyymdbm {
  background: var(--bg-card); border-radius: 100px; padding: 1px 10px;
  border: 1px solid var(--border);
}

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

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

/* compact: менші відступи всюди */
.oe2a8zju .aifty { padding: 8px 14px; gap: 12px; }
.oe2a8zju .xgafs4q { height: 32px; min-width: 52px; }
.oe2a8zju .n3qut7g { max-height: 24px; }
.oe2a8zju .erj6o3f { font-size: 0.82rem; }
.oe2a8zju .yuex { padding: 14px 18px; gap: 14px; }
.oe2a8zju .fyr1j52p { padding: 14px 18px; }
.oe2a8zju .wti2gbe { width: 70px; }
.oe2a8zju .bddlbvh h3 { font-size: 1.05rem; }

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

/* bordered: таблиця з усіма рамками */
.m05yk .uql5q {
  gap: 0; border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.m05yk .aifty {
  border-radius: 0; border: none;
  border-bottom: 1px solid var(--border); row-gap: 0; column-gap: 12px;
}
.m05yk .aifty:last-child { border-bottom: none; }
/* вертикальні межі між колонками */
.m05yk .tl5zw,
.m05yk .iecc5h7,
.m05yk .vwcr6p { border-left: 1px solid var(--border); padding-left: 10px; }
.m05yk .erj6o3f { padding: 0 10px; }

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

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

/* ── casino-wide: високі горизонтальні картки з великим лого ───────────────*/
.ags4o .uql5q { gap: 12px; }
.ags4o .aifty {
  padding: 18px 24px; gap: 20px; border-radius: 12px;
  min-height: 80px;
}
.ags4o .xgafs4q {
  min-width: 90px; height: 64px; padding: 6px 12px; border-radius: 10px;
}
.ags4o .n3qut7g { max-height: 52px; max-width: 120px; }
.ags4o .erj6o3f { font-size: 1rem; }
.ags4o .dbe8e { font-size: .85rem; }
.ags4o .y8u9xmq4 { font-size: .9rem; }
.ags4o .k75j1.pkijrr { padding: 10px 24px !important; font-size: .9rem; }

/* ── casino-jumbo: дуже великі картки, лого + інтерфейс скриншот ──────────*/
.z4a95x .uql5q { gap: 16px; }
.z4a95x .aifty {
  padding: 24px 28px; gap: 24px; border-radius: 14px;
  min-height: 100px; border-width: 2px;
}
.z4a95x .xgafs4q {
  min-width: 110px; height: 80px; padding: 8px 14px; border-radius: 12px;
  background: var(--bg-raised);
}
.z4a95x .n3qut7g { max-height: 64px; max-width: 140px; }
.z4a95x .erj6o3f { font-size: 1.1rem; font-weight: 800; }
.z4a95x .tl5zw { font-size: .95rem; letter-spacing: 2px; }
.z4a95x .dbe8e { font-size: .9rem; }
.z4a95x .y8u9xmq4 { font-size: .95rem; font-weight: 700; }
.z4a95x .bdbkj3i { font-size: .75rem; text-transform: uppercase; letter-spacing: .04em; }
.z4a95x .k75j1.pkijrr { padding: 12px 32px !important; font-size: .95rem; font-weight: 700; }

/* ── grid / compact: на мобілі допускаємо 2 колонки (картки досить вузькі) */
@media (max-width: 720px) {
  .pe90k48b .uql5q,
  .oe2a8zju .uql5q {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── cs_cols: feature — бонус-колонка виділена як головна ──────────────────*/
.if0bs .iecc5h7 { flex: 1.8; }
.if0bs .iecc5h7 .y8u9xmq4 {
  font-size: 0.88rem; font-weight: 700; color: var(--accent);
}
.if0bs .iecc5h7 .bdbkj3i { font-weight: 700; color: var(--text-primary); }
.if0bs .pko7x,
.if0bs .a15z1,
.if0bs .ku72i { flex: 0.75; opacity: 0.65; }

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

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

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

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

/* score в оглядах — ховаємо зірки */
.ay8kpkn .zxtqu .l9vv6oe,
.a7kxgml .zxtqu .l9vv6oe,
.agqv .zxtqu .l9vv6oe { display: none; }

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

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

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

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

/* ── Sections ────────────────────────────────────────────────────────────────*/
.et7gt { margin-bottom: 0; }
.l5it6q2 h2.uteyx0eg { color: var(--accent-light); border-color: var(--accent); }
.cnpurl h2.uteyx0eg { color: var(--accent-light); border-color: var(--accent); }

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

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

/* vivid: смарагд / рожевий / фіолетовий */
.pzex7o .jhfnbhp2     { background: #052e16; border-color: #10b981; }
.pzex7o .tzbd { background: #2d0a1e; border-color: #f43f5e; }
.pzex7o .pxiyo2    { background: #1e1036; border-color: #a855f7; }
.pzex7o .tpcm strong  { color: #f1f5f9; }
.pzex7o .tpcm p       { color: #cbd5e1; }
.pzex7o .jerhz    .jhfnbhp2     .u507qlu::before,
.pzex7o .ggzaj7a  .jhfnbhp2     .u507qlu::before,
.pzex7o .yb9u8q  .jhfnbhp2     .u507qlu::before,
.pzex7o .pvx0p9db .jhfnbhp2     .u507qlu::before { color: #10b981; }
.pzex7o .jerhz    .tzbd .u507qlu::before,
.pzex7o .ggzaj7a  .tzbd .u507qlu::before,
.pzex7o .yb9u8q  .tzbd .u507qlu::before,
.pzex7o .pvx0p9db .tzbd .u507qlu::before { color: #f43f5e; }
.pzex7o .jerhz    .pxiyo2    .u507qlu::before,
.pzex7o .ggzaj7a  .pxiyo2    .u507qlu::before,
.pzex7o .yb9u8q  .pxiyo2    .u507qlu::before,
.pzex7o .pvx0p9db .pxiyo2    .u507qlu::before { color: #a855f7; }

/* warm: жовтий / червоний / помаранчевий */
.nu0hpn6 .jhfnbhp2     { background: #2d2000; border-color: #eab308; }
.nu0hpn6 .tzbd { background: #2d0b0b; border-color: #ef4444; }
.nu0hpn6 .pxiyo2    { background: #2d1600; border-color: #f97316; }
.nu0hpn6 .tpcm strong  { color: #f1f5f9; }
.nu0hpn6 .tpcm p       { color: #cbd5e1; }
.nu0hpn6 .jerhz    .jhfnbhp2     .u507qlu::before,
.nu0hpn6 .ggzaj7a  .jhfnbhp2     .u507qlu::before,
.nu0hpn6 .yb9u8q  .jhfnbhp2     .u507qlu::before,
.nu0hpn6 .pvx0p9db .jhfnbhp2     .u507qlu::before { color: #eab308; }
.nu0hpn6 .jerhz    .tzbd .u507qlu::before,
.nu0hpn6 .ggzaj7a  .tzbd .u507qlu::before,
.nu0hpn6 .yb9u8q  .tzbd .u507qlu::before,
.nu0hpn6 .pvx0p9db .tzbd .u507qlu::before { color: #ef4444; }
.nu0hpn6 .jerhz    .pxiyo2    .u507qlu::before,
.nu0hpn6 .ggzaj7a  .pxiyo2    .u507qlu::before,
.nu0hpn6 .yb9u8q  .pxiyo2    .u507qlu::before,
.nu0hpn6 .pvx0p9db .pxiyo2    .u507qlu::before { color: #f97316; }

/* cool: блакитний / індиго / бірюзовий */
.qr7hk0 .jhfnbhp2     { background: #0c1a2e; border-color: #38bdf8; }
.qr7hk0 .tzbd { background: #12103a; border-color: #818cf8; }
.qr7hk0 .pxiyo2    { background: #0a2020; border-color: #2dd4bf; }
.qr7hk0 .tpcm strong  { color: #f1f5f9; }
.qr7hk0 .tpcm p       { color: #cbd5e1; }
.qr7hk0 .jerhz    .jhfnbhp2     .u507qlu::before,
.qr7hk0 .ggzaj7a  .jhfnbhp2     .u507qlu::before,
.qr7hk0 .yb9u8q  .jhfnbhp2     .u507qlu::before,
.qr7hk0 .pvx0p9db .jhfnbhp2     .u507qlu::before { color: #38bdf8; }
.qr7hk0 .jerhz    .tzbd .u507qlu::before,
.qr7hk0 .ggzaj7a  .tzbd .u507qlu::before,
.qr7hk0 .yb9u8q  .tzbd .u507qlu::before,
.qr7hk0 .pvx0p9db .tzbd .u507qlu::before { color: #818cf8; }
.qr7hk0 .jerhz    .pxiyo2    .u507qlu::before,
.qr7hk0 .ggzaj7a  .pxiyo2    .u507qlu::before,
.qr7hk0 .yb9u8q  .pxiyo2    .u507qlu::before,
.qr7hk0 .pvx0p9db .pxiyo2    .u507qlu::before { color: #2dd4bf; }

/* accent: використовує динамічний акцент */
.xzr5m .jhfnbhp2     { background: var(--accent-bg); border-color: var(--accent); }
.xzr5m .tzbd { background: var(--accent-bg-light); border-color: var(--accent-light); }
.xzr5m .pxiyo2    { background: var(--accent-bg); border-color: var(--accent-pale); }
.xzr5m .jerhz    .u507qlu::before,
.xzr5m .ggzaj7a  .u507qlu::before,
.xzr5m .yb9u8q  .u507qlu::before,
.xzr5m .pvx0p9db .u507qlu::before { color: var(--accent-light) !important; }

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

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

/* classic — фіксовані контрастні кольори незалежно від акценту */
.ue7wb .kvegx62 ul li,
.ue7wb .nvi3lyk li         { color: #4ade80; }
.ue7wb .kvegx62 .lunp { color: #22c55e; }
.ue7wb .hyo95x ul li,
.ue7wb .f4m26 li         { color: #f87171; }
.ue7wb .hyo95x .sxlc { color: #ef4444; }

/* blue: синій pros / amber cons */
.carro1l .kvegx62 { background: #0c1a2e; }
.carro1l .hyo95x { background: #2d1f00; }
.carro1l .kvegx62 .lunp { color: #93c5fd; }
.carro1l .hyo95x .sxlc { color: #fcd34d; }
.carro1l .kvegx62 ul li,
.carro1l .nvi3lyk li            { color: #bfdbfe; }
.carro1l .hyo95x ul li,
.carro1l .f4m26 li            { color: #fde68a; }

/* accent: label акцентний, текст завжди читабельний */
.maus29tm .kvegx62 { background: var(--accent-bg); }
.maus29tm .hyo95x { background: var(--accent-bg-light); }
.maus29tm .kvegx62 .lunp { color: var(--accent-pale); }
.maus29tm .hyo95x .sxlc { color: var(--accent-light); }
.maus29tm .kvegx62 ul li,
.maus29tm .nvi3lyk li          { color: var(--text-body); }
.maus29tm .hyo95x ul li,
.maus29tm .f4m26 li          { color: var(--text-body); }

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

/* check: ✓ / ✗ */
.q09c8 .lunp::before { content: "✓ "; }
.q09c8 .sxlc::before { content: "✗ "; }

/* arrows: → / ← */
.nhh43aqv .lunp::before { content: "→ "; }
.nhh43aqv .sxlc::before { content: "← "; }

/* marks: ★ / ✕ */
.uz9j0 .lunp::before { content: "★ "; }
.uz9j0 .sxlc::before { content: "✕ "; }

/* geo: ◆ / ▲ */
.ab072oc .lunp::before { content: "◆ "; }
.ab072oc .sxlc::before { content: "▲ "; }

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

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

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

/* topbar: смуга зверху */
.td1k .tpcm { border-left: none; border-top: 4px solid; border-radius: 0 0 8px 8px; }
.td1k .jhfnbhp2     { border-top-color: var(--c-tip-border); }
.td1k .tzbd { border-top-color: var(--c-warn-border); }
.td1k .pxiyo2    { border-top-color: #60a5fa; }

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

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

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

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

.jerhz .u507qlu,
.ggzaj7a .u507qlu,
.yb9u8q .u507qlu,
.pvx0p9db .u507qlu { font-size: 0; width: 1.1rem; flex-shrink: 0; }

.jerhz .u507qlu::before,
.ggzaj7a .u507qlu::before,
.yb9u8q .u507qlu::before,
.pvx0p9db .u507qlu::before {
  display: block; font-size: 1.15rem; line-height: 1.3; font-style: normal;
}

/* geo: ✦ ▲ ◉ */
.jerhz .jhfnbhp2     .u507qlu::before { content: "✦"; color: var(--c-tip-border); }
.jerhz .tzbd .u507qlu::before { content: "▲"; color: var(--c-warn-border); }
.jerhz .pxiyo2    .u507qlu::before { content: "◉"; color: #60a5fa; }

/* marks: ★ ◆ ● */
.ggzaj7a .jhfnbhp2     .u507qlu::before { content: "★"; color: var(--c-tip-border); }
.ggzaj7a .tzbd .u507qlu::before { content: "◆"; color: var(--c-warn-border); }
.ggzaj7a .pxiyo2    .u507qlu::before { content: "●"; color: #60a5fa; }

/* sharp: ▶ ■ ▸ */
.yb9u8q .jhfnbhp2     .u507qlu::before { content: "▶"; color: var(--c-tip-border); }
.yb9u8q .tzbd .u507qlu::before { content: "■"; color: var(--c-warn-border); }
.yb9u8q .pxiyo2    .u507qlu::before { content: "▸"; color: #60a5fa; }

/* arrows: → ⬥ ◈ */
.pvx0p9db .jhfnbhp2     .u507qlu::before { content: "→"; color: var(--c-tip-border); }
.pvx0p9db .tzbd .u507qlu::before { content: "⬥"; color: var(--c-warn-border); }
.pvx0p9db .pxiyo2    .u507qlu::before { content: "◈"; color: #60a5fa; }

/* ── shadow variant ──────────────────────────────────────────────────────────*/
.ig9oasfk .ldrq1sl8 .l4v44n,
.ig9oasfk .xjtf .l4v44n  { box-shadow: 0 2px 8px rgba(0,0,0,0.22); }
.ig9oasfk .uz7dp                { box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
.ig9oasfk .aifty                { box-shadow: 0 4px 12px rgba(0,0,0,0.28); }
.ig9oasfk .tpgpzt8c            { box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.ig9oasfk .eehr          { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }
.ig9oasfk .lj98fcgw                    { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }

/* shadow-none: скидаємо будь-які тіні */
.p8jd14j .ldrq1sl8 .l4v44n,
.p8jd14j .xjtf .l4v44n,
.p8jd14j .uz7dp,
.p8jd14j .aifty,
.p8jd14j .tpgpzt8c,
.p8jd14j .eehr,
.p8jd14j .lj98fcgw,
.p8jd14j .qunbu .tpcm { box-shadow: none; }

/* ── text_size variants ──────────────────────────────────────────────────────*/
.a32krfnc   body, .a32krfnc   { font-size: 0.9rem; }
.a32krfnc   .kemuj3, .a32krfnc .aebpm, .a32krfnc .b1tym2,
.a32krfnc   .bsh9y, .a32krfnc .j5b7js { font-size: 0.9rem; }
.a32krfnc   .fdab7, .a32krfnc .xyiz { font-size: 0.9rem; }

.v6uq   .kemuj3, .v6uq .aebpm, .v6uq .b1tym2,
.v6uq   .bsh9y, .v6uq .j5b7js { font-size: 0.9rem; }
.v6uq   .fdab7, .v6uq .xyiz { font-size: 0.9rem; }

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

.d07k8   .kemuj3, .d07k8 .aebpm, .d07k8 .b1tym2,
.d07k8   .bsh9y, .d07k8 .j5b7js { font-size: 1.08rem; }
.d07k8   .fdab7, .d07k8 .xyiz { font-size: 1.05rem; }
.d07k8   .pr4vkop { font-size: 0.97rem; }

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

/* large */
.okq9o1tu .v2yk      { font-size: 3.2rem; }
.okq9o1tu h2.uteyx0eg { font-size: 1.9rem; }
.okq9o1tu h3.lj1a4bq9     { font-size: 1.4rem; }

/* display */
.nx2s695x .v2yk      { font-size: 3.8rem; }
.nx2s695x h2.uteyx0eg { font-size: 2.2rem; }
.nx2s695x h3.lj1a4bq9     { font-size: 1.6rem; }

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

/* Спільна база: abs-позиція на межі між секціями */
.ajyjd8b   .et7gt + .et7gt::before,
.cjla7s  .et7gt + .et7gt::before,
.npyk8   .et7gt + .et7gt::before,
.ktpnrh   .et7gt + .et7gt::before,
.me7nluf   .et7gt + .et7gt::before,
.cr8s1 .et7gt + .et7gt::before {
  position: absolute; top: -1px; left: 0; right: 0;
  transform: translateY(-50%);
}

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

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

/* dots: три крапки по центру */
.npyk8 .et7gt + .et7gt::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: лінія що розчиняється по краях */
.ktpnrh .et7gt + .et7gt::before {
  content: ""; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 25%, var(--accent) 75%, transparent 100%);
  opacity: 0.6;
}

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

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

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

/* wave: заповнена хвиля hero-style — ::before виступає вгору з нової секції */
.lqxvyotu .et7gt + .et7gt::before,
.yblqj .et7gt + .et7gt::before,
.trm2fsr1 .et7gt + .et7gt::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 */
.hnej .lqxvyotu .et7gt:nth-child(even)::before,
.hnej .yblqj .et7gt:nth-child(even)::before,
.hnej .trm2fsr1 .et7gt:nth-child(even)::before { background: var(--bg-surface); }

/* section_bg=stripe: парні секції мають bg-card */
.ri1l1bd .lqxvyotu .et7gt:nth-child(even)::before,
.ri1l1bd .yblqj .et7gt:nth-child(even)::before,
.ri1l1bd .trm2fsr1 .et7gt:nth-child(even)::before { background: var(--bg-card); }

/* wave-a: плавна S-хвиля (1 гребінь) */
.lqxvyotu .et7gt + .et7gt::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 гребені */
.yblqj .et7gt + .et7gt::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: глибока дуга */
.trm2fsr1 .et7gt + .et7gt::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 у формі хвилі */
.t6tuwk .k2im4,
.c9ah89 .k2im4,
.h3hmb .k2im4 { overflow: hidden; }

/* wave: додатковий простір щоб хвиля не закривала CTA */
.t6tuwk .qdhqws,
.c9ah89 .qdhqws { margin-bottom: 60px; }
.h3hmb .qdhqws { margin-bottom: 70px; }
.t6tuwk .oi8z7zt2,
.c9ah89 .oi8z7zt2 { padding-bottom: 60px; }
.h3hmb .oi8z7zt2 { padding-bottom: 70px; }

.t6tuwk .k2im4::before,
.c9ah89 .k2im4::before,
.h3hmb .k2im4::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 гребінь) */
.t6tuwk .k2im4::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 гребені */
.c9ah89 .k2im4::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: глибока дуга */
.h3hmb .k2im4::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 */
.u23g5x .k2im4:not(.iqoix9h9) .b368 { background: linear-gradient(225deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 100%); }
.s416 .k2im4:not(.iqoix9h9) .b368 { background: linear-gradient(45deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.65) 100%); }
.zj6q  .k2im4:not(.iqoix9h9) .b368 { background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 100%); }
.m4uf  .k2im4:not(.iqoix9h9) .b368 { background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 100%); }

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

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

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

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

/* hg-solid: суцільний колір без градієнту */
.o94g .iqoix9h9 { background: var(--accent); }
.o94g .iqoix9h9 .b368 { background: none; }
.o94g .oxy9f { background: var(--accent); }
.o94g .ct42 { background: var(--accent-bg); }
.o94g .k2im4:not(.iqoix9h9) .b368 { background: rgba(0,0,0,0.6); }


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

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

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

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

/* Великі блочні елементи — clear float щоб не стискались */
.a806z .j2eptc,
.a806z .uql5q,
.m2sjrhnu .j2eptc,
.m2sjrhnu .uql5q,
.h5ey9 .j2eptc,
.h5ey9 .uql5q { clear: both; }

/* Маркери списків не мають налазити на float-картинку */
.a806z .fdab7,
.a806z .xyiz,
.m2sjrhnu .fdab7,
.m2sjrhnu .xyiz,
.h5ey9 .fdab7,
.h5ey9 .xyiz { overflow: hidden; }


@media (max-width: 640px) {
  .a806z .g7zfqcs,
  .m2sjrhnu .g7zfqcs,
  .h5ey9 .g7zfqcs { float: none; width: 100%; margin: 0 0 16px 0; }
}

/* ── content_width: ширина контентного контейнера ───────────────────────────*/
/* default = 1100px (задано в .mbdq, .vm2bb, .yjoq) */
.voxl9 .mbdq,
.voxl9 .vm2bb,
.voxl9 .yjoq  { max-width: 1100px; }
.voxl9 { --content-mw: 1100px; }
.inb7q3i .mbdq,
.inb7q3i .vm2bb,
.inb7q3i .yjoq  { max-width: 1200px; }
.inb7q3i { --content-mw: 1200px; }
.pwke6ta .mbdq,
.pwke6ta .vm2bb,
.pwke6ta .yjoq  { max-width: 1320px; }
.pwke6ta { --content-mw: 1320px; }

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

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

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

/* float: bc-float-wrap — зовнішній контейнер; bc-inner тільки внутрішній padding картки */
.cqtlm {
  max-width: 1100px; margin: -38px auto 0;
  padding: 0 24px; position: relative; z-index: 5;
}
.ddmiqf .c8i2kwm { padding: 0 16px; }
.ddmiqf .nwbqon {
  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);
}
.ddmiqf .mbdq { padding-top: 28px; }

/* content-width: above — обидва класи на <body>, тому без пробілу */
.voxl9.squj .c8i2kwm { max-width: 1100px; }
.inb7q3i.squj .c8i2kwm { max-width: 1200px; }
.pwke6ta.squj .c8i2kwm { max-width: 1320px; }
/* float — bc-float-wrap окремий елемент, тому з пробілом */
.voxl9 .cqtlm { max-width: 1100px; }
.inb7q3i .cqtlm { max-width: 1200px; }
.pwke6ta .cqtlm { max-width: 1320px; }

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

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

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

/* ── font_weight: жирність тексту ────────────────────────────────────────────*/
/* fw-300: тонкий */
.x2eqt11 { font-weight: 300; }
.x2eqt11 h2.uteyx0eg { font-weight: 600; }
.x2eqt11 h3.lj1a4bq9     { font-weight: 600; }
/* fw-400: default — без override */
/* fw-500: medium */
.ujq0z { font-weight: 500; }
.ujq0z h2.uteyx0eg { font-weight: 800; }
.ujq0z h3.lj1a4bq9     { font-weight: 700; }
/* fw-600: semibold */
.kryo { font-weight: 600; }
.kryo h2.uteyx0eg { font-weight: 900; }
.kryo h3.lj1a4bq9     { font-weight: 800; }
.kryo .tpcm strong,
.kryo .tpcm strong { font-weight: 600; }
/* .kryo .aebpm, .kryo .bsh9y { font-weight: 600; } */

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

/* ── Sticky corner CTA button ────────────────────────────────────────────────*/
.ha4gqp {
  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;
}
.ha4gqp:hover { transform: translateY(-2px); opacity: 0.92; }
/* always solid background regardless of btn_style variant */
.ha4gqp { background: var(--accent) !important; color: #fff !important; border: none !important; }
/* position by variant */
.emvlxl3 .ha4gqp { display: none; }
.jb1nzngn .ha4gqp { right: 32px; }
.sdi3sqx  .ha4gqp { left: 32px; }
@media (max-width: 480px) {
  .jb1nzngn .ha4gqp { right: 20px; bottom: 20px; }
  .sdi3sqx  .ha4gqp { left: 20px; bottom: 20px; }
}

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

/* minimal */
.pl52025 .yjoq { text-align: center; }
.pl52025 .f4ujsqf { justify-content: center; margin-bottom: 16px; }
.pl52025 .cd1r0af { margin-top: 0; }

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

/* mobile footer */
@media (max-width: 640px) {
  .yjoq { padding-left: 16px; padding-right: 16px; }
  .fs1l .yjoq { padding: 20px 16px; }
  .f4ujsqf { gap: 4px 12px; }
  .cd1r0af { font-size: 0.78rem; }
}


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


/* ribbon — компактний 1 рядок, service + disclaimer дрібно знизу */
.kwcb .yukd3pzd { display: flex; align-items: center; gap: 0; flex-wrap: wrap; padding-bottom: 14px; border-bottom: 1px solid var(--border); margin-bottom: 12px; }
.kwcb .gepb3t7 { 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; }
.kwcb .il8886w0 { display: flex; flex-wrap: wrap; gap: 4px 16px; margin-right: 24px; }
.kwcb .il8886w0 a { font-size: 0.87rem; color: var(--text-muted); text-decoration: none; }
.kwcb .il8886w0 a:hover { color: var(--accent); }
.ge053ufm { font-size: 0.8rem; color: var(--text-faint); margin: 0; white-space: nowrap; }
.kwcb .bw9kf { display: flex; align-items: baseline; gap: 1.5rem; flex-wrap: wrap; }
.kwcb .kcf3fu { display: flex; flex-wrap: wrap; gap: 4px 14px; }
.kwcb .kcf3fu a { font-size: 0.78rem; color: var(--text-faint); text-decoration: none; }
.kwcb .kcf3fu a:hover { color: var(--accent); }
.kwcb .cd1r0af { font-size: 0.78rem; color: var(--text-faint); margin: 0; }
@media (max-width: 640px) { .kwcb .yukd3pzd { gap: 12px; } .kwcb .gepb3t7 { margin-right: 0; width: 100%; } }

/* mega — верхня зона лого+2 колонки лінків, нижня legal-смуга */
.oeaa792j .x82x5bq { 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; }
.oeaa792j .h0u7 .gepb3t7 { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.1rem; text-decoration: none; color: var(--text); margin-bottom: 10px; }
.oeaa792j .aye0 { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; margin: 0; }
.oeaa792j .qv7hr6np { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); margin: 0 0 12px; }
.oeaa792j .e58ls { display: flex; flex-direction: column; gap: 9px; }
.oeaa792j .e58ls a { font-size: 0.88rem; color: var(--text-muted); text-decoration: none; }
.oeaa792j .e58ls a:hover { color: var(--accent); }
.oeaa792j .mlt5h5 { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.oeaa792j .cd1r0af { font-size: 0.78rem; color: var(--text-faint); margin: 0; flex: 1; }
.oeaa792j .gg3t40 { font-size: 0.78rem; color: var(--text-faint); margin: 0; white-space: nowrap; }
@media (max-width: 768px) { .oeaa792j .x82x5bq { grid-template-columns: 1fr 1fr; } .oeaa792j .h0u7 { grid-column: 1 / -1; } }
@media (max-width: 480px) { .oeaa792j .x82x5bq { grid-template-columns: 1fr; } }

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

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

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

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

/* dark: завжди темний, незалежно від теми */
.w5aysh6 .h1o6vk49      { background: #0d1117; border-bottom-color: #21262d; }
.w5aysh6 .ehwok80z { color: var(--accent-light); }
.w5aysh6 .x54ne84n { --msep-color: #8b949e; }
.w5aysh6 .x54ne84n a { color: #8b949e; }
.w5aysh6 .x54ne84n a:hover { color: var(--accent-light); }
.w5aysh6 .oh5f1 { color: #8b949e; }
.w5aysh6 .dsyx0j45 { background: #0d1117; border-top-color: #21262d; }
.w5aysh6 .cd1r0af,
.w5aysh6 .gg3t40 { color: #6e7681; }
.w5aysh6 .rdbb a, .w5aysh6 .f4ujsqf a,
.w5aysh6 .e58ls a, .w5aysh6 .il8886w0 a,
.w5aysh6 .kcf3fu a, .w5aysh6 .gepb3t7 { color: #8b949e; }
.w5aysh6 .rdbb a:hover, .w5aysh6 .f4ujsqf a:hover,
.w5aysh6 .e58ls a:hover, .w5aysh6 .il8886w0 a:hover { color: var(--accent-light); }
@media (max-width: 640px) {
  .w5aysh6 .x54ne84n { background: #0d1117; border-top-color: #21262d; }
  .w5aysh6 .x54ne84n li a { border-bottom-color: #21262d; }
}

/* light: завжди світлий */
.wwduxwg .h1o6vk49      { background: #f0f4f8; border-bottom-color: #cbd5e1; }
.wwduxwg .ehwok80z { color: var(--accent); }
.wwduxwg .x54ne84n { --msep-color: #475569; }
.wwduxwg .x54ne84n a { color: #475569; }
.wwduxwg .x54ne84n a:hover { color: var(--accent); }
.wwduxwg .oh5f1 { color: #64748b; }
.wwduxwg .dsyx0j45 { background: #f0f4f8; border-top-color: #cbd5e1; }
.wwduxwg .cd1r0af,
.wwduxwg .gg3t40 { color: #64748b; }
.wwduxwg .rdbb a, .wwduxwg .f4ujsqf a,
.wwduxwg .e58ls a, .wwduxwg .il8886w0 a,
.wwduxwg .kcf3fu a, .wwduxwg .gepb3t7 { color: #374151; }
.wwduxwg .rdbb a:hover, .wwduxwg .f4ujsqf a:hover,
.wwduxwg .e58ls a:hover, .wwduxwg .il8886w0 a:hover { color: var(--accent); }
@media (max-width: 640px) {
  .wwduxwg .x54ne84n { background: #f0f4f8; border-top-color: #cbd5e1; }
  .wwduxwg .x54ne84n li a { border-bottom-color: #cbd5e1; color: #475569; }
}

/* accent: кольоровий акцентний фон */
.q7si8 .h1o6vk49      { background: var(--accent); border-bottom-color: var(--accent-light); }
.q7si8 .ehwok80z { color: #fff; }
.q7si8 .x54ne84n { --msep-color: rgba(255,255,255,0.82); }
.q7si8 .x54ne84n a { color: rgba(255,255,255,0.82); }
.q7si8 .x54ne84n a:hover { color: #fff; }
.q7si8 .oh5f1 { color: rgba(255,255,255,0.9); }
.q7si8 .jo3t5d89 a { color: var(--text-primary) !important; }
.q7si8 .jo3t5d89 a:hover { color: var(--accent) !important; }
.q7si8 .dsyx0j45 { background: var(--accent); border-top-color: var(--accent-light); }
.q7si8 .cd1r0af,
.q7si8 .gg3t40 { color: rgba(255,255,255,0.72); }
.q7si8 .rdbb a, .q7si8 .f4ujsqf a,
.q7si8 .e58ls a, .q7si8 .il8886w0 a,
.q7si8 .kcf3fu a, .q7si8 .gepb3t7 { color: rgba(255,255,255,0.82); }
.q7si8 .rdbb a:hover, .q7si8 .f4ujsqf a:hover,
.q7si8 .e58ls a:hover, .q7si8 .il8886w0 a:hover { color: #fff; }
@media (max-width: 640px) {
  .q7si8 .x54ne84n { background: var(--accent); border-top-color: var(--accent-light); }
  .q7si8 .x54ne84n li a { border-bottom-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.82); }
}

/* glass: напівпрозорий з blur */
.pv2mqse .h1o6vk49 {
  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);
}
.pv2mqse .dsyx0j45 {
  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) {
  .pv2mqse .x54ne84n {
    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 */
.jd56 .g7o6 { min-height: 52px; height: auto; padding-top: 6px; padding-bottom: 6px; }
.mbcxj .g7o6 { min-height: 58px; height: auto; padding-top: 8px; padding-bottom: 8px; }
.dxu3ctd6 .g7o6 { min-height: 72px; height: auto; }
.ecg35 .g7o6 { min-height: 84px; height: auto; }

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

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


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

/* ── nav_logo_bg: фон на wrap-блоці (не на img) ─────────────────────────────*/
/* none = без фону (default) */
.vj4see, .o6xwn {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.l4oyigyi .vj4see,
.l4oyigyi .o6xwn { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 8px; padding: 4px; }
.fbsy .vj4see,
.fbsy .o6xwn { 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; }
.enhtn .vj4see,
.enhtn .o6xwn { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 999px; padding: 4px 8px; }
.ayh8 .vj4see,
.ayh8 .o6xwn { 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 */
.qdkn6fk9   .x54ne84n a { font-weight: 500; }
.uj2iptd2 .x54ne84n a { font-weight: 600; }
.tbvnx     .x54ne84n a { font-weight: 700; }
.dv0em7an    .x54ne84n a { font-weight: 800; letter-spacing: 0.01em; }

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

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

  /* ховаємо ☰ символ і центруємо кнопку */
  .vydfd .oh5f1,
  .emsqy7mz .oh5f1,
  .ch1ias .oh5f1,
  .yc9x .oh5f1,
  .zixe4z6 .oh5f1 {
    font-size: 0 !important;
    display: flex !important;
    align-items: center; justify-content: center;
    padding: 0; width: 40px;
  }

  /* базовий ::before */
  .vydfd .oh5f1::before,
  .emsqy7mz .oh5f1::before,
  .ch1ias .oh5f1::before,
  .yc9x .oh5f1::before,
  .zixe4z6 .oh5f1::before { content: ""; display: block; flex-shrink: 0; }

  /* 2 лінії: повна + 68% */
  .vydfd .oh5f1::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 лінії рівні */
  .emsqy7mz .oh5f1::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% */
  .ch1ias .oh5f1::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% */
  .yc9x .oh5f1::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% */
  .zixe4z6 .oh5f1::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) {
  .widq .oh5f1 {
    padding: 5px 14px;
  }
  .widq .x54ne84n {
    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;
  }
  .widq .x54ne84n li a {
    border-bottom: none; padding: 10px 22px;
  }
  .widq .x54ne84n li a:hover { background: var(--bg-raised); }
}

/* drawer: висувається з правого боку ───────────────────────────────────── */
@media (max-width: 640px) {
  .pqyfj9a .oh5f1 {
    padding: 5px 10px;
  }
  .pqyfj9a .x54ne84n {
    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);
  }
  .pqyfj9a .x54ne84n.vu19 { transform: translateX(0); }
  .pqyfj9a .x54ne84n li a {
    padding: 14px 28px; font-size: 1rem; border-bottom: 1px solid var(--border);
  }
  .pqyfj9a .x54ne84n li:last-child a { border-bottom: none; }
}

/* sheet: з'їжджає знизу ────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .mglq3z .oh5f1 {
    padding: 5px 10px;
  }
  .mglq3z .x54ne84n {
    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);
  }
  .mglq3z .x54ne84n::before {
    content: ""; display: block;
    width: 40px; height: 4px;
    background: var(--border); border-radius: 2px;
    margin: 0 auto 14px;
  }
  .mglq3z .x54ne84n.vu19 { transform: translateY(0); }
  .mglq3z .x54ne84n li a {
    text-align: center; border-bottom: none; padding: 13px 28px; font-size: 1rem;
  }
}

/* overlay: повноекранне меню ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .l64zn .oh5f1 {
    padding: 5px 10px;
  }
  .l64zn .x54ne84n {
    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;
  }
  .l64zn .x54ne84n.vu19 { opacity: 1; pointer-events: auto; }
  .l64zn .x54ne84n 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) {
  .xag3     .oh5f1 { border-radius: 0 !important; }
  .na56no   .oh5f1 { border-radius: 8px !important; }
  .ydcd .oh5f1 { border-radius: 50% !important; }
  .qz4o2nk   .oh5f1 { border-radius: 999px !important; }
}

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

/* ── star_style: вигляд зірок (showcase + review) ───────────────────────────*/
/* default = accent color (задано в базових стилях .tl5zw / .l9vv6oe) */
.uttiwx    .tl5zw, .uttiwx    .l9vv6oe { color: #f59e0b; }
.glhh3u1m      .tl5zw { font-size: 1rem; letter-spacing: 1.5px; }
.glhh3u1m      .l9vv6oe   { font-size: 1.35rem; }
.hb0pr72c    .tl5zw, .hb0pr72c    .l9vv6oe { color: var(--text-muted); opacity: 0.7; letter-spacing: 2px; }
.cnu8resx     .tl5zw, .cnu8resx     .l9vv6oe { color: var(--accent); letter-spacing: 3px; font-size: 0.7rem; }
.g9wbs77w .tl5zw, .g9wbs77w .l9vv6oe { color: var(--accent); letter-spacing: 2px; }
.wv95m3   .tl5zw, .wv95m3   .l9vv6oe { color: #e91e63; letter-spacing: 2px; }
.uhku9zsz  .tl5zw, .uhku9zsz  .l9vv6oe { color: var(--accent); letter-spacing: 2px; font-size: 0.65rem; }
.sfajrsjp     .tl5zw, .sfajrsjp     .l9vv6oe { color: var(--accent); letter-spacing: 2px; font-size: 0.7rem; }

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

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

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

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

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

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

/* corner: маленький #1/#2 у правому верхньому куті */
.tnklml .uql5q { counter-reset: cs-rank; }
.tnklml .aifty { position: relative; counter-increment: cs-rank; }
.tnklml .aifty::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-колонка рядка */
.kw0a .uql5q { counter-reset: cs-rank; }
.kw0a .aifty::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 + +/− тогл (базові стилі .q289a6 вже задано) */

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

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

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

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

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

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

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

.qy7l {
  background: var(--bg-card); border: 1px solid var(--border-alt);
  border-radius: 14px; padding: 32px;
}
.gyq21 { margin-bottom: 20px; }
.csaxs {
  display: block; color: var(--text-muted); font-size: 0.78rem;
  font-weight: 600; margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.nos2ssy {
  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;
}
.nos2ssy:focus { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-bg); }
.jspetli9 { resize: vertical; min-height: 130px; }
.dbgg0i { width: 100%; margin-top: 8px; }

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

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

/* contact FAQ */
.e2h8ui { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.tbsj {
  background: var(--bg-card); border: 1px solid var(--border-alt);
  border-radius: 10px; overflow: hidden;
}
.tmqqmow {
  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;
}
.tmqqmow::after { content: "+"; color: var(--accent); font-size: 1.2rem; flex-shrink: 0; }
.tbsj[open] .tmqqmow::after { content: "−"; }
.udxpysg { padding: 0 18px 14px; color: var(--text-muted); line-height: 1.65; margin: 0; }

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

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

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

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

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

/* ── Privacy timeline layout ─────────────────────────────────────────────────*/
.we6r7bic { max-width: 760px; margin: 0 auto; }
.bqagd { position: relative; padding-left: 28px; }
.bqagd::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--border); }
.hnfk8z3w { position: relative; display: flex; gap: 20px; padding-bottom: 32px; }
.hnfk8z3w:last-child { padding-bottom: 0; }
.yicx { 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; }
.enuzfkj h2 { font-size: 1.05rem; font-weight: 700; color: var(--accent-light); margin: 0 0 8px; }
.enuzfkj p { color: var(--text-muted); line-height: 1.75; margin: 0; }

/* ── Static hero variants ────────────────────────────────────────────────────*/
.n6vbef {
  background: var(--accent-bg); border-radius: 14px;
  border-bottom: none; padding: 44px 36px; margin-bottom: 44px;
}
.n6vbef .a245no { color: var(--accent-light); }
.t6h1ha {
  text-align: left; border-bottom: none;
  border-left: 4px solid var(--accent); padding: 28px 0 28px 28px;
  margin-bottom: 44px;
}
.t6h1ha .a245no { font-size: 2rem; }
.t6h1ha .ugoap { max-width: 680px; }
.fgzwb9l {
  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;
}
.fgzwb9l .a245no { margin: 0; font-size: 1.8rem; flex-shrink: 0; max-width: 45%; }
.fgzwb9l .ugoap  { margin: 0; }
@media (max-width: 640px) { .fgzwb9l { flex-direction: column; } }

.k3o27lm {
  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;
}
.k3o27lm .a245no { color: var(--accent-light); }
.a7s7g8 {
  background: var(--accent); border-bottom: none;
  padding: 40px 32px 36px; margin-bottom: 32px;
}
.a7s7g8 .a245no { color: #fff; }
.a7s7g8 .ugoap  { color: rgba(255,255,255,0.85); }

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

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

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

/* ── Privacy: accordion layout ───────────────────────────────────────────────*/
.sa4r2 {
  background: var(--bg-card); border: 1px solid var(--border-alt);
  border-radius: 10px; overflow: hidden; margin-bottom: 10px;
}
.sa4r2 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;
}
.sa4r2 summary::-webkit-details-marker { display: none; }
.sa4r2 summary::after { content: "+"; color: var(--accent); font-size: 1.2rem; flex-shrink: 0; }
.sa4r2[open] summary::after { content: "−"; }
.cq8a {
  padding: 4px 20px 16px; color: var(--text-muted); line-height: 1.75;
  border-top: 1px solid var(--border);
}

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

/* ── Privacy: numbered layout ────────────────────────────────────────────────*/
.jmwpz9ze { counter-reset: priv-count; }
.hna5yro1 {
  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);
}
.hna5yro1:last-child { border-bottom: none; }
.pilrf {
  font-size: 2.4rem; font-weight: 800; color: var(--accent);
  opacity: 0.3; line-height: 1.1; font-variant-numeric: tabular-nums;
}
.hna5yro1 h2 {
  font-size: 1.1rem; font-weight: 700; color: var(--accent-light); margin-bottom: 10px;
}
.hna5yro1 p { color: var(--text-muted); line-height: 1.75; margin: 0; }

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

/* ── Byline slots — position control ── */
.mbrhno{display:none}
.mbrhno:empty,.kq75339n:empty{display:none}
.gt8rz34{position:relative;overflow:visible}

/* hero slot — shown for all hero positions */
.bqci .eld7,.dloi53bn .eld7,
.n6w2x .eld7,.x6a29x .eld7,
.uioqv .eld7,.se913lz .eld7{display:block}
.eab37b4 .zbbm0cv1{display:block}

/* shared overlay: centered container matching hero-content width (always 1100px) */
.bqci .eld7,.dloi53bn .eld7,
.n6w2x .eld7,.x6a29x .eld7,
.uioqv .eld7{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 */
.bqci .eld7 .kq75339n,.dloi53bn .eld7 .kq75339n,
.n6w2x .eld7 .kq75339n,.x6a29x .eld7 .kq75339n,
.uioqv .eld7 .kq75339n{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 */
.bqci .a1f6ayqr,.dloi53bn .a1f6ayqr,
.n6w2x .a1f6ayqr,.x6a29x .a1f6ayqr,
.uioqv .a1f6ayqr{background:transparent!important;border:none!important;padding:0;border-radius:0;color:inherit!important}
/* top positions */
.bqci .eld7,.dloi53bn .eld7{top:12px}
.bqci .eld7 .kq75339n{margin-right:auto}
.dloi53bn .eld7 .kq75339n{margin-left:auto}
.dloi53bn .eld7{text-align:right}
/* bottom positions */
.n6w2x .eld7,.x6a29x .eld7{bottom:12px}
.n6w2x .eld7 .kq75339n{margin-right:auto}
.x6a29x .eld7 .kq75339n{margin-left:auto}
.x6a29x .eld7{text-align:right}
/* center overlay at bottom of hero */
.uioqv .eld7{bottom:16px}
.uioqv .eld7 .kq75339n{margin:0 auto}

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

/* split hero: overlay positions fall back to static below hero (too complex to overlay on split 50/50) */
.ct42~.eld7,.zlbh5s2y~.eld7{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}
.ct42~.eld7 .kq75339n{justify-content:flex-start;margin-left:0;margin-right:auto;background:transparent;color:var(--text-body);backdrop-filter:none;-webkit-backdrop-filter:none}
.zlbh5s2y~.eld7 .kq75339n{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 */
.zbbm0cv1 .kq75339n{margin:0 0 12px}

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

/* byline author style: text — no avatar */
.er97dqx4 .hrq3l{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 */
.kxueugtn .a1f6ayqr{background:var(--date-bg, var(--accent-bg));padding:3px 10px;border-radius:99px;font-size:.78rem}
.kxueugtn .bkmp4::before{content:""}

/* cards: mini bordered cards */
.h03fzc6u .a1f6ayqr{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}
.h03fzc6u .bkmp4::before{content:""}

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

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

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

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

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

/* ── Date background variants ── */
.clqepw{--date-bg:var(--accent-bg)}
.jkknmtl{--date-bg:var(--accent-bg-light)}
.tniogn{--date-bg:transparent}

/* ── Date separator variants ── */
.qjh64s .bkmp4::before{content:""}
.eogoy .bkmp4::before{content:"•";opacity:.4}
.eogoy .a1f6ayqr + .a1f6ayqr::before{content:"•";margin-right:6px;opacity:.4}
.shmpqbf .bkmp4::before{content:"/";opacity:.35}
.shmpqbf .a1f6ayqr + .a1f6ayqr::before{content:"/";margin-right:6px;opacity:.35}
.rn1fpk .bkmp4::before{content:"|";opacity:.3}
.rn1fpk .a1f6ayqr + .a1f6ayqr::before{content:"|";margin-right:6px;opacity:.3}
.tg4k .bkmp4::before{content:"—";opacity:.3}
.tg4k .a1f6ayqr + .a1f6ayqr::before{content:"—";margin-right:6px;opacity:.3}
.blu0rjr .bkmp4::before{content:"◆";font-size:.5em;opacity:.35}
.blu0rjr .a1f6ayqr + .a1f6ayqr::before{content:"◆";font-size:.5em;margin-right:6px;opacity:.35}
.h138 .bkmp4::before{content:"·";opacity:.4}
.h138 .a1f6ayqr + .a1f6ayqr::before{content:"·";margin-right:6px;opacity:.4}
.ried .bkmp4::before{content:"›";opacity:.4}
.ried .a1f6ayqr + .a1f6ayqr::before{content:"›";margin-right:6px;opacity:.4}
.cjqj .bkmp4::before{content:"→";opacity:.35;font-size:.85em}
.cjqj .a1f6ayqr + .a1f6ayqr::before{content:"→";font-size:.85em;margin-right:6px;opacity:.35}


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

/* author box variants */
.mmof6su .y7pww{background:var(--surface-alt);border-radius:var(--radius, 8px);border:1px solid var(--border)}
.ek5nuhp .y7pww{border-top:3px solid var(--accent);padding-top:18px}
.uvyi4c .y7pww{border-left:3px solid var(--accent);border-radius:0}
.uvfc .y7pww{padding:20px 0}

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

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


/* ── color scheme ── */
:root {
  --accent:          #84a783;
  --accent-light:    #b1d6af;
  --accent-pale:     #c7ecc5;
  --grad-start:      #1c3b20;
  --grad-end:        #597a59;
  --bg-page: #0c0f0b;
  --bg-surface: #0c0f0b;
  --bg-card: #10150f;
  --bg-card-inner: #161b15;
  --bg-raised: #1b211b;
  --bg-hover: #202820;
  --border: #424a41;
  --border-alt: #70786d;
  --border-section: #424a41;
  --text-primary: #e0e8db;
  --text-muted: #a5ada2;
  --text-body: #c5c7c1;
  --text-sub: #9c9f98;
  --text-faint: #686c66;
  --text-dim: #50534e;
  --text-label: #81857f;
  --text-value: #b7bab3;
  --accent-bg:       #18371c;
  --accent-bg-light: #234226;
  --bg-tip:        #1a2e1a;
  --bg-warning:    #2d1f0e;
  --bg-info:       #1a1f2e;
  --bg-pros:       #1a2e1a;
  --bg-cons:       #2d1a1a;
  --c-pros:        #6ee7b7;
  --c-cons:        #fca5a5;
  --c-pros-label:  #34d399;
  --c-tip-border:  #34d399;
  --c-warn-border: #f59e0b;
  --c-stars:       #f59e0b;
  --c-arrow:       #f59e0b;
  --c-tag-pay:     #6ee7b7;
}
:root { --logo-bg-opacity: 72%; }

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

.ipej1 .u507qlu { font-size: 0; width: 1.2rem; flex-shrink: 0; }.ipej1 .u507qlu::before {  content: ""; display: inline-block;  font-family: "Font Awesome 6 Free"; font-weight: 900;  font-size: 1.1rem; line-height: 1; }.ipej1 .jhfnbhp2     .u507qlu::before { content: "";  color: var(--c-tip-border); }.ipej1 .tzbd .u507qlu::before { content: ""; color: var(--c-warn-border); }.ipej1 .pxiyo2    .u507qlu::before { content: ""; color: #60a5fa; }.pzex7o .ipej1 .jhfnbhp2     .u507qlu::before { color: #10b981; }.pzex7o .ipej1 .tzbd .u507qlu::before { color: #f43f5e; }.pzex7o .ipej1 .pxiyo2    .u507qlu::before { color: #a855f7; }.nu0hpn6  .ipej1 .jhfnbhp2     .u507qlu::before { color: #eab308; }.nu0hpn6  .ipej1 .tzbd .u507qlu::before { color: #ef4444; }.nu0hpn6  .ipej1 .pxiyo2    .u507qlu::before { color: #f97316; }.qr7hk0  .ipej1 .jhfnbhp2     .u507qlu::before { color: #38bdf8; }.qr7hk0  .ipej1 .tzbd .u507qlu::before { color: #818cf8; }.qr7hk0  .ipej1 .pxiyo2    .u507qlu::before { color: #2dd4bf; }.xzr5m .ipej1 .u507qlu::before { color: var(--accent-light) !important; }

.syge .jnix0xea, .syge .ct42 { min-height: 520px; }

.k57ke::before { content: '>'; }

.uex4dy4l .a1f6ayqr::before{font-family:"Font Awesome 6 Free";font-weight:900;margin-right:5px;font-size:1em;opacity:.55}.uex4dy4l .a1f6ayqr:first-of-type::before{content:"\f15b"}.uex4dy4l .a1f6ayqr:last-of-type::before{content:"\f044"}