/* =====================================================================
   CHECKPLATE — main stylesheet
   Blend: corporate-trust (skeleton) + arabic-modern (accent geometry)
   Palette (locked): #4e4f61 · #9ea3ae · #fefefe  + #f5f7fa neutral
   Class-prefix: ck-
   ===================================================================== */

/* ---------- 1. Tokens ------------------------------------------------ */
:root {
  --ck-navy:       #4e4f61;
  --ck-navy-ink:   #383948;
  --ck-mute:       #9ea3ae;
  --ck-mute-soft:  #c8ccd2;
  --ck-bg:         #fefefe;
  --ck-bg-soft:    #f5f7fa;
  --ck-bg-shade:   #eef0f4;
  --ck-text:       #2a2b35;
  --ck-text-soft:  #5a5d6a;
  --ck-line:       #d8dbe1;
  --ck-line-soft:  #ebedf1;
  --ck-success:    #2c6e49;
  --ck-danger:     #9c2c2c;
  --ck-shadow:     0 12px 30px -22px rgba(78, 79, 97, .28);

  --ck-radius-sm:  6px;
  --ck-radius:     10px;
  --ck-radius-lg:  16px;

  --ck-font-text:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ck-font-head:  "Inter", "Inter Tight", system-ui, sans-serif;
  --ck-font-mono:  "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --ck-font-ar:    "Tajawal", "Noto Sans Arabic", "Inter", system-ui, sans-serif;

  --ck-wrap:       1180px;
  --ck-gut:        24px;

  --ck-ease:       cubic-bezier(.2, .8, .2, 1);
}

/* ---------- 2. Reset / base ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ck-font-text);
  font-size: 16px;
  line-height: 1.62;
  color: var(--ck-text);
  background: var(--ck-bg);
  font-feature-settings: "ss01", "cv01", "tnum";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.ck-noscroll { overflow: hidden; }
:where(html[lang="ar"]) body { font-family: var(--ck-font-ar); }

img { max-width: 100%; height: auto; display: block; }
button { font: inherit; }
a { color: var(--ck-navy); text-decoration: none; }
a:hover { color: var(--ck-navy-ink); text-decoration: underline; text-underline-offset: 3px; }
hr { border: 0; border-top: 1px solid var(--ck-line-soft); margin: 32px 0; }

.ck-sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- 3. Layout helpers --------------------------------------- */
.ck-wrap { width: 100%; max-width: var(--ck-wrap); margin: 0 auto; padding: 0 var(--ck-gut); }
.ck-section { padding: 80px 0; }
.ck-section--soft { background: var(--ck-bg-soft); }
.ck-section--ink  { background: var(--ck-navy); color: #fff; }
.ck-section--tight { padding: 44px 0; }

/* arabic-modern accent: thin geometric divider used between major sections */
.ck-divider {
  height: 12px;
  background-image: linear-gradient(135deg, var(--ck-navy) 25%, transparent 25%) -7px 0,
                    linear-gradient(225deg, var(--ck-navy) 25%, transparent 25%) -7px 0;
  background-size: 14px 14px;
  background-repeat: repeat-x;
  opacity: .08;
}

/* ---------- 4. Typography ------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--ck-font-head); font-weight: 700; letter-spacing: -.012em; color: var(--ck-text); margin: 0 0 .4em; line-height: 1.18; }
:where(html[lang="ar"]) h1, :where(html[lang="ar"]) h2, :where(html[lang="ar"]) h3, :where(html[lang="ar"]) h4 { font-family: var(--ck-font-ar); letter-spacing: 0; line-height: 1.32; }

.ck-h1 { font-size: clamp(34px, 4.6vw, 54px); }
.ck-h2 { font-size: clamp(24px, 2.8vw, 36px); }
.ck-h3 { font-size: clamp(18px, 1.7vw, 22px); }

.ck-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ck-font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ck-navy);
  padding: 4px 10px 4px 8px;
  border: 1px solid var(--ck-navy);
  border-radius: 99px;
  margin-bottom: 18px;
}
.ck-kicker::before { content: ""; width: 6px; height: 6px; background: var(--ck-navy); transform: rotate(45deg); display: inline-block; }
.ck-lead { font-size: 18px; color: var(--ck-text-soft); max-width: 62ch; }
.ck-num  { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

/* ---------- 5. Buttons ----------------------------------------------- */
.ck-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px;
  font-weight: 600; font-size: 15px;
  background: var(--ck-navy); color: #fff;
  border: 1px solid var(--ck-navy);
  border-radius: var(--ck-radius);
  cursor: pointer; text-decoration: none;
  transition: background .15s var(--ck-ease), border-color .15s var(--ck-ease), transform .15s var(--ck-ease);
}
.ck-btn:hover { background: var(--ck-navy-ink); border-color: var(--ck-navy-ink); color: #fff; transform: translateY(-1px); text-decoration: none; }
.ck-btn:active { transform: translateY(0); }
.ck-btn:disabled { background: var(--ck-mute-soft); border-color: var(--ck-mute-soft); color: #fff; cursor: not-allowed; transform: none; }
.ck-btn--ghost { background: transparent; color: var(--ck-navy); }
.ck-btn--ghost:hover { background: var(--ck-navy); color: #fff; }
.ck-btn--lg    { padding: 16px 28px; font-size: 16px; }
.ck-btn--block { display: flex; width: 100%; }

/* ---------- 6. Header / nav ----------------------------------------- */
.ck-head { background: var(--ck-bg); border-bottom: 1px solid var(--ck-line-soft); position: relative; z-index: 40; }
.ck-head__row { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 24px; }
.ck-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ck-font-head); font-weight: 700; font-size: 22px;
  letter-spacing: -.012em; color: var(--ck-text);
}
.ck-logo__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: var(--ck-navy); color: #fff;
  border-radius: 6px;
  font-family: var(--ck-font-mono); font-weight: 700; font-size: 14px;
  position: relative;
}
.ck-logo__mark::before {
  content: ""; position: absolute; inset: 3px; border: 1px solid rgba(255,255,255,.28); border-radius: 4px; pointer-events: none;
}
.ck-logo small { color: var(--ck-mute); font-family: var(--ck-font-mono); font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }

.ck-nav { display: flex; align-items: center; gap: 24px; }
.ck-nav a { font-size: 14px; font-weight: 500; color: var(--ck-text-soft); padding: 8px 0; border-bottom: 2px solid transparent; }
.ck-nav a:hover { color: var(--ck-navy); border-bottom-color: var(--ck-navy); text-decoration: none; }
.ck-nav a[aria-current="page"] { color: var(--ck-navy); border-bottom-color: var(--ck-navy); }

.ck-head__right { display: flex; align-items: center; gap: 16px; }
.ck-lang { font-family: var(--ck-font-mono); font-size: 12px; font-weight: 600; letter-spacing: .12em; display: flex; gap: 4px; }
.ck-lang a { padding: 5px 9px; border: 1px solid var(--ck-line); border-radius: 4px; color: var(--ck-text-soft); }
.ck-lang a[aria-current="true"] { background: var(--ck-navy); color: #fff; border-color: var(--ck-navy); }
.ck-lang a:hover { text-decoration: none; }

.ck-burger {
  display: none; width: 42px; height: 42px;
  border: 1px solid var(--ck-line); background: #fff;
  border-radius: 6px; cursor: pointer; align-items: center; justify-content: center;
}
.ck-burger span { display: block; width: 18px; height: 2px; background: var(--ck-text); position: relative; }
.ck-burger span::before, .ck-burger span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ck-text); }
.ck-burger span::before { top: -6px; }
.ck-burger span::after  { top:  6px; }

/* ---------- 7. Mobile drawer (CSS-driven) --------------------------- */
.ck-drawer-backdrop {
  position: fixed; inset: 0; background: rgba(20, 22, 32, .55);
  visibility: hidden; opacity: 0;
  transition: opacity .22s var(--ck-ease), visibility 0s linear .22s;
  z-index: 90;
}
.ck-drawer {
  position: fixed; top: 0; bottom: 0; inset-inline-end: 0;
  width: min(360px, 88vw);
  background: var(--ck-bg);
  border-inline-start: 1px solid var(--ck-line);
  transform: translateX(100%);
  transition: transform .26s var(--ck-ease), visibility 0s linear .26s;
  visibility: hidden; opacity: 0;
  z-index: 100; padding: 24px; overflow-y: auto;
}
:where(html[dir="rtl"]) .ck-drawer { transform: translateX(-100%); }
body.ck-drawer-open .ck-drawer-backdrop { visibility: visible; opacity: 1; transition: opacity .22s var(--ck-ease); }
body.ck-drawer-open .ck-drawer { transform: translateX(0); visibility: visible; opacity: 1; transition: transform .26s var(--ck-ease); }
.ck-drawer__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; margin-bottom: 18px; border-bottom: 1px solid var(--ck-line-soft); }
.ck-drawer__close { width: 36px; height: 36px; border: 1px solid var(--ck-line); border-radius: 6px; background: #fff; cursor: pointer; font-size: 18px; line-height: 1; }
.ck-drawer__nav { display: grid; gap: 4px; }
.ck-drawer__nav a { display: block; padding: 11px 8px; font-weight: 500; color: var(--ck-text); border-bottom: 1px solid var(--ck-line-soft); }
.ck-drawer__nav a:hover { background: var(--ck-bg-soft); color: var(--ck-navy); text-decoration: none; }

/* ---------- 8. Hero ------------------------------------------------- */
.ck-hero {
  position: relative;
  padding: 80px 0 96px;
  background:
    radial-gradient(circle at 88% 18%, rgba(78,79,97,.06) 0, transparent 42%),
    var(--ck-bg);
  border-bottom: 1px solid var(--ck-line-soft);
}
.ck-hero__grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: start; }
.ck-hero__title { margin: 14px 0 22px; }
.ck-hero__sub { font-size: 19px; color: var(--ck-text-soft); max-width: 56ch; margin: 0 0 30px; }
.ck-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.ck-hero__meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; padding-top: 22px; border-top: 1px dashed var(--ck-line); }
.ck-hero__meta dt { font-family: var(--ck-font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ck-mute); margin-bottom: 6px; }
.ck-hero__meta dd { margin: 0; font-weight: 600; font-size: 15px; color: var(--ck-text); }

/* hero side: 3-step process card (the brief 1·2·3 «Recharge amount / Payment / Confirmation») */
.ck-process {
  border: 1px solid var(--ck-line);
  border-radius: var(--ck-radius-lg);
  background: #fff;
  box-shadow: var(--ck-shadow);
  padding: 28px;
}
.ck-process__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--ck-line-soft); margin-bottom: 16px; }
.ck-process__head h3 { font-size: 17px; margin: 0; }
.ck-process__head span { font-family: var(--ck-font-mono); font-size: 11px; letter-spacing: .14em; color: var(--ck-mute); }
.ck-process__steps { display: grid; gap: 0; counter-reset: ck-step; }
.ck-process__steps li { list-style: none; counter-increment: ck-step; padding: 16px 0; border-bottom: 1px solid var(--ck-line-soft); display: grid; grid-template-columns: 36px 1fr; gap: 14px; align-items: start; }
.ck-process__steps li:last-child { border-bottom: 0; padding-bottom: 0; }
.ck-process__steps li::before {
  content: counter(ck-step);
  width: 30px; height: 30px;
  border: 1px solid var(--ck-navy);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ck-font-mono); font-weight: 700; font-size: 13px;
  color: var(--ck-navy);
}
.ck-process__steps li strong { display: block; font-weight: 600; grid-column: 2; min-width: 0; }
.ck-process__steps li small  { color: var(--ck-text-soft); font-size: 13px; grid-column: 2; min-width: 0; }

/* ---------- 9. Cards & grids ---------------------------------------- */
.ck-grid { display: grid; gap: 24px; }
.ck-grid--2 { grid-template-columns: repeat(2, 1fr); }
.ck-grid--3 { grid-template-columns: repeat(3, 1fr); }
.ck-grid--4 { grid-template-columns: repeat(4, 1fr); }

.ck-card { background: #fff; border: 1px solid var(--ck-line-soft); border-radius: var(--ck-radius-lg); padding: 28px; transition: border-color .15s var(--ck-ease), transform .15s var(--ck-ease); }
.ck-card:hover { border-color: var(--ck-navy); transform: translateY(-2px); }
.ck-card h3 { font-size: 18px; margin: 0 0 6px; }
.ck-card p  { margin: 0; color: var(--ck-text-soft); font-size: 14.5px; }
.ck-card__num { display: inline-block; font-family: var(--ck-font-mono); font-size: 12px; letter-spacing: .14em; color: var(--ck-mute); margin-bottom: 12px; }

/* ---------- 10. Forms (with cascade) -------------------------------- */
.ck-form { background: #fff; border: 1px solid var(--ck-line-soft); border-radius: var(--ck-radius-lg); padding: 36px; }
.ck-field { display: grid; gap: 6px; margin-bottom: 18px; }
.ck-field label { font-size: 13px; font-weight: 600; color: var(--ck-text); }
.ck-field .ck-hint { font-size: 12px; color: var(--ck-mute); }
.ck-input, .ck-select, .ck-textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--ck-line); border-radius: var(--ck-radius);
  font: inherit; background: #fff; color: var(--ck-text);
  transition: border-color .12s var(--ck-ease), box-shadow .12s var(--ck-ease);
}
.ck-select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234e4f61' d='M6 7.5L0 1.5 1.5 0 6 4.5 10.5 0 12 1.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-inline-end: 38px;
}
:where(html[dir="rtl"]) .ck-select { background-position: left 14px center; padding-inline-end: 14px; padding-inline-start: 38px; }
.ck-input:focus, .ck-select:focus, .ck-textarea:focus { outline: 0; border-color: var(--ck-navy); box-shadow: 0 0 0 3px rgba(78, 79, 97, .14); }
.ck-input[aria-invalid="true"], .ck-select[aria-invalid="true"] { border-color: var(--ck-danger); }
.ck-input:disabled, .ck-select:disabled { background: var(--ck-bg-soft); color: var(--ck-mute); cursor: not-allowed; }

/* cascade loading dots */
.ck-field.ck-loading .ck-select { background-image: none; padding-inline-end: 38px; }
.ck-field.ck-loading::after {
  content: ""; position: absolute; inset-inline-end: 14px; inset-block-end: 14px;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid var(--ck-line);
  border-top-color: var(--ck-navy);
  animation: ck-spin .7s linear infinite;
}
.ck-field { position: relative; }

@keyframes ck-spin { to { transform: rotate(360deg); } }

.ck-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ck-row--3  { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }

.ck-mobile {
  display: grid; grid-template-columns: 92px 1fr; gap: 0;
}
.ck-mobile__prefix {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 14px; border: 1px solid var(--ck-line); border-inline-end: 0;
  border-start-start-radius: var(--ck-radius); border-end-start-radius: var(--ck-radius);
  background: var(--ck-bg-soft); font-family: var(--ck-font-mono); font-weight: 600; color: var(--ck-text);
}
.ck-mobile .ck-input { border-start-start-radius: 0; border-end-start-radius: 0; }
:where(html[dir="rtl"]) .ck-mobile__prefix {
  border-inline-end: 1px solid var(--ck-line); border-inline-start: 0;
  border-start-start-radius: 0; border-end-start-radius: 0;
  border-start-end-radius: var(--ck-radius); border-end-end-radius: var(--ck-radius);
}
:where(html[dir="rtl"]) .ck-mobile .ck-input {
  border-start-start-radius: var(--ck-radius); border-end-start-radius: var(--ck-radius);
  border-start-end-radius: 0; border-end-end-radius: 0;
}

.ck-amount { display: flex; flex-wrap: wrap; gap: 10px; }
.ck-amount button {
  padding: 10px 16px; font-weight: 600; font-size: 14px;
  background: #fff; border: 1px solid var(--ck-line);
  color: var(--ck-text);
  border-radius: var(--ck-radius); cursor: pointer;
}
.ck-amount button[aria-pressed="true"] { background: var(--ck-navy); color: #fff; border-color: var(--ck-navy); }
.ck-amount button:hover { border-color: var(--ck-navy); }

.ck-form-error { color: var(--ck-danger); font-size: 13px; min-height: 18px; margin-top: 4px; }

/* ---------- 11. Probe / preview blocks ------------------------------ */
.ck-probe-note {
  font-family: var(--ck-font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ck-mute); padding: 5px 10px; background: var(--ck-bg-soft); border-radius: 4px;
  display: inline-block; margin-bottom: 14px;
}
.ck-probe-result {
  margin-top: 22px; padding: 22px; border: 1px dashed var(--ck-navy);
  border-radius: var(--ck-radius);
  display: none; background: var(--ck-bg-soft);
}
.ck-probe-result.is-visible { display: block; }
.ck-probe-result__balance { font-family: var(--ck-font-head); font-size: 38px; font-weight: 700; letter-spacing: -.012em; color: var(--ck-text); }
.ck-probe-result__meta { font-family: var(--ck-font-mono); font-size: 12px; color: var(--ck-mute); letter-spacing: .04em; }

/* ---------- 12. FAQ ------------------------------------------------- */
.ck-faq { display: grid; gap: 0; border-top: 1px solid var(--ck-line); }
.ck-faq details { border-bottom: 1px solid var(--ck-line); padding: 22px 0; }
.ck-faq summary { font-weight: 600; font-size: 17px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 24px; color: var(--ck-text); }
.ck-faq summary::-webkit-details-marker { display: none; }
.ck-faq summary::after {
  content: ""; width: 12px; height: 12px;
  background: var(--ck-navy);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%23000' d='M6 0l1.5 4.5L12 6l-4.5 1.5L6 12l-1.5-4.5L0 6l4.5-1.5z'/%3E%3C/svg%3E") center/12px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%23000' d='M6 0l1.5 4.5L12 6l-4.5 1.5L6 12l-1.5-4.5L0 6l4.5-1.5z'/%3E%3C/svg%3E") center/12px no-repeat;
  flex-shrink: 0; margin-top: 7px;
  transition: transform .2s var(--ck-ease);
}
.ck-faq details[open] summary::after { transform: rotate(45deg); }
.ck-faq p { color: var(--ck-text-soft); margin: 12px 0 0; }

/* ---------- 13. CTA strip + footer ---------------------------------- */
.ck-cta {
  background: var(--ck-navy); color: #fff;
  padding: 56px 0;
}
.ck-cta h2 { color: #fff; }
.ck-cta__row { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.ck-cta .ck-btn { background: #fff; color: var(--ck-navy); border-color: #fff; }
.ck-cta .ck-btn:hover { background: var(--ck-bg-shade); color: var(--ck-navy-ink); border-color: var(--ck-bg-shade); }

.ck-foot { border-top: 1px solid var(--ck-line-soft); padding: 56px 0 22px; background: #fff; font-size: 14px; }
.ck-foot__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 30px; }
.ck-foot__col h4 { font-size: 12px; font-family: var(--ck-font-mono); letter-spacing: .14em; text-transform: uppercase; color: var(--ck-mute); margin: 0 0 14px; font-weight: 600; }
.ck-foot__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.ck-foot__col a { color: var(--ck-text-soft); }
.ck-foot__col a:hover { color: var(--ck-navy); text-decoration: none; }
.ck-foot__about { color: var(--ck-text-soft); max-width: 36ch; margin-top: 12px; }
.ck-foot__bottom { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; padding-top: 20px; border-top: 1px solid var(--ck-line-soft); color: var(--ck-mute); font-size: 13px; }
.ck-trust { display: flex; gap: 12px; opacity: .7; }
.ck-trust span { font-family: var(--ck-font-mono); font-size: 10.5px; letter-spacing: .14em; padding: 4px 8px; border: 1px solid var(--ck-line); border-radius: 4px; color: var(--ck-mute); }

/* ---------- 14. Cookies banner -------------------------------------- */
.ck-cookies {
  position: fixed; inset-inline-start: 24px; inset-block-end: 24px;
  max-width: 420px; padding: 20px 22px;
  background: var(--ck-navy); color: #fff;
  border-radius: var(--ck-radius-lg);
  box-shadow: 0 22px 44px -18px rgba(20, 22, 32, .45);
  z-index: 80;
  transform: translateY(20px); opacity: 0; visibility: hidden;
  transition: transform .22s var(--ck-ease), opacity .22s var(--ck-ease), visibility 0s linear .22s;
}
.ck-cookies.is-visible { transform: translateY(0); opacity: 1; visibility: visible; transition: transform .22s var(--ck-ease), opacity .22s var(--ck-ease); }
.ck-cookies p { margin: 0 0 14px; font-size: 14px; color: rgba(255,255,255,.86); }
.ck-cookies__row { display: flex; gap: 10px; }
.ck-cookies .ck-btn { background: #fff; color: var(--ck-navy); border-color: #fff; padding: 9px 14px; font-size: 13px; }
.ck-cookies .ck-btn:hover { background: var(--ck-bg-shade); border-color: var(--ck-bg-shade); }
.ck-cookies .ck-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.32); }

/* ---------- 15. Redirect overlay (spinner only) --------------------- */
.ck-overlay {
  position: fixed; inset: 0; background: rgba(254,254,254,.92);
  display: none; align-items: center; justify-content: center;
  z-index: 200;
}
.ck-overlay.is-visible { display: flex; }
.ck-spin-lg {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 3px solid var(--ck-line);
  border-top-color: var(--ck-navy);
  animation: ck-spin .8s linear infinite;
}

/* ---------- 16. Article (legal) ------------------------------------- */
.ck-article { max-width: 780px; margin: 0 auto; }
.ck-article h2 { margin-top: 36px; }
.ck-article p, .ck-article li { color: var(--ck-text-soft); }
.ck-article ul, .ck-article ol { padding-inline-start: 22px; }
.ck-article li { margin-bottom: 8px; }

/* ---------- 17. Contact ---------------------------------------------- */
.ck-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.ck-contact-card { border: 1px solid var(--ck-line-soft); border-radius: var(--ck-radius-lg); padding: 28px; background: #fff; }
.ck-contact-card dl { display: grid; gap: 14px; margin: 0; }
.ck-contact-card dt { font-family: var(--ck-font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ck-mute); margin-bottom: 2px; }
.ck-contact-card dd { margin: 0; font-weight: 600; }
.ck-map { border: 1px solid var(--ck-line-soft); border-radius: var(--ck-radius-lg); overflow: hidden; aspect-ratio: 16 / 11; }
.ck-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- 18. Status / history widgets ---------------------------- */
.ck-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.ck-table th, .ck-table td { text-align: start; padding: 12px 14px; border-bottom: 1px solid var(--ck-line-soft); }
.ck-table th { font-family: var(--ck-font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ck-mute); font-weight: 600; }
.ck-table tr:hover td { background: var(--ck-bg-soft); }
.ck-pill { display: inline-block; padding: 3px 10px; border-radius: 99px; font-family: var(--ck-font-mono); font-size: 11px; letter-spacing: .12em; }
.ck-pill--ok   { background: rgba(44, 110, 73, .12); color: var(--ck-success); }
.ck-pill--err  { background: rgba(156, 44, 44, .12); color: var(--ck-danger); }
.ck-pill--wait { background: var(--ck-bg-soft); color: var(--ck-text-soft); }

/* ---------- 19. Responsive ------------------------------------------ */
@media (max-width: 1024px) {
  .ck-hero__grid    { grid-template-columns: 1fr; gap: 40px; }
  .ck-grid--3       { grid-template-columns: repeat(2, 1fr); }
  .ck-grid--4       { grid-template-columns: repeat(2, 1fr); }
  .ck-foot__grid    { grid-template-columns: 1fr 1fr; }
  .ck-contact-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .ck-section { padding: 56px 0; }
  .ck-hero    { padding: 56px 0 64px; }
  .ck-nav, .ck-head__right .ck-lang { display: none; }
  .ck-burger  { display: inline-flex; }
  .ck-grid--3, .ck-grid--2, .ck-grid--4 { grid-template-columns: 1fr; }
  .ck-hero__meta { grid-template-columns: 1fr 1fr; }
  .ck-row, .ck-row--3 { grid-template-columns: 1fr; }
  .ck-foot__grid { grid-template-columns: 1fr; gap: 24px; }
  .ck-cta__row { flex-direction: column; align-items: flex-start; }
  .ck-cookies { inset-inline-start: 12px; inset-inline-end: 12px; max-width: none; }
}
