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

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

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

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

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

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

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

.xih5 .ei5i0bvo {
  background: none;
}
.xih5 .y86b { color: #fff; }
.xih5 .zw0y1 { color: rgba(255,255,255,0.85); }

/* ── Hero anim: split layouts ─────────────────────────────────────────────── */
.j9zp .nvgo { position: relative; overflow: hidden; }
.j9zp .nvgo::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;
}
.x6th4uj .nvgo {
  animation: hg-breathe 7s ease-in-out infinite;
}
.zwq1b .nvgo { position: relative; overflow: hidden; }
.zwq1b .nvgo::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;
}
.nu6j .nvgo { position: relative; overflow: hidden; }
.nu6j .nvgo::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;
}
.pduynca1 .nvgo {
  animation: hg-fadein 1.2s ease-out both;
}


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

/* Split alignment — всередині text-колонки */
.nvgo.j56o .lp2gqbt { align-items: center; text-align: center; }
.nvgo.xdxqouw   .lp2gqbt { align-items: flex-start; text-align: left; }

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


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

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

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

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

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

/* ── Hero: split-cards ────────────────────────────────────────────────────── */
.rkfz .c866n27 {
  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);
}
.on31t6w7 {
  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;
}
.on31t6w7:last-child { border-bottom: none; }
.on31t6w7:hover { background: rgba(255,255,255,0.14); }
.thevvw { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1; }
.o919fcmp { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.bahedn { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.zbg5f { font-weight: 700; font-size: 0.95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.kkdt5nj3 { font-size: 0.82rem; color: rgba(255,255,255,0.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hkm54 { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.fx62840 { font-weight: 800; font-size: 1.3rem; color: var(--accent-pale); }
.fx62840 small { font-size: 0.7rem; font-weight: 500; opacity: 0.6; }
.k5169jbj { font-size: 0.8rem; padding: 6px 14px; white-space: nowrap; }

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

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

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

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


@media (max-width: 700px) {
  .nvgo { grid-template-columns: 1fr !important; grid-template-areas: "text" !important; }
  .nvgo .geg3fv { display: none !important; }
  .d3gzm9 .geg3fv { display: none !important; }
  .rkfz .c866n27 { display: none !important; }
  .sxm6j4m6 .fi8mwmy { display: none !important; }
  .lp2gqbt  { padding: 36px 24px; }
  /* cap hero height variants on mobile */
  .uus1, .nvgo { min-height: 320px !important; }
  /* reduce oversized headings on mobile */
  .y86b { font-size: clamp(1.7rem, 5.5vw, 2.4rem) !important; }
  /* cards-top: hide on mobile */
  .bnvofq { display: none !important; }
  /* numbered: stack */
  .d8uf { flex-direction: column; align-items: center; }
  .etlld { width: 100%; max-width: 340px; }
}

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

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

/* rounded */
.sleqh96v .m2hb        { border-radius: 16px; }
.sleqh96v .flim  { border-radius: 16px; }

/* shadow */
.egfwz .m2hb         { box-shadow: 0 4px 14px rgba(0,0,0,0.18); border-radius: 8px; }
.egfwz .flim   { border-radius: 8px; }


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

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

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

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

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

.fjfjyn .yfag7l:nth-child(even) .ovqp .rce38pb:nth-child(odd),
.ke3iagy3 .yfag7l:nth-child(even) .ovqp .rce38pb:nth-child(odd)  { background: var(--bg-card); }
.fjfjyn .yfag7l:nth-child(even) .ovqp .rce38pb:nth-child(even),
.ke3iagy3 .yfag7l:nth-child(even) .ovqp .rce38pb:nth-child(even) { background: var(--bg-card-inner); }

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

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

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

/* ── Lead & intro/outro ──────────────────────────────────────────────────────*/
.k7z7e7nx { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 16px; }
@media (max-width: 640px) { .k7z7e7nx { display: none; } }
.wanzpz {
  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;
}
.iv83p { margin-right: 8px; color: var(--c-arrow); }
.kxpf1 { font-size: 1rem; color: var(--text-muted); margin: 8px 0 20px; }
.hew2yuz { font-size: 1rem; color: var(--text-muted); margin: 24px 0 0; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* plain: простий текст */
.bwz9ap .kxpf1,
.bwz9ap .hew2yuz,
.bwz9ap .lipk00,
.bwz9ap .m811g { font-style: normal; color: var(--text-body); }

/* dash: ліва вертикальна чорточка */
.iqchfk .kxpf1,
.iqchfk .hew2yuz {
  font-style: italic;
  border-left: 3px solid var(--border-section); padding-left: 12px;
}
.iqchfk .lipk00,
.iqchfk .m811g {
  font-style: italic;
  border-left: 2px solid var(--border); padding-left: 10px;
}

/* bg: підкладка з фоном */
.j9xisty .kxpf1,
.j9xisty .hew2yuz,
.j9xisty .lipk00,
.j9xisty .m811g {
  font-style: normal;
  background: var(--bg-raised); border-radius: 6px;
  padding: 10px 14px; color: var(--text-sub);
}

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

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

.zzxqod     .x3qu { list-style-type: "● "; }
.ith08vsk  .x3qu { list-style-type: "■ "; }
.znhq .x3qu { list-style-type: "◆ "; }
.b1ty5ri2    .x3qu { list-style-type: "★ "; }

.zzxqod     .b08awe4 { list-style-type: "● "; }
.ith08vsk  .b08awe4 { list-style-type: "■ "; }
.znhq .b08awe4 { list-style-type: "◆ "; }
.b1ty5ri2    .b08awe4 { list-style-type: "★ "; }

.zzxqod    .x3qu li::marker, .zzxqod    .b08awe4 li::marker,
.ith08vsk .x3qu li::marker, .ith08vsk .b08awe4 li::marker,
.znhq .x3qu li::marker, .znhq .b08awe4 li::marker,
.b1ty5ri2   .x3qu li::marker, .b1ty5ri2   .b08awe4 li::marker {
  color: var(--accent); font-size: 0.8em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

/* pill = solid but very rounded */
.f8hvv .y9ffmm84 { border-radius: 50px; }
.f8hvv .n0pk035w  { border-radius: 50px; }
/* btn_pad */
.muq0ddw .y9ffmm84 { padding-left: 22px; padding-right: 22px; }
.muq0ddw .n0pk035w  { padding-left: 12px; padding-right: 12px; }
.m0ukdqz .y9ffmm84 { padding-left: 44px; padding-right: 44px; }
.m0ukdqz .n0pk035w  { padding-left: 24px; padding-right: 24px; }
.ccr1zkaz .y9ffmm84 { padding-left: 56px; padding-right: 56px; }
.ccr1zkaz .n0pk035w  { padding-left: 32px; padding-right: 32px; }

/* ── btn_icon: SVG-іконки на .y9ffmm84 і .n0pk035w (mask на currentColor) ──────*/
/* ::after — усі іконки після тексту (праворуч) */
.fajja1h6   .y9ffmm84::after, .fajja1h6   .n0pk035w::after,
.obbopdh .y9ffmm84::after, .obbopdh .n0pk035w::after,
.uz7j    .y9ffmm84::after, .uz7j    .n0pk035w::after,
.fwzaherc    .y9ffmm84::after, .fwzaherc    .n0pk035w::after,
.qafx    .y9ffmm84::after, .qafx    .n0pk035w::after,
.uwx7z0l     .y9ffmm84::after, .uwx7z0l     .n0pk035w::after,
.shf9j0ah    .y9ffmm84::after, .shf9j0ah    .n0pk035w::after,
.dcbp2   .y9ffmm84::after, .dcbp2   .n0pk035w::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 — кожна іконка */
.fajja1h6 .y9ffmm84::after, .fajja1h6 .n0pk035w::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");
}
.obbopdh .y9ffmm84::after, .obbopdh .n0pk035w::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");
}
.uz7j .y9ffmm84::after, .uz7j .n0pk035w::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");
}
.fwzaherc .y9ffmm84::after, .fwzaherc .n0pk035w::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");
}
.qafx .y9ffmm84::after, .qafx .n0pk035w::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");
}
.uwx7z0l .y9ffmm84::after, .uwx7z0l .n0pk035w::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");
}
.shf9j0ah .y9ffmm84::after, .shf9j0ah .n0pk035w::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");
}
.dcbp2 .y9ffmm84::after, .dcbp2 .n0pk035w::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 ────────*/
.j715w   .v38nz::after, .j715w   .o8cta::after,
.cfq049lg .v38nz::after, .cfq049lg .o8cta::after,
.dzsa2xf    .v38nz::after, .dzsa2xf    .o8cta::after,
.pqq4yv9t    .v38nz::after, .pqq4yv9t    .o8cta::after,
.t2aded    .v38nz::after, .t2aded    .o8cta::after,
.bxz4w     .v38nz::after, .bxz4w     .o8cta::after,
.dcwae7gh    .v38nz::after, .dcwae7gh    .o8cta::after,
.km9duvr   .v38nz::after, .km9duvr   .o8cta::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;
}
.j715w .v38nz::after, .j715w .o8cta::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");
}
.cfq049lg .v38nz::after, .cfq049lg .o8cta::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");
}
.dzsa2xf .v38nz::after, .dzsa2xf .o8cta::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");
}
.pqq4yv9t .v38nz::after, .pqq4yv9t .o8cta::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");
}
.t2aded .v38nz::after, .t2aded .o8cta::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");
}
.bxz4w .v38nz::after, .bxz4w .o8cta::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");
}
.dcwae7gh .v38nz::after, .dcwae7gh .o8cta::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");
}
.km9duvr .v38nz::after, .km9duvr .o8cta::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 ─────────────────────────────────────────────────────────*/
.kvuulxda { display: flex; flex-direction: column; gap: 6px; margin: 28px 0; }


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

/* ── Casino reviews ──────────────────────────────────────────────────────────*/
.y4vt3 {
  background: var(--bg-card);
  border-radius: 12px; margin: 24px 0; overflow: hidden;
  border: 1px solid var(--border-alt);
}
.sujp9m6k {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 24px; background: var(--bg-surface);
}
.g2pn9g {
  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;
}
.g2pn9g img { max-width: 80px; max-height: 50px; object-fit: contain; }
.uoaol98d { color: var(--accent); font-weight: 700; font-size: 0.85rem; text-align: center; }
.tzqt8cd { flex: 1; }
.tzqt8cd h3 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 4px; }
.xutlt9q { color: var(--c-stars); font-size: 1.1rem; }
.fmytt17s { margin-bottom: 8px; }
.qs44qc0 { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 0.83rem; color: var(--text-muted); }
.pm2up::before   { content: "★ "; color: var(--accent); }
.bnseckjb::before { content: "↓ "; color: var(--accent); }
.tttrrr::before { content: "✦ "; color: var(--accent); }
.ymxshsx { flex-shrink: 0; }
.guq03x56 img.sphuo { width: 100%; max-height: 240px; object-fit: cover; display: block; }
.gpvjkji { padding: 20px 24px; }
.b0lcpuut { color: var(--text-muted); margin-bottom: 16px; }
.j4mti { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 14px; }
.hgcc, .b1kbr { list-style: none; font-size: 0.9rem; }
.hgcc li { color: var(--c-pros); margin-bottom: 4px; }
.b1kbr li { color: var(--c-cons); margin-bottom: 4px; }
/* CSS маркери для pros/cons замість символів в HTML */
.hgcc li::before { content: "✓"; margin-right: 5px; }
.b1kbr li::before { content: "✗"; margin-right: 5px; }
.e5dnba .hgcc li::before { content: "→"; }
.e5dnba .b1kbr li::before { content: "–"; }
.qcmlk2r  .hgcc li::before { content: "★"; }
.qcmlk2r  .b1kbr li::before { content: "✕"; }
.x6a90    .hgcc li::before { content: "◆"; }
.x6a90    .b1kbr li::before { content: "▲"; }
.zm4u  .hgcc li::before { content: "▶"; }
.zm4u  .b1kbr li::before { content: "■"; }
.lxq5 { margin-bottom: 8px; font-size: 0.85rem; color: var(--text-muted); }
.i4vy3 { background: var(--accent-bg); color: var(--accent-light); border-radius: 4px; padding: 2px 8px; margin: 2px 2px 2px 0; display: inline-block; }
.ccolgxe { background: var(--bg-pros); color: var(--c-tag-pay); }

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


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

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

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

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

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

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

/* ── Brand card (single brand, two-column hero) ─────────────────────────────*/
/* ═══════════════════════════════════════════════════════════════════════════
   BRAND CARD — shared tokens
   ═══════════════════════════════════════════════════════════════════════════ */
.rwxadtt {
  background: var(--bg-card);
  border: 1px solid var(--border-alt);
  border-radius: 12px;
  margin: 28px 0;
  overflow: hidden;
}
.kptqdfzr {
  width: 100px; height: 68px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border-radius: 10px; padding: 8px;
  flex-shrink: 0;
}
.kptqdfzr img { max-width: 100%; max-height: 100%; object-fit: contain; }
.cw8oj62t { font-size: 1.15rem; font-weight: 700; color: var(--text); }
.ue3g { display: flex; align-items: center; gap: 8px; }
.ue3g .xutlt9q { font-size: .95rem; }
.ue3g strong { font-size: 1.1rem; color: var(--text); }
.nl1n { border-radius: 8px; overflow: hidden; }
.nl1n img { width: 100%; display: block; border-radius: 8px; }
.eez7 { text-align: center; flex-shrink: 0; }
.zytjj { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; }
.hiq9c2h1 { font-size: .82rem; color: var(--text-muted); font-weight: 500; }
.doj76o { font-size: .88rem; font-weight: 600; color: var(--text); }
.najtdpi .doj76o { font-size: 1.02rem; font-weight: 700; color: var(--accent); }
.rwxadtt .hsif6 { gap: 10px; }
.rwxadtt .n12ud, .rwxadtt .f6kgt4 { padding: 12px; }
.rwxadtt .n12ud ul, .rwxadtt .f6kgt4 ul { margin: 4px 0 0; padding-left: 18px; }
.rwxadtt .n12ud li, .rwxadtt .f6kgt4 li { font-size: .85rem; margin-bottom: 3px; }
.frc41c { font-size: .8rem; color: var(--text-muted); margin-top: 10px; }
.frc41c strong { color: var(--text-secondary); }
.frc41c .i4vy3 { margin: 2px 4px 2px 0; }

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

/* ── LAYOUT 2: hero — full-width screenshot header ────────────────────────── */
.g2e81ydw {
  position: relative; max-height: 240px; overflow: hidden;
}
.g2e81ydw > img { width: 100%; display: block; object-fit: cover; min-height: 160px; }
.omon {
  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;
}
.omon .kptqdfzr { background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border-radius: 10px; }
.omon .cw8oj62t { color: #fff; font-size: 1.25rem; }
.omon .ue3g strong { color: #fff; }
.omon .ue3g .xutlt9q { filter: brightness(1.2); }
.omon .eez7 { margin-left: auto; white-space: nowrap; }
.ktde8wx { flex: 1; }
.tufbggo7 {
  display: flex; align-items: center; gap: 16px; padding: 20px 24px;
  border-bottom: 1px solid var(--border-alt);
}
.tufbggo7 .eez7 { margin-left: auto; }
.fmmda { display: flex; flex-direction: column; gap: 16px; padding: 20px 24px; }
.t1ovvu3 .d30543 {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--border-alt); border-radius: 8px; overflow: hidden;
}
.t1ovvu3 .zytjj {
  flex: 1 1 auto; min-width: 120px;
  border-right: 1px solid var(--border-alt); border-bottom: 1px solid var(--border-alt);
}
.t1ovvu3 .najtdpi { flex-basis: 100%; background: var(--accent-bg); border-right: none; }
@media (max-width: 720px) {
  .omon { flex-wrap: wrap; gap: 10px; padding: 12px 16px; }
  .fmmda { padding: 16px; }
  .t1ovvu3 .zytjj { min-width: 50%; }
}

/* ── LAYOUT 3: magazine — editorial 3-column ──────────────────────────────── */
.s3i8d {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-alt);
}
.hnmin1 { flex: 1; }
.hnmin1 .cw8oj62t { font-size: 1.3rem; }
.ked4x {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
}
.luaw0 { padding: 16px; border-right: 1px solid var(--border-alt); }
.luaw0 .nl1n { height: 100%; }
.luaw0 .nl1n img { height: 100%; object-fit: cover; }
.dxnm { padding: 0; border-right: 1px solid var(--border-alt); }
.dxnm .d30543 { display: flex; flex-direction: column; }
.dxnm .zytjj { border-bottom: 1px solid var(--border-alt); }
.dxnm .najtdpi { background: var(--accent-bg); }
.tecb5f { padding: 16px; }
.tecb5f .hsif6 { grid-template-columns: 1fr; }
.cw7f {
  padding: 12px 24px; border-top: 1px solid var(--border-alt);
  display: flex; flex-wrap: wrap; gap: 12px;
}
@media (max-width: 860px) {
  .ked4x { grid-template-columns: 1fr; }
  .luaw0 { border-right: none; border-bottom: 1px solid var(--border-alt); }
  .dxnm { border-right: none; border-bottom: 1px solid var(--border-alt); }
}
@media (max-width: 540px) {
  .s3i8d { flex-wrap: wrap; padding: 16px; }
}

/* ── LAYOUT 4: compact — header bar → screenshot → data ──────────────────── */
.j99aipt6 {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 16px 20px; border-bottom: 1px solid var(--border-alt);
}
.mit0o2 {
  display: flex; align-items: center; gap: 12px; flex: 1;
}
.mit0o2 .kptqdfzr { width: 72px; height: 50px; }
.mit0o2 .cw8oj62t { font-size: 1rem; white-space: nowrap; }
.x37o4 { border-bottom: 1px solid var(--border-alt); max-height: 280px; overflow: hidden; }
.x37o4 img { width: 100%; display: block; object-fit: cover; }
.pv4yc9gd {
  display: flex; flex-direction: column; gap: 10px; padding: 14px 16px; overflow: hidden;
}
.cce9vi .d30543 { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.cce9vi .zytjj { padding: 0; flex: 0 0 auto; gap: 6px; }
.cce9vi .najtdpi { display: none; }
.cce9vi .hsif6 { gap: 8px; }
.cce9vi .n12ud, .cce9vi .f6kgt4 { padding: 8px; }
@media (max-width: 480px) {
  .j99aipt6 { flex-direction: column; align-items: stretch; }
}

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

/* ── LAYOUT 6: scorecard — big score centerpiece ──────────────────────────── */
.n24wyo {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: center;
  border-bottom: 1px solid var(--border-alt);
}
.bt8k8tg {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px; text-align: center;
}
.exqaesf {
  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;
}
.s8t8 { font-size: 1.8rem; font-weight: 800; color: var(--accent); line-height: 1; }
.s8t8 .t01s { font-size: .9rem; font-weight: 500; color: var(--text-muted); }
.exqaesf .xutlt9q { font-size: .75rem; margin-top: 2px; }
.tzaqj { padding: 12px; display: flex; align-items: center; flex: 1; }
.tzaqj .nl1n { width: 100%; }
.h1t2 {
  padding: 0; border-bottom: 1px solid var(--border-alt);
}
.xmfgz4s .d30543 {
  display: flex; flex-wrap: wrap;
}
.xmfgz4s .zytjj {
  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;
}
.xmfgz4s .zytjj:last-child { border-right: none; }
.xmfgz4s .hiq9c2h1 { font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; }
.xmfgz4s .najtdpi { background: var(--accent-bg); }
.so6vjfj9 { padding: 16px 20px; display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 720px) {
  .n24wyo { grid-template-columns: 1fr; }
  .exqaesf { width: 100px; height: 100px; margin: 16px auto; }
  .s8t8 { font-size: 1.4rem; }
  .tzaqj { justify-content: center; }
  .xmfgz4s .zytjj { min-width: 50%; }
}

/* ── LAYOUT 7: stack — vertical full-width flow ──────────────────────────── */
.lwse {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-bottom: 1px solid var(--border-alt);
}
.jvn708e { max-height: 240px; overflow: hidden; border-bottom: 1px solid var(--border-alt); }
.jvn708e img { width: 100%; display: block; object-fit: cover; }
.pmsx1b0 { padding: 16px 24px; border-bottom: 1px solid var(--border-alt); }
.li37cvyx .d30543 {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.li37cvyx .zytjj {
  background: var(--surface); border: 1px solid var(--border-alt);
  border-radius: 20px; padding: 6px 14px; gap: 8px;
}
.li37cvyx .najtdpi {
  background: var(--accent-bg); border-color: var(--accent-pale);
}
.li37cvyx .hsif6 { margin: 0 24px; padding-top: 16px; }
.li37cvyx .frc41c { padding: 0 24px; }
.a25id4 { padding: 16px 24px; border-top: 1px solid var(--border-alt); text-align: center; }
.a25id4 .eez7 { display: inline-block; }
@media (max-width: 540px) {
  .lwse { flex-wrap: wrap; padding: 14px 16px; }
  .pmsx1b0 { padding: 12px 16px; }
  .li37cvyx .hsif6 { margin: 0 16px; }
  .li37cvyx .frc41c { padding: 0 16px; }
  .a25id4 { padding: 12px 16px; }
}


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

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

/* ranked: accent-pill значення + uppercase лейбли (нумерація — через cs_rank) */
.ohdns0 .yqxrc {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted);
}
.ohdns0 .mbvbti0 {
  color: var(--accent); font-weight: 700;
  background: var(--accent-bg); border-radius: 100px;
  padding: 1px 9px; font-size: 0.8rem;
}
.ohdns0 .ro27 { color: var(--accent); }
.ohdns0 .sujp9m6k { background: var(--accent-bg); }
.ohdns0 .pm2up, .ohdns0 .bnseckjb, .ohdns0 .tttrrr {
  background: var(--bg-card); border-radius: 100px; padding: 1px 10px;
  border: 1px solid var(--border);
}

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

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

/* compact: менші відступи всюди */
.y8z14u6 .rh8x7l4o { padding: 8px 14px; gap: 12px; }
.y8z14u6 .e8rbn { height: 32px; min-width: 52px; }
.y8z14u6 .obj1dxbv { max-height: 24px; }
.y8z14u6 .i7y7n3 { font-size: 0.82rem; }
.y8z14u6 .sujp9m6k { padding: 14px 18px; gap: 14px; }
.y8z14u6 .gpvjkji { padding: 14px 18px; }
.y8z14u6 .g2pn9g { width: 70px; }
.y8z14u6 .tzqt8cd h3 { font-size: 1.05rem; }

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

/* bordered: таблиця з усіма рамками */
.di03 .kvuulxda {
  gap: 0; border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.di03 .rh8x7l4o {
  border-radius: 0; border: none;
  border-bottom: 1px solid var(--border); row-gap: 0; column-gap: 12px;
}
.di03 .rh8x7l4o:last-child { border-bottom: none; }
/* вертикальні межі між колонками */
.di03 .ro27,
.di03 .h7ltjysp,
.di03 .r9vszt2u { border-left: 1px solid var(--border); padding-left: 10px; }
.di03 .i7y7n3 { padding: 0 10px; }

/* ── cs_cols: feature — бонус-колонка виділена як головна ──────────────────*/
.udp3e .h7ltjysp { flex: 1.8; }
.udp3e .h7ltjysp .mbvbti0 {
  font-size: 0.88rem; font-weight: 700; color: var(--accent);
}
.udp3e .h7ltjysp .yqxrc { font-weight: 700; color: var(--text-primary); }
.udp3e .q2oxg6a,
.udp3e .gt99yry,
.udp3e .lmt1pn { flex: 0.75; opacity: 0.65; }

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

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

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

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

/* score в оглядах — ховаємо зірки */
.e2id .fmytt17s .xutlt9q,
.nh5hyels .fmytt17s .xutlt9q,
.omworm6 .fmytt17s .xutlt9q { display: none; }

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

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

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

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

/* ── Sections ────────────────────────────────────────────────────────────────*/
.yfag7l { margin-bottom: 0; }
.lkakl5k h2.rk2u790y { color: var(--accent-light); border-color: var(--accent); }
.yembt h2.rk2u790y { color: var(--accent-light); border-color: var(--accent); }

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

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

/* vivid: смарагд / рожевий / фіолетовий */
.cp6vm .sdhrk     { background: #052e16; border-color: #10b981; }
.cp6vm .yjkl { background: #2d0a1e; border-color: #f43f5e; }
.cp6vm .ewyewxk    { background: #1e1036; border-color: #a855f7; }
.cp6vm .xssl0sq strong  { color: #f1f5f9; }
.cp6vm .xssl0sq p       { color: #cbd5e1; }
.cp6vm .j1lg2    .sdhrk     .gzh3e7::before,
.cp6vm .lo34kmt  .sdhrk     .gzh3e7::before,
.cp6vm .r90sm  .sdhrk     .gzh3e7::before,
.cp6vm .dv1a6 .sdhrk     .gzh3e7::before { color: #10b981; }
.cp6vm .j1lg2    .yjkl .gzh3e7::before,
.cp6vm .lo34kmt  .yjkl .gzh3e7::before,
.cp6vm .r90sm  .yjkl .gzh3e7::before,
.cp6vm .dv1a6 .yjkl .gzh3e7::before { color: #f43f5e; }
.cp6vm .j1lg2    .ewyewxk    .gzh3e7::before,
.cp6vm .lo34kmt  .ewyewxk    .gzh3e7::before,
.cp6vm .r90sm  .ewyewxk    .gzh3e7::before,
.cp6vm .dv1a6 .ewyewxk    .gzh3e7::before { color: #a855f7; }

/* warm: жовтий / червоний / помаранчевий */
.uxlqr7 .sdhrk     { background: #2d2000; border-color: #eab308; }
.uxlqr7 .yjkl { background: #2d0b0b; border-color: #ef4444; }
.uxlqr7 .ewyewxk    { background: #2d1600; border-color: #f97316; }
.uxlqr7 .xssl0sq strong  { color: #f1f5f9; }
.uxlqr7 .xssl0sq p       { color: #cbd5e1; }
.uxlqr7 .j1lg2    .sdhrk     .gzh3e7::before,
.uxlqr7 .lo34kmt  .sdhrk     .gzh3e7::before,
.uxlqr7 .r90sm  .sdhrk     .gzh3e7::before,
.uxlqr7 .dv1a6 .sdhrk     .gzh3e7::before { color: #eab308; }
.uxlqr7 .j1lg2    .yjkl .gzh3e7::before,
.uxlqr7 .lo34kmt  .yjkl .gzh3e7::before,
.uxlqr7 .r90sm  .yjkl .gzh3e7::before,
.uxlqr7 .dv1a6 .yjkl .gzh3e7::before { color: #ef4444; }
.uxlqr7 .j1lg2    .ewyewxk    .gzh3e7::before,
.uxlqr7 .lo34kmt  .ewyewxk    .gzh3e7::before,
.uxlqr7 .r90sm  .ewyewxk    .gzh3e7::before,
.uxlqr7 .dv1a6 .ewyewxk    .gzh3e7::before { color: #f97316; }

/* cool: блакитний / індиго / бірюзовий */
.d5345b8m .sdhrk     { background: #0c1a2e; border-color: #38bdf8; }
.d5345b8m .yjkl { background: #12103a; border-color: #818cf8; }
.d5345b8m .ewyewxk    { background: #0a2020; border-color: #2dd4bf; }
.d5345b8m .xssl0sq strong  { color: #f1f5f9; }
.d5345b8m .xssl0sq p       { color: #cbd5e1; }
.d5345b8m .j1lg2    .sdhrk     .gzh3e7::before,
.d5345b8m .lo34kmt  .sdhrk     .gzh3e7::before,
.d5345b8m .r90sm  .sdhrk     .gzh3e7::before,
.d5345b8m .dv1a6 .sdhrk     .gzh3e7::before { color: #38bdf8; }
.d5345b8m .j1lg2    .yjkl .gzh3e7::before,
.d5345b8m .lo34kmt  .yjkl .gzh3e7::before,
.d5345b8m .r90sm  .yjkl .gzh3e7::before,
.d5345b8m .dv1a6 .yjkl .gzh3e7::before { color: #818cf8; }
.d5345b8m .j1lg2    .ewyewxk    .gzh3e7::before,
.d5345b8m .lo34kmt  .ewyewxk    .gzh3e7::before,
.d5345b8m .r90sm  .ewyewxk    .gzh3e7::before,
.d5345b8m .dv1a6 .ewyewxk    .gzh3e7::before { color: #2dd4bf; }

/* accent: використовує динамічний акцент */
.xutqi .sdhrk     { background: var(--accent-bg); border-color: var(--accent); }
.xutqi .yjkl { background: var(--accent-bg-light); border-color: var(--accent-light); }
.xutqi .ewyewxk    { background: var(--accent-bg); border-color: var(--accent-pale); }
.xutqi .j1lg2    .gzh3e7::before,
.xutqi .lo34kmt  .gzh3e7::before,
.xutqi .r90sm  .gzh3e7::before,
.xutqi .dv1a6 .gzh3e7::before { color: var(--accent-light) !important; }

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

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

/* classic — фіксовані контрастні кольори незалежно від акценту */
.y2qx2 .n12ud ul li,
.y2qx2 .hgcc li         { color: #4ade80; }
.y2qx2 .n12ud .jaqb7 { color: #22c55e; }
.y2qx2 .f6kgt4 ul li,
.y2qx2 .b1kbr li         { color: #f87171; }
.y2qx2 .f6kgt4 .ghze5vn { color: #ef4444; }

/* blue: синій pros / amber cons */
.s5u72qty .n12ud { background: #0c1a2e; }
.s5u72qty .f6kgt4 { background: #2d1f00; }
.s5u72qty .n12ud .jaqb7 { color: #93c5fd; }
.s5u72qty .f6kgt4 .ghze5vn { color: #fcd34d; }
.s5u72qty .n12ud ul li,
.s5u72qty .hgcc li            { color: #bfdbfe; }
.s5u72qty .f6kgt4 ul li,
.s5u72qty .b1kbr li            { color: #fde68a; }

/* accent: label акцентний, текст завжди читабельний */
.o53vjc .n12ud { background: var(--accent-bg); }
.o53vjc .f6kgt4 { background: var(--accent-bg-light); }
.o53vjc .n12ud .jaqb7 { color: var(--accent-pale); }
.o53vjc .f6kgt4 .ghze5vn { color: var(--accent-light); }
.o53vjc .n12ud ul li,
.o53vjc .hgcc li          { color: var(--text-body); }
.o53vjc .f6kgt4 ul li,
.o53vjc .b1kbr li          { color: var(--text-body); }

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

/* check: ✓ / ✗ */
.jxxkqbs .jaqb7::before { content: "✓ "; }
.jxxkqbs .ghze5vn::before { content: "✗ "; }

/* arrows: → / ← */
.e5dnba .jaqb7::before { content: "→ "; }
.e5dnba .ghze5vn::before { content: "← "; }

/* marks: ★ / ✕ */
.qcmlk2r .jaqb7::before { content: "★ "; }
.qcmlk2r .ghze5vn::before { content: "✕ "; }

/* geo: ◆ / ▲ */
.x6a90 .jaqb7::before { content: "◆ "; }
.x6a90 .ghze5vn::before { content: "▲ "; }

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

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

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

/* topbar: смуга зверху */
.ie5xc9 .xssl0sq { border-left: none; border-top: 4px solid; border-radius: 0 0 8px 8px; }
.ie5xc9 .sdhrk     { border-top-color: var(--c-tip-border); }
.ie5xc9 .yjkl { border-top-color: var(--c-warn-border); }
.ie5xc9 .ewyewxk    { border-top-color: #60a5fa; }

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

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

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

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

.j1lg2 .gzh3e7,
.lo34kmt .gzh3e7,
.r90sm .gzh3e7,
.dv1a6 .gzh3e7 { font-size: 0; width: 1.1rem; flex-shrink: 0; }

.j1lg2 .gzh3e7::before,
.lo34kmt .gzh3e7::before,
.r90sm .gzh3e7::before,
.dv1a6 .gzh3e7::before {
  display: block; font-size: 1.15rem; line-height: 1.3; font-style: normal;
}

/* geo: ✦ ▲ ◉ */
.j1lg2 .sdhrk     .gzh3e7::before { content: "✦"; color: var(--c-tip-border); }
.j1lg2 .yjkl .gzh3e7::before { content: "▲"; color: var(--c-warn-border); }
.j1lg2 .ewyewxk    .gzh3e7::before { content: "◉"; color: #60a5fa; }

/* marks: ★ ◆ ● */
.lo34kmt .sdhrk     .gzh3e7::before { content: "★"; color: var(--c-tip-border); }
.lo34kmt .yjkl .gzh3e7::before { content: "◆"; color: var(--c-warn-border); }
.lo34kmt .ewyewxk    .gzh3e7::before { content: "●"; color: #60a5fa; }

/* sharp: ▶ ■ ▸ */
.r90sm .sdhrk     .gzh3e7::before { content: "▶"; color: var(--c-tip-border); }
.r90sm .yjkl .gzh3e7::before { content: "■"; color: var(--c-warn-border); }
.r90sm .ewyewxk    .gzh3e7::before { content: "▸"; color: #60a5fa; }

/* arrows: → ⬥ ◈ */
.dv1a6 .sdhrk     .gzh3e7::before { content: "→"; color: var(--c-tip-border); }
.dv1a6 .yjkl .gzh3e7::before { content: "⬥"; color: var(--c-warn-border); }
.dv1a6 .ewyewxk    .gzh3e7::before { content: "◈"; color: #60a5fa; }

/* ── shadow variant ──────────────────────────────────────────────────────────*/
.t7vvh .g5id .rce38pb,
.t7vvh .ovqp .rce38pb  { box-shadow: 0 2px 8px rgba(0,0,0,0.22); }
.t7vvh .q06jltmp                { box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
.t7vvh .rh8x7l4o                { box-shadow: 0 4px 12px rgba(0,0,0,0.28); }
.t7vvh .y4vt3            { box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.t7vvh .m2mg6xca          { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }
.t7vvh .g4xih                    { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }

/* shadow-none: скидаємо будь-які тіні */
.s56nhw .g5id .rce38pb,
.s56nhw .ovqp .rce38pb,
.s56nhw .q06jltmp,
.s56nhw .rh8x7l4o,
.s56nhw .y4vt3,
.s56nhw .m2mg6xca,
.s56nhw .g4xih,
.s56nhw .t0hdoax5 .xssl0sq { box-shadow: none; }

/* ── text_size variants ──────────────────────────────────────────────────────*/
.ehki   body, .ehki   { font-size: 0.9rem; }
.ehki   .amrabl6, .ehki .lipk00, .ehki .m811g,
.ehki   .kxpf1, .ehki .hew2yuz { font-size: 0.9rem; }
.ehki   .x3qu, .ehki .tlnxs { font-size: 0.9rem; }

.pr97hb0   .amrabl6, .pr97hb0 .lipk00, .pr97hb0 .m811g,
.pr97hb0   .kxpf1, .pr97hb0 .hew2yuz { font-size: 0.9rem; }
.pr97hb0   .x3qu, .pr97hb0 .tlnxs { font-size: 0.9rem; }

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

.ixstws9   .amrabl6, .ixstws9 .lipk00, .ixstws9 .m811g,
.ixstws9   .kxpf1, .ixstws9 .hew2yuz { font-size: 1.08rem; }
.ixstws9   .x3qu, .ixstws9 .tlnxs { font-size: 1.05rem; }
.ixstws9   .chejqbc { font-size: 0.97rem; }

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

/* large */
.frtdl .y86b      { font-size: 3.2rem; }
.frtdl h2.rk2u790y { font-size: 1.9rem; }
.frtdl h3.czb61m2     { font-size: 1.4rem; }

/* display */
.lld8 .y86b      { font-size: 3.8rem; }
.lld8 h2.rk2u790y { font-size: 2.2rem; }
.lld8 h3.czb61m2     { font-size: 1.6rem; }

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

/* Спільна база: abs-позиція на межі між секціями */
.fhny602j   .yfag7l + .yfag7l::before,
.k4o7b  .yfag7l + .yfag7l::before,
.wd7gm   .yfag7l + .yfag7l::before,
.cg22   .yfag7l + .yfag7l::before,
.tedtzp4   .yfag7l + .yfag7l::before,
.ih5z .yfag7l + .yfag7l::before {
  position: absolute; top: -1px; left: 0; right: 0;
  transform: translateY(-50%);
}

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

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

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

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

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

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

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

/* section_bg=stripe: парні секції мають bg-card */
.ke3iagy3 .gg6x5gt .yfag7l:nth-child(even)::before,
.ke3iagy3 .k5f0dw7u .yfag7l:nth-child(even)::before,
.ke3iagy3 .lhnq .yfag7l:nth-child(even)::before { background: var(--bg-card); }

/* wave-a: плавна S-хвиля (1 гребінь) */
.gg6x5gt .yfag7l + .yfag7l::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 гребені */
.k5f0dw7u .yfag7l + .yfag7l::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: глибока дуга */
.lhnq .yfag7l + .yfag7l::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 у формі хвилі */
.wnjo .kc6vvi,
.x0xw4hd .kc6vvi,
.n9ytb .kc6vvi { overflow: hidden; }

/* wave: додатковий простір щоб хвиля не закривала CTA */
.wnjo .stfqt,
.x0xw4hd .stfqt { margin-bottom: 60px; }
.n9ytb .stfqt { margin-bottom: 70px; }
.wnjo .lp2gqbt,
.x0xw4hd .lp2gqbt { padding-bottom: 60px; }
.n9ytb .lp2gqbt { padding-bottom: 70px; }

.wnjo .kc6vvi::before,
.x0xw4hd .kc6vvi::before,
.n9ytb .kc6vvi::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 гребінь) */
.wnjo .kc6vvi::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 гребені */
.x0xw4hd .kc6vvi::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: глибока дуга */
.n9ytb .kc6vvi::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 */
.oskwb .ei5i0bvo { background: linear-gradient(225deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%); }
.z6sn21i7 .ei5i0bvo { background: linear-gradient(45deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 100%); }
.qurr4z  .ei5i0bvo { background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%); }
.idm8f15t  .ei5i0bvo { background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%); }

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

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

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

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


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

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

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

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

/* Великі блочні елементи — clear float щоб не стискались */
.qt2v .s4vz6bgc,
.qt2v .kvuulxda,
.c9hd .s4vz6bgc,
.c9hd .kvuulxda,
.vlr3paf .s4vz6bgc,
.vlr3paf .kvuulxda { clear: both; }

/* Маркери списків не мають налазити на float-картинку */
.qt2v .x3qu,
.qt2v .tlnxs,
.c9hd .x3qu,
.c9hd .tlnxs,
.vlr3paf .x3qu,
.vlr3paf .tlnxs { overflow: hidden; }


@media (max-width: 640px) {
  .qt2v .m2hb,
  .c9hd .m2hb,
  .vlr3paf .m2hb { float: none; width: 100%; margin: 0 0 16px 0; }
}

/* ── content_width: ширина контентного контейнера ───────────────────────────*/
/* default = 1000px (задано в .nhh9w, .fqmgl, .zguv) */
.xm4i1 .nhh9w,
.xm4i1 .fqmgl,
.xm4i1 .zguv  { max-width: 1100px; }
.osbow .nhh9w,
.osbow .fqmgl,
.osbow .zguv  { max-width: 1200px; }
.vmbrqh .nhh9w,
.vmbrqh .fqmgl,
.vmbrqh .zguv  { max-width: 1320px; }

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

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

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

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

/* content-width: above — обидва класи на <body>, тому без пробілу */
.xm4i1.lju7aa .tgd7 { max-width: 1100px; }
.osbow.lju7aa .tgd7 { max-width: 1200px; }
.vmbrqh.lju7aa .tgd7 { max-width: 1320px; }
/* float — bc-float-wrap окремий елемент, тому з пробілом */
.xm4i1 .n1pcrtfk { max-width: 1100px; }
.osbow .n1pcrtfk { max-width: 1200px; }
.vmbrqh .n1pcrtfk { max-width: 1320px; }

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

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

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

/* ── font_weight: жирність тексту ────────────────────────────────────────────*/
/* fw-300: тонкий */
.iiev { font-weight: 300; }
.iiev h2.rk2u790y { font-weight: 600; }
.iiev h3.czb61m2     { font-weight: 600; }
/* fw-400: default — без override */
/* fw-500: medium */
.cfot { font-weight: 500; }
.cfot h2.rk2u790y { font-weight: 800; }
.cfot h3.czb61m2     { font-weight: 700; }
/* fw-600: semibold */
.xv2ro { font-weight: 600; }
.xv2ro h2.rk2u790y { font-weight: 900; }
.xv2ro h3.czb61m2     { font-weight: 800; }
.xv2ro .xssl0sq strong,
.xv2ro .lipk00,
.xv2ro .kxpf1 { font-weight: 600; }

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

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

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

/* minimal */
.y53ut .zguv { text-align: center; }
.y53ut .w3hh1 { justify-content: center; margin-bottom: 16px; }
.y53ut .f7hztqh5 { margin-top: 0; }

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

/* mobile footer */
@media (max-width: 640px) {
  .zguv { padding-left: 16px; padding-right: 16px; }
  .mdndav92 .zguv { padding: 20px 16px; }
  .w3hh1 { gap: 4px 12px; }
  .f7hztqh5 { font-size: 0.78rem; }
}


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


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

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

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

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

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

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

/* dark: завжди темний, незалежно від теми */
.pda4z .o2nlk86      { background: #0d1117; border-bottom-color: #21262d; }
.pda4z .u7b38m { color: var(--accent-light); }
.pda4z .xmo3mcm { --msep-color: #8b949e; }
.pda4z .xmo3mcm a { color: #8b949e; }
.pda4z .xmo3mcm a:hover { color: var(--accent-light); }
.pda4z .iglgcr { color: #8b949e; }
.pda4z .v5ze1qvw { background: #0d1117; border-top-color: #21262d; }
.pda4z .f7hztqh5,
.pda4z .ubrb { color: #6e7681; }
.pda4z .ohr4 a, .pda4z .w3hh1 a,
.pda4z .tfcqiul a, .pda4z .gx9mahz a,
.pda4z .kjqagkkb a, .pda4z .pgj2ufey { color: #8b949e; }
.pda4z .ohr4 a:hover, .pda4z .w3hh1 a:hover,
.pda4z .tfcqiul a:hover, .pda4z .gx9mahz a:hover { color: var(--accent-light); }
@media (max-width: 640px) {
  .pda4z .xmo3mcm { background: #0d1117; border-top-color: #21262d; }
  .pda4z .xmo3mcm li a { border-bottom-color: #21262d; }
}

/* light: завжди світлий */
.sqx5 .o2nlk86      { background: #f0f4f8; border-bottom-color: #cbd5e1; }
.sqx5 .u7b38m { color: var(--accent); }
.sqx5 .xmo3mcm { --msep-color: #475569; }
.sqx5 .xmo3mcm a { color: #475569; }
.sqx5 .xmo3mcm a:hover { color: var(--accent); }
.sqx5 .iglgcr { color: #64748b; }
.sqx5 .v5ze1qvw { background: #f0f4f8; border-top-color: #cbd5e1; }
.sqx5 .f7hztqh5,
.sqx5 .ubrb { color: #64748b; }
.sqx5 .ohr4 a, .sqx5 .w3hh1 a,
.sqx5 .tfcqiul a, .sqx5 .gx9mahz a,
.sqx5 .kjqagkkb a, .sqx5 .pgj2ufey { color: #374151; }
.sqx5 .ohr4 a:hover, .sqx5 .w3hh1 a:hover,
.sqx5 .tfcqiul a:hover, .sqx5 .gx9mahz a:hover { color: var(--accent); }
@media (max-width: 640px) {
  .sqx5 .xmo3mcm { background: #f0f4f8; border-top-color: #cbd5e1; }
  .sqx5 .xmo3mcm li a { border-bottom-color: #cbd5e1; color: #475569; }
}

/* accent: кольоровий акцентний фон */
.gbxbj .o2nlk86      { background: var(--accent); border-bottom-color: var(--accent-light); }
.gbxbj .u7b38m { color: #fff; }
.gbxbj .xmo3mcm { --msep-color: rgba(255,255,255,0.82); }
.gbxbj .xmo3mcm a { color: rgba(255,255,255,0.82); }
.gbxbj .xmo3mcm a:hover { color: #fff; }
.gbxbj .iglgcr { color: rgba(255,255,255,0.9); }
.gbxbj .v5ze1qvw { background: var(--accent); border-top-color: var(--accent-light); }
.gbxbj .f7hztqh5,
.gbxbj .ubrb { color: rgba(255,255,255,0.72); }
.gbxbj .ohr4 a, .gbxbj .w3hh1 a,
.gbxbj .tfcqiul a, .gbxbj .gx9mahz a,
.gbxbj .kjqagkkb a, .gbxbj .pgj2ufey { color: rgba(255,255,255,0.82); }
.gbxbj .ohr4 a:hover, .gbxbj .w3hh1 a:hover,
.gbxbj .tfcqiul a:hover, .gbxbj .gx9mahz a:hover { color: #fff; }
@media (max-width: 640px) {
  .gbxbj .xmo3mcm { background: var(--accent); border-top-color: var(--accent-light); }
  .gbxbj .xmo3mcm li a { border-bottom-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.82); }
}

/* glass: напівпрозорий з blur */
.em1vjzb .o2nlk86 {
  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);
}
.em1vjzb .v5ze1qvw {
  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) {
  .em1vjzb .xmo3mcm {
    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 */
.m4q1di .cnfz { min-height: 52px; height: auto; padding-top: 6px; padding-bottom: 6px; }
.gi3duf .cnfz { min-height: 58px; height: auto; padding-top: 8px; padding-bottom: 8px; }
.re4d .cnfz { min-height: 72px; height: auto; }
.cw0s .cnfz { min-height: 84px; height: auto; }

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

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


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

/* ── nav_logo_bg: фон на wrap-блоці (не на img) ─────────────────────────────*/
/* none = без фону (default) */
.ve0tah, .xxs5vc {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.q3x4i .ve0tah,
.q3x4i .xxs5vc { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 8px; padding: 4px; }
.dq1jz39 .ve0tah,
.dq1jz39 .xxs5vc { 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; }
.snrtpe .ve0tah,
.snrtpe .xxs5vc { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 999px; padding: 4px 8px; }
.eo9lg .ve0tah,
.eo9lg .xxs5vc { 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 */
.d3r4117w   .xmo3mcm a { font-weight: 500; }
.vfmz .xmo3mcm a { font-weight: 600; }
.iexso     .xmo3mcm a { font-weight: 700; }
.om18ir3    .xmo3mcm a { font-weight: 800; letter-spacing: 0.01em; }

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

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

  /* ховаємо ☰ символ і центруємо кнопку */
  .drozky .iglgcr,
  .lncs8 .iglgcr,
  .nght .iglgcr,
  .mf4xijqy .iglgcr,
  .hrgxo .iglgcr {
    font-size: 0 !important;
    display: flex !important;
    align-items: center; justify-content: center;
    padding: 0; width: 40px;
  }

  /* базовий ::before */
  .drozky .iglgcr::before,
  .lncs8 .iglgcr::before,
  .nght .iglgcr::before,
  .mf4xijqy .iglgcr::before,
  .hrgxo .iglgcr::before { content: ""; display: block; flex-shrink: 0; }

  /* 2 лінії: повна + 68% */
  .drozky .iglgcr::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 лінії рівні */
  .lncs8 .iglgcr::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% */
  .nght .iglgcr::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% */
  .mf4xijqy .iglgcr::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% */
  .hrgxo .iglgcr::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) {
  .e7vdntgj .iglgcr {
    padding: 5px 14px;
  }
  .e7vdntgj .xmo3mcm {
    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;
  }
  .e7vdntgj .xmo3mcm li a {
    border-bottom: none; padding: 10px 22px;
  }
  .e7vdntgj .xmo3mcm li a:hover { background: var(--bg-raised); }
}

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

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

/* overlay: повноекранне меню ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .b6ztba .iglgcr {
    padding: 5px 10px;
  }
  .b6ztba .xmo3mcm {
    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;
  }
  .b6ztba .xmo3mcm.hjr55in1 { opacity: 1; pointer-events: auto; }
  .b6ztba .xmo3mcm 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) {
  .wmr2qg     .iglgcr { border-radius: 0 !important; }
  .pla56m   .iglgcr { border-radius: 8px !important; }
  .esnbel2i .iglgcr { border-radius: 50% !important; }
  .sv11viho   .iglgcr { border-radius: 999px !important; }
}

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

/* ── star_style: вигляд зірок (showcase + review) ───────────────────────────*/
/* default = accent color (задано в базових стилях .ro27 / .xutlt9q) */
.uif9t2    .ro27, .uif9t2    .xutlt9q { color: #f59e0b; }
.dlbk      .ro27 { font-size: 1rem; letter-spacing: 1.5px; }
.dlbk      .xutlt9q   { font-size: 1.35rem; }
.w35kfbf    .ro27, .w35kfbf    .xutlt9q { color: var(--text-muted); opacity: 0.7; letter-spacing: 2px; }
.yki7     .ro27, .yki7     .xutlt9q { color: var(--accent); letter-spacing: 3px; font-size: 0.7rem; }
.ajmk1rne .ro27, .ajmk1rne .xutlt9q { color: var(--accent); letter-spacing: 2px; }
.i9tg1es   .ro27, .i9tg1es   .xutlt9q { color: #e91e63; letter-spacing: 2px; }
.m6j3qy  .ro27, .m6j3qy  .xutlt9q { color: var(--accent); letter-spacing: 2px; font-size: 0.65rem; }
.i67ake1     .ro27, .i67ake1     .xutlt9q { color: var(--accent); letter-spacing: 2px; font-size: 0.7rem; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

.etvwpeh .gzh3e7 { font-size: 0; width: 1.2rem; flex-shrink: 0; }.etvwpeh .gzh3e7::before {  content: ""; display: inline-block;  font-family: "Font Awesome 6 Free"; font-weight: 900;  font-size: 1.1rem; line-height: 1; }.etvwpeh .sdhrk     .gzh3e7::before { content: "";  color: var(--c-tip-border); }.etvwpeh .yjkl .gzh3e7::before { content: ""; color: var(--c-warn-border); }.etvwpeh .ewyewxk    .gzh3e7::before { content: ""; color: #60a5fa; }.cp6vm .etvwpeh .sdhrk     .gzh3e7::before { color: #10b981; }.cp6vm .etvwpeh .yjkl .gzh3e7::before { color: #f43f5e; }.cp6vm .etvwpeh .ewyewxk    .gzh3e7::before { color: #a855f7; }.uxlqr7  .etvwpeh .sdhrk     .gzh3e7::before { color: #eab308; }.uxlqr7  .etvwpeh .yjkl .gzh3e7::before { color: #ef4444; }.uxlqr7  .etvwpeh .ewyewxk    .gzh3e7::before { color: #f97316; }.d5345b8m  .etvwpeh .sdhrk     .gzh3e7::before { color: #38bdf8; }.d5345b8m  .etvwpeh .yjkl .gzh3e7::before { color: #818cf8; }.d5345b8m  .etvwpeh .ewyewxk    .gzh3e7::before { color: #2dd4bf; }.xutqi .etvwpeh .gzh3e7::before { color: var(--accent-light) !important; }

.n266 .uus1, .n266 .nvgo { min-height: 420px; }

.qziae .y9ffmm84::after, .qziae .n0pk035w::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; }

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

.vehpk::before { content: '›'; font-size: 1.1em; }