@charset "UTF-8";

:root {
  --c-primary: #0e3f49;
  --c-secondary: #0c3741;
  --c-accent: #ff4c3b;
  --c-bg: #104a55;
  --c-surface: #13525f;
  --c-text: #ffffff;
  --c-text-muted: #c0c8cf;
  --c-btn: #ff4c3b;
  --c-btn-text: #ffffff;
  --c-border: #116066;
  --c-grad-start: #0e3f49;
  --c-grad-end: #104a55;
  --c-logo-text: #ffffff;
}
.vm-logo-text { color: var(--c-logo-text) !important; }
[class*="_logo"] { color: #ffffff !important; }


.vm-logo-png { height: 39px; width: auto; display: block; object-fit: contain; }

.h27_root {
    background: var(--c-primary);
    border-bottom: 1px solid rgba(255,255,255,0.071);
  }
  .h27_logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 0;
    padding-right: 20px;
    position: relative;
  }
  .h27_accent-bar {
    width: 4px;
    height: 39px;
    background: var(--c-accent);
    border-radius: 4px;
    flex-shrink: 0;
    box-shadow: 0 0 12px color-mix(in srgb, var(--c-accent) 50%, transparent);
  }
  .h27_logo-icon {
    width: 37px;
    height: 37px;
    background: rgba(255,255,255,0.019);
    border: 1px solid rgba(255,255,255,0.071);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--c-accent);
    flex-shrink: 0;
  }
  .h27_logo-text {
    font-weight: 700;
    font-size: 1.098rem;
    color: #fff;
    letter-spacing: -0.01em;
  }
  .h27_nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
  }
  .h27_nav a {
    color: rgba(255,255,255,0.518);
    text-decoration: none;
    font-size: 0.853rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 6px;
    transition: background 0.147s, color 0.146s;
  }
  .h27_nav a:hover {
    background: rgba(255,255,255,0.092);
    color: #fff;
  }
  .h27_divider {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.068);
    flex-shrink: 0;
  }
  .h27_cta {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .h27_login-btn {
    background: transparent;
    color: rgba(255,255,255,0.59);
    border: 1px solid rgba(255,255,255,0.132);
    padding: 7px 16px;
    border-radius: 6px;
    font-size: 0.854rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.153s, border-color 0.148s;
  }
  .h27_login-btn:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.293);
  }
  .h27_register-btn {
    background: var(--c-accent);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 0.868rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.01em;
    box-shadow: 0 0 16px color-mix(in srgb, var(--c-accent) 40%, transparent);
    transition: opacity 0.149s, box-shadow 0.152s;
  }
  .h27_register-btn:hover {
    opacity: 0.92;
    box-shadow: 0 0 25px color-mix(in srgb, var(--c-accent) 55%, transparent);
  }
  .h27_menu-btn {
    display: none;
    background: rgba(255,255,255,0.057);
    border: 1px solid rgba(255,255,255,0.149);
    color: rgba(255,255,255,0.712);
    width: 38px;
    height: 39px;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  @media (max-width: 768px) {
    .h27_nav { display: none; }
    .h27_cta-desktop { display: none !important; }
    .h27_menu-btn { display: flex !important; }
  }
  .h27_s1 { position: sticky; top: 0; z-index: 100; }
  .h27_s2 { position: relative; top: auto; z-index: auto; }
  .h27_s3 { display: flex; align-items: center; gap: 10px; }
  .h27_s4 { background: var(--c-primary); border-top: 1px solid rgba(255,255,255,0.071); }
  .h27_s5 { flex-direction: column; align-items: flex-start; padding: 12px 0; }
  .h27_s6 { padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.098); display: flex; gap: 8px; }
  .h27_s7 { flex: 1; text-align: center; }

.qf39-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 384px;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--c-accent) 28%, var(--c-bg)) 0%,
    color-mix(in srgb, var(--c-accent) 8%, var(--c-bg)) 100%);
  border: 1px solid rgba(255,255,255,0.094);
  box-shadow: 0 14px 45px rgba(0,0,0,0.415);
  display: flex;
  align-items: flex-end;
}
.qf39-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.qf39-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(181deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.173) 35%, rgba(0,0,0,0.781) 75%, rgba(0,0,0,0.941) 100%);
  z-index: 1;
}
.qf39-content {
  position: relative; z-index: 2;
  padding: 37px 43px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.qf39-text { max-width: 722px; }
.qf39-eyebrow {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 1026px;
  background: color-mix(in srgb, var(--c-accent, #f59e0b) 22%, transparent);
  color: var(--c-accent, #f59e0b);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  border: 1px solid color-mix(in srgb, var(--c-accent, #f59e0b) 40%, transparent);
}
.qf39-title {
  font-size: 29px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.516);
}
.qf39-amount {
  font-size: 15px;
  color: rgba(255,255,255,0.799);
  line-height: 1.5;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.394);
}
.qf39-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 31px;
  border-radius: 1017px;
  background: var(--c-accent, #22c55e);
  color: var(--c-bg, var(--c-bg));
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.285);
  transition: box-shadow .25s ease, filter .18s;
}
.qf39-cta:hover {
  filter: brightness(1.06);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--c-accent, #22c55e) 22%, transparent),
    0 10px 28px color-mix(in srgb, var(--c-accent, #22c55e) 38%, transparent);
}
.qf39-cta::after {
  content: '→';
  font-size: 16px;
}
@media (max-width: 768px) {
  .qf39-card { min-height: 342px; }
  .qf39-content {
    padding: 24px 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .qf39-title { font-size: 21px; }
}

.qr10-wrap { max-width: 988px; margin: 0 auto; }
  .qr10-outer {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 18px;
    padding: 28px 30px 31px;
    box-shadow: 0 16px 45px -23px rgba(0,0,0,0.331);
  }
  .qr10-title { color: var(--c-text); margin: 0 0 12px; }
  .qr10-intro { font-size: 15px; line-height: 1.7; color: var(--c-text-muted); margin: 0 0 17px; }

  .qr10-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 0 0 18px; }
  .qr10-card {
    border-radius: 12px;
    padding: 16px 16px 18px;
    background: linear-gradient(139deg,
      color-mix(in srgb, var(--c-accent) 14%, var(--c-bg)) 0%,
      var(--c-bg) 100%);
    border: 1px solid color-mix(in srgb, var(--c-accent) 22%, transparent);
    color: #fff;
  }
  .qr10-card-h3 { color: #fff; font-size: 14px; font-weight: 800; line-height: 1.3; margin: 0 0 8px; }
  .qr10-card-p { font-size: 12px; line-height: 1.55; color: rgba(255,255,255,0.797); margin: 0; }

  .qr10-mid-p { font-size: 15px; line-height: 1.7; color: var(--c-text-muted); margin: 0 0 18px; }

  .qr10-panel {
    border-radius: 14px;
    padding: 22px 24px 24px;
    background: linear-gradient(138deg,
      color-mix(in srgb, var(--c-accent) 14%, var(--c-bg)) 0%,
      var(--c-bg) 100%);
    border: 1px solid color-mix(in srgb, var(--c-accent) 22%, transparent);
    box-shadow: 0 18px 52px -28px color-mix(in srgb, var(--c-accent) 35%, transparent);
    color: #fff;
    margin: 0 0 22px;
  }
  .qr10-panel-h3 { color: #fff; font-size: 17px; font-weight: 800; line-height: 1.3; margin: 0 0 8px; }
  .qr10-panel-lead { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.76); margin: 0 0 16px; }
  .qr10-panel-foot { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.792); margin: 16px 0 0; }

  .qr10-bullets { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 14px; }
  .qr10-bullet { display: flex; align-items: center; gap: 12px; }
  .qr10-bullet-icon { flex: 0 0 27px; height: 29px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: color-mix(in srgb, var(--c-accent) 22%, transparent); color: var(--c-accent); border: 1px solid color-mix(in srgb, var(--c-accent) 50%, transparent); }
  .qr10-bullet-icon svg { width: 14px; height: 14px; }
  .qr10-bullet-text { flex: 1; color: rgba(255,255,255,0.94); font-size: 13px; line-height: 1.4; font-weight: 500; }

  .qr10-h3-light { color: var(--c-text); font-size: 20px; font-weight: 800; line-height: 1.3; margin: 0 0 8px; }
  .qr10-p { font-size: 15px; line-height: 1.7; color: var(--c-text-muted); margin: 0 0 18px; }

  .qr10-table {
    width: 100%; border-collapse: separate; border-spacing: 0;
    background: var(--c-bg);
    border: 1px solid color-mix(in srgb, var(--c-accent) 35%, transparent);
    border-radius: 12px; overflow: hidden;
    margin: 0 0 18px;
    table-layout: fixed;
  }
  .qr10-table th, .qr10-table td { padding: 14px 18px; font-size: 13px; line-height: 1.45; text-align: left; vertical-align: top; }
  .qr10-table thead th {
    font-size: 11px; font-weight: 800; letter-spacing: 0.117em; text-transform: uppercase;
    color: var(--c-accent);
    background: color-mix(in srgb, var(--c-accent) 8%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--c-accent) 35%, transparent);
  }
  .qr10-table tbody td { color: var(--c-text-muted); }
  .qr10-table tbody td:first-child { color: var(--c-text); font-weight: 600; }
  .qr10-table tbody tr:nth-child(odd) td { background: color-mix(in srgb, var(--c-accent) 4%, transparent); }
  .qr10-table tbody tr:hover td { background: color-mix(in srgb, var(--c-accent) 9%, transparent); }

  .qr10-cta-wrap { margin-top: 18px; }
  .qr10-cta {
    display: inline-block; padding: 12px 30px; border-radius: 990px;
    background: var(--c-accent); color: var(--c-bg);
    font-size: 13px; font-weight: 800; text-decoration: none;
    text-transform: uppercase; letter-spacing: 0.099em;
    box-shadow: 0 8px 22px -8px color-mix(in srgb, var(--c-accent) 75%, transparent);
    transition: transform .18s ease, box-shadow .25s ease, filter .18s;
  }
  .qr10-cta:hover {
    filter: brightness(1.06); transform: translateY(-1px);
    box-shadow:
      0 0 0 4px color-mix(in srgb, var(--c-accent) 22%, transparent),
      0 12px 29px -8px color-mix(in srgb, var(--c-accent) 80%, transparent);
  }

  @media (max-width: 880px) { .qr10-cards { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 768px) { .qr10-bullets { grid-template-columns: 1fr; } .qr10-table th, .qr10-table td { padding: 11px 12px; font-size: 12px; } }
  @media (max-width: 640px) {
    .qr10-outer { padding: 22px 18px; border-radius: 14px; }
    .qr10-panel { padding: 18px 16px; border-radius: 12px; }
    .qr10-cards { grid-template-columns: 1fr; }
  }

.dc21-wrap { max-width: 919px; margin: 0 auto; }
  .dc21-title { color: var(--c-text); margin: 0 0 22px; }
  .dc21-p { font-size: 16px; line-height: 1.8; color: var(--c-text-muted); margin: 0 0 16px; }
  .dc21-spec-frame {
    margin: 27px 0;
    border-radius: 14px;
    overflow: hidden;
    background: var(--c-surface);
    border: 1px solid color-mix(in srgb, var(--c-accent) 22%, var(--c-border));
    box-shadow: 0 16px 44px -22px color-mix(in srgb, var(--c-accent) 50%, transparent);
  }
  .dc21-spec {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
  }
  .dc21-spec th, .dc21-spec td {
    padding: 14px 23px;
    font-size: 15px;
    line-height: 1.55;
    vertical-align: top;
    text-align: left;
  }
  .dc21-spec thead th {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.121em;
    color: var(--c-bg);
    background: linear-gradient(131deg,
      var(--c-accent) 0%,
      color-mix(in srgb, var(--c-accent) 65%, var(--c-grad-end)) 100%);
    padding-top: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid color-mix(in srgb, var(--c-accent) 50%, transparent);
  }
  .dc21-spec tbody th {
    font-weight: 700;
    color: var(--c-text);
    width: 38%;
  }
  .dc21-spec tbody td { color: var(--c-text-muted); }
  .dc21-spec tbody tr:nth-child(even) {
    background: color-mix(in srgb, var(--c-accent) 4%, transparent);
  }
  .dc21-spec tbody tr:hover {
    background: color-mix(in srgb, var(--c-accent) 9%, transparent);
  }
  .dc21-spec tbody tr:hover th { color: var(--c-accent); }
  @media (max-width: 640px) {
    .dc21-spec th, .dc21-spec td { padding: 12px 14px; font-size: 14px; }
    .dc21-spec tbody th { width: 42%; }
  }

.qz20-wrap { max-width: 745px; margin: 0 auto; }
  .qz20-title { color: var(--c-text); margin: 0 0 20px; }
  .qz20-lead { font-size: 18px; line-height: 1.7; color: var(--c-text); font-weight: 500; margin: 0 0 20px; }
  .qz20-p { font-size: 15px; line-height: 1.85; color: var(--c-text-muted); margin: 0 0 16px; }
  .qz20-p:last-child { margin-bottom: 0; }

.fn32-hero {
    background: linear-gradient(161deg, var(--c-bg) 0%, color-mix(in srgb, var(--c-primary) 15%, var(--c-bg)) 100%);
    position: relative;
    overflow: hidden;
  }
  .fn32-svg-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
  }
  .fn32-grid {
    display: grid;
    grid-template-columns: 1fr 405px;
    gap: 48px;
    align-items: center;
    padding: 56px 0;
    position: relative;
    z-index: 1;
  }
  .fn32-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.719rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.103em;
    color: var(--c-accent);
    background: color-mix(in srgb, var(--c-accent) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--c-accent) 25%, transparent);
    border-radius: 20px;
    padding: 5px 14px;
    margin-bottom: 16px;
  }
  .fn32-title { color: var(--c-text); margin-bottom: 14px; }
  .fn32-accent { color: var(--c-accent); }
  .fn32-desc {
    font-size: 1.014rem;
    color: var(--c-text-muted);
    line-height: 1.7;
    max-width: 448px;
    margin-bottom: 24px;
  }
  .fn32-calc-display {
    display: flex;
    gap: 20px;
    margin-bottom: 27px;
    flex-wrap: wrap;
  }
  .fn32-calc-box {
    flex: 1;
    min-width: 138px;
    padding: 16px 20px;
    border-radius: 12px;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
  }
  .fn32-calc-label {
    font-size: 0.678rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.081em;
    color: var(--c-text-muted);
    margin-bottom: 4px;
  }
  .fn32-calc-value {
    font-size: 1.596rem;
    font-weight: 900;
    color: var(--c-text);
    line-height: 1;
  }
  .fn32-calc-value-accent {
    font-size: 1.568rem;
    font-weight: 900;
    color: var(--c-accent);
    line-height: 1;
  }
  .fn32-btns { display: flex; gap: 12px; flex-wrap: wrap; }
  .fn32-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 16px; box-shadow: 0 3px 16px rgba(255,255,255,0.18), 0 0 2px rgba(255,255,255,0.069);
    overflow: hidden;
  }
  .fn32-card-header {
    padding: 18px 24px;
    border-bottom: 1px solid var(--c-border);
    font-size: 0.758rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.079em;
    color: var(--c-text-muted);
  }
  .fn32-card-body { padding: 20px 24px; }
  .fn32-table {
    width: 100%;
    border-collapse: collapse;
  }
  .fn32-table th {
    text-align: left;
    font-size: 0.681rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--c-text-muted);
    padding: 0 0 10px 0;
    border-bottom: 1px solid var(--c-border);
  }
  .fn32-table th:last-child { text-align: right; }
  .fn32-table td {
    padding: 10px 0;
    font-size: 0.828rem;
    color: var(--c-text);
    font-weight: 500;
    border-bottom: 1px solid color-mix(in srgb, var(--c-border) 50%, transparent);
  }
  .fn32-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--c-accent);
  }
  .fn32-table tr:last-child td {
    border-bottom: none;
    padding-bottom: 0;
  }
  .fn32-table-total td {
    font-size: 0.895rem;
    font-weight: 800;
    color: var(--c-text);
    padding-top: 12px;
    border-top: 2px solid var(--c-border);
    border-bottom: none;
  }
  .fn32-table-total td:last-child {
    color: var(--c-accent);
    font-size: 0.994rem;
  }
  .fn32-card-footer {
    padding: 16px 23px;
    border-top: 1px solid var(--c-border);
  }
  .fn32-card-cta {
    display: block;
    text-align: center;
    padding: 11px;
    background: var(--c-accent);
    color: var(--c-bg);
    font-weight: 700;
    font-size: 0.865rem;
    border-radius: 10px;
    text-decoration: none;
  }
  .fn32-card-cta:hover { opacity: 0.9; }
  @media (max-width: 768px) {
    .fn32-grid { grid-template-columns: 1fr; gap: 31px; padding: 39px 0; }
    .fn32-card { display: none; }
  }

.yi63-layout { display: grid; grid-template-columns: 274px 1fr; gap: 3.057rem; align-items: start; margin-bottom: 2.448rem; }
  .yi63-score-block { text-align: center; }
  .yi63-big-score { font-size: 4.478rem; font-weight: 900; color: var(--c-accent); line-height: 1; }
  .yi63-tp-stars { color: #00b67a; font-size: 1.77rem; letter-spacing: 2px; margin: 0.496rem 0; }
  .yi63-tp-label { font-size: 0.874rem; color: var(--c-text-muted); }
  .yi63-tp-logo { font-weight: 800; font-size: 1.232rem; color: #00b67a; margin-top: 0.765rem; }
  .yi63-bars { display: flex; flex-direction: column; gap: 0.63rem; }
  .yi63-bar-row { display: flex; align-items: center; gap: 0.742rem; }
  .yi63-bar-label { font-size: 0.804rem; font-weight: 600; color: var(--c-text); min-width: 33px; }
  .yi63-bar-track { flex: 1; height: 10px; background: var(--c-border); border-radius: 5px; overflow: hidden; }
  .yi63-bar-fill { height: 100%; background: #00b67a; border-radius: 5px; }
  .yi63-bar-count { font-size: 0.747rem; color: var(--c-text-muted); min-width: 49px; text-align: right; }
  .yi63-reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.004rem; }
  .yi63-review-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 10px; padding: 1.102rem; }
  .yi63-rc-top { display: flex; align-items: center; gap: 10px; margin-bottom: 0.616rem; }
  .yi63-rc-avatar { width: 39px; height: 38px; border-radius: 50%; background: color-mix(in srgb, var(--c-accent) 20%, var(--c-surface)); display: flex; align-items: center; justify-content: center; font-size: 0.772rem; font-weight: 700; color: var(--c-accent); }
  .yi63-rc-name { font-weight: 700; font-size: 0.835rem; color: var(--c-text); }
  .yi63-rc-stars { color: #00b67a; font-size: 0.882rem; }
  .yi63-rc-text { font-size: 0.824rem; color: var(--c-text-muted); line-height: 1.5; margin-bottom: 0.495rem; }
  .yi63-rc-date { font-size: 0.685rem; color: var(--c-text-muted); }
  .yi63-header { text-align: center; margin-bottom: 2.018rem; }
  @media (max-width: 900px) { .yi63-layout { grid-template-columns: 1fr; } .yi63-reviews-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) { .yi63-reviews-grid { grid-template-columns: 1fr; } }
  .yi63-s1 { margin-bottom: 1.001rem; }
  .yi63-s2 { width: 18%; opacity: 0.75; }
  .yi63-s3 { width: 5%; opacity: 0.55; }
  .yi63-s4 { width: 2%; opacity: 0.4; }
  .yi63-s5 { width: 1%; opacity: 0.3; }
  .yi63-s6 { background: color-mix(in srgb,#60a5fa 15%,var(--c-surface)); color: #60a5fa; }
  .yi63-s7 { background: color-mix(in srgb,#10b981 15%,var(--c-surface)); color: #10b981; }
  .yi63-s8 { background: color-mix(in srgb,#8b5cf6 15%,var(--c-surface)); color: #8b5cf6; }

.ld34-wrap { max-width: 1110px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
  .ld34-intro { max-width: 832px; }
  .ld34-title { color: var(--c-text); margin: 0 0 14px; }
  .ld34-lead { font-size: 15px; line-height: 1.75; color: var(--c-text-muted); margin: 0; }
  .ld34-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  .ld34-col { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 14px; padding: 27px 31px; }
  .ld34-col-pros { border-color: color-mix(in srgb, var(--c-accent) 35%, var(--c-border)); }
  .ld34-label { display: inline-flex; align-items: center; gap: 8px; font-size: 0.665rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.136em; padding: 6px 12px; border-radius: 6px; margin: 0 0 18px; }
  .ld34-label-cons { background: color-mix(in srgb, var(--c-text-muted) 14%, transparent); color: var(--c-text); }
  .ld34-label-pros { background: color-mix(in srgb, var(--c-accent) 16%, transparent); color: var(--c-accent); }
  .ld34-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
  .ld34-item { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.55; color: var(--c-text-muted); }
  .ld34-ico { flex-shrink: 0; width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; margin-top: 1px; }
  .ld34-ico-pro { background: var(--c-accent); color: var(--c-bg); }
  .ld34-ico-con { background: color-mix(in srgb, var(--c-text-muted) 28%, transparent); color: var(--c-text-muted); }
  .ld34-ico svg { width: 12px; height: 12px; }
  @media (max-width: 768px) { .ld34-row { grid-template-columns: 1fr; } }

.bb10-wrap { max-width: 1099px; margin: 0 auto; }
  .bb10-intro { max-width: 764px; margin-bottom: 22px; }
  .bb10-title { color: var(--c-text); margin: 0 0 12px; }
  .bb10-lead { font-size: 15px; line-height: 1.7; color: var(--c-text-muted); margin: 0; }
  .bb10-scroll { overflow-x: auto; border-radius: 14px; box-shadow: 0 6px 29px -12px color-mix(in srgb, var(--c-accent) 35%, transparent); border: 1px solid color-mix(in srgb, var(--c-accent) 20%, var(--c-border)); }
  .bb10-table { width: 100%; min-width: 733px; border-collapse: separate; border-spacing: 0; background: var(--c-surface); }
  .bb10-table thead th { background: linear-gradient(134deg, var(--c-accent) 0%, color-mix(in srgb, var(--c-accent) 55%, var(--c-grad-end)) 100%); color: var(--c-bg); text-align: left; padding: 16px 20px; font-size: 0.705rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.119em; border-bottom: 1px solid color-mix(in srgb, var(--c-accent) 40%, transparent); }
  .bb10-table thead th:first-child { padding-left: 22px; }
  .bb10-table tbody td { padding: 16px 20px; font-size: 15px; line-height: 1.5; color: var(--c-text-muted); border-bottom: 1px solid var(--c-border); }
  .bb10-table tbody tr:last-child td { border-bottom: none; }
  .bb10-table tbody tr:hover { background: color-mix(in srgb, var(--c-accent) 5%, transparent); }
  .bb10-table tbody td:first-child { color: var(--c-text); font-weight: 700; border-left: 3px solid transparent; padding-left: 19px; }
  .bb10-table tbody tr:hover td:first-child { border-left-color: var(--c-accent); }

.mf25-wrap { max-width: 802px; margin: 0 auto; }
.mf25-list { display: flex; flex-direction: column; gap: 10px; margin-top: 39px; }
.mf25-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.mf25-item:hover {
  border-color: color-mix(in srgb, var(--c-accent) 35%, transparent);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--c-accent) 6%, transparent);
}
.mf25-item.vm-faq-open {
  border-color: color-mix(in srgb, var(--c-accent) 55%, transparent);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--c-accent) 25%, transparent),
              0 8px 32px color-mix(in srgb, var(--c-accent) 8%, transparent);
}
.mf25-q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.mf25-q::-webkit-details-marker { display: none; }
.mf25-num {
  font-size: 20px;
  font-weight: 900;
  color: color-mix(in srgb, var(--c-accent) 25%, transparent);
  min-width: 27px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.041em;
  transition: color .2s;
  line-height: 1;
}
.mf25-item.vm-faq-open .mf25-num,
.mf25-item:hover .mf25-num { color: var(--c-accent); }
.mf25-qtext {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.4;
}
.mf25-chevron {
  width: 24px; height: 24px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-text-muted);
  transition: transform .25s;
}
.mf25-item.vm-faq-open .mf25-chevron { transform: rotate(183deg); color: var(--c-accent); }
.mf25-body {
  padding: 0 23px 22px 66px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-text-muted);
  border-top: 1px solid var(--c-border);
  padding-top: 18px;
}
.mf25-body a { color: var(--c-accent); }
.mf25-cta {
  margin-top: 32px;
  background: color-mix(in srgb, var(--c-accent) 6%, var(--c-surface));
  border: 1px solid color-mix(in srgb, var(--c-accent) 20%, transparent);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.mf25-cta-text { font-size: 15px; font-weight: 600; color: var(--c-text); }
.mf25-cta-sub { font-size: 13px; color: var(--c-text-muted); margin-top: 3px; }
.mf25-header { text-align: center; }
.mf25-title { margin-top: 8px; }
.mf25-lead { margin-top: 10px; max-width: 557px; margin-left: auto; margin-right: auto; }

.yc26-wrap { padding: 1.011rem 0; }
  .yc26-track {
    height: 2px;
    /* faint accent base so the track itself reads as brand-colored even
       when the bright sweep highlight isn't currently over it */
    background: color-mix(in srgb, var(--c-accent) 22%, transparent);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
  }
  .yc26-sweep {
    position: absolute;
    top: 0; left: -40%;
    width: 40%;
    height: 100%;
    background: linear-gradient(88deg, transparent, var(--c-accent), transparent);
    animation: yc26-slide 2.826s ease-in-out infinite;
    border-radius: 2px;
  }
  @keyframes yc26-slide {
    0% { left: -40%; }
    100% { left: 140%; }
  }

.ft12_footer { background: var(--c-primary); border-top: 1px solid var(--c-border); }
/* Top row — single "command bar": [logo] [nav+extra links] [payments] [18+].
   Payments migrated up from the bottom row so the entire actionable
   surface (links + payments + compliance badge) lives on one line; the
   bottom row shrinks to pure copyright + "play responsibly" text.
   `margin-left: auto` on the payments block pushes it (and the 18+
   badge right after it) to the right edge while the nav grows to fill
   whatever gap is left between logo and that group. */
.ft12_top { display: flex; align-items: center; gap: 0.487rem 1.226rem; padding: 14px 0; flex-wrap: wrap; }

/* Nav — primary multipage links followed by legal/extra links, both
   inline with pipe separators. `:empty` collapses the whole row on
   landing sites without any of those placeholders producing links. */
.ft12_nav { display: flex; align-items: center; gap: 0; flex-wrap: wrap; flex: 1 1 auto; min-width: 0; }
.ft12_nav:empty { display: none; }
.ft12_nav a { color: var(--c-text-muted); font-size: 0.762rem; text-decoration: none; padding: 0.25rem 0.742rem; border-right: 1px solid var(--c-border); transition: color 0.194s; white-space: nowrap; }
.ft12_nav a:first-child { padding-left: 0; }
.ft12_nav a:last-child { border-right: none; }
.ft12_nav a:hover { color: var(--c-accent); }

/* Payments inline with the nav row — smaller than default so they read
   as a compliance strip rather than a marketing showcase. Scoped
   override of .vm-pay-logo: height trimmed from 22→16 px, padding
   squeezed so ten pill badges still fit next to a full nav bar. */
.ft12_pay { display: flex; flex-wrap: wrap; align-items: center; gap: 5px; margin-left: auto; }
.ft12_pay:empty { display: none; }
.ft12_pay .vm-pay-logo {
  height: 20px;
  max-width: 51px;
  padding: 4px 8px;
  border-radius: 5px;
}

.ft12_badge_row { display: flex; gap: 0.514rem; align-items: center; flex-shrink: 0; }

/* Bottom row — now just a thin compliance line (copyright +
   "play responsibly"). Centre-aligned for balance regardless of how
   wide the text happens to be after brand substitution. */
.ft12_bottom {
  border-top: 1px solid var(--c-border);
  padding: 10px 0;
  display: flex; align-items: center; justify-content: center;
  gap: 6px 20px; flex-wrap: wrap;
}
.ft12_legal { color: var(--c-text-muted); font-size: 0.718rem; display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; }

@media (max-width: 768px) {
  .ft12_top { gap: 0.514rem 0.771rem; }
  .ft12_pay { margin-left: 0; width: 100%; justify-content: flex-start; }
  .ft12_badge_row { margin-left: auto; }
}
@media (max-width: 600px) {
  .ft12_top { flex-direction: column; align-items: flex-start; }
  .ft12_pay { justify-content: flex-start; }
  .ft12_badge_row { margin-left: 0; }
  .ft12_nav { flex: 1 1 100%; }
}

/* ── csb mobile-header policy (appended last, wins source-order) ── */
@media (max-width: 768px) {
  body [class*="cta-desktop"],
  body [class*="actions-desktop"],
  body [class*="btns-desktop"],
  body [class*="cta-wrap"],
  body [class*="login-actions"],
  body [class*="strip-actions"] {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
  }
  body [class*="cta-desktop"] .vm-btn,
  body [class*="actions-desktop"] .vm-btn,
  body [class*="btns-desktop"] .vm-btn,
  body [class*="cta-wrap"] .vm-btn,
  body [class*="cta-desktop"] button,
  body [class*="actions-desktop"] button,
  body [class*="btns-desktop"] button,
  body [class*="cta-wrap"] button,
  body [class*="cta-desktop"] a,
  body [class*="actions-desktop"] a,
  body [class*="btns-desktop"] a,
  body [class*="cta-wrap"] a {
    padding: 7px 12px !important;
    font-size: 11px !important;
  }
}

/* Codex: normalize h3 vertical spacing */
h3 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

/* Codex: normalize content list spacing */
:where(main, section, article, .it-content, .it-intro, .it-section, .it-content-block) :where(ul, ol) {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

:where(main, section, article, .it-content, .it-intro, .it-section, .it-content-block) p + :where(ul, ol),
:where(main, section, article, .it-content, .it-intro, .it-section, .it-content-block) :where(ul, ol) + p {
  margin-top: 16px !important;
}
