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


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

.kz18-root {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--c-bg);
    border-bottom: 1px solid transparent;
    background-clip: padding-box;
  }
  .kz18-root::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(87deg, transparent 0%, var(--c-grad-start) 25%, var(--c-grad-end) 75%, transparent 100%);
    opacity: 0.6;
  }
  .kz18-right {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  @media (max-width: 768px) {
    .kz18-nav { display: none; }
    .kz18-btns-desktop { display: none !important; }
    .kz18-menu-btn { display: flex !important; }
  }
  .kz18-menu-btn { display: none; }
  .kz18-hrel { position: relative; background: transparent; }
  .kz18-mnav { flex-direction: column; align-items: flex-start; padding: 12px 0; }
  .kz18-mrow { padding: 12px 0; border-top: 1px solid var(--c-border); }
  .kz18-mbtn { flex: 1; justify-content: center; }

.ej26-hero {
  position: relative;
  min-height: 476px;
  display: flex;
  align-items: center;
  background: var(--c-bg) center/cover no-repeat;
  overflow: hidden;
}
.ej26-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(88deg,
    rgb(0 0 0 / calc(.95 + var(--hi-offset, 0))) 0%,
    rgb(0 0 0 / calc(.93 + var(--hi-offset, 0))) 28%,
    rgb(0 0 0 / calc(.75 + var(--hi-offset, 0))) 52%,
    transparent 100%);
}
.ej26-content {
  position: relative; z-index: 1;
  max-width: 549px;
  padding: 41px 0;
}
.ej26-title { color: #fff; margin: 0 0 22px; text-shadow: 0 2px 10px rgba(0,0,0,0.417); }
.ej26-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}
.ej26-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.857);
  font-weight: 500;
}
.ej26-check {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--c-accent);
  color: var(--c-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
}
.ej26-cta {
  display: inline-block;
  padding: 13px 34px;
  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;
}
.ej26-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: 768px) {
  .ej26-overlay { background: rgba(0,0,0,0.686); }
}

.sk93-hero {
    background: linear-gradient(138deg, var(--c-bg) 0%, color-mix(in srgb, var(--c-primary) 20%, var(--c-bg)) 50%, color-mix(in srgb, var(--c-accent) 6%, var(--c-bg)) 100%);
    position: relative;
    overflow: hidden;
  }
  .sk93-pattern {
    position: absolute; inset: 0; opacity: 0.03; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 4L44 24L24 44L4 24Z' fill='none' stroke='%23ffffff' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: 47px 48px;
  }
  .sk93-inner {
    display: grid;
    grid-template-columns: 1fr 389px;
    gap: 47px;
    align-items: center;
    padding: 48px 0;
    position: relative;
    z-index: 1;
  }
  .sk93-eyebrow {
    display: inline-block;
    font-size: 0.731rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-accent);
    margin-bottom: 12px;
  }
  .sk93-title { color: var(--c-text); margin-bottom: 16px; }
  .sk93-highlight {
    color: var(--c-accent);
  }
  .sk93-desc {
    font-size: 1.009rem;
    color: var(--c-text-muted);
    line-height: 1.7;
    max-width: 488px;
    margin-bottom: 27px;
  }
  .sk93-btns {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
  }
  .sk93-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 16px; box-shadow: 0 -1px 12px rgba(255,255,255,0.131), 0 0 3px rgba(255,255,255,0.096);
    padding: 33px;
  }
  .sk93-card-title {
    font-size: 1.11rem;
    font-weight: 800;
    color: var(--c-text);
    margin-bottom: 20px;
  }
  .sk93-card-amount {
    font-size: 2.925rem;
    font-weight: 900;
    color: var(--c-accent);
    line-height: 1;
    margin-bottom: 6px;
  }
  .sk93-card-sub {
    font-size: 0.852rem;
    color: var(--c-text-muted);
    margin-bottom: 24px;
  }
  .sk93-checks {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .sk93-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.879rem;
    color: var(--c-text);
    font-weight: 500;
  }
  .sk93-check-icon {
    width: 22px;
    height: 22px;
    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.706rem;
    font-weight: 800;
    flex-shrink: 0;
  }
  @media (max-width: 768px) {
    .sk93-inner { grid-template-columns: 1fr; gap: 32px; padding: 47px 0; }
    .sk93-card { padding: 25px; }
  }

.zf34-wrap { max-width: 967px; margin: 0 auto; }
  .zf34-title { color: var(--c-text); margin: 0 0 22px; }
  .zf34-p { font-size: 15px; line-height: 1.8; color: var(--c-text-muted); margin: 0 0 16px; }
  .zf34-panel {
    position: relative;
    margin: 27px 0;
    border-radius: 18px;
    background:
      linear-gradient(180deg,
        color-mix(in srgb, var(--c-accent) 4%, var(--c-surface)) 0%,
        var(--c-surface) 50%);
    border: 1px solid color-mix(in srgb, var(--c-accent) 28%, var(--c-border));
    box-shadow:
      0 22px 60px -28px color-mix(in srgb, var(--c-accent) 70%, transparent),
      0 0 0 1px color-mix(in srgb, var(--c-accent) 10%, transparent);
    overflow: hidden;
  }
  .zf34-panel::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: linear-gradient(88deg,
      transparent 0%,
      var(--c-accent) 50%,
      transparent 100%);
    opacity: 0.6;
    pointer-events: none;
  }
  .zf34-spec {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
  }
  .zf34-spec th, .zf34-spec td {
    padding: 16px 24px;
    font-size: 14px;
    line-height: 1.55;
    vertical-align: top;
    text-align: left;
  }
  .zf34-spec thead th {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.117em;
    color: var(--c-text);
    padding-top: 16px;
    padding-bottom: 16px;
    background: linear-gradient(137deg,
      color-mix(in srgb, var(--c-accent) 22%, transparent) 0%,
      color-mix(in srgb, var(--c-accent) 8%, transparent) 100%);
    border-bottom: 1px solid color-mix(in srgb, var(--c-accent) 35%, var(--c-border));
  }
  .zf34-spec thead th:first-child {
    color: var(--c-accent);
  }
  .zf34-spec tbody th {
    font-weight: 700;
    color: var(--c-text);
    width: 38%;
    border-left: 3px solid transparent;
    padding-left: 21px;
    transition: border-left-color .25s ease, color .25s ease;
  }
  .zf34-spec tbody td { color: var(--c-text-muted); }
  .zf34-spec tbody tr {
    border-bottom: 1px solid var(--c-border);
    transition: background-color .25s ease;
  }
  .zf34-spec tbody tr:last-child { border-bottom: none; }
  .zf34-spec tbody tr:hover {
    background: linear-gradient(92deg,
      color-mix(in srgb, var(--c-accent) 8%, transparent) 0%,
      color-mix(in srgb, var(--c-accent) 2%, transparent) 100%);
  }
  .zf34-spec tbody tr:hover th {
    border-left-color: var(--c-accent);
    color: var(--c-accent);
  }
  @media (max-width: 640px) {
    .zf34-spec th, .zf34-spec td { padding: 12px 16px; font-size: 13px; }
    .zf34-spec tbody th { padding-left: 13px; width: 42%; }
  }

.mb14-wrap { max-width: 1063px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
  .mb14-intro { max-width: 832px; }
  .mb14-title { color: var(--c-text); margin: 0 0 14px; }
  .mb14-lead { font-size: 15px; line-height: 1.75; color: var(--c-text-muted); margin: 0; }
  .mb14-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 14px; overflow: hidden; border: 1px solid var(--c-border); }
  .mb14-col { padding: 29px 32px; }
  .mb14-col-con { background: var(--c-surface); }
  .mb14-col-pro { background: color-mix(in srgb, var(--c-accent) 6%, var(--c-surface)); border-left: 1px solid color-mix(in srgb, var(--c-accent) 25%, var(--c-border)); }
  .mb14-h3 { font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.141em; margin: 0 0 18px; }
  .mb14-h3-con { color: var(--c-text); }
  .mb14-h3-pro { color: var(--c-accent); }
  .mb14-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
  .mb14-item { display: flex; align-items: flex-start; gap: 11px; font-size: 14px; line-height: 1.6; color: var(--c-text-muted); }
  .mb14-sym { flex-shrink: 0; width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; }
  .mb14-sym-pro { color: var(--c-accent); }
  .mb14-sym-con { color: var(--c-text); opacity: 0.55; }
  .mb14-sym svg { width: 16px; height: 16px; }
  @media (max-width: 768px) { .mb14-row { grid-template-columns: 1fr; } .mb14-col-pro { border-left: none; border-top: 1px solid color-mix(in srgb, var(--c-accent) 25%, var(--c-border)); } }

.nf95-wrap { max-width: 881px; margin: 0 auto; }
  .nf95-title { color: var(--c-text); margin: 0 0 18px; }
  .nf95-intro { font-size: 15px; line-height: 1.85; color: var(--c-text-muted); margin: 0 0 22px; }
  .nf95-sec { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 12px; padding: 22px 26px; margin-bottom: 14px; }
  .nf95-sec:last-child { margin-bottom: 0; }
  .nf95-sh3 { color: var(--c-text); margin: 0 0 10px; font-size: 1.07rem; }
  .nf95-sp { font-size: 14px; line-height: 1.8; color: var(--c-text-muted); margin: 0 0 10px; }
  .nf95-sp:last-child { margin-bottom: 0; }

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

  .fc39-panel {
    border-radius: 16px;
    padding: 25px 26px 28px;
    margin-bottom: 18px;
    background: linear-gradient(133deg,
      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 -28px color-mix(in srgb, var(--c-accent) 35%, transparent);
    color: #fff;
  }
  .fc39-panel:last-of-type { margin-bottom: 0; }

  .fc39-h3 { color: #fff; font-size: 18px; font-weight: 800; line-height: 1.3; margin: 0 0 10px; text-align: center; letter-spacing: -0.005em; }
  .fc39-h3-lead { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.784); text-align: center; margin: 0 auto 23px; max-width: 583px; }
  .fc39-h3-foot { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.749); text-align: center; margin: 22px auto 0; max-width: 572px; }

  .fc39-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; counter-reset: fc39-step; }
  .fc39-step {
    counter-increment: fc39-step;
    display: flex; align-items: center; gap: 14px;
    padding: 12px 18px 12px 12px;
    border-radius: 975px;
    background: rgba(255,255,255,0.076);
    border: 1px solid rgba(255,255,255,0.056);
  }
  .fc39-step::before {
    content: counter(fc39-step);
    flex: 0 0 41px; height: 41px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--c-accent);
    color: var(--c-bg);
    font-size: 17px; font-weight: 800;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--c-accent) 22%, transparent);
  }
  .fc39-step-text {
    flex: 1; color: rgba(255,255,255,0.893);
    font-size: 13px; line-height: 1.5; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.039em;
  }

  .fc39-cta-wrap { margin-top: 24px; }
  .fc39-cta {
    display: inline-block; padding: 12px 30px; border-radius: 1008px;
    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;
  }
  .fc39-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) {
    .fc39-outer { padding: 22px 18px; border-radius: 14px; }
    .fc39-panel { padding: 20px 16px; border-radius: 12px; }
    .fc39-h3 { font-size: 16px; }
    .fc39-step::before { flex-basis: 35px; height: 35px; font-size: 14px; }
    .fc39-step-text { font-size: 11px; }
  }

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

.ve54-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 376px;
  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.12);
  box-shadow: 0 14px 44px rgba(0,0,0,0.445);
  display: flex;
  align-items: flex-end;
}
.ve54-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.ve54-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.219) 35%, rgba(0,0,0,0.75) 75%, rgba(0,0,0,0.928) 100%);
  z-index: 1;
}
.ve54-content {
  position: relative; z-index: 2;
  padding: 36px 43px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.ve54-text { max-width: 700px; }
.ve54-eyebrow {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 971px;
  background: color-mix(in srgb, var(--c-accent, #f59e0b) 22%, transparent);
  color: var(--c-accent, #f59e0b);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.122em;
  text-transform: uppercase;
  margin-bottom: 10px;
  border: 1px solid color-mix(in srgb, var(--c-accent, #f59e0b) 40%, transparent);
}
.ve54-title {
  font-size: 28px;
  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.46);
}
.ve54-amount {
  font-size: 15px;
  color: rgba(255,255,255,0.801);
  line-height: 1.5;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.376);
}
.ve54-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 31px;
  border-radius: 974px;
  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.363);
  transition: box-shadow .25s ease, filter .18s;
}
.ve54-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);
}
.ve54-cta::after {
  content: '→';
  font-size: 16px;
}
@media (max-width: 768px) {
  .ve54-card { min-height: 347px; }
  .ve54-content {
    padding: 23px 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .ve54-title { font-size: 22px; }
}

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

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

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

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

  .ld65-panel {
    border-radius: 14px; padding: 22px 23px 25px;
    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);
    box-shadow: 0 18px 52px -28px color-mix(in srgb, var(--c-accent) 35%, transparent);
    color: #fff; margin: 0 0 22px;
  }
  .ld65-panel-h3 { color: #fff; font-size: 17px; font-weight: 800; line-height: 1.3; margin: 0 0 8px; }
  .ld65-panel-lead { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.731); margin: 0 0 16px; }
  .ld65-panel-foot { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.829); margin: 16px 0 0; }

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

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

  .ld65-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;
  }
  .ld65-table th, .ld65-table td { padding: 14px 19px; font-size: 13px; line-height: 1.45; text-align: left; vertical-align: top; }
  .ld65-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;
  }
  .ld65-table tbody td { color: var(--c-text-muted); border-bottom: 1px solid color-mix(in srgb, var(--c-text) 6%, transparent); }
  .ld65-table tbody tr:last-child td { border-bottom: none; }
  .ld65-table tbody tr:nth-child(even) td { background: color-mix(in srgb, var(--c-text) 3%, transparent); }
  .ld65-table tbody tr:hover td { background: color-mix(in srgb, var(--c-accent) 7%, transparent); }

  .ld65-cta-wrap { margin-top: 18px; }
  .ld65-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.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;
  }
  .ld65-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 27px -8px color-mix(in srgb, var(--c-accent) 80%, transparent);
  }

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

.cb60-wrap { max-width: 1116px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
  .cb60-intro { max-width: 819px; }
  .cb60-title { color: var(--c-text); margin: 0 0 14px; }
  .cb60-lead { font-size: 16px; line-height: 1.75; color: var(--c-text-muted); margin: 0; }
  .cb60-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  .cb60-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 14px; padding: 26px 29px; }
  .cb60-tag { display: inline-block; font-size: 0.65rem; font-weight: 800; color: var(--c-accent); text-transform: uppercase; letter-spacing: 0.142em; margin-bottom: 10px; }
  .cb60-h3 { color: var(--c-text); margin: 0 0 12px; font-size: 1.031rem; font-weight: 700; }
  .cb60-p { font-size: 15px; line-height: 1.8; color: var(--c-text-muted); margin: 0; }
  @media (max-width: 880px) { .cb60-row { grid-template-columns: 1fr; } }

.sy63-section { padding: 40px 0; }
.sy63-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 24px; }
.sy63-card { border: 1px solid var(--c-border); border-radius: var(--radius); overflow: hidden; cursor: default; transition: all .3s ease; }
.sy63-card:hover { transform: translateY(-4px); box-shadow: inset 0 -3px 0 var(--c-accent), 0 8px 20px rgba(0,0,0,0.271); }
.sy63-thumb { aspect-ratio: 4/3; background: linear-gradient(136deg, var(--card-bg1, var(--c-primary)), var(--card-bg2, var(--c-secondary))); display: flex; align-items: center; justify-content: center; }
.sy63-emoji { font-size: 43px; }
@media (max-width: 768px) { .sy63-grid { grid-template-columns: repeat(2, 1fr); } }

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

.kq31-wrap { max-width: 1149px; margin: 0 auto; }
  .kq31-intro { max-width: 743px; margin-bottom: 22px; }
  .kq31-title { color: var(--c-text); margin: 0 0 10px; }
  .kq31-lead { font-size: 14px; line-height: 1.7; color: var(--c-text-muted); margin: 0; }
  .kq31-grid { display: grid; grid-template-columns: repeat(6, 1fr); column-gap: 4px; row-gap: 4px; }
  .kq31-grid .kh-mb-prov-tile { aspect-ratio: 16 / 9; background: color-mix(in oklab, var(--c-accent) 7%, var(--c-bg)); border: 1px solid color-mix(in oklab, var(--c-accent) 18%, var(--c-surface)); border-radius: 8px; display: flex; align-items: center; justify-content: center; padding: 4px; transition: background 0.18s; }
  .kq31-grid .kh-mb-prov-tile:hover { background: color-mix(in srgb, var(--c-accent) 8%, var(--c-bg)); }
  .kq31-grid .kh-mb-prov-img { max-width: 97%; max-height: 94%; object-fit: contain; filter: brightness(0.95); transition: filter 0.175s; }
  .kq31-grid .kh-mb-prov-tile:hover .kh-mb-prov-img { filter: brightness(1.1); }
  @media (max-width: 1000px) { .kq31-grid { grid-template-columns: repeat(4, 1fr); } }
  @media (max-width: 600px) { .kq31-grid { grid-template-columns: repeat(3, 1fr); } }

.zq68-wrap { max-width: 1087px; margin: 0 auto; }
  .zq68-intro { max-width: 764px; margin-bottom: 21px; }
  .zq68-title { color: var(--c-text); margin: 0 0 12px; }
  .zq68-lead { font-size: 15px; line-height: 1.7; color: var(--c-text-muted); margin: 0; }
  .zq68-scroll { overflow-x: auto; border-radius: 14px; box-shadow: 0 6px 28px -12px color-mix(in srgb, var(--c-accent) 35%, transparent); border: 1px solid color-mix(in srgb, var(--c-accent) 20%, var(--c-border)); }
  .zq68-table { width: 100%; min-width: 700px; border-collapse: separate; border-spacing: 0; background: var(--c-surface); }
  .zq68-table thead th { background: linear-gradient(135deg, 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.692rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.122em; border-bottom: 1px solid color-mix(in srgb, var(--c-accent) 40%, transparent); }
  .zq68-table thead th:first-child { padding-left: 22px; }
  .zq68-table tbody td { padding: 16px 20px; font-size: 14px; line-height: 1.5; color: var(--c-text-muted); border-bottom: 1px solid var(--c-border); }
  .zq68-table tbody tr:last-child td { border-bottom: none; }
  .zq68-table tbody tr:hover { background: color-mix(in srgb, var(--c-accent) 5%, transparent); }
  .zq68-table tbody td:first-child { color: var(--c-text); font-weight: 700; border-left: 3px solid transparent; padding-left: 19px; }
  .zq68-table tbody tr:hover td:first-child { border-left-color: var(--c-accent); }

.xq82-wrap { max-width: 804px; margin: 0 auto; }
  .xq82-eyebrow { font-size: 0.727rem; font-weight: 700; color: var(--c-accent); text-transform: uppercase; letter-spacing: 0.158em; margin-bottom: 10px; }
  .xq82-title { color: var(--c-text); margin: 0 0 20px; }
  .xq82-p { font-size: 15px; line-height: 1.85; color: var(--c-text-muted); margin: 0 0 16px; }
  .xq82-p:last-child { margin-bottom: 0; }

.la77-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 347px;
  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.084);
  box-shadow: 0 18px 49px rgba(0,0,0,0.376);
  display: flex;
  align-items: center;
  justify-content: center;
}
.la77-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.la77-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(179deg, rgba(0,0,0,0.415) 0%, rgba(0,0,0,0.676) 100%);
  z-index: 1;
}
.la77-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 49px 28px;
  max-width: 740px;
}
.la77-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin: 0 0 14px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.502);
  letter-spacing: -0.01em;
}
.la77-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.879);
  line-height: 1.55;
  margin: 0 0 27px;
  max-width: 542px;
  margin-left: auto; margin-right: auto;
  text-shadow: 0 1px 8px rgba(0,0,0,0.432);
}
.la77-cta-row {
  display: flex; gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
/* Variant 01 signature: clean white pills (full radius) with soft white halo on hover */
.la77-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 988px;
  background: #ffffff;
  color: var(--c-bg);
  font-size: 13px; font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.099);
  box-shadow: 0 4px 14px rgba(0,0,0,0.179);
  transition: box-shadow .25s ease;
}
.la77-cta:hover {
  box-shadow:
    0 0 0 4px rgba(255,255,255,0.127),
    0 8px 21px rgba(255,255,255,0.22),
    0 4px 14px rgba(0,0,0,0.242);
}
.la77-cta svg { flex-shrink: 0; }
@media (max-width: 768px) {
  .la77-card { min-height: 280px; }
  .la77-content { padding: 36px 20px; }
  .la77-title { font-size: 24px; }
  .la77-cta { padding: 11px 17px; font-size: 12px; }
}

.lm79-header { text-align: center; margin-bottom: 1.995rem; }
  .lm79-scroll-wrap { overflow-x: auto; padding-bottom: 0.978rem; cursor: grab; }
  .lm79-scroll-wrap::-webkit-scrollbar { height: 4px; }
  .lm79-scroll-wrap::-webkit-scrollbar-track { background: var(--c-border); border-radius: 2px; }
  .lm79-scroll-wrap::-webkit-scrollbar-thumb { background: var(--c-accent); border-radius: 2px; }
  .lm79-track { display: flex; gap: 1.253rem; width: max-content; padding: 0.255rem 0; }
  .lm79-card { width: 293px; background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 12px; padding: 1.532rem; display: flex; flex-direction: column; gap: 0.862rem; flex-shrink: 0; transition: transform 0.2s, border-color 0.194s; }
  .lm79-card:hover { transform: translateY(-4px); border-color: var(--c-accent); }
  .lm79-top { display: flex; align-items: center; justify-content: space-between; }
  .lm79-avatar { width: 45px; height: 44px; 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.795rem; color: var(--c-accent); }
  .lm79-stars { color: #f59e0b; font-size: 0.963rem; }
  .lm79-name { font-weight: 700; font-size: 0.866rem; color: var(--c-text); }
  .lm79-role { font-size: 0.691rem; color: var(--c-text-muted); }
  .lm79-text { font-size: 0.888rem; color: var(--c-text-muted); line-height: 1.6; flex: 1; }
  .lm79-bottom { display: flex; align-items: center; justify-content: space-between; }
  .lm79-date { font-size: 0.715rem; color: var(--c-text-muted); }
  .lm79-platform { font-size: 0.693rem; color: var(--c-accent); font-weight: 600; }
  .lm79-scroll-hint { text-align: center; margin-top: 0.996rem; font-size: 0.767rem; color: var(--c-text-muted); }
  .lm79-s1 { display: flex; align-items: center; gap: 10px; }
  .lm79-s2 { background: color-mix(in srgb,#60a5fa 15%,var(--c-surface)); color: #60a5fa; }
  .lm79-s3 { border-color: color-mix(in srgb,var(--c-accent) 40%,transparent); }
  .lm79-s4 { background: color-mix(in srgb,#f59e0b 15%,var(--c-surface)); color: #f59e0b; }
  .lm79-s5 { background: color-mix(in srgb,#ec4899 15%,var(--c-surface)); color: #ec4899; }
  .lm79-s6 { background: color-mix(in srgb,#10b981 15%,var(--c-surface)); color: #10b981; }
  .lm79-s7 { background: color-mix(in srgb,#8b5cf6 15%,var(--c-surface)); color: #8b5cf6; }
  .lm79-s8 { background: color-mix(in srgb,#06b6d4 15%,var(--c-surface)); color: #06b6d4; }

.qq78-wrap { max-width: 960px; margin: 0 auto; }
  .qq78-outer {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 18px;
    padding: 27px 29px 30px;
    box-shadow: 0 16px 43px -22px rgba(0,0,0,0.347);
  }
  .qq78-title { color: var(--c-text); margin: 0 0 14px; }
  .qq78-intro { font-size: 14px; line-height: 1.7; color: var(--c-text-muted); margin: 0 0 18px; }

  .qq78-cards { display: grid; grid-template-columns: 1fr; gap: 14px; margin: 0 0 18px; }
  .qq78-card {
    border-radius: 12px;
    padding: 22px 25px 24px;
    background: linear-gradient(132deg,
      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 35px -21px color-mix(in srgb, var(--c-accent) 50%, transparent);
    color: #fff;
  }
  .qq78-eyebrow { color: var(--c-accent); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.142em; margin: 0 0 6px; }
  .qq78-card-h3 { color: #fff; font-size: 16px; font-weight: 800; line-height: 1.3; margin: 0 0 12px; }
  .qq78-card-p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.85); margin: 0; font-weight: 500; }

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

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

.ui10-header { text-align: center; }
.ui10-title { margin-top: 8px; }
.ui10-lead { margin-top: 10px; max-width: 549px; margin-left: auto; margin-right: auto; }
.ui10-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 35px; max-width: 913px; margin-left: auto; margin-right: auto; align-items: start; }
.ui10-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-left: 3px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.ui10-item:hover { border-left-color: color-mix(in srgb, var(--c-accent) 50%, transparent); }
.ui10-item.kh-faq-open {
  border-left-color: var(--c-accent);
  box-shadow: 0 0 16px color-mix(in srgb, var(--c-accent) 5%, transparent);
}
.ui10-q {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; cursor: pointer; list-style: none; user-select: none;
}
.ui10-q::-webkit-details-marker { display: none; }
.ui10-qtext { flex: 1; font-size: 14px; font-weight: 600; color: var(--c-text); line-height: 1.4; }
.ui10-plus {
  width: 18px; height: 18px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-text-muted); font-size: 16px; font-weight: 300;
  transition: transform .2s, color .2s;
}
.ui10-item.kh-faq-open .ui10-plus { transform: rotate(44deg); color: var(--c-accent); }
.ui10-body {
  padding: 12px 18px 16px 18px; font-size: 13px; line-height: 1.7;
  color: var(--c-text-muted); border-top: 1px solid var(--c-border);
}
.ui10-cta {
  margin-top: 28px; max-width: 873px; margin-left: auto; margin-right: auto;
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: 10px; padding: 19px 23px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.ui10-cta-text { font-size: 14px; font-weight: 600; color: var(--c-text); }
.ui10-cta-sub { font-size: 12px; color: var(--c-text-muted); margin-top: 2px; }
@media (max-width: 640px) { .ui10-grid { grid-template-columns: 1fr; } }

/* Already the slimmest of the family — just tighten the section
     padding (kh-section-sm was 48px each side = 96px of vertical
     whitespace on top of an already 51px-tall row) and drop tile
     height a notch to land near ~38px total row height. */
  .pv65-root { background: var(--c-surface); border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); padding: 14px 0; }
  .pv65-wrap { max-width: 1104px; margin: 0 auto; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: space-between; }
  .pv65-label { font-size: 0.713rem; font-weight: 700; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.142em; flex-shrink: 0; }
  .pv65-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; flex: 1; min-width: 0; }
  .pv65-row .kh-mb-trust-tile { height: 38px; display: flex; align-items: center; justify-content: center; padding: 4px 10px; }
  .pv65-row .kh-mb-trust-img { max-width: 85%; max-height: 100%; object-fit: contain; opacity: 0.85; transition: opacity 0.15s; }
  .pv65-row .kh-mb-trust-tile:hover .kh-mb-trust-img { opacity: 1; }
  @media (max-width: 768px) { .pv65-row { grid-template-columns: repeat(3, 1fr); } .pv65-wrap { justify-content: center; } }

/* ── Layout contract ───────────────────────────────────────────────
     Two rows:
       Row 1 (top) — [logo] [nav + extra links] [compact payments → right]
       Row 2 (bottom) — [© brand · play responsibly · 18+] centred
     Payments live in row 1 and push to the right via `margin-left:auto`
     so the logo anchors the left, the nav fills the middle, and the
     payment strip caps the row on the right. Bottom row is pure
     compliance/brand copy — small + centred. */
  .sd14-root { background: var(--c-bg); }
  .sd14-top {
    display: flex; align-items: center;
    gap: 10px 20px; flex-wrap: wrap;
    padding: 14px 0;
    min-height: 45px;
  }
  .sd14-nav { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; flex: 1 1 auto; min-width: 0; }
  /* `:empty` hides the nav when a landing (single-page) site produced
     no FOOTER_NAV_LINKS / FOOTER_EXTRA_LINKS output — avoids the ugly
     centred gap between logo and payments. */
  .sd14-nav:empty { display: none; }
  .sd14-nav a { font-size: 0.832rem; color: var(--c-text-muted); text-decoration: none; transition: color 0.197s; }
  .sd14-nav a:hover { color: var(--c-accent); }

  /* Compact payments pinned to the right edge of the top row. Same
     sizing recipe as footer_12 so the two dense variants look like
     siblings: 20 px tall icon, 4/8 padding, 50 px max-width. Scoped
     override of .kh-pay-logo. */
  .sd14-pay { display: flex; flex-wrap: wrap; align-items: center; gap: 5px; margin-left: auto; }
  .sd14-pay:empty { display: none; }
  .sd14-pay .kh-pay-logo {
    height: 20px;
    max-width: 51px;
    padding: 4px 8px;
    border-radius: 5px;
  }

  .sd14-bottom {
    display: flex; align-items: center; justify-content: center;
    gap: 10px 22px; flex-wrap: wrap;
    padding: 10px 0;
    border-top: 1px solid var(--c-border);
    font-size: 0.781rem; color: var(--c-text-muted);
  }
  .sd14-copy { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; }

  @media (max-width: 768px) {
    .sd14-pay { margin-left: 0; width: 100%; justify-content: flex-start; }
  }
  @media (max-width: 600px) {
    .sd14-top { flex-direction: column; align-items: flex-start; gap: 10px; }
    .sd14-nav { flex: 1 1 100%; }
    .sd14-pay { justify-content: flex-start; }
  }

/* ── 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"] .kh-btn,
  body [class*="actions-desktop"] .kh-btn,
  body [class*="btns-desktop"] .kh-btn,
  body [class*="cta-wrap"] .kh-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;
  }
}
