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

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

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

/* ── Hero: спільні стилі ─────────────────────────────────────────────────────*/
.cdbmpxk2 { min-height: 480px; }
.axwuw3yl {
  font-size: 2.6rem; font-weight: 900; color: var(--accent-pale);
  line-height: 1.2; margin-bottom: 16px;
}
.vsfdt { font-size: 1.15rem; margin-bottom: 28px; }
.fjuuyt {
  background: var(--accent); color: #fff; text-decoration: none;
  border-radius: 8px; padding: 14px 32px;
  font-size: 1.05rem; font-weight: 700; display: inline-block;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.fjuuyt:hover { opacity: 0.9; transform: translateY(-2px); }

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

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

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

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

/* Split alignment — всередині text-колонки */
.rj0m.hyfw .vvap2 { align-items: center; text-align: center; }
.rj0m.nsq2m0sf   .vvap2 { align-items: flex-start; text-align: left; }

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

.d6k4p8 .puho8uo,
.navigj .puho8uo,
.wsvuohy .puho8uo {
  display: flex; align-items: center; justify-content: center;
  padding: 32px 32px 32px 0; overflow: hidden;
}
.d6k4p8 .yt2a7j,
.navigj .yt2a7j,
.wsvuohy .yt2a7j {
  position: static; flex-shrink: 0;
  width: min(380px, 100%); height: auto; aspect-ratio: 1/1; object-fit: cover;
}
.d6k4p8 .pk32h,
.navigj .pk32h,
.wsvuohy .pk32h {
  position: static; width: min(380px, 100%); aspect-ratio: 1/1;
}

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

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

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

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

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

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

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

/* інвертувати внутрішній padding media-блока */
.d6k4p8.c5i8 .puho8uo,
.navigj.c5i8  .puho8uo,
.wsvuohy.c5i8 .puho8uo { padding: 32px 0 32px 32px; }

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

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

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

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

/* rounded */
.sw988 .rc7bg        { border-radius: 16px; }
.sw988 .s8nqjwy  { border-radius: 16px; }

/* shadow */
.amax .rc7bg         { box-shadow: 0 4px 14px rgba(0,0,0,0.18); border-radius: 8px; }
.amax .s8nqjwy   { border-radius: 8px; }

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

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

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

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

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

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

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

.jmlj .iumjdau:nth-child(even) .xcteof50 .hatgn:nth-child(odd),
.k5um .iumjdau:nth-child(even) .xcteof50 .hatgn:nth-child(odd)  { background: var(--bg-card); }
.jmlj .iumjdau:nth-child(even) .xcteof50 .hatgn:nth-child(even),
.k5um .iumjdau:nth-child(even) .xcteof50 .hatgn:nth-child(even) { background: var(--bg-card-inner); }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* plain: простий текст */
.pigx .epd2k,
.pigx .sd2h2e,
.pigx .e9plse,
.pigx .rjgsaied { font-style: normal; color: var(--text-body); }

/* dash: ліва вертикальна чорточка */
.lqwn5y .epd2k,
.lqwn5y .sd2h2e {
  font-style: italic;
  border-left: 3px solid var(--border-section); padding-left: 12px;
}
.lqwn5y .e9plse,
.lqwn5y .rjgsaied {
  font-style: italic;
  border-left: 2px solid var(--border); padding-left: 10px;
}

/* bg: підкладка з фоном */
.djiha7 .epd2k,
.djiha7 .sd2h2e,
.djiha7 .e9plse,
.djiha7 .rjgsaied {
  font-style: normal;
  background: var(--bg-raised); border-radius: 6px;
  padding: 10px 14px; color: var(--text-sub);
}

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

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

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

.y5tr4z2    .oaj1az li, .y5tr4z2    .grxo4 li,
.he7mnt4 .oaj1az li, .he7mnt4 .grxo4 li,
.jwms .oaj1az li, .jwms .grxo4 li,
.q7wjbjbx   .oaj1az li, .q7wjbjbx   .grxo4 li {
  list-style: none; display: flex; align-items: baseline; gap: 0.55em;
}

.y5tr4z2    .oaj1az li::before, .y5tr4z2    .grxo4 li::before { content: "●"; color: var(--accent); flex-shrink: 0; }
.he7mnt4 .oaj1az li::before, .he7mnt4 .grxo4 li::before { content: "■"; color: var(--accent); flex-shrink: 0; }
.jwms .oaj1az li::before, .jwms .grxo4 li::before { content: "◆"; color: var(--accent); flex-shrink: 0; font-size: 0.75em; }
.q7wjbjbx   .oaj1az li::before, .q7wjbjbx   .grxo4 li::before { content: "★"; color: var(--accent); flex-shrink: 0; }

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

/* pill = solid but very rounded */
.gtqd174 .fjuuyt { border-radius: 50px; }
.gtqd174 .xnjoy0  { border-radius: 50px; }

/* ── btn_fill: gradient (тільки для solid та pill) ───────────────────────────*/
.cjdkvr97.yp9g3 .fjuuyt,
.gtqd174.yp9g3  .fjuuyt {
  background: linear-gradient(120deg, var(--grad-start), var(--accent), var(--grad-end));
  box-shadow: 0 4px 28px rgba(0,0,0,0.4);
}
.cjdkvr97.yp9g3 .xnjoy0,
.gtqd174.yp9g3  .xnjoy0 {
  background: linear-gradient(90deg, var(--grad-start), var(--accent));
}

/* ── btn_icon: SVG-іконки на .fjuuyt і .xnjoy0 (mask на currentColor) ──────*/
/* ::after — усі іконки після тексту (праворуч) */
.jwdeyj8   .fjuuyt::after, .jwdeyj8   .xnjoy0::after,
.sub0s .fjuuyt::after, .sub0s .xnjoy0::after,
.lhggail    .fjuuyt::after, .lhggail    .xnjoy0::after,
.q6gpj    .fjuuyt::after, .q6gpj    .xnjoy0::after,
.pi16    .fjuuyt::after, .pi16    .xnjoy0::after,
.rxbuwuh     .fjuuyt::after, .rxbuwuh     .xnjoy0::after,
.cjtpm    .fjuuyt::after, .cjtpm    .xnjoy0::after,
.wv2pttv0   .fjuuyt::after, .wv2pttv0   .xnjoy0::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 — кожна іконка */
.jwdeyj8 .fjuuyt::after, .jwdeyj8 .xnjoy0::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");
}
.sub0s .fjuuyt::after, .sub0s .xnjoy0::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");
}
.lhggail .fjuuyt::after, .lhggail .xnjoy0::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");
}
.q6gpj .fjuuyt::after, .q6gpj .xnjoy0::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");
}
.pi16 .fjuuyt::after, .pi16 .xnjoy0::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");
}
.rxbuwuh .fjuuyt::after, .rxbuwuh .xnjoy0::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");
}
.cjtpm .fjuuyt::after, .cjtpm .xnjoy0::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");
}
.wv2pttv0 .fjuuyt::after, .wv2pttv0 .xnjoy0::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 ─────────────────────────────────────────────────────────*/
.tniw { display: flex; flex-direction: column; gap: 6px; margin: 28px 0; }


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

/* ── Casino reviews ──────────────────────────────────────────────────────────*/
.f56r7uw {
  background: var(--bg-card);
  border-radius: 12px; margin: 24px 0; overflow: hidden;
  border: 1px solid var(--border-alt);
}
.g2r4n3 {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 24px; background: var(--bg-surface);
}
.tyuy2 {
  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;
}
.tyuy2 img { max-width: 80px; max-height: 50px; object-fit: contain; }
.oisf { color: var(--accent); font-weight: 700; font-size: 0.85rem; text-align: center; }
.cf5p3tg7 { flex: 1; }
.cf5p3tg7 h3 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 4px; }
.adcg { color: var(--c-stars); font-size: 1.1rem; }
.ifg8mosf { margin-bottom: 8px; }
.ldc2o2r { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 0.83rem; color: var(--text-muted); }
.mz1g4p::before   { content: "★ "; color: var(--accent); }
.hx3al::before { content: "↓ "; color: var(--accent); }
.yesx6iup::before { content: "✦ "; color: var(--accent); }
.q89d8l { flex-shrink: 0; }
.agdrfjm7 img.kobac { width: 100%; max-height: 240px; object-fit: cover; display: block; }
.vuujl { padding: 20px 24px; }
.rvdchw { color: var(--text-muted); margin-bottom: 16px; }
.fdwrgbb { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 14px; }
.f26if, .enkf93n0 { list-style: none; font-size: 0.9rem; }
.f26if li { color: var(--c-pros); margin-bottom: 4px; }
.enkf93n0 li { color: var(--c-cons); margin-bottom: 4px; }
/* CSS маркери для pros/cons замість символів в HTML */
.f26if li::before { content: "✓"; margin-right: 5px; }
.enkf93n0 li::before { content: "✗"; margin-right: 5px; }
.thu3 .f26if li::before { content: "→"; }
.thu3 .enkf93n0 li::before { content: "–"; }
.g83dph9p  .f26if li::before { content: "★"; }
.g83dph9p  .enkf93n0 li::before { content: "✕"; }
.bp6h    .f26if li::before { content: "◆"; }
.bp6h    .enkf93n0 li::before { content: "▲"; }
.flw5g  .f26if li::before { content: "▶"; }
.flw5g  .enkf93n0 li::before { content: "■"; }
.tgset2a { margin-bottom: 8px; font-size: 0.85rem; color: var(--text-muted); }
.v8x4 { background: var(--accent-bg); color: var(--accent-light); border-radius: 4px; padding: 2px 8px; margin: 2px 2px 2px 0; display: inline-block; }
.mjg8gb { background: var(--bg-pros); color: var(--c-tag-pay); }

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


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

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

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

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

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

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

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

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

/* ranked: accent-pill значення + uppercase лейбли (нумерація — через cs_rank) */
.es2ir .evb8s {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted);
}
.es2ir .hulb0ar0 {
  color: var(--accent); font-weight: 700;
  background: var(--accent-bg); border-radius: 100px;
  padding: 1px 9px; font-size: 0.8rem;
}
.es2ir .bpvoe06o { color: var(--accent); }
.es2ir .g2r4n3 { background: var(--accent-bg); }
.es2ir .mz1g4p, .es2ir .hx3al, .es2ir .yesx6iup {
  background: var(--bg-card); border-radius: 100px; padding: 1px 10px;
  border: 1px solid var(--border);
}

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

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

/* compact: менші відступи всюди */
.z01hp3bi .k3o8 { padding: 6px 10px; gap: 6px; }
.z01hp3bi .k4nrboj { height: 32px; min-width: 52px; }
.z01hp3bi .ho8bcidv { max-height: 24px; }
.z01hp3bi .eeapne { font-size: 0.82rem; }
.z01hp3bi .g2r4n3 { padding: 14px 18px; gap: 14px; }
.z01hp3bi .vuujl { padding: 14px 18px; }
.z01hp3bi .tyuy2 { width: 70px; }
.z01hp3bi .cf5p3tg7 h3 { font-size: 1.05rem; }

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

/* bordered: таблиця з усіма рамками */
.gc25 .tniw {
  gap: 0; border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.gc25 .k3o8 {
  border-radius: 0; border: none;
  border-bottom: 1px solid var(--border); gap: 0;
}
.gc25 .k3o8:last-child { border-bottom: none; }
/* вертикальні межі між колонками */
.gc25 .bpvoe06o,
.gc25 .f2n6stgb,
.gc25 .r8rp,
.gc25 .nf4tedr,
.gc25 .x3pg1jxe,
.gc25 .vjuxbe { border-left: 1px solid var(--border); padding-left: 10px; }
.gc25 .eeapne { padding: 0 10px; }

/* ── cs_cols: feature — бонус-колонка виділена як головна ──────────────────*/
.opxqmxin .f2n6stgb { flex: 1.8; }
.opxqmxin .f2n6stgb .hulb0ar0 {
  font-size: 0.95rem; font-weight: 800; color: var(--accent);
}
.opxqmxin .f2n6stgb .evb8s { font-weight: 700; color: var(--text-primary); }
.opxqmxin .r8rp,
.opxqmxin .nf4tedr,
.opxqmxin .x3pg1jxe { flex: 0.75; opacity: 0.65; }

/* ── cs_rating: вигляд рейтингу в showcase ──────────────────────────────────*/
/* show = default (accent color, базові стилі) */
.c8par3 .bpvoe06o { display: none; }
.nu0vmgu .bpvoe06o { font-size: 1rem; letter-spacing: 2px; }
.sx8rig .bpvoe06o {
  background: var(--accent-bg); border-radius: 100px;
  padding: 1px 10px; font-size: 0.75rem;
  color: var(--accent); font-weight: 700; letter-spacing: .5px;
}

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

/* ── Sections ────────────────────────────────────────────────────────────────*/
.iumjdau { margin-bottom: 0; }
.dvg6kp h2.keiv { color: var(--accent-light); border-color: var(--accent); }
.tebyj h2.keiv { color: var(--accent-light); border-color: var(--accent); }

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

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

/* vivid: смарагд / рожевий / фіолетовий */
.p26ki .svb7kdil     { background: #052e16; border-color: #10b981; }
.p26ki .xveis { background: #2d0a1e; border-color: #f43f5e; }
.p26ki .ryqsj2hz    { background: #1e1036; border-color: #a855f7; }
.p26ki .ifcgp strong  { color: #f1f5f9; }
.p26ki .ifcgp p       { color: #cbd5e1; }
.p26ki .c45bjuon    .svb7kdil     .p39ey::before,
.p26ki .gf7fky  .svb7kdil     .p39ey::before,
.p26ki .mlsykxfv  .svb7kdil     .p39ey::before,
.p26ki .bjoyd .svb7kdil     .p39ey::before { color: #10b981; }
.p26ki .c45bjuon    .xveis .p39ey::before,
.p26ki .gf7fky  .xveis .p39ey::before,
.p26ki .mlsykxfv  .xveis .p39ey::before,
.p26ki .bjoyd .xveis .p39ey::before { color: #f43f5e; }
.p26ki .c45bjuon    .ryqsj2hz    .p39ey::before,
.p26ki .gf7fky  .ryqsj2hz    .p39ey::before,
.p26ki .mlsykxfv  .ryqsj2hz    .p39ey::before,
.p26ki .bjoyd .ryqsj2hz    .p39ey::before { color: #a855f7; }

/* warm: жовтий / червоний / помаранчевий */
.hr0gmm2k .svb7kdil     { background: #2d2000; border-color: #eab308; }
.hr0gmm2k .xveis { background: #2d0b0b; border-color: #ef4444; }
.hr0gmm2k .ryqsj2hz    { background: #2d1600; border-color: #f97316; }
.hr0gmm2k .ifcgp strong  { color: #f1f5f9; }
.hr0gmm2k .ifcgp p       { color: #cbd5e1; }
.hr0gmm2k .c45bjuon    .svb7kdil     .p39ey::before,
.hr0gmm2k .gf7fky  .svb7kdil     .p39ey::before,
.hr0gmm2k .mlsykxfv  .svb7kdil     .p39ey::before,
.hr0gmm2k .bjoyd .svb7kdil     .p39ey::before { color: #eab308; }
.hr0gmm2k .c45bjuon    .xveis .p39ey::before,
.hr0gmm2k .gf7fky  .xveis .p39ey::before,
.hr0gmm2k .mlsykxfv  .xveis .p39ey::before,
.hr0gmm2k .bjoyd .xveis .p39ey::before { color: #ef4444; }
.hr0gmm2k .c45bjuon    .ryqsj2hz    .p39ey::before,
.hr0gmm2k .gf7fky  .ryqsj2hz    .p39ey::before,
.hr0gmm2k .mlsykxfv  .ryqsj2hz    .p39ey::before,
.hr0gmm2k .bjoyd .ryqsj2hz    .p39ey::before { color: #f97316; }

/* cool: блакитний / індиго / бірюзовий */
.f3fjv .svb7kdil     { background: #0c1a2e; border-color: #38bdf8; }
.f3fjv .xveis { background: #12103a; border-color: #818cf8; }
.f3fjv .ryqsj2hz    { background: #0a2020; border-color: #2dd4bf; }
.f3fjv .ifcgp strong  { color: #f1f5f9; }
.f3fjv .ifcgp p       { color: #cbd5e1; }
.f3fjv .c45bjuon    .svb7kdil     .p39ey::before,
.f3fjv .gf7fky  .svb7kdil     .p39ey::before,
.f3fjv .mlsykxfv  .svb7kdil     .p39ey::before,
.f3fjv .bjoyd .svb7kdil     .p39ey::before { color: #38bdf8; }
.f3fjv .c45bjuon    .xveis .p39ey::before,
.f3fjv .gf7fky  .xveis .p39ey::before,
.f3fjv .mlsykxfv  .xveis .p39ey::before,
.f3fjv .bjoyd .xveis .p39ey::before { color: #818cf8; }
.f3fjv .c45bjuon    .ryqsj2hz    .p39ey::before,
.f3fjv .gf7fky  .ryqsj2hz    .p39ey::before,
.f3fjv .mlsykxfv  .ryqsj2hz    .p39ey::before,
.f3fjv .bjoyd .ryqsj2hz    .p39ey::before { color: #2dd4bf; }

/* accent: використовує динамічний акцент */
.mereve .svb7kdil     { background: var(--accent-bg); border-color: var(--accent); }
.mereve .xveis { background: var(--accent-bg-light); border-color: var(--accent-light); }
.mereve .ryqsj2hz    { background: var(--accent-bg); border-color: var(--accent-pale); }
.mereve .c45bjuon    .p39ey::before,
.mereve .gf7fky  .p39ey::before,
.mereve .mlsykxfv  .p39ey::before,
.mereve .bjoyd .p39ey::before { color: var(--accent-light) !important; }

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

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

/* classic — фіксовані контрастні кольори незалежно від акценту */
.fl8d13 .bckeksj9 ul li,
.fl8d13 .f26if li         { color: #4ade80; }
.fl8d13 .bckeksj9 .j1wo { color: #22c55e; }
.fl8d13 .ncr7cuvg ul li,
.fl8d13 .enkf93n0 li         { color: #f87171; }
.fl8d13 .ncr7cuvg .xhc2ifu { color: #ef4444; }

/* blue: синій pros / amber cons */
.askwc .bckeksj9 { background: #0c1a2e; }
.askwc .ncr7cuvg { background: #2d1f00; }
.askwc .bckeksj9 .j1wo { color: #93c5fd; }
.askwc .ncr7cuvg .xhc2ifu { color: #fcd34d; }
.askwc .bckeksj9 ul li,
.askwc .f26if li            { color: #bfdbfe; }
.askwc .ncr7cuvg ul li,
.askwc .enkf93n0 li            { color: #fde68a; }

/* accent: label акцентний, текст завжди читабельний */
.ie9d .bckeksj9 { background: var(--accent-bg); }
.ie9d .ncr7cuvg { background: var(--accent-bg-light); }
.ie9d .bckeksj9 .j1wo { color: var(--accent-pale); }
.ie9d .ncr7cuvg .xhc2ifu { color: var(--accent-light); }
.ie9d .bckeksj9 ul li,
.ie9d .f26if li          { color: var(--text-body); }
.ie9d .ncr7cuvg ul li,
.ie9d .enkf93n0 li          { color: var(--text-body); }

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

/* check: ✓ / ✗ */
.woo07 .j1wo::before { content: "✓ "; }
.woo07 .xhc2ifu::before { content: "✗ "; }

/* arrows: → / ← */
.thu3 .j1wo::before { content: "→ "; }
.thu3 .xhc2ifu::before { content: "← "; }

/* marks: ★ / ✕ */
.g83dph9p .j1wo::before { content: "★ "; }
.g83dph9p .xhc2ifu::before { content: "✕ "; }

/* geo: ◆ / ▲ */
.bp6h .j1wo::before { content: "◆ "; }
.bp6h .xhc2ifu::before { content: "▲ "; }

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

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

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

/* topbar: смуга зверху */
.vbccdwn1 .ifcgp { border-left: none; border-top: 4px solid; border-radius: 0 0 8px 8px; }
.vbccdwn1 .svb7kdil     { border-top-color: var(--c-tip-border); }
.vbccdwn1 .xveis { border-top-color: var(--c-warn-border); }
.vbccdwn1 .ryqsj2hz    { border-top-color: #60a5fa; }

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

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

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

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

.c45bjuon .p39ey,
.gf7fky .p39ey,
.mlsykxfv .p39ey,
.bjoyd .p39ey { font-size: 0; width: 1.1rem; flex-shrink: 0; }

.c45bjuon .p39ey::before,
.gf7fky .p39ey::before,
.mlsykxfv .p39ey::before,
.bjoyd .p39ey::before {
  display: block; font-size: 1.15rem; line-height: 1.3; font-style: normal;
}

/* geo: ✦ ▲ ◉ */
.c45bjuon .svb7kdil     .p39ey::before { content: "✦"; color: var(--c-tip-border); }
.c45bjuon .xveis .p39ey::before { content: "▲"; color: var(--c-warn-border); }
.c45bjuon .ryqsj2hz    .p39ey::before { content: "◉"; color: #60a5fa; }

/* marks: ★ ◆ ● */
.gf7fky .svb7kdil     .p39ey::before { content: "★"; color: var(--c-tip-border); }
.gf7fky .xveis .p39ey::before { content: "◆"; color: var(--c-warn-border); }
.gf7fky .ryqsj2hz    .p39ey::before { content: "●"; color: #60a5fa; }

/* sharp: ▶ ■ ▸ */
.mlsykxfv .svb7kdil     .p39ey::before { content: "▶"; color: var(--c-tip-border); }
.mlsykxfv .xveis .p39ey::before { content: "■"; color: var(--c-warn-border); }
.mlsykxfv .ryqsj2hz    .p39ey::before { content: "▸"; color: #60a5fa; }

/* arrows: → ⬥ ◈ */
.bjoyd .svb7kdil     .p39ey::before { content: "→"; color: var(--c-tip-border); }
.bjoyd .xveis .p39ey::before { content: "⬥"; color: var(--c-warn-border); }
.bjoyd .ryqsj2hz    .p39ey::before { content: "◈"; color: #60a5fa; }

/* ── shadow variant ──────────────────────────────────────────────────────────*/
.u8rc .nqrrbyd .hatgn,
.u8rc .xcteof50 .hatgn  { box-shadow: 0 2px 8px rgba(0,0,0,0.22); }
.u8rc .sqpbbja                { box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
.u8rc .k3o8                { box-shadow: 0 4px 12px rgba(0,0,0,0.28); }
.u8rc .f56r7uw            { box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.u8rc .ddfer          { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }
.u8rc .bkp6zxt                    { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }

/* shadow-none: скидаємо будь-які тіні */
.ulzo3rd .nqrrbyd .hatgn,
.ulzo3rd .xcteof50 .hatgn,
.ulzo3rd .sqpbbja,
.ulzo3rd .k3o8,
.ulzo3rd .f56r7uw,
.ulzo3rd .ddfer,
.ulzo3rd .bkp6zxt,
.ulzo3rd .hn5e43a .ifcgp { box-shadow: none; }

/* ── text_size variants ──────────────────────────────────────────────────────*/
.gq7jh   body, .gq7jh   { font-size: 0.82rem; }
.gq7jh   .t6m777, .gq7jh .e9plse, .gq7jh .rjgsaied,
.gq7jh   .epd2k, .gq7jh .sd2h2e { font-size: 0.82rem; }
.gq7jh   .oaj1az, .gq7jh .t0qr { font-size: 0.82rem; }

.jzu3g4zp   .t6m777, .jzu3g4zp .e9plse, .jzu3g4zp .rjgsaied,
.jzu3g4zp   .epd2k, .jzu3g4zp .sd2h2e { font-size: 0.9rem; }
.jzu3g4zp   .oaj1az, .jzu3g4zp .t0qr { font-size: 0.9rem; }

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

.f2oj   .t6m777, .f2oj .e9plse, .f2oj .rjgsaied,
.f2oj   .epd2k, .f2oj .sd2h2e { font-size: 1.08rem; }
.f2oj   .oaj1az, .f2oj .t0qr { font-size: 1.05rem; }
.f2oj   .nlqc5 { font-size: 0.97rem; }

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

/* large */
.rytgrt .axwuw3yl      { font-size: 3.2rem; }
.rytgrt h2.keiv { font-size: 1.9rem; }
.rytgrt h3.eglsx8pc     { font-size: 1.4rem; }

/* display */
.k9rd01pv .axwuw3yl      { font-size: 3.8rem; }
.k9rd01pv h2.keiv { font-size: 2.2rem; }
.k9rd01pv h3.eglsx8pc     { font-size: 1.6rem; }

/* giant */
.hp3vznwk .axwuw3yl      { font-size: 4.6rem; font-weight: 900; line-height: 1.05; }
.hp3vznwk h2.keiv { font-size: 2.6rem; }
.hp3vznwk h3.eglsx8pc     { font-size: 1.9rem; }

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

/* Спільна база: abs-позиція на межі між секціями */
.z400miz   .iumjdau + .iumjdau::before,
.f7fdqb  .iumjdau + .iumjdau::before,
.djil8   .iumjdau + .iumjdau::before,
.r1zs5l8k   .iumjdau + .iumjdau::before,
.ns2t3sf   .iumjdau + .iumjdau::before,
.cwhofqr .iumjdau + .iumjdau::before {
  position: absolute; top: 0; left: 0; right: 0;
}

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

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

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

/* gap: просто більший відступ, без декору */
.ego6km .iumjdau { margin-bottom: 32px; }
.ego6km .iumjdau + .iumjdau { margin-top: 0; }

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

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

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

/* section_bg=even: парні секції мають bg-surface, непарні — bg-page */
.jmlj .qrfmf .iumjdau:nth-child(even)::before,
.jmlj .ngqmq8 .iumjdau:nth-child(even)::before,
.jmlj .af7j .iumjdau:nth-child(even)::before { background: var(--bg-surface); }

/* section_bg=stripe: парні секції мають bg-card */
.k5um .qrfmf .iumjdau:nth-child(even)::before,
.k5um .ngqmq8 .iumjdau:nth-child(even)::before,
.k5um .af7j .iumjdau:nth-child(even)::before { background: var(--bg-card); }

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

/* wave-a: плавна S-хвиля (1 гребінь) */
.sh7s .vr0e4jm::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 20 C12 0 37 0 50 20 C63 40 88 40 100 20 L100 50 Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 20 C12 0 37 0 50 20 C63 40 88 40 100 20 L100 50 Z' fill='black'/%3E%3C/svg%3E");
}

/* wave-b: 2 гребені */
.f84fqy .vr0e4jm::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 20 C8 0 17 0 25 20 C33 40 42 40 50 20 C58 0 67 0 75 20 C83 40 92 40 100 20 L100 50 Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 20 C8 0 17 0 25 20 C33 40 42 40 50 20 C58 0 67 0 75 20 C83 40 92 40 100 20 L100 50 Z' fill='black'/%3E%3C/svg%3E");
}

/* wave-c: глибока дуга */
.crbpscj .vr0e4jm::after {
  height: 70px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 40 C20 0 80 0 100 40 L100 50 Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 40 C20 0 80 0 100 40 L100 50 Z' fill='black'/%3E%3C/svg%3E");
}

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

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

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

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

/* BFC на кожен блок поруч із float: маркери не вилазять на картинку,
   блок не "ріжеться" — або повністю поруч із зображенням, або повністю під ним */
.unayjv6 .akjotp > .keiv,
.unayjv6 .akjotp > .epd2k,
.unayjv6 .akjotp > .sd2h2e,
.unayjv6 .akjotp > .hatgn,
.pwz0g .akjotp > .keiv,
.pwz0g .akjotp > .epd2k,
.pwz0g .akjotp > .sd2h2e,
.pwz0g .akjotp > .hatgn,
.szw3vc .akjotp > .keiv,
.szw3vc .akjotp > .epd2k,
.szw3vc .akjotp > .sd2h2e,
.szw3vc .akjotp > .hatgn { display: flow-root; }

@media (max-width: 640px) {
  .unayjv6 .rc7bg,
  .pwz0g .rc7bg,
  .szw3vc .rc7bg { float: none; width: 100%; margin: 0 0 16px 0; }
}

/* ── content_width: ширина контентного контейнера ───────────────────────────*/
/* default = 1000px (задано в .zc49x5a, .akjotp, .msf9n) */
.aax069ui .zc49x5a,
.aax069ui .akjotp,
.aax069ui .msf9n  { max-width: 900px; }
.r5wsay0 .zc49x5a,
.r5wsay0 .akjotp,
.r5wsay0 .msf9n  { max-width: 1200px; }
.ivgz2 .zc49x5a,
.ivgz2 .akjotp,
.ivgz2 .msf9n  { max-width: 1440px; }

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

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

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

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

/* content-width: above — обидва класи на <body>, тому без пробілу */
.aax069ui.x71xcg6 .pwvizke { max-width: 900px; }
.r5wsay0.x71xcg6 .pwvizke { max-width: 1200px; }
.ivgz2.x71xcg6 .pwvizke { max-width: 1440px; }
/* float — bc-float-wrap окремий елемент, тому з пробілом */
.aax069ui .avdpb0tq { max-width: 900px; }
.r5wsay0 .avdpb0tq { max-width: 1200px; }
.ivgz2 .avdpb0tq { max-width: 1440px; }

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

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

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

/* ── font_weight: жирність тексту ────────────────────────────────────────────*/
/* fw-300: тонкий */
.wdh1c7d { font-weight: 300; }
.wdh1c7d h2.keiv { font-weight: 600; }
.wdh1c7d h3.eglsx8pc     { font-weight: 600; }
/* fw-400: default — без override */
/* fw-500: medium */
.jlu5h2tg { font-weight: 500; }
.jlu5h2tg h2.keiv { font-weight: 800; }
.jlu5h2tg h3.eglsx8pc     { font-weight: 700; }
/* fw-600: semibold */
.mb3ji { font-weight: 600; }
.mb3ji h2.keiv { font-weight: 900; }
.mb3ji h3.eglsx8pc     { font-weight: 800; }
.mb3ji .ifcgp strong,
.mb3ji .e9plse,
.mb3ji .epd2k { font-weight: 600; }

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

/* minimal */
.w7i5 .msf9n { text-align: center; }
.w7i5 .kuz08 { justify-content: center; margin-bottom: 16px; }
.w7i5 .nwln { margin-top: 0; }

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

/* mobile footer */
@media (max-width: 640px) {
  .msf9n { padding-left: 16px; padding-right: 16px; }
  .z4x5h82o .msf9n { padding: 20px 16px; }
  .kuz08 { gap: 4px 12px; }
  .nwln { font-size: 0.78rem; }
}

/* brand — лого+лінки зліва, legal справа */
.h3319p5 .msf9n { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.h3319p5 .ldc6c { flex: 1; min-width: 160px; }
.h3319p5 .mzihy { text-align: right; flex-shrink: 0; }
@media (max-width: 640px) { .h3319p5 .msf9n { flex-direction: column; gap: 1.2rem; } .h3319p5 .mzihy { text-align: left; flex-shrink: unset; width: 100%; } }

/* columns — 3 колонки */
.e3bb .xt4i { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
.e3bb .ljz61:last-child { text-align: right; }
@media (max-width: 640px) { .e3bb .xt4i { grid-template-columns: 1fr; } .e3bb .ljz61:last-child { text-align: left; } }

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

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

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

/* dark: завжди темний, незалежно від теми */
.r5hr5c .fekr      { background: #0d1117; border-bottom-color: #21262d; }
.r5hr5c .kolztzv { color: var(--accent-light); }
.r5hr5c .ezcrrh1 a { color: #8b949e; }
.r5hr5c .ezcrrh1 a:hover { color: var(--accent-light); }
.r5hr5c .gl3yah { color: #8b949e; }
.r5hr5c .jj8x { background: #0d1117; border-top-color: #21262d; }
.r5hr5c .nwln,
.r5hr5c .gocwiea { color: #6e7681; }
@media (max-width: 640px) {
  .r5hr5c .ezcrrh1 { background: #0d1117; border-top-color: #21262d; }
  .r5hr5c .ezcrrh1 li a { border-bottom-color: #21262d; }
}

/* light: завжди світлий */
.rjssv3 .fekr      { background: #f0f4f8; border-bottom-color: #cbd5e1; }
.rjssv3 .kolztzv { color: var(--accent); }
.rjssv3 .ezcrrh1 a { color: #475569; }
.rjssv3 .ezcrrh1 a:hover { color: var(--accent); }
.rjssv3 .gl3yah { color: #64748b; }
.rjssv3 .jj8x { background: #f0f4f8; border-top-color: #cbd5e1; }
.rjssv3 .nwln,
.rjssv3 .gocwiea { color: #64748b; }
@media (max-width: 640px) {
  .rjssv3 .ezcrrh1 { background: #f0f4f8; border-top-color: #cbd5e1; }
  .rjssv3 .ezcrrh1 li a { border-bottom-color: #cbd5e1; color: #475569; }
}

/* accent: кольоровий акцентний фон */
.awie3 .fekr      { background: var(--accent); border-bottom-color: var(--accent-light); }
.awie3 .kolztzv { color: #fff; }
.awie3 .ezcrrh1 a { color: rgba(255,255,255,0.82); }
.awie3 .ezcrrh1 a:hover { color: #fff; }
.awie3 .gl3yah { color: rgba(255,255,255,0.9); }
.awie3 .jj8x { background: var(--accent); border-top-color: var(--accent-light); }
.awie3 .nwln,
.awie3 .gocwiea { color: rgba(255,255,255,0.72); }
@media (max-width: 640px) {
  .awie3 .ezcrrh1 { background: var(--accent); border-top-color: var(--accent-light); }
  .awie3 .ezcrrh1 li a { border-bottom-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.82); }
}

/* glass: напівпрозорий з blur */
.qdt0ft .fekr {
  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);
}
.qdt0ft .jj8x {
  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) {
  .qdt0ft .ezcrrh1 {
    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 */
.z2sw10e6 .ugij4k1i { height: 48px; }
.av5d1 .ugij4k1i { height: 56px; }
.yuvhowi .ugij4k1i { height: 72px; }
.khsw3ux .ugij4k1i { height: 84px; }

/* ── nav_width: ширина контейнера ────────────────────────────────────────────*/
/* content = default (max-width: 1000px) — без override */
.z4x5h82o .ugij4k1i { max-width: none; padding: 0 32px; }
.z4x5h82o .msf9n  { max-width: none; padding: 24px 32px; }

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


/* ── nav_logo_shape: форма логотипа ─────────────────────────────────────────*/
/* sq = default (border-radius: 6px вже задано в базовому стилі) */
.wc62j .fic5f { border-radius: 50%; }

/* ── nav_logo_bg: кольоровий фон тільки на картинці лого (навбар + футер) ───*/
/* none = без фону (default) */
.wvbc0 .fic5f,
.wvbc0 .ymer { background: var(--accent); border-radius: 8px; }
.hxwc3r .fic5f,
.hxwc3r .ymer { background: linear-gradient(135deg, var(--grad-start), var(--grad-end)); border-radius: 8px; }
.w6jkb6y5 .fic5f,
.w6jkb6y5 .ymer { background: var(--accent); border-radius: 999px; }
.y9kv89 .fic5f,
.y9kv89 .ymer { background: linear-gradient(135deg, var(--grad-start), var(--grad-end)); border-radius: 999px; }
.mh65wy .fic5f,
.mh65wy .ymer { background: var(--accent); border-radius: 50%; }
.yruotqf .fic5f,
.yruotqf .ymer { background: linear-gradient(135deg, var(--grad-start), var(--grad-end)); border-radius: 50%; }

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

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

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

  /* ховаємо ☰ символ і центруємо кнопку */
  .qrkhw .gl3yah,
  .jhtz .gl3yah,
  .p5nd7c .gl3yah,
  .vk724pew .gl3yah,
  .wc73i .gl3yah {
    font-size: 0 !important;
    display: flex !important;
    align-items: center; justify-content: center;
    padding: 0; width: 40px;
  }

  /* базовий ::before */
  .qrkhw .gl3yah::before,
  .jhtz .gl3yah::before,
  .p5nd7c .gl3yah::before,
  .vk724pew .gl3yah::before,
  .wc73i .gl3yah::before { content: ""; display: block; flex-shrink: 0; }

  /* 2 лінії: повна + 68% */
  .qrkhw .gl3yah::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 лінії рівні */
  .jhtz .gl3yah::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% */
  .p5nd7c .gl3yah::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% */
  .vk724pew .gl3yah::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% */
  .wc73i .gl3yah::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) {
  .e4wuvo .gl3yah {
    padding: 5px 14px; border-radius: 999px;
    border: 1.5px solid var(--border); background: var(--bg-card);
  }
  .e4wuvo .ezcrrh1 {
    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;
  }
  .e4wuvo .ezcrrh1 li a {
    border-bottom: none; padding: 10px 22px;
  }
  .e4wuvo .ezcrrh1 li a:hover { background: var(--bg-raised); }
}

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

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

/* overlay: повноекранне меню ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .tzs04vv .gl3yah {
    padding: 6px 12px; border-radius: 8px;
    background: var(--accent); color: #fff; border: none; font-size: 1.2rem;
  }
  .tzs04vv .ezcrrh1 {
    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;
  }
  .tzs04vv .ezcrrh1.q3k067i { opacity: 1; pointer-events: auto; }
  .tzs04vv .ezcrrh1 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) {
  .bbuidi     .gl3yah { border-radius: 0 !important; }
  .bqf12   .gl3yah { border-radius: 8px !important; }
  .v8djomag .gl3yah { border-radius: 50% !important; }
  .yf79d   .gl3yah { border-radius: 999px !important; }
}

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

/* ── star_style: вигляд зірок (showcase + review) ───────────────────────────*/
/* default = accent color (задано в базових стилях .bpvoe06o / .adcg) */
.d0i8t .bpvoe06o,
.d0i8t .adcg { color: #f59e0b; }
.joofg   .bpvoe06o { font-size: 1rem; letter-spacing: 1.5px; }
.joofg   .adcg   { font-size: 1.35rem; }
.o9wc .bpvoe06o,
.o9wc .adcg { color: var(--text-muted); opacity: 0.7; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/* ── color scheme ── */
:root {
  --accent:          #db9b95;
  --accent-light:    #f9b6af;
  --accent-pale:     #ffd3ce;
  --grad-start:      #633531;
  --grad-end:        #a66d68;
  --bg-page: #130c0c;
  --bg-surface: #130c0c;
  --bg-card: #1a1110;
  --bg-card-inner: #221716;
  --bg-raised: #291d1b;
  --bg-hover: #302221;
  --border: #554442;
  --border-alt: #84716f;
  --border-section: #554442;
  --text-primary: #f9e0dd;
  --text-muted: #bca6a3;
  --text-body: #d2c3c1;
  --text-sub: #a89b99;
  --text-faint: #736867;
  --text-dim: #5b504f;
  --text-label: #8d817f;
  --text-value: #c4b6b4;
  --accent-bg:       #4e2420;
  --accent-bg-light: #5b2f2a;
  --bg-tip:        #1a2e1a;
  --bg-warning:    #2d1f0e;
  --bg-info:       #1a1f2e;
  --bg-pros:       #1a2e1a;
  --bg-cons:       #2d1a1a;
  --c-pros:        #6ee7b7;
  --c-cons:        #fca5a5;
  --c-pros-label:  #34d399;
  --c-tip-border:  #34d399;
  --c-warn-border: #f59e0b;
  --c-stars:       #f59e0b;
  --c-arrow:       #f59e0b;
  --c-tag-pay:     #6ee7b7;
}

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

.hm4g .p39ey { font-size: 0; width: 1.2rem; flex-shrink: 0; }.hm4g .p39ey::before {  content: ""; display: inline-block;  font-family: "Font Awesome 6 Free"; font-weight: 900;  font-size: 1.1rem; line-height: 1; }.hm4g .svb7kdil     .p39ey::before { content: "";  color: var(--c-tip-border); }.hm4g .xveis .p39ey::before { content: ""; color: var(--c-warn-border); }.hm4g .ryqsj2hz    .p39ey::before { content: ""; color: #60a5fa; }.p26ki .hm4g .svb7kdil     .p39ey::before { color: #10b981; }.p26ki .hm4g .xveis .p39ey::before { color: #f43f5e; }.p26ki .hm4g .ryqsj2hz    .p39ey::before { color: #a855f7; }.hr0gmm2k  .hm4g .svb7kdil     .p39ey::before { color: #eab308; }.hr0gmm2k  .hm4g .xveis .p39ey::before { color: #ef4444; }.hr0gmm2k  .hm4g .ryqsj2hz    .p39ey::before { color: #f97316; }.f3fjv  .hm4g .svb7kdil     .p39ey::before { color: #38bdf8; }.f3fjv  .hm4g .xveis .p39ey::before { color: #818cf8; }.f3fjv  .hm4g .ryqsj2hz    .p39ey::before { color: #2dd4bf; }.mereve .hm4g .p39ey::before { color: var(--accent-light) !important; }

.pargec .cdbmpxk2, .pargec .rj0m { min-height: 520px; }

.af4zgue8 .fjuuyt::after, .af4zgue8 .xnjoy0::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; }

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