/* =====================================================================
   Countdown to Success — landing page
   Scoped under .ctk ; RTL ; dark-mode via html.dark
   ===================================================================== */

.ctk {
  --ctk-ease: cubic-bezier(.22, .61, .36, 1);
  font-family: 'Kalameh', system-ui, sans-serif;
  overflow-x: clip;
  color: #0f172a;
}

.ctk *,
.ctk *::before,
.ctk *::after { box-sizing: border-box; }

.ctk-container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 20px;
  position: relative;
  z-index: 1;
}

/* ── Rows ─────────────────────────────────────────────────────────── */
.ctk-row {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
}
.ctk-row--plain { background: #f8fafc; }
.ctk-row--mint     { background: linear-gradient(145deg, #ECFDF5 0%, #D1FAE5 45%, #A7F3D0 100%); }
.ctk-row--sky      { background: linear-gradient(145deg, #F0F9FF 0%, #E0F2FE 45%, #BAE6FD 100%); }
.ctk-row--rose     { background: linear-gradient(145deg, #FFF1F2 0%, #FFE4E6 45%, #FECDD3 100%); }
.ctk-row--lavender { background: linear-gradient(145deg, #F5F3FF 0%, #EDE9FE 45%, #DDD6FE 100%); }
.ctk-row--navy     { background: linear-gradient(145deg, #0F172A 0%, #1E293B 50%, #162033 100%); color: #e2e8f0; }

html.dark .ctk { color: #e5e7eb; }
html.dark .ctk-row--plain { background: #0b1220; }
html.dark .ctk-row--mint     { background: linear-gradient(145deg, #052e2b 0%, #064e3b 60%, #053b34 100%); }
html.dark .ctk-row--sky      { background: linear-gradient(145deg, #082235 0%, #0c3552 60%, #082a44 100%); }
html.dark .ctk-row--rose     { background: linear-gradient(145deg, #3a0f1c 0%, #4c1626 60%, #3a1320 100%); }
html.dark .ctk-row--lavender { background: linear-gradient(145deg, #1f1547 0%, #2b1d5e 60%, #221852 100%); }
html.dark .ctk-row--navy     { background: linear-gradient(145deg, #060b16 0%, #0e1626 50%, #0a1120 100%); }

/* ── Decorations ──────────────────────────────────────────────────── */
.ctk-deco { position: absolute; z-index: 1; pointer-events: none; }
.ctk-deco--blob { border-radius: 50%; filter: blur(2px); }
.ctk-deco--ring {
  width: 64px; height: 64px; border-radius: 50%;
  border: 3px solid rgba(251, 191, 36, .5);
}
.ctk-deco--float { animation: ctk-float 7s ease-in-out infinite; }
.ctk-deco--float-slow { animation: ctk-float 11s ease-in-out infinite; }
@keyframes ctk-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(6deg); }
}

/* ── Badges ───────────────────────────────────────────────────────── */
.ctk-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: .8125rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.ctk-badge--sky      { background: rgba(14,165,233,.14);  color: #0369A1; }
.ctk-badge--emerald  { background: rgba(16,185,129,.15);  color: #047857; }
.ctk-badge--rose     { background: rgba(244,63,94,.12);   color: #BE123C; }
.ctk-badge--violet   { background: rgba(139,92,246,.14);  color: #6D28D9; }
.ctk-badge--amber    { background: rgba(245,158,11,.16);  color: #B45309; }
.ctk-badge--gold     { background: rgba(251,191,36,.2);   color: #FCD34D; }

html.dark .ctk-badge--sky     { background: rgba(56,189,248,.15);  color: #7DD3FC; }
html.dark .ctk-badge--emerald { background: rgba(52,211,153,.15);  color: #6EE7B7; }
html.dark .ctk-badge--rose    { background: rgba(244,63,94,.18);   color: #FDA4AF; }
html.dark .ctk-badge--violet  { background: rgba(139,92,246,.2);   color: #C4B5FD; }
html.dark .ctk-badge--amber   { background: rgba(245,158,11,.2);   color: #FCD34D; }

/* ── CTAs ─────────────────────────────────────────────────────────── */
.ctk-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 13px;
  font-family: inherit;
  font-size: .9375rem;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform .2s var(--ctk-ease), box-shadow .2s var(--ctk-ease), background .2s;
  white-space: nowrap;
}
.ctk-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(2,132,199,.22); }
.ctk-cta:focus-visible { outline: 3px solid rgba(14,165,233,.45); outline-offset: 2px; }
.ctk-cta--lg { padding: 16px 34px; font-size: 1rem; }
.ctk-cta--primary { background: linear-gradient(135deg, #0ea5e9, #0284c7); color: #fff; }
.ctk-cta--gold { background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #3b2a06; box-shadow: 0 8px 22px rgba(251,191,36,.35); }
.ctk-cta--gold:hover { box-shadow: 0 12px 30px rgba(251,191,36,.45); }
.ctk-cta--ghost {
  background: rgba(255,255,255,.55);
  color: #0369A1;
  border: 2px solid rgba(2,132,199,.4);
}
.ctk-cta--ghost:hover { background: rgba(255,255,255,.85); }
html.dark .ctk-cta--ghost { background: rgba(255,255,255,.06); color: #7DD3FC; border-color: rgba(125,211,252,.4); }

/* ── Section headings ─────────────────────────────────────────────── */
.ctk-sec-head { margin-bottom: 44px; max-width: 720px; }
.ctk-sec-head--center { margin-inline: auto; text-align: center; }
.ctk-sec-head--row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; max-width: none; flex-wrap: wrap;
}
.ctk-sec-title {
  font-weight: 900;
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  line-height: 1.5;
  margin: 0 0 10px;
  color: #0f172a;
}
html.dark .ctk-sec-title { color: #f1f5f9; }
.ctk-row--navy .ctk-sec-title { color: #f8fafc; }
.ctk-sec-sub {
  font-size: .98rem;
  line-height: 1.85;
  color: #475569;
  margin: 0;
}
html.dark .ctk-sec-sub { color: #94a3b8; }

/* ── Color tokens (icons / accents) ───────────────────────────────── */
.ctk-c-emerald { --c: #059669; --c-bg: rgba(16,185,129,.12); }
.ctk-c-sky     { --c: #0284c7; --c-bg: rgba(14,165,233,.12); }
.ctk-c-amber   { --c: #d97706; --c-bg: rgba(245,158,11,.14); }
.ctk-c-rose    { --c: #e11d48; --c-bg: rgba(244,63,94,.12); }
.ctk-c-violet  { --c: #7c3aed; --c-bg: rgba(139,92,246,.14); }
html.dark .ctk-c-emerald { --c: #34d399; --c-bg: rgba(52,211,153,.16); }
html.dark .ctk-c-sky     { --c: #38bdf8; --c-bg: rgba(56,189,248,.16); }
html.dark .ctk-c-amber   { --c: #fbbf24; --c-bg: rgba(245,158,11,.18); }
html.dark .ctk-c-rose    { --c: #fb7185; --c-bg: rgba(244,63,94,.18); }
html.dark .ctk-c-violet  { --c: #a78bfa; --c-bg: rgba(139,92,246,.2); }

/* ── Scroll reveal ────────────────────────────────────────────────── */
[data-ctk-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ctk-ease), transform .7s var(--ctk-ease);
  will-change: opacity, transform;
}
[data-ctk-reveal].is-visible { opacity: 1; transform: none; }

/* ── Hero ─────────────────────────────────────────────────────────── */
.ctk-hero { padding-top: 110px; min-height: 78vh; display: flex; align-items: center; }
.ctk-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 48px;
}
.ctk-hero__title {
  font-weight: 900;
  font-size: clamp(1.9rem, 4.6vw, 3.1rem);
  line-height: 1.45;
  margin: 0 0 16px;
  color: #0c4a6e;
}
html.dark .ctk-hero__title { color: #e0f2fe; }
.ctk-hero__title-accent {
  color: #0284c7;
  position: relative;
  white-space: nowrap;
}
html.dark .ctk-hero__title-accent { color: #38bdf8; }
.ctk-hero__desc {
  font-size: 1.02rem;
  line-height: 2;
  color: #075985;
  max-width: 520px;
  margin: 0 0 26px;
}
html.dark .ctk-hero__desc { color: #bae6fd; }
.ctk-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Countdown widget */
.ctk-hero__art { display: flex; justify-content: center; }
.ctk-countdown {
  width: 100%;
  max-width: 420px;
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 28px;
  padding: 34px 28px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(2,132,199,.18);
}
html.dark .ctk-countdown {
  background: rgba(15,23,42,.5);
  border-color: rgba(56,189,248,.18);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.ctk-countdown__primary { margin-bottom: 22px; }
.ctk-countdown__num {
  display: block;
  font-weight: 900;
  font-size: clamp(4rem, 12vw, 7rem);
  line-height: 1;
  color: #0284c7;
  letter-spacing: -.02em;
}
html.dark .ctk-countdown__num { color: #38bdf8; }
.ctk-countdown__primary-label {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: #0369a1;
}
html.dark .ctk-countdown__primary-label { color: #7dd3fc; }
.ctk-neon { animation: ctk-neon 2.4s ease-in-out infinite; }
@keyframes ctk-neon {
  0%, 100% { text-shadow: 0 0 8px rgba(14,165,233,.45), 0 0 22px rgba(14,165,233,.25); }
  50% { text-shadow: 0 0 4px rgba(14,165,233,.3), 0 0 10px rgba(14,165,233,.15); }
}
.ctk-countdown__units {
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.ctk-unit {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(2,132,199,.12);
  border-radius: 14px;
  padding: 12px 14px;
  min-width: 72px;
}
html.dark .ctk-unit { background: rgba(8,34,53,.7); border-color: rgba(56,189,248,.2); }
.ctk-unit__num {
  font-weight: 900; font-size: 1.7rem; line-height: 1; color: #0f172a;
  font-variant-numeric: tabular-nums;
}
html.dark .ctk-unit__num { color: #e0f2fe; }
.ctk-unit__label { margin-top: 6px; font-size: .72rem; font-weight: 600; color: #64748b; }
html.dark .ctk-unit__label { color: #94a3b8; }
.ctk-unit__sep { font-weight: 900; font-size: 1.4rem; color: #94a3b8; padding-bottom: 16px; }
.ctk-countdown__done {
  margin: 18px 0 0; font-weight: 800; font-size: 1.05rem; color: #059669;
}

.ctk-scroll-hint {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(2,132,199,.4); border-radius: 14px;
  z-index: 2;
}
.ctk-scroll-hint span {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; border-radius: 4px; background: rgba(2,132,199,.55);
  animation: ctk-scroll 1.6s ease-in-out infinite;
}
html.dark .ctk-scroll-hint { border-color: rgba(125,211,252,.4); }
html.dark .ctk-scroll-hint span { background: rgba(125,211,252,.6); }
@keyframes ctk-scroll {
  0% { opacity: 0; top: 8px; }
  40% { opacity: 1; }
  100% { opacity: 0; top: 24px; }
}

/* ── Timeline ─────────────────────────────────────────────────────── */
.ctk-timeline {
  list-style: none;
  margin: 0; padding: 0;
  position: relative;
}
.ctk-timeline::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; right: 27px;
  width: 3px;
  background: linear-gradient(to bottom, rgba(148,163,184,.25), rgba(148,163,184,.5), rgba(148,163,184,.25));
  border-radius: 3px;
}
.ctk-tl-item {
  position: relative;
  padding: 0 76px 38px 0;
  min-height: 56px;
}
.ctk-tl-item:last-child { padding-bottom: 0; }
.ctk-tl-node {
  position: absolute;
  top: 0; right: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  color: var(--c);
  border: 3px solid var(--c);
  box-shadow: 0 6px 18px rgba(15,23,42,.08);
  z-index: 1;
}
html.dark .ctk-tl-node { background: #0f1a2b; }
.ctk-tl-card {
  background: #fff;
  border: 1px solid rgba(148,163,184,.18);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
  border-inline-start: 4px solid var(--c);
}
html.dark .ctk-tl-card { background: #0f1a2b; border-color: rgba(148,163,184,.16); box-shadow: 0 10px 30px rgba(0,0,0,.3); }
.ctk-tl-badge {
  display: inline-block; font-size: .75rem; font-weight: 800;
  color: var(--c); background: var(--c-bg);
  padding: 3px 12px; border-radius: 20px; margin-bottom: 8px;
}
.ctk-tl-title { font-size: 1.15rem; font-weight: 800; margin: 0 0 6px; color: #0f172a; }
html.dark .ctk-tl-title { color: #f1f5f9; }
.ctk-tl-text { font-size: .92rem; line-height: 1.85; color: #475569; margin: 0; }
html.dark .ctk-tl-text { color: #94a3b8; }

/* Desktop alternating layout */
@media (min-width: 860px) {
  .ctk-timeline::before { right: 50%; transform: translateX(50%); }
  .ctk-tl-item { width: 50%; padding: 0 0 48px; }
  .ctk-tl-item--start { margin-right: auto; padding-inline-start: 56px; text-align: start; }
  .ctk-tl-item--end { margin-inline-start: 0; padding-inline-end: 56px; text-align: start; }
  .ctk-tl-item--start .ctk-tl-node { right: auto; left: -28px; }
  .ctk-tl-item--end .ctk-tl-node { right: -28px; left: auto; }
}

/* ── Horizontal steps ─────────────────────────────────────────────── */
.ctk-steps {
  position: relative;
  background: linear-gradient(160deg, #fff7ed 0%, #ffedd5 100%);
  height: 360vh;
}
html.dark .ctk-steps { background: linear-gradient(160deg, #2a1505 0%, #3a1d06 100%); }
.ctk-steps__pin {
  position: sticky;
  top: 60px;
  height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  z-index: 0;
}
.ctk-steps__head { text-align: center; margin-bottom: 26px; }
.ctk-steps__progress {
  width: min(420px, 70vw);
  height: 6px;
  margin: 14px auto 0;
  border-radius: 6px;
  background: rgba(217,119,6,.2);
  overflow: hidden;
}
.ctk-steps__progress-bar {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, #f59e0b, #ea580c);
  border-radius: 6px;
}
.ctk-steps__viewport { width: 100%; overflow: hidden; }
.ctk-steps__track {
  display: flex;
  gap: 0;
  will-change: transform;
}
/* Desktop scroll-carousel uses LTR slide order; translateX in JS assumes LTR flex. */
@media (min-width: 860px) {
  .ctk-steps__viewport,
  .ctk-steps__track {
    direction: ltr;
  }
}
.ctk-step {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 8vw;
  direction: rtl;
}
.ctk-step__index {
  font-weight: 900;
  font-size: clamp(3.5rem, 10vw, 6rem);
  line-height: 1;
  color: var(--c);
  opacity: .22;
  margin-bottom: -18px;
}
.ctk-step__icon {
  width: 84px; height: 84px; border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-bg); color: var(--c);
  margin-bottom: 18px;
}
.ctk-step__title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 900; margin: 0 0 12px; color: #0f172a; }
html.dark .ctk-step__title { color: #f8fafc; }
.ctk-step__text { font-size: 1.02rem; line-height: 1.9; color: #57534e; max-width: 560px; margin: 0 0 16px; }
html.dark .ctk-step__text { color: #cbd5e1; }
.ctk-step__count { font-size: .85rem; font-weight: 700; color: var(--c); background: var(--c-bg); padding: 5px 16px; border-radius: 20px; }
.ctk-steps__dots { display: flex; justify-content: center; gap: 10px; margin-top: 26px; }
.ctk-steps__dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(120,53,15,.25); transition: all .3s var(--ctk-ease); }
.ctk-steps__dot.is-active { width: 28px; border-radius: 6px; background: #ea580c; }
html.dark .ctk-steps__dot { background: rgba(251,191,36,.25); }
html.dark .ctk-steps__dot.is-active { background: #fbbf24; }

/* ── Products / Stories wrappers ──────────────────────────────────── */
.ctk-products { margin-top: 8px; }
/* Hide the inner testimonials default heading (we provide our own) */
.ctk-stories .container > h2 { display: none; }
.ctk-stories section { margin-top: 0; }

/* ── Reserve band ─────────────────────────────────────────────────── */
.ctk-reserve-band__grid {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.ctk-reserve-band__title { font-size: clamp(1.5rem, 3.2vw, 2.1rem); font-weight: 900; margin: 0 0 10px; color: #f8fafc; }
.ctk-reserve-band__sub { font-size: 1rem; line-height: 1.9; color: #cbd5e1; margin: 0; max-width: 560px; }
.ctk-reserve-band__action { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.ctk-reserve-band__hint { font-size: .8rem; color: #94a3b8; }

/* ── Contact grid ─────────────────────────────────────────────────── */
.ctk-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ctk-contact-card {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 12px 34px rgba(5,150,105,.1);
  transition: transform .25s var(--ctk-ease), box-shadow .25s var(--ctk-ease);
}
.ctk-contact-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(5,150,105,.18); }
html.dark .ctk-contact-card { background: rgba(15,23,42,.5); border-color: rgba(52,211,153,.16); box-shadow: 0 12px 34px rgba(0,0,0,.35); }
.ctk-contact-card__icon {
  width: 58px; height: 58px; border-radius: 18px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-bg); color: var(--c);
}
.ctk-contact-card__title { font-size: 1.15rem; font-weight: 800; margin: 0 0 8px; color: #0f172a; }
html.dark .ctk-contact-card__title { color: #f1f5f9; }
.ctk-contact-card__text { font-size: .9rem; line-height: 1.85; color: #475569; margin: 0 0 16px; }
html.dark .ctk-contact-card__text { color: #94a3b8; }
.ctk-contact-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: inherit; font-size: .9rem; font-weight: 700;
  color: var(--c); background: none; border: 0; cursor: pointer; text-decoration: none;
}
.ctk-contact-card__link:hover { gap: 10px; }

/* ── FAQ ──────────────────────────────────────────────────────────── */
.ctk-faq-wrap { max-width: 820px; }
.ctk-faq { display: flex; flex-direction: column; gap: 12px; }
.ctk-faq__item {
  background: #fff;
  border: 1px solid rgba(148,163,184,.2);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .25s var(--ctk-ease), border-color .25s;
}
.ctk-faq__item[open] { box-shadow: 0 10px 28px rgba(2,132,199,.1); border-color: rgba(2,132,199,.3); }
html.dark .ctk-faq__item { background: #0f1a2b; border-color: rgba(148,163,184,.16); }
html.dark .ctk-faq__item[open] { box-shadow: 0 10px 28px rgba(0,0,0,.35); border-color: rgba(56,189,248,.3); }
.ctk-faq__q {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 17px 20px;
  font-weight: 700; font-size: 1rem; color: #0f172a;
  cursor: pointer;
}
.ctk-faq__q::-webkit-details-marker { display: none; }
html.dark .ctk-faq__q { color: #f1f5f9; }
.ctk-faq__chevron {
  flex-shrink: 0; color: #0284c7;
  transition: transform .3s var(--ctk-ease);
}
html.dark .ctk-faq__chevron { color: #38bdf8; }
.ctk-faq__item[open] .ctk-faq__chevron { transform: rotate(180deg); }
.ctk-faq__a { padding: 0 20px 18px; }
.ctk-faq__a p { margin: 0; font-size: .92rem; line-height: 1.95; color: #475569; }
html.dark .ctk-faq__a p { color: #94a3b8; }
.ctk-faq__a a { color: #0284c7; text-decoration: underline; }
html.dark .ctk-faq__a a { color: #38bdf8; }
.ctk-faq__item[open] .ctk-faq__a { animation: ctk-faq-in .35s var(--ctk-ease); }
@keyframes ctk-faq-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ── Sticky CTA ───────────────────────────────────────────────────── */
.ctk-sticky-cta {
  position: fixed;
  bottom: 18px; left: 50%; transform: translateX(-50%);
  z-index: 40;
  transition: opacity .3s, transform .3s;
}
.ctk-sticky-cta[hidden] { display: none; }
.ctk-sticky-cta__btn {
  display: flex; align-items: center; gap: 12px;
  font-family: inherit;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #fff; border: 0; cursor: pointer;
  padding: 12px 22px; border-radius: 999px;
  box-shadow: 0 12px 30px rgba(2,132,199,.4);
}
.ctk-sticky-cta__btn:hover { transform: translateY(-2px); }
.ctk-sticky-cta__days { font-weight: 800; font-size: .85rem; padding-inline-end: 12px; border-inline-end: 1px solid rgba(255,255,255,.4); }
.ctk-sticky-cta__label { font-weight: 700; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; }

/* ── Reserve modal ────────────────────────────────────────────────── */
.ctk-modal {
  position: fixed; inset: 0; z-index: 1150;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.ctk-modal[hidden] { display: none; }
.ctk-modal__backdrop { position: absolute; inset: 0; background: rgba(15,23,42,.6); backdrop-filter: blur(2px); }
.ctk-modal__panel {
  position: relative;
  width: 100%; max-width: 640px; max-height: 88vh; overflow: auto;
  background: #fff; border-radius: 22px; padding: 28px 26px;
  box-shadow: 0 30px 70px rgba(0,0,0,.4);
  animation: ctk-modal-in .3s var(--ctk-ease);
}
html.dark .ctk-modal__panel { background: #0f1a2b; color: #e5e7eb; }
@keyframes ctk-modal-in { from { opacity: 0; transform: translateY(20px) scale(.98); } to { opacity: 1; transform: none; } }
.ctk-modal__close {
  position: absolute; top: 14px; left: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(148,163,184,.15); border: 0; color: #64748b; cursor: pointer;
}
.ctk-modal__close:hover { background: rgba(148,163,184,.3); }
.ctk-modal__head { text-align: center; margin-bottom: 18px; }
.ctk-modal__title { font-size: 1.3rem; font-weight: 900; margin: 0 0 6px; color: #0f172a; }
html.dark .ctk-modal__title { color: #f1f5f9; }
.ctk-modal__subtitle { font-size: .9rem; color: #64748b; margin: 0; }
html.dark .ctk-modal__subtitle { color: #94a3b8; }
.ctk-modal__note { margin: 16px 0 0; font-size: .85rem; color: #64748b; text-align: center; }
.ctk-modal__note a { color: #0284c7; font-weight: 700; }

.ctk-week-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 18px; }
.ctk-week-nav__btn {
  width: 38px; height: 38px; border-radius: 11px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  background: #0ea5e9; color: #fff; border: 0;
}
.ctk-week-nav__btn:hover { background: #0284c7; }
.ctk-week-nav__btn:disabled { opacity: .5; cursor: default; }
.ctk-week-nav__label { font-weight: 700; font-size: .95rem; color: #0f172a; min-width: 180px; text-align: center; }
html.dark .ctk-week-nav__label { color: #e2e8f0; }

.ctk-slots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; min-height: 90px; }
.ctk-slots__state { grid-column: 1 / -1; text-align: center; color: #64748b; padding: 24px 0; font-size: .9rem; }
.ctk-slot {
  text-align: start;
  border: 1px solid rgba(2,132,199,.25);
  background: rgba(14,165,233,.06);
  border-radius: 14px;
  padding: 12px 14px;
  cursor: pointer;
  font-family: inherit;
  transition: transform .18s var(--ctk-ease), box-shadow .18s, background .18s;
}
.ctk-slot:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(2,132,199,.16); background: rgba(14,165,233,.12); }
.ctk-slot--full, .ctk-slot--expired { opacity: .55; cursor: not-allowed; border-color: rgba(148,163,184,.3); background: rgba(148,163,184,.1); }
.ctk-slot--full:hover, .ctk-slot--expired:hover { transform: none; box-shadow: none; }
.ctk-slot__name { font-weight: 800; font-size: .92rem; color: #0f172a; display: block; margin-bottom: 4px; }
html.dark .ctk-slot__name { color: #e2e8f0; }
.ctk-slot__meta { font-size: .8rem; color: #475569; display: block; }
html.dark .ctk-slot__meta { color: #94a3b8; }
.ctk-slot__status { font-size: .78rem; font-weight: 700; margin-top: 6px; display: inline-block; }
.ctk-slot__status--ok { color: #059669; }
.ctk-slot__status--full { color: #e11d48; }
.ctk-slot__status--expired { color: #64748b; }

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 859px) {
  .ctk-row { padding: 60px 0; }
  .ctk-hero { padding-top: 96px; min-height: 0; }
  .ctk-hero__grid { grid-template-columns: 1fr; gap: 34px; }
  .ctk-hero__art { order: -1; }
  .ctk-sec-head { margin-bottom: 32px; }
  .ctk-contact-grid { grid-template-columns: 1fr; }
  .ctk-reserve-band__grid { flex-direction: column; align-items: flex-start; }
  .ctk-slots { grid-template-columns: 1fr; }

  /* Horizontal steps → swipeable scroll-snap */
  .ctk-steps { height: auto; }
  .ctk-steps__pin { position: static; height: auto; padding: 56px 0; }
  .ctk-steps__viewport { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .ctk-steps__track { transform: none !important; }
  .ctk-step { flex: 0 0 86%; scroll-snap-align: center; padding: 24px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .ctk *, .ctk *::before, .ctk *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-ctk-reveal] { opacity: 1; transform: none; }
  .ctk-steps { height: auto; }
  .ctk-steps__pin { position: static; height: auto; padding: 56px 0; }
  .ctk-steps__viewport { overflow-x: auto; scroll-snap-type: x mandatory; }
  .ctk-steps__track { transform: none !important; }
  .ctk-step { flex: 0 0 86%; scroll-snap-align: center; }
}
