@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;
}
.mf-logo-text { color: var(--c-logo-text) !important; }
[class*="_logo"] { color: #ffffff !important; }


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

.jf66-right { display: flex; align-items: center; gap: 14px; }
  .jf66-online-badge { display: flex; align-items: center; gap: 6px; font-size: 0.761rem; }
  .jf66-register-btn {
    background: var(--c-accent);
    color: var(--c-bg);
    border: none;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.893rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: opacity 0.151s;
  }
  .jf66-register-btn:hover { opacity: 0.88; }
  @media (max-width: 768px) {
    .jf66-nav { display: none; }
    .jf66-cta-wrap { display: none; }
    .jf66-menu-btn { display: flex !important; }
  }
  .jf66-menu-btn { display: none; }
  .jf66-sroot { position: sticky; top: 0; z-index: 100; }
  .jf66-mnav { flex-direction: column; align-items: flex-start; padding: 12px 0; }
  .jf66-mrow { padding: 12px 0; border-top: 1px solid var(--c-border); }
  .jf66-mbtn-full { width: 100%; display: block; text-align: center; }

.be49-hero {
  position: relative;
  min-height: 463px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-bg) center/cover no-repeat;
  overflow: hidden;
}
.be49-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(138deg,
    rgb(0 0 0 / calc(.55 + var(--hi-offset, 0))) 0%,
    rgb(0 0 0 / calc(.48 + var(--hi-offset, 0))) 100%);
}
.be49-content {
  position: relative; z-index: 1;
  text-align: center;
  padding: 47px 24px;
  max-width: 723px;
}
.be49-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--c-accent);
  margin-bottom: 18px;
}
.be49-title { color: #fff; margin: 0 0 20px; text-shadow: 0 2px 14px rgba(0,0,0,0.469); }
.be49-divider {
  width: 57px; height: 3px;
  background: var(--c-accent);
  margin: 0 auto 20px;
  border-radius: 3px;
}
.be49-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.764);
  line-height: 1.7;
  margin: 0 auto 25px;
  max-width: 549px;
}
.be49-cta {
  display: inline-block;
  padding: 13px 36px;
  background: var(--c-accent);
  color: var(--c-bg);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: filter .2s;
}
.be49-cta:hover {
  filter: brightness(1.06);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--c-accent) 22%, transparent),
    0 12px 28px -8px color-mix(in srgb, var(--c-accent) 80%, transparent);
}
@media (max-width: 600px) { .be49-hero { min-height: 387px; } }

.ea21-hero {
    background: linear-gradient(136deg, var(--c-bg) 0%, color-mix(in srgb, var(--c-primary) 18%, var(--c-bg)) 100%);
    position: relative;
    overflow: hidden;
  }
  .ea21-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40L40 0' fill='none' stroke='%23ffffff' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 39px 40px;
    pointer-events: none;
  }
  .ea21-grid {
    display: grid;
    grid-template-columns: 1fr 384px;
    gap: 49px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .ea21-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    background: color-mix(in srgb, var(--c-accent) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--c-accent) 25%, transparent);
    font-size: 0.701rem;
    font-weight: 700;
    color: var(--c-accent);
    text-transform: uppercase;
    letter-spacing: 0.081em;
    margin-bottom: 18px;
  }
  .ea21-title { color: var(--c-text); margin-bottom: 14px; }
  .ea21-accent { color: var(--c-accent); }
  .ea21-desc {
    font-size: 0.973rem;
    color: var(--c-text-muted);
    line-height: 1.7;
    max-width: 462px;
    margin-bottom: 21px;
  }
  .ea21-trust {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }
  .ea21-trust-item {
    font-size: 0.772rem;
    color: var(--c-text-muted);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .ea21-trust-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--c-accent); flex-shrink: 0;
  }
  .ea21-btns { display: flex; gap: 12px; flex-wrap: wrap; }
  .ea21-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 16px; box-shadow: 0 0 14px rgba(255,255,255,0.143), 0 0 2px rgba(255,255,255,0.084);
    padding: 29px;
  }
  .ea21-card-amount {
    font-size: 2.762rem;
    font-weight: 900;
    color: var(--c-accent);
    line-height: 1;
    margin-bottom: 4px;
  }
  .ea21-card-label {
    font-size: 0.746rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.079em;
    color: var(--c-text-muted);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--c-border);
  }
  .ea21-checks { display: flex; flex-direction: column; gap: 10px; }
  .ea21-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.902rem;
    color: var(--c-text);
    font-weight: 500;
  }
  .ea21-check-icon {
    width: 20px; height: 20px; border-radius: 50%;
    background: color-mix(in srgb, var(--c-accent) 15%, transparent);
    color: var(--c-accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.655rem; font-weight: 800; flex-shrink: 0;
  }
  @media (max-width: 880px) {
    .ea21-grid { grid-template-columns: 1fr; }
    .ea21-card { display: none; }
  }

.gc48-wrap { max-width: 898px; margin: 0 auto; }
  .gc48-title { color: var(--c-text); margin: 0 0 22px; }
  .gc48-p { font-size: 16px; line-height: 1.8; color: var(--c-text-muted); margin: 0 0 16px; }
  .gc48-spec {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--c-surface);
    border: 1px solid color-mix(in srgb, var(--c-accent) 18%, var(--c-border));
    border-radius: 14px;
    overflow: hidden;
    margin: 26px 0;
    table-layout: fixed;
    box-shadow: 0 14px 39px -22px color-mix(in srgb, var(--c-accent) 45%, transparent);
  }
  .gc48-spec th, .gc48-spec td {
    padding: 16px 22px;
    font-size: 15px;
    line-height: 1.55;
    vertical-align: top;
    text-align: left;
  }
  .gc48-spec thead th {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--c-text);
    background: linear-gradient(137deg,
      color-mix(in srgb, var(--c-accent) 18%, transparent) 0%,
      color-mix(in srgb, var(--c-accent) 6%, transparent) 100%);
    padding-top: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid color-mix(in srgb, var(--c-accent) 30%, var(--c-border));
  }
  .gc48-spec thead th:first-child {
    color: var(--c-accent);
  }
  .gc48-spec tbody th {
    font-weight: 700;
    color: var(--c-text);
    width: 38%;
    border-bottom: 1px solid var(--c-border);
  }
  .gc48-spec tbody th::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--c-accent) 18%, transparent);
    margin-right: 12px;
    vertical-align: 0.221em;
  }
  .gc48-spec tbody td {
    color: var(--c-text-muted);
    border-bottom: 1px solid var(--c-border);
  }
  .gc48-spec tbody tr:last-child th,
  .gc48-spec tbody tr:last-child td { border-bottom: none; }
  .gc48-spec tbody tr:hover td,
  .gc48-spec tbody tr:hover th {
    background: color-mix(in srgb, var(--c-accent) 4%, transparent);
  }
  @media (max-width: 640px) {
    .gc48-spec th, .gc48-spec td { padding: 12px 14px; font-size: 13px; }
    .gc48-spec tbody th { width: 42%; }
    .gc48-spec tbody th::before { width: 5px; height: 5px; margin-right: 9px; }
  }

.az12-wrap { max-width: 1111px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
  .az12-intro { max-width: 834px; }
  .az12-title { color: var(--c-text); margin: 0 0 14px; }
  .az12-lead { font-size: 15px; line-height: 1.75; color: var(--c-text-muted); margin: 0; }
  .az12-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 14px; overflow: hidden; }
  .az12-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .az12-half { padding: 28px 32px; }
  .az12-half + .az12-half { border-left: 1px solid var(--c-border); }
  .az12-h3 { font-size: 0.873rem; text-transform: uppercase; letter-spacing: 0.121em; font-weight: 800; margin: 0 0 16px; display: inline-flex; align-items: center; gap: 8px; }
  .az12-h3-pro { color: var(--c-accent); }
  .az12-h3-con { color: var(--c-text); }
  .az12-h3 svg { width: 19px; height: 18px; stroke-width: 2; }
  .az12-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
  .az12-item { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; line-height: 1.55; color: var(--c-text-muted); }
  .az12-item svg { flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px; }
  .az12-item-pro svg { color: var(--c-accent); }
  .az12-item-con svg { color: var(--c-text-muted); }
  @media (max-width: 768px) { .az12-grid { grid-template-columns: 1fr; } .az12-half + .az12-half { border-left: none; border-top: 1px solid var(--c-border); } }

.jv90-wrap { max-width: 701px; margin: 0 auto; text-align: center; }
  .jv90-title { color: var(--c-text); margin: 0 0 22px; }
  .jv90-p { font-size: 15px; line-height: 1.85; color: var(--c-text-muted); margin: 0 0 16px; text-align: left; }
  .jv90-p:last-child { margin-bottom: 0; }

.qh20-wrap { max-width: 901px; margin: 0 auto; }
  .qh20-outer {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 18px;
    padding: 28px 31px 30px;
    box-shadow: 0 16px 44px -22px rgba(0,0,0,0.291);
  }
  .qh20-title { color: var(--c-text); margin: 0 0 14px; }
  .qh20-intro { font-size: 15px; line-height: 1.8; color: var(--c-text-muted); margin: 0 0 22px; }

  .qh20-panel {
    border-radius: 16px;
    padding: 26px 25px 28px;
    margin-bottom: 18px;
    background: linear-gradient(134deg,
      color-mix(in srgb, var(--c-accent) 12%, var(--c-bg)) 0%,
      var(--c-bg) 100%);
    border: 1px solid color-mix(in srgb, var(--c-accent) 22%, transparent);
    box-shadow: 0 18px 53px -29px color-mix(in srgb, var(--c-accent) 35%, transparent);
    color: #fff;
  }
  .qh20-panel:last-of-type { margin-bottom: 0; }

  .qh20-h3 { color: #fff; font-size: 18px; font-weight: 800; line-height: 1.3; margin: 0 0 8px; }
  .qh20-h3-lead { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.765); margin: 0 0 22px; }
  .qh20-h3-foot { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.809); margin: 22px 0 0; }

  .qh20-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; counter-reset: qh20-step; }
  .qh20-step {
    counter-increment: qh20-step;
    display: flex; align-items: center; gap: 14px;
    padding: 0;
  }
  .qh20-step::before {
    content: counter(qh20-step);
    flex: 0 0 auto;
    width: 49px; height: 51px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: transparent;
    border: 2px solid var(--c-accent);
    color: var(--c-accent);
    font-size: 16px; font-weight: 800;
    letter-spacing: -0.02em;
  }
  .qh20-step-text {
    flex: 1;
    padding: 12px 18px;
    border-radius: 10px;
    background: rgba(255,255,255,0.001);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.904);
    font-size: 13px; line-height: 1.5; font-weight: 600;
  }

  .qh20-cta-wrap { margin-top: 24px; }
  .qh20-cta {
    display: inline-block; padding: 12px 30px; border-radius: 1001px;
    background: var(--c-accent); color: var(--c-bg);
    font-size: 12px; 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;
  }
  .qh20-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 28px -8px color-mix(in srgb, var(--c-accent) 80%, transparent);
  }

  @media (max-width: 640px) {
    .qh20-outer { padding: 22px 18px; border-radius: 14px; }
    .qh20-panel { padding: 20px 16px; border-radius: 12px; }
    .qh20-h3 { font-size: 16px; }
    .qh20-step { gap: 10px; }
    .qh20-step::before { width: 41px; height: 41px; font-size: 14px; }
    .qh20-step-text { padding: 10px 14px; font-size: 13px; }
  }

.il70-wrap { max-width: 953px; margin: 0 auto; }
  .il70-title { color: var(--c-text); margin: 0 0 18px; }
  .il70-intro { font-size: 15px; line-height: 1.85; color: var(--c-text-muted); margin: 0 0 24px; max-width: 706px; }
  .il70-row { display: grid; grid-template-columns: 197px 1fr; gap: 39px; padding: 22px 0; border-top: 1px solid var(--c-border); }
  .il70-row:last-child { border-bottom: 1px solid var(--c-border); }
  .il70-sh3 { color: var(--c-accent); margin: 0; font-size: 0.906rem; text-transform: uppercase; letter-spacing: 0.061em; font-weight: 700; padding-top: 4px; }
  .il70-col { min-width: 0; }
  .il70-sp { font-size: 14px; line-height: 1.8; color: var(--c-text-muted); margin: 0 0 10px; }
  .il70-sp:last-child { margin-bottom: 0; }
  @media (max-width: 768px) { .il70-row { grid-template-columns: 1fr; gap: 8px; } }

.bi61-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 314px;
  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: 2px solid color-mix(in srgb, var(--c-accent, #22c55e) 65%, transparent);
  box-shadow: 0 16px 49px rgba(0,0,0,0.381);
  display: flex;
  align-items: center;
}
.bi61-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.bi61-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(91deg, rgba(0,0,0,0.829) 0%, rgba(0,0,0,0.493) 35%, rgba(0,0,0,0.033) 75%, rgba(0,0,0,0) 100%);
  z-index: 1;
}
.bi61-content {
  position: relative;
  z-index: 2;
  padding: 45px 50px;
  max-width: 611px;
}
.bi61-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--c-accent, #facc15);
  line-height: 1.05;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.544);
}
.bi61-amount {
  font-size: 18px;
  color: #fff;
  line-height: 1.4;
  margin: 0 0 23px;
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(0,0,0,0.463);
}
.bi61-cta {
  display: inline-block;
  padding: 12px 36px;
  border-radius: 981px;
  background: #22c55e;
  color: #0a1f12;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(34,197,94,0.345);
  transition: box-shadow .25s ease, filter .18s;
}
.bi61-cta:hover {
  filter: brightness(1.06);
  box-shadow:
    0 0 0 4px rgba(34,197,94,0.187),
    0 10px 28px rgba(34,197,94,0.493);
}
@media (max-width: 768px) {
  .bi61-card { min-height: 329px; }
  .bi61-overlay {
    background: linear-gradient(176deg, rgba(0,0,0,0.406) 0%, rgba(0,0,0,0.813) 100%);
  }
  .bi61-content { padding: 27px 22px; max-width: 100%; }
  .bi61-title { font-size: 24px; }
  .bi61-amount { font-size: 15px; }
}

.ti82-wrap { max-width: 1130px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; }
  .ti82-intro { max-width: 864px; }
  .ti82-title { color: var(--c-text); margin: 0 0 14px; }
  .ti82-lead { font-size: 15px; line-height: 1.75; color: var(--c-text-muted); margin: 0; }
  .ti82-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  .ti82-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 14px; padding: 29px 32px; }
  .ti82-h3 { color: var(--c-accent); margin: 0 0 14px; font-size: 1.021rem; font-weight: 700; }
  .ti82-p { font-size: 14px; line-height: 1.8; color: var(--c-text-muted); margin: 0 0 14px; }
  .ti82-p:last-child { margin-bottom: 0; }
  .ti82-list { margin: 0; padding-left: 17px; font-size: 14px; line-height: 1.75; color: var(--c-text-muted); }
  .ti82-list li { margin-bottom: 8px; }
  .ti82-list li:last-child { margin-bottom: 0; }
  .ti82-bottom { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 14px; padding: 30px 36px; }
  .ti82-bh3 { color: var(--c-text); margin: 0 0 10px; font-size: 1.118rem; font-weight: 700; }
  .ti82-bp { font-size: 14px; line-height: 1.75; color: var(--c-text-muted); margin: 0 0 22px; }
  .ti82-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 39px; }
  .ti82-h4 { color: var(--c-text); margin: 0 0 8px; font-size: 0.738rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.119em; }
  .ti82-cp { font-size: 14px; line-height: 1.7; color: var(--c-text-muted); margin: 0; }
  @media (max-width: 880px) { .ti82-row { grid-template-columns: 1fr; } .ti82-grid { grid-template-columns: 1fr; gap: 18px; } }

.qt71-wrap { max-width: 959px; margin: 0 auto; }
  .qt71-outer {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 18px;
    padding: 27px 30px 30px;
    box-shadow: 0 16px 45px -21px rgba(0,0,0,0.292);
  }
  .qt71-title { color: var(--c-text); margin: 0 0 12px; }
  .qt71-intro { font-size: 15px; line-height: 1.7; color: var(--c-text-muted); margin: 0 0 18px; }

  .qt71-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 0 0 18px; }
  .qt71-card {
    border-radius: 12px;
    padding: 18px 20px 20px;
    background: linear-gradient(184deg,
      color-mix(in srgb, var(--c-accent) 12%, var(--c-bg)) 0%,
      var(--c-bg) 100%);
    color: #fff;
  }
  .qt71-card-h3 { color: var(--c-accent); font-size: 14px; font-weight: 800; line-height: 1.3; margin: 0 0 8px; text-transform: uppercase; letter-spacing: 0.06em; }
  .qt71-card-p { font-size: 13px; line-height: 1.55; color: rgba(255,255,255,0.852); margin: 0; }

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

  .qt71-panel {
    border-radius: 14px; padding: 22px 24px 24px;
    background: linear-gradient(137deg,
      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 21px;
  }
  .qt71-panel-h3 { color: #fff; font-size: 17px; font-weight: 800; line-height: 1.3; margin: 0 0 8px; }
  .qt71-panel-lead { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.829); margin: 0 0 16px; }
  .qt71-panel-foot { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.822); margin: 16px 0 0; }

  .qt71-bullets { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .qt71-bullet { display: flex; align-items: center; gap: 12px; padding: 10px 14px 10px 12px; border-radius: 10px; background: rgba(255,255,255,0.088); border: 1px solid rgba(255,255,255,0.097); }
  .qt71-bullet-icon {
    flex: 0 0 29px; width: 28px; height: 28px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    background: var(--c-accent); color: var(--c-bg);
  }
  .qt71-bullet-icon svg { width: 14px; height: 14px; }
  .qt71-bullet-text { flex: 1; color: rgba(255,255,255,0.927); font-size: 13px; line-height: 1.4; font-weight: 600; }

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

  .qt71-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;
  }
  .qt71-table th, .qt71-table td { padding: 14px 18px; font-size: 13px; line-height: 1.45; text-align: left; vertical-align: top; }
  .qt71-table thead th {
    font-size: 11px; font-weight: 800; letter-spacing: 0.121em; text-transform: uppercase;
    color: var(--c-bg);
    background: var(--c-accent);
    padding-top: 12px; padding-bottom: 12px;
  }
  .qt71-table tbody td { color: var(--c-text-muted); border-bottom: 1px solid color-mix(in srgb, var(--c-text) 6%, transparent); }
  .qt71-table tbody tr:last-child td { border-bottom: none; }
  .qt71-table tbody tr:nth-child(even) td { background: color-mix(in srgb, var(--c-text) 3%, transparent); }
  .qt71-table tbody tr:hover td { background: color-mix(in srgb, var(--c-accent) 7%, transparent); }

  .qt71-cta-wrap { margin-top: 18px; }
  .qt71-cta {
    display: inline-block; padding: 12px 30px; border-radius: 1013px;
    background: var(--c-accent); color: var(--c-bg);
    font-size: 12px; font-weight: 800; text-decoration: none;
    text-transform: uppercase; letter-spacing: 0.098em;
    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;
  }
  .qt71-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 28px -8px color-mix(in srgb, var(--c-accent) 80%, transparent);
  }

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

.er74-wrap { max-width: 865px; margin: 0 auto; }
  .er74-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 14px; overflow: hidden; }
  .er74-strip { height: 4px; background: linear-gradient(92deg, var(--c-accent), color-mix(in srgb, var(--c-accent) 40%, transparent)); }
  .er74-body { padding: 33px 39px; }
  .er74-title { color: var(--c-text); margin: 0 0 20px; }
  .er74-p { font-size: 15px; line-height: 1.85; color: var(--c-text-muted); margin: 0 0 16px; }
  .er74-p:last-child { margin-bottom: 0; }
  @media (max-width: 600px) { .er74-body { padding: 24px 21px; } }

.dp39-scroll-wrap { overflow: hidden; }
.dp39-track { display: flex; width: max-content; animation: dp39-scroll 25.631s linear infinite reverse; will-change: transform; }
@keyframes dp39-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.dp39-card { flex: 0 0 164px; margin-right: 12px; cursor: default; border: 1px solid var(--c-border); border-radius: var(--radius); overflow: hidden; }
.dp39-thumb { aspect-ratio: 4/3; background: linear-gradient(133deg, var(--card-bg1, var(--c-surface)), var(--card-bg2, var(--c-border))); display: flex; align-items: center; justify-content: center; }
.dp39-emoji { font-size: 49px; }

.iz95-wrap { max-width: 1076px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
  .iz95-intro { max-width: 841px; }
  .iz95-title { color: var(--c-text); margin: 0 0 14px; }
  .iz95-lead { font-size: 15px; line-height: 1.75; color: var(--c-text-muted); margin: 0; }
  .iz95-row { display: grid; grid-template-columns: 1fr 1fr; gap: 21px; }
  .iz95-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 14px; padding: 27px 30px; position: relative; }
  .iz95-card::before { content: ''; position: absolute; top: -1px; left: 22px; right: 23px; height: 2px; background: var(--c-accent); border-radius: 0 0 2px 2px; opacity: 0.7; }
  .iz95-eyebrow { font-size: 0.667rem; color: var(--c-accent); font-weight: 800; text-transform: uppercase; letter-spacing: 0.138em; margin-bottom: 8px; }
  .iz95-h3 { color: var(--c-text); margin: 0 0 12px; font-size: 1.068rem; font-weight: 700; }
  .iz95-p { font-size: 15px; line-height: 1.8; color: var(--c-text-muted); margin: 0 0 14px; }
  .iz95-p:last-child { margin-bottom: 0; }
  .iz95-take { margin: 14px 0 0; padding: 16px 18px; background: color-mix(in srgb, var(--c-accent) 6%, transparent); border-radius: 10px; }
  .iz95-take-label { font-size: 0.698rem; font-weight: 800; color: var(--c-accent); text-transform: uppercase; letter-spacing: 0.123em; margin-bottom: 6px; }
  .iz95-take-text { font-size: 14px; line-height: 1.7; color: var(--c-text); margin: 0; }
  .iz95-bottom { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 14px; padding: 30px 37px; }
  .iz95-bh3 { color: var(--c-text); margin: 0 0 10px; font-size: 1.129rem; font-weight: 700; }
  .iz95-bp { font-size: 14px; line-height: 1.75; color: var(--c-text-muted); margin: 0 0 18px; max-width: 784px; }
  .iz95-bcols { column-count: 2; column-gap: 45px; }
  .iz95-bcol-p { font-size: 14px; line-height: 1.8; color: var(--c-text-muted); margin: 0 0 14px; break-inside: avoid; }
  .iz95-bcol-p:last-child { margin-bottom: 0; }
  @media (max-width: 880px) { .iz95-row { grid-template-columns: 1fr; } .iz95-bcols { column-count: 1; } }

.pg21-wrap { max-width: 1131px; margin: 0 auto; text-align: center; }
  .pg21-intro { max-width: 699px; margin: 0 auto 27px; }
  .pg21-title { color: var(--c-text); margin: 0 0 10px; }
  .pg21-lead { font-size: 14px; line-height: 1.7; color: var(--c-text-muted); margin: 0; }
  .pg21-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 10px; }
  .pg21-grid .mf-mb-prov-tile { aspect-ratio: 16 / 9; background: color-mix(in oklab, var(--c-accent) 10%, var(--c-bg)); border: 1px solid color-mix(in oklab, var(--c-accent) 24%, var(--c-surface)); border-radius: 14px; display: flex; align-items: center; justify-content: center; padding: 5px; transition: transform 0.181s ease, box-shadow 0.18s ease, border-color 0.184s; }
  .pg21-grid .mf-mb-prov-tile:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--c-accent) 50%, var(--c-border)); box-shadow: 0 6px 20px -8px color-mix(in srgb, var(--c-accent) 35%, transparent); }
  .pg21-grid .mf-mb-prov-img { max-width: 97%; max-height: 92%; object-fit: contain; }
  @media (max-width: 900px) { .pg21-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 600px) { .pg21-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

.yn13-wrap { max-width: 1098px; margin: 0 auto; }
  .yn13-intro { max-width: 740px; margin-bottom: 22px; }
  .yn13-title { color: var(--c-text); margin: 0 0 12px; }
  .yn13-lead { font-size: 15px; line-height: 1.7; color: var(--c-text-muted); margin: 0; }
  .yn13-scroll { overflow-x: auto; border-radius: 14px; border: 1px solid var(--c-border); }
  .yn13-table { width: 100%; min-width: 779px; border-collapse: separate; border-spacing: 0; background: var(--c-surface); }
  .yn13-table thead th { background: linear-gradient(135deg, var(--c-grad-start), var(--c-surface)); color: var(--c-text); text-align: left; padding: 18px 20px; font-size: 0.683rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.121em; border-bottom: 1px solid var(--c-border); vertical-align: bottom; }
  .yn13-table thead th.yn13-best { background: linear-gradient(132deg, var(--c-accent), color-mix(in srgb, var(--c-accent) 60%, var(--c-grad-end))); color: var(--c-bg); padding-top: 14px; }
  .yn13-best-badge { display: inline-block; background: var(--c-bg); color: var(--c-accent); font-size: 0.592rem; font-weight: 800; padding: 3px 9px; border-radius: 4px; letter-spacing: 0.137em; margin-bottom: 8px; }
  .yn13-best-title { display: block; }
  .yn13-table tbody td { padding: 16px 20px; font-size: 15px; line-height: 1.55; color: var(--c-text-muted); border-bottom: 1px solid var(--c-border); }
  .yn13-table tbody td.yn13-best-cell { background: color-mix(in srgb, var(--c-accent) 8%, transparent); color: var(--c-text); font-weight: 600; border-left: 1px solid color-mix(in srgb, var(--c-accent) 28%, transparent); border-right: 1px solid color-mix(in srgb, var(--c-accent) 28%, transparent); }
  .yn13-table tbody tr:last-child td { border-bottom: none; }
  .yn13-table tbody tr:last-child td.yn13-best-cell { border-bottom: 2px solid var(--c-accent); }
  .yn13-table tbody td:first-child { color: var(--c-text); font-weight: 700; }
  .yn13-num { color: var(--c-accent); font-weight: 800; font-variant-numeric: tabular-nums; }
  .yn13-best-cell .yn13-num { color: var(--c-bg); background: var(--c-accent); padding: 2px 8px; border-radius: 4px; }

.in83-wrap { max-width: 1174px; margin: 0 auto; }
  .in83-intro { max-width: 822px; margin-bottom: 26px; }
  .in83-title { color: var(--c-text); margin: 0 0 14px; }
  .in83-lead { font-size: 15px; line-height: 1.75; color: var(--c-text-muted); margin: 0; }
  .in83-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 19px; }
  .in83-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 14px; padding: 26px 28px; display: flex; flex-direction: column; gap: 12px; }
  .in83-tag { font-size: 0.662rem; font-weight: 800; color: var(--c-accent); text-transform: uppercase; letter-spacing: 0.142em; }
  .in83-h3 { color: var(--c-text); margin: 0; font-size: 1.039rem; font-weight: 700; }
  .in83-p { font-size: 15px; line-height: 1.8; color: var(--c-text-muted); margin: 0 0 12px; }
  .in83-p:last-child { margin-bottom: 0; }
  @media (max-width: 920px) { .in83-row { grid-template-columns: 1fr; gap: 18px; } }

.ga33-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 362px;
  background: linear-gradient(137deg,
    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.097);
  box-shadow: 0 18px 51px rgba(0,0,0,0.409);
  display: flex;
  align-items: center;
}
.ga33-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.ga33-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(92deg, rgba(0,0,0,0.863) 0%, rgba(0,0,0,0.637) 35%, rgba(0,0,0,0.142) 70%, rgba(0,0,0,0.0) 100%);
  z-index: 1;
}
.ga33-content {
  position: relative; z-index: 2;
  padding: 47px 49px;
  max-width: 609px;
}
.ga33-title {
  font-size: 37px;
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.554);
}
.ga33-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.897);
  line-height: 1.55;
  margin: 0 0 29px;
  max-width: 468px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.473);
}
.ga33-cta-row {
  display: flex; gap: 12px;
  flex-wrap: nowrap;
  align-items: stretch;
}
/* Variant 02 signature: clean solid-accent rectangular buttons,
   icon on the left, bold uppercase text. Hover halo borrows the brand
   accent so the glow always matches the button colour. */
.ga33-cta {
  display: inline-flex; align-items: center;
  gap: 12px;
  padding: 15px 27px;
  border-radius: 12px;
  background: var(--c-accent, #f59e0b);
  color: var(--c-bg, var(--c-bg));
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.041em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: box-shadow .25s ease, filter .18s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.276);
}
.ga33-cta:hover {
  filter: brightness(1.04);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--c-accent, #f59e0b) 22%, transparent),
    0 10px 28px color-mix(in srgb, var(--c-accent, #f59e0b) 38%, transparent),
    0 6px 18px rgba(0,0,0,0.339);
}
.ga33-cta svg { flex-shrink: 0; }
@media (max-width: 768px) {
  .ga33-card { min-height: 327px; }
  .ga33-overlay {
    background: linear-gradient(179deg, rgba(0,0,0,0.478) 0%, rgba(0,0,0,0.835) 100%);
  }
  .ga33-content { padding: 33px 24px; max-width: 100%; }
  .ga33-title { font-size: 26px; }
  .ga33-cta-row { flex-wrap: wrap; }
  .ga33-cta { padding: 13px 16px; font-size: 12px; }
}

.ex45-header { text-align: center; margin-bottom: 2.502rem; }
  .ex45-masonry { columns: 3; column-gap: 1.227rem; }
  .ex45-card { break-inside: avoid; margin-bottom: 1.274rem; background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 12px; padding: 1.272rem; display: flex; flex-direction: column; gap: 0.629rem; }
  .ex45-card-large { padding: 1.727rem; }
  .ex45-card-accent { border-color: color-mix(in srgb, var(--c-accent) 40%, transparent); background: color-mix(in srgb, var(--c-accent) 4%, var(--c-surface)); }
  .ex45-top { display: flex; align-items: center; gap: 10px; }
  .ex45-avatar { width: 41px; height: 43px; border-radius: 50%; background: color-mix(in srgb, var(--c-accent) 20%, var(--c-surface)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.831rem; color: var(--c-accent); flex-shrink: 0; }
  .ex45-name { font-weight: 700; font-size: 0.854rem; color: var(--c-text); }
  .ex45-role { font-size: 0.71rem; color: var(--c-text-muted); }
  .ex45-stars { color: #f59e0b; }
  .ex45-stars-sm { font-size: 0.89rem; }
  .ex45-stars-lg { font-size: 1.159rem; }
  .ex45-text { color: var(--c-text-muted); line-height: 1.65; }
  .ex45-text-sm { font-size: 0.829rem; }
  .ex45-text-lg { font-size: 0.938rem; }
  .ex45-highlight { color: var(--c-accent); font-weight: 700; }
  .ex45-meta { font-size: 0.693rem; color: var(--c-text-muted); display: flex; align-items: center; justify-content: space-between; }
  .ex45-verified { color: #22c55e; font-weight: 600; font-size: 0.699rem; }
  @media (max-width: 880px) { .ex45-masonry { columns: 2; } }
  @media (max-width: 600px) { .ex45-masonry { columns: 1; } }
  .ex45-s1 { background: color-mix(in srgb,#f59e0b 15%,var(--c-surface)); color: #f59e0b; width: 55px; height: 53px; font-size: 0.998rem; }
  .ex45-s2 { background: color-mix(in srgb,#60a5fa 15%,var(--c-surface)); color: #60a5fa; }
  .ex45-s3 { background: color-mix(in srgb,#10b981 15%,var(--c-surface)); color: #10b981; }
  .ex45-s4 { background: color-mix(in srgb,#8b5cf6 15%,var(--c-surface)); color: #8b5cf6; width: 51px; height: 51px; }
  .ex45-s5 { background: color-mix(in srgb,#06b6d4 15%,var(--c-surface)); color: #06b6d4; }
  .ex45-s6 { background: color-mix(in srgb,#ec4899 15%,var(--c-surface)); color: #ec4899; }
  .ex45-s7 { background: color-mix(in srgb,#f59e0b 15%,var(--c-surface)); color: #f59e0b; }

.mh10-wrap { max-width: 993px; margin: 0 auto; }
  .mh10-outer {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 19px;
    padding: 28px 30px 30px;
    box-shadow: 0 16px 44px -21px rgba(0,0,0,0.326);
  }
  .mh10-title { color: var(--c-text); margin: 0 0 14px; }
  .mh10-intro { font-size: 14px; line-height: 1.7; color: var(--c-text-muted); margin: 0 0 18px; }

  .mh10-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 0 0 18px; }
  .mh10-card {
    border-radius: 12px;
    padding: 21px 24px 23px;
    background: linear-gradient(137deg,
      color-mix(in srgb, var(--c-accent) 32%, var(--c-bg)) 0%,
      color-mix(in srgb, var(--c-accent) 10%, var(--c-bg)) 100%);
    border: 1px solid color-mix(in srgb, var(--c-accent) 35%, transparent);
    box-shadow: 0 14px 36px -21px color-mix(in srgb, var(--c-accent) 50%, transparent);
    color: #fff;
  }
  .mh10-card-head { display: flex; align-items: center; gap: 14px; margin: 0 0 12px; }
  .mh10-card-icon {
    flex: 0 0 40px; width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: var(--c-accent); color: var(--c-bg);
    box-shadow: 0 4px 10px -2px color-mix(in srgb, var(--c-accent) 50%, transparent);
  }
  .mh10-card-icon svg { width: 20px; height: 21px; }
  .mh10-card-h3 { color: #fff; font-size: 16px; font-weight: 800; line-height: 1.3; margin: 0; }
  .mh10-card-p { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.834); margin: 0; font-weight: 500; }

  .mh10-foot { font-size: 14px; line-height: 1.7; color: var(--c-text-muted); margin: 0; }

  @media (max-width: 768px) { .mh10-cards { grid-template-columns: 1fr; } }
  @media (max-width: 640px) {
    .mh10-outer { padding: 22px 18px; border-radius: 14px; }
    .mh10-card { padding: 18px 17px 20px; }
  }

.ln10-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 41px;
}
@media (max-width: 640px) { .ln10-grid { grid-template-columns: 1fr; } }
.ln10-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color .2s, transform .2s;
}
.ln10-card:hover {
  border-color: color-mix(in srgb, var(--c-accent) 45%, transparent);
  transform: translateY(-2px);
}
.ln10-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--c-accent);
  color: var(--c-bg);
  font-size: 12px;
  font-weight: 900;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  flex-shrink: 0;
}
.ln10-q {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 10px;
  line-height: 1.4;
}
.ln10-a {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.7;
}
.ln10-header { text-align: center; }
.ln10-title { margin-top: 8px; }
.ln10-more {
  text-align: center;
  margin-top: 28px;
}

/* Pills stay the defining visual element, just shorter — 45px
     instead of 64, and section padding trimmed so the block slots
     in next to a heavier block (CTA / text) without dwarfing them. */
  .hx55-root { padding: 29px 0; }
  .hx55-wrap { max-width: 1130px; margin: 0 auto; text-align: center; }
  .hx55-title { margin: 0 0 12px; font-size: 1.107rem; }
  .hx55-row { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
  .hx55-row .mf-mb-trust-tile { display: flex; align-items: center; justify-content: center; height: 44px; padding: 6px 18px; background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 1002px; transition: border-color 0.15s; }
  .hx55-row .mf-mb-trust-tile:hover { border-color: var(--c-accent); }
  .hx55-row .mf-mb-trust-img { max-width: 96px; max-height: 100%; object-fit: contain; }

.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.507rem 1.256rem; 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.79rem; text-decoration: none; padding: 0.248rem 0.772rem; border-right: 1px solid var(--c-border); transition: color 0.201s; 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 .mf-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 .mf-pay-logo {
  height: 20px;
  max-width: 49px;
  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.74rem; display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; }

@media (max-width: 768px) {
  .ft12_top { gap: 0.501rem 0.759rem; }
  .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"] .mf-btn,
  body [class*="actions-desktop"] .mf-btn,
  body [class*="btns-desktop"] .mf-btn,
  body [class*="cta-wrap"] .mf-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;
}
