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

/* header D */
/* Header D — minimal text-only brand, nav+CTA inline right */

.hd-root-li {
  position: var(--hd-position, relative);
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  height: var(--hd-height, 52px);
  background: transparent;
  transition: background .3s, height .25s;
}

.hd-root-li.hd-scrolled {
  background: var(--bg);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  height: calc(var(--hd-height, 52px) - 4px);
}

.hd-inner-76 {
  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-3);
}

.hd-brand-1b {
  text-decoration: none;
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-shrink: 0;
}

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

.hd-nav-e3 {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

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

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

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

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

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

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

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

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

.hd-mobile-nav-e9[hidden] { display: none !important; }
.hd-mobile-nav-e9 .hd-cta-hw { margin-top: var(--space-2); text-align: center; border-radius: 999px; }

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


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

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

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

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

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

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

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

.bn-title-cf {
  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-r3 {
  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-rq {
  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-gb {
  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-g5 {
  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-g5:hover { opacity: .9; }

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

.bn-arrows-od {
  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-5l,
.bn-arrow-next-np {
  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-5l:hover,
.bn-arrow-next-np:hover {
  background: rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px) {
  .bn-title-cf { font-size: clamp(20px, 3.5vw, 38px); }
  .bn-overlay-dh { padding-left: 58px; padding-right: 58px; }
  .bn-arrow-prev-5l, .bn-arrow-next-np { width: 38px; height: 38px; font-size: 22px; }
}

@media (max-width: 600px) {
  .bn-root-o3::before { padding-top: 90%; }
  .bn-overlay-dh { padding-left: 48px; padding-right: 48px; }
  .bn-title-cf { font-size: clamp(17px, 5vw, 26px); }
  .bn-btn-g5 { padding: 11px 28px; font-size: 14px; }
  .bn-btn-secondary-6p { padding: 9px 20px; font-size: 13px; }
  .bn-badge-rq { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .bn-arrow-prev-5l, .bn-arrow-next-np { width: 34px; height: 34px; font-size: 20px; }
  .bn-arrows-od { padding: 0 8px; }
}


/* hero F */
/* Hero F — two-column grid: split title left, intro right */

.hero-root-jw {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.hero-title-main-ib {
  margin: 0 0 8px;
  font-weight: 900;
  font-size: clamp(26px, 4.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.hero-title-sub-e8 {
  margin: 0;
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--primary);
}

.hero-intro-n2 {
  margin: 0;
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.75;
  color: var(--text);
  align-self: center;
}

@media (max-width: 600px) {
  .hero-root-jw { grid-template-columns: 1fr; gap: 16px; }
  .hero-title-main-ib { font-size: 24px; margin-bottom: 4px; }
  .hero-title-sub-e8 { font-size: 15px; }
}


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

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

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

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

.ov-dl-rn {
  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-qb {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
  margin-top: var(--space-2);
}

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

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

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


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

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

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

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

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

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

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

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

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

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


/* bonus D */
/* bonus D — stripe rows: bold zebra, first row hero, primary values */

.bt-root-9b {
  overflow: hidden;
}

.bt-title-8z {
  padding: var(--card-pad) var(--card-pad) var(--space-3);
  margin: 0;
  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);
  border-bottom: 1px solid var(--border);
}

.bt-stripes-1n {
  display: flex;
  flex-direction: column;
}

.bt-row-89 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-2) var(--card-pad);
  gap: var(--space-3);
  transition: background .15s;
}

.bt-row-89:nth-child(even) {
  background: var(--bg);
}

.bt-row-89:first-child {
  background: linear-gradient(90deg,
    color-mix(in srgb, var(--primary) 15%, var(--surface)),
    var(--surface));
  padding-top: var(--space-3);
  padding-bottom: var(--space-3);
}

.bt-row-89:first-child .bt-label-qj {
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  font-weight: 700;
  font-size: 15px;
}

.bt-row-89:first-child .bt-value-c8 {
  font-size: 17px;
  color: var(--primary);
}

.bt-row-89:hover {
  background: color-mix(in srgb, var(--primary) 8%, transparent);
}

.bt-label-qj {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.4;
}

.bt-value-c8 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-align: right;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .bt-title-8z { padding: var(--space-3); }
  .bt-label-qj, .bt-value-c8 { font-size: 13px; }
  .bt-row-89 { padding-left: var(--space-3); padding-right: var(--space-3); }
}


/* payments A */
/* Payments A — full multi-column table */

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

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

.pm-table-fm {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.pm-thead-fs {
  border-bottom: 2px solid var(--primary);
}

.pm-th-1e {
  padding: var(--space-2) var(--space-2);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--primary);
  text-align: left;
  white-space: nowrap;
}

.pm-row-dm + .pm-row-dm .pm-td-ha {
  border-top: 1px solid var(--border);
}

.pm-td-ha {
  padding: var(--space-2);
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  vertical-align: middle;
}

.pm-method-ez {
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .pm-th-1e, .pm-td-ha { padding: var(--space-1); font-size: 12px; }
}

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


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

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

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

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

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

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

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

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

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

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

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


/* providers F */
/* Providers F — CSS marquee auto-scroll strip (no JS) */

.pv-root-iw {
  padding: var(--card-pad);
  overflow: hidden;
}

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

@keyframes pvMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.pv-scroll-x {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.pv-track-nj {
  display: flex;
  gap: var(--space-3);
  width: max-content;
  animation: pvMarquee 28s linear infinite;
}

.pv-track-nj:hover {
  animation-play-state: paused;
}

.pv-card-26 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  width: 140px;
  flex-shrink: 0;
  padding: var(--space-3) var(--space-2);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  text-align: center;
  transition: border-color .2s;
}

.pv-card-26:hover {
  border-color: rgba(var(--primary-rgb), .4);
}

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

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


/* support A */
/* Support A — full table */

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

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

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

.sp-thead-gl {
  border-bottom: 2px solid var(--border);
}

.sp-th-j1 {
  text-align: left;
  padding: var(--space-2) var(--space-2);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
}

.sp-td-75 {
  padding: var(--space-2);
  color: var(--text);
  line-height: 1.5;
}

.sp-row-cn + .sp-row-cn .sp-td-75 {
  border-top: 1px solid var(--border);
}

.sp-channel-7s {
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

@media (max-width: 580px) {
  .sp-table-rf, .sp-thead-gl, .sp-row-cn, .sp-td-75, .sp-th-j1 {
    display: block;
    width: 100%;
  }
  .sp-thead-gl { display: none; }
  .sp-row-cn + .sp-row-cn { margin-top: var(--space-2); }
  .sp-row-cn + .sp-row-cn .sp-td-75 { border-top: none; }
  .sp-row-cn { border: 1px solid var(--border); border-radius: var(--radius-1); padding: var(--space-2); }
  .sp-td-75 { padding: 2px 0; }
  .sp-td-75::before { font-size: 11px; color: var(--muted); text-transform: uppercase; display: block; }
  .sp-row-cn .sp-td-75:nth-child(2)::before { content: "Languages"; }
  .sp-row-cn .sp-td-75:nth-child(3)::before { content: "Hours"; }
}

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


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

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

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


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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

.faq-a-nn {
  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-pz {
  padding: var(--space-3) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: 13px;
  color: var(--muted);
}

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

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

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


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

.ft-root-pk {
  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-5s {
  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-b9 {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  flex-shrink: 0;
}

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

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

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

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

.ft-disclaimer-jj {
  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-5h {
  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-5s { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
  .ft-nav-rp { justify-content: flex-start; }
}

