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

/* header C */
/* Header C — two-row: brand row + full-width nav row */

/* Two-row total height on :root so body{padding-top:var(--hd-total)} can inherit it */
:root { --hd-total: calc(var(--hd-height, 54px) + 42px); }

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

.hd-root-3g.hd-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

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

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

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

/* Second row nav */
.hd-nav-qx {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  padding: 0 var(--space-4);
  border-top: 1px solid var(--border);
  height: 42px;
}

.hd-nav-link-q5 {
  display: flex;
  align-items: center;
  height: 42px;
  padding: 0 var(--space-3);
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}

.hd-nav-link-q5:hover { color: var(--fg); border-bottom-color: var(--primary); }

.hd-cta-bq {
  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;
  white-space: nowrap;
  flex-shrink: 0;
}

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

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

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

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

.hd-mobile-nav-ov {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) var(--space-4);
  background: var(--surface);
  gap: var(--space-2);
}

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

@media (max-width: 768px) {
  .hd-nav-qx { display: none; }
  .hd-burger-p5 { display: flex; }
  :root { --hd-total: var(--hd-height, 54px); }
}


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

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

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

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

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

.bn-overlay-pe {
  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-2n[data-dark="light"]  .bn-overlay-pe { background: linear-gradient(to bottom, rgba(0, 0, 0, .18), rgba(0, 0, 0, .35)); }
.bn-slide-2n[data-dark="medium"] .bn-overlay-pe { background: linear-gradient(to bottom, rgba(0, 0, 0, .35), rgba(0, 0, 0, .55)); }
.bn-slide-2n[data-dark="dark"]   .bn-overlay-pe { background: linear-gradient(to bottom, rgba(0, 0, 0, .55), rgba(0, 0, 0, .78)); }

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

.bn-title-d8 {
  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-js {
  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-e1 {
  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-72 {
  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-ku {
  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-ku:hover { opacity: .9; }

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

.bn-arrows-7w {
  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-q2,
.bn-arrow-next-e {
  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-q2:hover,
.bn-arrow-next-e:hover {
  background: rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px) {
  .bn-title-d8 { font-size: clamp(20px, 3.5vw, 38px); }
  .bn-overlay-pe { padding-left: 58px; padding-right: 58px; }
  .bn-arrow-prev-q2, .bn-arrow-next-e { width: 38px; height: 38px; font-size: 22px; }
}

@media (max-width: 600px) {
  .bn-root-26::before { padding-top: 90%; }
  .bn-overlay-pe { padding-left: 48px; padding-right: 48px; }
  .bn-title-d8 { font-size: clamp(17px, 5vw, 26px); }
  .bn-btn-ku { padding: 11px 28px; font-size: 14px; }
  .bn-btn-secondary-2w { padding: 9px 20px; font-size: 13px; }
  .bn-badge-e1 { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .bn-arrow-prev-q2, .bn-arrow-next-e { width: 34px; height: 34px; font-size: 20px; }
  .bn-arrows-7w { padding: 0 8px; }
}


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

.hero-root-7i {}

.hero-title-58 {
  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-hy {
  margin: 0;
  padding: 0 0 0 1.2em;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.hero-item-3t::marker {
  color: var(--primary);
}

@media (max-width: 600px) {
  .hero-title-58 { font-size: 20px; margin-bottom: 14px; }
  .hero-list-hy { gap: 6px; }
}


/* overview C */
/* Overview C — prose + DL sidebar */

.ov-root-he {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-4);
  align-items: start;
  padding: var(--card-pad);
}

.ov-text-kt {
  min-width: 0;
}

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

.ov-dl-oe {
  margin: 0;
  min-width: 180px;
  max-width: 240px;
  padding: var(--space-3);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
}

.ov-dt-ke {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
  margin-top: var(--space-2);
}

.ov-dt-ke:first-child {
  margin-top: 0;
}

.ov-dd-n2 {
  margin: 2px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .ov-root-he { grid-template-columns: 1fr; }
  .ov-dl-oe { max-width: none; }
}


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

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

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

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

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

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

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

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

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

.pr-image-6z {
  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-a9 {
  padding: var(--card-pad);
  position: relative;
  overflow: hidden;
}

.bt-root-a9::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-md {
  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-c3 {
  width: 100%;
  border-collapse: collapse;
}

.bt-row-av:first-child .bt-label-e9,
.bt-row-av:first-child .bt-value-om {
  padding-top: var(--space-3);
}

.bt-row-av + .bt-row-av .bt-label-e9,
.bt-row-av + .bt-row-av .bt-value-om {
  border-top: 1px solid var(--border);
}

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

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

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

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

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

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


/* payments B */
/* Payments B — cards grid */

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

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

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

.pm-card-lm {
  padding: var(--space-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  background: var(--bg);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px var(--space-2);
  align-items: start;
}

.pm-method-al {
  grid-column: 1 / -1;
  margin: 0 0 var(--space-1);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.pm-label-pe {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.pm-value-rh {
  font-size: 13px;
  font-weight: 600;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  text-align: right;
  min-width: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


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

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

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

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

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

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

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

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

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


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

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

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

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

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

.sp-hours-rb {
  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-6u {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
}
.bn-root-6u[hidden] { display: none; }

.bn-inner-6a {
  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-9y {
  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-9y:hover { color: var(--text); background: rgba(255,255,255,.08); }

.bn-label-94 {
  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-2k { margin: 0; font-weight: 800; font-size: clamp(16px,2vw,20px); }
.bn-sub-ds   { margin: 0; font-size: 13px; color: var(--muted); }
.bn-cta-f8   {
  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-6a { padding: 16px 16px 20px; gap: 6px; }
  .bn-close-9y { top: 10px; right: 10px; width: 28px; height: 28px; font-size: 15px; }
  .bn-title-2k { font-size: 15px; padding: 0 32px; }
  .bn-sub-ds   { display: none; }
  .bn-cta-f8   { max-width: 100%; padding: 12px 16px; font-size: 14px; }
}


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

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

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

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

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

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

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

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


/* cta D */
.ct-root-1m {
  display: flex;
  justify-content: center;
  padding: var(--space-3) 0;
  overflow: hidden;
}

.ct-btn-3m {
  display: inline-block;
  padding: 14px 40px;
  background: var(--skin-btn-bg);
  color: var(--skin-btn-c);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: var(--skin-bw) solid var(--skin-bc);
  border-radius: var(--skin-r);
  box-shadow:
    var(--skin-offset) var(--skin-offset) 0 var(--skin-bc),
    0 0 var(--skin-glow) var(--skin-glow-c),
    var(--skin-shadow);
  backdrop-filter: blur(var(--skin-blur));
  transition: opacity .2s;
  max-width: 100%;
  box-sizing: border-box;
  word-break: break-word;
  text-align: center;
}

.ct-btn-3m:hover {
  background: var(--primary);
  color: var(--bg);
}


/* rg F */
/* RG F — compact single-line / flex row */

.rg-root-91 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2) var(--space-3);
  padding: var(--space-2) var(--space-4);
  font-size: 12px;
  color: var(--muted);
}

.rg-title-j5 {
  font-size: 12px;
  font-weight: 700;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}

.rg-helpline-pk {
  font-size: 12px;
  color: var(--muted);
}

.rg-row-ib {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-left: auto;
}

.rg-site-link-p2 {
  display: inline-block;
  padding: 2px 9px;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid rgba(var(--primary-rgb), .35);
  border-radius: var(--radius-3);
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
}

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

@media (max-width: 600px) {
  .rg-row-ib { margin-left: 0; }
}


/* footer A */
/* Footer A — classic: brand left, nav center, bottom copyright */

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

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

.ft-brand-h1 {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  flex-shrink: 0;
}

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

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

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

.ft-nav-link-41:hover { color: var(--primary); }

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

.ft-copy-b9 {
  max-width: var(--container-w, 1100px);
  margin: var(--space-2) auto 0;
  padding: 0 var(--space-4);
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 600px) {
  .ft-inner-bk { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
  .ft-nav-d1 { justify-content: flex-start; }
}

