@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&display=swap');
:root {
  --c-primary: #0c0c0c;
  --c-secondary: #151515;
  --c-accent: #e62e00;
  --c-bg: #161f27;
  --c-surface: #2b2222;
  --c-text: #eee4af;
  --c-text-muted: #e0bc0b;
  --c-btn: #f2be02;
  --c-btn-text: #fbfbf4;
  --c-border: #262121;
  --c-grad-start: #0c0c0c;
  --c-grad-end: #221a1a;
  --c-logo-text: #ffffff;
}
.nk-logo-text { color: var(--c-logo-text) !important; font-size: 28px !important; font-family: 'Black Ops One', sans-serif !important; }
[class*="_logo"] { font-family: 'Black Ops One', sans-serif !important; color: #ffffff !important; }


/* ─── Logo Icon ─── */
.nk-logo-icon {
  border-radius: 8px !important;
  font-size: 15px !important;
  font-family: 'Black Ops One', sans-serif !important;
}

.h15_root {
    background: var(--c-primary);
    border-top: 3px solid var(--c-accent);
    border-bottom: 1px solid color-mix(in srgb, var(--c-text) 8%, transparent);
    position: relative;
    top: auto;
    z-index: auto;
  }
  .h15_sroot { position: sticky; top: 0; z-index: 100; }
  .h15_cta-desktop { display: flex; align-items: center; gap: 8px; }
  .h15_mnav { flex-direction: column; align-items: flex-start; padding: 12px 0; }
  .h15_mrow { padding: 12px 0; border-top: 1px solid var(--c-border); display: flex; gap: 8px; }
  .h15_mbtn { flex: 1; justify-content: center; }
  .h15_nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
  }
  .h15_nav a {
    color: color-mix(in srgb, var(--c-text) 75%, transparent);
    text-decoration: none;
    font-size: 0.881rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 6px;
    transition: background 0.147s, color 0.149s;
  }
  .h15_nav a:hover {
    background: color-mix(in srgb, var(--c-text) 7%, transparent);
    color: var(--c-text);
  }
  .h15_cta {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .h15_menu-btn {
    display: none;
    background: transparent;
    border: 1px solid color-mix(in srgb, var(--c-text) 20%, transparent);
    color: var(--c-text);
    width: 38px;
    height: 38px;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  @media (max-width: 768px) {
    .h15_nav { display: none; }
    .h15_cta-desktop { display: none !important; }
    .h15_menu-btn { display: flex !important; }
  }

.ws38-hero {
  position: relative;
  min-height: 483px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-bg) center/cover no-repeat;
  overflow: hidden;
}
.ws38-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(175deg,
    rgb(0 0 0 / calc(.5 + var(--hi-offset, 0))) 0%,
    rgb(0 0 0 / calc(.62 + var(--hi-offset, 0))) 100%);
}
.ws38-content {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 683px;
  padding: 41px 24px;
}
.ws38-title { color: #fff; margin: 0 0 16px; text-shadow: 0 2px 12px rgba(0,0,0,0.444); }
.ws38-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.776);
  line-height: 1.6;
  margin: 0 0 28px;
}
.ws38-cta {
  display: inline-block;
  padding: 14px 37px;
  background: var(--c-accent);
  color: var(--c-bg);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: filter .2s, box-shadow .2s;
}
.ws38-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) { .ws38-hero { min-height: 371px; } }

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

.gf27-wrap { max-width: 995px; margin: 0 auto; }
  .gf27-outer {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 19px;
    padding: 28px 29px 30px;
    box-shadow: 0 16px 44px -22px rgba(0,0,0,0.267);
  }
  .gf27-title { color: var(--c-text); margin: 0 0 12px; }
  .gf27-intro { font-size: 15px; line-height: 1.7; color: var(--c-text-muted); margin: 0 0 18px; }

  .gf27-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 0 0 18px; }
  .gf27-card {
    border-radius: 12px;
    padding: 18px 20px 20px;
    background: linear-gradient(177deg,
      color-mix(in srgb, var(--c-accent) 12%, var(--c-bg)) 0%,
      var(--c-bg) 100%);
    color: #fff;
  }
  .gf27-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.061em; }
  .gf27-card-p { font-size: 13px; line-height: 1.55; color: rgba(255,255,255,0.834); margin: 0; }

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

  .gf27-panel {
    border-radius: 14px; padding: 22px 24px 23px;
    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 51px -27px color-mix(in srgb, var(--c-accent) 35%, transparent);
    color: #fff; margin: 0 0 22px;
  }
  .gf27-panel-h3 { color: #fff; font-size: 17px; font-weight: 800; line-height: 1.3; margin: 0 0 8px; }
  .gf27-panel-lead { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.764); margin: 0 0 16px; }
  .gf27-panel-foot { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.751); margin: 16px 0 0; }

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

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

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

  .gf27-cta-wrap { margin-top: 18px; }
  .gf27-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.103em;
    box-shadow: 0 8px 23px -8px color-mix(in srgb, var(--c-accent) 75%, transparent);
    transition: transform .18s ease, box-shadow .25s ease, filter .18s;
  }
  .gf27-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) {
    .gf27-cards { grid-template-columns: 1fr; }
    .gf27-bullets { grid-template-columns: 1fr; }
    .gf27-table th, .gf27-table td { padding: 11px 12px; font-size: 12px; }
  }
  @media (max-width: 640px) {
    .gf27-outer { padding: 21px 18px; border-radius: 14px; }
    .gf27-panel { padding: 19px 16px; border-radius: 12px; }
  }

.ka41-wrap { max-width: 885px; margin: 0 auto; padding-bottom: 27px; border-bottom: 1px solid var(--c-border); }
  .ka41-title { color: var(--c-text); margin: 0 0 22px; text-align: center; }
  .ka41-p { font-size: 15px; line-height: 1.85; color: var(--c-text-muted); margin: 0 0 16px; }
  .ka41-p:last-child { margin-bottom: 0; }

.xc12-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 370px;
  background: linear-gradient(132deg,
    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.059);
  box-shadow: 0 16px 51px rgba(0,0,0,0.472);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px;
}
.xc12-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.xc12-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(88deg, rgba(0,0,0,0.502) 0%, rgba(0,0,0,0.131) 55%, rgba(0,0,0,0) 100%);
  z-index: 1;
}
.xc12-glass {
  position: relative;
  z-index: 2;
  max-width: 453px;
  padding: 32px 31px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--c-primary, #1e3a8a) 70%, rgba(0,0,0,0.406));
  border: 1px solid rgba(255,255,255,0.142);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 12px 35px rgba(0,0,0,0.394);
}
.xc12-title {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.xc12-amount {
  font-size: 15px;
  color: rgba(255,255,255,0.752);
  line-height: 1.5;
  margin: 0 0 24px;
}
.xc12-cta {
  display: inline-block;
  padding: 13px 36px;
  border-radius: 985px;
  background: var(--c-accent, #3b82f6);
  color: var(--c-bg, #fff);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.298);
  transition: box-shadow .25s ease, filter .18s;
}
.xc12-cta:hover {
  filter: brightness(1.06);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--c-accent, #3b82f6) 22%, transparent),
    0 10px 28px color-mix(in srgb, var(--c-accent, #3b82f6) 38%, transparent);
}
@media (max-width: 768px) {
  .xc12-card {
    min-height: 342px;
    padding: 25px;
    justify-content: center;
  }
  .xc12-overlay {
    background: linear-gradient(185deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.748) 100%);
  }
  .xc12-glass { padding: 25px 22px; max-width: 100%; }
  .xc12-title { font-size: 22px; }
}

.hu25-wrap { max-width: 936px; margin: 0 auto; }
  .hu25-title { color: var(--c-text); margin: 0 0 24px; }
  .hu25-cols { column-count: 2; column-gap: 48px; }
  .hu25-p { font-size: 15px; line-height: 1.8; color: var(--c-text-muted); margin: 0 0 14px; break-inside: avoid; }
  .hu25-p:last-child { margin-bottom: 0; }
  @media (max-width: 768px) { .hu25-cols { column-count: 1; } }

.zm84-wrap { max-width: 1097px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
  .zm84-intro { max-width: 809px; }
  .zm84-title { color: var(--c-text); margin: 0 0 14px; }
  .zm84-lead { font-size: 15px; line-height: 1.75; color: var(--c-text-muted); margin: 0; }
  .zm84-row { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; }
  .zm84-col-h { font-size: 0.693rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.162em; margin: 0 0 14px; }
  .zm84-col-h-pro { color: var(--c-accent); }
  .zm84-col-h-con { color: var(--c-text); }
  .zm84-stack { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
  .zm84-pill { display: flex; align-items: flex-start; gap: 10px; padding: 12px 16px; border-radius: 990px; font-size: 14px; line-height: 1.45; }
  .zm84-pill-pro { background: color-mix(in srgb, var(--c-accent) 14%, var(--c-surface)); color: var(--c-text); border: 1px solid color-mix(in srgb, var(--c-accent) 30%, transparent); }
  .zm84-pill-con { background: var(--c-surface); color: var(--c-text-muted); border: 1px dashed color-mix(in srgb, var(--c-text-muted) 30%, var(--c-border)); }
  .zm84-pill svg { flex-shrink: 0; width: 16px; height: 16px; margin-top: 1px; }
  .zm84-pill-pro svg { color: var(--c-accent); }
  .zm84-pill-con svg { color: var(--c-text-muted); }
  @media (max-width: 768px) { .zm84-row { grid-template-columns: 1fr; gap: 24px; } }

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

.lp82-card {
  position: relative;
  border-radius: 27px;
  overflow: hidden;
  min-height: 352px;
  background: linear-gradient(138deg,
    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.074);
  box-shadow: 0 18px 51px rgba(0,0,0,0.443);
  display: flex;
  align-items: center;
}
.lp82-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.lp82-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(89deg, rgba(0,0,0,0.888) 0%, rgba(0,0,0,0.655) 35%, rgba(0,0,0,0.161) 70%, rgba(0,0,0,0.0) 100%);
  z-index: 1;
}
.lp82-content {
  position: relative; z-index: 2;
  padding: 47px 50px;
  max-width: 621px;
}
.lp82-title {
  font-size: 39px;
  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.527);
}
.lp82-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.836);
  line-height: 1.55;
  margin: 0 0 29px;
  max-width: 481px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.414);
}
.lp82-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. */
.lp82-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.039em;
  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.318);
}
.lp82-cta:hover {
  filter: brightness(1.04);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--c-accent, #f59e0b) 22%, transparent),
    0 10px 27px color-mix(in srgb, var(--c-accent, #f59e0b) 38%, transparent),
    0 6px 18px rgba(0,0,0,0.344);
}
.lp82-cta svg { flex-shrink: 0; }
@media (max-width: 768px) {
  .lp82-card { min-height: 316px; }
  .lp82-overlay {
    background: linear-gradient(178deg, rgba(0,0,0,0.482) 0%, rgba(0,0,0,0.859) 100%);
  }
  .lp82-content { padding: 33px 25px; max-width: 100%; }
  .lp82-title { font-size: 26px; }
  .lp82-cta-row { flex-wrap: wrap; }
  .lp82-cta { padding: 13px 16px; font-size: 12px; }
}

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

.qz26-wrap { max-width: 843px; margin: 0 auto; }
.qz26-list { display: flex; flex-direction: column; gap: 10px; margin-top: 39px; }
.qz26-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;
}
.qz26-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);
}
.qz26-item.nk-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);
}
.qz26-q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.qz26-q::-webkit-details-marker { display: none; }
.qz26-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.039em;
  transition: color .2s;
  line-height: 1;
}
.qz26-item.nk-faq-open .qz26-num,
.qz26-item:hover .qz26-num { color: var(--c-accent); }
.qz26-qtext {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.4;
}
.qz26-chevron {
  width: 23px; height: 24px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-text-muted);
  transition: transform .25s;
}
.qz26-item.nk-faq-open .qz26-chevron { transform: rotate(183deg); color: var(--c-accent); }
.qz26-body {
  padding: 0 24px 22px 69px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-text-muted);
  border-top: 1px solid var(--c-border);
  padding-top: 18px;
}
.qz26-body a { color: var(--c-accent); }
.qz26-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: 25px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.qz26-cta-text { font-size: 15px; font-weight: 600; color: var(--c-text); }
.qz26-cta-sub { font-size: 13px; color: var(--c-text-muted); margin-top: 3px; }
.qz26-header { text-align: center; }
.qz26-title { margin-top: 8px; }
.qz26-lead { margin-top: 10px; max-width: 548px; margin-left: auto; margin-right: auto; }

.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.491rem 1.241rem; 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.791rem; text-decoration: none; padding: 0.253rem 0.745rem; border-right: 1px solid var(--c-border); transition: color 0.198s; 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 .nk-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 .nk-pay-logo {
  height: 20px;
  max-width: 50px;
  padding: 4px 8px;
  border-radius: 5px;
}

.ft12_badge_row { display: flex; gap: 0.506rem; 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.713rem; display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; }

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