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

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

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

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

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

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

/* bg-color: градієнтний фон замість фото */
.ej0p8je {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}
/* hero_anim: shimmer — ледь помітний блиск по поверхні */
.isb24z .ej0p8je,
.isb24z .duvn7f {
  position: relative; overflow: hidden;
}
.isb24z .ej0p8je::after,
.isb24z .duvn7f::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.04) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: hg-shimmer 8s ease-in-out infinite;
}
@keyframes hg-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
/* hero_anim: breathe — ледь помітне дихання opacity */
.sgidmgy .ej0p8je,
.sgidmgy .duvn7f {
  animation: hg-breathe 10s ease-in-out infinite;
}
@keyframes hg-breathe {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.92; }
}
/* hero_anim: grain — ледь помітна зернистість поверх градієнту */
.j2v5no1 .ej0p8je,
.j2v5no1 .duvn7f,
.j2v5no1 .clbc .royfa {
  position: relative; overflow: hidden;
}
.j2v5no1 .ej0p8je::after,
.j2v5no1 .duvn7f::after,
.j2v5no1 .clbc .royfa::after {
  content: ''; position: absolute; inset: -50%; width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035; pointer-events: none;
  animation: hg-grain 0.5s steps(1) infinite;
}
@keyframes hg-grain {
  0%, 100% { transform: translate(0, 0); }
  25%      { transform: translate(-5%, -5%); }
  50%      { transform: translate(5%, 0); }
  75%      { transform: translate(0, 5%); }
}
/* hero_anim: drift — повільне зміщення розмитого blob */
.sve3 .ej0p8je,
.sve3 .duvn7f {
  position: relative; overflow: hidden;
}
.sve3 .ej0p8je::after,
.sve3 .duvn7f::after {
  content: ''; position: absolute;
  width: 60%; height: 120%; top: -10%; left: -10%;
  background: radial-gradient(ellipse, var(--accent-light) 0%, transparent 70%);
  opacity: 0.15; filter: blur(80px); pointer-events: none;
  animation: hg-drift 20s ease-in-out infinite;
}
@keyframes hg-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30%, 10%) scale(1.1); }
  66%      { transform: translate(10%, -10%) scale(0.95); }
}
.sve3 .clbc .royfa {
  position: relative; overflow: hidden;
}
.sve3 .clbc .royfa::after {
  content: ''; position: absolute;
  width: 60%; height: 120%; top: -10%; left: -10%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 70%);
  filter: blur(80px); pointer-events: none;
  animation: hg-drift 20s ease-in-out infinite;
}
/* hero_anim: fade-in — градієнт з'являється при завантаженні */
.oxg9l9 .ej0p8je,
.oxg9l9 .duvn7f,
.oxg9l9 .clbc .royfa {
  animation: hg-fadein 1.2s ease-out both;
}
@keyframes hg-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* hero-bg з фото — overlay анімації */
.isb24z .clbc .royfa {
  position: relative; overflow: hidden;
}
.isb24z .clbc .royfa::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.03) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: hg-shimmer 8s ease-in-out infinite;
}
.sgidmgy .clbc .royfa {
  animation: hg-breathe 10s ease-in-out infinite;
}

.ej0p8je .royfa {
  background: none;
}
.ej0p8je .dzmsd1 { color: #fff; }
.ej0p8je .ejd3 { color: rgba(255,255,255,0.85); }

/* ── Hero anim: split layouts ─────────────────────────────────────────────── */
.isb24z .io7iw { position: relative; overflow: hidden; }
.isb24z .io7iw::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.05) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: hg-shimmer 6s ease-in-out infinite;
}
.sgidmgy .io7iw {
  animation: hg-breathe 7s ease-in-out infinite;
}
.j2v5no1 .io7iw { position: relative; overflow: hidden; }
.j2v5no1 .io7iw::after {
  content: ''; position: absolute; inset: -50%; width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035; pointer-events: none;
  animation: hg-grain 0.5s steps(1) infinite;
}
.sve3 .io7iw { position: relative; overflow: hidden; }
.sve3 .io7iw::after {
  content: ''; position: absolute;
  width: 60%; height: 120%; top: -10%; left: -10%;
  background: radial-gradient(ellipse, var(--accent-light) 0%, transparent 70%);
  opacity: 0.12; filter: blur(80px); pointer-events: none;
  animation: hg-drift 20s ease-in-out infinite;
}
.oxg9l9 .io7iw {
  animation: hg-fadein 1.2s ease-out both;
}


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

/* Split alignment — всередині text-колонки */
.io7iw.nkn259w9 .fbyvz7 { align-items: center; text-align: center; }
.io7iw.zok82t   .fbyvz7 { align-items: flex-start; text-align: left; }

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


/* split-rounded: картинка з rounded corners + тінь, не на весь блок */
.l8zyi19 .loqbbdb {
  display: flex; align-items: center; justify-content: center;
  padding: 32px 32px 32px 0; overflow: visible;
}
.l8zyi19 .u8tp1g {
  position: static; width: 100%; height: auto; aspect-ratio: 4/3;
  object-fit: cover; border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.l8zyi19 .duvn7f {
  position: static; width: 100%; aspect-ratio: 4/3; border-radius: 16px;
}
.l8zyi19.uev2zn .loqbbdb { padding: 32px 0 32px 32px; }

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

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

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

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

/* ── Hero: split-cards ────────────────────────────────────────────────────── */
.qlbj0 .pjok {
  display: flex !important; flex-direction: column; justify-content: center;
  gap: 0; padding: 24px 20px;
  background: rgba(0,0,0,0.78); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-left: 1px solid rgba(255,255,255,0.08);
}
.jktqjr8 {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 22px 20px; text-decoration: none; color: #fff;
  background: rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.jktqjr8:last-child { border-bottom: none; }
.jktqjr8:hover { background: rgba(255,255,255,0.14); }
.q2396 { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1; }
.w9qo4y5 { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.cxti { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.spv3vvwl { font-weight: 700; font-size: 0.95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.l4wq { font-size: 0.82rem; color: rgba(255,255,255,0.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ijpg { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.m0lvw { font-weight: 800; font-size: 1.3rem; color: var(--accent-pale); }
.m0lvw small { font-size: 0.7rem; font-weight: 500; opacity: 0.6; }
.ale703y3 { font-size: 0.8rem; padding: 6px 14px; white-space: nowrap; }

/* ── Hero: cards-top ─────────────────────────────────────────────────────── */
.n6dnbfwe { padding-bottom: 0; }
.n6dnbfwe .yim0v { padding-bottom: 24px; }
.cplfzewb {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  padding: 0 24px 32px; max-width: 960px; margin: 0 auto; width: 100%;
}
.wwlmjoph {
  display: flex; align-items: center; gap: 12px;
  background: rgba(0,0,0,0.45); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 12px 16px;
  flex: 1 1 260px; max-width: 320px;
  text-decoration: none; color: #fff; transition: transform 0.2s, box-shadow 0.2s;
}
.wwlmjoph:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.4); }
.e4od6b { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.vecy5r5 { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.wsktrwpl { font-weight: 700; font-size: 0.9rem; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.b7og1a0 { font-size: 0.8rem; color: rgba(255,255,255,0.75); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mvcyy6jh { font-weight: 800; font-size: 1.3rem; color: var(--accent-pale); flex-shrink: 0; }
.mvcyy6jh small { font-size: 0.7rem; font-weight: 500; opacity: 0.6; }

/* ── Hero: offer-cards ──────────────────────────────────────────────────── */
.xbikb .r5nro2u {
  display: flex !important; flex-direction: column; justify-content: center;
  gap: 6px; padding: 28px 24px;
}
.ebi0 {
  display: flex; align-items: center; gap: 10px; width: 100%;
  background: var(--bg-card); border: 1px solid var(--border-alt);
  overflow: hidden;
  border-radius: 10px; padding: 10px 16px;
  text-decoration: none; color: var(--text-primary);
  transition: background .15s;
}
.ebi0:hover { background: var(--bg-hover); }

/* ── Hero: floating-cards ────────────────────────────────────────────────── */
.ldcb .loqbbdb { display: flex !important; align-items: center; justify-content: center; position: relative; }
.dguzh {
  display: flex; flex-direction: column; gap: 12px;
  padding: 32px 24px; width: 100%; max-width: 420px;
}
.r3jv2mcl {
  display: flex; align-items: center; gap: 14px; width: 100%;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 20px 18px;
  transform: translateX(calc(var(--fi) * 12px));
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}
.r3jv2mcl:hover { transform: translateX(calc(var(--fi) * 12px)) translateY(-2px); }
.fx7hsoqo { width: 46px; height: 46px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.fz5r { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.jhtgqr { font-weight: 700; font-size: 0.85rem; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.l5tg { font-size: 0.78rem; color: rgba(255,255,255,0.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.u5qu8 { font-weight: 800; font-size: 1.2rem; color: var(--accent-pale); flex-shrink: 0; }

/* ── Hero: numbered-top ──────────────────────────────────────────────────── */
.foh5d5 .yim0v { max-width: 960px; }
.ye7hi8c {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin: 28px 0 32px;
}
.ly8ijg72 {
  display: flex; align-items: center; gap: 10px;
  background: rgba(0,0,0,0.45); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px; padding: 10px 16px;
  text-decoration: none; color: #fff; transition: transform 0.2s, background 0.2s;
}
.ly8ijg72:hover { transform: translateY(-2px); background: rgba(0,0,0,0.55); }
.rsxyt6 { font-weight: 900; font-size: 1.5rem; color: var(--accent-pale); flex-shrink: 0; line-height: 1; }
.el93pydz { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.rc6ue { font-weight: 700; font-size: 0.85rem; white-space: nowrap; }
.hbhf8 { font-size: 0.78rem; color: rgba(255,255,255,0.7); white-space: nowrap; }


@media (max-width: 700px) {
  .io7iw { grid-template-columns: 1fr !important; grid-template-areas: "text" !important; }
  .io7iw .loqbbdb { display: none !important; }
  .ldcb .loqbbdb { display: none !important; }
  .qlbj0 .pjok { display: none !important; }
  .xbikb .r5nro2u { display: none !important; }
  .fbyvz7  { padding: 36px 24px; }
  /* cap hero height variants on mobile */
  .hbyyg4nr, .io7iw { min-height: 320px !important; }
  /* reduce oversized headings on mobile */
  .dzmsd1 { font-size: clamp(1.7rem, 5.5vw, 2.4rem) !important; }
  /* cards-top: hide on mobile */
  .cplfzewb { display: none !important; }
  /* numbered: stack */
  .ye7hi8c { flex-direction: column; align-items: center; }
  .ly8ijg72 { width: 100%; max-width: 340px; }
}

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

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

/* rounded */
.ociutj8w .jc4dra        { border-radius: 16px; }
.ociutj8w .rb1re  { border-radius: 16px; }

/* shadow */
.vmtxd .jc4dra         { box-shadow: 0 4px 14px rgba(0,0,0,0.18); border-radius: 8px; }
.vmtxd .rb1re   { border-radius: 8px; }


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

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

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

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

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

.ihhv .nqhhh30:nth-child(even) .u18p .tqk2:nth-child(odd),
.e1msem .nqhhh30:nth-child(even) .u18p .tqk2:nth-child(odd)  { background: var(--bg-card); }
.ihhv .nqhhh30:nth-child(even) .u18p .tqk2:nth-child(even),
.e1msem .nqhhh30:nth-child(even) .u18p .tqk2:nth-child(even) { background: var(--bg-card-inner); }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* plain: простий текст */
.np3d .d39mrdrt,
.np3d .eq9or,
.np3d .rdpx3b49,
.np3d .ahdm { font-style: normal; color: var(--text-body); }

/* dash: ліва вертикальна чорточка */
.ti64w9le .d39mrdrt,
.ti64w9le .eq9or {
  font-style: italic;
  border-left: 3px solid var(--border-section); padding-left: 12px;
}
.ti64w9le .rdpx3b49,
.ti64w9le .ahdm {
  font-style: italic;
  border-left: 2px solid var(--border); padding-left: 10px;
}

/* bg: підкладка з фоном */
.xlteg .d39mrdrt,
.xlteg .eq9or,
.xlteg .rdpx3b49,
.xlteg .ahdm {
  font-style: normal;
  background: var(--bg-raised); border-radius: 6px;
  padding: 10px 14px; color: var(--text-sub);
}

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

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

.s8p4u     .qgygi6 { list-style-type: "● "; }
.d42a0m  .qgygi6 { list-style-type: "■ "; }
.m6dx .qgygi6 { list-style-type: "◆ "; }
.kjsnchd1    .qgygi6 { list-style-type: "★ "; }

.s8p4u     .a3a5jkl0 { list-style-type: "● "; }
.d42a0m  .a3a5jkl0 { list-style-type: "■ "; }
.m6dx .a3a5jkl0 { list-style-type: "◆ "; }
.kjsnchd1    .a3a5jkl0 { list-style-type: "★ "; }

.s8p4u    .qgygi6 li::marker, .s8p4u    .a3a5jkl0 li::marker,
.d42a0m .qgygi6 li::marker, .d42a0m .a3a5jkl0 li::marker,
.m6dx .qgygi6 li::marker, .m6dx .a3a5jkl0 li::marker,
.kjsnchd1   .qgygi6 li::marker, .kjsnchd1   .a3a5jkl0 li::marker {
  color: var(--accent); font-size: 0.8em;
}

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

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

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

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

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

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

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

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

.b3iiirth { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin: 12px 0; }
.hrn8nvrw { background: var(--bg-card-inner); border-radius: 8px; overflow: hidden; }
.u3xyr8 { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.n6nuw5vg { background: var(--accent-bg-light); color: var(--accent); font-weight: 700; padding: 10px 14px; font-size: 0.9rem; }
.icgkr0u { padding: 10px 14px 4px; font-size: 0.88rem; color: var(--text-sub); }
.a3a5jkl0 { padding: 4px 14px 12px 28px; font-size: 0.82rem; color: var(--text-muted); }
.a3a5jkl0 li { margin-bottom: 3px; }
.jez8eu2 {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  margin: 16px auto 4px; padding: 0;
  font-size: 1.5rem; color: var(--accent);
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  border-radius: 50%;
}
.jez8eu2::before { font-family: "Font Awesome 6 Free"; font-weight: 900; }
/* icon chars */
[data-i="f0eb"]::before{content:"\f0eb"} [data-i="f3ed"]::before{content:"\f3ed"}
[data-i="f0e7"]::before{content:"\f0e7"} [data-i="f3a5"]::before{content:"\f3a5"}
[data-i="f005"]::before{content:"\f005"} [data-i="f1b2"]::before{content:"\f1b2"}
[data-i="f201"]::before{content:"\f201"} [data-i="f023"]::before{content:"\f023"}
[data-i="f140"]::before{content:"\f140"} [data-i="f0ac"]::before{content:"\f0ac"}
[data-i="f058"]::before{content:"\f058"} [data-i="f1fe"]::before{content:"\f1fe"}
[data-i="f059"]::before{content:"\f059"} [data-i="f084"]::before{content:"\f084"}
[data-i="f1e0"]::before{content:"\f1e0"} [data-i="f6e2"]::before{content:"\f6e2"}
[data-i="f5da"]::before{content:"\f5da"} [data-i="f024"]::before{content:"\f024"}
[data-i="f0a3"]::before{content:"\f0a3"} [data-i="f6ff"]::before{content:"\f6ff"}
/* colors */
[data-c="a"]{color:var(--accent);background:color-mix(in srgb,var(--accent) 15%,transparent)}
[data-c="b"]{color:var(--accent-light);background:color-mix(in srgb,var(--accent-light) 15%,transparent)}
[data-c="c"]{color:var(--c-pros);background:color-mix(in srgb,var(--c-pros) 15%,transparent)}
[data-c="d"]{color:var(--c-stars);background:color-mix(in srgb,var(--c-stars) 15%,transparent)}
[data-c="e"]{color:var(--accent-pale);background:color-mix(in srgb,var(--accent-pale) 15%,transparent)}
[data-c="f"]{color:var(--c-warn-border);background:color-mix(in srgb,var(--c-warn-border) 15%,transparent)}
[data-c="g"]{color:var(--c-tip-border);background:color-mix(in srgb,var(--c-tip-border) 15%,transparent)}
[data-c="h"]{color:var(--c-cons);background:color-mix(in srgb,var(--c-cons) 15%,transparent)}
/* shapes */
[data-s="r"]{border-radius:50%}
[data-s="s"]{border-radius:10px}
[data-s="d"]{border-radius:50% 8px}
[data-s="h"]{border-radius:50%;clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%)}
[data-s="b"]{border-radius:60% 40% 50% 50%/50% 60% 40% 50%}
.hrtytt .jez8eu2 { margin-left: auto; margin-right: auto; }
.hrtytt .n6nuw5vg { background: transparent; text-align: center; }

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

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

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

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


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

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

/* glass: напівпрозорий фон з blur, без рамок */
.r8t6 .hrn8nvrw { background: rgba(255,255,255,0.04); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.08); }
.r8t6 .n6nuw5vg { background: none; color: var(--accent-light); font-weight: 700; }

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

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

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

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

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

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

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

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

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

/* pill = solid but very rounded */
.ayz7m .y6mmg { border-radius: 50px; }
.ayz7m .s70a6bi4  { border-radius: 50px; }
/* btn_pad */
.c1rkvhzx .y6mmg { padding-left: 22px; padding-right: 22px; }
.c1rkvhzx .s70a6bi4  { padding-left: 12px; padding-right: 12px; }
.wgezc .y6mmg { padding-left: 44px; padding-right: 44px; }
.wgezc .s70a6bi4  { padding-left: 24px; padding-right: 24px; }
.ph8b .y6mmg { padding-left: 56px; padding-right: 56px; }
.ph8b .s70a6bi4  { padding-left: 32px; padding-right: 32px; }

/* ── btn_icon: SVG-іконки на .y6mmg і .s70a6bi4 (mask на currentColor) ──────*/
/* ::after — усі іконки після тексту (праворуч) */
.t3wyaj   .y6mmg::after, .t3wyaj   .s70a6bi4::after,
.uiph .y6mmg::after, .uiph .s70a6bi4::after,
.ezovq    .y6mmg::after, .ezovq    .s70a6bi4::after,
.d7064i    .y6mmg::after, .d7064i    .s70a6bi4::after,
.sx4x    .y6mmg::after, .sx4x    .s70a6bi4::after,
.cs539xgd     .y6mmg::after, .cs539xgd     .s70a6bi4::after,
.m464    .y6mmg::after, .m464    .s70a6bi4::after,
.mzn3p   .y6mmg::after, .mzn3p   .s70a6bi4::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 — кожна іконка */
.t3wyaj .y6mmg::after, .t3wyaj .s70a6bi4::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");
}
.uiph .y6mmg::after, .uiph .s70a6bi4::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");
}
.ezovq .y6mmg::after, .ezovq .s70a6bi4::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");
}
.d7064i .y6mmg::after, .d7064i .s70a6bi4::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");
}
.sx4x .y6mmg::after, .sx4x .s70a6bi4::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");
}
.cs539xgd .y6mmg::after, .cs539xgd .s70a6bi4::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");
}
.m464 .y6mmg::after, .m464 .s70a6bi4::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");
}
.mzn3p .y6mmg::after, .mzn3p .s70a6bi4::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 ────────*/
.cn58dwn   .mqs71::after, .cn58dwn   .mf2k::after,
.ob1d .mqs71::after, .ob1d .mf2k::after,
.j4uqe3j    .mqs71::after, .j4uqe3j    .mf2k::after,
.pjn57q1    .mqs71::after, .pjn57q1    .mf2k::after,
.dd769a5    .mqs71::after, .dd769a5    .mf2k::after,
.wbuf     .mqs71::after, .wbuf     .mf2k::after,
.u31peq    .mqs71::after, .u31peq    .mf2k::after,
.s5xclm3   .mqs71::after, .s5xclm3   .mf2k::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;
}
.cn58dwn .mqs71::after, .cn58dwn .mf2k::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");
}
.ob1d .mqs71::after, .ob1d .mf2k::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");
}
.j4uqe3j .mqs71::after, .j4uqe3j .mf2k::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");
}
.pjn57q1 .mqs71::after, .pjn57q1 .mf2k::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");
}
.dd769a5 .mqs71::after, .dd769a5 .mf2k::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");
}
.wbuf .mqs71::after, .wbuf .mf2k::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");
}
.u31peq .mqs71::after, .u31peq .mf2k::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");
}
.s5xclm3 .mqs71::after, .s5xclm3 .mf2k::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 ─────────────────────────────────────────────────────────*/
.yzr1dl { display: flex; flex-direction: column; gap: 6px; margin: 28px 0; }


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

/* ── Casino reviews ──────────────────────────────────────────────────────────*/
.gy99p {
  background: var(--bg-card);
  border-radius: 12px; margin: 24px 0; overflow: hidden;
  border: 1px solid var(--border-alt);
}
.jeq7l8r5 {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 24px; background: var(--bg-surface);
}
.jk5qozw0 {
  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;
}
.jk5qozw0 img { max-width: 80px; max-height: 50px; object-fit: contain; }
.abuqoj { color: var(--accent); font-weight: 700; font-size: 0.85rem; text-align: center; }
.lrfo2 { flex: 1; }
.lrfo2 h3 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 4px; }
.vo5odf { color: var(--c-stars); font-size: 1.1rem; }
.wi8jdwj { margin-bottom: 8px; }
.u6o8 { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 0.83rem; color: var(--text-muted); }
.i8kxomu::before   { content: "★ "; color: var(--accent); }
.fofdvpia::before { content: "↓ "; color: var(--accent); }
.vagt2::before { content: "✦ "; color: var(--accent); }
.fpnyjnl { flex-shrink: 0; }
.nv0lla img.xrwtvm8y { width: 100%; max-height: 240px; object-fit: cover; display: block; }
.goce { padding: 20px 24px; }
.qrhxzwcm { color: var(--text-muted); margin-bottom: 16px; }
.jum7 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 14px; }
.r3def, .cceee4b { list-style: none; font-size: 0.9rem; }
.r3def li { color: var(--c-pros); margin-bottom: 4px; }
.cceee4b li { color: var(--c-cons); margin-bottom: 4px; }
/* CSS маркери для pros/cons замість символів в HTML */
.r3def li::before { content: "✓"; margin-right: 5px; }
.cceee4b li::before { content: "✗"; margin-right: 5px; }
.eqzbao .r3def li::before { content: "→"; }
.eqzbao .cceee4b li::before { content: "–"; }
.v7pc  .r3def li::before { content: "★"; }
.v7pc  .cceee4b li::before { content: "✕"; }
.mu29orx    .r3def li::before { content: "◆"; }
.mu29orx    .cceee4b li::before { content: "▲"; }
.yeph25iy  .r3def li::before { content: "▶"; }
.yeph25iy  .cceee4b li::before { content: "■"; }
.pz5pib { margin-bottom: 8px; font-size: 0.85rem; color: var(--text-muted); }
.ngymsj { background: var(--accent-bg); color: var(--accent-light); border-radius: 4px; padding: 2px 8px; margin: 2px 2px 2px 0; display: inline-block; }
.etbajkfx { background: var(--bg-pros); color: var(--c-tag-pay); }

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


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

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

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

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

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

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

/* ── Brand card (single brand, two-column hero) ─────────────────────────────*/
/* ═══════════════════════════════════════════════════════════════════════════
   BRAND CARD — shared tokens
   ═══════════════════════════════════════════════════════════════════════════ */
.qmhw8hq {
  background: var(--bg-card);
  border: 1px solid var(--border-alt);
  border-radius: 12px;
  margin: 28px 0;
  overflow: hidden;
}
.pk5nd {
  width: 100px; height: 68px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border-radius: 10px; padding: 8px;
  flex-shrink: 0;
}
.pk5nd img { max-width: 100%; max-height: 100%; object-fit: contain; }
.qbqi { font-size: 1.15rem; font-weight: 700; color: var(--text); }
.efoc { display: flex; align-items: center; gap: 8px; }
.efoc .vo5odf { font-size: .95rem; }
.efoc strong { font-size: 1.1rem; color: var(--text); }
.ev7bn { border-radius: 8px; overflow: hidden; }
.ev7bn img { width: 100%; display: block; border-radius: 8px; }
.fs4po6p { text-align: center; flex-shrink: 0; }
.vfdam { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; }
.hfygwlm { font-size: .82rem; color: var(--text-muted); font-weight: 500; }
.ughdh { font-size: .88rem; font-weight: 600; color: var(--text); }
.jn08qc .ughdh { font-size: 1.02rem; font-weight: 700; color: var(--accent); }
.qmhw8hq .cus0l4 { gap: 10px; }
.qmhw8hq .x8nifq, .qmhw8hq .zbk70za { padding: 12px; }
.qmhw8hq .x8nifq ul, .qmhw8hq .zbk70za ul { margin: 4px 0 0; padding-left: 18px; }
.qmhw8hq .x8nifq li, .qmhw8hq .zbk70za li { font-size: .85rem; margin-bottom: 3px; }
.lpdh8 { font-size: .8rem; color: var(--text-muted); margin-top: 10px; }
.lpdh8 strong { color: var(--text-secondary); }
.lpdh8 .ngymsj { margin: 2px 4px 2px 0; }

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

/* ── LAYOUT 2: hero — full-width screenshot header ────────────────────────── */
.eg6lik5h {
  position: relative; max-height: 240px; overflow: hidden;
}
.eg6lik5h > img { width: 100%; display: block; object-fit: cover; min-height: 160px; }
.a98all0o {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; align-items: center; gap: 16px;
  padding: 16px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  color: #fff;
}
.a98all0o .pk5nd { background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border-radius: 10px; }
.a98all0o .qbqi { color: #fff; font-size: 1.25rem; }
.a98all0o .efoc strong { color: #fff; }
.a98all0o .efoc .vo5odf { filter: brightness(1.2); }
.a98all0o .fs4po6p { margin-left: auto; white-space: nowrap; }
.p003gr { flex: 1; }
.g6ty0rl {
  display: flex; align-items: center; gap: 16px; padding: 20px 24px;
  border-bottom: 1px solid var(--border-alt);
}
.g6ty0rl .fs4po6p { margin-left: auto; }
.fzmxlkfy { display: flex; flex-direction: column; gap: 16px; padding: 20px 24px; }
.yuhim .v5tr {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--border-alt); border-radius: 8px; overflow: hidden;
}
.yuhim .vfdam {
  flex: 1 1 auto; min-width: 120px;
  border-right: 1px solid var(--border-alt); border-bottom: 1px solid var(--border-alt);
}
.yuhim .jn08qc { flex-basis: 100%; background: var(--accent-bg); border-right: none; }
@media (max-width: 720px) {
  .a98all0o { flex-wrap: wrap; gap: 10px; padding: 12px 16px; }
  .fzmxlkfy { padding: 16px; }
  .yuhim .vfdam { min-width: 50%; }
}

/* ── LAYOUT 3: magazine — editorial 3-column ──────────────────────────────── */
.ervvd {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-alt);
}
.iuzyi5d { flex: 1; }
.iuzyi5d .qbqi { font-size: 1.3rem; }
.s35y1g {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
}
.kolbs { padding: 16px; border-right: 1px solid var(--border-alt); }
.kolbs .ev7bn { height: 100%; }
.kolbs .ev7bn img { height: 100%; object-fit: cover; }
.f6okjtu { padding: 0; border-right: 1px solid var(--border-alt); }
.f6okjtu .v5tr { display: flex; flex-direction: column; }
.f6okjtu .vfdam { border-bottom: 1px solid var(--border-alt); }
.f6okjtu .jn08qc { background: var(--accent-bg); }
.d11h3 { padding: 16px; }
.d11h3 .cus0l4 { grid-template-columns: 1fr; }
.vle53u {
  padding: 12px 24px; border-top: 1px solid var(--border-alt);
  display: flex; flex-wrap: wrap; gap: 12px;
}
@media (max-width: 860px) {
  .s35y1g { grid-template-columns: 1fr; }
  .kolbs { border-right: none; border-bottom: 1px solid var(--border-alt); }
  .f6okjtu { border-right: none; border-bottom: 1px solid var(--border-alt); }
}
@media (max-width: 540px) {
  .ervvd { flex-wrap: wrap; padding: 16px; }
}

/* ── LAYOUT 4: compact — header bar → screenshot → data ──────────────────── */
.rmo9v {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 16px 20px; border-bottom: 1px solid var(--border-alt);
}
.w3k9mrev {
  display: flex; align-items: center; gap: 12px; flex: 1;
}
.w3k9mrev .pk5nd { width: 72px; height: 50px; }
.w3k9mrev .qbqi { font-size: 1rem; white-space: nowrap; }
.ps1fu { border-bottom: 1px solid var(--border-alt); max-height: 280px; overflow: hidden; }
.ps1fu img { width: 100%; display: block; object-fit: cover; }
.bryv1az {
  display: flex; flex-direction: column; gap: 10px; padding: 14px 16px; overflow: hidden;
}
.bhqzoe .v5tr { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.bhqzoe .vfdam { padding: 0; flex: 0 0 auto; gap: 6px; }
.bhqzoe .jn08qc { display: none; }
.bhqzoe .cus0l4 { gap: 8px; }
.bhqzoe .x8nifq, .bhqzoe .zbk70za { padding: 8px; }
@media (max-width: 480px) {
  .rmo9v { flex-direction: column; align-items: stretch; }
}

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

/* ── LAYOUT 6: scorecard — big score centerpiece ──────────────────────────── */
.hgkmhu {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: center;
  border-bottom: 1px solid var(--border-alt);
}
.crcx8bqc {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px; text-align: center;
}
.wjert {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 130px; height: 130px; border-radius: 50%;
  background: var(--accent-bg); border: 3px solid var(--accent);
  position: relative;
}
.iiqd { font-size: 1.8rem; font-weight: 800; color: var(--accent); line-height: 1; }
.iiqd .uaengzn1 { font-size: .9rem; font-weight: 500; color: var(--text-muted); }
.wjert .vo5odf { font-size: .75rem; margin-top: 2px; }
.rxjo { padding: 12px; display: flex; align-items: center; flex: 1; }
.rxjo .ev7bn { width: 100%; }
.t1rzpeq {
  padding: 0; border-bottom: 1px solid var(--border-alt);
}
.zeu2kkb .v5tr {
  display: flex; flex-wrap: wrap;
}
.zeu2kkb .vfdam {
  flex: 1 1 auto; min-width: 100px;
  border-right: 1px solid var(--border-alt); border-bottom: 1px solid var(--border-alt);
  flex-direction: column; align-items: center; gap: 2px; padding: 12px 8px; text-align: center;
}
.zeu2kkb .vfdam:last-child { border-right: none; }
.zeu2kkb .hfygwlm { font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; }
.zeu2kkb .jn08qc { background: var(--accent-bg); }
.f0wkj4iw { padding: 16px 20px; display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 720px) {
  .hgkmhu { grid-template-columns: 1fr; }
  .wjert { width: 100px; height: 100px; margin: 16px auto; }
  .iiqd { font-size: 1.4rem; }
  .rxjo { justify-content: center; }
  .zeu2kkb .vfdam { min-width: 50%; }
}

/* ── LAYOUT 7: stack — vertical full-width flow ──────────────────────────── */
.jbrnf {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-alt);
}
.vgq83us { max-height: 240px; overflow: hidden; border-bottom: 1px solid var(--border-alt); }
.vgq83us img { width: 100%; display: block; object-fit: cover; }
.eb05ba { padding: 16px 24px; border-bottom: 1px solid var(--border-alt); }
.o0rk9rc .v5tr {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.o0rk9rc .vfdam {
  background: var(--surface); border: 1px solid var(--border-alt);
  border-radius: 20px; padding: 6px 14px; gap: 8px;
}
.o0rk9rc .jn08qc {
  background: var(--accent-bg); border-color: var(--accent-pale);
}
.o0rk9rc .cus0l4 { margin: 0 24px; padding-top: 16px; }
.o0rk9rc .lpdh8 { padding: 0 24px; }
.te6dw0xq { padding: 16px 24px; border-top: 1px solid var(--border-alt); text-align: center; }
.te6dw0xq .fs4po6p { display: inline-block; }
@media (max-width: 540px) {
  .jbrnf { flex-wrap: wrap; padding: 14px 16px; }
  .eb05ba { padding: 12px 16px; }
  .o0rk9rc .cus0l4 { margin: 0 16px; }
  .o0rk9rc .lpdh8 { padding: 0 16px; }
  .te6dw0xq { padding: 12px 16px; }
}


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

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

/* ranked: accent-pill значення + uppercase лейбли (нумерація — через cs_rank) */
.d0x9c .iy5z {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted);
}
.d0x9c .y2v494if {
  color: var(--accent); font-weight: 700;
  background: var(--accent-bg); border-radius: 100px;
  padding: 1px 9px; font-size: 0.8rem;
}
.d0x9c .v83yo4 { color: var(--accent); }
.d0x9c .jeq7l8r5 { background: var(--accent-bg); }
.d0x9c .i8kxomu, .d0x9c .fofdvpia, .d0x9c .vagt2 {
  background: var(--bg-card); border-radius: 100px; padding: 1px 10px;
  border: 1px solid var(--border);
}

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

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

/* compact: менші відступи всюди */
.g2jedrr .rf1eev0 { padding: 8px 14px; gap: 12px; }
.g2jedrr .rcit2 { height: 32px; min-width: 52px; }
.g2jedrr .hrw5asr { max-height: 24px; }
.g2jedrr .cs4w9 { font-size: 0.82rem; }
.g2jedrr .jeq7l8r5 { padding: 14px 18px; gap: 14px; }
.g2jedrr .goce { padding: 14px 18px; }
.g2jedrr .jk5qozw0 { width: 70px; }
.g2jedrr .lrfo2 h3 { font-size: 1.05rem; }

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

/* bordered: таблиця з усіма рамками */
.tel53 .yzr1dl {
  gap: 0; border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.tel53 .rf1eev0 {
  border-radius: 0; border: none;
  border-bottom: 1px solid var(--border); row-gap: 0; column-gap: 12px;
}
.tel53 .rf1eev0:last-child { border-bottom: none; }
/* вертикальні межі між колонками */
.tel53 .v83yo4,
.tel53 .hh7ymz3,
.tel53 .ul2sylwb { border-left: 1px solid var(--border); padding-left: 10px; }
.tel53 .cs4w9 { padding: 0 10px; }

/* ── cs_cols: feature — бонус-колонка виділена як головна ──────────────────*/
.va7y4r .hh7ymz3 { flex: 1.8; }
.va7y4r .hh7ymz3 .y2v494if {
  font-size: 0.88rem; font-weight: 700; color: var(--accent);
}
.va7y4r .hh7ymz3 .iy5z { font-weight: 700; color: var(--text-primary); }
.va7y4r .n28k4mqm,
.va7y4r .r5ownxs,
.va7y4r .oo9b1jr { flex: 0.75; opacity: 0.65; }

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

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

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

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

/* score в оглядах — ховаємо зірки */
.zaqq17y .wi8jdwj .vo5odf,
.oqtlr3vv .wi8jdwj .vo5odf,
.wt7j1x51 .wi8jdwj .vo5odf { display: none; }

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

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

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

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

/* ── Sections ────────────────────────────────────────────────────────────────*/
.nqhhh30 { margin-bottom: 0; }
.xbqnzh h2.lky0x68 { color: var(--accent-light); border-color: var(--accent); }
.p1hcgzi h2.lky0x68 { color: var(--accent-light); border-color: var(--accent); }

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

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

/* vivid: смарагд / рожевий / фіолетовий */
.ey0ji8 .q6t1mxc     { background: #052e16; border-color: #10b981; }
.ey0ji8 .myq5tty { background: #2d0a1e; border-color: #f43f5e; }
.ey0ji8 .sg3b    { background: #1e1036; border-color: #a855f7; }
.ey0ji8 .dudqxmsn strong  { color: #f1f5f9; }
.ey0ji8 .dudqxmsn p       { color: #cbd5e1; }
.ey0ji8 .qtmbx    .q6t1mxc     .qkpl::before,
.ey0ji8 .fzfmvpb  .q6t1mxc     .qkpl::before,
.ey0ji8 .szme3  .q6t1mxc     .qkpl::before,
.ey0ji8 .o5q8hka .q6t1mxc     .qkpl::before { color: #10b981; }
.ey0ji8 .qtmbx    .myq5tty .qkpl::before,
.ey0ji8 .fzfmvpb  .myq5tty .qkpl::before,
.ey0ji8 .szme3  .myq5tty .qkpl::before,
.ey0ji8 .o5q8hka .myq5tty .qkpl::before { color: #f43f5e; }
.ey0ji8 .qtmbx    .sg3b    .qkpl::before,
.ey0ji8 .fzfmvpb  .sg3b    .qkpl::before,
.ey0ji8 .szme3  .sg3b    .qkpl::before,
.ey0ji8 .o5q8hka .sg3b    .qkpl::before { color: #a855f7; }

/* warm: жовтий / червоний / помаранчевий */
.gt02 .q6t1mxc     { background: #2d2000; border-color: #eab308; }
.gt02 .myq5tty { background: #2d0b0b; border-color: #ef4444; }
.gt02 .sg3b    { background: #2d1600; border-color: #f97316; }
.gt02 .dudqxmsn strong  { color: #f1f5f9; }
.gt02 .dudqxmsn p       { color: #cbd5e1; }
.gt02 .qtmbx    .q6t1mxc     .qkpl::before,
.gt02 .fzfmvpb  .q6t1mxc     .qkpl::before,
.gt02 .szme3  .q6t1mxc     .qkpl::before,
.gt02 .o5q8hka .q6t1mxc     .qkpl::before { color: #eab308; }
.gt02 .qtmbx    .myq5tty .qkpl::before,
.gt02 .fzfmvpb  .myq5tty .qkpl::before,
.gt02 .szme3  .myq5tty .qkpl::before,
.gt02 .o5q8hka .myq5tty .qkpl::before { color: #ef4444; }
.gt02 .qtmbx    .sg3b    .qkpl::before,
.gt02 .fzfmvpb  .sg3b    .qkpl::before,
.gt02 .szme3  .sg3b    .qkpl::before,
.gt02 .o5q8hka .sg3b    .qkpl::before { color: #f97316; }

/* cool: блакитний / індиго / бірюзовий */
.dx05 .q6t1mxc     { background: #0c1a2e; border-color: #38bdf8; }
.dx05 .myq5tty { background: #12103a; border-color: #818cf8; }
.dx05 .sg3b    { background: #0a2020; border-color: #2dd4bf; }
.dx05 .dudqxmsn strong  { color: #f1f5f9; }
.dx05 .dudqxmsn p       { color: #cbd5e1; }
.dx05 .qtmbx    .q6t1mxc     .qkpl::before,
.dx05 .fzfmvpb  .q6t1mxc     .qkpl::before,
.dx05 .szme3  .q6t1mxc     .qkpl::before,
.dx05 .o5q8hka .q6t1mxc     .qkpl::before { color: #38bdf8; }
.dx05 .qtmbx    .myq5tty .qkpl::before,
.dx05 .fzfmvpb  .myq5tty .qkpl::before,
.dx05 .szme3  .myq5tty .qkpl::before,
.dx05 .o5q8hka .myq5tty .qkpl::before { color: #818cf8; }
.dx05 .qtmbx    .sg3b    .qkpl::before,
.dx05 .fzfmvpb  .sg3b    .qkpl::before,
.dx05 .szme3  .sg3b    .qkpl::before,
.dx05 .o5q8hka .sg3b    .qkpl::before { color: #2dd4bf; }

/* accent: використовує динамічний акцент */
.xlcm7 .q6t1mxc     { background: var(--accent-bg); border-color: var(--accent); }
.xlcm7 .myq5tty { background: var(--accent-bg-light); border-color: var(--accent-light); }
.xlcm7 .sg3b    { background: var(--accent-bg); border-color: var(--accent-pale); }
.xlcm7 .qtmbx    .qkpl::before,
.xlcm7 .fzfmvpb  .qkpl::before,
.xlcm7 .szme3  .qkpl::before,
.xlcm7 .o5q8hka .qkpl::before { color: var(--accent-light) !important; }

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

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

/* classic — фіксовані контрастні кольори незалежно від акценту */
.z6hpm .x8nifq ul li,
.z6hpm .r3def li         { color: #4ade80; }
.z6hpm .x8nifq .p3nqxwr9 { color: #22c55e; }
.z6hpm .zbk70za ul li,
.z6hpm .cceee4b li         { color: #f87171; }
.z6hpm .zbk70za .ey5in { color: #ef4444; }

/* blue: синій pros / amber cons */
.gqco0 .x8nifq { background: #0c1a2e; }
.gqco0 .zbk70za { background: #2d1f00; }
.gqco0 .x8nifq .p3nqxwr9 { color: #93c5fd; }
.gqco0 .zbk70za .ey5in { color: #fcd34d; }
.gqco0 .x8nifq ul li,
.gqco0 .r3def li            { color: #bfdbfe; }
.gqco0 .zbk70za ul li,
.gqco0 .cceee4b li            { color: #fde68a; }

/* accent: label акцентний, текст завжди читабельний */
.tefc1t .x8nifq { background: var(--accent-bg); }
.tefc1t .zbk70za { background: var(--accent-bg-light); }
.tefc1t .x8nifq .p3nqxwr9 { color: var(--accent-pale); }
.tefc1t .zbk70za .ey5in { color: var(--accent-light); }
.tefc1t .x8nifq ul li,
.tefc1t .r3def li          { color: var(--text-body); }
.tefc1t .zbk70za ul li,
.tefc1t .cceee4b li          { color: var(--text-body); }

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

/* check: ✓ / ✗ */
.rb6gfqz .p3nqxwr9::before { content: "✓ "; }
.rb6gfqz .ey5in::before { content: "✗ "; }

/* arrows: → / ← */
.eqzbao .p3nqxwr9::before { content: "→ "; }
.eqzbao .ey5in::before { content: "← "; }

/* marks: ★ / ✕ */
.v7pc .p3nqxwr9::before { content: "★ "; }
.v7pc .ey5in::before { content: "✕ "; }

/* geo: ◆ / ▲ */
.mu29orx .p3nqxwr9::before { content: "◆ "; }
.mu29orx .ey5in::before { content: "▲ "; }

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

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

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

/* topbar: смуга зверху */
.h3kpa .dudqxmsn { border-left: none; border-top: 4px solid; border-radius: 0 0 8px 8px; }
.h3kpa .q6t1mxc     { border-top-color: var(--c-tip-border); }
.h3kpa .myq5tty { border-top-color: var(--c-warn-border); }
.h3kpa .sg3b    { border-top-color: #60a5fa; }

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

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

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

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

.qtmbx .qkpl,
.fzfmvpb .qkpl,
.szme3 .qkpl,
.o5q8hka .qkpl { font-size: 0; width: 1.1rem; flex-shrink: 0; }

.qtmbx .qkpl::before,
.fzfmvpb .qkpl::before,
.szme3 .qkpl::before,
.o5q8hka .qkpl::before {
  display: block; font-size: 1.15rem; line-height: 1.3; font-style: normal;
}

/* geo: ✦ ▲ ◉ */
.qtmbx .q6t1mxc     .qkpl::before { content: "✦"; color: var(--c-tip-border); }
.qtmbx .myq5tty .qkpl::before { content: "▲"; color: var(--c-warn-border); }
.qtmbx .sg3b    .qkpl::before { content: "◉"; color: #60a5fa; }

/* marks: ★ ◆ ● */
.fzfmvpb .q6t1mxc     .qkpl::before { content: "★"; color: var(--c-tip-border); }
.fzfmvpb .myq5tty .qkpl::before { content: "◆"; color: var(--c-warn-border); }
.fzfmvpb .sg3b    .qkpl::before { content: "●"; color: #60a5fa; }

/* sharp: ▶ ■ ▸ */
.szme3 .q6t1mxc     .qkpl::before { content: "▶"; color: var(--c-tip-border); }
.szme3 .myq5tty .qkpl::before { content: "■"; color: var(--c-warn-border); }
.szme3 .sg3b    .qkpl::before { content: "▸"; color: #60a5fa; }

/* arrows: → ⬥ ◈ */
.o5q8hka .q6t1mxc     .qkpl::before { content: "→"; color: var(--c-tip-border); }
.o5q8hka .myq5tty .qkpl::before { content: "⬥"; color: var(--c-warn-border); }
.o5q8hka .sg3b    .qkpl::before { content: "◈"; color: #60a5fa; }

/* ── shadow variant ──────────────────────────────────────────────────────────*/
.v7pi8 .wh0mtkz .tqk2,
.v7pi8 .u18p .tqk2  { box-shadow: 0 2px 8px rgba(0,0,0,0.22); }
.v7pi8 .hrn8nvrw                { box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
.v7pi8 .rf1eev0                { box-shadow: 0 4px 12px rgba(0,0,0,0.28); }
.v7pi8 .gy99p            { box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.v7pi8 .xviu          { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }
.v7pi8 .ouu9o7                    { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }

/* shadow-none: скидаємо будь-які тіні */
.mblmwq5 .wh0mtkz .tqk2,
.mblmwq5 .u18p .tqk2,
.mblmwq5 .hrn8nvrw,
.mblmwq5 .rf1eev0,
.mblmwq5 .gy99p,
.mblmwq5 .xviu,
.mblmwq5 .ouu9o7,
.mblmwq5 .q7aba0 .dudqxmsn { box-shadow: none; }

/* ── text_size variants ──────────────────────────────────────────────────────*/
.ah7i7   body, .ah7i7   { font-size: 0.9rem; }
.ah7i7   .sms90, .ah7i7 .rdpx3b49, .ah7i7 .ahdm,
.ah7i7   .d39mrdrt, .ah7i7 .eq9or { font-size: 0.9rem; }
.ah7i7   .qgygi6, .ah7i7 .qnl2aib { font-size: 0.9rem; }

.akc7   .sms90, .akc7 .rdpx3b49, .akc7 .ahdm,
.akc7   .d39mrdrt, .akc7 .eq9or { font-size: 0.9rem; }
.akc7   .qgygi6, .akc7 .qnl2aib { font-size: 0.9rem; }

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

.djgxjm   .sms90, .djgxjm .rdpx3b49, .djgxjm .ahdm,
.djgxjm   .d39mrdrt, .djgxjm .eq9or { font-size: 1.08rem; }
.djgxjm   .qgygi6, .djgxjm .qnl2aib { font-size: 1.05rem; }
.djgxjm   .ur6apmr { font-size: 0.97rem; }

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

/* large */
.vcq8i .dzmsd1      { font-size: 3.2rem; }
.vcq8i h2.lky0x68 { font-size: 1.9rem; }
.vcq8i h3.vaqyq     { font-size: 1.4rem; }

/* display */
.lcii7h76 .dzmsd1      { font-size: 3.8rem; }
.lcii7h76 h2.lky0x68 { font-size: 2.2rem; }
.lcii7h76 h3.vaqyq     { font-size: 1.6rem; }

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

/* Спільна база: abs-позиція на межі між секціями */
.v3wl7   .nqhhh30 + .nqhhh30::before,
.hcuvedh0  .nqhhh30 + .nqhhh30::before,
.cks27kh7   .nqhhh30 + .nqhhh30::before,
.i9ogn0dh   .nqhhh30 + .nqhhh30::before,
.a0d5   .nqhhh30 + .nqhhh30::before,
.q23xmf .nqhhh30 + .nqhhh30::before {
  position: absolute; top: -1px; left: 0; right: 0;
  transform: translateY(-50%);
}

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

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

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

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

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

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

/* wave: заповнена хвиля hero-style — ::before виступає вгору з нової секції */
.izyi7u7y .nqhhh30 + .nqhhh30::before,
.q8ysxyb2 .nqhhh30 + .nqhhh30::before,
.irci6b .nqhhh30 + .nqhhh30::before {
  content: ""; display: block;
  position: absolute; top: -70px; left: 0; right: 0; height: 70px;
  background: var(--bg-page);
  pointer-events: none; z-index: 2;
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
}

/* section_bg=even: парні секції мають bg-surface, непарні — bg-page */
.ihhv .izyi7u7y .nqhhh30:nth-child(even)::before,
.ihhv .q8ysxyb2 .nqhhh30:nth-child(even)::before,
.ihhv .irci6b .nqhhh30:nth-child(even)::before { background: var(--bg-surface); }

/* section_bg=stripe: парні секції мають bg-card */
.e1msem .izyi7u7y .nqhhh30:nth-child(even)::before,
.e1msem .q8ysxyb2 .nqhhh30:nth-child(even)::before,
.e1msem .irci6b .nqhhh30:nth-child(even)::before { background: var(--bg-card); }

/* wave-a: плавна S-хвиля (1 гребінь) */
.izyi7u7y .nqhhh30 + .nqhhh30::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 гребені */
.q8ysxyb2 .nqhhh30 + .nqhhh30::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: глибока дуга */
.irci6b .nqhhh30 + .nqhhh30::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 у формі хвилі */
.v4zl2o .clbc,
.fxjaere4 .clbc,
.sxtg2b .clbc { overflow: hidden; }

/* wave: додатковий простір щоб хвиля не закривала CTA */
.v4zl2o .yim0v,
.fxjaere4 .yim0v { margin-bottom: 60px; }
.sxtg2b .yim0v { margin-bottom: 70px; }
.v4zl2o .fbyvz7,
.fxjaere4 .fbyvz7 { padding-bottom: 60px; }
.sxtg2b .fbyvz7 { padding-bottom: 70px; }

.v4zl2o .clbc::before,
.fxjaere4 .clbc::before,
.sxtg2b .clbc::before {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--bg-page);
  pointer-events: none; z-index: 2;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

/* wave-a: плавна S-хвиля (1 гребінь) */
.v4zl2o .clbc::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 гребені */
.fxjaere4 .clbc::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: глибока дуга */
.sxtg2b .clbc::before {
  height: 70px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 40 C20 0 80 0 100 40 L100 50 Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 40 C20 0 80 0 100 40 L100 50 Z' fill='black'/%3E%3C/svg%3E");
}

/* ── hero_grad: gradient direction + color mix ────────────────────────────*/
/* hg-br (default): grad-start → grad-end → accent, 135deg — set in base rules */

/* hero-overlay varies per hg-* too */
.xkrvw .royfa { background: linear-gradient(225deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%); }
.ujs6xk .royfa { background: linear-gradient(45deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 100%); }
.q8tha  .royfa { background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%); }
.h0qo4  .royfa { background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%); }

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

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

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

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


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

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

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

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

/* Великі блочні елементи — clear float щоб не стискались */
.zg99yf .b3iiirth,
.zg99yf .yzr1dl,
.v123 .b3iiirth,
.v123 .yzr1dl,
.lvewua .b3iiirth,
.lvewua .yzr1dl { clear: both; }

/* Маркери списків не мають налазити на float-картинку */
.zg99yf .qgygi6,
.zg99yf .qnl2aib,
.v123 .qgygi6,
.v123 .qnl2aib,
.lvewua .qgygi6,
.lvewua .qnl2aib { overflow: hidden; }


@media (max-width: 640px) {
  .zg99yf .jc4dra,
  .v123 .jc4dra,
  .lvewua .jc4dra { float: none; width: 100%; margin: 0 0 16px 0; }
}

/* ── content_width: ширина контентного контейнера ───────────────────────────*/
/* default = 1000px (задано в .u4vjz, .sj1tiwxf, .x13st0r) */
.gmiw .u4vjz,
.gmiw .sj1tiwxf,
.gmiw .x13st0r  { max-width: 1100px; }
.x6a3cf .u4vjz,
.x6a3cf .sj1tiwxf,
.x6a3cf .x13st0r  { max-width: 1200px; }
.ivvd4 .u4vjz,
.ivvd4 .sj1tiwxf,
.ivvd4 .x13st0r  { max-width: 1320px; }

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

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

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

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

/* content-width: above — обидва класи на <body>, тому без пробілу */
.gmiw.muruj .sncp { max-width: 1100px; }
.x6a3cf.muruj .sncp { max-width: 1200px; }
.ivvd4.muruj .sncp { max-width: 1320px; }
/* float — bc-float-wrap окремий елемент, тому з пробілом */
.gmiw .vwaf { max-width: 1100px; }
.x6a3cf .vwaf { max-width: 1200px; }
.ivvd4 .vwaf { max-width: 1320px; }

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

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

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

/* ── font_weight: жирність тексту ────────────────────────────────────────────*/
/* fw-300: тонкий */
.qjegkltt { font-weight: 300; }
.qjegkltt h2.lky0x68 { font-weight: 600; }
.qjegkltt h3.vaqyq     { font-weight: 600; }
/* fw-400: default — без override */
/* fw-500: medium */
.rq9z7jc { font-weight: 500; }
.rq9z7jc h2.lky0x68 { font-weight: 800; }
.rq9z7jc h3.vaqyq     { font-weight: 700; }
/* fw-600: semibold */
.cyxx8zi { font-weight: 600; }
.cyxx8zi h2.lky0x68 { font-weight: 900; }
.cyxx8zi h3.vaqyq     { font-weight: 800; }
.cyxx8zi .dudqxmsn strong,
.cyxx8zi .rdpx3b49,
.cyxx8zi .d39mrdrt { font-weight: 600; }

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

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

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

/* minimal */
.a8rqoff .x13st0r { text-align: center; }
.a8rqoff .qrqqxzo { justify-content: center; margin-bottom: 16px; }
.a8rqoff .ufdvg { margin-top: 0; }

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

/* mobile footer */
@media (max-width: 640px) {
  .x13st0r { padding-left: 16px; padding-right: 16px; }
  .w0z2 .x13st0r { padding: 20px 16px; }
  .qrqqxzo { gap: 4px 12px; }
  .ufdvg { font-size: 0.78rem; }
}


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


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

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

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

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

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

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

/* dark: завжди темний, незалежно від теми */
.s0sd .hxcbsqcs      { background: #0d1117; border-bottom-color: #21262d; }
.s0sd .km4te7 { color: var(--accent-light); }
.s0sd .y7rw { --msep-color: #8b949e; }
.s0sd .y7rw a { color: #8b949e; }
.s0sd .y7rw a:hover { color: var(--accent-light); }
.s0sd .kh5vi4 { color: #8b949e; }
.s0sd .n4fdp { background: #0d1117; border-top-color: #21262d; }
.s0sd .ufdvg,
.s0sd .bbhv { color: #6e7681; }
.s0sd .udvyvq a, .s0sd .qrqqxzo a,
.s0sd .ulkc a, .s0sd .gi5qn a,
.s0sd .xz3ky a, .s0sd .btub { color: #8b949e; }
.s0sd .udvyvq a:hover, .s0sd .qrqqxzo a:hover,
.s0sd .ulkc a:hover, .s0sd .gi5qn a:hover { color: var(--accent-light); }
@media (max-width: 640px) {
  .s0sd .y7rw { background: #0d1117; border-top-color: #21262d; }
  .s0sd .y7rw li a { border-bottom-color: #21262d; }
}

/* light: завжди світлий */
.fh53 .hxcbsqcs      { background: #f0f4f8; border-bottom-color: #cbd5e1; }
.fh53 .km4te7 { color: var(--accent); }
.fh53 .y7rw { --msep-color: #475569; }
.fh53 .y7rw a { color: #475569; }
.fh53 .y7rw a:hover { color: var(--accent); }
.fh53 .kh5vi4 { color: #64748b; }
.fh53 .n4fdp { background: #f0f4f8; border-top-color: #cbd5e1; }
.fh53 .ufdvg,
.fh53 .bbhv { color: #64748b; }
.fh53 .udvyvq a, .fh53 .qrqqxzo a,
.fh53 .ulkc a, .fh53 .gi5qn a,
.fh53 .xz3ky a, .fh53 .btub { color: #374151; }
.fh53 .udvyvq a:hover, .fh53 .qrqqxzo a:hover,
.fh53 .ulkc a:hover, .fh53 .gi5qn a:hover { color: var(--accent); }
@media (max-width: 640px) {
  .fh53 .y7rw { background: #f0f4f8; border-top-color: #cbd5e1; }
  .fh53 .y7rw li a { border-bottom-color: #cbd5e1; color: #475569; }
}

/* accent: кольоровий акцентний фон */
.g7yt4 .hxcbsqcs      { background: var(--accent); border-bottom-color: var(--accent-light); }
.g7yt4 .km4te7 { color: #fff; }
.g7yt4 .y7rw { --msep-color: rgba(255,255,255,0.82); }
.g7yt4 .y7rw a { color: rgba(255,255,255,0.82); }
.g7yt4 .y7rw a:hover { color: #fff; }
.g7yt4 .kh5vi4 { color: rgba(255,255,255,0.9); }
.g7yt4 .n4fdp { background: var(--accent); border-top-color: var(--accent-light); }
.g7yt4 .ufdvg,
.g7yt4 .bbhv { color: rgba(255,255,255,0.72); }
.g7yt4 .udvyvq a, .g7yt4 .qrqqxzo a,
.g7yt4 .ulkc a, .g7yt4 .gi5qn a,
.g7yt4 .xz3ky a, .g7yt4 .btub { color: rgba(255,255,255,0.82); }
.g7yt4 .udvyvq a:hover, .g7yt4 .qrqqxzo a:hover,
.g7yt4 .ulkc a:hover, .g7yt4 .gi5qn a:hover { color: #fff; }
@media (max-width: 640px) {
  .g7yt4 .y7rw { background: var(--accent); border-top-color: var(--accent-light); }
  .g7yt4 .y7rw li a { border-bottom-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.82); }
}

/* glass: напівпрозорий з blur */
.aq8j .hxcbsqcs {
  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);
}
.aq8j .n4fdp {
  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) {
  .aq8j .y7rw {
    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 */
.w3x1 .uukgkve { min-height: 52px; height: auto; padding-top: 6px; padding-bottom: 6px; }
.b5gjiu .uukgkve { min-height: 58px; height: auto; padding-top: 8px; padding-bottom: 8px; }
.mjmm .uukgkve { min-height: 72px; height: auto; }
.wktcxd6 .uukgkve { min-height: 84px; height: auto; }

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

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


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

/* ── nav_logo_bg: фон на wrap-блоці (не на img) ─────────────────────────────*/
/* none = без фону (default) */
.lymj, .jh86zmyi {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wsm04ng6 .lymj,
.wsm04ng6 .jh86zmyi { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 8px; padding: 4px; }
.fu1l .lymj,
.fu1l .jh86zmyi { background: linear-gradient(135deg, color-mix(in srgb, var(--grad-start) var(--logo-bg-opacity, 8%), transparent), color-mix(in srgb, var(--grad-end) var(--logo-bg-opacity, 8%), transparent)); border-radius: 8px; padding: 4px; }
.nq9ry .lymj,
.nq9ry .jh86zmyi { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 999px; padding: 4px 8px; }
.qz9t .lymj,
.qz9t .jh86zmyi { background: linear-gradient(135deg, color-mix(in srgb, var(--grad-start) var(--logo-bg-opacity, 8%), transparent), color-mix(in srgb, var(--grad-end) var(--logo-bg-opacity, 8%), transparent)); border-radius: 999px; padding: 4px 8px; }

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

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

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

  /* ховаємо ☰ символ і центруємо кнопку */
  .sb38cg1m .kh5vi4,
  .e9ue89 .kh5vi4,
  .r9pl .kh5vi4,
  .tpk5n .kh5vi4,
  .o2vb .kh5vi4 {
    font-size: 0 !important;
    display: flex !important;
    align-items: center; justify-content: center;
    padding: 0; width: 40px;
  }

  /* базовий ::before */
  .sb38cg1m .kh5vi4::before,
  .e9ue89 .kh5vi4::before,
  .r9pl .kh5vi4::before,
  .tpk5n .kh5vi4::before,
  .o2vb .kh5vi4::before { content: ""; display: block; flex-shrink: 0; }

  /* 2 лінії: повна + 68% */
  .sb38cg1m .kh5vi4::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 лінії рівні */
  .e9ue89 .kh5vi4::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% */
  .r9pl .kh5vi4::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% */
  .tpk5n .kh5vi4::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% */
  .o2vb .kh5vi4::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) {
  .vh94y8ks .kh5vi4 {
    padding: 5px 14px;
  }
  .vh94y8ks .y7rw {
    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;
  }
  .vh94y8ks .y7rw li a {
    border-bottom: none; padding: 10px 22px;
  }
  .vh94y8ks .y7rw li a:hover { background: var(--bg-raised); }
}

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

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

/* overlay: повноекранне меню ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .onmb .kh5vi4 {
    padding: 5px 10px;
  }
  .onmb .y7rw {
    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;
  }
  .onmb .y7rw.wolvza2 { opacity: 1; pointer-events: auto; }
  .onmb .y7rw 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) {
  .z780b1ij     .kh5vi4 { border-radius: 0 !important; }
  .bjz2ut2   .kh5vi4 { border-radius: 8px !important; }
  .cskp74n4 .kh5vi4 { border-radius: 50% !important; }
  .m1gl   .kh5vi4 { border-radius: 999px !important; }
}

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

/* ── star_style: вигляд зірок (showcase + review) ───────────────────────────*/
/* default = accent color (задано в базових стилях .v83yo4 / .vo5odf) */
.u143fi    .v83yo4, .u143fi    .vo5odf { color: #f59e0b; }
.yf9ecqa      .v83yo4 { font-size: 1rem; letter-spacing: 1.5px; }
.yf9ecqa      .vo5odf   { font-size: 1.35rem; }
.skbf    .v83yo4, .skbf    .vo5odf { color: var(--text-muted); opacity: 0.7; letter-spacing: 2px; }
.hm9v89l1     .v83yo4, .hm9v89l1     .vo5odf { color: var(--accent); letter-spacing: 3px; font-size: 0.7rem; }
.dhgw .v83yo4, .dhgw .vo5odf { color: var(--accent); letter-spacing: 2px; }
.gqf5ki9u   .v83yo4, .gqf5ki9u   .vo5odf { color: #e91e63; letter-spacing: 2px; }
.znqrj93  .v83yo4, .znqrj93  .vo5odf { color: var(--accent); letter-spacing: 2px; font-size: 0.65rem; }
.y2di     .v83yo4, .y2di     .vo5odf { color: var(--accent); letter-spacing: 2px; font-size: 0.7rem; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/* ── color scheme ── */
:root {
  --accent:          #8eafcc;
  --accent-light:    #a9cae8;
  --accent-pale:     #bfe1ff;
  --grad-start:      #23455e;
  --grad-end:        #5f809b;
  --bg-page: #0b0f11;
  --bg-surface: #0b0f11;
  --bg-card: #101418;
  --bg-card-inner: #151a1f;
  --bg-raised: #1b2025;
  --bg-hover: #20262c;
  --border: #42494f;
  --border-alt: #70767d;
  --border-section: #42494f;
  --text-primary: #e0e6ee;
  --text-muted: #a5acb3;
  --text-body: #c5c6ca;
  --text-sub: #9c9ea2;
  --text-faint: #686b6e;
  --text-dim: #505356;
  --text-label: #818488;
  --text-value: #b7b9bd;
  --accent-bg:       #0d334b;
  --accent-bg-light: #1b3f57;
  --bg-tip:        #1a2e1a;
  --bg-warning:    #2d1f0e;
  --bg-info:       #1a1f2e;
  --bg-pros:       #1a2e1a;
  --bg-cons:       #2d1a1a;
  --c-pros:        #6ee7b7;
  --c-cons:        #fca5a5;
  --c-pros-label:  #34d399;
  --c-tip-border:  #34d399;
  --c-warn-border: #f59e0b;
  --c-stars:       #f59e0b;
  --c-arrow:       #f59e0b;
  --c-tag-pay:     #6ee7b7;
}
:root { --logo-bg-opacity: 58%; }

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

.shgi9 .qkpl { font-size: 0; width: 1.2rem; flex-shrink: 0; }.shgi9 .qkpl::before {  content: ""; display: inline-block;  font-family: "Font Awesome 6 Free"; font-weight: 900;  font-size: 1.1rem; line-height: 1; }.shgi9 .q6t1mxc     .qkpl::before { content: "";  color: var(--c-tip-border); }.shgi9 .myq5tty .qkpl::before { content: ""; color: var(--c-warn-border); }.shgi9 .sg3b    .qkpl::before { content: ""; color: #60a5fa; }.ey0ji8 .shgi9 .q6t1mxc     .qkpl::before { color: #10b981; }.ey0ji8 .shgi9 .myq5tty .qkpl::before { color: #f43f5e; }.ey0ji8 .shgi9 .sg3b    .qkpl::before { color: #a855f7; }.gt02  .shgi9 .q6t1mxc     .qkpl::before { color: #eab308; }.gt02  .shgi9 .myq5tty .qkpl::before { color: #ef4444; }.gt02  .shgi9 .sg3b    .qkpl::before { color: #f97316; }.dx05  .shgi9 .q6t1mxc     .qkpl::before { color: #38bdf8; }.dx05  .shgi9 .myq5tty .qkpl::before { color: #818cf8; }.dx05  .shgi9 .sg3b    .qkpl::before { color: #2dd4bf; }.xlcm7 .shgi9 .qkpl::before { color: var(--accent-light) !important; }

.c1msgh .r3def li::before, .c1msgh .cceee4b 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; }.c1msgh .r3def li::before { content: ""; }.c1msgh .cceee4b li::before { content: ""; }.c1msgh .p3nqxwr9::before, .c1msgh .ey5in::before {  font-family: "Font Awesome 6 Free"; font-weight: 900;  font-size: 0.85em; margin-right: 5px; line-height: 1; }.c1msgh .p3nqxwr9::before { content: ""; }.c1msgh .ey5in::before { content: ""; }

.j3rjg53i .hbyyg4nr, .j3rjg53i .io7iw { min-height: 780px; }

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

.vb7pop .mqs71::after,.vb7pop .mf2k::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; }

.mxmgqmy::before { content: '—'; }