
/* shell */
.section-279{ padding:var(--shell-pad,var(--section-gap,40px)) 0 0; }
.sectionDense-2y8{ padding:var(--section-gap-dense,16px) 0 0; }
.container-115{ width:min(var(--shell-cw,var(--container-w,1100px)),calc(100% - var(--space-5))); margin:0 auto; }
.section-279:not(.sectionDense-2y8) > .container-115{ 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-279{ padding:var(--shell-pad-mobile,var(--shell-pad)) 0 0; } .sectionDense-2y8{ padding:var(--section-gap-dense-mobile,var(--section-gap-dense)) 0 0; } }

/* header K */
/* Header K — centered brand: logo/name absolutely centered, nav left, CTA right */

.hd-root-19u {
  position: var(--hd-position, relative);
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  height: var(--hd-height, 62px);
  background: var(--bg);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  transition: background .3s, box-shadow .25s, height .25s;
}

.hd-root-19u.hd-scrolled {
  height: calc(var(--hd-height, 62px) - 8px);
  background: color-mix(in srgb, var(--bg) 92%, var(--surface));
  box-shadow: 0 4px 20px rgba(0, 0, 0, .45);
}

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

.hd-brand-u3 {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}

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

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

.hdNavLink-2dn {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 4px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}

.hdNavLink-2dn:hover { color: var(--fg); background: rgba(255, 255, 255, .07); }

.h-cta-hc {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  border-radius: 999px;
  transition: opacity .2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.h-cta-hc:hover { opacity: .88; }

.hd-actions-1vx {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-2);
}

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

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

.hd_mobilenav-259 {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) var(--space-4);
  background: color-mix(in srgb, var(--bg) 97%, var(--surface));
  border-top: 1px solid rgba(255,255,255,.06);
  gap: var(--space-2);
}

.hd_mobilenav-259[hidden] { display: none !important; }
.hd_mobilenav-259 .hdNavLink-2dn { font-size: 15px; padding: 10px 0; color: rgba(255,255,255,.7); border-bottom: 1px solid rgba(255,255,255,.07); border-radius: 0; background: none; }
.hd_mobilenav-259 .h-cta-hc { margin-top: var(--space-2); text-align: center; border-radius: 999px; }

@media (max-width: 768px) {
  .hd-nav-2nr { display: none; }
  .hd-burger-20j { display: flex; }
}


/* banner C */
/* Banner C — carousel with dots */

.bn-root-z5 {
  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-z5::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 */
}

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

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

.bn_img-21c {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.b-overlay-1wf {
  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.3), rgba(0, 0, 0, 0.5));
  padding: var(--space-4);
  padding-bottom: 52px; /* room for dots */
  text-align: center;
}

.b-slide-ai[data-dark="light"]  .b-overlay-1wf { background: linear-gradient(to bottom, rgba(0, 0, 0, .12), rgba(0, 0, 0, .28)); }
.b-slide-ai[data-dark="medium"] .b-overlay-1wf { background: linear-gradient(to bottom, rgba(0, 0, 0, .3),  rgba(0, 0, 0, .5));  }
.b-slide-ai[data-dark="dark"]   .b-overlay-1wf { background: linear-gradient(to bottom, rgba(0, 0, 0, .5),  rgba(0, 0, 0, .75)); }

.b-overlay-1wf[data-align="left"]   { align-items: flex-start; text-align: left; }
.b-overlay-1wf[data-align="center"] { align-items: center;     text-align: center; }
.b-overlay-1wf[data-align="right"]  { align-items: flex-end;   text-align: right; }

.bn_title-rp {
  margin: 0;
  font-size: clamp(22px, 3.5vw, 46px);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
  line-height: 1.2;
}

.bn_label-ht {
  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);
}

.bnBadge-2ks {
  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);
}

.b-sub-s5 {
  margin: 0;
  font-size: clamp(13px, 1.8vw, 19px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
  line-height: 1.4;
}

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

.bn-btn-16r:hover { opacity: .9; }

.bnBtnSecondary-sn {
  display: inline-block;
  padding: 10px 24px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: var(--skin-r);
  border: 2px solid rgba(255, 255, 255, 0.65);
  transition: background .2s, border-color .2s;
}

.bnBtnSecondary-sn:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

.bnDots-1s5 {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.bn-dot-22c {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
  transition: background .25s, transform .25s;
}

.bn-dot-22c[data-active] {
  background: #fff;
  transform: scale(1.35);
}

@media (max-width: 768px) {
  .bn_title-rp { font-size: clamp(18px, 3vw, 36px); }
}

@media (max-width: 600px) {
  .bn-root-z5::before { padding-top: 90%; }
  .bn_title-rp { font-size: clamp(17px, 5vw, 26px); }
  .bn-btn-16r { padding: 10px 24px; font-size: 14px; }
  .bnBtnSecondary-sn { padding: 8px 18px; font-size: 12px; }
  .bnBadge-2ks { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .bn-dot-22c { width: 8px; height: 8px; }
}


/* hero E */
/* Hero E — h1 + intro as bullet list (compact, scannable) */

.h-root-22c {}

.h-title-24y {
  margin: 0 0 20px;
  font-weight: 800;
  font-size: clamp(22px, 3.5vw, 36px);
  line-height: 1.2;
  letter-spacing: -.015em;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.hero_list-1u4 {
  margin: 0;
  padding: 0 0 0 1.2em;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-item-1rv {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.6;
  color: var(--text);
}

.hero-item-1rv::marker {
  color: var(--primary);
}

@media (max-width: 600px) {
  .h-title-24y { font-size: 20px; margin-bottom: 14px; }
  .hero_list-1u4 { gap: 6px; }
}


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

.o-root-26l {
  padding: var(--card-pad);
}

.ovTitle-m9 {
  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-28t {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}


/* prose A */
/* Prose A — standard */

.pr_root-6j {
  padding: var(--card-pad) var(--card-pad) 0;
}

.pr-h2-2u5 {
  margin: 0 0 var(--space-3);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--skin-title);
}

.pr-h3-2iy {
  margin: var(--space-4) 0 var(--space-2);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

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

.p-list-5r {
  margin: 0 0 var(--space-3);
  padding-left: var(--space-4);
}

.pr-li-22w {
  margin-bottom: var(--space-1);
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

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

.p-thead-207 {
  background: var(--skin-ac);
}

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

.p-tbody-6x tr:nth-child(even) {
  background: color-mix(in srgb, var(--skin-bc) 30%, transparent);
}

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

.p-image-318 {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-1, 4px);
  margin: var(--space-3) 0;
}


/* bonus C */
/* bonus C — definition list: colored values, row separators */

.bt-root-2n1 {
  padding: var(--card-pad);
}

.btTitle-1ht {
  margin: 0 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);
}

.b-list-2bd {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 0;
}

.b-label-1t1 {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.5;
  padding: var(--space-2) var(--space-3) var(--space-2) 0;
  border-bottom: 1px solid var(--border);
  margin: 0;
  white-space: nowrap;
}

.b-value-2jm {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.5;
  padding: var(--space-2) 0 var(--space-2) var(--space-2);
  border-bottom: 1px solid var(--border);
  margin: 0;
  text-align: right;
}

/* last pair — no bottom border */
.b-label-1t1:last-of-type { border-bottom: none; }
.b-value-2jm:last-child   { border-bottom: none; }

@media (max-width: 500px) {
  .b-list-2bd { grid-template-columns: 1fr; }
  .b-label-1t1 { border-bottom: none; padding-bottom: 2px; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; }
  .b-value-2jm { padding-left: 0; margin-bottom: var(--space-2); }
}


/* prose A */
/* Prose A — standard */

.pr_root-1ke {
  padding: var(--card-pad) var(--card-pad) 0;
}

.pr-h2-230 {
  margin: 0 0 var(--space-3);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--skin-title);
}

.prH3-2e7 {
  margin: var(--space-4) 0 var(--space-2);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

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

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

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

.pr_table-35a {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 var(--space-3);
  font-size: 14px;
}

.pr_thead-78 {
  background: var(--skin-ac);
}

.pr-th-12e {
  padding: var(--space-2) var(--space-3);
  text-align: left;
  font-weight: 700;
  color: var(--skin-bg);
}

.pr_tbody-31q tr:nth-child(even) {
  background: color-mix(in srgb, var(--skin-bc) 30%, transparent);
}

.pr_td-1my {
  padding: var(--space-2) var(--space-3);
  border-top: 1px solid var(--border);
  color: var(--text);
  line-height: 1.5;
}

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


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

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

.p-title-1m2 {
  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);
}

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

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

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

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

.p-summary-xg {
  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);
}

.p-summary-xg::-webkit-details-marker { display: none; }

.p-summary-xg::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-ui[open] > .p-summary-xg::before { content: "\2212"; }

.pm-body-x4 {
  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-x4 > div {
  display: flex;
  gap: var(--space-2);
}

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

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


/* sticky-banner A */
/* Variant A — горизонтальний sticky банер
   HTML: bnRoot > bnInner > div(bnLabel+bnTitle+bnSub) + bnCta + bnClose */

@keyframes bnSlideUp   { from { transform: translateY(100%); opacity: 0 } to { transform: translateY(0); opacity: 1 } }
@keyframes bnSlideDown { from { transform: translateY(0); opacity: 1 } to { transform: translateY(100%); opacity: 0 } }
@keyframes bnFadeOut   { from { opacity: 1 } to { opacity: 0 } }

.bn-root-s4 {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  padding: 8px 16px;
  box-sizing: border-box;
}
.bn-root-s4[hidden] { display: none; }

.bn-inner-1k4 {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 48px 14px 20px;
  border-radius: var(--skin-r);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 -4px 32px rgba(0,0,0,.45);
  box-sizing: border-box;
}

.bnClose-2uw {
  position: absolute;
  top: 50%; right: 12px;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--muted);
  font-size: 18px;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: var(--skin-r);
  transition: color .15s, background .15s;
  line-height: 1;
}
.bnClose-2uw:hover { color: var(--text); background: rgba(255,255,255,.08); }

.bn-label-3m {
  display: inline-block;
  font-size: 11px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 2px 8px; border-radius: var(--skin-r);
  margin-bottom: 2px;
}
.bn-title-30y { margin: 0; font-weight: 800; font-size: clamp(14px,1.4vw,17px); line-height: 1.3; }
.bn_sub-24m  { margin: 2px 0 0; font-size: 13px; color: var(--muted); line-height: 1.4; }
.bn_cta-2ue  {
  flex-shrink: 0; margin-left: auto;
  display: inline-block; padding: 10px 24px;
  background: var(--skin-btn-bg); color: var(--skin-btn-c);
  border-radius: var(--skin-r); font-weight: 800; font-size: 14px;
  text-decoration: none; white-space: nowrap; cursor: pointer;
}

@media (max-width: 600px) {
  .bn-root-s4 { padding: 0; }
  .bn-inner-1k4 {
    border-radius: 0;
    border-left: 0; border-right: 0; border-bottom: 0;
    padding: 12px 44px 12px 12px;
    gap: 8px; flex-wrap: wrap;
  }
  .bn_sub-24m   { display: none; }
  .bn-label-3m { margin-bottom: 0; }
  .bn-title-30y { font-size: 14px; }
  .bnClose-2uw { top: 12px; right: 8px; transform: none; width: 28px; height: 28px; font-size: 16px; }
  .bn_cta-2ue   { flex: 1 1 100%; text-align: center; margin-left: 0; padding: 10px 12px; font-size: 13px; }
}


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

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

.pr_h2-2z7 {
  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-2o0 {
  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-hn {
  margin: 0 0 var(--space-4);
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}

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

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

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

.pr_thead-jh {
  background: color-mix(in srgb, var(--primary) 15%, transparent);
}

.prTh-29p {
  padding: var(--space-3);
  text-align: left;
  font-weight: 700;
  color: var(--text);
}

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

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


/* support D */
/* Support D — accordion */

.spRoot-yt {
  padding: var(--card-pad);
}

.sp-title-1t5 {
  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);
}

.spIntro-1xt {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.s-list-f5 {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

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

.s-summary-1tf {
  padding: var(--space-2) var(--space-3);
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
}

.s-summary-1tf::after {
  content: "+";
  margin-left: auto;
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
  transition: transform .2s;
}

.sp-details-151[open] > .s-summary-1tf::after {
  content: "\2212";
}

.sp-body-26t {
  padding: 0 var(--space-3) var(--space-3);
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.sp-body-26t p {
  margin: 0 0 var(--space-1);
}

.sp-body-26t p:last-child {
  margin-bottom: 0;
}


/* faq A */
.faqRoot-2rm {
  padding: var(--card-pad);
  position: relative;
  overflow: hidden;
}

.faqRoot-2rm>* {
  position: relative;
}

.faq-title-1q8 {
  margin: 0 0 var(--space-1);
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.15;
}

.f-intro-2eo {
  margin: 0 0 var(--space-4);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.f-item-111 {
  border-bottom: 1px solid var(--border);
}

.f-item-111:first-of-type {
  border-top: 1px solid var(--border);
  margin-top: var(--space-3);
}

.faq_q-139 {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--text);
  font-weight: 700;
  font-size: clamp(14px, 1.2vw, 16px);
  padding: var(--space-3) 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  line-height: 1.4;
  transition: color .15s;
}

.faq_q-139:hover {
  color: var(--brand);
}

.faq_q-139::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-3);
  border: 1.5px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  color: var(--muted);
  transition: border-color .15s, color .15s, transform .2s;
}

.faq_q-139[aria-expanded="true"]::after {
  content: "\2013";
  border-color: var(--brand);
  color: var(--brand);
  transform: rotate(180deg);
}

.f-a-2wl {
  padding: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}


/* rg E */
/* RG E — 18+ badge + title, chips, helpline */

.r-root-92 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  font-size: 13px;
  color: var(--muted);
}

.rg-badge-115 {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), .12);
  color: var(--primary);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: -.02em;
}

.rg_title-1lg {
  flex: 1 1 100%;
  margin: 0 0 4px;
  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;
}

.r-sites-86 {
  flex: 1 1 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 2px;
}

.rg-site-link-f9 {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid rgba(var(--primary-rgb), .35);
  border-radius: var(--radius-3);
  text-decoration: none;
  transition: background .15s;
}

.rg-site-link-f9:hover {
  background: rgba(var(--primary-rgb), .08);
}

.rg-helpline-19z {
  flex: 1 1 100%;
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}


/* footer C */
/* Footer C — two-column: brand+disclaimer left, nav right */

.ft-root-go {
  margin-top: var(--space-5);
  width: 100%;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--space-5) 0 var(--space-4);
}

.f-inner-22o {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-5);
}

.f-inner-22o > div:first-child {
  flex: 1;
  min-width: 0;
}

.ft_brand-d9 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--space-2);
}

.ft-logo-23b {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: var(--space-2);
}

.ft-nav-32d {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex-shrink: 0;
}

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

.ft_navlink-95:hover { color: var(--primary); }

.ft-disclaimer-127 {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: var(--space-1);
}

.ft_copy-1z1 {
  max-width: var(--container-w, 1100px);
  margin: var(--space-3) auto 0;
  padding: var(--space-3) var(--space-4) 0;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 640px) {
  .f-inner-22o { flex-direction: column; }
  .ft-nav-32d { flex-direction: row; flex-wrap: wrap; }
}

