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

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

.hp9v2y {
  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) {
  .hp9v2y { display: block; }
  .r491p4p1 {
    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;
  }
  .r491p4p1.wnyneaa { display: flex; }
  .r491p4p1 li a {
    display: block; padding: 11px 24px; font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
  }
  .r491p4p1 li:last-child a { border-bottom: none; }
}

/* ── Hero: спільні стилі ─────────────────────────────────────────────────────*/
.s1hrxs { min-height: 480px; }
.xd6rdtn {
  font-size: 2.6rem; font-weight: 900; color: var(--accent-pale);
  line-height: 1.2; margin-bottom: 16px;
}
.tcc5mmc { font-size: 1.15rem; margin-bottom: 28px; }
.iyk5 {
  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);
}
.iyk5:hover { opacity: 0.9; transform: translateY(-2px); }

/* ── Hero: BG layout (картинка — повноширокий фон) ───────────────────────────*/
.d6k7w7z {
  position: relative; display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center;
  background-color: var(--bg-surface);
}
.izno {
  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) */
.d6k7w7z .qj08d {
  position: relative; z-index: 1;
  width: 100%; max-width: 1000px; padding: 48px 24px;
}
.d6k7w7z .xd6rdtn { text-shadow: 0 2px 12px rgba(0,0,0,0.6); }
.d6k7w7z .tcc5mmc { color: #e2e8f0; text-shadow: 0 1px 6px rgba(0,0,0,0.5); }

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

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

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

/* Split alignment — всередині text-колонки */
.zwiq66.tu8me9v .s2uiko43 { align-items: center; text-align: center; }
.zwiq66.l6rlag   .s2uiko43 { align-items: flex-start; text-align: left; }

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

.x1ja7 .y5e76jo,
.lfc5 .y5e76jo,
.eaoba .y5e76jo {
  display: flex; align-items: center; justify-content: center;
  padding: 32px 32px 32px 0; overflow: hidden;
}
.x1ja7 .lvevq,
.lfc5 .lvevq,
.eaoba .lvevq {
  position: static; flex-shrink: 0;
  width: min(380px, 100%); height: auto; aspect-ratio: 1/1; object-fit: cover;
}
.x1ja7 .wu6jpxa0,
.lfc5 .wu6jpxa0,
.eaoba .wu6jpxa0 {
  position: static; width: min(380px, 100%); aspect-ratio: 1/1;
}

/* split-circle */
.x1ja7 .lvevq {
  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);
}
.x1ja7 .wu6jpxa0 { border-radius: 50%; }

/* split-square */
.lfc5 .lvevq {
  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);
}
.lfc5 .wu6jpxa0 { border-radius: 16px; }

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

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

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

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

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

/* інвертувати внутрішній padding media-блока */
.x1ja7.zsa6 .y5e76jo,
.lfc5.zsa6  .y5e76jo,
.eaoba.zsa6 .y5e76jo { padding: 32px 0 32px 32px; }

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

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

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

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

/* rounded */
.pvq4 .nm24j        { border-radius: 16px; }
.pvq4 .lanf  { border-radius: 16px; }

/* shadow */
.gz5efgrx .nm24j         { box-shadow: 0 4px 14px rgba(0,0,0,0.18); border-radius: 8px; }
.gz5efgrx .lanf   { border-radius: 8px; }

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

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

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

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

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

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

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

.l672fox .sxka:nth-child(even) .mznxk .gwq7:nth-child(odd),
.w5stdufj .sxka:nth-child(even) .mznxk .gwq7:nth-child(odd)  { background: var(--bg-card); }
.l672fox .sxka:nth-child(even) .mznxk .gwq7:nth-child(even),
.w5stdufj .sxka:nth-child(even) .mznxk .gwq7:nth-child(even) { background: var(--bg-card-inner); }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* plain: простий текст */
.j4vwi28 .m0m7wjy,
.j4vwi28 .fsxzu,
.j4vwi28 .h2xd,
.j4vwi28 .q2qec { font-style: normal; color: var(--text-body); }

/* dash: ліва вертикальна чорточка */
.n8nr .m0m7wjy,
.n8nr .fsxzu {
  font-style: italic;
  border-left: 3px solid var(--border-section); padding-left: 12px;
}
.n8nr .h2xd,
.n8nr .q2qec {
  font-style: italic;
  border-left: 2px solid var(--border); padding-left: 10px;
}

/* bg: підкладка з фоном */
.stve7a .m0m7wjy,
.stve7a .fsxzu,
.stve7a .h2xd,
.stve7a .q2qec {
  font-style: normal;
  background: var(--bg-raised); border-radius: 6px;
  padding: 10px 14px; color: var(--text-sub);
}

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

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

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

.o745    .zszibm li, .o745    .we1cf13 li,
.gyi73ci .zszibm li, .gyi73ci .we1cf13 li,
.ao5pio .zszibm li, .ao5pio .we1cf13 li,
.aavf9   .zszibm li, .aavf9   .we1cf13 li {
  list-style: none; display: flex; align-items: baseline; gap: 0.55em;
}

.o745    .zszibm li::before, .o745    .we1cf13 li::before { content: "●"; color: var(--accent); flex-shrink: 0; }
.gyi73ci .zszibm li::before, .gyi73ci .we1cf13 li::before { content: "■"; color: var(--accent); flex-shrink: 0; }
.ao5pio .zszibm li::before, .ao5pio .we1cf13 li::before { content: "◆"; color: var(--accent); flex-shrink: 0; font-size: 0.75em; }
.aavf9   .zszibm li::before, .aavf9   .we1cf13 li::before { content: "★"; color: var(--accent); flex-shrink: 0; }

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

/* pill = solid but very rounded */
.b1l0 .iyk5 { border-radius: 50px; }
.b1l0 .zm9f  { border-radius: 50px; }

/* ── btn_fill: gradient (всі стилі кнопок) ───────────────────────────────────*/
.wqxkv8 .iyk5 {
  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);
}
.wqxkv8 .zm9f {
  background: linear-gradient(90deg, var(--grad-start), var(--accent)) !important;
  border-color: transparent !important;
  color: #fff !important;
}

/* ── btn_icon: SVG-іконки на .iyk5 і .zm9f (mask на currentColor) ──────*/
/* ::after — усі іконки після тексту (праворуч) */
.idfm2   .iyk5::after, .idfm2   .zm9f::after,
.dp781b .iyk5::after, .dp781b .zm9f::after,
.fz6njl    .iyk5::after, .fz6njl    .zm9f::after,
.hkyn3e    .iyk5::after, .hkyn3e    .zm9f::after,
.ctipmihs    .iyk5::after, .ctipmihs    .zm9f::after,
.d5uduna     .iyk5::after, .d5uduna     .zm9f::after,
.pbq4    .iyk5::after, .pbq4    .zm9f::after,
.tb9w5nf   .iyk5::after, .tb9w5nf   .zm9f::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 — кожна іконка */
.idfm2 .iyk5::after, .idfm2 .zm9f::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");
}
.dp781b .iyk5::after, .dp781b .zm9f::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");
}
.fz6njl .iyk5::after, .fz6njl .zm9f::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");
}
.hkyn3e .iyk5::after, .hkyn3e .zm9f::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");
}
.ctipmihs .iyk5::after, .ctipmihs .zm9f::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");
}
.d5uduna .iyk5::after, .d5uduna .zm9f::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");
}
.pbq4 .iyk5::after, .pbq4 .zm9f::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");
}
.tb9w5nf .iyk5::after, .tb9w5nf .zm9f::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 ────────*/
.ry3qf6m   .hkvq2::after, .ry3qf6m   .ot290l::after,
.udq6 .hkvq2::after, .udq6 .ot290l::after,
.n8t3j    .hkvq2::after, .n8t3j    .ot290l::after,
.nwg4w    .hkvq2::after, .nwg4w    .ot290l::after,
.p4ig5ida    .hkvq2::after, .p4ig5ida    .ot290l::after,
.cx629     .hkvq2::after, .cx629     .ot290l::after,
.rqp4    .hkvq2::after, .rqp4    .ot290l::after,
.yqtj   .hkvq2::after, .yqtj   .ot290l::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;
}
.ry3qf6m .hkvq2::after, .ry3qf6m .ot290l::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");
}
.udq6 .hkvq2::after, .udq6 .ot290l::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");
}
.n8t3j .hkvq2::after, .n8t3j .ot290l::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");
}
.nwg4w .hkvq2::after, .nwg4w .ot290l::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");
}
.p4ig5ida .hkvq2::after, .p4ig5ida .ot290l::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");
}
.cx629 .hkvq2::after, .cx629 .ot290l::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");
}
.rqp4 .hkvq2::after, .rqp4 .ot290l::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");
}
.yqtj .hkvq2::after, .yqtj .ot290l::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 ─────────────────────────────────────────────────────────*/
.l71391 { display: flex; flex-direction: column; gap: 6px; margin: 28px 0; }


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

/* ── Casino reviews ──────────────────────────────────────────────────────────*/
.dnki {
  background: var(--bg-card);
  border-radius: 12px; margin: 24px 0; overflow: hidden;
  border: 1px solid var(--border-alt);
}
.gtua {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 24px; background: var(--bg-surface);
}
.vn5u {
  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;
}
.vn5u img { max-width: 80px; max-height: 50px; object-fit: contain; }
.p441cay { color: var(--accent); font-weight: 700; font-size: 0.85rem; text-align: center; }
.tav2h { flex: 1; }
.tav2h h3 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 4px; }
.yw4wzr { color: var(--c-stars); font-size: 1.1rem; }
.rp8v { margin-bottom: 8px; }
.ossf9 { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 0.83rem; color: var(--text-muted); }
.c3ear6yl::before   { content: "★ "; color: var(--accent); }
.het8pw::before { content: "↓ "; color: var(--accent); }
.wkiq::before { content: "✦ "; color: var(--accent); }
.ze6g5 { flex-shrink: 0; }
.fq4r img.se5y { width: 100%; max-height: 240px; object-fit: cover; display: block; }
.kn9qxiy { padding: 20px 24px; }
.odf5rv { color: var(--text-muted); margin-bottom: 16px; }
.s5sxzq { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 14px; }
.l8y7, .qern { list-style: none; font-size: 0.9rem; }
.l8y7 li { color: var(--c-pros); margin-bottom: 4px; }
.qern li { color: var(--c-cons); margin-bottom: 4px; }
/* CSS маркери для pros/cons замість символів в HTML */
.l8y7 li::before { content: "✓"; margin-right: 5px; }
.qern li::before { content: "✗"; margin-right: 5px; }
.uuh39q .l8y7 li::before { content: "→"; }
.uuh39q .qern li::before { content: "–"; }
.agsh2  .l8y7 li::before { content: "★"; }
.agsh2  .qern li::before { content: "✕"; }
.v055    .l8y7 li::before { content: "◆"; }
.v055    .qern li::before { content: "▲"; }
.xg8cghyg  .l8y7 li::before { content: "▶"; }
.xg8cghyg  .qern li::before { content: "■"; }
.yaz9hhd { margin-bottom: 8px; font-size: 0.85rem; color: var(--text-muted); }
.zjfwf2b { background: var(--accent-bg); color: var(--accent-light); border-radius: 4px; padding: 2px 8px; margin: 2px 2px 2px 0; display: inline-block; }
.v21oka { background: var(--bg-pros); color: var(--c-tag-pay); }

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


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

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

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

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

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

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

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

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

/* ranked: accent-pill значення + uppercase лейбли (нумерація — через cs_rank) */
.zov4 .drkg4y {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted);
}
.zov4 .hac5s {
  color: var(--accent); font-weight: 700;
  background: var(--accent-bg); border-radius: 100px;
  padding: 1px 9px; font-size: 0.8rem;
}
.zov4 .z5xmyu { color: var(--accent); }
.zov4 .gtua { background: var(--accent-bg); }
.zov4 .c3ear6yl, .zov4 .het8pw, .zov4 .wkiq {
  background: var(--bg-card); border-radius: 100px; padding: 1px 10px;
  border: 1px solid var(--border);
}

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

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

/* compact: менші відступи всюди */
.gxf8tis .w6i7k { padding: 6px 10px; gap: 6px; }
.gxf8tis .a88b6f8x { height: 32px; min-width: 52px; }
.gxf8tis .v12w5 { max-height: 24px; }
.gxf8tis .xn5b { font-size: 0.82rem; }
.gxf8tis .gtua { padding: 14px 18px; gap: 14px; }
.gxf8tis .kn9qxiy { padding: 14px 18px; }
.gxf8tis .vn5u { width: 70px; }
.gxf8tis .tav2h h3 { font-size: 1.05rem; }

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

/* bordered: таблиця з усіма рамками */
.a4pxdob .l71391 {
  gap: 0; border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.a4pxdob .w6i7k {
  border-radius: 0; border: none;
  border-bottom: 1px solid var(--border); gap: 0;
}
.a4pxdob .w6i7k:last-child { border-bottom: none; }
/* вертикальні межі між колонками */
.a4pxdob .z5xmyu,
.a4pxdob .f10s7lj,
.a4pxdob .med98,
.a4pxdob .p9m1,
.a4pxdob .w1zck4,
.a4pxdob .gwxqgto { border-left: 1px solid var(--border); padding-left: 10px; }
.a4pxdob .xn5b { padding: 0 10px; }

/* ── cs_cols: feature — бонус-колонка виділена як головна ──────────────────*/
.y463 .f10s7lj { flex: 1.8; }
.y463 .f10s7lj .hac5s {
  font-size: 0.95rem; font-weight: 800; color: var(--accent);
}
.y463 .f10s7lj .drkg4y { font-weight: 700; color: var(--text-primary); }
.y463 .med98,
.y463 .p9m1,
.y463 .w1zck4 { flex: 0.75; opacity: 0.65; }

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

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

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

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

/* score в оглядах — ховаємо зірки */
.y556s5 .rp8v .yw4wzr,
.beom .rp8v .yw4wzr,
.vzpgg3 .rp8v .yw4wzr { display: none; }

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

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

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

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

/* ── Sections ────────────────────────────────────────────────────────────────*/
.sxka { margin-bottom: 0; }
.ekm4trr h2.xbhug { color: var(--accent-light); border-color: var(--accent); }
.gm1y h2.xbhug { color: var(--accent-light); border-color: var(--accent); }

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

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

/* vivid: смарагд / рожевий / фіолетовий */
.ogdqqx .o1m9qs     { background: #052e16; border-color: #10b981; }
.ogdqqx .zr8z { background: #2d0a1e; border-color: #f43f5e; }
.ogdqqx .hwanf    { background: #1e1036; border-color: #a855f7; }
.ogdqqx .enr6i6 strong  { color: #f1f5f9; }
.ogdqqx .enr6i6 p       { color: #cbd5e1; }
.ogdqqx .ltwjqq    .o1m9qs     .bm4h3::before,
.ogdqqx .jfkxqnmt  .o1m9qs     .bm4h3::before,
.ogdqqx .bfu9  .o1m9qs     .bm4h3::before,
.ogdqqx .te4e .o1m9qs     .bm4h3::before { color: #10b981; }
.ogdqqx .ltwjqq    .zr8z .bm4h3::before,
.ogdqqx .jfkxqnmt  .zr8z .bm4h3::before,
.ogdqqx .bfu9  .zr8z .bm4h3::before,
.ogdqqx .te4e .zr8z .bm4h3::before { color: #f43f5e; }
.ogdqqx .ltwjqq    .hwanf    .bm4h3::before,
.ogdqqx .jfkxqnmt  .hwanf    .bm4h3::before,
.ogdqqx .bfu9  .hwanf    .bm4h3::before,
.ogdqqx .te4e .hwanf    .bm4h3::before { color: #a855f7; }

/* warm: жовтий / червоний / помаранчевий */
.sb4u5 .o1m9qs     { background: #2d2000; border-color: #eab308; }
.sb4u5 .zr8z { background: #2d0b0b; border-color: #ef4444; }
.sb4u5 .hwanf    { background: #2d1600; border-color: #f97316; }
.sb4u5 .enr6i6 strong  { color: #f1f5f9; }
.sb4u5 .enr6i6 p       { color: #cbd5e1; }
.sb4u5 .ltwjqq    .o1m9qs     .bm4h3::before,
.sb4u5 .jfkxqnmt  .o1m9qs     .bm4h3::before,
.sb4u5 .bfu9  .o1m9qs     .bm4h3::before,
.sb4u5 .te4e .o1m9qs     .bm4h3::before { color: #eab308; }
.sb4u5 .ltwjqq    .zr8z .bm4h3::before,
.sb4u5 .jfkxqnmt  .zr8z .bm4h3::before,
.sb4u5 .bfu9  .zr8z .bm4h3::before,
.sb4u5 .te4e .zr8z .bm4h3::before { color: #ef4444; }
.sb4u5 .ltwjqq    .hwanf    .bm4h3::before,
.sb4u5 .jfkxqnmt  .hwanf    .bm4h3::before,
.sb4u5 .bfu9  .hwanf    .bm4h3::before,
.sb4u5 .te4e .hwanf    .bm4h3::before { color: #f97316; }

/* cool: блакитний / індиго / бірюзовий */
.hcp3b .o1m9qs     { background: #0c1a2e; border-color: #38bdf8; }
.hcp3b .zr8z { background: #12103a; border-color: #818cf8; }
.hcp3b .hwanf    { background: #0a2020; border-color: #2dd4bf; }
.hcp3b .enr6i6 strong  { color: #f1f5f9; }
.hcp3b .enr6i6 p       { color: #cbd5e1; }
.hcp3b .ltwjqq    .o1m9qs     .bm4h3::before,
.hcp3b .jfkxqnmt  .o1m9qs     .bm4h3::before,
.hcp3b .bfu9  .o1m9qs     .bm4h3::before,
.hcp3b .te4e .o1m9qs     .bm4h3::before { color: #38bdf8; }
.hcp3b .ltwjqq    .zr8z .bm4h3::before,
.hcp3b .jfkxqnmt  .zr8z .bm4h3::before,
.hcp3b .bfu9  .zr8z .bm4h3::before,
.hcp3b .te4e .zr8z .bm4h3::before { color: #818cf8; }
.hcp3b .ltwjqq    .hwanf    .bm4h3::before,
.hcp3b .jfkxqnmt  .hwanf    .bm4h3::before,
.hcp3b .bfu9  .hwanf    .bm4h3::before,
.hcp3b .te4e .hwanf    .bm4h3::before { color: #2dd4bf; }

/* accent: використовує динамічний акцент */
.jcdvxb .o1m9qs     { background: var(--accent-bg); border-color: var(--accent); }
.jcdvxb .zr8z { background: var(--accent-bg-light); border-color: var(--accent-light); }
.jcdvxb .hwanf    { background: var(--accent-bg); border-color: var(--accent-pale); }
.jcdvxb .ltwjqq    .bm4h3::before,
.jcdvxb .jfkxqnmt  .bm4h3::before,
.jcdvxb .bfu9  .bm4h3::before,
.jcdvxb .te4e .bm4h3::before { color: var(--accent-light) !important; }

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

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

/* classic — фіксовані контрастні кольори незалежно від акценту */
.r0izl9 .x8hlsgm ul li,
.r0izl9 .l8y7 li         { color: #4ade80; }
.r0izl9 .x8hlsgm .ekakhii5 { color: #22c55e; }
.r0izl9 .d0yraoz ul li,
.r0izl9 .qern li         { color: #f87171; }
.r0izl9 .d0yraoz .v08row41 { color: #ef4444; }

/* blue: синій pros / amber cons */
.ylqzoq .x8hlsgm { background: #0c1a2e; }
.ylqzoq .d0yraoz { background: #2d1f00; }
.ylqzoq .x8hlsgm .ekakhii5 { color: #93c5fd; }
.ylqzoq .d0yraoz .v08row41 { color: #fcd34d; }
.ylqzoq .x8hlsgm ul li,
.ylqzoq .l8y7 li            { color: #bfdbfe; }
.ylqzoq .d0yraoz ul li,
.ylqzoq .qern li            { color: #fde68a; }

/* accent: label акцентний, текст завжди читабельний */
.ukm2 .x8hlsgm { background: var(--accent-bg); }
.ukm2 .d0yraoz { background: var(--accent-bg-light); }
.ukm2 .x8hlsgm .ekakhii5 { color: var(--accent-pale); }
.ukm2 .d0yraoz .v08row41 { color: var(--accent-light); }
.ukm2 .x8hlsgm ul li,
.ukm2 .l8y7 li          { color: var(--text-body); }
.ukm2 .d0yraoz ul li,
.ukm2 .qern li          { color: var(--text-body); }

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

/* check: ✓ / ✗ */
.stc4m0fp .ekakhii5::before { content: "✓ "; }
.stc4m0fp .v08row41::before { content: "✗ "; }

/* arrows: → / ← */
.uuh39q .ekakhii5::before { content: "→ "; }
.uuh39q .v08row41::before { content: "← "; }

/* marks: ★ / ✕ */
.agsh2 .ekakhii5::before { content: "★ "; }
.agsh2 .v08row41::before { content: "✕ "; }

/* geo: ◆ / ▲ */
.v055 .ekakhii5::before { content: "◆ "; }
.v055 .v08row41::before { content: "▲ "; }

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

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

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

/* topbar: смуга зверху */
.xk0ii0dg .enr6i6 { border-left: none; border-top: 4px solid; border-radius: 0 0 8px 8px; }
.xk0ii0dg .o1m9qs     { border-top-color: var(--c-tip-border); }
.xk0ii0dg .zr8z { border-top-color: var(--c-warn-border); }
.xk0ii0dg .hwanf    { border-top-color: #60a5fa; }

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

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

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

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

.ltwjqq .bm4h3,
.jfkxqnmt .bm4h3,
.bfu9 .bm4h3,
.te4e .bm4h3 { font-size: 0; width: 1.1rem; flex-shrink: 0; }

.ltwjqq .bm4h3::before,
.jfkxqnmt .bm4h3::before,
.bfu9 .bm4h3::before,
.te4e .bm4h3::before {
  display: block; font-size: 1.15rem; line-height: 1.3; font-style: normal;
}

/* geo: ✦ ▲ ◉ */
.ltwjqq .o1m9qs     .bm4h3::before { content: "✦"; color: var(--c-tip-border); }
.ltwjqq .zr8z .bm4h3::before { content: "▲"; color: var(--c-warn-border); }
.ltwjqq .hwanf    .bm4h3::before { content: "◉"; color: #60a5fa; }

/* marks: ★ ◆ ● */
.jfkxqnmt .o1m9qs     .bm4h3::before { content: "★"; color: var(--c-tip-border); }
.jfkxqnmt .zr8z .bm4h3::before { content: "◆"; color: var(--c-warn-border); }
.jfkxqnmt .hwanf    .bm4h3::before { content: "●"; color: #60a5fa; }

/* sharp: ▶ ■ ▸ */
.bfu9 .o1m9qs     .bm4h3::before { content: "▶"; color: var(--c-tip-border); }
.bfu9 .zr8z .bm4h3::before { content: "■"; color: var(--c-warn-border); }
.bfu9 .hwanf    .bm4h3::before { content: "▸"; color: #60a5fa; }

/* arrows: → ⬥ ◈ */
.te4e .o1m9qs     .bm4h3::before { content: "→"; color: var(--c-tip-border); }
.te4e .zr8z .bm4h3::before { content: "⬥"; color: var(--c-warn-border); }
.te4e .hwanf    .bm4h3::before { content: "◈"; color: #60a5fa; }

/* ── shadow variant ──────────────────────────────────────────────────────────*/
.dz1w9hk .w1k5g .gwq7,
.dz1w9hk .mznxk .gwq7  { box-shadow: 0 2px 8px rgba(0,0,0,0.22); }
.dz1w9hk .go94d                { box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
.dz1w9hk .w6i7k                { box-shadow: 0 4px 12px rgba(0,0,0,0.28); }
.dz1w9hk .dnki            { box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.dz1w9hk .qwrt0mfj          { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }
.dz1w9hk .k36pg                    { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }

/* shadow-none: скидаємо будь-які тіні */
.aahivm8a .w1k5g .gwq7,
.aahivm8a .mznxk .gwq7,
.aahivm8a .go94d,
.aahivm8a .w6i7k,
.aahivm8a .dnki,
.aahivm8a .qwrt0mfj,
.aahivm8a .k36pg,
.aahivm8a .ypad .enr6i6 { box-shadow: none; }

/* ── text_size variants ──────────────────────────────────────────────────────*/
.wrt8r   body, .wrt8r   { font-size: 0.82rem; }
.wrt8r   .fyn8vg, .wrt8r .h2xd, .wrt8r .q2qec,
.wrt8r   .m0m7wjy, .wrt8r .fsxzu { font-size: 0.82rem; }
.wrt8r   .zszibm, .wrt8r .s9je { font-size: 0.82rem; }

.bmejkvx   .fyn8vg, .bmejkvx .h2xd, .bmejkvx .q2qec,
.bmejkvx   .m0m7wjy, .bmejkvx .fsxzu { font-size: 0.9rem; }
.bmejkvx   .zszibm, .bmejkvx .s9je { font-size: 0.9rem; }

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

.d631l   .fyn8vg, .d631l .h2xd, .d631l .q2qec,
.d631l   .m0m7wjy, .d631l .fsxzu { font-size: 1.08rem; }
.d631l   .zszibm, .d631l .s9je { font-size: 1.05rem; }
.d631l   .nwv4 { font-size: 0.97rem; }

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

/* large */
.lo5l8 .xd6rdtn      { font-size: 3.2rem; }
.lo5l8 h2.xbhug { font-size: 1.9rem; }
.lo5l8 h3.qyvfbd     { font-size: 1.4rem; }

/* display */
.xib2w662 .xd6rdtn      { font-size: 3.8rem; }
.xib2w662 h2.xbhug { font-size: 2.2rem; }
.xib2w662 h3.qyvfbd     { font-size: 1.6rem; }

/* giant */
.iunm .xd6rdtn      { font-size: 4.6rem; font-weight: 900; line-height: 1.05; }
.iunm h2.xbhug { font-size: 2.6rem; }
.iunm h3.qyvfbd     { font-size: 1.9rem; }

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

/* Спільна база: abs-позиція на межі між секціями */
.apq830   .sxka + .sxka::before,
.a62gi  .sxka + .sxka::before,
.v7lu   .sxka + .sxka::before,
.ooym3   .sxka + .sxka::before,
.hnai6we   .sxka + .sxka::before,
.xpshya .sxka + .sxka::before {
  position: absolute; top: 0; left: 0; right: 0;
}

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

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

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

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

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

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

/* wave: заповнена хвиля hero-style — ::before виступає вгору з нової секції */
/* фон = колір поточної секції, маска = заповнений низ (як у hero) */
.ll90 .sxka + .sxka::before,
.l5k7 .sxka + .sxka::before,
.jdgqrf .sxka + .sxka::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 */
.l672fox .ll90 .sxka:nth-child(even)::before,
.l672fox .l5k7 .sxka:nth-child(even)::before,
.l672fox .jdgqrf .sxka:nth-child(even)::before { background: var(--bg-surface); }

/* section_bg=stripe: парні секції мають bg-card */
.w5stdufj .ll90 .sxka:nth-child(even)::before,
.w5stdufj .l5k7 .sxka:nth-child(even)::before,
.w5stdufj .jdgqrf .sxka:nth-child(even)::before { background: var(--bg-card); }

/* wave-a: плавна S-хвиля (1 гребінь) */
.ll90 .sxka + .sxka::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 гребені */
.l5k7 .sxka + .sxka::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: глибока дуга */
.jdgqrf .sxka + .sxka::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 у формі хвилі */
.axi66mp5 .d6k7w7z::after,
.jd3qhr .d6k7w7z::after,
.bs1wsi .d6k7w7z::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 гребінь) */
.axi66mp5 .d6k7w7z::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 гребені */
.jd3qhr .d6k7w7z::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: глибока дуга */
.bs1wsi .d6k7w7z::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%, текст обтікає справа */
.z10rpu .nm24j { float: left; width: 38%; margin: 0 28px 16px 0; }
.z10rpu .nm24j .lanf { width: 100%; height: 240px; object-fit: cover; border-radius: 10px; }
.z10rpu .etjy99u::after { content: ''; display: block; clear: both; }

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

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

/* BFC на кожен блок поруч із float: маркери не вилазять на картинку,
   блок не "ріжеться" — або повністю поруч із зображенням, або повністю під ним */
.z10rpu .etjy99u > .xbhug,
.z10rpu .etjy99u > .m0m7wjy,
.z10rpu .etjy99u > .fsxzu,
.z10rpu .etjy99u > .gwq7,
.uigf .etjy99u > .xbhug,
.uigf .etjy99u > .m0m7wjy,
.uigf .etjy99u > .fsxzu,
.uigf .etjy99u > .gwq7,
.q7ucth3 .etjy99u > .xbhug,
.q7ucth3 .etjy99u > .m0m7wjy,
.q7ucth3 .etjy99u > .fsxzu,
.q7ucth3 .etjy99u > .gwq7 { display: flow-root; }

@media (max-width: 640px) {
  .z10rpu .nm24j,
  .uigf .nm24j,
  .q7ucth3 .nm24j { float: none; width: 100%; margin: 0 0 16px 0; }
}

/* ── content_width: ширина контентного контейнера ───────────────────────────*/
/* default = 1000px (задано в .l6zjf, .etjy99u, .wq1bi) */
.i2up2 .l6zjf,
.i2up2 .etjy99u,
.i2up2 .wq1bi  { max-width: 900px; }
.z6q60 .l6zjf,
.z6q60 .etjy99u,
.z6q60 .wq1bi  { max-width: 1200px; }
.ihcqdn1d .l6zjf,
.ihcqdn1d .etjy99u,
.ihcqdn1d .wq1bi  { max-width: 1440px; }

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

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

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

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

/* content-width: above — обидва класи на <body>, тому без пробілу */
.i2up2.bspv2sg0 .a8pqu0 { max-width: 900px; }
.z6q60.bspv2sg0 .a8pqu0 { max-width: 1200px; }
.ihcqdn1d.bspv2sg0 .a8pqu0 { max-width: 1440px; }
/* float — bc-float-wrap окремий елемент, тому з пробілом */
.i2up2 .ns93hx4 { max-width: 900px; }
.z6q60 .ns93hx4 { max-width: 1200px; }
.ihcqdn1d .ns93hx4 { max-width: 1440px; }

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

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

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

/* ── font_weight: жирність тексту ────────────────────────────────────────────*/
/* fw-300: тонкий */
.vu439 { font-weight: 300; }
.vu439 h2.xbhug { font-weight: 600; }
.vu439 h3.qyvfbd     { font-weight: 600; }
/* fw-400: default — без override */
/* fw-500: medium */
.md2g { font-weight: 500; }
.md2g h2.xbhug { font-weight: 800; }
.md2g h3.qyvfbd     { font-weight: 700; }
/* fw-600: semibold */
.pcam0m { font-weight: 600; }
.pcam0m h2.xbhug { font-weight: 900; }
.pcam0m h3.qyvfbd     { font-weight: 800; }
.pcam0m .enr6i6 strong,
.pcam0m .h2xd,
.pcam0m .m0m7wjy { font-weight: 600; }

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

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

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

/* minimal */
.skivbbpv .wq1bi { text-align: center; }
.skivbbpv .eivu { justify-content: center; margin-bottom: 16px; }
.skivbbpv .o25ml5 { margin-top: 0; }

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

/* mobile footer */
@media (max-width: 640px) {
  .wq1bi { padding-left: 16px; padding-right: 16px; }
  .h054of .wq1bi { padding: 20px 16px; }
  .eivu { gap: 4px 12px; }
  .o25ml5 { font-size: 0.78rem; }
}


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


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

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

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

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

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

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

/* dark: завжди темний, незалежно від теми */
.foqtb .z45k15      { background: #0d1117; border-bottom-color: #21262d; }
.foqtb .zqfis2s3 { color: var(--accent-light); }
.foqtb .r491p4p1 a { color: #8b949e; }
.foqtb .r491p4p1 a:hover { color: var(--accent-light); }
.foqtb .hp9v2y { color: #8b949e; }
.foqtb .ni66t9k { background: #0d1117; border-top-color: #21262d; }
.foqtb .o25ml5,
.foqtb .yzciob0 { color: #6e7681; }
.foqtb .ia12si a, .foqtb .eivu a,
.foqtb .ub95f5x a, .foqtb .njba a,
.foqtb .fzuh a, .foqtb .ynxrn57 { color: #8b949e; }
.foqtb .ia12si a:hover, .foqtb .eivu a:hover,
.foqtb .ub95f5x a:hover, .foqtb .njba a:hover { color: var(--accent-light); }
@media (max-width: 640px) {
  .foqtb .r491p4p1 { background: #0d1117; border-top-color: #21262d; }
  .foqtb .r491p4p1 li a { border-bottom-color: #21262d; }
}

/* light: завжди світлий */
.ym0h4c .z45k15      { background: #f0f4f8; border-bottom-color: #cbd5e1; }
.ym0h4c .zqfis2s3 { color: var(--accent); }
.ym0h4c .r491p4p1 a { color: #475569; }
.ym0h4c .r491p4p1 a:hover { color: var(--accent); }
.ym0h4c .hp9v2y { color: #64748b; }
.ym0h4c .ni66t9k { background: #f0f4f8; border-top-color: #cbd5e1; }
.ym0h4c .o25ml5,
.ym0h4c .yzciob0 { color: #64748b; }
.ym0h4c .ia12si a, .ym0h4c .eivu a,
.ym0h4c .ub95f5x a, .ym0h4c .njba a,
.ym0h4c .fzuh a, .ym0h4c .ynxrn57 { color: #374151; }
.ym0h4c .ia12si a:hover, .ym0h4c .eivu a:hover,
.ym0h4c .ub95f5x a:hover, .ym0h4c .njba a:hover { color: var(--accent); }
@media (max-width: 640px) {
  .ym0h4c .r491p4p1 { background: #f0f4f8; border-top-color: #cbd5e1; }
  .ym0h4c .r491p4p1 li a { border-bottom-color: #cbd5e1; color: #475569; }
}

/* accent: кольоровий акцентний фон */
.si92sm .z45k15      { background: var(--accent); border-bottom-color: var(--accent-light); }
.si92sm .zqfis2s3 { color: #fff; }
.si92sm .r491p4p1 a { color: rgba(255,255,255,0.82); }
.si92sm .r491p4p1 a:hover { color: #fff; }
.si92sm .hp9v2y { color: rgba(255,255,255,0.9); }
.si92sm .ni66t9k { background: var(--accent); border-top-color: var(--accent-light); }
.si92sm .o25ml5,
.si92sm .yzciob0 { color: rgba(255,255,255,0.72); }
.si92sm .ia12si a, .si92sm .eivu a,
.si92sm .ub95f5x a, .si92sm .njba a,
.si92sm .fzuh a, .si92sm .ynxrn57 { color: rgba(255,255,255,0.82); }
.si92sm .ia12si a:hover, .si92sm .eivu a:hover,
.si92sm .ub95f5x a:hover, .si92sm .njba a:hover { color: #fff; }
@media (max-width: 640px) {
  .si92sm .r491p4p1 { background: var(--accent); border-top-color: var(--accent-light); }
  .si92sm .r491p4p1 li a { border-bottom-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.82); }
}

/* glass: напівпрозорий з blur */
.ad5ecu .z45k15 {
  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);
}
.ad5ecu .ni66t9k {
  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) {
  .ad5ecu .r491p4p1 {
    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 */
.yupy7 .d844 { min-height: 52px; height: auto; padding-top: 6px; padding-bottom: 6px; }
.xopdic .d844 { min-height: 58px; height: auto; padding-top: 8px; padding-bottom: 8px; }
.pbu3pes0 .d844 { min-height: 72px; height: auto; }
.rrcfyve2 .d844 { min-height: 84px; height: auto; }

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

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


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

/* ── nav_logo_bg: фон на wrap-блоці (не на img) ─────────────────────────────*/
/* none = без фону (default) */
.yqw1p6y8, .mcsw2gtp {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dhfnkz6 .yqw1p6y8,
.dhfnkz6 .mcsw2gtp { background: var(--accent); border-radius: 8px; padding: 4px; }
.g3eyf4 .yqw1p6y8,
.g3eyf4 .mcsw2gtp { background: linear-gradient(135deg, var(--grad-start), var(--grad-end)); border-radius: 8px; padding: 4px; }
.n8sp5550 .yqw1p6y8,
.n8sp5550 .mcsw2gtp { background: var(--accent); border-radius: 999px; padding: 4px 8px; }
.ro9kqwz5 .yqw1p6y8,
.ro9kqwz5 .mcsw2gtp { background: linear-gradient(135deg, var(--grad-start), var(--grad-end)); border-radius: 999px; padding: 4px 8px; }
.ahygg1 .yqw1p6y8,
.ahygg1 .mcsw2gtp { background: var(--accent); border-radius: 50%; padding: 6px; }
.t8lq576q .yqw1p6y8,
.t8lq576q .mcsw2gtp { background: linear-gradient(135deg, var(--grad-start), var(--grad-end)); border-radius: 50%; padding: 6px; }

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

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

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

  /* ховаємо ☰ символ і центруємо кнопку */
  .x8x4hi9b .hp9v2y,
  .n154rgum .hp9v2y,
  .n7edga5 .hp9v2y,
  .q68dc4s .hp9v2y,
  .lu0yx9ok .hp9v2y {
    font-size: 0 !important;
    display: flex !important;
    align-items: center; justify-content: center;
    padding: 0; width: 40px;
  }

  /* базовий ::before */
  .x8x4hi9b .hp9v2y::before,
  .n154rgum .hp9v2y::before,
  .n7edga5 .hp9v2y::before,
  .q68dc4s .hp9v2y::before,
  .lu0yx9ok .hp9v2y::before { content: ""; display: block; flex-shrink: 0; }

  /* 2 лінії: повна + 68% */
  .x8x4hi9b .hp9v2y::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 лінії рівні */
  .n154rgum .hp9v2y::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% */
  .n7edga5 .hp9v2y::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% */
  .q68dc4s .hp9v2y::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% */
  .lu0yx9ok .hp9v2y::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) {
  .tf48i .hp9v2y {
    padding: 5px 14px; border-radius: 999px;
    border: 1.5px solid var(--border); background: var(--bg-card);
  }
  .tf48i .r491p4p1 {
    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;
  }
  .tf48i .r491p4p1 li a {
    border-bottom: none; padding: 10px 22px;
  }
  .tf48i .r491p4p1 li a:hover { background: var(--bg-raised); }
}

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

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

/* overlay: повноекранне меню ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .yh0kic8k .hp9v2y {
    padding: 6px 12px; border-radius: 8px;
    background: var(--accent); color: #fff; border: none; font-size: 1.2rem;
  }
  .yh0kic8k .r491p4p1 {
    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;
  }
  .yh0kic8k .r491p4p1.wnyneaa { opacity: 1; pointer-events: auto; }
  .yh0kic8k .r491p4p1 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) {
  .i1rejwm     .hp9v2y { border-radius: 0 !important; }
  .ych0a   .hp9v2y { border-radius: 8px !important; }
  .wzi07h .hp9v2y { border-radius: 50% !important; }
  .vdu04j   .hp9v2y { border-radius: 999px !important; }
}

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

/* ── star_style: вигляд зірок (showcase + review) ───────────────────────────*/
/* default = accent color (задано в базових стилях .z5xmyu / .yw4wzr) */
.iwtufh14    .z5xmyu, .iwtufh14    .yw4wzr { color: #f59e0b; }
.feyhdh      .z5xmyu { font-size: 1rem; letter-spacing: 1.5px; }
.feyhdh      .yw4wzr   { font-size: 1.35rem; }
.namtj    .z5xmyu, .namtj    .yw4wzr { color: var(--text-muted); opacity: 0.7; letter-spacing: 2px; }
.dfm20b5     .z5xmyu, .dfm20b5     .yw4wzr { color: var(--accent); letter-spacing: 3px; font-size: 0.7rem; }
.vskgj .z5xmyu, .vskgj .yw4wzr { color: var(--accent); letter-spacing: 2px; }
.s0wyuho   .z5xmyu, .s0wyuho   .yw4wzr { color: #e91e63; letter-spacing: 2px; }
.g5f65mce  .z5xmyu, .g5f65mce  .yw4wzr { color: var(--accent); letter-spacing: 2px; font-size: 0.65rem; }
.dop8d9     .z5xmyu, .dop8d9     .yw4wzr { color: var(--accent); letter-spacing: 2px; font-size: 0.7rem; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/* ── color scheme ── */
:root {
  --accent:          #82b5a8;
  --accent-light:    #9dd1c3;
  --accent-pale:     #b3e8da;
  --grad-start:      #154a40;
  --grad-end:        #54857a;
  --bg-page: #0a0f0e;
  --bg-surface: #0a0f0e;
  --bg-card: #0e1513;
  --bg-card-inner: #131b19;
  --bg-raised: #19211f;
  --bg-hover: #1e2825;
  --border: #404a47;
  --border-alt: #6d7874;
  --border-section: #404a47;
  --text-primary: #dde8e3;
  --text-muted: #a2aea9;
  --text-body: #c3c7c5;
  --text-sub: #9a9f9c;
  --text-faint: #676c69;
  --text-dim: #4e5351;
  --text-label: #808582;
  --text-value: #b5bab7;
  --accent-bg:       #00382f;
  --accent-bg-light: #0b433a;
  --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: "Work Sans", sans-serif; }

.ph9gks .l8y7 li::before, .ph9gks .qern 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; }.ph9gks .l8y7 li::before { content: ""; }.ph9gks .qern li::before { content: ""; }.ph9gks .ekakhii5::before, .ph9gks .v08row41::before {  font-family: "Font Awesome 6 Free"; font-weight: 900;  font-size: 0.85em; margin-right: 5px; line-height: 1; }.ph9gks .ekakhii5::before { content: ""; }.ph9gks .v08row41::before { content: ""; }

.lcw6 .s1hrxs, .lcw6 .zwiq66 { min-height: 780px; }

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

.tta8u9vy::before { content: '·'; font-size: 1.3em; line-height: 1; }