
/* shell */
.section-z{ padding:var(--shell-pad,var(--section-gap,40px)) 0 0; }
.section-dense-ia{ padding:var(--section-gap-dense,16px) 0 0; }
.container-qz{ width:min(var(--shell-cw,var(--container-w,1100px)),calc(100% - var(--space-5))); margin:0 auto; }
.section-z:not(.section-dense-ia) > .container-qz{ background:var(--shell-bg,var(--skin-bg)); border-radius:var(--skin-r); box-shadow:var(--shell-shadow,var(--skin-shadow)); backdrop-filter:var(--shell-blur,blur(var(--skin-blur))); overflow:hidden; }
figure.shot-mobile{ max-width:360px; margin-left:auto; margin-right:auto; border-radius:12px; overflow:hidden; }
figure.shot-mobile img{ max-height:560px; width:100%; object-fit:cover; object-position:top; display:block; }
@media(max-width:600px){ .section-z{ padding:var(--shell-pad-mobile,var(--shell-pad)) 0 0; } .section-dense-ia{ padding:var(--section-gap-dense-mobile,var(--section-gap-dense)) 0 0; } }

/* header G */
/* Header G — neon glow: dark bg, primary glow bottom edge, glowing CTA */

.hd-root-9g {
  position: var(--hd-position, relative);
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  height: var(--hd-height, 64px);
  background: var(--bg);
  box-shadow:
    0 1px 0 color-mix(in srgb, var(--primary) 55%, transparent),
    0 6px 32px color-mix(in srgb, var(--primary) 10%, transparent);
  transition: box-shadow .3s, height .25s;
}

.hd-root-9g.hd-scrolled {
  height: calc(var(--hd-height, 64px) - 8px);
  box-shadow:
    0 1px 0 var(--primary),
    0 8px 48px color-mix(in srgb, var(--primary) 28%, transparent);
}

.hd-inner-1w {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.hd-brand-dl {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  text-shadow: 0 0 22px color-mix(in srgb, var(--primary) 60%, transparent);
  flex-shrink: 0;
}

.hd-logo-df { height: calc(var(--hd-height, 64px) - 24px); width: auto; display: block; }

.hd-nav-mx {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 1;
  justify-content: center;
}

.hd-nav-link-6t {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s, text-shadow .2s;
  white-space: nowrap;
}

.hd-nav-link-6t:hover {
  color: #fff;
  text-shadow: 0 0 12px color-mix(in srgb, var(--primary) 70%, transparent);
}

.hd-cta-km {
  display: inline-block;
  padding: 8px 22px;
  background: transparent;
  color: var(--primary);
  border: 1.5px solid color-mix(in srgb, var(--primary) 65%, transparent);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: var(--radius-1);
  box-shadow: 0 0 14px color-mix(in srgb, var(--primary) 18%, transparent);
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.hd-cta-km:hover {
  background: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
  box-shadow: 0 0 30px color-mix(in srgb, var(--primary) 55%, transparent);
}

.hd-actions-13 {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

.hd-burger-nl {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hd-burger-nl span { display: block; width: 22px; height: 2px; background: var(--primary); border-radius: 2px; transition: transform .25s, opacity .25s; }
.hd-burger-nl.hd-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hd-burger-nl.hd-open span:nth-child(2) { opacity: 0; }
.hd-burger-nl.hd-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hd-mobile-nav-qn {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) var(--space-4);
  background: color-mix(in srgb, var(--bg) 96%, var(--primary));
  border-top: 1px solid color-mix(in srgb, var(--primary) 25%, transparent);
  gap: var(--space-2);
}

.hd-mobile-nav-qn[hidden] { display: none !important; }
.hd-mobile-nav-qn .hd-nav-link-6t { font-size: 15px; padding: 10px 0; color: rgba(255,255,255,.65); border-bottom: 1px solid rgba(255,255,255,.07); text-shadow: none; }
.hd-mobile-nav-qn .hd-nav-link-6t:hover { color: #fff; text-shadow: none; }
.hd-mobile-nav-qn .hd-cta-km { margin-top: var(--space-2); text-align: center; background: var(--primary); color: var(--bg); border-color: var(--primary); box-shadow: none; }

@media (max-width: 768px) {
  .hd-nav-mx { display: none; }
  .hd-burger-nl { display: flex; }
}


/* banner F */
/* Banner F — carousel with arrows */

.bn-root-a {
  position: relative;
  width: calc(100% - var(--space-5) * 2);
  max-width: var(--container-w, 1100px);
  margin: var(--section-gap, 40px) auto 0;
  overflow: hidden;
  border-radius: var(--skin-r);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .45);
}

.bn-root-a::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 */
}

.bn-slide-6b {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
}

.bn-slide-6b[data-active] {
  opacity: 1;
  pointer-events: auto;
}

.bn-img-5 {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.bn-overlay-2u {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
  /* horizontal padding reserves space so content never sits behind arrows */
  padding: var(--space-4) 72px;
  text-align: center;
}

.bn-slide-6b[data-dark="light"]  .bn-overlay-2u { background: linear-gradient(to bottom, rgba(0, 0, 0, .18), rgba(0, 0, 0, .35)); }
.bn-slide-6b[data-dark="medium"] .bn-overlay-2u { background: linear-gradient(to bottom, rgba(0, 0, 0, .35), rgba(0, 0, 0, .55)); }
.bn-slide-6b[data-dark="dark"]   .bn-overlay-2u { background: linear-gradient(to bottom, rgba(0, 0, 0, .55), rgba(0, 0, 0, .78)); }

.bn-overlay-2u[data-align="left"]   { align-items: flex-start; text-align: left; }
.bn-overlay-2u[data-align="center"] { align-items: center;     text-align: center; }
.bn-overlay-2u[data-align="right"]  { align-items: flex-end;   text-align: right; }

.bn-title-mw {
  margin: 0;
  font-size: clamp(22px, 3.8vw, 48px);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.bn-label-78 {
  display: inline-block;
  padding: 4px 14px;
  background: var(--skin-btn-bg);
  color: var(--skin-btn-c);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--skin-r);
}

.bn-badge-5p {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 12px;
  background: var(--skin-btn-bg);
  color: var(--skin-btn-c);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--skin-r);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}

.bn-subtitle-1m {
  margin: 0;
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
  line-height: 1.4;
}

.bn-btn-f6 {
  display: inline-block;
  padding: 13px 36px;
  background: var(--skin-btn-bg);
  color: var(--skin-btn-c);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border-radius: var(--skin-r);
  transition: opacity .2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.bn-btn-f6:hover { opacity: .9; }

.bn-btn-secondary-pg {
  display: inline-block;
  padding: 11px 26px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: var(--skin-r);
  border: 2px solid rgba(255, 255, 255, 0.65);
  transition: background .2s, border-color .2s;
}

.bn-btn-secondary-pg:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

.bn-arrows-0 {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
  z-index: 10;
}

.bn-arrow-prev-d2,
.bn-arrow-next-cq {
  pointer-events: auto;
  width: 46px;
  height: 46px;
  border: none;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  font-weight: 400;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bn-arrow-prev-d2:hover,
.bn-arrow-next-cq:hover {
  background: rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px) {
  .bn-title-mw { font-size: clamp(20px, 3.5vw, 38px); }
  .bn-overlay-2u { padding-left: 58px; padding-right: 58px; }
  .bn-arrow-prev-d2, .bn-arrow-next-cq { width: 38px; height: 38px; font-size: 22px; }
}

@media (max-width: 600px) {
  .bn-root-a::before { padding-top: 90%; }
  .bn-overlay-2u { padding-left: 48px; padding-right: 48px; }
  .bn-title-mw { font-size: clamp(17px, 5vw, 26px); }
  .bn-btn-f6 { padding: 11px 28px; font-size: 14px; }
  .bn-btn-secondary-pg { padding: 9px 20px; font-size: 13px; }
  .bn-badge-5p { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .bn-arrow-prev-d2, .bn-arrow-next-cq { width: 34px; height: 34px; font-size: 20px; }
  .bn-arrows-0 { padding: 0 8px; }
}


/* hero A */
/* Hero A — h1 + single intro paragraph, left-aligned */

.hero-root-hy {}

.hero-title-jg {
  margin: 0 0 20px;
  font-weight: 900;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.hero-intro-po {
  margin: 0;
  max-width: 760px;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.7;
  color: var(--text);
}

@media (max-width: 600px) {
  .hero-title-jg { font-size: 24px; margin-bottom: 14px; }
  .hero-intro-po { line-height: 1.6; }
}


/* overview B */
/* Overview B — prose only */

.ov-root-a7 {
  padding: var(--card-pad);
}

.ov-title-jv {
  margin: 0 0 var(--space-2);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.ov-body-r7 {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}


/* prose B */
/* Prose B — wide, generous spacing */

.pr-root-m {
  padding: var(--card-pad) calc(var(--card-pad) * 1.5) 0;
}

.pr-h2-84 {
  margin: 0 0 var(--space-4);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--skin-title);
  border-bottom: 2px solid var(--skin-ac);
  padding-bottom: var(--space-2);
}

.pr-h3-pb {
  margin: var(--space-5) 0 var(--space-3);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.pr-p-nq {
  margin: 0 0 var(--space-4);
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}

.pr-list-cu {
  margin: 0 0 var(--space-4);
  padding-left: var(--space-5);
}

.pr-li-7l {
  margin-bottom: var(--space-2);
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.pr-table-b2 {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 var(--space-4);
  font-size: 15px;
}

.pr-thead-n8 {
  background: color-mix(in srgb, var(--primary) 15%, transparent);
}

.pr-th-g6 {
  padding: var(--space-3);
  text-align: left;
  font-weight: 700;
  color: var(--text);
}

.pr-td-2y {
  padding: var(--space-3);
  border-top: 1px solid var(--border);
  color: var(--text);
  line-height: 1.6;
}

.pr-image-gf {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-1);
  margin: var(--space-4) 0;
}


/* bonus A */
/* bonus A — table with accent top bar and primary-colored values */

.bt-root-kd {
  padding: var(--card-pad);
  position: relative;
  overflow: hidden;
}

.bt-root-kd::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  position: absolute;
  top: 0; left: 0; right: 0;
  border-radius: var(--radius-2) var(--radius-2) 0 0;
}

.bt-title-ht {
  margin: var(--space-2) 0 var(--space-3);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.bt-table-rr {
  width: 100%;
  border-collapse: collapse;
}

.bt-row-pv:first-child .bt-label-bp,
.bt-row-pv:first-child .bt-value-oq {
  padding-top: var(--space-3);
}

.bt-row-pv + .bt-row-pv .bt-label-bp,
.bt-row-pv + .bt-row-pv .bt-value-oq {
  border-top: 1px solid var(--border);
}

.bt-row-pv:hover .bt-label-bp,
.bt-row-pv:hover .bt-value-oq {
  background: color-mix(in srgb, var(--primary) 6%, transparent);
}

.bt-label-bp,
.bt-value-oq {
  padding: var(--space-2) 0;
  font-size: 14px;
  line-height: 1.5;
  vertical-align: middle;
  transition: background .15s;
}

.bt-label-bp {
  color: var(--muted);
  font-weight: 500;
  padding-right: var(--space-3);
  white-space: nowrap;
}

.bt-value-oq {
  color: var(--primary);
  font-weight: 700;
  text-align: right;
}

@media (max-width: 600px) {
  .bt-label-bp, .bt-value-oq { font-size: 13px; }
}

.bt-screenshot-mh {
  margin: 28px 0;
  border-radius: var(--radius-1);
  overflow: hidden;
  line-height: 0;
}
.bt-screenshot-mh img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  object-position: top;
  display: block;
}


/* prose C */
/* Prose C — narrow blog-style column */

.pr-root-k7 {
  padding: var(--card-pad) var(--card-pad) 0;
}

.pr-h2-i9 {
  margin: 0 0 var(--space-3);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--skin-title);
}

.pr-h3-12 {
  margin: var(--space-4) 0 var(--space-2);
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.pr-p-2p {
  margin: 0 0 var(--space-3);
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
}

.pr-list-oz {
  margin: 0 0 var(--space-3);
  padding-left: var(--space-4);
}

.pr-li-ho {
  margin-bottom: var(--space-2);
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.pr-table-pp {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 var(--space-3);
  font-size: 13px;
}

.pr-th-4f {
  padding: var(--space-2);
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--border);
  color: var(--text);
}

.pr-td-hn {
  padding: var(--space-2);
  border-top: 1px solid var(--border);
  color: var(--muted);
  line-height: 1.5;
}

.pr-image-3k {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-1);
  margin: var(--space-3) auto;
}


/* payments E */
/* Payments E — accordion details/summary */

.pm-root-qq {
  padding: var(--card-pad);
}

.pm-title-48 {
  margin: 0 0 var(--space-2);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.pm-intro-ds {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.pm-list-jm {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.pm-details-18 {
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  overflow: hidden;
}

.pm-details-18[open] { background: var(--bg); }

.pm-summary-bu {
  padding: var(--space-2) var(--space-3);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.pm-summary-bu::-webkit-details-marker { display: none; }

.pm-summary-bu::before {
  content: "+";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--primary);
  color: var(--bg);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.pm-details-18[open] > .pm-summary-bu::before { content: "\2212"; }

.pm-body-82 {
  padding: 0 var(--space-3) var(--space-2) calc(var(--space-3) + 20px + var(--space-2));
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pm-body-82 > div {
  display: flex;
  gap: var(--space-2);
}

.pm-label-gc {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  min-width: 110px;
}

.pm-value-dj {
  font-size: 13px;
  font-weight: 600;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}


/* sticky-banner D */
/* Variant D — центрований банер-картка знизу
   HTML: bnRoot(relative, flex col) > bnClose(absolute) + bnBadge + bnTitle + bnSub + bnCta */

@keyframes bnCornerIn  { from { transform: translateX(-50%) translateY(80px); opacity: 0 } to { transform: translateX(-50%) translateY(0); opacity: 1 } }
@keyframes bnCornerOut { from { transform: translateX(-50%) translateY(0); opacity: 1 } to { transform: translateX(-50%) translateY(80px); opacity: 0 } }
@keyframes bnSlideUp   { from { transform: translateX(-50%) translateY(100%); opacity: 0 } to { transform: translateX(-50%) translateY(0); opacity: 1 } }
@keyframes bnSlideDown { from { transform: translateX(-50%) translateY(0); opacity: 1 } to { transform: translateX(-50%) translateY(100%); opacity: 0 } }
@keyframes bnFadeOut   { from { opacity: 1 } to { opacity: 0 } }

/* mobile-only keyframes (no translateX) */
@keyframes bnCornerInM  { from { transform: translateY(80px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }
@keyframes bnCornerOutM { from { transform: translateY(0); opacity: 1 } to { transform: translateY(80px); opacity: 0 } }

.bn-root-rd {
  position: fixed;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: min(560px, calc(100vw - 32px));
  border-radius: var(--skin-r);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 16px 56px rgba(0,0,0,.55);
  padding: 24px;
  display: flex; flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
}
.bn-root-rd[hidden] { display: none; }

.bn-close-73 {
  position: absolute;
  top: 14px; right: 14px;
  background: transparent; border: 0;
  cursor: pointer; color: var(--muted);
  font-size: 14px;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: var(--skin-r);
  transition: background .15s, color .15s;
  line-height: 1;
}
.bn-close-73:hover { background: rgba(255,255,255,.1); color: var(--text); }

.bn-badge-2k {
  display: inline-flex; align-items: center; align-self: flex-start;
  font-size: 11px; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--skin-r); line-height: 1;
}
.bn-title-c5 {
  margin: 0; font-weight: 900; font-size: 22px;
  line-height: 1.2; letter-spacing: -.02em;
  padding-right: 36px;
}
.bn-sub-5t { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.55; }
.bn-cta-k5 {
  display: block; text-align: center;
  padding: 14px 20px; border-radius: var(--skin-r);
  background: var(--skin-btn-bg); color: var(--skin-btn-c);
  font-weight: 800; font-size: 15px;
  text-decoration: none; cursor: pointer;
  transition: filter .15s, transform .15s;
  letter-spacing: .01em; margin-top: 4px;
}
.bn-cta-k5:hover { filter: brightness(1.08); transform: translateY(-1px); }

@media (max-width: 600px) {
  .bn-root-rd {
    bottom: 0; left: 0; right: 0;
    width: 100%;
    transform: none;
    border-radius: var(--radius-3) var(--radius-3) 0 0;
    padding: 20px 16px 24px;
  }
  .bn-close-73 { top: 12px; right: 12px; }
  .bn-title-c5 { font-size: 18px; padding-right: 36px; }
  .bn-sub-5t   { font-size: 13px; }
  .bn-cta-k5   { padding: 12px 16px; font-size: 14px; }
}


/* prose B */
/* Prose B — wide, generous spacing */

.pr-root-9 {
  padding: var(--card-pad) calc(var(--card-pad) * 1.5) 0;
}

.pr-h2-b {
  margin: 0 0 var(--space-4);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--skin-title);
  border-bottom: 2px solid var(--skin-ac);
  padding-bottom: var(--space-2);
}

.pr-h3-aw {
  margin: var(--space-5) 0 var(--space-3);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.pr-p-c3 {
  margin: 0 0 var(--space-4);
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}

.pr-list-ad {
  margin: 0 0 var(--space-4);
  padding-left: var(--space-5);
}

.pr-li-c2 {
  margin-bottom: var(--space-2);
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.pr-table-1f {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 var(--space-4);
  font-size: 15px;
}

.pr-thead-id {
  background: color-mix(in srgb, var(--primary) 15%, transparent);
}

.pr-th-5h {
  padding: var(--space-3);
  text-align: left;
  font-weight: 700;
  color: var(--text);
}

.pr-td-ld {
  padding: var(--space-3);
  border-top: 1px solid var(--border);
  color: var(--text);
  line-height: 1.6;
}

.pr-image-m {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-1);
  margin: var(--space-4) 0;
}


/* support A */
/* Support A — full table */

.sp-root-lm {
  padding: var(--card-pad);
}

.sp-title-ag {
  margin: 0 0 var(--space-2);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.sp-intro-94 {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.sp-table-1u {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.sp-thead-4o {
  border-bottom: 2px solid var(--border);
}

.sp-th-o2 {
  text-align: left;
  padding: var(--space-2) var(--space-2);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
}

.sp-td-9i {
  padding: var(--space-2);
  color: var(--text);
  line-height: 1.5;
}

.sp-row-qa + .sp-row-qa .sp-td-9i {
  border-top: 1px solid var(--border);
}

.sp-channel-dl {
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

@media (max-width: 580px) {
  .sp-table-1u, .sp-thead-4o, .sp-row-qa, .sp-td-9i, .sp-th-o2 {
    display: block;
    width: 100%;
  }
  .sp-thead-4o { display: none; }
  .sp-row-qa + .sp-row-qa { margin-top: var(--space-2); }
  .sp-row-qa + .sp-row-qa .sp-td-9i { border-top: none; }
  .sp-row-qa { border: 1px solid var(--border); border-radius: var(--radius-1); padding: var(--space-2); }
  .sp-td-9i { padding: 2px 0; }
  .sp-td-9i::before { font-size: 11px; color: var(--muted); text-transform: uppercase; display: block; }
  .sp-row-qa .sp-td-9i:nth-child(2)::before { content: "Languages"; }
  .sp-row-qa .sp-td-9i:nth-child(3)::before { content: "Hours"; }
}

.sp-screenshot-hu {
  margin: 28px 0;
  border-radius: var(--radius-1);
  overflow: hidden;
  line-height: 0;
}
.sp-screenshot-hu img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  object-position: top;
  display: block;
}


/* security D */
/* Security D — checklist */

.sc-root-qz {
  padding: var(--card-pad);
}

.sc-title-7z {
  margin: 0 0 var(--space-2);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.sc-intro-cb {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.sc-list-4v {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.sc-item-mw {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
}

.sc-check-fl::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-size: 13px;
  font-weight: 800;
  color: var(--bg);
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  line-height: 1;
}

.sc-text-80 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}


/* faq B */
.faq-root-3o {
  padding: var(--card-pad);
  position: relative;
  overflow: hidden;
}

.faq-root-3o>* {
  position: relative;
}

.faq-title-9u {
  margin: 0 0 var(--space-2);
  font-size: clamp(18px, 2.4vw, 26px);
}

.faq-subtitle-qo {
  margin: 0 0 var(--space-3);
  color: var(--muted);
}

.faq-list-4c {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-3);
}

.faq-q-cv {
  margin: 0 0 var(--space-2);
  font-size: 16px;
}

.faq-a-a7 {
  margin: 0;
  color: var(--muted);
}

.faq-item-6b {
  transition: transform .14s ease, border-color .14s ease, background .14s ease, box-shadow .14s ease;
}

/* rg C */
/* RG C — card grid of help sites + helpline footer */

.rg-root-23 {
  padding: var(--space-3) var(--space-4);
  font-size: 13px;
  color: var(--muted);
}

.rg-title-1b {
  margin: 0 0 var(--space-3);
  font-size: 13px;
  font-weight: 700;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.rg-grid-gb {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.rg-card-75 {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--space-2) var(--space-2);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  text-decoration: none;
  transition: border-color .15s;
}

.rg-card-75:hover {
  border-color: var(--primary);
}

.rg-card-name-2a {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.rg-card-url-2i {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rg-helpline-dq {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: var(--space-2);
}


/* footer B */
/* Footer B — centered stacked: brand → nav → disclaimer → copyright */

.ft-root-4y {
  margin-top: var(--space-5);
  width: 100%;
  background: var(--bg);
  border-top: 2px solid var(--primary);
  padding: var(--space-5) 0 var(--space-4);
  text-align: center;
}

.ft-inner-m6 {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.ft-brand-6j {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.ft-logo-qp {
  height: 40px;
  width: auto;
  display: block;
}

.ft-nav-hz {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.ft-nav-link-2z {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color .2s;
  white-space: nowrap;
}

.ft-nav-link-2z:hover { color: var(--fg); }

.ft-disclaimer-a1 {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 700px;
}

.ft-copy-gz {
  font-size: 12px;
  color: var(--muted);
  margin-top: var(--space-1);
}

