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

/* header H */
/* Header H — floating card: rounded card inset from viewport edges (best with position:fixed) */

/* Account for the 14px top offset so body padding compensates correctly */
:root { --hd-total: calc(var(--hd-height, 62px) + 22px); }

.hd-root-ny {
  position: var(--hd-position, relative);
  top: 14px;
  left: 20px;
  right: 20px;
  z-index: 1000;
  width: auto;
  height: var(--hd-height, 62px);
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 4px 28px rgba(0, 0, 0, .30);
  transition: box-shadow .3s, height .25s;
}

.hd-root-ny.hd-scrolled {
  height: calc(var(--hd-height, 62px) - 6px);
  box-shadow: 0 10px 48px rgba(0, 0, 0, .52);
}

.hd-inner-2a {
  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-3j {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 19px;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
}

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

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

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

.hd-nav-link-qf:hover { color: var(--fg); }

.hd-cta-8c {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: var(--radius-1);
  transition: opacity .2s, transform .15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.hd-cta-8c:hover { opacity: .88; transform: translateY(-1px); }

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

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

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

/* Dropdown hangs below the card with matching rounded bottom */
.hd-mobile-nav-7t {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) var(--space-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 14px 14px;
  gap: var(--space-2);
}

.hd-mobile-nav-7t[hidden] { display: none !important; }
.hd-mobile-nav-7t .hd-cta-8c { margin-top: var(--space-2); text-align: center; }

@media (max-width: 768px) {
  :root { --hd-total: calc(var(--hd-height, 62px) + 18px); }
  .hd-root-ny { left: 10px; right: 10px; top: 10px; }
  .hd-nav-97 { display: none; }
  .hd-burger-lb { display: flex; }
}


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

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

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

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

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

.bn-overlay-jy {
  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;
}

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

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

.bn-title-40 {
  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-g4 {
  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-el {
  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-8i {
  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-ii {
  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-ii:hover { opacity: .9; }

.bn-btn-secondary-6k {
  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;
}

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

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

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

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

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

@media (max-width: 600px) {
  .bn-root-bm::before { padding-top: 90%; }
  .bn-title-40 { font-size: clamp(17px, 5vw, 26px); }
  .bn-btn-ii { padding: 10px 24px; font-size: 14px; }
  .bn-btn-secondary-6k { padding: 8px 18px; font-size: 12px; }
  .bn-badge-el { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .bn-dot-lh { width: 8px; height: 8px; }
}


/* hero C */
/* Hero C — accent border left, h1 + multi-paragraph intro chunks */

.hero-root-99 {
  border-left: 4px solid var(--primary);
  padding-left: 20px;
}

.hero-title-gh {
  margin: 0 0 18px;
  font-weight: 800;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.2;
  letter-spacing: -.015em;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.hero-chunks-cj {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-chunk-be {
  margin: 0;
  max-width: 700px;
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.7;
  color: var(--text);
}

@media (max-width: 600px) {
  .hero-root-99 { border-left-width: 3px; padding-left: 14px; }
  .hero-title-gh { font-size: 22px; margin-bottom: 12px; }
  .hero-chunks-cj { gap: 10px; }
}


/* overview D */
/* Overview D — prose + inline tag badges */

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

.ov-title-fm {
  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-68 {
  margin: 0 0 var(--space-3);
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.ov-tags-3x {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.ov-tag-8s {
  display: inline-block;
  padding: 4px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(var(--primary-rgb), .08);
  border: 1px solid rgba(var(--primary-rgb), .18);
  border-radius: var(--radius-1);
  line-height: 1.4;
}


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

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

.pr-h2-h0 {
  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-6f {
  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-5a {
  margin: 0 0 var(--space-3);
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

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

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

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

.pr-thead-g4 {
  background: var(--skin-ac);
}

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

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

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

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


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

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

.bt-root-cw::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-qe {
  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-5o {
  width: 100%;
  border-collapse: collapse;
}

.bt-row-l0:first-child .bt-label-5i,
.bt-row-l0:first-child .bt-value-ll {
  padding-top: var(--space-3);
}

.bt-row-l0 + .bt-row-l0 .bt-label-5i,
.bt-row-l0 + .bt-row-l0 .bt-value-ll {
  border-top: 1px solid var(--border);
}

.bt-row-l0:hover .bt-label-5i,
.bt-row-l0:hover .bt-value-ll {
  background: color-mix(in srgb, var(--primary) 6%, transparent);
}

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

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

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

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

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


/* payments D */
/* Payments D — compact two-column table */

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

.pm-title-er {
  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-hj {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.pm-table-it {
  width: 100%;
  border-collapse: collapse;
}

.pm-row-9l + .pm-row-9l .pm-method-fu,
.pm-row-9l + .pm-row-9l .pm-info-ef {
  border-top: 1px solid var(--border);
}

.pm-method-fu,
.pm-info-ef {
  padding: var(--space-2) 0;
  font-size: 14px;
  line-height: 1.5;
  vertical-align: top;
}

.pm-method-fu {
  font-weight: 700;
  color: var(--primary);
  padding-right: var(--space-3);
  white-space: nowrap;
  width: 25%;
}

.pm-info-ef {
  color: var(--muted);
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .pm-method-fu { white-space: normal; width: 35%; }
  .pm-method-fu, .pm-info-ef { font-size: 13px; }
}


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

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

.pr-h2-4w {
  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-m3 {
  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-oa {
  margin: 0 0 var(--space-3);
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
}

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

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

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

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

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

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


/* providers D */
/* Providers D — asymmetric grid: 2 featured large + dense rest */

.pv-root-ii {
  padding: var(--card-pad);
}

.pv-title-q0 {
  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);
}

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

.pv-featured-po {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.pv-grid-4e {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--space-2);
}

.pv-card-7o {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-2);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  transition: border-color .2s, transform .2s;
}

.pv-card-7o:hover {
  border-color: rgba(var(--primary-rgb), .4);
  transform: translateY(-2px);
}

.pv-card-featured-e2 {
  padding: var(--space-4) var(--space-3);
  border-color: rgba(var(--primary-rgb), .2);
}

.pv-logo-a1 {
  width: 100%;
  height: 48px;
  object-fit: contain;
}

.pv-card-featured-e2 .pv-logo-a1 {
  height: 64px;
}

.pv-name-31 {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.pv-card-featured-e2 .pv-name-31 {
  font-size: 13px;
  color: var(--fg);
}

@media (max-width: 480px) {
  .pv-featured-po { grid-template-columns: 1fr; }
}


/* support B */
/* Support B — cards (channel + hours) */

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

.sp-title-ju {
  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-5q {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.sp-grid-3w {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--space-3);
}

.sp-card-8i {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  background: var(--bg);
}

.sp-channel-br {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}

.sp-hours-5f {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}


/* sticky-banner B */
/* Variant B — вертикальний sticky банер, велика CTA
   HTML: bnRoot > bnInner(relative, flex col) > bnClose(absolute) + bnLabel + bnTitle + bnSub + bnCta */

@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 } }
@keyframes bnPopUp  { from { transform: translateY(100%) scaleY(.6); opacity: 0 } to { transform: translateY(0) scaleY(1); opacity: 1 } }
@keyframes bnPopOut { from { transform: translateY(0) scaleY(1); opacity: 1 } to { transform: translateY(100%) scaleY(.6); opacity: 0 } }

.bn-root-ah {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
}
.bn-root-ah[hidden] { display: none; }

.bn-inner-nv {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: 8px;
  padding: 20px 48px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 40px rgba(0,0,0,.5);
  box-sizing: border-box;
}

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

.bn-label-bd {
  display: inline-block;
  font-size: 11px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 2px 10px; border-radius: var(--skin-r);
}
.bn-title-gd { margin: 0; font-weight: 800; font-size: clamp(16px,2vw,20px); }
.bn-sub-x   { margin: 0; font-size: 13px; color: var(--muted); }
.bn-cta-fx   {
  display: block; width: 100%; max-width: 420px;
  padding: 14px 24px; border-radius: var(--skin-r);
  background: var(--skin-btn-bg); color: var(--skin-btn-c);
  font-weight: 800; font-size: 15px;
  text-align: center; text-decoration: none; cursor: pointer;
  margin-top: 4px;
}

@media (max-width: 600px) {
  .bn-inner-nv { padding: 16px 16px 20px; gap: 6px; }
  .bn-close-m7 { top: 10px; right: 10px; width: 28px; height: 28px; font-size: 15px; }
  .bn-title-gd { font-size: 15px; padding: 0 32px; }
  .bn-sub-x   { display: none; }
  .bn-cta-fx   { max-width: 100%; padding: 12px 16px; font-size: 14px; }
}


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

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

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

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

.faq-item-au {
  border-bottom: 1px solid var(--border);
}

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

.faq-q-dg {
  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-dg:hover {
  color: var(--brand);
}

.faq-q-dg::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-dg[aria-expanded="true"]::after {
  content: "\2013";
  border-color: var(--brand);
  color: var(--brand);
  transform: rotate(180deg);
}

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


/* rg B */
/* RG B — two-line header (title + helpline) then sites row */

.rg-root-mu {
  padding: var(--space-3) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: 13px;
  color: var(--muted);
}

.rg-title-cc {
  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-helpline-b3 {
  font-size: 12px;
  color: var(--muted);
}

.rg-sites-ly {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

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


/* footer D */
/* Footer D — minimal: nav top row, brand + copyright bottom */

.ft-root-n0 {
  margin-top: var(--space-5);
  width: 100%;
  background: var(--bg);
  padding: var(--space-4) 0 var(--space-3);
}

.ft-nav-9d {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  padding: 0 var(--space-4) var(--space-3);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.ft-nav-link-m5 {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color .2s;
  white-space: nowrap;
}

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

.ft-inner-c4 {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  padding: var(--space-3) var(--space-4) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.ft-brand-ax {
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
}

.ft-logo-kb {
  height: 36px;
  width: auto;
  display: block;
}

.ft-copy-o1 {
  font-size: 12px;
  color: var(--muted);
}

.ft-disclaimer-9v {
  max-width: var(--container-w, 1100px);
  margin: var(--space-3) auto 0;
  padding: 0 var(--space-4);
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
}

