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

/* header J */
/* Header J — split panel: primary-bg brand zone extends to left viewport edge */

.hd-root-bk {
  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-bk.hd-scrolled {
  height: calc(var(--hd-height, 60px) - 6px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .35);
  backdrop-filter: blur(10px);
}

.hd-inner-28 {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  height: 100%;
  /* No left padding: brand provides its own */
  padding: 0 var(--space-4) 0 0;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.hd-brand-r9 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  color: var(--bg);
  height: 100%;
  padding: 0 var(--space-5) 0 var(--space-4);
  background: var(--primary);
  flex-shrink: 0;
  z-index: 1;
}

/* Primary color band extending to the left viewport edge */
.hd-brand-r9::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 0;
  bottom: 0;
  width: 100vw;
  background: var(--primary);
}

/* Diagonal cut between primary and surface zones */
.hd-brand-r9::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
  width: 22px;
  background: linear-gradient(to bottom right, var(--primary) 50%, transparent 50%);
  pointer-events: none;
}

.hd-logo-mv { height: calc(var(--hd-height, 64px) - 24px); width: auto; display: block; filter: brightness(0) invert(1); }

.hd-nav-et {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 1;
  padding-left: var(--space-3);
}

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

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

.hd-cta-76 {
  margin-left: auto;
  display: inline-block;
  padding: 8px 22px;
  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-76:hover { opacity: .88; }

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

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

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

.hd-mobile-nav-k3 {
  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-k3[hidden] { display: none !important; }
.hd-mobile-nav-k3 .hd-cta-76 { margin-left: 0; margin-top: var(--space-2); text-align: center; }

@media (max-width: 768px) {
  /* On mobile: restore full-width layout, hide the diagonal pseudo-elements */
  .hd-inner-28 { padding: 0 var(--space-4) 0 0; }
  .hd-brand-r9::before { display: none; }
  .hd-brand-r9::after { display: none; }
  .hd-nav-et { display: none; }
  .hd-burger-45 { display: flex; }
}


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

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

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

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

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

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

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

.bn-title-2r {
  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-cr {
  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-8i {
  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-l3 {
  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-95 {
  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-95:hover { opacity: .9; }

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

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

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

@media (max-width: 600px) {
  .bn-root-bz::before { padding-top: 90%; }
  .bn-overlay-fl { padding-left: 48px; padding-right: 48px; }
  .bn-title-2r { font-size: clamp(17px, 5vw, 26px); }
  .bn-btn-95 { padding: 11px 28px; font-size: 14px; }
  .bn-btn-secondary-md { padding: 9px 20px; font-size: 13px; }
  .bn-badge-8i { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .bn-arrow-prev-e5, .bn-arrow-next-h { width: 34px; height: 34px; font-size: 20px; }
  .bn-arrows-69 { padding: 0 8px; }
}


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

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

.hero-title-cp {
  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-mz {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-chunk-2a {
  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-j9 { border-left-width: 3px; padding-left: 14px; }
  .hero-title-cp { font-size: 22px; margin-bottom: 12px; }
  .hero-chunks-mz { gap: 10px; }
}


/* overview A */
/* Overview A — prose + facts table */

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

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

.ov-table-3 {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

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

.ov-label-r5 {
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  width: 1%;
}

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


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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

.bt-row-3d:first-child .bt-label-er,
.bt-row-3d:first-child .bt-value-ns {
  padding-top: var(--space-3);
}

.bt-row-3d + .bt-row-3d .bt-label-er,
.bt-row-3d + .bt-row-3d .bt-value-ns {
  border-top: 1px solid var(--border);
}

.bt-row-3d:hover .bt-label-er,
.bt-row-3d:hover .bt-value-ns {
  background: color-mix(in srgb, var(--primary) 6%, transparent);
}

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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


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

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

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

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

.pm-row-kb + .pm-row-kb .pm-method-a0,
.pm-row-kb + .pm-row-kb .pm-info-d1 {
  border-top: 1px solid var(--border);
}

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

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

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

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


/* 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-ku {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  padding: 8px 16px;
  box-sizing: border-box;
}
.bn-root-ku[hidden] { display: none; }

.bn-inner-ju {
  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;
}

.bn-close-ni {
  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;
}
.bn-close-ni:hover { color: var(--text); background: rgba(255,255,255,.08); }

.bn-label-mo {
  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-oc { margin: 0; font-weight: 800; font-size: clamp(14px,1.4vw,17px); line-height: 1.3; }
.bn-sub-gw  { margin: 2px 0 0; font-size: 13px; color: var(--muted); line-height: 1.4; }
.bn-cta-ic  {
  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-ku { padding: 0; }
  .bn-inner-ju {
    border-radius: 0;
    border-left: 0; border-right: 0; border-bottom: 0;
    padding: 12px 44px 12px 12px;
    gap: 8px; flex-wrap: wrap;
  }
  .bn-sub-gw   { display: none; }
  .bn-label-mo { margin-bottom: 0; }
  .bn-title-oc { font-size: 14px; }
  .bn-close-ni { top: 12px; right: 8px; transform: none; width: 28px; height: 28px; font-size: 16px; }
  .bn-cta-ic   { flex: 1 1 100%; text-align: center; margin-left: 0; padding: 10px 12px; font-size: 13px; }
}


/* support E */
/* Support E — definition list (channel : languages) */

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

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

.sp-dl-9h {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 var(--space-3);
  align-items: baseline;
}

.sp-dt-5h {
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.sp-dd-85 {
  margin: 0;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

@media (max-width: 480px) {
  .sp-dl-9h { grid-template-columns: 1fr; }
  .sp-dt-5h { border-bottom: none; padding-bottom: 0; }
  .sp-dd-85 { padding-top: 2px; }
}


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

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

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

.faq-intro-98 {
  margin: 0 0 var(--space-4);
  color: var(--muted);
}

.faq-list-9a {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item-mx {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  padding: var(--space-3) 0;
  border-top: 1px solid var(--border);
}

.faq-num-j6 {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-1);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  background: color-mix(in srgb, var(--brand) 14%, transparent);
  color: var(--brand);
  margin-top: 2px;
}

.faq-body-au {
  flex: 1;
  min-width: 0;
}

.faq-q-qp {
  margin: 0 0 var(--space-2);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
}

.faq-a-1l {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}


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

.rg-root-4i {
  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-eo {
  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-3f {
  font-size: 12px;
  color: var(--muted);
}

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

.rg-site-link-5d {
  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-5d:hover {
  background: rgba(var(--primary-rgb), .08);
}

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


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

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

.ft-nav-jd {
  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-rh {
  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-rh:hover { color: var(--fg); }

.ft-inner-k {
  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-c9 {
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
}

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

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

.ft-disclaimer-4j {
  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;
}

