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

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

.wndqst1 {
  display: none; background: none; border: none;
  color: var(--text-muted); font-size: 1.4rem; cursor: pointer; padding: 4px 8px; line-height: 1;
}
@media (max-width: 640px) {
  .wndqst1 { display: block; }
  .jn63 {
    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;
  }
  .jn63.mrfq0 { display: flex; }
  .jn63 li a {
    display: block; padding: 11px 24px; font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
  }
  .jn63 li:last-child a { border-bottom: none; }
}

/* ── Hero: спільні стилі ─────────────────────────────────────────────────────*/
.nhx6k0y1 { min-height: 480px; }
.zhzcf {
  font-size: 2.6rem; font-weight: 900; color: var(--accent-pale);
  line-height: 1.2; margin-bottom: 16px;
}
.lypfh { font-size: 1.15rem; margin-bottom: 28px; }
.b2setjj {
  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;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.b2setjj:hover { opacity: 0.9; transform: translateY(-2px); }

/* ── Hero: BG layout (картинка — повноширокий фон) ───────────────────────────*/
.z2mu4f2 {
  position: relative; display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center;
  background-color: var(--bg-surface);
}
.r0oqs {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.55) 100%);
}
/* hero-content — такий самий контейнер як page-wrap (1000px) */
.z2mu4f2 .e7poq1o {
  position: relative; z-index: 1;
  width: 100%; max-width: 1000px; padding: 48px 24px;
}
.z2mu4f2 .zhzcf { text-shadow: 0 2px 12px rgba(0,0,0,0.6); }
.z2mu4f2 .lypfh { color: #e2e8f0; text-shadow: 0 1px 6px rgba(0,0,0,0.5); }

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

/* bg-color: градієнтний фон замість фото */
.r6vt0 {
  background: linear-gradient(135deg, var(--grad-start) 0%, var(--grad-end) 60%, var(--accent) 100%);
}
.r6vt0 .r0oqs {
  background: linear-gradient(160deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 100%);
}
.r6vt0 .zhzcf { color: #fff; }
.r6vt0 .lypfh { color: rgba(255,255,255,0.85); }

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

/* Split alignment — всередині text-колонки */
.p3hx21i7.gg10 .ccd0 { align-items: center; text-align: center; }
.p3hx21i7.yi47ikct   .ccd0 { align-items: flex-start; text-align: left; }

/* split-circle / split-square / split-diamond: спільна база */
.toqn9ev,
.qo32c9j,
.aihshgo { grid-template-columns: 55% 45%; }

.toqn9ev .cv0u,
.qo32c9j .cv0u,
.aihshgo .cv0u {
  display: flex; align-items: center; justify-content: center;
  padding: 32px 32px 32px 0; overflow: hidden;
}
.toqn9ev .gxvx,
.qo32c9j .gxvx,
.aihshgo .gxvx {
  position: static; flex-shrink: 0;
  width: min(380px, 100%); height: auto; aspect-ratio: 1/1; object-fit: cover;
}
.toqn9ev .hh4q8,
.qo32c9j .hh4q8,
.aihshgo .hh4q8 {
  position: static; width: min(380px, 100%); aspect-ratio: 1/1;
}

/* split-circle */
.toqn9ev .gxvx {
  border-radius: 50%;
  box-shadow: 0 8px 40px rgba(0,0,0,0.45), 0 0 0 6px var(--accent-bg), 0 0 0 12px var(--accent);
}
.toqn9ev .hh4q8 { border-radius: 50%; }

/* split-square */
.qo32c9j .gxvx {
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.45), 0 0 0 6px var(--accent-bg), 0 0 0 12px var(--accent);
}
.qo32c9j .hh4q8 { border-radius: 16px; }

/* split-diamond: clip-path ромб */
.aihshgo .cv0u { overflow: visible; }
.aihshgo .gxvx {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
}
.aihshgo .hh4q8 {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

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

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

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

/* circle / square / diamond -left: інвертувати пропорції колонок */
.toqn9ev.taewrsmy,
.qo32c9j.taewrsmy,
.aihshgo.taewrsmy { grid-template-columns: 45% 55%; }

/* інвертувати внутрішній padding media-блока */
.toqn9ev.taewrsmy .cv0u,
.qo32c9j.taewrsmy  .cv0u,
.aihshgo.taewrsmy .cv0u { padding: 32px 0 32px 32px; }

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

@media (max-width: 700px) {
  .p3hx21i7 { grid-template-columns: 1fr !important; grid-template-areas: "text" !important; }
  .p3hx21i7 .cv0u { display: none !important; }
  .ccd0  { padding: 36px 24px; }
  /* cap hero height variants on mobile */
  .nhx6k0y1, .p3hx21i7 { min-height: 320px !important; }
  /* reduce oversized headings on mobile */
  .zhzcf { font-size: clamp(1.7rem, 5.5vw, 2.4rem) !important; }
}

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

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

/* rounded */
.i87mv6 .p3iqa8m9        { border-radius: 16px; }
.i87mv6 .omb58965  { border-radius: 16px; }

/* shadow */
.idb0s .p3iqa8m9         { box-shadow: 0 4px 14px rgba(0,0,0,0.18); border-radius: 8px; }
.idb0s .omb58965   { border-radius: 8px; }

/* bordered — кольорова рамка */
.ntqbj1 .p3iqa8m9       { border: 2px solid var(--accent); border-radius: 10px; }
.ntqbj1 .omb58965 { border-radius: 8px; }

/* frame — outline offset */
.f818hvg .p3iqa8m9 {
  border-radius: 8px;
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
.f818hvg .omb58965 { border-radius: 6px; }

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

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

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

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

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

.c492 .tghe:nth-child(even) .ibpq1f50 .nrxlhhd:nth-child(odd),
.lngyaf .tghe:nth-child(even) .ibpq1f50 .nrxlhhd:nth-child(odd)  { background: var(--bg-card); }
.c492 .tghe:nth-child(even) .ibpq1f50 .nrxlhhd:nth-child(even),
.lngyaf .tghe:nth-child(even) .ibpq1f50 .nrxlhhd:nth-child(even) { background: var(--bg-card-inner); }

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

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

/* bar: ліва кольорова смуга */
.ltks h2.a6nmm {
  border-left: 4px solid var(--accent); padding-left: 14px;
}
/* underline: підкреслення знизу */
.b659u6 h2.a6nmm {
  border-bottom: 2px solid var(--accent); padding-bottom: 10px;
  display: inline-block;
}
/* overline: тонка лінія зверху */
.d46t h2.a6nmm {
  border-top: 3px solid var(--accent); padding-top: 12px;
  color: var(--text-primary);
}
/* pill: заголовок у таблетці з акцентним фоном */
.c0eh5g h2.a6nmm {
  display: inline-block;
  background: var(--accent-bg); color: var(--accent-light);
  border-radius: 6px; padding: 6px 16px;
}
/* plain: просто жирний текст, без декорацій */
.vpwl5m h2.a6nmm {
  color: var(--text-primary); font-size: 1.7rem;
}
/* gradient: градієнтний текст */
.fa6s83 h2.a6nmm {
  background: linear-gradient(90deg, var(--accent-light), var(--accent-pale));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* caps: великі літери, розріджений трекінг, тонка нижня лінія */
.et3swl3 h2.a6nmm {
  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 ──────────────────────────────────────────────────────*/
.m1vwz8l7 { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 16px; }
@media (max-width: 640px) { .m1vwz8l7 { display: none; } }
.ukfqj {
  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;
}
.t09v { margin-right: 8px; color: var(--c-arrow); }
.m9iclc8w { font-size: 1rem; color: var(--text-muted); margin: 8px 0 20px; }
.mx5lnw { font-size: 1rem; color: var(--text-muted); margin: 24px 0 0; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* plain: простий текст */
.nkchis .m9iclc8w,
.nkchis .mx5lnw,
.nkchis .yalyuy,
.nkchis .tu6sgbi { font-style: normal; color: var(--text-body); }

/* dash: ліва вертикальна чорточка */
.az2nny .m9iclc8w,
.az2nny .mx5lnw {
  font-style: italic;
  border-left: 3px solid var(--border-section); padding-left: 12px;
}
.az2nny .yalyuy,
.az2nny .tu6sgbi {
  font-style: italic;
  border-left: 2px solid var(--border); padding-left: 10px;
}

/* bg: підкладка з фоном */
.h63vs3r .m9iclc8w,
.h63vs3r .mx5lnw,
.h63vs3r .yalyuy,
.h63vs3r .tu6sgbi {
  font-style: normal;
  background: var(--bg-raised); border-radius: 6px;
  padding: 10px 14px; color: var(--text-sub);
}

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

/* ── list_style variants ─────────────────────────────────────────────────────*/

/* ul: list-style:none + flex-маркер (коректно працює у float-контексті) */
.ze19yv    .u5nj,
.bzgc .u5nj,
.b5iwsr .u5nj,
.j0k23x   .u5nj { list-style: none; padding-left: 0; }
/* в картках зберігаємо відступ щоб маркер не впирався в межу картки */
.ze19yv    .afdtyoos,
.bzgc .afdtyoos,
.b5iwsr .afdtyoos,
.j0k23x   .afdtyoos { list-style: none; padding-left: 14px; }

.ze19yv    .u5nj li, .ze19yv    .afdtyoos li,
.bzgc .u5nj li, .bzgc .afdtyoos li,
.b5iwsr .u5nj li, .b5iwsr .afdtyoos li,
.j0k23x   .u5nj li, .j0k23x   .afdtyoos li {
  list-style: none; display: flex; align-items: baseline; gap: 0.55em;
}

.ze19yv    .u5nj li::before, .ze19yv    .afdtyoos li::before { content: "●"; color: var(--accent); flex-shrink: 0; }
.bzgc .u5nj li::before, .bzgc .afdtyoos li::before { content: "■"; color: var(--accent); flex-shrink: 0; }
.b5iwsr .u5nj li::before, .b5iwsr .afdtyoos li::before { content: "◆"; color: var(--accent); flex-shrink: 0; font-size: 0.75em; }
.j0k23x   .u5nj li::before, .j0k23x   .afdtyoos li::before { content: "★"; color: var(--accent); flex-shrink: 0; }

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

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

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

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

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

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

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

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

.ozwwprrd { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin: 12px 0; }
.ctfyl1f { background: var(--bg-card-inner); border-radius: 8px; overflow: hidden; }
.adymg { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.wkm1t4sa { background: var(--accent-bg-light); color: var(--accent); font-weight: 700; padding: 10px 14px; font-size: 0.9rem; }
.q2x6t0 { padding: 10px 14px 4px; font-size: 0.88rem; color: var(--text-sub); }
.afdtyoos { padding: 4px 14px 12px 28px; font-size: 0.82rem; color: var(--text-muted); }
.afdtyoos li { margin-bottom: 3px; }

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

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

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

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


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

/* outline: прозорий фон, акцентна рамка, заголовок без заливки */
.lyn3isj .ctfyl1f { background: transparent; border: 1.5px solid var(--accent-pale); }
.lyn3isj .wkm1t4sa { background: none; color: var(--accent-light); font-weight: 700; border-bottom: 1px solid var(--border); }

/* raised: градієнтний заголовок, більший radius */
.pfradlj .ctfyl1f { border-radius: 14px; }
.pfradlj .wkm1t4sa {
  background: linear-gradient(120deg, var(--accent), var(--grad-end));
  color: #fff; font-weight: 700; padding: 12px 16px;
}

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

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

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

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

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

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

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

/* outline */
.usqu .b2setjj {
  background: transparent; border: 2px solid var(--accent);
  color: var(--accent-light); box-shadow: 0 0 18px rgba(0,0,0,0.15);
}
.usqu .b2setjj:hover { background: var(--accent); color: #fff; opacity: 1; transform: translateY(-2px); }
.usqu .lke5o8  { background: transparent; border: 2px solid var(--accent); color: var(--accent-light); }
.usqu .lke5o8:hover  { background: var(--accent); color: #fff; opacity: 1; }

/* ghost */
.u5x16 .b2setjj { background: var(--accent-bg); border: 1px solid var(--accent); color: var(--accent-light); box-shadow: none; }
.u5x16 .b2setjj:hover { background: var(--accent); color: #fff; opacity: 1; }
.u5x16 .lke5o8  { background: var(--accent-bg); border: 1px solid var(--accent); color: var(--accent-light); }
.u5x16 .lke5o8:hover  { background: var(--accent); color: #fff; opacity: 1; }

/* pill = solid but very rounded */
.o0r4w .b2setjj { border-radius: 50px; }
.o0r4w .lke5o8  { border-radius: 50px; }

/* ── btn_fill: gradient (всі стилі кнопок) ───────────────────────────────────*/
.d8zaei .b2setjj {
  background: linear-gradient(120deg, var(--grad-start), var(--accent), var(--grad-end)) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 4px 28px rgba(0,0,0,0.4);
}
.d8zaei .lke5o8 {
  background: linear-gradient(90deg, var(--grad-start), var(--accent)) !important;
  border-color: transparent !important;
  color: #fff !important;
}

/* ── btn_icon: SVG-іконки на .b2setjj і .lke5o8 (mask на currentColor) ──────*/
/* ::after — усі іконки після тексту (праворуч) */
.g0yzsb   .b2setjj::after, .g0yzsb   .lke5o8::after,
.zugyt8sg .b2setjj::after, .zugyt8sg .lke5o8::after,
.j631    .b2setjj::after, .j631    .lke5o8::after,
.nu67qm    .b2setjj::after, .nu67qm    .lke5o8::after,
.x0ayr    .b2setjj::after, .x0ayr    .lke5o8::after,
.j5lxhuq     .b2setjj::after, .j5lxhuq     .lke5o8::after,
.zsktq1hv    .b2setjj::after, .zsktq1hv    .lke5o8::after,
.ai51dfq   .b2setjj::after, .ai51dfq   .lke5o8::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 — кожна іконка */
.g0yzsb .b2setjj::after, .g0yzsb .lke5o8::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");
}
.zugyt8sg .b2setjj::after, .zugyt8sg .lke5o8::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");
}
.j631 .b2setjj::after, .j631 .lke5o8::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");
}
.nu67qm .b2setjj::after, .nu67qm .lke5o8::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");
}
.x0ayr .b2setjj::after, .x0ayr .lke5o8::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");
}
.j5lxhuq .b2setjj::after, .j5lxhuq .lke5o8::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");
}
.zsktq1hv .b2setjj::after, .zsktq1hv .lke5o8::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");
}
.ai51dfq .b2setjj::after, .ai51dfq .lke5o8::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 ────────*/
.nbt0k9   .bwzy::after, .nbt0k9   .hgdvex7::after,
.mxz50lj .bwzy::after, .mxz50lj .hgdvex7::after,
.khs5d5    .bwzy::after, .khs5d5    .hgdvex7::after,
.wpl9vmo    .bwzy::after, .wpl9vmo    .hgdvex7::after,
.v54dv2    .bwzy::after, .v54dv2    .hgdvex7::after,
.fimt5s1n     .bwzy::after, .fimt5s1n     .hgdvex7::after,
.qrm0abit    .bwzy::after, .qrm0abit    .hgdvex7::after,
.uewx   .bwzy::after, .uewx   .hgdvex7::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;
}
.nbt0k9 .bwzy::after, .nbt0k9 .hgdvex7::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");
}
.mxz50lj .bwzy::after, .mxz50lj .hgdvex7::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");
}
.khs5d5 .bwzy::after, .khs5d5 .hgdvex7::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");
}
.wpl9vmo .bwzy::after, .wpl9vmo .hgdvex7::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");
}
.v54dv2 .bwzy::after, .v54dv2 .hgdvex7::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");
}
.fimt5s1n .bwzy::after, .fimt5s1n .hgdvex7::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");
}
.qrm0abit .bwzy::after, .qrm0abit .hgdvex7::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");
}
.uewx .bwzy::after, .uewx .hgdvex7::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 ─────────────────────────────────────────────────────────*/
.uaud { display: flex; flex-direction: column; gap: 6px; margin: 28px 0; }


.xfabl {
  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 */
.xfabl > [itemprop="item"] { display: contents; }
.xfabl:hover { background: var(--bg-hover); }
.ughgal {
  background: var(--accent-bg);
  border-radius: 8px; padding: 4px 8px;
  display: flex; align-items: center; justify-content: center;
  min-width: 90px; height: 42px; flex-shrink: 0;
}
.hcouav8r { max-height: 34px; max-width: 80px; object-fit: contain; }
.ahpxafp { font-weight: 700; font-size: .85rem; color: var(--accent-light); }
.e9li9fjn { font-weight: 700; font-size: .88rem; color: var(--text-primary); min-width: 110px; flex-shrink: 0; }
.q6qgdb { color: var(--accent); font-size: .8rem; letter-spacing: 1px; flex-shrink: 1; min-width: 0; }
.l8dt { display: flex; flex-direction: column; align-items: center; font-size: .78rem; flex: 1 1 44px; min-width: 0; }
.m283pw { color: var(--text-label); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.g5rjgc { color: var(--text-value); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.rfw3t6g { margin-left: auto; flex-shrink: 0; white-space: nowrap; }
/* планшет / мобіль: 2-колонкова сітка вертикальних карток */
@media (max-width: 720px) {
  .uaud { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .xfabl { flex-direction: column; align-items: center; padding: 16px 12px; border-radius: 14px; gap: 8px; }
  .ughgal { width: 100%; min-width: unset; height: 52px; }
  .hcouav8r { max-height: 40px; max-width: 110px; }
  .e9li9fjn { min-width: unset; text-align: center; }
  .l8dt { flex-direction: row; justify-content: space-between; width: 100%; border-top: 1px solid var(--border); padding-top: 5px; }
  .rfw3t6g { width: 100%; text-align: center; margin-left: 0; }
}

/* ── Casino reviews ──────────────────────────────────────────────────────────*/
.kdx3 {
  background: var(--bg-card);
  border-radius: 12px; margin: 24px 0; overflow: hidden;
  border: 1px solid var(--border-alt);
}
.nmgafi {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 24px; background: var(--bg-surface);
}
.eg4b2cv {
  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;
}
.eg4b2cv img { max-width: 80px; max-height: 50px; object-fit: contain; }
.wji5lyn { color: var(--accent); font-weight: 700; font-size: 0.85rem; text-align: center; }
.w24rxc { flex: 1; }
.w24rxc h3 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 4px; }
.o2dgxme2 { color: var(--c-stars); font-size: 1.1rem; }
.q6egje5l { margin-bottom: 8px; }
.gxigka { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 0.83rem; color: var(--text-muted); }
.kzecfq2c::before   { content: "★ "; color: var(--accent); }
.ocu62yy::before { content: "↓ "; color: var(--accent); }
.qc68me4c::before { content: "✦ "; color: var(--accent); }
.yen5z { flex-shrink: 0; }
.xl6yd4 img.johd49 { width: 100%; max-height: 240px; object-fit: cover; display: block; }
.scixc1z { padding: 20px 24px; }
.rv00cc6 { color: var(--text-muted); margin-bottom: 16px; }
.y3oz { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 14px; }
.be9n9665, .env8rs6y { list-style: none; font-size: 0.9rem; }
.be9n9665 li { color: var(--c-pros); margin-bottom: 4px; }
.env8rs6y li { color: var(--c-cons); margin-bottom: 4px; }
/* CSS маркери для pros/cons замість символів в HTML */
.be9n9665 li::before { content: "✓"; margin-right: 5px; }
.env8rs6y li::before { content: "✗"; margin-right: 5px; }
.flbvo .be9n9665 li::before { content: "→"; }
.flbvo .env8rs6y li::before { content: "–"; }
.yvw06kla  .be9n9665 li::before { content: "★"; }
.yvw06kla  .env8rs6y li::before { content: "✕"; }
.zxi8u    .be9n9665 li::before { content: "◆"; }
.zxi8u    .env8rs6y li::before { content: "▲"; }
.s2hc6jr9  .be9n9665 li::before { content: "▶"; }
.s2hc6jr9  .env8rs6y li::before { content: "■"; }
.uzeii { margin-bottom: 8px; font-size: 0.85rem; color: var(--text-muted); }
.mvdzgxv { background: var(--accent-bg); color: var(--accent-light); border-radius: 4px; padding: 2px 8px; margin: 2px 2px 2px 0; display: inline-block; }
.t7r1fwh { background: var(--bg-pros); color: var(--c-tag-pay); }

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


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

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

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

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

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

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

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

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

/* ranked: accent-pill значення + uppercase лейбли (нумерація — через cs_rank) */
.gobovzib .m283pw {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted);
}
.gobovzib .g5rjgc {
  color: var(--accent); font-weight: 700;
  background: var(--accent-bg); border-radius: 100px;
  padding: 1px 9px; font-size: 0.8rem;
}
.gobovzib .q6qgdb { color: var(--accent); }
.gobovzib .nmgafi { background: var(--accent-bg); }
.gobovzib .kzecfq2c, .gobovzib .ocu62yy, .gobovzib .qc68me4c {
  background: var(--bg-card); border-radius: 100px; padding: 1px 10px;
  border: 1px solid var(--border);
}

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

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

/* compact: менші відступи всюди */
.zsw1 .xfabl { padding: 6px 10px; gap: 6px; }
.zsw1 .ughgal { height: 32px; min-width: 52px; }
.zsw1 .hcouav8r { max-height: 24px; }
.zsw1 .e9li9fjn { font-size: 0.82rem; }
.zsw1 .nmgafi { padding: 14px 18px; gap: 14px; }
.zsw1 .scixc1z { padding: 14px 18px; }
.zsw1 .eg4b2cv { width: 70px; }
.zsw1 .w24rxc h3 { font-size: 1.05rem; }

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

/* bordered: таблиця з усіма рамками */
.nindwq97 .uaud {
  gap: 0; border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.nindwq97 .xfabl {
  border-radius: 0; border: none;
  border-bottom: 1px solid var(--border); gap: 0;
}
.nindwq97 .xfabl:last-child { border-bottom: none; }
/* вертикальні межі між колонками */
.nindwq97 .q6qgdb,
.nindwq97 .j1dohe,
.nindwq97 .bn4c,
.nindwq97 .tzl85o,
.nindwq97 .uyz0q,
.nindwq97 .rfw3t6g { border-left: 1px solid var(--border); padding-left: 10px; }
.nindwq97 .e9li9fjn { padding: 0 10px; }

/* ── cs_cols: feature — бонус-колонка виділена як головна ──────────────────*/
.fnd9hka0 .j1dohe { flex: 1.8; }
.fnd9hka0 .j1dohe .g5rjgc {
  font-size: 0.95rem; font-weight: 800; color: var(--accent);
}
.fnd9hka0 .j1dohe .m283pw { font-weight: 700; color: var(--text-primary); }
.fnd9hka0 .bn4c,
.fnd9hka0 .tzl85o,
.fnd9hka0 .uyz0q { flex: 0.75; opacity: 0.65; }

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

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

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

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

/* score в оглядах — ховаємо зірки */
.o24rx .q6egje5l .o2dgxme2,
.zin49 .q6egje5l .o2dgxme2,
.v32oj .q6egje5l .o2dgxme2 { display: none; }

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

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

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

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

/* ── Sections ────────────────────────────────────────────────────────────────*/
.tghe { margin-bottom: 0; }
.dsbl6 h2.a6nmm { color: var(--accent-light); border-color: var(--accent); }
.m2o0t8 h2.a6nmm { color: var(--accent-light); border-color: var(--accent); }

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

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

/* vivid: смарагд / рожевий / фіолетовий */
.uxc8u3 .rn10127     { background: #052e16; border-color: #10b981; }
.uxc8u3 .bb6qjpf { background: #2d0a1e; border-color: #f43f5e; }
.uxc8u3 .lrvr    { background: #1e1036; border-color: #a855f7; }
.uxc8u3 .qd8bdd strong  { color: #f1f5f9; }
.uxc8u3 .qd8bdd p       { color: #cbd5e1; }
.uxc8u3 .a8iki    .rn10127     .bht3r::before,
.uxc8u3 .hy5l  .rn10127     .bht3r::before,
.uxc8u3 .sfxhwy2  .rn10127     .bht3r::before,
.uxc8u3 .lobf2su1 .rn10127     .bht3r::before { color: #10b981; }
.uxc8u3 .a8iki    .bb6qjpf .bht3r::before,
.uxc8u3 .hy5l  .bb6qjpf .bht3r::before,
.uxc8u3 .sfxhwy2  .bb6qjpf .bht3r::before,
.uxc8u3 .lobf2su1 .bb6qjpf .bht3r::before { color: #f43f5e; }
.uxc8u3 .a8iki    .lrvr    .bht3r::before,
.uxc8u3 .hy5l  .lrvr    .bht3r::before,
.uxc8u3 .sfxhwy2  .lrvr    .bht3r::before,
.uxc8u3 .lobf2su1 .lrvr    .bht3r::before { color: #a855f7; }

/* warm: жовтий / червоний / помаранчевий */
.s77sc .rn10127     { background: #2d2000; border-color: #eab308; }
.s77sc .bb6qjpf { background: #2d0b0b; border-color: #ef4444; }
.s77sc .lrvr    { background: #2d1600; border-color: #f97316; }
.s77sc .qd8bdd strong  { color: #f1f5f9; }
.s77sc .qd8bdd p       { color: #cbd5e1; }
.s77sc .a8iki    .rn10127     .bht3r::before,
.s77sc .hy5l  .rn10127     .bht3r::before,
.s77sc .sfxhwy2  .rn10127     .bht3r::before,
.s77sc .lobf2su1 .rn10127     .bht3r::before { color: #eab308; }
.s77sc .a8iki    .bb6qjpf .bht3r::before,
.s77sc .hy5l  .bb6qjpf .bht3r::before,
.s77sc .sfxhwy2  .bb6qjpf .bht3r::before,
.s77sc .lobf2su1 .bb6qjpf .bht3r::before { color: #ef4444; }
.s77sc .a8iki    .lrvr    .bht3r::before,
.s77sc .hy5l  .lrvr    .bht3r::before,
.s77sc .sfxhwy2  .lrvr    .bht3r::before,
.s77sc .lobf2su1 .lrvr    .bht3r::before { color: #f97316; }

/* cool: блакитний / індиго / бірюзовий */
.gwy9f .rn10127     { background: #0c1a2e; border-color: #38bdf8; }
.gwy9f .bb6qjpf { background: #12103a; border-color: #818cf8; }
.gwy9f .lrvr    { background: #0a2020; border-color: #2dd4bf; }
.gwy9f .qd8bdd strong  { color: #f1f5f9; }
.gwy9f .qd8bdd p       { color: #cbd5e1; }
.gwy9f .a8iki    .rn10127     .bht3r::before,
.gwy9f .hy5l  .rn10127     .bht3r::before,
.gwy9f .sfxhwy2  .rn10127     .bht3r::before,
.gwy9f .lobf2su1 .rn10127     .bht3r::before { color: #38bdf8; }
.gwy9f .a8iki    .bb6qjpf .bht3r::before,
.gwy9f .hy5l  .bb6qjpf .bht3r::before,
.gwy9f .sfxhwy2  .bb6qjpf .bht3r::before,
.gwy9f .lobf2su1 .bb6qjpf .bht3r::before { color: #818cf8; }
.gwy9f .a8iki    .lrvr    .bht3r::before,
.gwy9f .hy5l  .lrvr    .bht3r::before,
.gwy9f .sfxhwy2  .lrvr    .bht3r::before,
.gwy9f .lobf2su1 .lrvr    .bht3r::before { color: #2dd4bf; }

/* accent: використовує динамічний акцент */
.sthbn .rn10127     { background: var(--accent-bg); border-color: var(--accent); }
.sthbn .bb6qjpf { background: var(--accent-bg-light); border-color: var(--accent-light); }
.sthbn .lrvr    { background: var(--accent-bg); border-color: var(--accent-pale); }
.sthbn .a8iki    .bht3r::before,
.sthbn .hy5l  .bht3r::before,
.sthbn .sfxhwy2  .bht3r::before,
.sthbn .lobf2su1 .bht3r::before { color: var(--accent-light) !important; }

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

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

/* classic — фіксовані контрастні кольори незалежно від акценту */
.cxnlt .w4m17 ul li,
.cxnlt .be9n9665 li         { color: #4ade80; }
.cxnlt .w4m17 .bqk69n8 { color: #22c55e; }
.cxnlt .nw3sn0x ul li,
.cxnlt .env8rs6y li         { color: #f87171; }
.cxnlt .nw3sn0x .brd8gv { color: #ef4444; }

/* blue: синій pros / amber cons */
.r6qcae6 .w4m17 { background: #0c1a2e; }
.r6qcae6 .nw3sn0x { background: #2d1f00; }
.r6qcae6 .w4m17 .bqk69n8 { color: #93c5fd; }
.r6qcae6 .nw3sn0x .brd8gv { color: #fcd34d; }
.r6qcae6 .w4m17 ul li,
.r6qcae6 .be9n9665 li            { color: #bfdbfe; }
.r6qcae6 .nw3sn0x ul li,
.r6qcae6 .env8rs6y li            { color: #fde68a; }

/* accent: label акцентний, текст завжди читабельний */
.nylu2d1b .w4m17 { background: var(--accent-bg); }
.nylu2d1b .nw3sn0x { background: var(--accent-bg-light); }
.nylu2d1b .w4m17 .bqk69n8 { color: var(--accent-pale); }
.nylu2d1b .nw3sn0x .brd8gv { color: var(--accent-light); }
.nylu2d1b .w4m17 ul li,
.nylu2d1b .be9n9665 li          { color: var(--text-body); }
.nylu2d1b .nw3sn0x ul li,
.nylu2d1b .env8rs6y li          { color: var(--text-body); }

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

/* check: ✓ / ✗ */
.i6enkqi .bqk69n8::before { content: "✓ "; }
.i6enkqi .brd8gv::before { content: "✗ "; }

/* arrows: → / ← */
.flbvo .bqk69n8::before { content: "→ "; }
.flbvo .brd8gv::before { content: "← "; }

/* marks: ★ / ✕ */
.yvw06kla .bqk69n8::before { content: "★ "; }
.yvw06kla .brd8gv::before { content: "✕ "; }

/* geo: ◆ / ▲ */
.zxi8u .bqk69n8::before { content: "◆ "; }
.zxi8u .brd8gv::before { content: "▲ "; }

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

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

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

/* topbar: смуга зверху */
.uze6 .qd8bdd { border-left: none; border-top: 4px solid; border-radius: 0 0 8px 8px; }
.uze6 .rn10127     { border-top-color: var(--c-tip-border); }
.uze6 .bb6qjpf { border-top-color: var(--c-warn-border); }
.uze6 .lrvr    { border-top-color: #60a5fa; }

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

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

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

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

.a8iki .bht3r,
.hy5l .bht3r,
.sfxhwy2 .bht3r,
.lobf2su1 .bht3r { font-size: 0; width: 1.1rem; flex-shrink: 0; }

.a8iki .bht3r::before,
.hy5l .bht3r::before,
.sfxhwy2 .bht3r::before,
.lobf2su1 .bht3r::before {
  display: block; font-size: 1.15rem; line-height: 1.3; font-style: normal;
}

/* geo: ✦ ▲ ◉ */
.a8iki .rn10127     .bht3r::before { content: "✦"; color: var(--c-tip-border); }
.a8iki .bb6qjpf .bht3r::before { content: "▲"; color: var(--c-warn-border); }
.a8iki .lrvr    .bht3r::before { content: "◉"; color: #60a5fa; }

/* marks: ★ ◆ ● */
.hy5l .rn10127     .bht3r::before { content: "★"; color: var(--c-tip-border); }
.hy5l .bb6qjpf .bht3r::before { content: "◆"; color: var(--c-warn-border); }
.hy5l .lrvr    .bht3r::before { content: "●"; color: #60a5fa; }

/* sharp: ▶ ■ ▸ */
.sfxhwy2 .rn10127     .bht3r::before { content: "▶"; color: var(--c-tip-border); }
.sfxhwy2 .bb6qjpf .bht3r::before { content: "■"; color: var(--c-warn-border); }
.sfxhwy2 .lrvr    .bht3r::before { content: "▸"; color: #60a5fa; }

/* arrows: → ⬥ ◈ */
.lobf2su1 .rn10127     .bht3r::before { content: "→"; color: var(--c-tip-border); }
.lobf2su1 .bb6qjpf .bht3r::before { content: "⬥"; color: var(--c-warn-border); }
.lobf2su1 .lrvr    .bht3r::before { content: "◈"; color: #60a5fa; }

/* ── shadow variant ──────────────────────────────────────────────────────────*/
.hja8y .qm7lj .nrxlhhd,
.hja8y .ibpq1f50 .nrxlhhd  { box-shadow: 0 2px 8px rgba(0,0,0,0.22); }
.hja8y .ctfyl1f                { box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
.hja8y .xfabl                { box-shadow: 0 4px 12px rgba(0,0,0,0.28); }
.hja8y .kdx3            { box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.hja8y .oxftcl          { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }
.hja8y .vy6zohn                    { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }

/* shadow-none: скидаємо будь-які тіні */
.x4qa4q .qm7lj .nrxlhhd,
.x4qa4q .ibpq1f50 .nrxlhhd,
.x4qa4q .ctfyl1f,
.x4qa4q .xfabl,
.x4qa4q .kdx3,
.x4qa4q .oxftcl,
.x4qa4q .vy6zohn,
.x4qa4q .yrcwcld .qd8bdd { box-shadow: none; }

/* ── text_size variants ──────────────────────────────────────────────────────*/
.pcyaenq   body, .pcyaenq   { font-size: 0.82rem; }
.pcyaenq   .gb1uqno3, .pcyaenq .yalyuy, .pcyaenq .tu6sgbi,
.pcyaenq   .m9iclc8w, .pcyaenq .mx5lnw { font-size: 0.82rem; }
.pcyaenq   .u5nj, .pcyaenq .ukma9 { font-size: 0.82rem; }

.kqqq   .gb1uqno3, .kqqq .yalyuy, .kqqq .tu6sgbi,
.kqqq   .m9iclc8w, .kqqq .mx5lnw { font-size: 0.9rem; }
.kqqq   .u5nj, .kqqq .ukma9 { font-size: 0.9rem; }

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

.aqic262   .gb1uqno3, .aqic262 .yalyuy, .aqic262 .tu6sgbi,
.aqic262   .m9iclc8w, .aqic262 .mx5lnw { font-size: 1.08rem; }
.aqic262   .u5nj, .aqic262 .ukma9 { font-size: 1.05rem; }
.aqic262   .qgwy5 { font-size: 0.97rem; }

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

/* large */
.o80t .zhzcf      { font-size: 3.2rem; }
.o80t h2.a6nmm { font-size: 1.9rem; }
.o80t h3.p5ziz38     { font-size: 1.4rem; }

/* display */
.um8t6 .zhzcf      { font-size: 3.8rem; }
.um8t6 h2.a6nmm { font-size: 2.2rem; }
.um8t6 h3.p5ziz38     { font-size: 1.6rem; }

/* giant */
.yznf9e6 .zhzcf      { font-size: 4.6rem; font-weight: 900; line-height: 1.05; }
.yznf9e6 h2.a6nmm { font-size: 2.6rem; }
.yznf9e6 h3.p5ziz38     { font-size: 1.9rem; }

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

/* Спільна база: abs-позиція на межі між секціями */
.wxr7njh   .tghe + .tghe::before,
.hmhve  .tghe + .tghe::before,
.fk660g   .tghe + .tghe::before,
.qi7h6   .tghe + .tghe::before,
.hyotzzn   .tghe + .tghe::before,
.ede8yh .tghe + .tghe::before {
  position: absolute; top: 0; left: 0; right: 0;
}

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

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

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

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

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

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

/* wave: заповнена хвиля hero-style — ::before виступає вгору з нової секції */
/* фон = колір поточної секції, маска = заповнений низ (як у hero) */
.gh44aa .tghe + .tghe::before,
.wxuiifz .tghe + .tghe::before,
.v4ps .tghe + .tghe::before {
  content: ""; display: block;
  position: absolute; top: -70px; left: 0; right: 0; height: 70px;
  background: var(--bg-page);
  pointer-events: none;
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
}

/* section_bg=even: парні секції мають bg-surface, непарні — bg-page */
.c492 .gh44aa .tghe:nth-child(even)::before,
.c492 .wxuiifz .tghe:nth-child(even)::before,
.c492 .v4ps .tghe:nth-child(even)::before { background: var(--bg-surface); }

/* section_bg=stripe: парні секції мають bg-card */
.lngyaf .gh44aa .tghe:nth-child(even)::before,
.lngyaf .wxuiifz .tghe:nth-child(even)::before,
.lngyaf .v4ps .tghe:nth-child(even)::before { background: var(--bg-card); }

/* wave-a: плавна S-хвиля (1 гребінь) */
.gh44aa .tghe + .tghe::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 гребені */
.wxuiifz .tghe + .tghe::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: глибока дуга */
.v4ps .tghe + .tghe::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 у формі хвилі */
.xuar10uj .z2mu4f2::after,
.liwlk355 .z2mu4f2::after,
.acopp .z2mu4f2::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--bg-page);
  pointer-events: none;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

/* wave-a: плавна S-хвиля (1 гребінь) */
.xuar10uj .z2mu4f2::after {
  -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 гребені */
.liwlk355 .z2mu4f2::after {
  -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: глибока дуга */
.acopp .z2mu4f2::after {
  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");
}

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

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

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

/* alt: непарні зліва, парні справа */
.qfs170l .tghe:nth-child(odd)  .p3iqa8m9 { float: left;  width: 38%; margin: 0 28px 16px 0; }
.qfs170l .tghe:nth-child(even) .p3iqa8m9 { float: right; width: 38%; margin: 0 0 16px 28px; }
.qfs170l .p3iqa8m9 .omb58965 { width: 100%; height: 240px; object-fit: cover; border-radius: 10px; }
.qfs170l .tm5hq6sl::after { content: ''; display: block; clear: both; }

/* BFC на кожен блок поруч із float: маркери не вилазять на картинку,
   блок не "ріжеться" — або повністю поруч із зображенням, або повністю під ним */
.mwlg98ed .tm5hq6sl > .a6nmm,
.mwlg98ed .tm5hq6sl > .m9iclc8w,
.mwlg98ed .tm5hq6sl > .mx5lnw,
.mwlg98ed .tm5hq6sl > .nrxlhhd,
.jmacj .tm5hq6sl > .a6nmm,
.jmacj .tm5hq6sl > .m9iclc8w,
.jmacj .tm5hq6sl > .mx5lnw,
.jmacj .tm5hq6sl > .nrxlhhd,
.qfs170l .tm5hq6sl > .a6nmm,
.qfs170l .tm5hq6sl > .m9iclc8w,
.qfs170l .tm5hq6sl > .mx5lnw,
.qfs170l .tm5hq6sl > .nrxlhhd { display: flow-root; }

@media (max-width: 640px) {
  .mwlg98ed .p3iqa8m9,
  .jmacj .p3iqa8m9,
  .qfs170l .p3iqa8m9 { float: none; width: 100%; margin: 0 0 16px 0; }
}

/* ── content_width: ширина контентного контейнера ───────────────────────────*/
/* default = 1000px (задано в .jdun, .tm5hq6sl, .irlqmmy) */
.dfp6mw .jdun,
.dfp6mw .tm5hq6sl,
.dfp6mw .irlqmmy  { max-width: 900px; }
.vmyrzx .jdun,
.vmyrzx .tm5hq6sl,
.vmyrzx .irlqmmy  { max-width: 1200px; }
.hdlgci .jdun,
.hdlgci .tm5hq6sl,
.hdlgci .irlqmmy  { max-width: 1440px; }

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

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

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

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

/* content-width: above — обидва класи на <body>, тому без пробілу */
.dfp6mw.xxq325 .rxbvsqsb { max-width: 900px; }
.vmyrzx.xxq325 .rxbvsqsb { max-width: 1200px; }
.hdlgci.xxq325 .rxbvsqsb { max-width: 1440px; }
/* float — bc-float-wrap окремий елемент, тому з пробілом */
.dfp6mw .juq5n { max-width: 900px; }
.vmyrzx .juq5n { max-width: 1200px; }
.hdlgci .juq5n { max-width: 1440px; }

/* ── section_gap: відстань між секціями (padding на .tghe) ───────────*/
.i1vjzu .tghe { padding-top: 28px; padding-bottom: 28px; }
.b0xq2p .tghe { padding-top: 40px; padding-bottom: 40px; }
/* gap-md = base (52px) — без override */
.nb10 .tghe { padding-top: 68px; padding-bottom: 68px; }
.lc5g .tghe { padding-top: 88px; padding-bottom: 88px; }

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

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

/* ── font_weight: жирність тексту ────────────────────────────────────────────*/
/* fw-300: тонкий */
.l04iv { font-weight: 300; }
.l04iv h2.a6nmm { font-weight: 600; }
.l04iv h3.p5ziz38     { font-weight: 600; }
/* fw-400: default — без override */
/* fw-500: medium */
.z1n5yi03 { font-weight: 500; }
.z1n5yi03 h2.a6nmm { font-weight: 800; }
.z1n5yi03 h3.p5ziz38     { font-weight: 700; }
/* fw-600: semibold */
.gsul1 { font-weight: 600; }
.gsul1 h2.a6nmm { font-weight: 900; }
.gsul1 h3.p5ziz38     { font-weight: 800; }
.gsul1 .qd8bdd strong,
.gsul1 .yalyuy,
.gsul1 .m9iclc8w { font-weight: 600; }

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

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

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

/* minimal */
.hhkk .irlqmmy { text-align: center; }
.hhkk .ak3lz { justify-content: center; margin-bottom: 16px; }
.hhkk .i6oc61 { margin-top: 0; }

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

/* mobile footer */
@media (max-width: 640px) {
  .irlqmmy { padding-left: 16px; padding-right: 16px; }
  .njnx .irlqmmy { padding: 20px 16px; }
  .ak3lz { gap: 4px 12px; }
  .i6oc61 { font-size: 0.78rem; }
}


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


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

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

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

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

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

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

/* dark: завжди темний, незалежно від теми */
.jnjod .vptvu      { background: #0d1117; border-bottom-color: #21262d; }
.jnjod .xftit9 { color: var(--accent-light); }
.jnjod .jn63 a { color: #8b949e; }
.jnjod .jn63 a:hover { color: var(--accent-light); }
.jnjod .wndqst1 { color: #8b949e; }
.jnjod .ia6r { background: #0d1117; border-top-color: #21262d; }
.jnjod .i6oc61,
.jnjod .yxpi { color: #6e7681; }
.jnjod .hmrqd a, .jnjod .ak3lz a,
.jnjod .rm7h2 a, .jnjod .r22os a,
.jnjod .fv17 a, .jnjod .csgxk { color: #8b949e; }
.jnjod .hmrqd a:hover, .jnjod .ak3lz a:hover,
.jnjod .rm7h2 a:hover, .jnjod .r22os a:hover { color: var(--accent-light); }
@media (max-width: 640px) {
  .jnjod .jn63 { background: #0d1117; border-top-color: #21262d; }
  .jnjod .jn63 li a { border-bottom-color: #21262d; }
}

/* light: завжди світлий */
.ghyuvo .vptvu      { background: #f0f4f8; border-bottom-color: #cbd5e1; }
.ghyuvo .xftit9 { color: var(--accent); }
.ghyuvo .jn63 a { color: #475569; }
.ghyuvo .jn63 a:hover { color: var(--accent); }
.ghyuvo .wndqst1 { color: #64748b; }
.ghyuvo .ia6r { background: #f0f4f8; border-top-color: #cbd5e1; }
.ghyuvo .i6oc61,
.ghyuvo .yxpi { color: #64748b; }
.ghyuvo .hmrqd a, .ghyuvo .ak3lz a,
.ghyuvo .rm7h2 a, .ghyuvo .r22os a,
.ghyuvo .fv17 a, .ghyuvo .csgxk { color: #374151; }
.ghyuvo .hmrqd a:hover, .ghyuvo .ak3lz a:hover,
.ghyuvo .rm7h2 a:hover, .ghyuvo .r22os a:hover { color: var(--accent); }
@media (max-width: 640px) {
  .ghyuvo .jn63 { background: #f0f4f8; border-top-color: #cbd5e1; }
  .ghyuvo .jn63 li a { border-bottom-color: #cbd5e1; color: #475569; }
}

/* accent: кольоровий акцентний фон */
.zheyio67 .vptvu      { background: var(--accent); border-bottom-color: var(--accent-light); }
.zheyio67 .xftit9 { color: #fff; }
.zheyio67 .jn63 a { color: rgba(255,255,255,0.82); }
.zheyio67 .jn63 a:hover { color: #fff; }
.zheyio67 .wndqst1 { color: rgba(255,255,255,0.9); }
.zheyio67 .ia6r { background: var(--accent); border-top-color: var(--accent-light); }
.zheyio67 .i6oc61,
.zheyio67 .yxpi { color: rgba(255,255,255,0.72); }
.zheyio67 .hmrqd a, .zheyio67 .ak3lz a,
.zheyio67 .rm7h2 a, .zheyio67 .r22os a,
.zheyio67 .fv17 a, .zheyio67 .csgxk { color: rgba(255,255,255,0.82); }
.zheyio67 .hmrqd a:hover, .zheyio67 .ak3lz a:hover,
.zheyio67 .rm7h2 a:hover, .zheyio67 .r22os a:hover { color: #fff; }
@media (max-width: 640px) {
  .zheyio67 .jn63 { background: var(--accent); border-top-color: var(--accent-light); }
  .zheyio67 .jn63 li a { border-bottom-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.82); }
}

/* glass: напівпрозорий з blur */
.kivj8swn .vptvu {
  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);
}
.kivj8swn .ia6r {
  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) {
  .kivj8swn .jn63 {
    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 */
.mr0e27 .zbgj { min-height: 52px; height: auto; padding-top: 6px; padding-bottom: 6px; }
.emb8 .zbgj { min-height: 58px; height: auto; padding-top: 8px; padding-bottom: 8px; }
.z2ky2tj .zbgj { min-height: 72px; height: auto; }
.bf81 .zbgj { min-height: 84px; height: auto; }

/* ── nav_width: ширина контейнера ────────────────────────────────────────────*/
/* content = default (max-width: 1000px) — без override */
.njnx .zbgj { max-width: none; padding: 0 32px; }
.njnx .irlqmmy  { max-width: none; padding: 24px 32px; }
/* navbar-inner expands with content when nav-w-content (never narrower than 1000px default) */
.nvm46vm0.vmyrzx .zbgj { max-width: 1200px; }
.nvm46vm0.hdlgci .zbgj { max-width: 1440px; }

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


/* ── nav_logo_shape: форма логотипа ─────────────────────────────────────────*/
/* sq = default */
.bw65 .vyuai6j { border-radius: 50%; overflow: hidden; }
.bw65 .qe6rv  { border-radius: 50%; }

/* ── nav_logo_bg: фон на wrap-блоці (не на img) ─────────────────────────────*/
/* none = без фону (default) */
.vyuai6j, .p7goc2 {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nbqy .vyuai6j,
.nbqy .p7goc2 { background: var(--accent); border-radius: 8px; padding: 4px; }
.mtx0y .vyuai6j,
.mtx0y .p7goc2 { background: linear-gradient(135deg, var(--grad-start), var(--grad-end)); border-radius: 8px; padding: 4px; }
.tmbuc .vyuai6j,
.tmbuc .p7goc2 { background: var(--accent); border-radius: 999px; padding: 4px 8px; }
.evte14v .vyuai6j,
.evte14v .p7goc2 { background: linear-gradient(135deg, var(--grad-start), var(--grad-end)); border-radius: 999px; padding: 4px 8px; }
.qcssz .vyuai6j,
.qcssz .p7goc2 { background: var(--accent); border-radius: 50%; padding: 6px; }
.t3d8whx7 .vyuai6j,
.t3d8whx7 .p7goc2 { background: linear-gradient(135deg, var(--grad-start), var(--grad-end)); border-radius: 50%; padding: 6px; }

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

/* ── nav_menu_sep: розділювач між пунктами на desktop ───────────────────────*/
/* none = без розділювача */
.jd8jgi0     .jn63 > li + li::before,
.b97d    .jn63 > li + li::before,
.w40q33    .jn63 > li + li::before,
.kvi4 .jn63 > li + li::before,
.w53an .jn63 > li + li::before,
.t9eqtm9  .jn63 > li + li::before,
.mbqvoypk    .jn63 > li + li::before {
  margin-right: 10px; opacity: 0.4; color: currentColor;
}
.jd8jgi0     .jn63 > li + li::before { content: "·"; font-size: 1.4em; line-height: 1; vertical-align: middle; }
.b97d    .jn63 > li + li::before { content: "|"; opacity: 0.3; }
.w40q33    .jn63 > li + li::before { content: "—"; opacity: 0.35; }
.kvi4 .jn63 > li + li::before { content: "◆"; font-size: 0.45em; vertical-align: middle; }
.w53an .jn63 > li + li::before { content: "›"; font-size: 1.3em; line-height: 1; opacity: 0.5; }
.t9eqtm9  .jn63 > li + li::before { content: "•"; font-size: 0.8em; vertical-align: middle; }
.mbqvoypk    .jn63 > li + li::before { content: "✦"; font-size: 0.55em; vertical-align: middle; opacity: 0.5; }

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

  /* ховаємо ☰ символ і центруємо кнопку */
  .yd43r .wndqst1,
  .flgrni56 .wndqst1,
  .kl08ph48 .wndqst1,
  .ju5nq .wndqst1,
  .t42i5 .wndqst1 {
    font-size: 0 !important;
    display: flex !important;
    align-items: center; justify-content: center;
    padding: 0; width: 40px;
  }

  /* базовий ::before */
  .yd43r .wndqst1::before,
  .flgrni56 .wndqst1::before,
  .kl08ph48 .wndqst1::before,
  .ju5nq .wndqst1::before,
  .t42i5 .wndqst1::before { content: ""; display: block; flex-shrink: 0; }

  /* 2 лінії: повна + 68% */
  .yd43r .wndqst1::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 лінії рівні */
  .flgrni56 .wndqst1::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% */
  .kl08ph48 .wndqst1::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% */
  .ju5nq .wndqst1::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% */
  .t42i5 .wndqst1::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) {
  .to9jf .wndqst1 {
    padding: 5px 14px; border-radius: 999px;
    border: 1.5px solid var(--border); background: var(--bg-card);
  }
  .to9jf .jn63 {
    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;
  }
  .to9jf .jn63 li a {
    border-bottom: none; padding: 10px 22px;
  }
  .to9jf .jn63 li a:hover { background: var(--bg-raised); }
}

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

/* sheet: з'їжджає знизу ────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .asysss4 .wndqst1 {
    width: 38px; height: 38px; padding: 0;
    border-radius: 50%; border: 1.5px solid var(--border);
    background: var(--bg-card); font-size: 1.2rem;
  }
  .asysss4 .jn63 {
    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);
  }
  .asysss4 .jn63::before {
    content: ""; display: block;
    width: 40px; height: 4px;
    background: var(--border); border-radius: 2px;
    margin: 0 auto 14px;
  }
  .asysss4 .jn63.mrfq0 { transform: translateY(0); }
  .asysss4 .jn63 li a {
    text-align: center; border-bottom: none; padding: 13px 28px; font-size: 1rem;
  }
}

/* overlay: повноекранне меню ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .fkrq7 .wndqst1 {
    padding: 6px 12px; border-radius: 8px;
    background: var(--accent); color: #fff; border: none; font-size: 1.2rem;
  }
  .fkrq7 .jn63 {
    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;
  }
  .fkrq7 .jn63.mrfq0 { opacity: 1; pointer-events: auto; }
  .fkrq7 .jn63 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) {
  .hiep1     .wndqst1 { border-radius: 0 !important; }
  .pw2l1   .wndqst1 { border-radius: 8px !important; }
  .b7rddgb0 .wndqst1 { border-radius: 50% !important; }
  .ju4j6kb   .wndqst1 { border-radius: 999px !important; }
}

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

/* ── star_style: вигляд зірок (showcase + review) ───────────────────────────*/
/* default = accent color (задано в базових стилях .q6qgdb / .o2dgxme2) */
.v2oj    .q6qgdb, .v2oj    .o2dgxme2 { color: #f59e0b; }
.xnqfeh6c      .q6qgdb { font-size: 1rem; letter-spacing: 1.5px; }
.xnqfeh6c      .o2dgxme2   { font-size: 1.35rem; }
.f5gr    .q6qgdb, .f5gr    .o2dgxme2 { color: var(--text-muted); opacity: 0.7; letter-spacing: 2px; }
.pvcc5     .q6qgdb, .pvcc5     .o2dgxme2 { color: var(--accent); letter-spacing: 3px; font-size: 0.7rem; }
.mjbh .q6qgdb, .mjbh .o2dgxme2 { color: var(--accent); letter-spacing: 2px; }
.v3efyz9   .q6qgdb, .v3efyz9   .o2dgxme2 { color: #e91e63; letter-spacing: 2px; }
.yhx9uyh  .q6qgdb, .yhx9uyh  .o2dgxme2 { color: var(--accent); letter-spacing: 2px; font-size: 0.65rem; }
.ok2p2xmj     .q6qgdb, .ok2p2xmj     .o2dgxme2 { color: var(--accent); letter-spacing: 2px; font-size: 0.7rem; }

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

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

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

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

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

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

/* corner: маленький #1/#2 у правому верхньому куті */
.n5039o2c .uaud { counter-reset: cs-rank; }
.n5039o2c .xfabl { position: relative; counter-increment: cs-rank; }
.n5039o2c .xfabl::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-колонка рядка */
.noqc15f .uaud { counter-reset: cs-rank; }
.noqc15f .xfabl::before {
  counter-increment: cs-rank;
  content: counter(cs-rank);
  font-size: 2rem; font-weight: 900;
  color: var(--accent); opacity: 0.2;
  min-width: 32px; text-align: center;
  align-self: center; flex-shrink: 0;
  font-variant-numeric: tabular-nums; line-height: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/* ── color scheme ── */
:root {
  --accent:          #c4a0c5;
  --accent-light:    #e1bae1;
  --accent-pale:     #f8d0f8;
  --grad-start:      #553857;
  --grad-end:        #937194;
  --bg-page: #110d11;
  --bg-surface: #110d11;
  --bg-card: #171217;
  --bg-card-inner: #1e181d;
  --bg-raised: #241d24;
  --bg-hover: #2b232b;
  --border: #4e454d;
  --border-alt: #7d727b;
  --border-section: #4e454d;
  --text-primary: #f0e1ec;
  --text-muted: #b4a7b1;
  --text-body: #cdc4c9;
  --text-sub: #a49ca1;
  --text-faint: #6f696d;
  --text-dim: #575155;
  --text-label: #898287;
  --text-value: #bfb6bc;
  --accent-bg:       #422745;
  --accent-bg-light: #4e3150;
  --bg-tip:        #1a2e1a;
  --bg-warning:    #2d1f0e;
  --bg-info:       #1a1f2e;
  --bg-pros:       #1a2e1a;
  --bg-cons:       #2d1a1a;
  --c-pros:        #6ee7b7;
  --c-cons:        #fca5a5;
  --c-pros-label:  #34d399;
  --c-tip-border:  #34d399;
  --c-warn-border: #f59e0b;
  --c-stars:       #f59e0b;
  --c-arrow:       #f59e0b;
  --c-tag-pay:     #6ee7b7;
}

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

.ot40me7u .be9n9665 li::before, .ot40me7u .env8rs6y li::before {  font-family: "Font Awesome 6 Free"; font-weight: 900; margin-right: 5px;  font-size: 0.85em; line-height: 1; vertical-align: 0.05em; }.ot40me7u .be9n9665 li::before { content: ""; }.ot40me7u .env8rs6y li::before { content: ""; }.ot40me7u .bqk69n8::before, .ot40me7u .brd8gv::before {  font-family: "Font Awesome 6 Free"; font-weight: 900;  font-size: 0.85em; margin-right: 5px; line-height: 1; }.ot40me7u .bqk69n8::before { content: ""; }.ot40me7u .brd8gv::before { content: ""; }

.ewf791u .nhx6k0y1, .ewf791u .p3hx21i7 { min-height: 520px; }

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