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

/* header I */
/* Header I — top crown: 3px primary bar at top, nav links with slide-in underline */

.hd-root-oc {
  position: var(--hd-position, relative);
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  height: var(--hd-height, 60px);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s, height .25s;
}

.hd-root-oc.hd-scrolled {
  height: calc(var(--hd-height, 60px) - 6px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
}

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

.hd-brand-2h {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 19px;
  font-weight: 800;
  color: var(--fg);
  flex-shrink: 0;
}

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

.hd-nav-ih {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex: 1;
  justify-content: center;
}

.hd-nav-link-3h {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: color .2s;
}

/* Slide-in underline aligned with header bottom border */
.hd-nav-link-3h::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform .22s ease;
}

.hd-nav-link-3h:hover { color: var(--fg); }
.hd-nav-link-3h:hover::after { transform: scaleX(1); }

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

.hd-cta-im:hover { opacity: .88; }

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

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

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

.hd-mobile-nav-47 {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) var(--space-4);
  background: var(--surface);
  border-top: 1px solid var(--border);
  gap: var(--space-2);
}

.hd-mobile-nav-47[hidden] { display: none !important; }
.hd-mobile-nav-47 .hd-nav-link-3h::after { display: none; }
.hd-mobile-nav-47 .hd-cta-im { margin: var(--space-2) 0 0; text-align: center; border-radius: var(--radius-1); }

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


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

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

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

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

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

.bn-overlay-47 {
  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-jm[data-dark="light"]  .bn-overlay-47 { background: linear-gradient(to bottom, rgba(0, 0, 0, .12), rgba(0, 0, 0, .28)); }
.bn-slide-jm[data-dark="medium"] .bn-overlay-47 { background: linear-gradient(to bottom, rgba(0, 0, 0, .3),  rgba(0, 0, 0, .5));  }
.bn-slide-jm[data-dark="dark"]   .bn-overlay-47 { background: linear-gradient(to bottom, rgba(0, 0, 0, .5),  rgba(0, 0, 0, .75)); }

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

.bn-title-h1 {
  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-bt {
  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-no {
  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-99 {
  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-8r {
  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-8r:hover { opacity: .9; }

.bn-btn-secondary-27 {
  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-27:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

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

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

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

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

@media (max-width: 600px) {
  .bn-root-p5::before { padding-top: 90%; }
  .bn-title-h1 { font-size: clamp(17px, 5vw, 26px); }
  .bn-btn-8r { padding: 10px 24px; font-size: 14px; }
  .bn-btn-secondary-27 { padding: 8px 18px; font-size: 12px; }
  .bn-badge-no { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .bn-dot-s { width: 8px; height: 8px; }
}


/* hero B */
/* Hero B — centered, h1 + lead paragraph + sub paragraph */

.hero-root-i7 { text-align: center; }

.hero-title-8b {
  margin: 0 0 24px;
  font-weight: 900;
  font-size: clamp(30px, 5.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.hero-intro-m7 {
  margin: 0 auto 16px;
  max-width: 640px;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.65;
  font-weight: 500;
  color: var(--text);
}

.hero-sub-i7 {
  margin: 0 auto;
  max-width: 600px;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.75;
  color: var(--text-muted, var(--text));
  opacity: .8;
}

@media (max-width: 600px) {
  .hero-title-8b { font-size: 26px; margin-bottom: 16px; }
  .hero-intro-m7 { font-size: 16px; margin-bottom: 12px; }
}


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

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

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

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

.ov-tag-mt {
  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 B */
/* Prose B — wide, generous spacing */

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

.pr-h2-au {
  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-9 {
  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-8 {
  margin: 0 0 var(--space-4);
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}

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

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

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

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

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

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

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


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

.bt-root-8t {
  padding: var(--card-pad);
}

.bt-title-5t {
  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);
}

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

.bt-label-i5 {
  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;
}

.bt-value-pm {
  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 */
.bt-label-i5:last-of-type { border-bottom: none; }
.bt-value-pm:last-child   { border-bottom: none; }

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


/* payments C */
/* Payments C — horizontal striped rows */

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

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

.pm-list-en {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-1);
  overflow: hidden;
  border: 1px solid var(--border);
}

.pm-item-k8 {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-3);
}

.pm-item-k8:nth-child(odd) { background: var(--bg); }
.pm-item-k8:nth-child(even) { background: var(--surface); }

.pm-method-ha {
  flex: 0 0 130px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.pm-meta-ne {
  display: flex;
  flex-wrap: wrap;
  gap: 4px var(--space-3);
  font-size: 13px;
}

.pm-label-bb {
  color: var(--muted);
  font-weight: 500;
}

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

@media (max-width: 600px) {
  .pm-item-k8 { flex-direction: column; gap: 4px; }
  .pm-method-ha { flex: none; }
}


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

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

.pr-h2-j8 {
  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-8n {
  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-1y {
  margin: 0 0 var(--space-4);
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}

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

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

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

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

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

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

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


/* providers B */
/* Providers B — horizontal directory rows (logo + bold name) */

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

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

.pv-grid-6v {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  overflow: hidden;
}

.pv-card-79 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-3);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background .15s;
}

.pv-card-79:nth-child(even) { border-right: none; }
.pv-card-79:nth-last-child(-n+2) { border-bottom: none; }
.pv-card-79:hover { background: rgba(var(--primary-rgb), .05); }

.pv-logo-j0 {
  width: 72px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(.9);
}

.pv-name-3k {
  font-size: 13px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 600px) {
  .pv-grid-6v { grid-template-columns: 1fr; }
  .pv-card-79 { border-right: none !important; }
  .pv-card-79:last-child { border-bottom: none; }
}


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

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

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

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

.sp-card-jx {
  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-a {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}

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


/* sticky-banner C */
/* Variant C — тонкий однорядковий sticky банер з таймером
   HTML: bnRoot > bnInner(relative, flex row) > bnLabel + bnTitle + bnTimer + bnCta + bnClose(absolute) */

@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 bnWipeIn  { from { clip-path: inset(0 100% 0 0); opacity: .5 } to { clip-path: inset(0 0 0 0); opacity: 1 } }
@keyframes bnWipeOut { from { clip-path: inset(0 0 0 0); opacity: 1 } to { clip-path: inset(0 100% 0 0); opacity: 0 } }

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

.bn-inner-13 {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 48px 10px 16px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-sizing: border-box;
  width: 100%;
}

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

.bn-label-fh {
  font-size: 11px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 2px 8px; border-radius: var(--skin-r);
}
.bn-title-i9 { font-weight: 700; font-size: 14px; }
.bn-timer-eq {
  font-weight: 800; font-size: 14px;
  font-variant-numeric: tabular-nums;
  letter-spacing: .04em;
  padding: 1px 8px; border-radius: var(--skin-r);
}
.bn-cta-jt {
  padding: 6px 16px; border-radius: var(--skin-r);
  background: var(--skin-btn-bg); color: var(--skin-btn-c);
  font-weight: 800; font-size: 13px;
  text-decoration: none; white-space: nowrap; cursor: pointer;
}

@media (max-width: 600px) {
  .bn-inner-13 { padding: 10px 42px 10px 12px; gap: 8px; }
  .bn-label-fh { display: none; }
  .bn-title-i9 { font-size: 13px; }
  .bn-timer-eq { font-size: 13px; }
  .bn-cta-jt   { font-size: 12px; padding: 6px 10px; }
  .bn-close-jf { right: 8px; width: 28px; height: 28px; font-size: 16px; }
}


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

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

.pr-h2-dc {
  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-2r {
  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-de {
  margin: 0 0 var(--space-3);
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
}

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

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

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

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

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

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


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

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

.faq-title-3 {
  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-ev {
  margin: 0 0 var(--space-4);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

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

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

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

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

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


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

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

.rg-title-h5 {
  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-mh {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.rg-card-n {
  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-n:hover {
  border-color: var(--primary);
}

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

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

.rg-helpline-fs {
  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-h8 {
  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-ak {
  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-8p {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.5px;
}

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

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

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

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

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

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

