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

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

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

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

/* ── Hero: BG layout (картинка — повноширокий фон) ───────────────────────────*/
.p12w86 {
  position: relative; display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center;
  background-color: var(--bg-surface);
}
.comhv {
  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) */
.p12w86 .ku6dj {
  position: relative; z-index: 1;
  width: 100%; max-width: 1100px; padding: 48px 24px;
}
.p12w86 .tm33l1uq { text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
.p12w86 .jxafg { color: #e2e8f0; }

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

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

.n65eacrm .comhv {
  background: none;
}
.n65eacrm .tm33l1uq { color: #fff; }
.n65eacrm .jxafg { color: rgba(255,255,255,0.85); }

/* ── Hero anim: split layouts ─────────────────────────────────────────────── */
.ajb5hw9 .ror568 { position: relative; overflow: hidden; }
.ajb5hw9 .ror568::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;
}
.xg4a .ror568 {
  animation: hg-breathe 7s ease-in-out infinite;
}
.mfjquzh .ror568 { position: relative; overflow: hidden; }
.mfjquzh .ror568::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;
}
.piyx8e .ror568 { position: relative; overflow: hidden; }
.piyx8e .ror568::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;
}
.wsxklyi .ror568 {
  animation: hg-fadein 1.2s ease-out both;
}


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

/* Split alignment — всередині text-колонки */
.ror568.o2sdu4 .ch80 { align-items: center; text-align: center; }
.ror568.njvp   .ch80 { align-items: flex-start; text-align: left; }

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


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

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

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

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

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

/* ── Hero: split-cards ────────────────────────────────────────────────────── */
.gyocer68 .jk8mhc5v {
  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);
}
.o9d9w {
  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;
}
.o9d9w:last-child { border-bottom: none; }
.o9d9w:hover { background: rgba(255,255,255,0.14); }
.vnrhv0 { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1; }
.a5lgnf8 { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.h0g98p { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.y0lsx4 { font-weight: 700; font-size: 0.95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pzukid2 { font-size: 0.82rem; color: rgba(255,255,255,0.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.c40x9n { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.vbse { font-weight: 800; font-size: 1.3rem; color: var(--accent-pale); }
.vbse small { font-size: 0.7rem; font-weight: 500; opacity: 0.6; }
.qwh1xz { font-size: 0.8rem; padding: 6px 14px; white-space: nowrap; }

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

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

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

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


@media (max-width: 700px) {
  .ror568 { grid-template-columns: 1fr !important; grid-template-areas: "text" !important; }
  .ror568 .rk0wn22 { display: none !important; }
  .pxfnr .rk0wn22 { display: none !important; }
  .gyocer68 .jk8mhc5v { display: none !important; }
  .ans8wr .j8nieur { display: none !important; }
  .ch80  { padding: 36px 24px; }
  /* cap hero height variants on mobile */
  .vro5t9, .ror568 { min-height: 320px !important; }
  /* reduce oversized headings on mobile */
  .tm33l1uq { font-size: clamp(1.7rem, 5.5vw, 2.4rem) !important; }
  /* cards-top: hide on mobile */
  .ofqa7g { display: none !important; }
  /* numbered: stack */
  .khpmw13 { flex-direction: column; align-items: center; }
  .nm2p { width: 100%; max-width: 340px; }
}

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

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

/* rounded */
.iaki .b93xibsc        { border-radius: 16px; }
.iaki .qjhnquf  { border-radius: 16px; }

/* shadow */
.iuk3h81 .b93xibsc         { box-shadow: 0 4px 14px rgba(0,0,0,0.18); border-radius: 8px; }
.iuk3h81 .qjhnquf   { border-radius: 8px; }


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

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

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

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

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

.b3tvxiz .wne62:nth-child(even) .fn79dxqm .n04an:nth-child(odd),
.noqh .wne62:nth-child(even) .fn79dxqm .n04an:nth-child(odd)  { background: var(--bg-card); }
.b3tvxiz .wne62:nth-child(even) .fn79dxqm .n04an:nth-child(even),
.noqh .wne62:nth-child(even) .fn79dxqm .n04an:nth-child(even) { background: var(--bg-card-inner); }

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

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

/* bar: ліва кольорова смуга */
.hep9ps h2.u960vsr {
  border-left: 4px solid var(--accent); padding-left: 14px;
}
/* underline: підкреслення знизу */
.r7gv80 h2.u960vsr {
  border-bottom: 2px solid var(--accent); padding-bottom: 10px;
  display: inline-block;
}
/* overline: тонка лінія зверху */
.amnmhy1 h2.u960vsr {
  border-top: 3px solid var(--accent); padding-top: 12px;
  color: var(--text-primary);
}
/* dot: маленька кольорова крапка перед заголовком */
.fv9w0z h2.u960vsr::before {
  content: ""; display: inline-block; width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  margin-right: 12px; vertical-align: middle;
}
/* plain: просто жирний текст, без декорацій */
.wae2tr h2.u960vsr {
  color: var(--text-primary); font-size: 1.7rem;
}
/* slash: коса риска акцентного кольору перед текстом */
.ybtz50vb h2.u960vsr::before {
  content: "/"; color: var(--accent); font-weight: 800;
  margin-right: 10px;
}
/* caps: великі літери, розріджений трекінг, тонка нижня лінія */
.x87gn h2.u960vsr {
  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 ──────────────────────────────────────────────────────*/
.lm03h39k { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 16px; }
@media (max-width: 640px) { .lm03h39k { display: none; } }
.u17bk {
  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;
}
.l3a34vfk { margin-right: 8px; color: var(--c-arrow); }
.fy1a { font-size: 1rem; color: var(--text-muted); margin: 8px 0 20px; }
.xkxd { font-size: 1rem; color: var(--text-muted); margin: 24px 0 0; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* plain: простий текст */
.plffjgs .fy1a,
.plffjgs .xkxd,
.plffjgs .u96a,
.plffjgs .hf68f { font-style: normal; color: var(--text-body); }

/* dash: ліва вертикальна чорточка */
.bgoe1ukf .fy1a,
.bgoe1ukf .xkxd {
  font-style: italic;
  border-left: 3px solid var(--border-section); padding-left: 12px;
}
.bgoe1ukf .u96a,
.bgoe1ukf .hf68f {
  font-style: italic;
  border-left: 2px solid var(--border); padding-left: 10px;
}

/* bg: підкладка з фоном */
.u627h .fy1a,
.u627h .xkxd,
.u627h .u96a,
.u627h .hf68f {
  font-style: normal;
  background: var(--bg-raised); border-radius: 6px;
  padding: 10px 14px; color: var(--text-sub);
}

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

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

.ct20     .dq7f7ca { list-style-type: "● "; }
.r5r7o9e  .dq7f7ca { list-style-type: "■ "; }
.jg5d .dq7f7ca { list-style-type: "◆ "; }
.ydc47    .dq7f7ca { list-style-type: "★ "; }

.ct20     .yld0 { list-style-type: "● "; }
.r5r7o9e  .yld0 { list-style-type: "■ "; }
.jg5d .yld0 { list-style-type: "◆ "; }
.ydc47    .yld0 { list-style-type: "★ "; }

.ct20    .dq7f7ca li::marker, .ct20    .yld0 li::marker,
.r5r7o9e .dq7f7ca li::marker, .r5r7o9e .yld0 li::marker,
.jg5d .dq7f7ca li::marker, .jg5d .yld0 li::marker,
.ydc47   .dq7f7ca li::marker, .ydc47   .yld0 li::marker {
  color: var(--accent); font-size: 0.8em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

/* pill = solid but very rounded */
.zcxxeha .vakop { border-radius: 50px; }
.zcxxeha .gwmxk8fd  { border-radius: 50px; }
/* btn_pad */
.i0o4 .vakop { padding-left: 22px; padding-right: 22px; }
.i0o4 .gwmxk8fd  { padding-left: 12px; padding-right: 12px; }
.tkqo3qj6 .vakop { padding-left: 44px; padding-right: 44px; }
.tkqo3qj6 .gwmxk8fd  { padding-left: 24px; padding-right: 24px; }
.yfpn9 .vakop { padding-left: 56px; padding-right: 56px; }
.yfpn9 .gwmxk8fd  { padding-left: 32px; padding-right: 32px; }

/* ── btn_icon: SVG-іконки на .vakop і .gwmxk8fd (mask на currentColor) ──────*/
/* ::after — усі іконки після тексту (праворуч) */
.ya7url   .vakop::after, .ya7url   .gwmxk8fd::after,
.k7yw589n .vakop::after, .k7yw589n .gwmxk8fd::after,
.l9i2sn5    .vakop::after, .l9i2sn5    .gwmxk8fd::after,
.mv6702ow    .vakop::after, .mv6702ow    .gwmxk8fd::after,
.ict9vh    .vakop::after, .ict9vh    .gwmxk8fd::after,
.v5adqz     .vakop::after, .v5adqz     .gwmxk8fd::after,
.arhdrs7    .vakop::after, .arhdrs7    .gwmxk8fd::after,
.lyhe   .vakop::after, .lyhe   .gwmxk8fd::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 — кожна іконка */
.ya7url .vakop::after, .ya7url .gwmxk8fd::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");
}
.k7yw589n .vakop::after, .k7yw589n .gwmxk8fd::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");
}
.l9i2sn5 .vakop::after, .l9i2sn5 .gwmxk8fd::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");
}
.mv6702ow .vakop::after, .mv6702ow .gwmxk8fd::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");
}
.ict9vh .vakop::after, .ict9vh .gwmxk8fd::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");
}
.v5adqz .vakop::after, .v5adqz .gwmxk8fd::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");
}
.arhdrs7 .vakop::after, .arhdrs7 .gwmxk8fd::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");
}
.lyhe .vakop::after, .lyhe .gwmxk8fd::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 ────────*/
.q782   .rsbv3::after, .q782   .du92::after,
.ww8l1 .rsbv3::after, .ww8l1 .du92::after,
.n7mp    .rsbv3::after, .n7mp    .du92::after,
.g1avlc73    .rsbv3::after, .g1avlc73    .du92::after,
.hpm6g    .rsbv3::after, .hpm6g    .du92::after,
.dre7ij2     .rsbv3::after, .dre7ij2     .du92::after,
.e2es    .rsbv3::after, .e2es    .du92::after,
.cid8hw   .rsbv3::after, .cid8hw   .du92::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;
}
.q782 .rsbv3::after, .q782 .du92::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");
}
.ww8l1 .rsbv3::after, .ww8l1 .du92::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");
}
.n7mp .rsbv3::after, .n7mp .du92::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");
}
.g1avlc73 .rsbv3::after, .g1avlc73 .du92::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");
}
.hpm6g .rsbv3::after, .hpm6g .du92::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");
}
.dre7ij2 .rsbv3::after, .dre7ij2 .du92::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");
}
.e2es .rsbv3::after, .e2es .du92::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");
}
.cid8hw .rsbv3::after, .cid8hw .du92::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 ─────────────────────────────────────────────────────────*/
.qn4msgw7 { display: flex; flex-direction: column; gap: 6px; margin: 28px 0; }


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

/* ── Casino reviews ──────────────────────────────────────────────────────────*/
.ou1acs1 {
  background: var(--bg-card);
  border-radius: 12px; margin: 24px 0; overflow: hidden;
  border: 1px solid var(--border-alt);
}
.cx824 {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 24px; background: var(--bg-surface);
}
.cnveoev {
  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;
}
.cnveoev img { max-width: 80px; max-height: 50px; object-fit: contain; }
.xnuo { color: var(--accent); font-weight: 700; font-size: 0.85rem; text-align: center; }
.jiijb6 { flex: 1; }
.jiijb6 h3 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 4px; }
.kvtwlzeq { color: var(--c-stars); font-size: 1.1rem; }
.ojxnt7 { margin-bottom: 8px; }
.u4tf24u { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 0.83rem; color: var(--text-muted); }
.s00qrc5::before   { content: "★ "; color: var(--accent); }
.smcrcmd::before { content: "↓ "; color: var(--accent); }
.x9sx49i::before { content: "✦ "; color: var(--accent); }
.f9fs { flex-shrink: 0; }
.lc5y3h img.fdn4vz8z { width: 100%; max-height: 240px; object-fit: cover; display: block; }
.vhl7 { padding: 20px 24px; }
.f7u5jcx { color: var(--text-muted); margin-bottom: 16px; }
.qrikwth9 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 14px; }
.fqtdwx8i, .o7l1k4j { list-style: none; font-size: 0.9rem; }
.fqtdwx8i li { color: var(--c-pros); margin-bottom: 4px; }
.o7l1k4j li { color: var(--c-cons); margin-bottom: 4px; }
/* CSS маркери для pros/cons замість символів в HTML */
.fqtdwx8i li::before { content: "✓"; margin-right: 5px; }
.o7l1k4j li::before { content: "✗"; margin-right: 5px; }
.pxdk30 .fqtdwx8i li::before { content: "→"; }
.pxdk30 .o7l1k4j li::before { content: "–"; }
.ntp8  .fqtdwx8i li::before { content: "★"; }
.ntp8  .o7l1k4j li::before { content: "✕"; }
.h8vgh7    .fqtdwx8i li::before { content: "◆"; }
.h8vgh7    .o7l1k4j li::before { content: "▲"; }
.h5aa28hi  .fqtdwx8i li::before { content: "▶"; }
.h5aa28hi  .o7l1k4j li::before { content: "■"; }
.m9qid { margin-bottom: 8px; font-size: 0.85rem; color: var(--text-muted); }
.q7xon65 { background: var(--accent-bg); color: var(--accent-light); border-radius: 4px; padding: 2px 8px; margin: 2px 2px 2px 0; display: inline-block; }
.y6eusv { background: var(--bg-pros); color: var(--c-tag-pay); }

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


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

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

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

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

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

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

/* ── Brand card (single brand, two-column hero) ─────────────────────────────*/
/* ═══════════════════════════════════════════════════════════════════════════
   BRAND CARD — shared tokens
   ═══════════════════════════════════════════════════════════════════════════ */
.tp6c2nf {
  background: var(--bg-card);
  border: 1px solid var(--border-alt);
  border-radius: 12px;
  margin: 28px 0;
  overflow: hidden;
}
.f9ix {
  width: 100px; height: 68px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border-radius: 10px; padding: 8px;
  flex-shrink: 0;
}
.f9ix img { max-width: 100%; max-height: 100%; object-fit: contain; }
.udgb9vw { font-size: 1.15rem; font-weight: 700; color: var(--text); }
.ds59na { display: flex; align-items: center; gap: 8px; }
.ds59na .kvtwlzeq { font-size: .95rem; }
.ds59na strong { font-size: 1.1rem; color: var(--text); }
.y4cr8mp { border-radius: 8px; overflow: hidden; }
.y4cr8mp img { width: 100%; display: block; border-radius: 8px; }
.bfk2d { text-align: center; flex-shrink: 0; }
.zkuc { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; }
.wuvah5wy { font-size: .82rem; color: var(--text-muted); font-weight: 500; }
.aazf5 { font-size: .88rem; font-weight: 600; color: var(--text); }
.itihs .aazf5 { font-size: 1.02rem; font-weight: 700; color: var(--accent); }
.tp6c2nf .wuz5n { gap: 10px; }
.tp6c2nf .mk04p, .tp6c2nf .sx3gdqsv { padding: 12px; }
.tp6c2nf .mk04p ul, .tp6c2nf .sx3gdqsv ul { margin: 4px 0 0; padding-left: 18px; }
.tp6c2nf .mk04p li, .tp6c2nf .sx3gdqsv li { font-size: .85rem; margin-bottom: 3px; }
.cq5n { font-size: .8rem; color: var(--text-muted); margin-top: 10px; }
.cq5n strong { color: var(--text-secondary); }
.cq5n .q7xon65 { margin: 2px 4px 2px 0; }

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

/* ── LAYOUT 2: hero — full-width screenshot header ────────────────────────── */
.myybx8b {
  position: relative; max-height: 240px; overflow: hidden;
}
.myybx8b > img { width: 100%; display: block; object-fit: cover; min-height: 160px; }
.k7sfik {
  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;
}
.k7sfik .f9ix { background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border-radius: 10px; }
.k7sfik .udgb9vw { color: #fff; font-size: 1.25rem; }
.k7sfik .ds59na strong { color: #fff; }
.k7sfik .ds59na .kvtwlzeq { filter: brightness(1.2); }
.k7sfik .bfk2d { margin-left: auto; white-space: nowrap; }
.tjy03ts { flex: 1; }
.uzth {
  display: flex; align-items: center; gap: 16px; padding: 20px 24px;
  border-bottom: 1px solid var(--border-alt);
}
.uzth .bfk2d { margin-left: auto; }
.sd73 { display: flex; flex-direction: column; gap: 16px; padding: 20px 24px; }
.rngcmed5 .wf6m {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--border-alt); border-radius: 8px; overflow: hidden;
}
.rngcmed5 .zkuc {
  flex: 1 1 auto; min-width: 120px;
  border-right: 1px solid var(--border-alt); border-bottom: 1px solid var(--border-alt);
}
.rngcmed5 .itihs { flex-basis: 100%; background: var(--accent-bg); border-right: none; }
@media (max-width: 720px) {
  .k7sfik { flex-wrap: wrap; gap: 10px; padding: 12px 16px; }
  .sd73 { padding: 16px; }
  .rngcmed5 .zkuc { min-width: 50%; }
}

/* ── LAYOUT 3: magazine — editorial 3-column ──────────────────────────────── */
.et90zyy {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-alt);
}
.g6szh1dm { flex: 1; }
.g6szh1dm .udgb9vw { font-size: 1.3rem; }
.z361r {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
}
.qai6nx { padding: 16px; border-right: 1px solid var(--border-alt); }
.qai6nx .y4cr8mp { height: 100%; }
.qai6nx .y4cr8mp img { height: 100%; object-fit: cover; }
.frd1n { padding: 0; border-right: 1px solid var(--border-alt); }
.frd1n .wf6m { display: flex; flex-direction: column; }
.frd1n .zkuc { border-bottom: 1px solid var(--border-alt); }
.frd1n .itihs { background: var(--accent-bg); }
.n74ahh0 { padding: 16px; }
.n74ahh0 .wuz5n { grid-template-columns: 1fr; }
.alzrryzc {
  padding: 12px 24px; border-top: 1px solid var(--border-alt);
  display: flex; flex-wrap: wrap; gap: 12px;
}
@media (max-width: 860px) {
  .z361r { grid-template-columns: 1fr; }
  .qai6nx { border-right: none; border-bottom: 1px solid var(--border-alt); }
  .frd1n { border-right: none; border-bottom: 1px solid var(--border-alt); }
}
@media (max-width: 540px) {
  .et90zyy { flex-wrap: wrap; padding: 16px; }
}

/* ── LAYOUT 4: compact — header bar → screenshot → data ──────────────────── */
.p1kwc5 {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 16px 20px; border-bottom: 1px solid var(--border-alt);
}
.rnm6o27 {
  display: flex; align-items: center; gap: 12px; flex: 1;
}
.rnm6o27 .f9ix { width: 72px; height: 50px; }
.rnm6o27 .udgb9vw { font-size: 1rem; white-space: nowrap; }
.o117xdu { border-bottom: 1px solid var(--border-alt); max-height: 280px; overflow: hidden; }
.o117xdu img { width: 100%; display: block; object-fit: cover; }
.b6ecx3 {
  display: flex; flex-direction: column; gap: 10px; padding: 14px 16px; overflow: hidden;
}
.ld1m .wf6m { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.ld1m .zkuc { padding: 0; flex: 0 0 auto; gap: 6px; }
.ld1m .itihs { display: none; }
.ld1m .wuz5n { gap: 8px; }
.ld1m .mk04p, .ld1m .sx3gdqsv { padding: 8px; }
@media (max-width: 480px) {
  .p1kwc5 { flex-direction: column; align-items: stretch; }
}

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

/* ── LAYOUT 6: scorecard — big score centerpiece ──────────────────────────── */
.g8ztzy {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: center;
  border-bottom: 1px solid var(--border-alt);
}
.cq6s {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px; text-align: center;
}
.pl6604 {
  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;
}
.c72oz4f6 { font-size: 1.8rem; font-weight: 800; color: var(--accent); line-height: 1; }
.c72oz4f6 .xbat8m { font-size: .9rem; font-weight: 500; color: var(--text-muted); }
.pl6604 .kvtwlzeq { font-size: .75rem; margin-top: 2px; }
.yst3k9lc { padding: 12px; display: flex; align-items: center; flex: 1; }
.yst3k9lc .y4cr8mp { width: 100%; }
.acnxw {
  padding: 0; border-bottom: 1px solid var(--border-alt);
}
.ttk2w .wf6m {
  display: flex; flex-wrap: wrap;
}
.ttk2w .zkuc {
  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;
}
.ttk2w .zkuc:last-child { border-right: none; }
.ttk2w .wuvah5wy { font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; }
.ttk2w .itihs { background: var(--accent-bg); }
.wm8b4 { padding: 16px 20px; display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 720px) {
  .g8ztzy { grid-template-columns: 1fr; }
  .pl6604 { width: 100px; height: 100px; margin: 16px auto; }
  .c72oz4f6 { font-size: 1.4rem; }
  .yst3k9lc { justify-content: center; }
  .ttk2w .zkuc { min-width: 50%; }
}

/* ── LAYOUT 7: stack — vertical full-width flow ──────────────────────────── */
.kn3cwib {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-alt);
}
.osw4n { max-height: 240px; overflow: hidden; border-bottom: 1px solid var(--border-alt); }
.osw4n img { width: 100%; display: block; object-fit: cover; }
.jymkj { padding: 16px 24px; border-bottom: 1px solid var(--border-alt); }
.sebrgjiq .wf6m {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.sebrgjiq .zkuc {
  background: var(--surface); border: 1px solid var(--border-alt);
  border-radius: 20px; padding: 6px 14px; gap: 8px;
}
.sebrgjiq .itihs {
  background: var(--accent-bg); border-color: var(--accent-pale);
}
.sebrgjiq .wuz5n { margin: 0 24px; padding-top: 16px; }
.sebrgjiq .cq5n { padding: 0 24px; }
.p04rv { padding: 16px 24px; border-top: 1px solid var(--border-alt); text-align: center; }
.p04rv .bfk2d { display: inline-block; }
@media (max-width: 540px) {
  .kn3cwib { flex-wrap: wrap; padding: 14px 16px; }
  .jymkj { padding: 12px 16px; }
  .sebrgjiq .wuz5n { margin: 0 16px; }
  .sebrgjiq .cq5n { padding: 0 16px; }
  .p04rv { padding: 12px 16px; }
}


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

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

/* ranked: accent-pill значення + uppercase лейбли (нумерація — через cs_rank) */
.qa9w .x9999 {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted);
}
.qa9w .qw5d {
  color: var(--accent); font-weight: 700;
  background: var(--accent-bg); border-radius: 100px;
  padding: 1px 9px; font-size: 0.8rem;
}
.qa9w .wqrwx { color: var(--accent); }
.qa9w .cx824 { background: var(--accent-bg); }
.qa9w .s00qrc5, .qa9w .smcrcmd, .qa9w .x9sx49i {
  background: var(--bg-card); border-radius: 100px; padding: 1px 10px;
  border: 1px solid var(--border);
}

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

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

/* compact: менші відступи всюди */
.rwn6irtk .nf6j { padding: 8px 14px; gap: 12px; }
.rwn6irtk .qy0h6 { height: 32px; min-width: 52px; }
.rwn6irtk .d6dgff { max-height: 24px; }
.rwn6irtk .h3we { font-size: 0.82rem; }
.rwn6irtk .cx824 { padding: 14px 18px; gap: 14px; }
.rwn6irtk .vhl7 { padding: 14px 18px; }
.rwn6irtk .cnveoev { width: 70px; }
.rwn6irtk .jiijb6 h3 { font-size: 1.05rem; }

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

/* bordered: таблиця з усіма рамками */
.fnltm .qn4msgw7 {
  gap: 0; border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.fnltm .nf6j {
  border-radius: 0; border: none;
  border-bottom: 1px solid var(--border); row-gap: 0; column-gap: 12px;
}
.fnltm .nf6j:last-child { border-bottom: none; }
/* вертикальні межі між колонками */
.fnltm .wqrwx,
.fnltm .uzrea,
.fnltm .xxz5n { border-left: 1px solid var(--border); padding-left: 10px; }
.fnltm .h3we { padding: 0 10px; }

/* ── cs_cols: feature — бонус-колонка виділена як головна ──────────────────*/
.seq8ka6 .uzrea { flex: 1.8; }
.seq8ka6 .uzrea .qw5d {
  font-size: 0.88rem; font-weight: 700; color: var(--accent);
}
.seq8ka6 .uzrea .x9999 { font-weight: 700; color: var(--text-primary); }
.seq8ka6 .ya9lhc6,
.seq8ka6 .tywnr,
.seq8ka6 .uzp0c921 { flex: 0.75; opacity: 0.65; }

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

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

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

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

/* score в оглядах — ховаємо зірки */
.pgxl5 .ojxnt7 .kvtwlzeq,
.r5zv .ojxnt7 .kvtwlzeq,
.acxnlcq .ojxnt7 .kvtwlzeq { display: none; }

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

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

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

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

/* ── Sections ────────────────────────────────────────────────────────────────*/
.wne62 { margin-bottom: 0; }
.c67c7 h2.u960vsr { color: var(--accent-light); border-color: var(--accent); }
.thq0g0s h2.u960vsr { color: var(--accent-light); border-color: var(--accent); }

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

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

/* vivid: смарагд / рожевий / фіолетовий */
.n5p9f4vj .ndgai7     { background: #052e16; border-color: #10b981; }
.n5p9f4vj .kk8x { background: #2d0a1e; border-color: #f43f5e; }
.n5p9f4vj .djm6    { background: #1e1036; border-color: #a855f7; }
.n5p9f4vj .u42nk5 strong  { color: #f1f5f9; }
.n5p9f4vj .u42nk5 p       { color: #cbd5e1; }
.n5p9f4vj .wmodst    .ndgai7     .wj624k6z::before,
.n5p9f4vj .sleli  .ndgai7     .wj624k6z::before,
.n5p9f4vj .macye  .ndgai7     .wj624k6z::before,
.n5p9f4vj .u5dpz5 .ndgai7     .wj624k6z::before { color: #10b981; }
.n5p9f4vj .wmodst    .kk8x .wj624k6z::before,
.n5p9f4vj .sleli  .kk8x .wj624k6z::before,
.n5p9f4vj .macye  .kk8x .wj624k6z::before,
.n5p9f4vj .u5dpz5 .kk8x .wj624k6z::before { color: #f43f5e; }
.n5p9f4vj .wmodst    .djm6    .wj624k6z::before,
.n5p9f4vj .sleli  .djm6    .wj624k6z::before,
.n5p9f4vj .macye  .djm6    .wj624k6z::before,
.n5p9f4vj .u5dpz5 .djm6    .wj624k6z::before { color: #a855f7; }

/* warm: жовтий / червоний / помаранчевий */
.ttm7dh3 .ndgai7     { background: #2d2000; border-color: #eab308; }
.ttm7dh3 .kk8x { background: #2d0b0b; border-color: #ef4444; }
.ttm7dh3 .djm6    { background: #2d1600; border-color: #f97316; }
.ttm7dh3 .u42nk5 strong  { color: #f1f5f9; }
.ttm7dh3 .u42nk5 p       { color: #cbd5e1; }
.ttm7dh3 .wmodst    .ndgai7     .wj624k6z::before,
.ttm7dh3 .sleli  .ndgai7     .wj624k6z::before,
.ttm7dh3 .macye  .ndgai7     .wj624k6z::before,
.ttm7dh3 .u5dpz5 .ndgai7     .wj624k6z::before { color: #eab308; }
.ttm7dh3 .wmodst    .kk8x .wj624k6z::before,
.ttm7dh3 .sleli  .kk8x .wj624k6z::before,
.ttm7dh3 .macye  .kk8x .wj624k6z::before,
.ttm7dh3 .u5dpz5 .kk8x .wj624k6z::before { color: #ef4444; }
.ttm7dh3 .wmodst    .djm6    .wj624k6z::before,
.ttm7dh3 .sleli  .djm6    .wj624k6z::before,
.ttm7dh3 .macye  .djm6    .wj624k6z::before,
.ttm7dh3 .u5dpz5 .djm6    .wj624k6z::before { color: #f97316; }

/* cool: блакитний / індиго / бірюзовий */
.u44f6qo1 .ndgai7     { background: #0c1a2e; border-color: #38bdf8; }
.u44f6qo1 .kk8x { background: #12103a; border-color: #818cf8; }
.u44f6qo1 .djm6    { background: #0a2020; border-color: #2dd4bf; }
.u44f6qo1 .u42nk5 strong  { color: #f1f5f9; }
.u44f6qo1 .u42nk5 p       { color: #cbd5e1; }
.u44f6qo1 .wmodst    .ndgai7     .wj624k6z::before,
.u44f6qo1 .sleli  .ndgai7     .wj624k6z::before,
.u44f6qo1 .macye  .ndgai7     .wj624k6z::before,
.u44f6qo1 .u5dpz5 .ndgai7     .wj624k6z::before { color: #38bdf8; }
.u44f6qo1 .wmodst    .kk8x .wj624k6z::before,
.u44f6qo1 .sleli  .kk8x .wj624k6z::before,
.u44f6qo1 .macye  .kk8x .wj624k6z::before,
.u44f6qo1 .u5dpz5 .kk8x .wj624k6z::before { color: #818cf8; }
.u44f6qo1 .wmodst    .djm6    .wj624k6z::before,
.u44f6qo1 .sleli  .djm6    .wj624k6z::before,
.u44f6qo1 .macye  .djm6    .wj624k6z::before,
.u44f6qo1 .u5dpz5 .djm6    .wj624k6z::before { color: #2dd4bf; }

/* accent: використовує динамічний акцент */
.sq34v .ndgai7     { background: var(--accent-bg); border-color: var(--accent); }
.sq34v .kk8x { background: var(--accent-bg-light); border-color: var(--accent-light); }
.sq34v .djm6    { background: var(--accent-bg); border-color: var(--accent-pale); }
.sq34v .wmodst    .wj624k6z::before,
.sq34v .sleli  .wj624k6z::before,
.sq34v .macye  .wj624k6z::before,
.sq34v .u5dpz5 .wj624k6z::before { color: var(--accent-light) !important; }

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

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

/* classic — фіксовані контрастні кольори незалежно від акценту */
.gemmr5fx .mk04p ul li,
.gemmr5fx .fqtdwx8i li         { color: #4ade80; }
.gemmr5fx .mk04p .akyjixw { color: #22c55e; }
.gemmr5fx .sx3gdqsv ul li,
.gemmr5fx .o7l1k4j li         { color: #f87171; }
.gemmr5fx .sx3gdqsv .zppie { color: #ef4444; }

/* blue: синій pros / amber cons */
.j1jc .mk04p { background: #0c1a2e; }
.j1jc .sx3gdqsv { background: #2d1f00; }
.j1jc .mk04p .akyjixw { color: #93c5fd; }
.j1jc .sx3gdqsv .zppie { color: #fcd34d; }
.j1jc .mk04p ul li,
.j1jc .fqtdwx8i li            { color: #bfdbfe; }
.j1jc .sx3gdqsv ul li,
.j1jc .o7l1k4j li            { color: #fde68a; }

/* accent: label акцентний, текст завжди читабельний */
.qc0baxsy .mk04p { background: var(--accent-bg); }
.qc0baxsy .sx3gdqsv { background: var(--accent-bg-light); }
.qc0baxsy .mk04p .akyjixw { color: var(--accent-pale); }
.qc0baxsy .sx3gdqsv .zppie { color: var(--accent-light); }
.qc0baxsy .mk04p ul li,
.qc0baxsy .fqtdwx8i li          { color: var(--text-body); }
.qc0baxsy .sx3gdqsv ul li,
.qc0baxsy .o7l1k4j li          { color: var(--text-body); }

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

/* check: ✓ / ✗ */
.dsn8 .akyjixw::before { content: "✓ "; }
.dsn8 .zppie::before { content: "✗ "; }

/* arrows: → / ← */
.pxdk30 .akyjixw::before { content: "→ "; }
.pxdk30 .zppie::before { content: "← "; }

/* marks: ★ / ✕ */
.ntp8 .akyjixw::before { content: "★ "; }
.ntp8 .zppie::before { content: "✕ "; }

/* geo: ◆ / ▲ */
.h8vgh7 .akyjixw::before { content: "◆ "; }
.h8vgh7 .zppie::before { content: "▲ "; }

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

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

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

/* topbar: смуга зверху */
.rcjh8e4 .u42nk5 { border-left: none; border-top: 4px solid; border-radius: 0 0 8px 8px; }
.rcjh8e4 .ndgai7     { border-top-color: var(--c-tip-border); }
.rcjh8e4 .kk8x { border-top-color: var(--c-warn-border); }
.rcjh8e4 .djm6    { border-top-color: #60a5fa; }

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

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

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

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

.wmodst .wj624k6z,
.sleli .wj624k6z,
.macye .wj624k6z,
.u5dpz5 .wj624k6z { font-size: 0; width: 1.1rem; flex-shrink: 0; }

.wmodst .wj624k6z::before,
.sleli .wj624k6z::before,
.macye .wj624k6z::before,
.u5dpz5 .wj624k6z::before {
  display: block; font-size: 1.15rem; line-height: 1.3; font-style: normal;
}

/* geo: ✦ ▲ ◉ */
.wmodst .ndgai7     .wj624k6z::before { content: "✦"; color: var(--c-tip-border); }
.wmodst .kk8x .wj624k6z::before { content: "▲"; color: var(--c-warn-border); }
.wmodst .djm6    .wj624k6z::before { content: "◉"; color: #60a5fa; }

/* marks: ★ ◆ ● */
.sleli .ndgai7     .wj624k6z::before { content: "★"; color: var(--c-tip-border); }
.sleli .kk8x .wj624k6z::before { content: "◆"; color: var(--c-warn-border); }
.sleli .djm6    .wj624k6z::before { content: "●"; color: #60a5fa; }

/* sharp: ▶ ■ ▸ */
.macye .ndgai7     .wj624k6z::before { content: "▶"; color: var(--c-tip-border); }
.macye .kk8x .wj624k6z::before { content: "■"; color: var(--c-warn-border); }
.macye .djm6    .wj624k6z::before { content: "▸"; color: #60a5fa; }

/* arrows: → ⬥ ◈ */
.u5dpz5 .ndgai7     .wj624k6z::before { content: "→"; color: var(--c-tip-border); }
.u5dpz5 .kk8x .wj624k6z::before { content: "⬥"; color: var(--c-warn-border); }
.u5dpz5 .djm6    .wj624k6z::before { content: "◈"; color: #60a5fa; }

/* ── shadow variant ──────────────────────────────────────────────────────────*/
.tm9k .mspss .n04an,
.tm9k .fn79dxqm .n04an  { box-shadow: 0 2px 8px rgba(0,0,0,0.22); }
.tm9k .qj3m3dyz                { box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
.tm9k .nf6j                { box-shadow: 0 4px 12px rgba(0,0,0,0.28); }
.tm9k .ou1acs1            { box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.tm9k .uo6h5          { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }
.tm9k .xqe6o                    { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }

/* shadow-none: скидаємо будь-які тіні */
.qeyfi8f .mspss .n04an,
.qeyfi8f .fn79dxqm .n04an,
.qeyfi8f .qj3m3dyz,
.qeyfi8f .nf6j,
.qeyfi8f .ou1acs1,
.qeyfi8f .uo6h5,
.qeyfi8f .xqe6o,
.qeyfi8f .nb6gj .u42nk5 { box-shadow: none; }

/* ── text_size variants ──────────────────────────────────────────────────────*/
.hxlbx   body, .hxlbx   { font-size: 0.9rem; }
.hxlbx   .iryl58bq, .hxlbx .u96a, .hxlbx .hf68f,
.hxlbx   .fy1a, .hxlbx .xkxd { font-size: 0.9rem; }
.hxlbx   .dq7f7ca, .hxlbx .hjqltjat { font-size: 0.9rem; }

.l7wue8m   .iryl58bq, .l7wue8m .u96a, .l7wue8m .hf68f,
.l7wue8m   .fy1a, .l7wue8m .xkxd { font-size: 0.9rem; }
.l7wue8m   .dq7f7ca, .l7wue8m .hjqltjat { font-size: 0.9rem; }

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

.m3um04   .iryl58bq, .m3um04 .u96a, .m3um04 .hf68f,
.m3um04   .fy1a, .m3um04 .xkxd { font-size: 1.08rem; }
.m3um04   .dq7f7ca, .m3um04 .hjqltjat { font-size: 1.05rem; }
.m3um04   .tef9d { font-size: 0.97rem; }

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

/* large */
.pfehikbu .tm33l1uq      { font-size: 3.2rem; }
.pfehikbu h2.u960vsr { font-size: 1.9rem; }
.pfehikbu h3.kfzlwb2     { font-size: 1.4rem; }

/* display */
.af2ddu .tm33l1uq      { font-size: 3.8rem; }
.af2ddu h2.u960vsr { font-size: 2.2rem; }
.af2ddu h3.kfzlwb2     { font-size: 1.6rem; }

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

/* Спільна база: abs-позиція на межі між секціями */
.dnwz   .wne62 + .wne62::before,
.u9d3  .wne62 + .wne62::before,
.xuvnjkc   .wne62 + .wne62::before,
.dh7sp   .wne62 + .wne62::before,
.q0fbd   .wne62 + .wne62::before,
.kkoms .wne62 + .wne62::before {
  position: absolute; top: -1px; left: 0; right: 0;
  transform: translateY(-50%);
}

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

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

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

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

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

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

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

/* section_bg=stripe: парні секції мають bg-card */
.noqh .nu1c .wne62:nth-child(even)::before,
.noqh .q3joo90 .wne62:nth-child(even)::before,
.noqh .bz9u5 .wne62:nth-child(even)::before { background: var(--bg-card); }

/* wave-a: плавна S-хвиля (1 гребінь) */
.nu1c .wne62 + .wne62::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 гребені */
.q3joo90 .wne62 + .wne62::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: глибока дуга */
.bz9u5 .wne62 + .wne62::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 у формі хвилі */
.y8gtv4 .p12w86,
.jxm9 .p12w86,
.gmww .p12w86 { overflow: hidden; }

/* wave: додатковий простір щоб хвиля не закривала CTA */
.y8gtv4 .ku6dj,
.jxm9 .ku6dj { margin-bottom: 60px; }
.gmww .ku6dj { margin-bottom: 70px; }
.y8gtv4 .ch80,
.jxm9 .ch80 { padding-bottom: 60px; }
.gmww .ch80 { padding-bottom: 70px; }

.y8gtv4 .p12w86::before,
.jxm9 .p12w86::before,
.gmww .p12w86::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 гребінь) */
.y8gtv4 .p12w86::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 гребені */
.jxm9 .p12w86::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: глибока дуга */
.gmww .p12w86::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 */
.p3zlm65 .comhv { background: linear-gradient(225deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%); }
.u0ep6 .comhv { background: linear-gradient(45deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 100%); }
.ytchtai  .comhv { background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%); }
.ht3a6  .comhv { background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%); }

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

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

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

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


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

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

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

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

/* Великі блочні елементи — clear float щоб не стискались */
.yp6khc .d4w93ac3,
.yp6khc .qn4msgw7,
.q59fgd8 .d4w93ac3,
.q59fgd8 .qn4msgw7,
.bybj4j .d4w93ac3,
.bybj4j .qn4msgw7 { clear: both; }

/* Маркери списків не мають налазити на float-картинку */
.yp6khc .dq7f7ca,
.yp6khc .hjqltjat,
.q59fgd8 .dq7f7ca,
.q59fgd8 .hjqltjat,
.bybj4j .dq7f7ca,
.bybj4j .hjqltjat { overflow: hidden; }


@media (max-width: 640px) {
  .yp6khc .b93xibsc,
  .q59fgd8 .b93xibsc,
  .bybj4j .b93xibsc { float: none; width: 100%; margin: 0 0 16px 0; }
}

/* ── content_width: ширина контентного контейнера ───────────────────────────*/
/* default = 1000px (задано в .ci02vr, .g4k4yg, .d9qj) */
.oiew .ci02vr,
.oiew .g4k4yg,
.oiew .d9qj  { max-width: 1100px; }
.ccvhl2r .ci02vr,
.ccvhl2r .g4k4yg,
.ccvhl2r .d9qj  { max-width: 1200px; }
.o6iv61 .ci02vr,
.o6iv61 .g4k4yg,
.o6iv61 .d9qj  { max-width: 1320px; }

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

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

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

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

/* content-width: above — обидва класи на <body>, тому без пробілу */
.oiew.jnoy .zni6siwy { max-width: 1100px; }
.ccvhl2r.jnoy .zni6siwy { max-width: 1200px; }
.o6iv61.jnoy .zni6siwy { max-width: 1320px; }
/* float — bc-float-wrap окремий елемент, тому з пробілом */
.oiew .fzxu6k { max-width: 1100px; }
.ccvhl2r .fzxu6k { max-width: 1200px; }
.o6iv61 .fzxu6k { max-width: 1320px; }

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

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

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

/* ── font_weight: жирність тексту ────────────────────────────────────────────*/
/* fw-300: тонкий */
.mmbz { font-weight: 300; }
.mmbz h2.u960vsr { font-weight: 600; }
.mmbz h3.kfzlwb2     { font-weight: 600; }
/* fw-400: default — без override */
/* fw-500: medium */
.ca5upa { font-weight: 500; }
.ca5upa h2.u960vsr { font-weight: 800; }
.ca5upa h3.kfzlwb2     { font-weight: 700; }
/* fw-600: semibold */
.l9x6 { font-weight: 600; }
.l9x6 h2.u960vsr { font-weight: 900; }
.l9x6 h3.kfzlwb2     { font-weight: 800; }
.l9x6 .u42nk5 strong,
.l9x6 .u96a,
.l9x6 .fy1a { font-weight: 600; }

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

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

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

/* minimal */
.fyr31o .d9qj { text-align: center; }
.fyr31o .m68b { justify-content: center; margin-bottom: 16px; }
.fyr31o .s7hzrk { margin-top: 0; }

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

/* mobile footer */
@media (max-width: 640px) {
  .d9qj { padding-left: 16px; padding-right: 16px; }
  .dwu04tik .d9qj { padding: 20px 16px; }
  .m68b { gap: 4px 12px; }
  .s7hzrk { font-size: 0.78rem; }
}


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


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

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

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

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

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

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

/* dark: завжди темний, незалежно від теми */
.fq9onu .wi4o      { background: #0d1117; border-bottom-color: #21262d; }
.fq9onu .ii522omo { color: var(--accent-light); }
.fq9onu .xf0x { --msep-color: #8b949e; }
.fq9onu .xf0x a { color: #8b949e; }
.fq9onu .xf0x a:hover { color: var(--accent-light); }
.fq9onu .szkj1of { color: #8b949e; }
.fq9onu .cqn1mvfv { background: #0d1117; border-top-color: #21262d; }
.fq9onu .s7hzrk,
.fq9onu .u6xcj { color: #6e7681; }
.fq9onu .r0wf8a a, .fq9onu .m68b a,
.fq9onu .rnm8pd a, .fq9onu .z2hu a,
.fq9onu .pm01ry a, .fq9onu .t8mopm { color: #8b949e; }
.fq9onu .r0wf8a a:hover, .fq9onu .m68b a:hover,
.fq9onu .rnm8pd a:hover, .fq9onu .z2hu a:hover { color: var(--accent-light); }
@media (max-width: 640px) {
  .fq9onu .xf0x { background: #0d1117; border-top-color: #21262d; }
  .fq9onu .xf0x li a { border-bottom-color: #21262d; }
}

/* light: завжди світлий */
.or1i5d7q .wi4o      { background: #f0f4f8; border-bottom-color: #cbd5e1; }
.or1i5d7q .ii522omo { color: var(--accent); }
.or1i5d7q .xf0x { --msep-color: #475569; }
.or1i5d7q .xf0x a { color: #475569; }
.or1i5d7q .xf0x a:hover { color: var(--accent); }
.or1i5d7q .szkj1of { color: #64748b; }
.or1i5d7q .cqn1mvfv { background: #f0f4f8; border-top-color: #cbd5e1; }
.or1i5d7q .s7hzrk,
.or1i5d7q .u6xcj { color: #64748b; }
.or1i5d7q .r0wf8a a, .or1i5d7q .m68b a,
.or1i5d7q .rnm8pd a, .or1i5d7q .z2hu a,
.or1i5d7q .pm01ry a, .or1i5d7q .t8mopm { color: #374151; }
.or1i5d7q .r0wf8a a:hover, .or1i5d7q .m68b a:hover,
.or1i5d7q .rnm8pd a:hover, .or1i5d7q .z2hu a:hover { color: var(--accent); }
@media (max-width: 640px) {
  .or1i5d7q .xf0x { background: #f0f4f8; border-top-color: #cbd5e1; }
  .or1i5d7q .xf0x li a { border-bottom-color: #cbd5e1; color: #475569; }
}

/* accent: кольоровий акцентний фон */
.h70mu .wi4o      { background: var(--accent); border-bottom-color: var(--accent-light); }
.h70mu .ii522omo { color: #fff; }
.h70mu .xf0x { --msep-color: rgba(255,255,255,0.82); }
.h70mu .xf0x a { color: rgba(255,255,255,0.82); }
.h70mu .xf0x a:hover { color: #fff; }
.h70mu .szkj1of { color: rgba(255,255,255,0.9); }
.h70mu .cqn1mvfv { background: var(--accent); border-top-color: var(--accent-light); }
.h70mu .s7hzrk,
.h70mu .u6xcj { color: rgba(255,255,255,0.72); }
.h70mu .r0wf8a a, .h70mu .m68b a,
.h70mu .rnm8pd a, .h70mu .z2hu a,
.h70mu .pm01ry a, .h70mu .t8mopm { color: rgba(255,255,255,0.82); }
.h70mu .r0wf8a a:hover, .h70mu .m68b a:hover,
.h70mu .rnm8pd a:hover, .h70mu .z2hu a:hover { color: #fff; }
@media (max-width: 640px) {
  .h70mu .xf0x { background: var(--accent); border-top-color: var(--accent-light); }
  .h70mu .xf0x li a { border-bottom-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.82); }
}

/* glass: напівпрозорий з blur */
.o9wv .wi4o {
  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);
}
.o9wv .cqn1mvfv {
  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) {
  .o9wv .xf0x {
    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 */
.apgy67u .xjgua314 { min-height: 52px; height: auto; padding-top: 6px; padding-bottom: 6px; }
.hs3m413 .xjgua314 { min-height: 58px; height: auto; padding-top: 8px; padding-bottom: 8px; }
.ylwtjhw .xjgua314 { min-height: 72px; height: auto; }
.f1eb .xjgua314 { min-height: 84px; height: auto; }

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

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


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

/* ── nav_logo_bg: фон на wrap-блоці (не на img) ─────────────────────────────*/
/* none = без фону (default) */
.h5mn, .cnfen33f {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.r67ypv .h5mn,
.r67ypv .cnfen33f { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 8px; padding: 4px; }
.nquq .h5mn,
.nquq .cnfen33f { 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; }
.zwgit .h5mn,
.zwgit .cnfen33f { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 999px; padding: 4px 8px; }
.d3jwa44 .h5mn,
.d3jwa44 .cnfen33f { 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 */
.ccwnn   .xf0x a { font-weight: 500; }
.zzxu .xf0x a { font-weight: 600; }
.tdmlqn     .xf0x a { font-weight: 700; }
.jfk9    .xf0x a { font-weight: 800; letter-spacing: 0.01em; }

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

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

  /* ховаємо ☰ символ і центруємо кнопку */
  .ed6ir .szkj1of,
  .kt5p .szkj1of,
  .zfptwa .szkj1of,
  .bdf4d3f .szkj1of,
  .sg31k85 .szkj1of {
    font-size: 0 !important;
    display: flex !important;
    align-items: center; justify-content: center;
    padding: 0; width: 40px;
  }

  /* базовий ::before */
  .ed6ir .szkj1of::before,
  .kt5p .szkj1of::before,
  .zfptwa .szkj1of::before,
  .bdf4d3f .szkj1of::before,
  .sg31k85 .szkj1of::before { content: ""; display: block; flex-shrink: 0; }

  /* 2 лінії: повна + 68% */
  .ed6ir .szkj1of::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 лінії рівні */
  .kt5p .szkj1of::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% */
  .zfptwa .szkj1of::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% */
  .bdf4d3f .szkj1of::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% */
  .sg31k85 .szkj1of::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) {
  .q9p7 .szkj1of {
    padding: 5px 14px;
  }
  .q9p7 .xf0x {
    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;
  }
  .q9p7 .xf0x li a {
    border-bottom: none; padding: 10px 22px;
  }
  .q9p7 .xf0x li a:hover { background: var(--bg-raised); }
}

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

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

/* overlay: повноекранне меню ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .b5g7a9 .szkj1of {
    padding: 5px 10px;
  }
  .b5g7a9 .xf0x {
    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;
  }
  .b5g7a9 .xf0x.q17aar2d { opacity: 1; pointer-events: auto; }
  .b5g7a9 .xf0x 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) {
  .mjfeoe9e     .szkj1of { border-radius: 0 !important; }
  .r4px   .szkj1of { border-radius: 8px !important; }
  .pt1wf3r1 .szkj1of { border-radius: 50% !important; }
  .gdclghg   .szkj1of { border-radius: 999px !important; }
}

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

/* ── star_style: вигляд зірок (showcase + review) ───────────────────────────*/
/* default = accent color (задано в базових стилях .wqrwx / .kvtwlzeq) */
.w2atz    .wqrwx, .w2atz    .kvtwlzeq { color: #f59e0b; }
.ha3md      .wqrwx { font-size: 1rem; letter-spacing: 1.5px; }
.ha3md      .kvtwlzeq   { font-size: 1.35rem; }
.vhvq4j    .wqrwx, .vhvq4j    .kvtwlzeq { color: var(--text-muted); opacity: 0.7; letter-spacing: 2px; }
.grzapp     .wqrwx, .grzapp     .kvtwlzeq { color: var(--accent); letter-spacing: 3px; font-size: 0.7rem; }
.uugard .wqrwx, .uugard .kvtwlzeq { color: var(--accent); letter-spacing: 2px; }
.ec0wz   .wqrwx, .ec0wz   .kvtwlzeq { color: #e91e63; letter-spacing: 2px; }
.d7kpc9v1  .wqrwx, .d7kpc9v1  .kvtwlzeq { color: var(--accent); letter-spacing: 2px; font-size: 0.65rem; }
.xjaan1f     .wqrwx, .xjaan1f     .kvtwlzeq { color: var(--accent); letter-spacing: 2px; font-size: 0.7rem; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/* ── color scheme ── */
:root {
  --accent:          #8f5436;
  --accent-light:    #b57454;
  --accent-pale:     #f1a884;
  --grad-start:      #f1a884;
  --grad-end:        #ffd4c0;
  --bg-page: #edd5cc;
  --bg-surface: #fff8f6;
  --bg-card: #fff1eb;
  --bg-card-inner: #feeae2;
  --bg-raised: #f9e4db;
  --bg-hover: #f5ded4;
  --border: #c3aea4;
  --border-alt: #8a776f;
  --border-section: #c3aea4;
  --text-primary: #3d2f29;
  --text-muted: #6d5b54;
  --bg-page:        #f8f9fa;
  --bg-surface:     #ffffff;
  --bg-card:        #ffffff;
  --bg-card-inner:  #f3f4f6;
  --bg-raised:      #eef0f2;
  --bg-hover:       #f3f4f6;
  --border:         #e5e7eb;
  --border-alt:     #d1d5db;
  --border-section: #e5e7eb;
  --text-body: #372f2b;
  --text-sub: #4e4541;
  --text-faint: #736864;
  --text-dim: #9b8e89;
  --text-label: #675c58;
  --text-value: #433936;
  --accent-bg:       #ffdbcb;
  --accent-bg-light: #ffc9b0;
  --bg-tip:        #f0fdf4;
  --bg-warning:    #fffbeb;
  --bg-info:       #eff6ff;
  --bg-pros:       #f0fdf4;
  --bg-cons:       #fef2f2;
  --c-pros:        #15803d;
  --c-cons:        #b91c1c;
  --c-pros-label:  #16a34a;
  --c-tip-border:  #059669;
  --c-warn-border: #d97706;
  --c-stars:       #b45309;
  --c-arrow:       #d97706;
  --c-tag-pay:     #15803d;
}
:root { --logo-bg-opacity: 35%; }

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

.mwodf3es .wj624k6z { font-size: 0; width: 1.2rem; flex-shrink: 0; }.mwodf3es .wj624k6z::before {  content: ""; display: inline-block;  font-family: "Font Awesome 6 Free"; font-weight: 900;  font-size: 1.1rem; line-height: 1; }.mwodf3es .ndgai7     .wj624k6z::before { content: "";  color: var(--c-tip-border); }.mwodf3es .kk8x .wj624k6z::before { content: ""; color: var(--c-warn-border); }.mwodf3es .djm6    .wj624k6z::before { content: ""; color: #60a5fa; }.n5p9f4vj .mwodf3es .ndgai7     .wj624k6z::before { color: #10b981; }.n5p9f4vj .mwodf3es .kk8x .wj624k6z::before { color: #f43f5e; }.n5p9f4vj .mwodf3es .djm6    .wj624k6z::before { color: #a855f7; }.ttm7dh3  .mwodf3es .ndgai7     .wj624k6z::before { color: #eab308; }.ttm7dh3  .mwodf3es .kk8x .wj624k6z::before { color: #ef4444; }.ttm7dh3  .mwodf3es .djm6    .wj624k6z::before { color: #f97316; }.u44f6qo1  .mwodf3es .ndgai7     .wj624k6z::before { color: #38bdf8; }.u44f6qo1  .mwodf3es .kk8x .wj624k6z::before { color: #818cf8; }.u44f6qo1  .mwodf3es .djm6    .wj624k6z::before { color: #2dd4bf; }.sq34v .mwodf3es .wj624k6z::before { color: var(--accent-light) !important; }

.p0zu2 .vro5t9, .p0zu2 .ror568 { min-height: 520px; }

.kbbtues .vakop::after, .kbbtues .gwmxk8fd::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; }

.gjptuz .rsbv3::after,.gjptuz .du92::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; }

.ppcm9j8::before { content: '/'; }