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

.c_2a0bc {
  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;
}

.c_2a0bc.hd-scrolled {
  height: calc(var(--hd-height, 60px) - 6px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .35);
  backdrop-filter: blur(10px);
}

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

.c_88c6d {
  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 */
.c_88c6d::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 0;
  bottom: 0;
  width: 100vw;
  background: var(--primary);
}

/* Diagonal cut between primary and surface zones */
.c_88c6d::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;
}

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

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

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

.c_b1a48:hover { color: var(--fg); }

.c_e8129 {
  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;
}

.c_e8129:hover { opacity: .88; }

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

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

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

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

.c_85460[hidden] { display: none !important; }
.c_85460 .c_e8129 { 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 */
  .c_2e313 { padding: 0 var(--space-4) 0 0; }
  .c_88c6d::before { display: none; }
  .c_88c6d::after { display: none; }
  .c_d2ca4 { display: none; }
  .c_1d568 { display: flex; }
}


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

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

.c_7100a::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 */
}

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

.c_b1736[data-active] {
  opacity: 1;
  pointer-events: auto;
}

.c_57246 {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.c_b7597 {
  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;
}

.c_b1736[data-dark="light"]  .c_b7597 { background: linear-gradient(to bottom, rgba(0, 0, 0, .18), rgba(0, 0, 0, .35)); }
.c_b1736[data-dark="medium"] .c_b7597 { background: linear-gradient(to bottom, rgba(0, 0, 0, .35), rgba(0, 0, 0, .55)); }
.c_b1736[data-dark="dark"]   .c_b7597 { background: linear-gradient(to bottom, rgba(0, 0, 0, .55), rgba(0, 0, 0, .78)); }

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

.c_55e2f {
  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;
}

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

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

.c_adc33 {
  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;
}

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

.c_8e463:hover { opacity: .9; }

.c_d8268 {
  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;
}

.c_d8268:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

.c_d7128 {
  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;
}

.c_b2f74,
.c_bad3b {
  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;
}

.c_b2f74:hover,
.c_bad3b:hover {
  background: rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px) {
  .c_55e2f { font-size: clamp(20px, 3.5vw, 38px); }
  .c_b7597 { padding-left: 58px; padding-right: 58px; }
  .c_b2f74, .c_bad3b { width: 38px; height: 38px; font-size: 22px; }
}

@media (max-width: 600px) {
  .c_7100a::before { padding-top: 90%; }
  .c_b7597 { padding-left: 48px; padding-right: 48px; }
  .c_55e2f { font-size: clamp(17px, 5vw, 26px); }
  .c_8e463 { padding: 11px 28px; font-size: 14px; }
  .c_d8268 { padding: 9px 20px; font-size: 13px; }
  .c_85392 { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .c_b2f74, .c_bad3b { width: 34px; height: 34px; font-size: 20px; }
  .c_d7128 { padding: 0 8px; }
}


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

.c_8ebf9 {}

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

.c_78792 {
  margin: 0;
  padding: 0 0 0 1.2em;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.c_d5f59::marker {
  color: var(--primary);
}

@media (max-width: 600px) {
  .c_cab46 { font-size: 20px; margin-bottom: 14px; }
  .c_78792 { gap: 6px; }
}


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

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

.c_93e74 {
  min-width: 0;
}

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

.c_53cd0 {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

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

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

.c_7fa84:first-child {
  margin-top: 0;
}

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

@media (max-width: 640px) {
  .c_8eb02 { grid-template-columns: 1fr; }
  .c_17b6b { max-width: none; }
}


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

.c_7b668 {
  padding: var(--card-pad) var(--card-pad) 0;
}

.c_12406 {
  margin: 0 0 var(--space-3);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--skin-title);
}

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

.c_ec157 {
  margin: 0 0 var(--space-3);
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

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

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

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

.c_6d4f3 {
  background: var(--skin-ac);
}

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

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

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

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


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

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

.c_e8a02::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;
}

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

.c_90112 {
  width: 100%;
  border-collapse: collapse;
}

.c_ebc69:first-child .c_5be0b,
.c_ebc69:first-child .c_8f1fe {
  padding-top: var(--space-3);
}

.c_ebc69 + .c_ebc69 .c_5be0b,
.c_ebc69 + .c_ebc69 .c_8f1fe {
  border-top: 1px solid var(--border);
}

.c_ebc69:hover .c_5be0b,
.c_ebc69:hover .c_8f1fe {
  background: color-mix(in srgb, var(--primary) 6%, transparent);
}

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

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

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

@media (max-width: 600px) {
  .c_5be0b, .c_8f1fe { font-size: 13px; }
}

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


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

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

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

.c_3e883 {
  margin: var(--space-5) 0 var(--space-3);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.c_dea8a {
  margin: 0 0 var(--space-4);
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}

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

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

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

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

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

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

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


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

.c_a0519 {
  padding: var(--card-pad);
}

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

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

.c_c53a8 {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.c_ee647 {
  border-bottom: 2px solid var(--primary);
}

.c_8fe16 {
  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;
}

.c_77a9c + .c_77a9c .c_6b46a {
  border-top: 1px solid var(--border);
}

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

.c_cd99e {
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .c_8fe16, .c_6b46a { padding: var(--space-1); font-size: 12px; }
}

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


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

.c_74238 {
  padding: var(--card-pad) var(--card-pad) 0;
}

.c_b555b {
  margin: 0 0 var(--space-3);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--skin-title);
}

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

.c_af50b {
  margin: 0 0 var(--space-3);
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

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

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

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

.c_cfd6d {
  background: var(--skin-ac);
}

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

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

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

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


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

.c_d1f69 {
  padding: var(--card-pad);
}

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

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

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

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

.c_3f657 {
  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) {
  .c_db97d { grid-template-columns: 1fr; }
  .c_b8621 { border-bottom: none; padding-bottom: 0; }
  .c_3f657 { padding-top: 2px; }
}


/* 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 } }

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

.c_5ef15 {
  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;
}

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

.c_d38fc {
  display: inline-block;
  font-size: 11px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 2px 10px; border-radius: var(--skin-r);
}
.c_ed337 { margin: 0; font-weight: 800; font-size: clamp(16px,2vw,20px); }
.c_1b1bf   { margin: 0; font-size: 13px; color: var(--muted); }
.c_b2e52   {
  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) {
  .c_5ef15 { padding: 16px 16px 20px; gap: 6px; }
  .c_d5753 { top: 10px; right: 10px; width: 28px; height: 28px; font-size: 15px; }
  .c_ed337 { font-size: 15px; padding: 0 32px; }
  .c_1b1bf   { display: none; }
  .c_b2e52   { max-width: 100%; padding: 12px 16px; font-size: 14px; }
}


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

.c_a5bbf>* {
  position: relative;
}

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

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

.c_8e6e3 {
  border-bottom: 1px solid var(--border);
}

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

.c_32b9b {
  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;
}

.c_32b9b:hover {
  color: var(--brand);
}

.c_32b9b::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;
}

.c_32b9b[aria-expanded="true"]::after {
  content: "\2013";
  border-color: var(--brand);
  color: var(--brand);
  transform: rotate(180deg);
}

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


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

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

.c_93010 {
  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;
}

.c_3763b {
  font-size: 12px;
  color: var(--muted);
}

.c_2b497 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-left: auto;
}

.c_fc1f2 {
  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;
}

.c_fc1f2:hover {
  background: rgba(var(--primary-rgb), .08);
}

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


/* footer C */
/* Footer C — two-column: brand+disclaimer left, nav right */

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

.c_d8501 {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-5);
}

.c_d8501 > div:first-child {
  flex: 1;
  min-width: 0;
}

.c_c3380 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--space-2);
}

.c_25dd7 {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: var(--space-2);
}

.c_4ffa9 {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex-shrink: 0;
}

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

.c_5f3f4:hover { color: var(--primary); }

.c_269ba {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: var(--space-1);
}

.c_ca6d0 {
  max-width: var(--container-w, 1100px);
  margin: var(--space-3) auto 0;
  padding: var(--space-3) var(--space-4) 0;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 640px) {
  .c_d8501 { flex-direction: column; }
  .c_4ffa9 { flex-direction: row; flex-wrap: wrap; }
}

