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

/* header B */
/* Header B — brand + nav left cluster, CTA far right */

.c_e4970 {
  position: var(--hd-position, relative);
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  height: var(--hd-height, 58px);
  background: var(--bg);
  border-bottom: 2px solid var(--primary);
  transition: height .25s ease, box-shadow .25s ease;
}

.c_e4970.hd-scrolled {
  height: calc(var(--hd-height, 58px) - 8px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
}

.c_4f907 {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.c_b9ee2 {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 900;
  color: var(--primary);
  flex-shrink: 0;
  margin-right: var(--space-2);
}

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

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

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

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

.c_8f17a {
  margin-left: auto;
  display: inline-block;
  padding: 8px 20px;
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  border-radius: var(--radius-1);
  transition: background .2s, color .2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.c_8f17a:hover { background: var(--primary); color: var(--bg); }

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

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

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

.c_bee07 {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) var(--space-4);
  background: var(--bg);
  border-top: 1px solid var(--primary);
  gap: var(--space-2);
}

.c_bee07[hidden] { display: none !important; }
.c_bee07 .c_8f17a { margin-left: 0; margin-top: var(--space-2); text-align: center; background: var(--primary); color: var(--bg); }

@media (max-width: 768px) {
  .c_acf91 { display: none; }
  .c_f72e3 { display: flex; }
}


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

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

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

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

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

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

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

.c_dbd16 {
  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_95593 {
  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_57df2 {
  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_4743f {
  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_718d7 {
  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_718d7:hover { opacity: .9; }

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

.c_cfbb4 {
  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_4f5bf,
.c_fefc2 {
  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_4f5bf:hover,
.c_fefc2:hover {
  background: rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px) {
  .c_dbd16 { font-size: clamp(20px, 3.5vw, 38px); }
  .c_86b3c { padding-left: 58px; padding-right: 58px; }
  .c_4f5bf, .c_fefc2 { width: 38px; height: 38px; font-size: 22px; }
}

@media (max-width: 600px) {
  .c_e2806::before { padding-top: 90%; }
  .c_86b3c { padding-left: 48px; padding-right: 48px; }
  .c_dbd16 { font-size: clamp(17px, 5vw, 26px); }
  .c_718d7 { padding: 11px 28px; font-size: 14px; }
  .c_bfbce { padding: 9px 20px; font-size: 13px; }
  .c_57df2 { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .c_4f5bf, .c_fefc2 { width: 34px; height: 34px; font-size: 20px; }
  .c_cfbb4 { padding: 0 8px; }
}


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

.c_d3c61 { text-align: center; }

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

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

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

@media (max-width: 600px) {
  .c_7a3fb { font-size: 26px; margin-bottom: 16px; }
  .c_7908e { font-size: 16px; margin-bottom: 12px; }
}


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

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

.c_6ed86 {
  min-width: 0;
}

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

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

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

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

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


/* bonus B */
/* bonus B — vertical rows: label left, value right */

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

.c_f24c1 {
  margin: 0 0 var(--space-3);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

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

.c_22c1d {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-1);
  border: 1px solid var(--border);
  background: var(--bg);
  min-width: 0;
}

.c_22c1d:first-child {
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--primary) 15%, var(--surface)),
    color-mix(in srgb, var(--secondary) 10%, var(--surface)));
  border-color: var(--primary);
  padding: var(--space-4);
}

.c_3dc2c {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  line-height: 1.4;
  flex-shrink: 0;
  white-space: nowrap;
}

.c_8ae47 {
  font-size: 14px;
  font-weight: 700;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  line-height: 1.4;
  text-align: right;
  overflow-wrap: break-word;
  min-width: 0;
}

.c_22c1d:first-child .c_3dc2c {
  font-size: 12px;
}

.c_22c1d:first-child .c_8ae47 {
  font-size: clamp(15px, 1.8vw, 20px);
  color: var(--primary);
}

@media (max-width: 480px) {
  .c_22c1d {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .c_8ae47 { text-align: left; }
}


/* pros-cons E */
/* Pros-Cons E — stacked sections with count badge */

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

.c_88aee {
  margin: 0 0 var(--space-4);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  color: var(--skin-title);
  letter-spacing: -.02em;
}

.c_4f778 {
  border-radius: var(--radius-1);
  overflow: hidden;
  margin-bottom: var(--space-3);
}
.c_4f778:last-child { margin-bottom: 0; }

.c_eeb48 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px var(--space-3);
}

.pc-section-pros .c_eeb48 { background: rgba(46,204,113,.12); border-bottom: 1px solid rgba(46,204,113,.18); }
.pc-section-cons .c_eeb48 { background: rgba(231,76,60,.10);  border-bottom: 1px solid rgba(231,76,60,.18); }

.c_9b232 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text);
}

.c_12694 {
  font-size: 12px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
}

.pc-count-pros { background: rgba(46,204,113,.2); color: #2ecc71; }
.pc-count-cons { background: rgba(231,76,60,.15);  color: #e74c3c; }

.c_81130 {
  list-style: none;
  margin: 0;
  padding: var(--space-2);
  background: rgba(255,255,255,.02);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-1);
}

.c_1b077 {
  padding: 9px 10px 9px 30px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
  border-radius: calc(var(--radius-1) - 4px);
  position: relative;
}

.pc-pro {
  background: rgba(46,204,113,.06);
}
.pc-pro::before {
  content: '✓';
  position: absolute;
  left: 9px; top: 9px;
  color: #2ecc71;
  font-size: 12px;
  font-weight: 900;
}

.pc-con {
  background: rgba(231,76,60,.05);
}
.pc-con::before {
  content: '✕';
  position: absolute;
  left: 9px; top: 9px;
  color: #e74c3c;
  font-size: 12px;
  font-weight: 900;
}


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

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

.c_85087 {
  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_53b17 {
  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_9ccc9 {
  margin: 0 0 var(--space-4);
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

.c_f5ae6 {
  color: var(--muted);
  font-weight: 500;
}

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

@media (max-width: 600px) {
  .c_9984d { flex-direction: column; gap: 4px; }
  .c_4b10f { flex: none; }
}


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

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

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

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

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

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

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

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

@media (max-width: 600px) {
  .c_4eb9a { grid-template-columns: 1fr; }
  .c_ae04f { border-right: none !important; }
  .c_ae04f:last-child { border-bottom: none; }
}


/* mobile A */
/* Mobile A — H2 + intro + classic responsive table */

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

.c_d5dcd {
  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_fbf93 {
  margin: 0 0 var(--space-4);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* scrollable table wrapper */
.c_228f2 {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
}

.c_228f2 table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  font-size: 14px;
}

.c_d7d23 {
  background: var(--bg);
}

.c_cfcfb {
  padding: 10px 14px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}

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

.c_fa3c9:last-child {
  border-bottom: none;
}

.c_fa3c9:nth-child(even) {
  background: var(--bg);
}

.c_86c52 {
  padding: 10px 14px;
  vertical-align: top;
  color: var(--text);
  line-height: 1.5;
}

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

.c_653eb {
  display: inline-block;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--primary);
  background: rgba(var(--primary-rgb), .1);
  border-radius: 99px;
  white-space: nowrap;
}

.c_1628a {
  color: var(--muted);
  font-size: 13px;
}

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


/* license E */
/* License E — definition list (regulator + number only) */

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

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

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

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

.c_4f457 {
  margin: 0;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
  font-family: monospace;
}

@media (max-width: 480px) {
  .c_9df50 { grid-template-columns: 1fr; }
  .c_448e0 { border-bottom: none; padding-bottom: 0; }
  .c_4f457 { padding-top: 2px; font-size: 13px; }
}


/* security B */
/* Security B — compact inline banner */

.c_1fdc3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: rgba(var(--primary-rgb), .06);
  border: 1px solid rgba(var(--primary-rgb), .18);
  border-radius: var(--radius-2);
}

.c_eace9 {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--bg);
  background: var(--primary);
  border-radius: 999px;
  line-height: 1.4;
}

.c_922d8 {
  font-size: 14px;
  font-weight: 700;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.c_5efa9 {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}


/* 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_bff0b {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
}
.c_bff0b[hidden] { display: none; }

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

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


/* lobby G */
/* Lobby G — dense badge grid: HOT/TOP/NEU pills, hover overlay with play button */

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

.c_40f99 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.c_afd2d {
  margin: 0;
  font-size: clamp(calc(14px * var(--title-scale)), 2vw, calc(22px * var(--title-scale)));
  font-weight: 800;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.c_eba1a {
  flex-shrink: 0;
  color: var(--fg-muted, rgba(255,255,255,.45));
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color .18s;
}

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

.c_9e97c {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--card-min-w), 1fr));
  gap: var(--item-gap);
}

.c_7c152 {
  position: relative;
  aspect-ratio: var(--card-aspect);
  border-radius: calc(var(--radius-1) * .75);
  overflow: hidden;
  text-decoration: none;
  display: block;
  cursor: pointer;
  background: var(--border);
}

.c_f232c {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .22s;
}

.c_7c152:hover .c_f232c { transform: scale(1.06); }

/* ── Badge pills ── */
.c_e01f4 {
  position: absolute;
  top: 5px;
  left: 5px;
  display: flex;
  gap: 3px;
  flex-wrap: nowrap;
  pointer-events: none;
}

.c_ff387 {
  display: inline-block;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1.5;
  color: #fff;
}

.lb-badge-hot { background: #F97316; }
.lb-badge-top { background: #7C3AED; }
.lb-badge-neu { background: #EF4444; }

/* ── Hover overlay ── */
.c_6c114 {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(0, 0, 0, .65);
  opacity: 0;
  transition: opacity .2s;
  padding: 8px;
}

.c_7c152:hover .c_6c114 { opacity: 1; }

.c_a9edd {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0,0,0,.7);
  order: 2;
}

.c_7db91 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding-left: 3px;
  flex-shrink: 0;
  order: 1;
  transition: transform .15s, opacity .15s;
}

.c_7c152:hover .c_7db91 { transform: scale(1.08); }

/* ── Responsive ── */
@media (max-width: 480px) {
  .c_9e97c { grid-template-columns: repeat(2, 1fr); }
  .c_ff387 { font-size: 8px; padding: 2px 4px; }
  .c_7db91 { width: 32px; height: 32px; font-size: 11px; }
  .c_a9edd { font-size: 11px; }
}


/* promo C */
/* Promo C — compact list */

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

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

.c_635b2 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.c_4b0c9 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border);
}

.c_4b0c9:last-child {
  border-bottom: none;
}

.c_70824 {
  font-size: 14px;
  font-weight: 700;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.c_3f1c8 {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(var(--primary-rgb), .08);
  padding: 2px 10px;
  border-radius: 999px;
  white-space: nowrap;
}


/* loyalty B */
/* Loyalty B — table */

.c_a955d {
  padding: var(--card-pad);
  overflow-x: auto;
}

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

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

.c_5cce4 + .c_5cce4 .c_6d379,
.c_5cce4 + .c_5cce4 .c_3bb0f,
.c_5cce4 + .c_5cce4 .c_16e79 {
  border-top: 1px solid var(--border);
}

.c_6d379,
.c_3bb0f,
.c_16e79 {
  padding: var(--space-2) var(--space-2) var(--space-2) 0;
  font-size: 14px;
  line-height: 1.5;
  vertical-align: top;
}

.c_6d379 {
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.c_3bb0f {
  color: var(--muted);
}

.c_16e79 {
  color: var(--text);
}

@media (max-width: 600px) {
  .c_6d379, .c_3bb0f, .c_16e79 { font-size: 13px; padding: var(--space-1) var(--space-1) var(--space-1) 0; }
}


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

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

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

.c_7f751 {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

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

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

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

.c_5943b + .c_5943b .c_505fc {
  border-top: 1px solid var(--border);
}

.c_1febd {
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

@media (max-width: 580px) {
  .c_7f751, .c_6b900, .c_5943b, .c_505fc, .c_d53e3 {
    display: block;
    width: 100%;
  }
  .c_6b900 { display: none; }
  .c_5943b + .c_5943b { margin-top: var(--space-2); }
  .c_5943b + .c_5943b .c_505fc { border-top: none; }
  .c_5943b { border: 1px solid var(--border); border-radius: var(--radius-1); padding: var(--space-2); }
  .c_505fc { padding: 2px 0; }
  .c_505fc::before { font-size: 11px; color: var(--muted); text-transform: uppercase; display: block; }
  .c_5943b .c_505fc:nth-child(2)::before { content: "Languages"; }
  .c_5943b .c_505fc:nth-child(3)::before { content: "Hours"; }
}

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


/* reviews D */
/* Reviews D — compact list rows */

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

.c_aac9c {
  margin: 0 0 var(--space-4);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  color: var(--skin-title);
  letter-spacing: -.02em;
}

.c_bfda8 {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
}

.c_6d3ef {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.c_6d3ef:last-child { border-bottom: none; }

.c_f64dd {
  flex-shrink: 0;
  width: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2px;
  gap: 2px;
}

.c_affcb {
  color: var(--primary);
  font-size: 10px;
  letter-spacing: 1px;
  line-height: 1;
}

.rv-score {
  font-size: 18px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.rvBody {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.c_d4175 {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}

.c_10564 {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
}

.c_e9212 {
  font-size: 11px;
  color: var(--muted);
}


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

.c_ef85b>* {
  position: relative;
}

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

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

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

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

.c_55a3a {
  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_55a3a:hover {
  color: var(--brand);
}

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

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


/* winners E */
/* Winners E — auto-scrolling marquee ticker */

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

.c_a1036 {
  margin: 0 0 var(--space-3);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 800;
  color: var(--skin-title);
  letter-spacing: -.02em;
}

.wn-ticker-wrap {
  overflow: hidden;
  position: relative;
}
.wn-ticker-wrap::before,
.wn-ticker-wrap::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 1;
  pointer-events: none;
}
.wn-ticker-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg, #0f1923) 0%, transparent 100%);
}
.wn-ticker-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg, #0f1923) 0%, transparent 100%);
}

.c_a9a5c {
  display: flex;
  gap: var(--space-2);
  animation: wn-scroll 28s linear infinite;
  width: max-content;
}
@keyframes wn-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .c_a9a5c { animation: none; overflow-x: auto; }
}

.c_63b82 {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px 6px 6px;
  flex-shrink: 0;
}

.c_824c1 {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .75rem;
  color: #000;
  flex-shrink: 0;
}

.c_f3a54 {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.c_72523 {
  display: block;
  font-size: 10px;
  color: var(--muted);
  white-space: nowrap;
}

.c_cb943 {
  font-size: 14px;
  font-weight: 900;
  color: var(--primary);
  white-space: nowrap;
  margin-left: 4px;
}


/* rg A */
/* RG A — compact aside: title + chip links + helpline */

.c_71030 {
  padding: var(--space-3) var(--space-4);
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.c_d6570 {
  margin: 0 0 var(--space-2);
  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;
}

.c_cef24 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--space-2);
}

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

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

.c_c9975 {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}


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

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

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

.c_bde33 {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color .2s;
  white-space: nowrap;
}

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

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

.c_4197b {
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
}

.c_2415f {
  height: 36px;
  width: auto;
  display: block;
}

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

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

