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

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

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

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

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

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

/* bg-color: градієнтний фон замість фото */
.bmlb77f {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}
/* hero_anim: shimmer — ледь помітний блиск по поверхні */
.lkg10 .bmlb77f,
.lkg10 .kuyiu6tm {
  position: relative; overflow: hidden;
}
.lkg10 .bmlb77f::after,
.lkg10 .kuyiu6tm::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 */
.l07se54 .bmlb77f,
.l07se54 .kuyiu6tm {
  animation: hg-breathe 10s ease-in-out infinite;
}
@keyframes hg-breathe {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.92; }
}
/* hero_anim: grain — ледь помітна зернистість поверх градієнту */
.vljl .bmlb77f,
.vljl .kuyiu6tm,
.vljl .f3xe0i93 .igny {
  position: relative; overflow: hidden;
}
.vljl .bmlb77f::after,
.vljl .kuyiu6tm::after,
.vljl .f3xe0i93 .igny::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 */
.cork8gg .bmlb77f,
.cork8gg .kuyiu6tm {
  position: relative; overflow: hidden;
}
.cork8gg .bmlb77f::after,
.cork8gg .kuyiu6tm::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); }
}
.cork8gg .f3xe0i93 .igny {
  position: relative; overflow: hidden;
}
.cork8gg .f3xe0i93 .igny::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 — градієнт з'являється при завантаженні */
.ewwx .bmlb77f,
.ewwx .kuyiu6tm,
.ewwx .f3xe0i93 .igny {
  animation: hg-fadein 1.2s ease-out both;
}
@keyframes hg-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* hero-bg з фото — overlay анімації */
.lkg10 .f3xe0i93 .igny {
  position: relative; overflow: hidden;
}
.lkg10 .f3xe0i93 .igny::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;
}
.l07se54 .f3xe0i93 .igny {
  animation: hg-breathe 10s ease-in-out infinite;
}

.bmlb77f .igny {
  background: none;
}
.bmlb77f .n761pj { color: #fff; }
.bmlb77f .jixqyze { color: rgba(255,255,255,0.85); }

/* ── Hero anim: split layouts ─────────────────────────────────────────────── */
.lkg10 .vbcea { position: relative; overflow: hidden; }
.lkg10 .vbcea::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;
}
.l07se54 .vbcea {
  animation: hg-breathe 7s ease-in-out infinite;
}
.vljl .vbcea { position: relative; overflow: hidden; }
.vljl .vbcea::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;
}
.cork8gg .vbcea { position: relative; overflow: hidden; }
.cork8gg .vbcea::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;
}
.ewwx .vbcea {
  animation: hg-fadein 1.2s ease-out both;
}


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

/* Split alignment — всередині text-колонки */
.vbcea.i3qrpie .bkxcrulk { align-items: center; text-align: center; }
.vbcea.pdg6o   .bkxcrulk { align-items: flex-start; text-align: left; }

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


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

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

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

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

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

/* ── Hero: split-cards ────────────────────────────────────────────────────── */
.rqbadhka .trxr {
  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);
}
.w5yg {
  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;
}
.w5yg:last-child { border-bottom: none; }
.w5yg:hover { background: rgba(255,255,255,0.14); }
.fsoz7pqz { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1; }
.gaq9 { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.bx5uh2lp { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ngf5y { font-weight: 700; font-size: 0.95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ijvog3c { font-size: 0.82rem; color: rgba(255,255,255,0.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bkqyoe { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.ji4yaerb { font-weight: 800; font-size: 1.3rem; color: var(--accent-pale); }
.ji4yaerb small { font-size: 0.7rem; font-weight: 500; opacity: 0.6; }
.zyiq { font-size: 0.8rem; padding: 6px 14px; white-space: nowrap; }

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

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

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

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


@media (max-width: 700px) {
  .vbcea { grid-template-columns: 1fr !important; grid-template-areas: "text" !important; }
  .vbcea .qqk6 { display: none !important; }
  .d1wbjjm .qqk6 { display: none !important; }
  .rqbadhka .trxr { display: none !important; }
  .n24kx .yutqegv { display: none !important; }
  .bkxcrulk  { padding: 36px 24px; }
  /* cap hero height variants on mobile */
  .r40b, .vbcea { min-height: 320px !important; }
  /* reduce oversized headings on mobile */
  .n761pj { font-size: clamp(1.7rem, 5.5vw, 2.4rem) !important; }
  /* cards-top: hide on mobile */
  .a8nfurv1 { display: none !important; }
  /* numbered: stack */
  .p95v { flex-direction: column; align-items: center; }
  .uohvxl { width: 100%; max-width: 340px; }
}

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

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

/* rounded */
.gv9p5e5d .j05u4k        { border-radius: 16px; }
.gv9p5e5d .m2pvuamz  { border-radius: 16px; }

/* shadow */
.zligwt3e .j05u4k         { box-shadow: 0 4px 14px rgba(0,0,0,0.18); border-radius: 8px; }
.zligwt3e .m2pvuamz   { border-radius: 8px; }


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

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

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

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

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

.phnh7 .tgmb1pm:nth-child(even) .bycn .om9o:nth-child(odd),
.gjz9ys .tgmb1pm:nth-child(even) .bycn .om9o:nth-child(odd)  { background: var(--bg-card); }
.phnh7 .tgmb1pm:nth-child(even) .bycn .om9o:nth-child(even),
.gjz9ys .tgmb1pm:nth-child(even) .bycn .om9o:nth-child(even) { background: var(--bg-card-inner); }

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

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

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

/* ── Lead & intro/outro ──────────────────────────────────────────────────────*/
.n1zwsi { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 16px; }
@media (max-width: 640px) { .n1zwsi { display: none; } }
.eh3cq9 {
  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;
}
.ub5cj { margin-right: 8px; color: var(--c-arrow); }
.lyac41 { font-size: 1rem; color: var(--text-muted); margin: 8px 0 20px; }
.azdwq7a6 { font-size: 1rem; color: var(--text-muted); margin: 24px 0 0; }

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

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

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

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

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

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

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

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

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

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

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

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

/* subs-flat: мінімальний, без фону */
.jgwae .om9o { background: none; border-radius: 0; padding: 12px 0; }
.jgwae .om9o + .om9o { border-top: 1px solid var(--border-section); }
.uk7r { color: var(--text-sub); margin-bottom: 12px; font-size: 0.95rem; }
.s32ilqi { color: var(--text-sub); margin-top: 12px; font-size: 0.95rem; }

/* ── intro_style variants ────────────────────────────────────────────────────*/

/* plain: простий текст */
.xaal .lyac41,
.xaal .azdwq7a6,
.xaal .uk7r,
.xaal .s32ilqi { font-style: normal; color: var(--text-body); }

/* dash: ліва вертикальна чорточка */
.nnw53u .lyac41,
.nnw53u .azdwq7a6 {
  font-style: italic;
  border-left: 3px solid var(--border-section); padding-left: 12px;
}
.nnw53u .uk7r,
.nnw53u .s32ilqi {
  font-style: italic;
  border-left: 2px solid var(--border); padding-left: 10px;
}

/* bg: підкладка з фоном */
.f8o7 .lyac41,
.f8o7 .azdwq7a6,
.f8o7 .uk7r,
.f8o7 .s32ilqi {
  font-style: normal;
  background: var(--bg-raised); border-radius: 6px;
  padding: 10px 14px; color: var(--text-sub);
}

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

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

.g4tmmn5r     .zw0fa { list-style-type: "● "; }
.k046in  .zw0fa { list-style-type: "■ "; }
.xl9slcri .zw0fa { list-style-type: "◆ "; }
.z0oz    .zw0fa { list-style-type: "★ "; }

.g4tmmn5r     .pn4j { list-style-type: "● "; }
.k046in  .pn4j { list-style-type: "■ "; }
.xl9slcri .pn4j { list-style-type: "◆ "; }
.z0oz    .pn4j { list-style-type: "★ "; }

.g4tmmn5r    .zw0fa li::marker, .g4tmmn5r    .pn4j li::marker,
.k046in .zw0fa li::marker, .k046in .pn4j li::marker,
.xl9slcri .zw0fa li::marker, .xl9slcri .pn4j li::marker,
.z0oz   .zw0fa li::marker, .z0oz   .pn4j li::marker {
  color: var(--accent); font-size: 0.8em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

/* pill = solid but very rounded */
.cst7sf .qcow { border-radius: 50px; }
.cst7sf .jc6p7c  { border-radius: 50px; }
/* btn_pad */
.btiod .qcow { padding-left: 22px; padding-right: 22px; }
.btiod .jc6p7c  { padding-left: 12px; padding-right: 12px; }
.td2br .qcow { padding-left: 44px; padding-right: 44px; }
.td2br .jc6p7c  { padding-left: 24px; padding-right: 24px; }
.uv6edq .qcow { padding-left: 56px; padding-right: 56px; }
.uv6edq .jc6p7c  { padding-left: 32px; padding-right: 32px; }

/* ── btn_icon: SVG-іконки на .qcow і .jc6p7c (mask на currentColor) ──────*/
/* ::after — усі іконки після тексту (праворуч) */
.kpx5yi   .qcow::after, .kpx5yi   .jc6p7c::after,
.tj3jvlt .qcow::after, .tj3jvlt .jc6p7c::after,
.v7fixw    .qcow::after, .v7fixw    .jc6p7c::after,
.xn6j5    .qcow::after, .xn6j5    .jc6p7c::after,
.m2rbf7    .qcow::after, .m2rbf7    .jc6p7c::after,
.lw8vfl     .qcow::after, .lw8vfl     .jc6p7c::after,
.el80    .qcow::after, .el80    .jc6p7c::after,
.fkbk   .qcow::after, .fkbk   .jc6p7c::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 — кожна іконка */
.kpx5yi .qcow::after, .kpx5yi .jc6p7c::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");
}
.tj3jvlt .qcow::after, .tj3jvlt .jc6p7c::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");
}
.v7fixw .qcow::after, .v7fixw .jc6p7c::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");
}
.xn6j5 .qcow::after, .xn6j5 .jc6p7c::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");
}
.m2rbf7 .qcow::after, .m2rbf7 .jc6p7c::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");
}
.lw8vfl .qcow::after, .lw8vfl .jc6p7c::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");
}
.el80 .qcow::after, .el80 .jc6p7c::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");
}
.fkbk .qcow::after, .fkbk .jc6p7c::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 ────────*/
.ekzjn26   .pab3ujdc::after, .ekzjn26   .febq::after,
.v9914yjo .pab3ujdc::after, .v9914yjo .febq::after,
.fdi8te3s    .pab3ujdc::after, .fdi8te3s    .febq::after,
.igzvpeoa    .pab3ujdc::after, .igzvpeoa    .febq::after,
.a0q0fmso    .pab3ujdc::after, .a0q0fmso    .febq::after,
.eqioxu6     .pab3ujdc::after, .eqioxu6     .febq::after,
.houq5t    .pab3ujdc::after, .houq5t    .febq::after,
.hfyys   .pab3ujdc::after, .hfyys   .febq::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;
}
.ekzjn26 .pab3ujdc::after, .ekzjn26 .febq::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");
}
.v9914yjo .pab3ujdc::after, .v9914yjo .febq::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");
}
.fdi8te3s .pab3ujdc::after, .fdi8te3s .febq::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");
}
.igzvpeoa .pab3ujdc::after, .igzvpeoa .febq::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");
}
.a0q0fmso .pab3ujdc::after, .a0q0fmso .febq::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");
}
.eqioxu6 .pab3ujdc::after, .eqioxu6 .febq::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");
}
.houq5t .pab3ujdc::after, .houq5t .febq::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");
}
.hfyys .pab3ujdc::after, .hfyys .febq::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 ─────────────────────────────────────────────────────────*/
.zfqvt0 { display: flex; flex-direction: column; gap: 6px; margin: 28px 0; }


.bxggc8lk {
  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 */
.bxggc8lk > [itemprop="item"] { display: contents; }
.bxggc8lk:hover { background: var(--bg-hover); }
.odblrjhz {
  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;
}
.aida4vie { max-height: 34px; max-width: 80px; object-fit: contain; }
.qs45n { font-weight: 700; font-size: .85rem; color: var(--accent-light); }
.esfzzb { font-weight: 700; font-size: .88rem; color: var(--text-primary); flex-shrink: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.m7a4o4 { color: var(--accent); font-size: .8rem; letter-spacing: 1px; flex-shrink: 1; min-width: 0; }
.xf0p { display: flex; flex-direction: column; align-items: center; font-size: .78rem; flex: 1 1 0; min-width: 0; }
.avu4gvs { color: var(--text-label); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.fit4 { color: var(--text-value); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.op0mkk { margin-left: auto; flex-shrink: 0; white-space: nowrap; }
.op0mkk.jc6p7c { padding-left: 16px !important; padding-right: 16px !important; }
/* планшет / мобіль: 2-колонкова сітка вертикальних карток */
@media (max-width: 720px) {
  .zfqvt0 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .zfqvt0 .bxggc8lk { flex-direction: column; align-items: center; padding: 16px 12px; border-radius: 14px; gap: 8px; }
  .zfqvt0 .odblrjhz { width: 100%; min-width: unset; height: 52px; }
  .zfqvt0 .aida4vie { max-height: 40px; max-width: 110px; }
  .zfqvt0 .esfzzb { min-width: unset; text-align: center; }
  .zfqvt0 .xf0p { flex-direction: row; justify-content: space-between; width: 100%; border-top: 1px solid var(--border); padding-top: 5px; }
  .zfqvt0 .op0mkk { width: 100%; text-align: center; margin-left: 0; }
  .un8hf .bxggc8lk { row-gap: 8px !important; gap: 8px !important; }
}

/* ── Casino reviews ──────────────────────────────────────────────────────────*/
.muu6ow {
  background: var(--bg-card);
  border-radius: 12px; margin: 24px 0; overflow: hidden;
  border: 1px solid var(--border-alt);
}
.gpuk5u {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 24px; background: var(--bg-surface);
}
.d943 {
  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;
}
.d943 img { max-width: 80px; max-height: 50px; object-fit: contain; }
.b7eol22 { color: var(--accent); font-weight: 700; font-size: 0.85rem; text-align: center; }
.zccgz { flex: 1; }
.zccgz h3 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 4px; }
.kf2d8a { color: var(--c-stars); font-size: 1.1rem; }
.w9bp1 { margin-bottom: 8px; }
.hu1hxhnq { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 0.83rem; color: var(--text-muted); }
.korshipe::before   { content: "★ "; color: var(--accent); }
.jwi0::before { content: "↓ "; color: var(--accent); }
.rlufg::before { content: "✦ "; color: var(--accent); }
.r8p33l { flex-shrink: 0; }
.tojdc img.t3o4xghs { width: 100%; max-height: 240px; object-fit: cover; display: block; }
.usebv30 { padding: 20px 24px; }
.oqw7tng { color: var(--text-muted); margin-bottom: 16px; }
.pdio { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 14px; }
.uenk0, .h9t8d3 { list-style: none; font-size: 0.9rem; }
.uenk0 li { color: var(--c-pros); margin-bottom: 4px; }
.h9t8d3 li { color: var(--c-cons); margin-bottom: 4px; }
/* CSS маркери для pros/cons замість символів в HTML */
.uenk0 li::before { content: "✓"; margin-right: 5px; }
.h9t8d3 li::before { content: "✗"; margin-right: 5px; }
.r9ente9o .uenk0 li::before { content: "→"; }
.r9ente9o .h9t8d3 li::before { content: "–"; }
.z852  .uenk0 li::before { content: "★"; }
.z852  .h9t8d3 li::before { content: "✕"; }
.um5zjm    .uenk0 li::before { content: "◆"; }
.um5zjm    .h9t8d3 li::before { content: "▲"; }
.ex453ma  .uenk0 li::before { content: "▶"; }
.ex453ma  .h9t8d3 li::before { content: "■"; }
.v5jok1 { margin-bottom: 8px; font-size: 0.85rem; color: var(--text-muted); }
.bro42p { background: var(--accent-bg); color: var(--accent-light); border-radius: 4px; padding: 2px 8px; margin: 2px 2px 2px 0; display: inline-block; }
.llf87pwp { background: var(--bg-pros); color: var(--c-tag-pay); }

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


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

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

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

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

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

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

/* ── Brand card (single brand, two-column hero) ─────────────────────────────*/
/* ═══════════════════════════════════════════════════════════════════════════
   BRAND CARD — shared tokens
   ═══════════════════════════════════════════════════════════════════════════ */
.pdwzudf {
  background: var(--bg-card);
  border: 1px solid var(--border-alt);
  border-radius: 12px;
  margin: 28px 0;
  overflow: hidden;
}
.iiridw {
  width: 100px; height: 68px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border-radius: 10px; padding: 8px;
  flex-shrink: 0;
}
.iiridw img { max-width: 100%; max-height: 100%; object-fit: contain; }
.zpuhb { font-size: 1.15rem; font-weight: 700; color: var(--text); }
.ne5kc530 { display: flex; align-items: center; gap: 8px; }
.ne5kc530 .kf2d8a { font-size: .95rem; }
.ne5kc530 strong { font-size: 1.1rem; color: var(--text); }
.wjxlsgk { border-radius: 8px; overflow: hidden; }
.wjxlsgk img { width: 100%; display: block; border-radius: 8px; }
.bi7x { text-align: center; flex-shrink: 0; }
.j7ivv1ro { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; }
.y429d64 { font-size: .82rem; color: var(--text-muted); font-weight: 500; }
.vofilnk8 { font-size: .88rem; font-weight: 600; color: var(--text); }
.kaq4 .vofilnk8 { font-size: 1.02rem; font-weight: 700; color: var(--accent); }
.pdwzudf .foutc { gap: 10px; }
.pdwzudf .odgzzu4q, .pdwzudf .ai1i9ue { padding: 12px; }
.pdwzudf .odgzzu4q ul, .pdwzudf .ai1i9ue ul { margin: 4px 0 0; padding-left: 18px; }
.pdwzudf .odgzzu4q li, .pdwzudf .ai1i9ue li { font-size: .85rem; margin-bottom: 3px; }
.rrosjvh { font-size: .8rem; color: var(--text-muted); margin-top: 10px; }
.rrosjvh strong { color: var(--text-secondary); }
.rrosjvh .bro42p { margin: 2px 4px 2px 0; }

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

/* ── LAYOUT 2: hero — full-width screenshot header ────────────────────────── */
.h5twk {
  position: relative; max-height: 240px; overflow: hidden;
}
.h5twk > img { width: 100%; display: block; object-fit: cover; min-height: 160px; }
.z75g {
  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;
}
.z75g .iiridw { background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border-radius: 10px; }
.z75g .zpuhb { color: #fff; font-size: 1.25rem; }
.z75g .ne5kc530 strong { color: #fff; }
.z75g .ne5kc530 .kf2d8a { filter: brightness(1.2); }
.z75g .bi7x { margin-left: auto; white-space: nowrap; }
.jxbbi9o { flex: 1; }
.lka4v {
  display: flex; align-items: center; gap: 16px; padding: 20px 24px;
  border-bottom: 1px solid var(--border-alt);
}
.lka4v .bi7x { margin-left: auto; }
.jfim2 { display: flex; flex-direction: column; gap: 16px; padding: 20px 24px; }
.baa8 .pt1281 {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--border-alt); border-radius: 8px; overflow: hidden;
}
.baa8 .j7ivv1ro {
  flex: 1 1 auto; min-width: 120px;
  border-right: 1px solid var(--border-alt); border-bottom: 1px solid var(--border-alt);
}
.baa8 .kaq4 { flex-basis: 100%; background: var(--accent-bg); border-right: none; }
@media (max-width: 720px) {
  .z75g { flex-wrap: wrap; gap: 10px; padding: 12px 16px; }
  .jfim2 { padding: 16px; }
  .baa8 .j7ivv1ro { min-width: 50%; }
}

/* ── LAYOUT 3: magazine — editorial 3-column ──────────────────────────────── */
.r46a {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-alt);
}
.xt7d { flex: 1; }
.xt7d .zpuhb { font-size: 1.3rem; }
.lbrncq5 {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
}
.iht6 { padding: 16px; border-right: 1px solid var(--border-alt); }
.iht6 .wjxlsgk { height: 100%; }
.iht6 .wjxlsgk img { height: 100%; object-fit: cover; }
.cgc8us { padding: 0; border-right: 1px solid var(--border-alt); }
.cgc8us .pt1281 { display: flex; flex-direction: column; }
.cgc8us .j7ivv1ro { border-bottom: 1px solid var(--border-alt); }
.cgc8us .kaq4 { background: var(--accent-bg); }
.ddddw14 { padding: 16px; }
.ddddw14 .foutc { grid-template-columns: 1fr; }
.atdr3 {
  padding: 12px 24px; border-top: 1px solid var(--border-alt);
  display: flex; flex-wrap: wrap; gap: 12px;
}
@media (max-width: 860px) {
  .lbrncq5 { grid-template-columns: 1fr; }
  .iht6 { border-right: none; border-bottom: 1px solid var(--border-alt); }
  .cgc8us { border-right: none; border-bottom: 1px solid var(--border-alt); }
}
@media (max-width: 540px) {
  .r46a { flex-wrap: wrap; padding: 16px; }
}

/* ── LAYOUT 4: compact — header bar → screenshot → data ──────────────────── */
.us8q44 {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 16px 20px; border-bottom: 1px solid var(--border-alt);
}
.m5okoa {
  display: flex; align-items: center; gap: 12px; flex: 1;
}
.m5okoa .iiridw { width: 72px; height: 50px; }
.m5okoa .zpuhb { font-size: 1rem; white-space: nowrap; }
.thfg3s { border-bottom: 1px solid var(--border-alt); max-height: 280px; overflow: hidden; }
.thfg3s img { width: 100%; display: block; object-fit: cover; }
.az15 {
  display: flex; flex-direction: column; gap: 10px; padding: 14px 16px; overflow: hidden;
}
.y0kzgm .pt1281 { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.y0kzgm .j7ivv1ro { padding: 0; flex: 0 0 auto; gap: 6px; }
.y0kzgm .kaq4 { display: none; }
.y0kzgm .foutc { gap: 8px; }
.y0kzgm .odgzzu4q, .y0kzgm .ai1i9ue { padding: 8px; }
@media (max-width: 480px) {
  .us8q44 { flex-direction: column; align-items: stretch; }
}

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

/* ── LAYOUT 6: scorecard — big score centerpiece ──────────────────────────── */
.e729mhs {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: center;
  border-bottom: 1px solid var(--border-alt);
}
.a2hb {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px; text-align: center;
}
.h3j6at {
  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;
}
.qqqk { font-size: 1.8rem; font-weight: 800; color: var(--accent); line-height: 1; }
.qqqk .bqqyt5 { font-size: .9rem; font-weight: 500; color: var(--text-muted); }
.h3j6at .kf2d8a { font-size: .75rem; margin-top: 2px; }
.lhkv3blb { padding: 12px; display: flex; align-items: center; flex: 1; }
.lhkv3blb .wjxlsgk { width: 100%; }
.a5gd {
  padding: 0; border-bottom: 1px solid var(--border-alt);
}
.dv835 .pt1281 {
  display: flex; flex-wrap: wrap;
}
.dv835 .j7ivv1ro {
  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;
}
.dv835 .j7ivv1ro:last-child { border-right: none; }
.dv835 .y429d64 { font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; }
.dv835 .kaq4 { background: var(--accent-bg); }
.myo65l { padding: 16px 20px; display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 720px) {
  .e729mhs { grid-template-columns: 1fr; }
  .h3j6at { width: 100px; height: 100px; margin: 16px auto; }
  .qqqk { font-size: 1.4rem; }
  .lhkv3blb { justify-content: center; }
  .dv835 .j7ivv1ro { min-width: 50%; }
}

/* ── LAYOUT 7: stack — vertical full-width flow ──────────────────────────── */
.w252 {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-alt);
}
.fwxzz { max-height: 240px; overflow: hidden; border-bottom: 1px solid var(--border-alt); }
.fwxzz img { width: 100%; display: block; object-fit: cover; }
.emk4 { padding: 16px 24px; border-bottom: 1px solid var(--border-alt); }
.ir0qklcw .pt1281 {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.ir0qklcw .j7ivv1ro {
  background: var(--surface); border: 1px solid var(--border-alt);
  border-radius: 20px; padding: 6px 14px; gap: 8px;
}
.ir0qklcw .kaq4 {
  background: var(--accent-bg); border-color: var(--accent-pale);
}
.ir0qklcw .foutc { margin: 0 24px; padding-top: 16px; }
.ir0qklcw .rrosjvh { padding: 0 24px; }
.frb8b1a { padding: 16px 24px; border-top: 1px solid var(--border-alt); text-align: center; }
.frb8b1a .bi7x { display: inline-block; }
@media (max-width: 540px) {
  .w252 { flex-wrap: wrap; padding: 14px 16px; }
  .emk4 { padding: 12px 16px; }
  .ir0qklcw .foutc { margin: 0 16px; }
  .ir0qklcw .rrosjvh { padding: 0 16px; }
  .frb8b1a { padding: 12px 16px; }
}


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

/* grid: showcase в 2-col grid, review компактніший */
.lyvklr5d .zfqvt0 {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 12px;
}
.lyvklr5d .zfqvt0 .bxggc8lk {
  flex-direction: column; align-items: center; padding: 16px 12px; border-radius: 14px; gap: 8px;
}
.lyvklr5d .zfqvt0 .odblrjhz { width: 100%; min-width: unset; height: 52px; }
.lyvklr5d .zfqvt0 .esfzzb { min-width: unset; text-align: center; }
.lyvklr5d .zfqvt0 .xf0p {
  flex-direction: row; justify-content: space-between;
  width: 100%; border-top: 1px solid var(--border); padding-top: 5px;
}
.lyvklr5d .zfqvt0 .op0mkk { width: 100%; text-align: center; margin-left: 0; }
.lyvklr5d .gpuk5u { gap: 14px; }

/* ranked: accent-pill значення + uppercase лейбли (нумерація — через cs_rank) */
.agkyj .avu4gvs {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted);
}
.agkyj .fit4 {
  color: var(--accent); font-weight: 700;
  background: var(--accent-bg); border-radius: 100px;
  padding: 1px 9px; font-size: 0.8rem;
}
.agkyj .m7a4o4 { color: var(--accent); }
.agkyj .gpuk5u { background: var(--accent-bg); }
.agkyj .korshipe, .agkyj .jwi0, .agkyj .rlufg {
  background: var(--bg-card); border-radius: 100px; padding: 1px 10px;
  border: 1px solid var(--border);
}

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

/* accent: акцентна смуга зверху на showcase-картках, кольоровий заголовок review */
.ai0lqymg .bxggc8lk { border-top: 3px solid var(--accent); }
.ai0lqymg .odblrjhz { background: var(--accent-bg); }
.ai0lqymg .muu6ow { overflow: hidden; }
.ai0lqymg .gpuk5u { background: var(--accent-bg); }

/* compact: менші відступи всюди */
.k7m14 .bxggc8lk { padding: 8px 14px; gap: 12px; }
.k7m14 .odblrjhz { height: 32px; min-width: 52px; }
.k7m14 .aida4vie { max-height: 24px; }
.k7m14 .esfzzb { font-size: 0.82rem; }
.k7m14 .gpuk5u { padding: 14px 18px; gap: 14px; }
.k7m14 .usebv30 { padding: 14px 18px; }
.k7m14 .d943 { width: 70px; }
.k7m14 .zccgz h3 { font-size: 1.05rem; }

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

/* bordered: таблиця з усіма рамками */
.un8hf .zfqvt0 {
  gap: 0; border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.un8hf .bxggc8lk {
  border-radius: 0; border: none;
  border-bottom: 1px solid var(--border); row-gap: 0; column-gap: 12px;
}
.un8hf .bxggc8lk:last-child { border-bottom: none; }
/* вертикальні межі між колонками */
.un8hf .m7a4o4,
.un8hf .xqrjvly4,
.un8hf .n6fgk6o { border-left: 1px solid var(--border); padding-left: 10px; }
.un8hf .esfzzb { padding: 0 10px; }

/* ── cs_cols: feature — бонус-колонка виділена як головна ──────────────────*/
.fbfijnp .xqrjvly4 { flex: 1.8; }
.fbfijnp .xqrjvly4 .fit4 {
  font-size: 0.88rem; font-weight: 700; color: var(--accent);
}
.fbfijnp .xqrjvly4 .avu4gvs { font-weight: 700; color: var(--text-primary); }
.fbfijnp .uca2e,
.fbfijnp .lgou,
.fbfijnp .ybhw46c9 { flex: 0.75; opacity: 0.65; }

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

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

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

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

/* score в оглядах — ховаємо зірки */
.jr1b83 .w9bp1 .kf2d8a,
.whgg .w9bp1 .kf2d8a,
.ocgc63q3 .w9bp1 .kf2d8a { display: none; }

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

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

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

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

/* ── Sections ────────────────────────────────────────────────────────────────*/
.tgmb1pm { margin-bottom: 0; }
.lv1bt h2.tahoo28 { color: var(--accent-light); border-color: var(--accent); }
.w8jbq58 h2.tahoo28 { color: var(--accent-light); border-color: var(--accent); }

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

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

/* vivid: смарагд / рожевий / фіолетовий */
.w5ew09 .oj049lg     { background: #052e16; border-color: #10b981; }
.w5ew09 .q0wh0s { background: #2d0a1e; border-color: #f43f5e; }
.w5ew09 .xulop3    { background: #1e1036; border-color: #a855f7; }
.w5ew09 .dybx strong  { color: #f1f5f9; }
.w5ew09 .dybx p       { color: #cbd5e1; }
.w5ew09 .wny6s    .oj049lg     .v259uh::before,
.w5ew09 .fzkc  .oj049lg     .v259uh::before,
.w5ew09 .tsz1ojw  .oj049lg     .v259uh::before,
.w5ew09 .wm8x .oj049lg     .v259uh::before { color: #10b981; }
.w5ew09 .wny6s    .q0wh0s .v259uh::before,
.w5ew09 .fzkc  .q0wh0s .v259uh::before,
.w5ew09 .tsz1ojw  .q0wh0s .v259uh::before,
.w5ew09 .wm8x .q0wh0s .v259uh::before { color: #f43f5e; }
.w5ew09 .wny6s    .xulop3    .v259uh::before,
.w5ew09 .fzkc  .xulop3    .v259uh::before,
.w5ew09 .tsz1ojw  .xulop3    .v259uh::before,
.w5ew09 .wm8x .xulop3    .v259uh::before { color: #a855f7; }

/* warm: жовтий / червоний / помаранчевий */
.lj4yk .oj049lg     { background: #2d2000; border-color: #eab308; }
.lj4yk .q0wh0s { background: #2d0b0b; border-color: #ef4444; }
.lj4yk .xulop3    { background: #2d1600; border-color: #f97316; }
.lj4yk .dybx strong  { color: #f1f5f9; }
.lj4yk .dybx p       { color: #cbd5e1; }
.lj4yk .wny6s    .oj049lg     .v259uh::before,
.lj4yk .fzkc  .oj049lg     .v259uh::before,
.lj4yk .tsz1ojw  .oj049lg     .v259uh::before,
.lj4yk .wm8x .oj049lg     .v259uh::before { color: #eab308; }
.lj4yk .wny6s    .q0wh0s .v259uh::before,
.lj4yk .fzkc  .q0wh0s .v259uh::before,
.lj4yk .tsz1ojw  .q0wh0s .v259uh::before,
.lj4yk .wm8x .q0wh0s .v259uh::before { color: #ef4444; }
.lj4yk .wny6s    .xulop3    .v259uh::before,
.lj4yk .fzkc  .xulop3    .v259uh::before,
.lj4yk .tsz1ojw  .xulop3    .v259uh::before,
.lj4yk .wm8x .xulop3    .v259uh::before { color: #f97316; }

/* cool: блакитний / індиго / бірюзовий */
.zby68nkd .oj049lg     { background: #0c1a2e; border-color: #38bdf8; }
.zby68nkd .q0wh0s { background: #12103a; border-color: #818cf8; }
.zby68nkd .xulop3    { background: #0a2020; border-color: #2dd4bf; }
.zby68nkd .dybx strong  { color: #f1f5f9; }
.zby68nkd .dybx p       { color: #cbd5e1; }
.zby68nkd .wny6s    .oj049lg     .v259uh::before,
.zby68nkd .fzkc  .oj049lg     .v259uh::before,
.zby68nkd .tsz1ojw  .oj049lg     .v259uh::before,
.zby68nkd .wm8x .oj049lg     .v259uh::before { color: #38bdf8; }
.zby68nkd .wny6s    .q0wh0s .v259uh::before,
.zby68nkd .fzkc  .q0wh0s .v259uh::before,
.zby68nkd .tsz1ojw  .q0wh0s .v259uh::before,
.zby68nkd .wm8x .q0wh0s .v259uh::before { color: #818cf8; }
.zby68nkd .wny6s    .xulop3    .v259uh::before,
.zby68nkd .fzkc  .xulop3    .v259uh::before,
.zby68nkd .tsz1ojw  .xulop3    .v259uh::before,
.zby68nkd .wm8x .xulop3    .v259uh::before { color: #2dd4bf; }

/* accent: використовує динамічний акцент */
.rosryj .oj049lg     { background: var(--accent-bg); border-color: var(--accent); }
.rosryj .q0wh0s { background: var(--accent-bg-light); border-color: var(--accent-light); }
.rosryj .xulop3    { background: var(--accent-bg); border-color: var(--accent-pale); }
.rosryj .wny6s    .v259uh::before,
.rosryj .fzkc  .v259uh::before,
.rosryj .tsz1ojw  .v259uh::before,
.rosryj .wm8x .v259uh::before { color: var(--accent-light) !important; }

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

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

/* classic — фіксовані контрастні кольори незалежно від акценту */
.khtzuby .odgzzu4q ul li,
.khtzuby .uenk0 li         { color: #4ade80; }
.khtzuby .odgzzu4q .lj82h { color: #22c55e; }
.khtzuby .ai1i9ue ul li,
.khtzuby .h9t8d3 li         { color: #f87171; }
.khtzuby .ai1i9ue .rypm5g { color: #ef4444; }

/* blue: синій pros / amber cons */
.kg1ubqmn .odgzzu4q { background: #0c1a2e; }
.kg1ubqmn .ai1i9ue { background: #2d1f00; }
.kg1ubqmn .odgzzu4q .lj82h { color: #93c5fd; }
.kg1ubqmn .ai1i9ue .rypm5g { color: #fcd34d; }
.kg1ubqmn .odgzzu4q ul li,
.kg1ubqmn .uenk0 li            { color: #bfdbfe; }
.kg1ubqmn .ai1i9ue ul li,
.kg1ubqmn .h9t8d3 li            { color: #fde68a; }

/* accent: label акцентний, текст завжди читабельний */
.va0evj .odgzzu4q { background: var(--accent-bg); }
.va0evj .ai1i9ue { background: var(--accent-bg-light); }
.va0evj .odgzzu4q .lj82h { color: var(--accent-pale); }
.va0evj .ai1i9ue .rypm5g { color: var(--accent-light); }
.va0evj .odgzzu4q ul li,
.va0evj .uenk0 li          { color: var(--text-body); }
.va0evj .ai1i9ue ul li,
.va0evj .h9t8d3 li          { color: var(--text-body); }

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

/* check: ✓ / ✗ */
.izn0q3wi .lj82h::before { content: "✓ "; }
.izn0q3wi .rypm5g::before { content: "✗ "; }

/* arrows: → / ← */
.r9ente9o .lj82h::before { content: "→ "; }
.r9ente9o .rypm5g::before { content: "← "; }

/* marks: ★ / ✕ */
.z852 .lj82h::before { content: "★ "; }
.z852 .rypm5g::before { content: "✕ "; }

/* geo: ◆ / ▲ */
.um5zjm .lj82h::before { content: "◆ "; }
.um5zjm .rypm5g::before { content: "▲ "; }

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

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

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

/* topbar: смуга зверху */
.lwct .dybx { border-left: none; border-top: 4px solid; border-radius: 0 0 8px 8px; }
.lwct .oj049lg     { border-top-color: var(--c-tip-border); }
.lwct .q0wh0s { border-top-color: var(--c-warn-border); }
.lwct .xulop3    { border-top-color: #60a5fa; }

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

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

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

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

.wny6s .v259uh,
.fzkc .v259uh,
.tsz1ojw .v259uh,
.wm8x .v259uh { font-size: 0; width: 1.1rem; flex-shrink: 0; }

.wny6s .v259uh::before,
.fzkc .v259uh::before,
.tsz1ojw .v259uh::before,
.wm8x .v259uh::before {
  display: block; font-size: 1.15rem; line-height: 1.3; font-style: normal;
}

/* geo: ✦ ▲ ◉ */
.wny6s .oj049lg     .v259uh::before { content: "✦"; color: var(--c-tip-border); }
.wny6s .q0wh0s .v259uh::before { content: "▲"; color: var(--c-warn-border); }
.wny6s .xulop3    .v259uh::before { content: "◉"; color: #60a5fa; }

/* marks: ★ ◆ ● */
.fzkc .oj049lg     .v259uh::before { content: "★"; color: var(--c-tip-border); }
.fzkc .q0wh0s .v259uh::before { content: "◆"; color: var(--c-warn-border); }
.fzkc .xulop3    .v259uh::before { content: "●"; color: #60a5fa; }

/* sharp: ▶ ■ ▸ */
.tsz1ojw .oj049lg     .v259uh::before { content: "▶"; color: var(--c-tip-border); }
.tsz1ojw .q0wh0s .v259uh::before { content: "■"; color: var(--c-warn-border); }
.tsz1ojw .xulop3    .v259uh::before { content: "▸"; color: #60a5fa; }

/* arrows: → ⬥ ◈ */
.wm8x .oj049lg     .v259uh::before { content: "→"; color: var(--c-tip-border); }
.wm8x .q0wh0s .v259uh::before { content: "⬥"; color: var(--c-warn-border); }
.wm8x .xulop3    .v259uh::before { content: "◈"; color: #60a5fa; }

/* ── shadow variant ──────────────────────────────────────────────────────────*/
.u44en0 .oa3at4vz .om9o,
.u44en0 .bycn .om9o  { box-shadow: 0 2px 8px rgba(0,0,0,0.22); }
.u44en0 .z3hv30                { box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
.u44en0 .bxggc8lk                { box-shadow: 0 4px 12px rgba(0,0,0,0.28); }
.u44en0 .muu6ow            { box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.u44en0 .kfuv          { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }
.u44en0 .hqnuzodf                    { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }

/* shadow-none: скидаємо будь-які тіні */
.pzmzty3 .oa3at4vz .om9o,
.pzmzty3 .bycn .om9o,
.pzmzty3 .z3hv30,
.pzmzty3 .bxggc8lk,
.pzmzty3 .muu6ow,
.pzmzty3 .kfuv,
.pzmzty3 .hqnuzodf,
.pzmzty3 .v4o438 .dybx { box-shadow: none; }

/* ── text_size variants ──────────────────────────────────────────────────────*/
.myms0   body, .myms0   { font-size: 0.9rem; }
.myms0   .o7hc9, .myms0 .uk7r, .myms0 .s32ilqi,
.myms0   .lyac41, .myms0 .azdwq7a6 { font-size: 0.9rem; }
.myms0   .zw0fa, .myms0 .ak7e64x { font-size: 0.9rem; }

.hu8t   .o7hc9, .hu8t .uk7r, .hu8t .s32ilqi,
.hu8t   .lyac41, .hu8t .azdwq7a6 { font-size: 0.9rem; }
.hu8t   .zw0fa, .hu8t .ak7e64x { font-size: 0.9rem; }

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

.zdnfcmlr   .o7hc9, .zdnfcmlr .uk7r, .zdnfcmlr .s32ilqi,
.zdnfcmlr   .lyac41, .zdnfcmlr .azdwq7a6 { font-size: 1.08rem; }
.zdnfcmlr   .zw0fa, .zdnfcmlr .ak7e64x { font-size: 1.05rem; }
.zdnfcmlr   .sr4jj { font-size: 0.97rem; }

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

/* large */
.ytvm .n761pj      { font-size: 3.2rem; }
.ytvm h2.tahoo28 { font-size: 1.9rem; }
.ytvm h3.qzrb     { font-size: 1.4rem; }

/* display */
.wqx9xvsf .n761pj      { font-size: 3.8rem; }
.wqx9xvsf h2.tahoo28 { font-size: 2.2rem; }
.wqx9xvsf h3.qzrb     { font-size: 1.6rem; }

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

/* Спільна база: abs-позиція на межі між секціями */
.ww97   .tgmb1pm + .tgmb1pm::before,
.sh0m5m  .tgmb1pm + .tgmb1pm::before,
.o5z9   .tgmb1pm + .tgmb1pm::before,
.y5az   .tgmb1pm + .tgmb1pm::before,
.ri85   .tgmb1pm + .tgmb1pm::before,
.bvgthbv .tgmb1pm + .tgmb1pm::before {
  position: absolute; top: -1px; left: 0; right: 0;
  transform: translateY(-50%);
}

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

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

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

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

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

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

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

/* section_bg=stripe: парні секції мають bg-card */
.gjz9ys .znn3bm7 .tgmb1pm:nth-child(even)::before,
.gjz9ys .j1qlf .tgmb1pm:nth-child(even)::before,
.gjz9ys .cr42 .tgmb1pm:nth-child(even)::before { background: var(--bg-card); }

/* wave-a: плавна S-хвиля (1 гребінь) */
.znn3bm7 .tgmb1pm + .tgmb1pm::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 гребені */
.j1qlf .tgmb1pm + .tgmb1pm::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: глибока дуга */
.cr42 .tgmb1pm + .tgmb1pm::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 у формі хвилі */
.gehp .f3xe0i93,
.l8h74pf3 .f3xe0i93,
.lpsd9 .f3xe0i93 { overflow: hidden; }

/* wave: додатковий простір щоб хвиля не закривала CTA */
.gehp .ocfku3m,
.l8h74pf3 .ocfku3m { margin-bottom: 60px; }
.lpsd9 .ocfku3m { margin-bottom: 70px; }
.gehp .bkxcrulk,
.l8h74pf3 .bkxcrulk { padding-bottom: 60px; }
.lpsd9 .bkxcrulk { padding-bottom: 70px; }

.gehp .f3xe0i93::before,
.l8h74pf3 .f3xe0i93::before,
.lpsd9 .f3xe0i93::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 гребінь) */
.gehp .f3xe0i93::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 гребені */
.l8h74pf3 .f3xe0i93::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: глибока дуга */
.lpsd9 .f3xe0i93::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 */
.nf4c442 .igny { background: linear-gradient(225deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%); }
.ymupch .igny { background: linear-gradient(45deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 100%); }
.vl2i  .igny { background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%); }
.qjzw68a  .igny { background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%); }

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

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

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

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


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

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

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

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

/* Великі блочні елементи — clear float щоб не стискались */
.tdzhi .fj9r2q,
.tdzhi .zfqvt0,
.mkzcnqk .fj9r2q,
.mkzcnqk .zfqvt0,
.lkafhll2 .fj9r2q,
.lkafhll2 .zfqvt0 { clear: both; }

/* Маркери списків не мають налазити на float-картинку */
.tdzhi .zw0fa,
.tdzhi .ak7e64x,
.mkzcnqk .zw0fa,
.mkzcnqk .ak7e64x,
.lkafhll2 .zw0fa,
.lkafhll2 .ak7e64x { overflow: hidden; }


@media (max-width: 640px) {
  .tdzhi .j05u4k,
  .mkzcnqk .j05u4k,
  .lkafhll2 .j05u4k { float: none; width: 100%; margin: 0 0 16px 0; }
}

/* ── content_width: ширина контентного контейнера ───────────────────────────*/
/* default = 1000px (задано в .olh8bk, .at9ez, .qzgmnxf) */
.evm54sdt .olh8bk,
.evm54sdt .at9ez,
.evm54sdt .qzgmnxf  { max-width: 1100px; }
.ci2vi .olh8bk,
.ci2vi .at9ez,
.ci2vi .qzgmnxf  { max-width: 1200px; }
.mlsn2ell .olh8bk,
.mlsn2ell .at9ez,
.mlsn2ell .qzgmnxf  { max-width: 1320px; }

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

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

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

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

/* content-width: above — обидва класи на <body>, тому без пробілу */
.evm54sdt.ed9eh9xv .fgkwna { max-width: 1100px; }
.ci2vi.ed9eh9xv .fgkwna { max-width: 1200px; }
.mlsn2ell.ed9eh9xv .fgkwna { max-width: 1320px; }
/* float — bc-float-wrap окремий елемент, тому з пробілом */
.evm54sdt .vjrc { max-width: 1100px; }
.ci2vi .vjrc { max-width: 1200px; }
.mlsn2ell .vjrc { max-width: 1320px; }

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

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

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

/* ── font_weight: жирність тексту ────────────────────────────────────────────*/
/* fw-300: тонкий */
.yjfk { font-weight: 300; }
.yjfk h2.tahoo28 { font-weight: 600; }
.yjfk h3.qzrb     { font-weight: 600; }
/* fw-400: default — без override */
/* fw-500: medium */
.ix3bn7e { font-weight: 500; }
.ix3bn7e h2.tahoo28 { font-weight: 800; }
.ix3bn7e h3.qzrb     { font-weight: 700; }
/* fw-600: semibold */
.jxb0nxdm { font-weight: 600; }
.jxb0nxdm h2.tahoo28 { font-weight: 900; }
.jxb0nxdm h3.qzrb     { font-weight: 800; }
.jxb0nxdm .dybx strong,
.jxb0nxdm .uk7r,
.jxb0nxdm .lyac41 { font-weight: 600; }

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

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

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

/* minimal */
.lwv6 .qzgmnxf { text-align: center; }
.lwv6 .o0p6 { justify-content: center; margin-bottom: 16px; }
.lwv6 .moo92n { margin-top: 0; }

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

/* mobile footer */
@media (max-width: 640px) {
  .qzgmnxf { padding-left: 16px; padding-right: 16px; }
  .yn81ddv6 .qzgmnxf { padding: 20px 16px; }
  .o0p6 { gap: 4px 12px; }
  .moo92n { font-size: 0.78rem; }
}


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


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

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

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

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

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

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

/* dark: завжди темний, незалежно від теми */
.growfq .by4313      { background: #0d1117; border-bottom-color: #21262d; }
.growfq .rigc { color: var(--accent-light); }
.growfq .ov27hxe { --msep-color: #8b949e; }
.growfq .ov27hxe a { color: #8b949e; }
.growfq .ov27hxe a:hover { color: var(--accent-light); }
.growfq .q69n1 { color: #8b949e; }
.growfq .g6cg06 { background: #0d1117; border-top-color: #21262d; }
.growfq .moo92n,
.growfq .vkfk0c7x { color: #6e7681; }
.growfq .gg77 a, .growfq .o0p6 a,
.growfq .pzto a, .growfq .xd5l7w36 a,
.growfq .ir311a a, .growfq .c6ewbwbj { color: #8b949e; }
.growfq .gg77 a:hover, .growfq .o0p6 a:hover,
.growfq .pzto a:hover, .growfq .xd5l7w36 a:hover { color: var(--accent-light); }
@media (max-width: 640px) {
  .growfq .ov27hxe { background: #0d1117; border-top-color: #21262d; }
  .growfq .ov27hxe li a { border-bottom-color: #21262d; }
}

/* light: завжди світлий */
.k6qs6mod .by4313      { background: #f0f4f8; border-bottom-color: #cbd5e1; }
.k6qs6mod .rigc { color: var(--accent); }
.k6qs6mod .ov27hxe { --msep-color: #475569; }
.k6qs6mod .ov27hxe a { color: #475569; }
.k6qs6mod .ov27hxe a:hover { color: var(--accent); }
.k6qs6mod .q69n1 { color: #64748b; }
.k6qs6mod .g6cg06 { background: #f0f4f8; border-top-color: #cbd5e1; }
.k6qs6mod .moo92n,
.k6qs6mod .vkfk0c7x { color: #64748b; }
.k6qs6mod .gg77 a, .k6qs6mod .o0p6 a,
.k6qs6mod .pzto a, .k6qs6mod .xd5l7w36 a,
.k6qs6mod .ir311a a, .k6qs6mod .c6ewbwbj { color: #374151; }
.k6qs6mod .gg77 a:hover, .k6qs6mod .o0p6 a:hover,
.k6qs6mod .pzto a:hover, .k6qs6mod .xd5l7w36 a:hover { color: var(--accent); }
@media (max-width: 640px) {
  .k6qs6mod .ov27hxe { background: #f0f4f8; border-top-color: #cbd5e1; }
  .k6qs6mod .ov27hxe li a { border-bottom-color: #cbd5e1; color: #475569; }
}

/* accent: кольоровий акцентний фон */
.lu618 .by4313      { background: var(--accent); border-bottom-color: var(--accent-light); }
.lu618 .rigc { color: #fff; }
.lu618 .ov27hxe { --msep-color: rgba(255,255,255,0.82); }
.lu618 .ov27hxe a { color: rgba(255,255,255,0.82); }
.lu618 .ov27hxe a:hover { color: #fff; }
.lu618 .q69n1 { color: rgba(255,255,255,0.9); }
.lu618 .g6cg06 { background: var(--accent); border-top-color: var(--accent-light); }
.lu618 .moo92n,
.lu618 .vkfk0c7x { color: rgba(255,255,255,0.72); }
.lu618 .gg77 a, .lu618 .o0p6 a,
.lu618 .pzto a, .lu618 .xd5l7w36 a,
.lu618 .ir311a a, .lu618 .c6ewbwbj { color: rgba(255,255,255,0.82); }
.lu618 .gg77 a:hover, .lu618 .o0p6 a:hover,
.lu618 .pzto a:hover, .lu618 .xd5l7w36 a:hover { color: #fff; }
@media (max-width: 640px) {
  .lu618 .ov27hxe { background: var(--accent); border-top-color: var(--accent-light); }
  .lu618 .ov27hxe li a { border-bottom-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.82); }
}

/* glass: напівпрозорий з blur */
.gj38g .by4313 {
  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);
}
.gj38g .g6cg06 {
  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) {
  .gj38g .ov27hxe {
    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 */
.j3uy4u .a4or { min-height: 52px; height: auto; padding-top: 6px; padding-bottom: 6px; }
.uxy98 .a4or { min-height: 58px; height: auto; padding-top: 8px; padding-bottom: 8px; }
.lipblnh .a4or { min-height: 72px; height: auto; }
.j504jl5 .a4or { min-height: 84px; height: auto; }

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

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


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

/* ── nav_logo_bg: фон на wrap-блоці (не на img) ─────────────────────────────*/
/* none = без фону (default) */
.t37f7, .mrbube89 {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.d1a9hm9 .t37f7,
.d1a9hm9 .mrbube89 { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 8px; padding: 4px; }
.a0d3n .t37f7,
.a0d3n .mrbube89 { 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; }
.ui675s7x .t37f7,
.ui675s7x .mrbube89 { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 999px; padding: 4px 8px; }
.xqf2b6u .t37f7,
.xqf2b6u .mrbube89 { 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 */
.cw6am7   .ov27hxe a { font-weight: 500; }
.z8diygnb .ov27hxe a { font-weight: 600; }
.l9n9mahb     .ov27hxe a { font-weight: 700; }
.bgbfwugo    .ov27hxe a { font-weight: 800; letter-spacing: 0.01em; }

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

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

  /* ховаємо ☰ символ і центруємо кнопку */
  .tmwak .q69n1,
  .kjm6ikll .q69n1,
  .ib45 .q69n1,
  .cqs0ejc .q69n1,
  .fie2408h .q69n1 {
    font-size: 0 !important;
    display: flex !important;
    align-items: center; justify-content: center;
    padding: 0; width: 40px;
  }

  /* базовий ::before */
  .tmwak .q69n1::before,
  .kjm6ikll .q69n1::before,
  .ib45 .q69n1::before,
  .cqs0ejc .q69n1::before,
  .fie2408h .q69n1::before { content: ""; display: block; flex-shrink: 0; }

  /* 2 лінії: повна + 68% */
  .tmwak .q69n1::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 лінії рівні */
  .kjm6ikll .q69n1::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% */
  .ib45 .q69n1::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% */
  .cqs0ejc .q69n1::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% */
  .fie2408h .q69n1::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) {
  .kv9o1n .q69n1 {
    padding: 5px 14px;
  }
  .kv9o1n .ov27hxe {
    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;
  }
  .kv9o1n .ov27hxe li a {
    border-bottom: none; padding: 10px 22px;
  }
  .kv9o1n .ov27hxe li a:hover { background: var(--bg-raised); }
}

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

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

/* overlay: повноекранне меню ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .xz5i .q69n1 {
    padding: 5px 10px;
  }
  .xz5i .ov27hxe {
    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;
  }
  .xz5i .ov27hxe.ogeg2iwi { opacity: 1; pointer-events: auto; }
  .xz5i .ov27hxe 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) {
  .e5kz81     .q69n1 { border-radius: 0 !important; }
  .g6ikg   .q69n1 { border-radius: 8px !important; }
  .dp8sni .q69n1 { border-radius: 50% !important; }
  .ak1fgh40   .q69n1 { border-radius: 999px !important; }
}

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

/* ── star_style: вигляд зірок (showcase + review) ───────────────────────────*/
/* default = accent color (задано в базових стилях .m7a4o4 / .kf2d8a) */
.b86p    .m7a4o4, .b86p    .kf2d8a { color: #f59e0b; }
.pln0964q      .m7a4o4 { font-size: 1rem; letter-spacing: 1.5px; }
.pln0964q      .kf2d8a   { font-size: 1.35rem; }
.wd7c8    .m7a4o4, .wd7c8    .kf2d8a { color: var(--text-muted); opacity: 0.7; letter-spacing: 2px; }
.a4oa0i3c     .m7a4o4, .a4oa0i3c     .kf2d8a { color: var(--accent); letter-spacing: 3px; font-size: 0.7rem; }
.z2doypb .m7a4o4, .z2doypb .kf2d8a { color: var(--accent); letter-spacing: 2px; }
.f0clfg   .m7a4o4, .f0clfg   .kf2d8a { color: #e91e63; letter-spacing: 2px; }
.ei2u  .m7a4o4, .ei2u  .kf2d8a { color: var(--accent); letter-spacing: 2px; font-size: 0.65rem; }
.uc4wfq     .m7a4o4, .uc4wfq     .kf2d8a { color: var(--accent); letter-spacing: 2px; font-size: 0.7rem; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/* ── color scheme ── */
:root {
  --accent:          #c2a86e;
  --accent-light:    #dfc387;
  --accent-pale:     #f7da9b;
  --grad-start:      #524010;
  --grad-end:        #907944;
  --bg-page: #110e08;
  --bg-surface: #110e08;
  --bg-card: #17130b;
  --bg-card-inner: #1e1910;
  --bg-raised: #241f15;
  --bg-hover: #2b2519;
  --border: #4e4739;
  --border-alt: #7d7464;
  --border-section: #4e4739;
  --text-primary: #f0e4d1;
  --text-muted: #b4aa98;
  --text-body: #cdc5bb;
  --text-sub: #a49d93;
  --text-faint: #6f6a61;
  --text-dim: #575249;
  --text-label: #898379;
  --text-value: #bfb8ad;
  --accent-bg:       #3f2e00;
  --accent-bg-light: #4b3909;
  --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: 42%; }

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

.o013hd .r40b, .o013hd .vbcea { min-height: 640px; }

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

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

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


.c-pages-brands__item-logo{display:flex;}.c-pages-brands__table{margin:20px auto;max-width:350px;width:100%;}.c-pages-brands__tr{padding:1rem;flex-direction:column;justify-content:center;align-items:center;max-width:355px;width:100%;border:1px solid #00000066;display:flex;margin:0 auto 15px;background:#3f2e00;}.c-pages-brands__tr.is-active{display:flex}.c-pages-brands__tr td{padding:10px;width:100%;border:none}.c-pages-brands__title{text-align:center;display:block;padding:1rem;background-color:#c2a86e;font-weight:500;color:#000;margin-left:-26px;margin-right:-26px;margin-top:-26px}.c-pages-brands__item-logo img{width:150px;height:150px;border-radius:100%;margin:.5rem auto}.c-pages-brands__span{color:#c2a86e;padding-left:10px;padding-right:10px;display:block;text-align:center;font-weight:600;font-size:20px}.c-pages-brands__span:hover{cursor:pointer;text-decoration:underline}.c-pages-brands__bonus{text-align:center;font-size:18px;font-weight:600;margin-bottom:0}.c-author-block__span,.c-pages-brands__button{font-weight:700;text-align:center;margin-right:auto;margin-left:auto;}.c-time-info__text[class],.c-pages-brands__bonus[class]{margin-bottom:0}.c-pages-brands__button{color:#fff;padding:12px 25px;border-radius:100px;box-shadow:2px 2px 1px rgba(0,0,0,.3);max-width:170px;width:100%;display:block;background:linear-gradient(to top,#ea361e,#ea811f 100%) #fa8b0a;margin:0 auto}.c-pages-brands__button:hover{background:linear-gradient(to top,#ea361e,#ea811f 60%) #d7790e}.c-pages-brands__rating{display:flex;align-items:center;gap:10px;justify-content:center}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-1{width:8.3333333333%}.col-md-2{width:16.6666666667%}.col-md-3{width:25%}.col-md-4{width:33.3333333333%}.col-md-5{width:41.6666666667%}.col-md-6{width:50%}.col-md-7{width:58.3333333333%}.col-md-8{width:66.6666666667%}.col-md-9{width:75%}.col-md-10{width:83.3333333333%}.col-md-11{width:91.6666666667%}.c-pages-brands__table,.col-md-12{width:100%;max-width:none;}.c-pages-brands__tr{background:transparent;}.col-md-pull-0{right:auto}.col-md-pull-1{right:8.3333333333%}.col-md-pull-2{right:16.6666666667%}.col-md-pull-3{right:25%}.col-md-pull-4{right:33.3333333333%}.col-md-pull-5{right:41.6666666667%}.col-md-pull-6{right:50%}.col-md-pull-7{right:58.3333333333%}.col-md-pull-8{right:66.6666666667%}.col-md-pull-9{right:75%}.col-md-pull-10{right:83.3333333333%}.col-md-pull-11{right:91.6666666667%}.col-md-pull-12{right:100%}.col-md-push-0{left:auto}.col-md-push-1{left:8.3333333333%}.col-md-push-2{left:16.6666666667%}.col-md-push-3{left:25%}.col-md-push-4{left:33.3333333333%}.col-md-push-5{left:41.6666666667%}.col-md-push-6{left:50%}.col-md-push-7{left:58.3333333333%}.col-md-push-8{left:66.6666666667%}.col-md-push-9{left:75%}.col-md-push-10{left:83.3333333333%}.col-md-push-11{left:91.6666666667%}.col-md-push-12{left:100%}.col-md-offset-0{margin-left:0}.col-md-offset-1{margin-left:8.3333333333%}.col-md-offset-2{margin-left:16.6666666667%}.col-md-offset-3{margin-left:25%}.col-md-offset-4{margin-left:33.3333333333%}.col-md-offset-5{margin-left:41.6666666667%}.col-md-offset-6{margin-left:50%}.col-md-offset-7{margin-left:58.3333333333%}.col-md-offset-8{margin-left:66.6666666667%}.col-md-offset-9{margin-left:75%}.col-md-offset-10{margin-left:83.3333333333%}.col-md-offset-11{margin-left:91.6666666667%}.col-md-offset-12{margin-left:100%}.c-pages-brands__tr{border-radius:0;margin-bottom:0;flex-direction:row;max-width:100%;border:none;justify-content:space-between;border-top:1px solid #00000082}.c-pages-brands__title{margin:0;width:40px;height:40px;border-radius:100%;display:flex;justify-content:center;align-items:center;line-height:1}.c-pages-brands__item-logo img{overflow:hidden}.c-pages-brands__td-title[class]{margin-right:15px;width:50px;min-width:auto}.c-pages-brands__span{padding-left:0;padding-right:0}.c-pages-brands__rating,.c-pages-brands__td-button[class],.c-pages-brands__td-list[class],.c-pages-brands__td-logo[class],.c-pages-brands__td-span[class]{min-width:auto}.c-pages-brands__tr+.c-pages-brands__tr{margin:0}.c-pages-brands__tr:nth-child(even){background-color: #3f2e00;}.c-pages-brands__tr{padding: 0 1rem;}}