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

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

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

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

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

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

/* hero-flat: без фону, просто текст на page bg (WP-style) */
.rzg0c {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-page);
  min-height: auto; padding: 48px 0 32px;
  border-bottom: 1px solid var(--border);
}
.rzg0c .fh8h {
  width: 100%; max-width: 1100px; padding: 24px 24px;
}
.rzg0c .mum7boe1 { color: var(--text-primary); text-shadow: none; }
.rzg0c .rgfqq2u3 { color: var(--text-muted); }
.rzg0c .p407 { margin-top: 16px; }
.rzg0c, .rzg0c.z4cjc01 { min-height: auto !important; }
.rzg0c.ue0s .fh8h { text-align: center; }
.rzg0c.r7ttc8f   .fh8h { text-align: left; }
/* flat hero: byline як звичайний текст, не оверлей */
.rzg0c~.j4ia7fs6{position:static!important;left:auto!important;transform:none!important;width:100%!important;max-width:var(--content-mw,1100px)!important;margin:0 auto!important;padding:0 24px 12px!important}
.rzg0c~.j4ia7fs6 .tjhiu2i8{background:transparent!important;color:var(--text-muted)!important;backdrop-filter:none!important;-webkit-backdrop-filter:none!important;padding:0!important;border-radius:0!important;font-size:.8rem}

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

.xwvw36i .ivfw95gs {
  background: none;
}
.xwvw36i .mum7boe1 { color: #fff; }
.xwvw36i .rgfqq2u3 { color: rgba(255,255,255,0.85); }

/* ── Hero anim: split layouts ─────────────────────────────────────────────── */
.zf83d .q0g40n { position: relative; overflow: hidden; }
.zf83d .q0g40n::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;
}
.lccm54qa .q0g40n {
  animation: hg-breathe 7s ease-in-out infinite;
}
.zl6tprf .q0g40n { position: relative; overflow: hidden; }
.zl6tprf .q0g40n::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;
}
.ei4j9y .q0g40n { position: relative; overflow: hidden; }
.ei4j9y .q0g40n::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;
}
.j41v8 .q0g40n {
  animation: hg-fadein 1.2s ease-out both;
}


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

/* Split alignment — всередині text-колонки */
.q0g40n.ue0s .vqxdl { align-items: center; text-align: center; }
.q0g40n.r7ttc8f   .vqxdl { align-items: flex-start; text-align: left; }

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


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

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

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

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

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

/* ── Hero: split-cards ────────────────────────────────────────────────────── */
.wzja7a .y7gfmr {
  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);
}
.kixoc7mw {
  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;
}
.kixoc7mw:last-child { border-bottom: none; }
.kixoc7mw:hover { background: rgba(255,255,255,0.14); }
.gqzjys { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1; }
.l3uyxagw { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.lt4yf3d { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.zfrx { font-weight: 700; font-size: 0.95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.s7vrfo { font-size: 0.82rem; color: rgba(255,255,255,0.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gv5r2 { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.fo2pq8 { font-weight: 800; font-size: 1.3rem; color: var(--accent-pale); }
.fo2pq8 small { font-size: 0.7rem; font-weight: 500; opacity: 0.6; }
.c8nbg7w { font-size: 0.8rem; padding: 6px 14px; white-space: nowrap; }

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

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

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

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


@media (max-width: 700px) {
  .q0g40n { grid-template-columns: 1fr !important; grid-template-areas: "text" !important; }
  .q0g40n .aa6y { display: none !important; }
  .lhmhx .aa6y { display: none !important; }
  .wzja7a .y7gfmr { display: none !important; }
  .p9r2mgl .a1hfb53p { display: none !important; }
  .vqxdl  { padding: 36px 24px; }
  .q0g40n~.j4ia7fs6,.pv9l~.j4ia7fs6{max-width:100%;left:0;right:0;transform:none;padding:0 24px}
  /* cap hero height variants on mobile */
  .z4cjc01, .q0g40n { min-height: 320px !important; }
  /* reduce oversized headings on mobile */
  .mum7boe1 { font-size: clamp(1.7rem, 5.5vw, 2.4rem) !important; }
  /* cards-top: hide on mobile */
  .p9s9g { display: none !important; }
  /* numbered: stack */
  .xqnd9 { flex-direction: column; align-items: center; }
  .envh { width: 100%; max-width: 340px; }
}

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

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

/* rounded */
.roqg3 .prv4ng        { border-radius: 16px; }
.roqg3 .ekq9ik  { border-radius: 16px; }

/* shadow */
.e8ceu .prv4ng         { box-shadow: 0 4px 14px rgba(0,0,0,0.18); border-radius: 8px; }
.e8ceu .ekq9ik   { border-radius: 8px; }


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

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

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

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

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

.paqpozta .vg00:nth-child(even) .yjci9j5u .arm2x8f:nth-child(odd),
.svqgb .vg00:nth-child(even) .yjci9j5u .arm2x8f:nth-child(odd)  { background: var(--bg-card); }
.paqpozta .vg00:nth-child(even) .yjci9j5u .arm2x8f:nth-child(even),
.svqgb .vg00:nth-child(even) .yjci9j5u .arm2x8f:nth-child(even) { background: var(--bg-card-inner); }

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

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

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

/* ── Reviews heading above lead (review_visible=hide variant) ───────────────*/
.jow0t { font-size: 1.35rem; font-weight: 700; color: var(--accent-light); margin-bottom: 12px; }

/* ── Lead & intro/outro ──────────────────────────────────────────────────────*/
.eme0q83 { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 16px; }
@media (max-width: 640px) { .eme0q83 { display: none; } }
.orjf9 {
  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;
}
.oh0t4sb { margin-right: 8px; color: var(--c-arrow); }
/* intro/outro — blended with body text (classes kept for easy re-styling) */
.uwbprf5 { font-size: inherit; color: var(--text-body); margin: 8px 0 16px; }
.g5el0 { font-size: inherit; color: var(--text-body); margin: 16px 0 0; }

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

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

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

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

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

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

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

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

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

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

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

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

/* subs-flat: мінімальний, без фону */
.z305mt .arm2x8f { background: none; border-radius: 0; padding: 12px 0; }
.z305mt .arm2x8f + .arm2x8f { border-top: 1px solid var(--border-section); }
.x0qt2 { color: var(--text-body); margin-bottom: 12px; font-size: inherit; }
.rihc { color: var(--text-body); margin-top: 12px; font-size: inherit; }

/* ── intro_style variants (disabled — all blend with body text now) ──────────
   To re-enable visual distinction, uncomment the blocks below.

.eypec9p .uwbprf5,
.eypec9p .g5el0,
.eypec9p .x0qt2,
.eypec9p .rihc { font-style: normal; color: var(--text-body); }

.ct1v5tfb .uwbprf5,
.ct1v5tfb .g5el0 {
  font-style: italic;
  border-left: 3px solid var(--border-section); padding-left: 12px;
}
.ct1v5tfb .x0qt2,
.ct1v5tfb .rihc {
  font-style: italic;
  border-left: 2px solid var(--border); padding-left: 10px;
}

.vczjfzi .uwbprf5,
.vczjfzi .g5el0,
.vczjfzi .x0qt2,
.vczjfzi .rihc {
  font-style: normal;
  background: var(--bg-raised); border-radius: 6px;
  padding: 10px 14px; color: var(--text-sub);
}
────────────────────────────────────────────────────────────────────────────── */

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

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

.d6yj071     .reyyz2bd { list-style-type: "● "; }
.p2p38o81  .reyyz2bd { list-style-type: "■ "; }
.rpzg .reyyz2bd { list-style-type: "◆ "; }
.ekn4aci    .reyyz2bd { list-style-type: "★ "; }

.d6yj071     .ez830cw3 { list-style-type: "● "; }
.p2p38o81  .ez830cw3 { list-style-type: "■ "; }
.rpzg .ez830cw3 { list-style-type: "◆ "; }
.ekn4aci    .ez830cw3 { list-style-type: "★ "; }

.d6yj071    .reyyz2bd li::marker, .d6yj071    .ez830cw3 li::marker,
.p2p38o81 .reyyz2bd li::marker, .p2p38o81 .ez830cw3 li::marker,
.rpzg .reyyz2bd li::marker, .rpzg .ez830cw3 li::marker,
.ekn4aci   .reyyz2bd li::marker, .ekn4aci   .ez830cw3 li::marker {
  color: var(--accent); font-size: 0.8em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

/* pill = solid but very rounded */
.l6w1md3 .p407 { border-radius: 50px; }
.l6w1md3 .lv61ff  { border-radius: 50px; }
/* btn_pad */
.vge0s6 .p407 { padding-left: 22px; padding-right: 22px; }
.vge0s6 .lv61ff  { padding-left: 12px; padding-right: 12px; }
.i17gu .p407 { padding-left: 44px; padding-right: 44px; }
.i17gu .lv61ff  { padding-left: 24px; padding-right: 24px; }
.s91hhb7 .p407 { padding-left: 56px; padding-right: 56px; }
.s91hhb7 .lv61ff  { padding-left: 32px; padding-right: 32px; }

/* ── btn_icon: SVG-іконки на .p407 і .lv61ff (mask на currentColor) ──────*/
/* ::after — усі іконки після тексту (праворуч) */
.fq3uxe   .p407::after, .fq3uxe   .lv61ff::after,
.wmfufpn .p407::after, .wmfufpn .lv61ff::after,
.zl63o    .p407::after, .zl63o    .lv61ff::after,
.vdok    .p407::after, .vdok    .lv61ff::after,
.qvuiyar    .p407::after, .qvuiyar    .lv61ff::after,
.em06m     .p407::after, .em06m     .lv61ff::after,
.fi1d6ue    .p407::after, .fi1d6ue    .lv61ff::after,
.lcwroopw   .p407::after, .lcwroopw   .lv61ff::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 — кожна іконка */
.fq3uxe .p407::after, .fq3uxe .lv61ff::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");
}
.wmfufpn .p407::after, .wmfufpn .lv61ff::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");
}
.zl63o .p407::after, .zl63o .lv61ff::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");
}
.vdok .p407::after, .vdok .lv61ff::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");
}
.qvuiyar .p407::after, .qvuiyar .lv61ff::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");
}
.em06m .p407::after, .em06m .lv61ff::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");
}
.fi1d6ue .p407::after, .fi1d6ue .lv61ff::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");
}
.lcwroopw .p407::after, .lcwroopw .lv61ff::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 ────────*/
.i5518j   .u0nsqt::after, .i5518j   .k80gq3o::after,
.s02o0 .u0nsqt::after, .s02o0 .k80gq3o::after,
.dcwas    .u0nsqt::after, .dcwas    .k80gq3o::after,
.k3uxezh    .u0nsqt::after, .k3uxezh    .k80gq3o::after,
.x22o    .u0nsqt::after, .x22o    .k80gq3o::after,
.gni4cq     .u0nsqt::after, .gni4cq     .k80gq3o::after,
.sn4ajn    .u0nsqt::after, .sn4ajn    .k80gq3o::after,
.xcle4fe4   .u0nsqt::after, .xcle4fe4   .k80gq3o::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;
}
.i5518j .u0nsqt::after, .i5518j .k80gq3o::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");
}
.s02o0 .u0nsqt::after, .s02o0 .k80gq3o::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");
}
.dcwas .u0nsqt::after, .dcwas .k80gq3o::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");
}
.k3uxezh .u0nsqt::after, .k3uxezh .k80gq3o::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");
}
.x22o .u0nsqt::after, .x22o .k80gq3o::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");
}
.gni4cq .u0nsqt::after, .gni4cq .k80gq3o::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");
}
.sn4ajn .u0nsqt::after, .sn4ajn .k80gq3o::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");
}
.xcle4fe4 .u0nsqt::after, .xcle4fe4 .k80gq3o::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 ─────────────────────────────────────────────────────────*/
.ctacr { display: flex; flex-direction: column; gap: 6px; margin: 28px 0; }


.nmkjqxu {
  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 */
.nmkjqxu > [itemprop="item"] { display: contents; }
.nmkjqxu:hover { background: var(--bg-hover); }
.cctqtjpz {
  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;
}
/* cs_logo_bg variants — override default accent-bg */
.bnv2aj9 .cctqtjpz { background: #1a1a1a; }
.tn16 .cctqtjpz { background: rgba(128,128,128,.12); }
.cbjx0exc .cctqtjpz { background: var(--bg-raised); }
.wgoxt .cctqtjpz { background: transparent; padding: 0; }
.uzijmcsq { max-height: 34px; max-width: 80px; object-fit: contain; }
.ift30ch { font-weight: 700; font-size: .85rem; color: var(--accent-light); }
.a0ytnf { display: flex; align-items: center; gap: 12px; flex-shrink: 1; min-width: 0; }
.gnb2ut { font-weight: 700; font-size: .88rem; color: var(--text-primary); flex-shrink: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.n1i30eie { color: var(--accent); font-size: .8rem; letter-spacing: 1px; flex-shrink: 1; min-width: 0; }
.bxtf { display: flex; flex-direction: column; align-items: center; font-size: .78rem; flex: 1 1 0; min-width: 0; }
.a7v032qb { color: var(--text-label); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.cmhc { color: var(--text-value); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.vsxh3 { margin-left: auto; flex-shrink: 0; white-space: nowrap; }
.vsxh3.lv61ff { padding-left: 16px !important; padding-right: 16px !important; }
/* планшет / мобіль: 2-колонкова сітка вертикальних карток */
@media (max-width: 720px) {
  .ctacr { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .ctacr .nmkjqxu { flex-direction: column; align-items: center; padding: 16px 12px; border-radius: 14px; gap: 8px; }
  .ctacr .a0ytnf { flex-direction: column; align-items: center; gap: 4px; width: 100%; }
  .ctacr .cctqtjpz { width: 100%; min-width: unset; height: 52px; }
  .ctacr .uzijmcsq { max-height: 40px; max-width: 110px; }
  .ctacr .gnb2ut { min-width: unset; text-align: center; white-space: normal; }
  .ctacr .bxtf { flex-direction: row; justify-content: space-between; width: 100%; border-top: 1px solid var(--border); padding-top: 5px; }
  .ctacr .vsxh3 { width: 100%; text-align: center; margin-left: 0; }
  .fj3j .nmkjqxu { row-gap: 8px !important; gap: 8px !important; }
}

/* ── Casino reviews ──────────────────────────────────────────────────────────*/
.vii165n {
  background: var(--bg-card);
  border-radius: 12px; margin: 24px 0; overflow: hidden;
  border: 1px solid var(--border-alt);
}
.hkhufqq {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 24px; background: var(--bg-surface);
}
.zuu25u {
  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;
}
.zuu25u img { max-width: 80px; max-height: 50px; object-fit: contain; }
.wdsy2r94 { color: var(--accent); font-weight: 700; font-size: 0.85rem; text-align: center; }
.jbdlieni { flex: 1; }
.jbdlieni h3 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 4px; }
.w1xj { color: var(--c-stars); font-size: 1.1rem; }
.pozxxpl4 { margin-bottom: 8px; }
.o4qvd { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 0.83rem; color: var(--text-muted); }
.j32ghq70::before   { content: "★ "; color: var(--accent); }
.bowsd0bv::before { content: "↓ "; color: var(--accent); }
.a4r2sr1::before { content: "✦ "; color: var(--accent); }
.upv66 { flex-shrink: 0; }
.ujhsgp7y img.fm0sle { width: 100%; max-height: 240px; object-fit: cover; display: block; }
.qxxu5p9 { padding: 20px 24px; }
.w84c { color: var(--text-muted); margin-bottom: 16px; }
.gvqc4x7 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 14px; }
.cu6up3n, .q8rxdwbh { list-style: none; font-size: 0.9rem; }
.cu6up3n li { color: var(--c-pros); margin-bottom: 4px; }
.q8rxdwbh li { color: var(--c-cons); margin-bottom: 4px; }
/* CSS маркери для pros/cons замість символів в HTML */
.cu6up3n li::before { content: "✓"; margin-right: 5px; }
.q8rxdwbh li::before { content: "✗"; margin-right: 5px; }
.x387w6k1 .cu6up3n li::before { content: "→"; }
.x387w6k1 .q8rxdwbh li::before { content: "–"; }
.pb0l7l8b  .cu6up3n li::before { content: "★"; }
.pb0l7l8b  .q8rxdwbh li::before { content: "✕"; }
.mzagjm85    .cu6up3n li::before { content: "◆"; }
.mzagjm85    .q8rxdwbh li::before { content: "▲"; }
.r3mw69u  .cu6up3n li::before { content: "▶"; }
.r3mw69u  .q8rxdwbh li::before { content: "■"; }
.ya14s { margin-bottom: 8px; font-size: 0.85rem; color: var(--text-muted); }
.tv53f { background: var(--accent-bg); color: var(--accent-light); border-radius: 4px; padding: 2px 8px; margin: 2px 2px 2px 0; display: inline-block; }
.vd7t9c1 { background: var(--bg-pros); color: var(--c-tag-pay); }

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


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

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

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

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

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

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

/* ── Brand card (single brand, two-column hero) ─────────────────────────────*/
/* ═══════════════════════════════════════════════════════════════════════════
   BRAND CARD — shared tokens
   ═══════════════════════════════════════════════════════════════════════════ */
.n9674bp {
  background: var(--bg-card);
  border: 1px solid var(--border-alt);
  border-radius: 12px;
  margin: 28px 0;
  overflow: hidden;
}
.aeregli {
  width: 100px; height: 68px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border-radius: 10px; padding: 8px;
  flex-shrink: 0;
}
.aeregli img { max-width: 100%; max-height: 100%; object-fit: contain; }
.l5o19 { font-size: 1.15rem; font-weight: 700; color: var(--text); }
.efc7xkt { display: flex; align-items: center; gap: 8px; }
.efc7xkt .w1xj { font-size: .95rem; }
.efc7xkt strong { font-size: 1.1rem; color: var(--text); }
.au7ya9 { border-radius: 8px; overflow: hidden; }
.au7ya9 img { width: 100%; display: block; border-radius: 8px; }
.p863 { text-align: center; flex-shrink: 0; }
.y2v6 { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; }
.d9f8z6j { font-size: .82rem; color: var(--text-muted); font-weight: 500; }
.r6fm5xl9 { font-size: .88rem; font-weight: 600; color: var(--text); }
.vd1b2w .r6fm5xl9 { font-size: 1.02rem; font-weight: 700; color: var(--accent); }
.n9674bp .xz0u { gap: 10px; }
.n9674bp .fb9rwd, .n9674bp .eewy { padding: 12px; }
.n9674bp .fb9rwd ul, .n9674bp .eewy ul { margin: 4px 0 0; padding-left: 18px; }
.n9674bp .fb9rwd li, .n9674bp .eewy li { font-size: .85rem; margin-bottom: 3px; }
.mm0yd { font-size: .8rem; color: var(--text-muted); margin-top: 10px; }
.mm0yd strong { color: var(--text-secondary); }
.mm0yd .tv53f { margin: 2px 4px 2px 0; }

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

/* ── LAYOUT 2: hero — full-width screenshot header ────────────────────────── */
.zhds593 {
  position: relative; max-height: 240px; overflow: hidden;
}
.zhds593 > img { width: 100%; display: block; object-fit: cover; min-height: 160px; }
.iwaenfm {
  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;
}
.iwaenfm .aeregli { background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border-radius: 10px; }
.iwaenfm .l5o19 { color: #fff; font-size: 1.25rem; }
.iwaenfm .efc7xkt strong { color: #fff; }
.iwaenfm .efc7xkt .w1xj { filter: brightness(1.2); }
.iwaenfm .p863 { margin-left: auto; white-space: nowrap; }
.ljtdyhp { flex: 1; }
.wrhfl7y1 {
  display: flex; align-items: center; gap: 16px; padding: 20px 24px;
  border-bottom: 1px solid var(--border-alt);
}
.wrhfl7y1 .p863 { margin-left: auto; }
.wvkeeykb { display: flex; flex-direction: column; gap: 16px; padding: 20px 24px; }
.cofh .qh8eg2j {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--border-alt); border-radius: 8px; overflow: hidden;
}
.cofh .y2v6 {
  flex: 1 1 auto; min-width: 120px;
  border-right: 1px solid var(--border-alt); border-bottom: 1px solid var(--border-alt);
}
.cofh .vd1b2w { flex-basis: 100%; background: var(--accent-bg); border-right: none; }
@media (max-width: 720px) {
  .iwaenfm { flex-wrap: wrap; gap: 10px; padding: 12px 16px; }
  .wvkeeykb { padding: 16px; }
  .cofh .y2v6 { min-width: 50%; }
}

/* ── LAYOUT 3: magazine — editorial 3-column ──────────────────────────────── */
.wcjj {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-alt);
}
.ccwe { flex: 1; }
.ccwe .l5o19 { font-size: 1.3rem; }
.ler62 {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
}
.szuh4291 { padding: 16px; border-right: 1px solid var(--border-alt); }
.szuh4291 .au7ya9 { height: 100%; }
.szuh4291 .au7ya9 img { height: 100%; object-fit: cover; }
.oigsnwv { padding: 0; border-right: 1px solid var(--border-alt); }
.oigsnwv .qh8eg2j { display: flex; flex-direction: column; }
.oigsnwv .y2v6 { border-bottom: 1px solid var(--border-alt); }
.oigsnwv .vd1b2w { background: var(--accent-bg); }
.ht242b5 { padding: 16px; }
.ht242b5 .xz0u { grid-template-columns: 1fr; }
.p3hlv1 {
  padding: 12px 24px; border-top: 1px solid var(--border-alt);
  display: flex; flex-wrap: wrap; gap: 12px;
}
@media (max-width: 860px) {
  .ler62 { grid-template-columns: 1fr; }
  .szuh4291 { border-right: none; border-bottom: 1px solid var(--border-alt); }
  .oigsnwv { border-right: none; border-bottom: 1px solid var(--border-alt); }
}
@media (max-width: 540px) {
  .wcjj { flex-wrap: wrap; padding: 16px; }
}

/* ── LAYOUT 4: compact — header bar → screenshot → data ──────────────────── */
.db2rr3 {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 16px 20px; border-bottom: 1px solid var(--border-alt);
}
.xfxse1u {
  display: flex; align-items: center; gap: 12px; flex: 1;
}
.xfxse1u .aeregli { width: 72px; height: 50px; }
.xfxse1u .l5o19 { font-size: 1rem; white-space: nowrap; }
.fmwljv { border-bottom: 1px solid var(--border-alt); max-height: 280px; overflow: hidden; }
.fmwljv img { width: 100%; display: block; object-fit: cover; }
.h98c5gxh {
  display: flex; flex-direction: column; gap: 10px; padding: 14px 16px; overflow: hidden;
}
.usanyoi3 .qh8eg2j { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.usanyoi3 .y2v6 { padding: 0; flex: 0 0 auto; gap: 6px; }
.usanyoi3 .vd1b2w { display: none; }
.usanyoi3 .xz0u { gap: 8px; }
.usanyoi3 .fb9rwd, .usanyoi3 .eewy { padding: 8px; }
@media (max-width: 480px) {
  .db2rr3 { flex-direction: column; align-items: stretch; }
}

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

/* ── LAYOUT 6: scorecard — big score centerpiece ──────────────────────────── */
.sbk1 {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: center;
  border-bottom: 1px solid var(--border-alt);
}
.ld9ngi {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px; text-align: center;
}
.v05a9 {
  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;
}
.ey7ovw { font-size: 1.8rem; font-weight: 800; color: var(--accent); line-height: 1; }
.ey7ovw .quvj { font-size: .9rem; font-weight: 500; color: var(--text-muted); }
.v05a9 .w1xj { font-size: .75rem; margin-top: 2px; }
.r5jhyxpv { padding: 12px; display: flex; align-items: center; flex: 1; }
.r5jhyxpv .au7ya9 { width: 100%; }
.o8a1f {
  padding: 0; border-bottom: 1px solid var(--border-alt);
}
.zep2e .qh8eg2j {
  display: flex; flex-wrap: wrap;
}
.zep2e .y2v6 {
  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;
}
.zep2e .y2v6:last-child { border-right: none; }
.zep2e .d9f8z6j { font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; }
.zep2e .vd1b2w { background: var(--accent-bg); }
.qbvye0w { padding: 16px 20px; display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 720px) {
  .sbk1 { grid-template-columns: 1fr; }
  .v05a9 { width: 100px; height: 100px; margin: 16px auto; }
  .ey7ovw { font-size: 1.4rem; }
  .r5jhyxpv { justify-content: center; }
  .zep2e .y2v6 { min-width: 50%; }
}

/* ── LAYOUT 7: stack — vertical full-width flow ──────────────────────────── */
.kboik {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-alt);
}
.wx38d08l { max-height: 240px; overflow: hidden; border-bottom: 1px solid var(--border-alt); }
.wx38d08l img { width: 100%; display: block; object-fit: cover; }
.ip15dzp { padding: 16px 24px; border-bottom: 1px solid var(--border-alt); }
.lvdd9 .qh8eg2j {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.lvdd9 .y2v6 {
  background: var(--surface); border: 1px solid var(--border-alt);
  border-radius: 20px; padding: 6px 14px; gap: 8px;
}
.lvdd9 .vd1b2w {
  background: var(--accent-bg); border-color: var(--accent-pale);
}
.lvdd9 .xz0u { margin: 0 24px; padding-top: 16px; }
.lvdd9 .mm0yd { padding: 0 24px; }
.dubme { padding: 16px 24px; border-top: 1px solid var(--border-alt); text-align: center; }
.dubme .p863 { display: inline-block; }
@media (max-width: 540px) {
  .kboik { flex-wrap: wrap; padding: 14px 16px; }
  .ip15dzp { padding: 12px 16px; }
  .lvdd9 .xz0u { margin: 0 16px; }
  .lvdd9 .mm0yd { padding: 0 16px; }
  .dubme { padding: 12px 16px; }
}


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

/* grid: showcase в 2-col grid, review компактніший */
.tq95 .ctacr {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 12px;
}
.tq95 .ctacr .nmkjqxu {
  flex-direction: column; align-items: center; padding: 16px 12px; border-radius: 14px; gap: 8px;
}
.tq95 .ctacr .a0ytnf { flex-direction: column; align-items: center; gap: 4px; width: 100%; }
.tq95 .ctacr .cctqtjpz { width: 100%; min-width: unset; height: 52px; }
.tq95 .ctacr .gnb2ut { min-width: unset; text-align: center; white-space: normal; }
.tq95 .ctacr .bxtf {
  flex-direction: row; justify-content: space-between;
  width: 100%; border-top: 1px solid var(--border); padding-top: 5px;
}
.tq95 .ctacr .vsxh3 { width: 100%; text-align: center; margin-left: 0; }
.tq95 .hkhufqq { gap: 14px; }

/* ranked: accent-pill значення + uppercase лейбли (нумерація — через cs_rank) */
.bn8p .a7v032qb {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted);
}
.bn8p .cmhc {
  color: var(--accent); font-weight: 700;
  background: var(--accent-bg); border-radius: 100px;
  padding: 1px 9px; font-size: 0.8rem;
}
.bn8p .n1i30eie { color: var(--accent); }
.bn8p .hkhufqq { background: var(--accent-bg); }
.bn8p .j32ghq70, .bn8p .bowsd0bv, .bn8p .a4r2sr1 {
  background: var(--bg-card); border-radius: 100px; padding: 1px 10px;
  border: 1px solid var(--border);
}

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

/* accent: акцентна смуга зверху на showcase-картках, кольоровий заголовок review */
.b19ldr .nmkjqxu { border-top: 3px solid var(--accent); }
/* casino-accent logo bg тепер через cs_logo_bg варіант */
.b19ldr .vii165n { overflow: hidden; }
.b19ldr .hkhufqq { background: var(--accent-bg); }

/* compact: менші відступи всюди */
.j1mgvz6b .nmkjqxu { padding: 8px 14px; gap: 12px; }
.j1mgvz6b .cctqtjpz { height: 32px; min-width: 52px; }
.j1mgvz6b .uzijmcsq { max-height: 24px; }
.j1mgvz6b .gnb2ut { font-size: 0.82rem; }
.j1mgvz6b .hkhufqq { padding: 14px 18px; gap: 14px; }
.j1mgvz6b .qxxu5p9 { padding: 14px 18px; }
.j1mgvz6b .zuu25u { width: 70px; }
.j1mgvz6b .jbdlieni h3 { font-size: 1.05rem; }

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

/* bordered: таблиця з усіма рамками */
.fj3j .ctacr {
  gap: 0; border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.fj3j .nmkjqxu {
  border-radius: 0; border: none;
  border-bottom: 1px solid var(--border); row-gap: 0; column-gap: 12px;
}
.fj3j .nmkjqxu:last-child { border-bottom: none; }
/* вертикальні межі між колонками */
.fj3j .n1i30eie,
.fj3j .uvas6mlz,
.fj3j .lbs5k { border-left: 1px solid var(--border); padding-left: 10px; }
.fj3j .gnb2ut { padding: 0 10px; }

/* ── casino-named: назва під лого (column) ────────────────────────────────*/
.zfsmjgry .a0ytnf { flex-direction: column; align-items: center; gap: 4px; min-width: 110px; flex-shrink: 0; }
.zfsmjgry .gnb2ut { text-align: center; white-space: normal; font-size: .82rem; line-height: 1.2; }
.zfsmjgry .cctqtjpz { min-width: 80px; height: 52px; }
.zfsmjgry .uzijmcsq { max-height: 42px; max-width: 100px; }

/* ── casino-named-top: назва над лого ─────────────────────────────────────*/
.kfgoark .a0ytnf { flex-direction: column-reverse; align-items: center; gap: 4px; min-width: 110px; flex-shrink: 0; }
.kfgoark .gnb2ut { text-align: center; white-space: normal; font-size: .82rem; line-height: 1.2; }
.kfgoark .cctqtjpz { min-width: 80px; height: 52px; }
.kfgoark .uzijmcsq { max-height: 42px; max-width: 100px; }

/* ── casino-wide: високі горизонтальні картки з великим лого ───────────────*/
.bh74bq .ctacr { gap: 12px; }
.bh74bq .nmkjqxu {
  padding: 18px 24px; gap: 20px; border-radius: 12px;
  min-height: 80px;
}
.bh74bq .cctqtjpz {
  min-width: 90px; height: 64px; padding: 6px 12px; border-radius: 10px;
}
.bh74bq .uzijmcsq { max-height: 52px; max-width: 120px; }
.bh74bq .gnb2ut { font-size: 1rem; }
.bh74bq .bxtf { font-size: .85rem; }
.bh74bq .cmhc { font-size: .9rem; }
.bh74bq .vsxh3.lv61ff { padding: 10px 24px !important; font-size: .9rem; }

/* ── casino-jumbo: дуже великі картки, лого + інтерфейс скриншот ──────────*/
.u6vpz8bw .ctacr { gap: 16px; }
.u6vpz8bw .nmkjqxu {
  padding: 24px 28px; gap: 24px; border-radius: 14px;
  min-height: 100px; border-width: 2px;
}
.u6vpz8bw .cctqtjpz {
  min-width: 110px; height: 80px; padding: 8px 14px; border-radius: 12px;
  background: var(--bg-raised);
}
.u6vpz8bw .uzijmcsq { max-height: 64px; max-width: 140px; }
.u6vpz8bw .gnb2ut { font-size: 1.1rem; font-weight: 800; }
.u6vpz8bw .n1i30eie { font-size: .95rem; letter-spacing: 2px; }
.u6vpz8bw .bxtf { font-size: .9rem; }
.u6vpz8bw .cmhc { font-size: .95rem; font-weight: 700; }
.u6vpz8bw .a7v032qb { font-size: .75rem; text-transform: uppercase; letter-spacing: .04em; }
.u6vpz8bw .vsxh3.lv61ff { padding: 12px 32px !important; font-size: .95rem; font-weight: 700; }

/* ── fullrow: мобіль — 1 картка в ряд, ширша ─────────────────────────────*/
@media (max-width: 720px) {
  .jjxforr .ctacr {
    grid-template-columns: 1fr;
  }
}

/* ── cs_cols: feature — бонус-колонка виділена як головна ──────────────────*/
.c2e0kii3 .uvas6mlz { flex: 1.8; }
.c2e0kii3 .uvas6mlz .cmhc {
  font-size: 0.88rem; font-weight: 700; color: var(--accent);
}
.c2e0kii3 .uvas6mlz .a7v032qb { font-weight: 700; color: var(--text-primary); }
.c2e0kii3 .aa9pkat,
.c2e0kii3 .pp078f,
.c2e0kii3 .n8g71 { flex: 0.75; opacity: 0.65; }

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

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

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

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

/* score в оглядах — ховаємо зірки */
.cka0r1 .pozxxpl4 .w1xj,
.pbj4bm .pozxxpl4 .w1xj,
.xtnp .pozxxpl4 .w1xj { display: none; }

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

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

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

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

/* ── Sections ────────────────────────────────────────────────────────────────*/
.vg00 { margin-bottom: 0; }
.arsf h2.o49p95 { color: var(--accent-light); border-color: var(--accent); }
.pm5t h2.o49p95 { color: var(--accent-light); border-color: var(--accent); }

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

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

/* vivid: смарагд / рожевий / фіолетовий */
.vmw5kd1 .eq02b     { background: #052e16; border-color: #10b981; }
.vmw5kd1 .u491aw { background: #2d0a1e; border-color: #f43f5e; }
.vmw5kd1 .mml7dze    { background: #1e1036; border-color: #a855f7; }
.vmw5kd1 .dpse strong  { color: #f1f5f9; }
.vmw5kd1 .dpse p       { color: #cbd5e1; }
.vmw5kd1 .mmrw    .eq02b     .wjj58xg::before,
.vmw5kd1 .xkbb1b  .eq02b     .wjj58xg::before,
.vmw5kd1 .b8cs8cea  .eq02b     .wjj58xg::before,
.vmw5kd1 .v9gs55 .eq02b     .wjj58xg::before { color: #10b981; }
.vmw5kd1 .mmrw    .u491aw .wjj58xg::before,
.vmw5kd1 .xkbb1b  .u491aw .wjj58xg::before,
.vmw5kd1 .b8cs8cea  .u491aw .wjj58xg::before,
.vmw5kd1 .v9gs55 .u491aw .wjj58xg::before { color: #f43f5e; }
.vmw5kd1 .mmrw    .mml7dze    .wjj58xg::before,
.vmw5kd1 .xkbb1b  .mml7dze    .wjj58xg::before,
.vmw5kd1 .b8cs8cea  .mml7dze    .wjj58xg::before,
.vmw5kd1 .v9gs55 .mml7dze    .wjj58xg::before { color: #a855f7; }

/* warm: жовтий / червоний / помаранчевий */
.wd1htjrp .eq02b     { background: #2d2000; border-color: #eab308; }
.wd1htjrp .u491aw { background: #2d0b0b; border-color: #ef4444; }
.wd1htjrp .mml7dze    { background: #2d1600; border-color: #f97316; }
.wd1htjrp .dpse strong  { color: #f1f5f9; }
.wd1htjrp .dpse p       { color: #cbd5e1; }
.wd1htjrp .mmrw    .eq02b     .wjj58xg::before,
.wd1htjrp .xkbb1b  .eq02b     .wjj58xg::before,
.wd1htjrp .b8cs8cea  .eq02b     .wjj58xg::before,
.wd1htjrp .v9gs55 .eq02b     .wjj58xg::before { color: #eab308; }
.wd1htjrp .mmrw    .u491aw .wjj58xg::before,
.wd1htjrp .xkbb1b  .u491aw .wjj58xg::before,
.wd1htjrp .b8cs8cea  .u491aw .wjj58xg::before,
.wd1htjrp .v9gs55 .u491aw .wjj58xg::before { color: #ef4444; }
.wd1htjrp .mmrw    .mml7dze    .wjj58xg::before,
.wd1htjrp .xkbb1b  .mml7dze    .wjj58xg::before,
.wd1htjrp .b8cs8cea  .mml7dze    .wjj58xg::before,
.wd1htjrp .v9gs55 .mml7dze    .wjj58xg::before { color: #f97316; }

/* cool: блакитний / індиго / бірюзовий */
.ei70iu .eq02b     { background: #0c1a2e; border-color: #38bdf8; }
.ei70iu .u491aw { background: #12103a; border-color: #818cf8; }
.ei70iu .mml7dze    { background: #0a2020; border-color: #2dd4bf; }
.ei70iu .dpse strong  { color: #f1f5f9; }
.ei70iu .dpse p       { color: #cbd5e1; }
.ei70iu .mmrw    .eq02b     .wjj58xg::before,
.ei70iu .xkbb1b  .eq02b     .wjj58xg::before,
.ei70iu .b8cs8cea  .eq02b     .wjj58xg::before,
.ei70iu .v9gs55 .eq02b     .wjj58xg::before { color: #38bdf8; }
.ei70iu .mmrw    .u491aw .wjj58xg::before,
.ei70iu .xkbb1b  .u491aw .wjj58xg::before,
.ei70iu .b8cs8cea  .u491aw .wjj58xg::before,
.ei70iu .v9gs55 .u491aw .wjj58xg::before { color: #818cf8; }
.ei70iu .mmrw    .mml7dze    .wjj58xg::before,
.ei70iu .xkbb1b  .mml7dze    .wjj58xg::before,
.ei70iu .b8cs8cea  .mml7dze    .wjj58xg::before,
.ei70iu .v9gs55 .mml7dze    .wjj58xg::before { color: #2dd4bf; }

/* accent: використовує динамічний акцент */
.fhzl .eq02b     { background: var(--accent-bg); border-color: var(--accent); }
.fhzl .u491aw { background: var(--accent-bg-light); border-color: var(--accent-light); }
.fhzl .mml7dze    { background: var(--accent-bg); border-color: var(--accent-pale); }
.fhzl .mmrw    .wjj58xg::before,
.fhzl .xkbb1b  .wjj58xg::before,
.fhzl .b8cs8cea  .wjj58xg::before,
.fhzl .v9gs55 .wjj58xg::before { color: var(--accent-light) !important; }

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

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

/* classic — фіксовані контрастні кольори незалежно від акценту */
.sws1qj .fb9rwd ul li,
.sws1qj .cu6up3n li         { color: #4ade80; }
.sws1qj .fb9rwd .yqc4l { color: #22c55e; }
.sws1qj .eewy ul li,
.sws1qj .q8rxdwbh li         { color: #f87171; }
.sws1qj .eewy .h6xqoc { color: #ef4444; }

/* blue: синій pros / amber cons */
.p7l33mfu .fb9rwd { background: #0c1a2e; }
.p7l33mfu .eewy { background: #2d1f00; }
.p7l33mfu .fb9rwd .yqc4l { color: #93c5fd; }
.p7l33mfu .eewy .h6xqoc { color: #fcd34d; }
.p7l33mfu .fb9rwd ul li,
.p7l33mfu .cu6up3n li            { color: #bfdbfe; }
.p7l33mfu .eewy ul li,
.p7l33mfu .q8rxdwbh li            { color: #fde68a; }

/* accent: label акцентний, текст завжди читабельний */
.r2fgqs .fb9rwd { background: var(--accent-bg); }
.r2fgqs .eewy { background: var(--accent-bg-light); }
.r2fgqs .fb9rwd .yqc4l { color: var(--accent-pale); }
.r2fgqs .eewy .h6xqoc { color: var(--accent-light); }
.r2fgqs .fb9rwd ul li,
.r2fgqs .cu6up3n li          { color: var(--text-body); }
.r2fgqs .eewy ul li,
.r2fgqs .q8rxdwbh li          { color: var(--text-body); }

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

/* check: ✓ / ✗ */
.ekilf .yqc4l::before { content: "✓ "; }
.ekilf .h6xqoc::before { content: "✗ "; }

/* arrows: → / ← */
.x387w6k1 .yqc4l::before { content: "→ "; }
.x387w6k1 .h6xqoc::before { content: "← "; }

/* marks: ★ / ✕ */
.pb0l7l8b .yqc4l::before { content: "★ "; }
.pb0l7l8b .h6xqoc::before { content: "✕ "; }

/* geo: ◆ / ▲ */
.mzagjm85 .yqc4l::before { content: "◆ "; }
.mzagjm85 .h6xqoc::before { content: "▲ "; }

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

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

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

/* topbar: смуга зверху */
.b2fqtkwq .dpse { border-left: none; border-top: 4px solid; border-radius: 0 0 8px 8px; }
.b2fqtkwq .eq02b     { border-top-color: var(--c-tip-border); }
.b2fqtkwq .u491aw { border-top-color: var(--c-warn-border); }
.b2fqtkwq .mml7dze    { border-top-color: #60a5fa; }

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

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

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

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

.mmrw .wjj58xg,
.xkbb1b .wjj58xg,
.b8cs8cea .wjj58xg,
.v9gs55 .wjj58xg { font-size: 0; width: 1.1rem; flex-shrink: 0; }

.mmrw .wjj58xg::before,
.xkbb1b .wjj58xg::before,
.b8cs8cea .wjj58xg::before,
.v9gs55 .wjj58xg::before {
  display: block; font-size: 1.15rem; line-height: 1.3; font-style: normal;
}

/* geo: ✦ ▲ ◉ */
.mmrw .eq02b     .wjj58xg::before { content: "✦"; color: var(--c-tip-border); }
.mmrw .u491aw .wjj58xg::before { content: "▲"; color: var(--c-warn-border); }
.mmrw .mml7dze    .wjj58xg::before { content: "◉"; color: #60a5fa; }

/* marks: ★ ◆ ● */
.xkbb1b .eq02b     .wjj58xg::before { content: "★"; color: var(--c-tip-border); }
.xkbb1b .u491aw .wjj58xg::before { content: "◆"; color: var(--c-warn-border); }
.xkbb1b .mml7dze    .wjj58xg::before { content: "●"; color: #60a5fa; }

/* sharp: ▶ ■ ▸ */
.b8cs8cea .eq02b     .wjj58xg::before { content: "▶"; color: var(--c-tip-border); }
.b8cs8cea .u491aw .wjj58xg::before { content: "■"; color: var(--c-warn-border); }
.b8cs8cea .mml7dze    .wjj58xg::before { content: "▸"; color: #60a5fa; }

/* arrows: → ⬥ ◈ */
.v9gs55 .eq02b     .wjj58xg::before { content: "→"; color: var(--c-tip-border); }
.v9gs55 .u491aw .wjj58xg::before { content: "⬥"; color: var(--c-warn-border); }
.v9gs55 .mml7dze    .wjj58xg::before { content: "◈"; color: #60a5fa; }

/* ── shadow variant ──────────────────────────────────────────────────────────*/
.qu9gdv76 .ikwea .arm2x8f,
.qu9gdv76 .yjci9j5u .arm2x8f  { box-shadow: 0 2px 8px rgba(0,0,0,0.22); }
.qu9gdv76 .v7kklif                { box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
.qu9gdv76 .nmkjqxu                { box-shadow: 0 4px 12px rgba(0,0,0,0.28); }
.qu9gdv76 .vii165n            { box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.qu9gdv76 .l659qgbo          { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }
.qu9gdv76 .aq7h                    { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }

/* shadow-none: скидаємо будь-які тіні */
.fn5qob .ikwea .arm2x8f,
.fn5qob .yjci9j5u .arm2x8f,
.fn5qob .v7kklif,
.fn5qob .nmkjqxu,
.fn5qob .vii165n,
.fn5qob .l659qgbo,
.fn5qob .aq7h,
.fn5qob .vknu .dpse { box-shadow: none; }

/* ── text_size variants ──────────────────────────────────────────────────────*/
.oyerq   body, .oyerq   { font-size: 0.9rem; }
.oyerq   .tub2r, .oyerq .x0qt2, .oyerq .rihc,
.oyerq   .uwbprf5, .oyerq .g5el0 { font-size: 0.9rem; }
.oyerq   .reyyz2bd, .oyerq .pnb6z { font-size: 0.9rem; }

.i1srp   .tub2r, .i1srp .x0qt2, .i1srp .rihc,
.i1srp   .uwbprf5, .i1srp .g5el0 { font-size: 0.9rem; }
.i1srp   .reyyz2bd, .i1srp .pnb6z { font-size: 0.9rem; }

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

.w9l5dt   .tub2r, .w9l5dt .x0qt2, .w9l5dt .rihc,
.w9l5dt   .uwbprf5, .w9l5dt .g5el0 { font-size: 1.08rem; }
.w9l5dt   .reyyz2bd, .w9l5dt .pnb6z { font-size: 1.05rem; }
.w9l5dt   .zqhsc { font-size: 0.97rem; }

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

/* large */
.oxsa .mum7boe1      { font-size: 3.2rem; }
.oxsa h2.o49p95 { font-size: 1.9rem; }
.oxsa h3.qz1fkt1     { font-size: 1.4rem; }

/* display */
.r6t0996j .mum7boe1      { font-size: 3.8rem; }
.r6t0996j h2.o49p95 { font-size: 2.2rem; }
.r6t0996j h3.qz1fkt1     { font-size: 1.6rem; }

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

/* Спільна база: abs-позиція на межі між секціями */
.r4ih   .vg00 + .vg00::before,
.jqx1du  .vg00 + .vg00::before,
.wu3xr1   .vg00 + .vg00::before,
.bf19pu   .vg00 + .vg00::before,
.rwv5   .vg00 + .vg00::before,
.ujwsze .vg00 + .vg00::before {
  position: absolute; top: -1px; left: 0; right: 0;
  transform: translateY(-50%);
}

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

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

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

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

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

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

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

/* section_bg=stripe: парні секції мають bg-card */
.svqgb .ch4yl0d .vg00:nth-child(even)::before,
.svqgb .wh4n11h .vg00:nth-child(even)::before,
.svqgb .xii6i .vg00:nth-child(even)::before { background: var(--bg-card); }

/* wave-a: плавна S-хвиля (1 гребінь) */
.ch4yl0d .vg00 + .vg00::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 гребені */
.wh4n11h .vg00 + .vg00::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: глибока дуга */
.xii6i .vg00 + .vg00::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 у формі хвилі */
.gjcmpmm .tav9mun8,
.ndxkq .tav9mun8,
.grljfmg .tav9mun8 { overflow: hidden; }

/* wave: додатковий простір щоб хвиля не закривала CTA */
.gjcmpmm .fh8h,
.ndxkq .fh8h { margin-bottom: 60px; }
.grljfmg .fh8h { margin-bottom: 70px; }
.gjcmpmm .vqxdl,
.ndxkq .vqxdl { padding-bottom: 60px; }
.grljfmg .vqxdl { padding-bottom: 70px; }

.gjcmpmm .tav9mun8::before,
.ndxkq .tav9mun8::before,
.grljfmg .tav9mun8::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 гребінь) */
.gjcmpmm .tav9mun8::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 гребені */
.ndxkq .tav9mun8::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: глибока дуга */
.grljfmg .tav9mun8::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 */
.lu413 .ivfw95gs { background: linear-gradient(225deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%); }
.ulzf .ivfw95gs { background: linear-gradient(45deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 100%); }
.jr9qz  .ivfw95gs { background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%); }
.lwip  .ivfw95gs { background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%); }

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

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

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

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

/* hg-solid: суцільний колір без градієнту */
.bq6s .xwvw36i { background: var(--accent); }
.bq6s .xwvw36i .ivfw95gs { background: none; }
.bq6s .ysa02m3w { background: var(--accent); }
.bq6s .q0g40n { background: var(--accent-bg); }
.bq6s .ivfw95gs { background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%); }


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

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

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

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

/* Великі блочні елементи — clear float щоб не стискались */
.f9t2 .qfr01u,
.f9t2 .ctacr,
.dfm79 .qfr01u,
.dfm79 .ctacr,
.rfrcrbow .qfr01u,
.rfrcrbow .ctacr { clear: both; }

/* Маркери списків не мають налазити на float-картинку */
.f9t2 .reyyz2bd,
.f9t2 .pnb6z,
.dfm79 .reyyz2bd,
.dfm79 .pnb6z,
.rfrcrbow .reyyz2bd,
.rfrcrbow .pnb6z { overflow: hidden; }


@media (max-width: 640px) {
  .f9t2 .prv4ng,
  .dfm79 .prv4ng,
  .rfrcrbow .prv4ng { float: none; width: 100%; margin: 0 0 16px 0; }
}

/* ── content_width: ширина контентного контейнера ───────────────────────────*/
/* default = 1100px (задано в .s0vg1, .trjmhd, .vjlj7h) */
.jr3a6 .s0vg1,
.jr3a6 .trjmhd,
.jr3a6 .vjlj7h  { max-width: 1100px; }
.jr3a6 { --content-mw: 1100px; }
.sqmm1a .s0vg1,
.sqmm1a .trjmhd,
.sqmm1a .vjlj7h  { max-width: 1200px; }
.sqmm1a { --content-mw: 1200px; }
.e1cmj .s0vg1,
.e1cmj .trjmhd,
.e1cmj .vjlj7h  { max-width: 1320px; }
.e1cmj { --content-mw: 1320px; }

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

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

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

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

/* content-width: above — обидва класи на <body>, тому без пробілу */
.jr3a6.yrv5 .lq149e { max-width: 1100px; }
.sqmm1a.yrv5 .lq149e { max-width: 1200px; }
.e1cmj.yrv5 .lq149e { max-width: 1320px; }
/* float — bc-float-wrap окремий елемент, тому з пробілом */
.jr3a6 .qwshv3w { max-width: 1100px; }
.sqmm1a .qwshv3w { max-width: 1200px; }
.e1cmj .qwshv3w { max-width: 1320px; }

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

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

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

/* ── font_weight: жирність тексту ────────────────────────────────────────────*/
/* fw-300: тонкий */
.zosnwm { font-weight: 300; }
.zosnwm h2.o49p95 { font-weight: 600; }
.zosnwm h3.qz1fkt1     { font-weight: 600; }
/* fw-400: default — без override */
/* fw-500: medium */
.n8vzaw { font-weight: 500; }
.n8vzaw h2.o49p95 { font-weight: 800; }
.n8vzaw h3.qz1fkt1     { font-weight: 700; }
/* fw-600: semibold */
.eeume1 { font-weight: 600; }
.eeume1 h2.o49p95 { font-weight: 900; }
.eeume1 h3.qz1fkt1     { font-weight: 800; }
.eeume1 .dpse strong,
.eeume1 .dpse strong { font-weight: 600; }
/* .eeume1 .x0qt2, .eeume1 .uwbprf5 { font-weight: 600; } */

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

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

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

/* minimal */
.bv16c .vjlj7h { text-align: center; }
.bv16c .rpxuuzk6 { justify-content: center; margin-bottom: 16px; }
.bv16c .n0tdr { margin-top: 0; }

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

/* mobile footer */
@media (max-width: 640px) {
  .vjlj7h { padding-left: 16px; padding-right: 16px; }
  .rkjbm .vjlj7h { padding: 20px 16px; }
  .rpxuuzk6 { gap: 4px 12px; }
  .n0tdr { font-size: 0.78rem; }
}


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


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

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

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

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

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

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

/* dark: завжди темний, незалежно від теми */
.dditp .cqj0h      { background: #0d1117; border-bottom-color: #21262d; }
.dditp .fhrhpfv { color: var(--accent-light); }
.dditp .arird8sr { --msep-color: #8b949e; }
.dditp .arird8sr a { color: #8b949e; }
.dditp .arird8sr a:hover { color: var(--accent-light); }
.dditp .a4mvu8l { color: #8b949e; }
.dditp .x8xgs { background: #0d1117; border-top-color: #21262d; }
.dditp .n0tdr,
.dditp .bmvr4y8j { color: #6e7681; }
.dditp .a39pw a, .dditp .rpxuuzk6 a,
.dditp .vm7ga a, .dditp .amduoy9 a,
.dditp .yh4va a, .dditp .c6up { color: #8b949e; }
.dditp .a39pw a:hover, .dditp .rpxuuzk6 a:hover,
.dditp .vm7ga a:hover, .dditp .amduoy9 a:hover { color: var(--accent-light); }
@media (max-width: 640px) {
  .dditp .arird8sr { background: #0d1117; border-top-color: #21262d; }
  .dditp .arird8sr li a { border-bottom-color: #21262d; }
}

/* light: завжди світлий */
.z9qgc .cqj0h      { background: #f0f4f8; border-bottom-color: #cbd5e1; }
.z9qgc .fhrhpfv { color: var(--accent); }
.z9qgc .arird8sr { --msep-color: #475569; }
.z9qgc .arird8sr a { color: #475569; }
.z9qgc .arird8sr a:hover { color: var(--accent); }
.z9qgc .a4mvu8l { color: #64748b; }
.z9qgc .x8xgs { background: #f0f4f8; border-top-color: #cbd5e1; }
.z9qgc .n0tdr,
.z9qgc .bmvr4y8j { color: #64748b; }
.z9qgc .a39pw a, .z9qgc .rpxuuzk6 a,
.z9qgc .vm7ga a, .z9qgc .amduoy9 a,
.z9qgc .yh4va a, .z9qgc .c6up { color: #374151; }
.z9qgc .a39pw a:hover, .z9qgc .rpxuuzk6 a:hover,
.z9qgc .vm7ga a:hover, .z9qgc .amduoy9 a:hover { color: var(--accent); }
@media (max-width: 640px) {
  .z9qgc .arird8sr { background: #f0f4f8; border-top-color: #cbd5e1; }
  .z9qgc .arird8sr li a { border-bottom-color: #cbd5e1; color: #475569; }
}

/* accent: кольоровий акцентний фон */
.jjnkeojq .cqj0h      { background: var(--accent); border-bottom-color: var(--accent-light); }
.jjnkeojq .fhrhpfv { color: #fff; }
.jjnkeojq .arird8sr { --msep-color: rgba(255,255,255,0.82); }
.jjnkeojq .arird8sr a { color: rgba(255,255,255,0.82); }
.jjnkeojq .arird8sr a:hover { color: #fff; }
.jjnkeojq .a4mvu8l { color: rgba(255,255,255,0.9); }
.jjnkeojq .x8xgs { background: var(--accent); border-top-color: var(--accent-light); }
.jjnkeojq .n0tdr,
.jjnkeojq .bmvr4y8j { color: rgba(255,255,255,0.72); }
.jjnkeojq .a39pw a, .jjnkeojq .rpxuuzk6 a,
.jjnkeojq .vm7ga a, .jjnkeojq .amduoy9 a,
.jjnkeojq .yh4va a, .jjnkeojq .c6up { color: rgba(255,255,255,0.82); }
.jjnkeojq .a39pw a:hover, .jjnkeojq .rpxuuzk6 a:hover,
.jjnkeojq .vm7ga a:hover, .jjnkeojq .amduoy9 a:hover { color: #fff; }
@media (max-width: 640px) {
  .jjnkeojq .arird8sr { background: var(--accent); border-top-color: var(--accent-light); }
  .jjnkeojq .arird8sr li a { border-bottom-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.82); }
}

/* glass: напівпрозорий з blur */
.yl11 .cqj0h {
  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);
}
.yl11 .x8xgs {
  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) {
  .yl11 .arird8sr {
    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 */
.u9kkwk .k2766phh { min-height: 52px; height: auto; padding-top: 6px; padding-bottom: 6px; }
.j5eftr68 .k2766phh { min-height: 58px; height: auto; padding-top: 8px; padding-bottom: 8px; }
.kta3eia .k2766phh { min-height: 72px; height: auto; }
.dhj96z2p .k2766phh { min-height: 84px; height: auto; }

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

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


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

/* ── nav_logo_bg: фон на wrap-блоці (не на img) ─────────────────────────────*/
/* none = без фону (default) */
.b0go9ue, .zpgruo0 {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fb34fq8 .b0go9ue,
.fb34fq8 .zpgruo0 { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 8px; padding: 4px; }
.wcbzu51 .b0go9ue,
.wcbzu51 .zpgruo0 { 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; }
.hadsbp .b0go9ue,
.hadsbp .zpgruo0 { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 999px; padding: 4px 8px; }
.mvkqbu0 .b0go9ue,
.mvkqbu0 .zpgruo0 { 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 */
.fyditf8   .arird8sr a { font-weight: 500; }
.ntt6bfi9 .arird8sr a { font-weight: 600; }
.asmlo1j     .arird8sr a { font-weight: 700; }
.b0gek9f    .arird8sr a { font-weight: 800; letter-spacing: 0.01em; }

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

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

  /* ховаємо ☰ символ і центруємо кнопку */
  .rhhnr .a4mvu8l,
  .u3wv .a4mvu8l,
  .jmdec .a4mvu8l,
  .nib11j .a4mvu8l,
  .gbtlgm .a4mvu8l {
    font-size: 0 !important;
    display: flex !important;
    align-items: center; justify-content: center;
    padding: 0; width: 40px;
  }

  /* базовий ::before */
  .rhhnr .a4mvu8l::before,
  .u3wv .a4mvu8l::before,
  .jmdec .a4mvu8l::before,
  .nib11j .a4mvu8l::before,
  .gbtlgm .a4mvu8l::before { content: ""; display: block; flex-shrink: 0; }

  /* 2 лінії: повна + 68% */
  .rhhnr .a4mvu8l::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 лінії рівні */
  .u3wv .a4mvu8l::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% */
  .jmdec .a4mvu8l::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% */
  .nib11j .a4mvu8l::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% */
  .gbtlgm .a4mvu8l::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) {
  .eawp1k .a4mvu8l {
    padding: 5px 14px;
  }
  .eawp1k .arird8sr {
    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;
  }
  .eawp1k .arird8sr li a {
    border-bottom: none; padding: 10px 22px;
  }
  .eawp1k .arird8sr li a:hover { background: var(--bg-raised); }
}

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

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

/* overlay: повноекранне меню ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .oa0g .a4mvu8l {
    padding: 5px 10px;
  }
  .oa0g .arird8sr {
    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;
  }
  .oa0g .arird8sr.uz89n0b { opacity: 1; pointer-events: auto; }
  .oa0g .arird8sr 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) {
  .c2h38     .a4mvu8l { border-radius: 0 !important; }
  .poyai   .a4mvu8l { border-radius: 8px !important; }
  .gkqj0jv2 .a4mvu8l { border-radius: 50% !important; }
  .n5koa98s   .a4mvu8l { border-radius: 999px !important; }
}

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

/* ── star_style: вигляд зірок (showcase + review) ───────────────────────────*/
/* default = accent color (задано в базових стилях .n1i30eie / .w1xj) */
.lkec    .n1i30eie, .lkec    .w1xj { color: #f59e0b; }
.lu5e      .n1i30eie { font-size: 1rem; letter-spacing: 1.5px; }
.lu5e      .w1xj   { font-size: 1.35rem; }
.d782    .n1i30eie, .d782    .w1xj { color: var(--text-muted); opacity: 0.7; letter-spacing: 2px; }
.sx35fa7     .n1i30eie, .sx35fa7     .w1xj { color: var(--accent); letter-spacing: 3px; font-size: 0.7rem; }
.gcmtsj .n1i30eie, .gcmtsj .w1xj { color: var(--accent); letter-spacing: 2px; }
.pjr1   .n1i30eie, .pjr1   .w1xj { color: #e91e63; letter-spacing: 2px; }
.wi9jaeji  .n1i30eie, .wi9jaeji  .w1xj { color: var(--accent); letter-spacing: 2px; font-size: 0.65rem; }
.jagw4i3z     .n1i30eie, .jagw4i3z     .w1xj { color: var(--accent); letter-spacing: 2px; font-size: 0.7rem; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ── Byline slots — position control ── */
.agg018n{display:none}
.agg018n:empty,.tjhiu2i8:empty{display:none}
.kpcndb{position:relative;overflow:visible}

/* hero slot — shown for all hero positions */
.ydwy96 .j4ia7fs6,.d8mgtpeo .j4ia7fs6,
.tld9ta .j4ia7fs6,.ve6grhg .j4ia7fs6,
.xmzf .j4ia7fs6,.nk8g2cc1 .j4ia7fs6{display:block}
.o8tq39kl .lfhyn{display:block}

/* shared overlay: centered container matching hero-content width (always 1100px) */
.ydwy96 .j4ia7fs6,.d8mgtpeo .j4ia7fs6,
.tld9ta .j4ia7fs6,.ve6grhg .j4ia7fs6,
.xmzf .j4ia7fs6{position:absolute;z-index:3;left:50%;transform:translateX(-50%);width:100%;max-width:1100px;padding:0 24px;box-sizing:border-box}
/* overlay byline badge */
.ydwy96 .j4ia7fs6 .tjhiu2i8,.d8mgtpeo .j4ia7fs6 .tjhiu2i8,
.tld9ta .j4ia7fs6 .tjhiu2i8,.ve6grhg .j4ia7fs6 .tjhiu2i8,
.xmzf .j4ia7fs6 .tjhiu2i8{margin:0;font-size:.75rem;opacity:1;color:#fff;background:color-mix(in srgb, var(--accent) 35%, rgba(0,0,0,.45));backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);padding:5px 12px;border-radius:6px;display:inline-flex;width:auto}
/* overlay positions: strip per-date backgrounds and borders — container badge is enough */
.ydwy96 .urxs15,.d8mgtpeo .urxs15,
.tld9ta .urxs15,.ve6grhg .urxs15,
.xmzf .urxs15{background:transparent!important;border:none!important;padding:0;border-radius:0;color:inherit!important}
/* top positions */
.ydwy96 .j4ia7fs6,.d8mgtpeo .j4ia7fs6{top:12px}
.ydwy96 .j4ia7fs6 .tjhiu2i8{margin-right:auto}
.d8mgtpeo .j4ia7fs6 .tjhiu2i8{margin-left:auto}
.d8mgtpeo .j4ia7fs6{text-align:right}
/* bottom positions */
.tld9ta .j4ia7fs6,.ve6grhg .j4ia7fs6{bottom:12px}
.tld9ta .j4ia7fs6 .tjhiu2i8{margin-right:auto}
.ve6grhg .j4ia7fs6 .tjhiu2i8{margin-left:auto}
.ve6grhg .j4ia7fs6{text-align:right}
/* center overlay at bottom of hero */
.xmzf .j4ia7fs6{bottom:16px}
.xmzf .j4ia7fs6 .tjhiu2i8{margin:0 auto}

/* hero-bottom: below hero, matches page-wrap width */
.nk8g2cc1 .j4ia7fs6{max-width:var(--content-mw,1100px);margin:0 auto;padding:8px 24px}
.nk8g2cc1 .j4ia7fs6 .tjhiu2i8{margin:0}
/* hero-bottom + split: align to text column start */
.nk8g2cc1 .q0g40n~.j4ia7fs6,
.nk8g2cc1 .pv9l~.j4ia7fs6{max-width:none;margin:0;padding:8px clamp(24px,calc(50vw - 476px),96px)}
.nk8g2cc1 .q0g40n~.j4ia7fs6 .tjhiu2i8,
.nk8g2cc1 .pv9l~.j4ia7fs6 .tjhiu2i8{justify-content:flex-start}

/* split hero: overlay positions fall back to static below hero (too complex to overlay on split 50/50) */
.q0g40n~.j4ia7fs6,.pv9l~.j4ia7fs6{position:static!important;left:auto!important;right:auto!important;top:auto!important;bottom:auto!important;transform:none!important;width:100%!important;max-width:none!important;padding:8px clamp(24px,calc(50vw - 476px),96px)!important}
.q0g40n~.j4ia7fs6 .tjhiu2i8{justify-content:flex-start;margin-left:0;margin-right:auto;background:transparent;color:var(--text-body);backdrop-filter:none;-webkit-backdrop-filter:none}
.pv9l~.j4ia7fs6 .tjhiu2i8{justify-content:flex-end;margin-left:auto;margin-right:0;background:transparent;color:var(--text-body);backdrop-filter:none;-webkit-backdrop-filter:none}

/* post-hero: inside page-wrap, inherits its width naturally */
.lfhyn .tjhiu2i8{margin:0 0 12px}

/* ── Byline (compact author + dates) ── */
.tjhiu2i8{display:flex;flex-wrap:wrap;align-items:center;gap:6px 10px;font-size:.82rem;color:var(--text-muted);margin:10px 0 16px}
.ascxry6{width:28px;height:28px;border-radius:50%;object-fit:cover;flex-shrink:0}
.sibyu541{font-weight:600;color:var(--text-heading);opacity:1}
.j28g::before{content:"·";margin:0 2px;opacity:.5}
.urxs15{white-space:nowrap}

/* byline author style: text — no avatar */
.xxjchsfl .ascxry6{display:none}

/* byline: hide author parts when author_pos=none or end (dates still show) */
/* author visibility controlled structurally in templates (not CSS display:none) */

/* ── Date style variants ── */
/* plain: default, no extra styling */

/* chips: pill badges */
.ee40 .urxs15{background:var(--date-bg, var(--accent-bg));padding:3px 10px;border-radius:99px;font-size:.78rem}
.ee40 .j28g::before{content:""}

/* cards: mini bordered cards */
.t47ehg .urxs15{background:var(--date-bg, var(--accent-bg));padding:6px 12px;border-radius:var(--radius, 6px);font-size:.78rem;display:inline-flex;align-items:center;gap:4px}
.t47ehg .j28g::before{content:""}

/* bar: single row with background */
.gzp18 .tjhiu2i8{background:var(--date-bg, var(--accent-bg));padding:8px 14px;border-radius:var(--radius, 6px);gap:8px 16px}

/* tag: accent left border tag */
.fyze7rv .urxs15{border-left:2px solid var(--accent);padding-left:8px;font-size:.78rem}
.fyze7rv .j28g::before{content:""}

/* accent: date text in accent color */
.mvgdg .urxs15{color:var(--accent);opacity:1;font-weight:500}

/* underline: thin line beneath dates */
.s2okjp .urxs15{border-bottom:1px solid currentColor;padding-bottom:2px}

/* muted: extra small and faded */
.g692fjr .tjhiu2i8{font-size:.78rem;color:var(--text-faint);letter-spacing:.02em}

/* ── Date background variants ── */
.z6rovq{--date-bg:var(--accent-bg)}
.d6xol8{--date-bg:var(--accent-bg-light)}
.yaqapa7{--date-bg:transparent}

/* ── Date separator variants ── */
.tgca32 .j28g::before{content:""}
.tmc6 .j28g::before{content:"•";opacity:.4}
.tmc6 .urxs15 + .urxs15::before{content:"•";margin-right:6px;opacity:.4}
.rclyba .j28g::before{content:"/";opacity:.35}
.rclyba .urxs15 + .urxs15::before{content:"/";margin-right:6px;opacity:.35}
.ce2y .j28g::before{content:"|";opacity:.3}
.ce2y .urxs15 + .urxs15::before{content:"|";margin-right:6px;opacity:.3}
.tmeb92gp .j28g::before{content:"—";opacity:.3}
.tmeb92gp .urxs15 + .urxs15::before{content:"—";margin-right:6px;opacity:.3}
.rv0uzb28 .j28g::before{content:"◆";font-size:.5em;opacity:.35}
.rv0uzb28 .urxs15 + .urxs15::before{content:"◆";font-size:.5em;margin-right:6px;opacity:.35}
.wus6h .j28g::before{content:"·";opacity:.4}
.wus6h .urxs15 + .urxs15::before{content:"·";margin-right:6px;opacity:.4}
.dqgpn .j28g::before{content:"›";opacity:.4}
.dqgpn .urxs15 + .urxs15::before{content:"›";margin-right:6px;opacity:.4}
.u9cizdj .j28g::before{content:"→";opacity:.35;font-size:.85em}
.u9cizdj .urxs15 + .urxs15::before{content:"→";font-size:.85em;margin-right:6px;opacity:.35}


/* ── Author box (full card at article end) ── */
.t2abke8{display:flex;align-items:flex-start;gap:16px;max-width:var(--content-width, 960px);margin:32px auto 24px;padding:20px 24px}
.feu1{width:56px;height:56px;border-radius:50%;object-fit:cover;flex-shrink:0}
.e2pb3sa{display:flex;flex-direction:column;gap:3px}
.udnlew{font-size:.7rem;text-transform:uppercase;letter-spacing:.06em;color:var(--text-body);opacity:.55}
.ixjbzl{font-weight:700;font-size:1rem;color:var(--text-heading)}
.t55o0dg{font-size:.85rem;color:var(--text-body);opacity:.8;line-height:1.5;margin-top:4px}

/* author box variants */
.pgtwnzl .t2abke8{background:var(--surface-alt);border-radius:var(--radius, 8px);border:1px solid var(--border)}
.ispp .t2abke8{border-top:3px solid var(--accent);padding-top:18px}
.i722d1 .t2abke8{border-left:3px solid var(--accent);border-radius:0}
.uvo8e .t2abke8{padding:20px 0}

/* author box visibility by author_pos */
/* author-box visibility controlled structurally in templates */

@media(max-width:640px){
  .t2abke8{flex-direction:column;align-items:center;text-align:center;gap:10px;padding:16px}
  .t55o0dg{max-width:100%}
}


/* ── color scheme ── */
:root {
  --accent:          #49612e;
  --accent-light:    #7a945b;
  --accent-pale:     #afca8c;
  --grad-start:      #9fb97d;
  --grad-end:        #d0ecab;
  --bg-page: #d8dccc;
  --bg-surface: #fafaf0;
  --bg-card: #f3f5e9;
  --bg-card-inner: #edefe2;
  --bg-raised: #e7eadb;
  --bg-hover: #e1e4d4;
  --border: #b0b4a5;
  --border-alt: #787c6f;
  --border-section: #b0b4a5;
  --text-primary: #303429;
  --text-muted: #5c6154;
  --bg-page:        #f8f9fa;
  --bg-surface:     #ffffff;
  --bg-card:        #ffffff;
  --bg-card-inner:  #f3f4f6;
  --bg-raised:      #eef0f2;
  --bg-hover:       #f3f4f6;
  --border:         #e5e7eb;
  --border-alt:     #d1d5db;
  --border-section: #e5e7eb;
  --text-body: #2f312b;
  --text-sub: #464741;
  --text-faint: #6a6b64;
  --text-dim: #909189;
  --text-label: #5d5f58;
  --text-value: #3a3c36;
  --accent-bg:       #d0ecab;
  --accent-bg-light: #c2de9e;
  --bg-tip:        #f0fdf4;
  --bg-warning:    #fffbeb;
  --bg-info:       #eff6ff;
  --bg-pros:       #f0fdf4;
  --bg-cons:       #fef2f2;
  --c-pros:        #15803d;
  --c-cons:        #b91c1c;
  --c-pros-label:  #16a34a;
  --c-tip-border:  #059669;
  --c-warn-border: #d97706;
  --c-stars:       #b45309;
  --c-arrow:       #d97706;
  --c-tag-pay:     #15803d;
}
:root { --logo-bg-opacity: 54%; }

/* ── variants ── */
body, button, input { font-family: system-ui, -apple-system, sans-serif; }

.mycrmi .cu6up3n li::before, .mycrmi .q8rxdwbh 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; }.mycrmi .cu6up3n li::before { content: ""; }.mycrmi .q8rxdwbh li::before { content: ""; }.mycrmi .yqc4l::before, .mycrmi .h6xqoc::before {  font-family: "Font Awesome 6 Free"; font-weight: 900;  font-size: 0.85em; margin-right: 5px; line-height: 1; }.mycrmi .yqc4l::before { content: ""; }.mycrmi .h6xqoc::before { content: ""; }

.f4amvsk .z4cjc01, .f4amvsk .q0g40n { min-height: 320px; }

.upcme3dw .p407::after, .upcme3dw .lv61ff::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; }

.b1dmm::before { content: '|'; opacity: 0.3; }

.uh246t .urxs15::before{font-family:"Font Awesome 6 Free";font-weight:900;margin-right:5px;font-size:1em;opacity:.55}.uh246t .urxs15:first-of-type::before{content:"\f15b"}.uh246t .urxs15:last-of-type::before{content:"\f044"}