/* ══════════════════════════════════════════════════════════════
   HERO KPI PANEL  ·  v5  ·  Tanya Samui
   ══════════════════════════════════════════════════════════════ */

/* ── Panel wrapper ─────────────────────────────────────────── */
.hero__kpi-panel {
  /* inside hero__content — full-width block below CTA */
  width: 100%;
  margin-top: 3.5rem;
  padding: 2.75rem 2.5rem 2.25rem;
  background: rgba(15, 22, 24, 0.70);
  border: 1px solid rgba(174, 225, 192, 0.13);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-sizing: border-box;
}

/* ── Row 1 : 4 KPI cards ───────────────────────────────────── */
.hero__kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.kpi-card {
  padding: 0.25rem 2rem 0.25rem 1.25rem;
  border-right: 1px solid rgba(174, 225, 192, 0.1);
  display: flex;
  flex-direction: column;
}

.kpi-card:first-child { padding-left: 0.25rem; }
.kpi-card:last-child,
.kpi-card--globe      { border-right: none; }

/* Lucide icons – mint outline */
.kpi-icon {
  width: 22px;
  height: 22px;
  stroke: var(--mint, #AEE1C0);
  stroke-width: 1.5;
  fill: none;
  display: block;
  flex-shrink: 0;
  margin-bottom: 1rem;
}
.kpi-icon--sm {
  width: 18px;
  height: 18px;
  margin-bottom: 0.65rem;
}
.kpi-icon--lg {
  width: 36px;
  height: 36px;
  margin: 0 auto 1.1rem;
  stroke-width: 1.4;
}

/* Large stat number */
.kpi-n {
  font-size: clamp(2.4rem, 3.2vw, 3.5rem);
  font-weight: 600;
  color: var(--mint, #AEE1C0);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.1rem;
}

/* Unit label (гектаров / номеров / года) */
.kpi-unit {
  font-size: 1rem;
  font-weight: 500;
  color: var(--mint, #AEE1C0);
  opacity: 0.72;
  margin-bottom: 0.3rem;
}

/* Small uppercase category */
.kpi-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(174, 225, 192, 0.42);
  margin-bottom: 1rem;
}

/* Description text */
.kpi-text {
  font-size: 0.78rem;
  color: rgba(195, 220, 208, 0.6);
  line-height: 1.62;
  margin: 0;
  flex: 1;
}

/* Card 4 — text heading instead of number */
.kpi-globe-h {
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--mint, #AEE1C0);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* ── Separator ─────────────────────────────────────────────── */
.kpi-sep {
  border: none;
  border-top: 1px solid rgba(174, 225, 192, 0.08);
  margin: 2.25rem 0 1.4rem;
}

/* ── Directions heading ────────────────────────────────────── */
.kpi-dir-heading {
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(174, 225, 192, 0.38);
  margin-bottom: 1.35rem;
}

/* ── Row 2 : 6 direction cards ─────────────────────────────── */
.hero__dir-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.dir-card {
  padding: 0 1.1rem 0 0.75rem;
  border-right: 1px solid rgba(174, 225, 192, 0.08);
  display: flex;
  flex-direction: column;
}
.dir-card:first-child { padding-left: 0.25rem; }
.dir-card:last-child,
.dir-card--last        { border-right: none; }

.dir-name {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(238, 248, 242, 0.88);
  line-height: 1.25;
  margin-bottom: 0.4rem;
}

.dir-desc {
  font-size: 0.7rem;
  color: rgba(174, 225, 192, 0.42);
  line-height: 1.58;
  margin: 0;
}

/* ── Tablet (≤ 1024px) ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__kpi-panel { width: 93%; padding: 2.25rem 2rem 2rem; }

  .hero__kpi-row { grid-template-columns: repeat(2, 1fr); row-gap: 1.75rem; }
  .kpi-card:nth-child(2) { border-right: none; }
  .kpi-card:nth-child(3) { border-right: 1px solid rgba(174,225,192,.1); padding-top: 1.5rem; padding-left: 0.25rem; border-top: 1px solid rgba(174,225,192,.08); }
  .kpi-card:nth-child(4) { border-top: 1px solid rgba(174,225,192,.08); padding-top: 1.5rem; }

  .hero__dir-row { grid-template-columns: repeat(3, 1fr); row-gap: 1.25rem; }
  .dir-card:nth-child(3) { border-right: none; }
  .dir-card:nth-child(4) { padding-left: 0.25rem; }
  .kpi-n { font-size: 2.8rem; }
}

/* ── Mobile (≤ 600px) ──────────────────────────────────────── */
@media (max-width: 600px) {
  .hero__kpi-panel { width: 95%; padding: 1.75rem 1.25rem 1.5rem; border-radius: 14px; margin-bottom: -1rem; }
  .kpi-n { font-size: 2.3rem; }
  .kpi-globe-h { font-size: 1.35rem; }
  .hero__dir-row { grid-template-columns: repeat(2, 1fr); row-gap: 1rem; }
  .dir-card:nth-child(3) { border-right: 1px solid rgba(174,225,192,.08); }
  .dir-card:nth-child(2),
  .dir-card:nth-child(4),
  .dir-card:last-child { border-right: none; }
}

/* hero__content bottom padding override (KPI panel inside) */
.hero__content {
  padding-bottom: 4rem;
}

/* ══ NAV: Dream Islands badge ══════════════════════════════ */
.nav__dit-badge {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  opacity: 0.82;
  transition: opacity 0.2s ease;
  margin-left: 0.5rem;
}
.nav__dit-badge:hover { opacity: 1; }
.nav__dit-badge img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(174, 225, 192, 0.2);
}

/* ══ FOOTER: Dream Islands badge ═══════════════════════════ */
.footer__dit-badge {
  display: inline-flex !important;
  align-items: center;
  gap: 0.55rem;
}
.footer__dit-badge img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(174, 225, 192, 0.15);
  display: block;
}
.footer__dit-badge span {
  line-height: 1.3;
}

/* ─── Eco flow connector ─────────────────────────────────── */
.eco-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 3rem;
  padding: 1.4rem 2.5rem;
  background: rgba(174,225,192,0.04);
  border: 1px solid rgba(174,225,192,0.10);
  border-radius: 14px;
  max-width: 560px;
}
.eco-flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0 2.25rem;
}
.eco-flow__n {
  font-family: var(--font-d);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--mint);
  line-height: 1;
}
.eco-flow__label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.eco-flow__arrow {
  color: rgba(174,225,192,0.25);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* ─── Eco card rule dividers ────────────────────────────── */
.eco-card__rule {
  height: 1px;
  background: rgba(174,225,192,0.10);
  margin: 1.1rem 0;
  border: none;
}

/* ─── Card body — more air & cleaner type ───────────────── */
.eco-card__body { padding: 1.6rem; }
.eco-card__body h3 { font-size: 1.5rem; margin-bottom: 0.2rem; }
.eco-card__body .eyebrow { font-size: 0.67rem; letter-spacing: 0.15em; margin-bottom: 0.4rem; }
.eco-card__sub { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 0; }
.eco-card__body p { font-size: 0.9rem; line-height: 1.75; margin-bottom: 0; }

@media (max-width: 600px) {
  .eco-flow { padding: 1rem 1rem; max-width: 100%; }
  .eco-flow__step { padding: 0 1rem; }
  .eco-flow__n { font-size: 1.3rem; }
}

/* ─── Package card badges ────────────────────────────────── */
.pkg-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.32rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.1rem;
}
.pkg-card__badge--value {
  background: rgba(174,225,192,0.10);
  color: var(--mint);
  border: 1px solid rgba(174,225,192,0.22);
}
.pkg-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(74,222,128,0.5);
}
.pkg-card__badge--sig {
  background: rgba(251,191,36,0.08);
  color: #fbbf24;
  border: 1px solid rgba(251,191,36,0.22);
}
.pkg-card__label--sig { color: var(--mint); }

/* ─── Feature checklist ─────────────────────────────────── */
.pkg-card__features {
  list-style: none;
  padding: 0;
  margin: 0.9rem 0 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pkg-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.5;
}
.pkg-card__features li::before {
  content: '✓';
  color: var(--mint);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.08em;
}
.pkg-feature--base {
  color: var(--text-dim) !important;
  font-style: italic;
}
.pkg-feature--base::before {
  content: '↳' !important;
  color: var(--text-dim) !important;
}

/* ─── Pkg prereq note above prices ─────────────────────── */
.pkg-card__prereq {
  font-size: 0.76rem;
  color: var(--text-dim);
  margin: 0.5rem 0 1rem;
  line-height: 1.5;
  border-left: 2px solid rgba(174,225,192,0.25);
  padding-left: 0.75rem;
}

/* ════════════════════════════════════════════════════════
   BOOKING FLOW
   ════════════════════════════════════════════════════════ */

/* ── Secondary nav CTA ───────────────────────────────────── */
.nav__cta--sec {
  background: transparent;
  border: 1px solid rgba(174,225,192,0.30);
  color: var(--mint);
  margin-left: 0.35rem;
}
.nav__cta--sec:hover { background: rgba(174,225,192,0.08); border-color: var(--mint); }

/* ── Outline-mint button ─────────────────────────────────── */
.btn-outline-mint {
  background: transparent;
  border: 1px solid rgba(174,225,192,0.40);
  color: var(--mint);
}
.btn-outline-mint:hover { background: rgba(174,225,192,0.10); border-color: var(--mint); }

/* ── Hero hint ───────────────────────────────────────────── */
.hero__cta-hint {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 1rem;
  line-height: 1.8;
  max-width: 560px;
}

/* ── Page header ─────────────────────────────────────────── */
.bk-hero {
  padding: 6rem 0 3rem;
  text-align: center;
}
.bk-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.75rem; }
.bk-hero p  { color: var(--text); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ── Progress bar ────────────────────────────────────────── */
.bk-progress-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  position: sticky;
  top: 60px;
  background: var(--bg);
  z-index: 10;
}
.bk-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.bk-prog-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 1.25rem;
  opacity: 0.4;
  transition: opacity 0.2s;
}
.bk-prog-step--active  { opacity: 1; }
.bk-prog-step--done    { opacity: 0.75; }
.bk-prog-n {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dim);
  transition: all 0.2s;
}
.bk-prog-step--active .bk-prog-n  { border-color: var(--mint); color: var(--mint); background: rgba(174,225,192,0.10); }
.bk-prog-step--done   .bk-prog-n  { border-color: var(--mint); background: var(--mint); color: #0f1618; }
.bk-prog-label { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); }
.bk-prog-step--active .bk-prog-label { color: var(--text-hi); }
.bk-prog-line { flex: 1; height: 1px; background: var(--border); min-width: 20px; max-width: 60px; }

/* ── Form main area ──────────────────────────────────────── */
.bk-main { padding: 4rem 0 6rem; }
.bk-panel { max-width: 720px; margin: 0 auto; }
.bk-panel__title { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 2rem; }

/* ── Labels & inputs ─────────────────────────────────────── */
.bk-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}
.bk-req { color: var(--mint); }
.bk-input {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-hi);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  box-sizing: border-box;
  transition: border-color 0.2s;
  font-family: inherit;
}
.bk-input:focus { outline: none; border-color: var(--mint); }
.bk-input--err  { border-color: #f87171 !important; }
.bk-textarea { resize: vertical; min-height: 80px; }

/* ── Date row ────────────────────────────────────────────── */
.bk-date-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
input[type=date].bk-input { color-scheme: dark; }

/* ── Fields 2-col ────────────────────────────────────────── */
.bk-fields-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.bk-field { display: flex; flex-direction: column; }
.bk-field--full { grid-column: 1 / -1; }

/* ── Counters ────────────────────────────────────────────── */
.bk-count-row { display: flex; gap: 2rem; flex-wrap: wrap; }
.bk-counter { display: flex; flex-direction: column; gap: 0.5rem; }
.bk-counter__ctrl {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.bk-counter__btn {
  width: 40px;
  height: 40px;
  background: var(--panel);
  border: none;
  color: var(--mint);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.bk-counter__btn:hover { background: rgba(174,225,192,0.08); }
.bk-counter__val {
  width: 52px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  background: transparent;
  color: var(--text-hi);
  font-size: 1rem;
  font-weight: 600;
  padding: 0;
  height: 40px;
}
.bk-counter__val:focus { outline: none; }

/* ── Pill group (radio) ──────────────────────────────────── */
.bk-pill-group { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.bk-pill-opt { cursor: pointer; }
.bk-pill-opt input { position: absolute; opacity: 0; width: 0; }
.bk-pill-opt span {
  display: block;
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--text);
  transition: all 0.15s;
}
.bk-pill-opt--selected span,
.bk-pill-opt input:checked + span { border-color: var(--mint); color: var(--mint); background: rgba(174,225,192,0.08); }

/* ── Option cards (program / accommodation) ──────────────── */
.bk-cards { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2rem; }
.bk-card { cursor: pointer; }
.bk-card input { position: absolute; opacity: 0; width: 0; }
.bk-card__inner {
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.15s;
  background: var(--panel);
}
.bk-card--selected .bk-card__inner,
.bk-card input:checked ~ .bk-card__inner { border-color: var(--mint); background: rgba(174,225,192,0.06); }
.bk-card__head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.4rem; }
.bk-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--mint);
}
.bk-card__tag--gold { color: #fbbf24; }
.bk-card__tag--dim  { color: var(--text-dim); }
.bk-card__desc { font-size: 0.88rem; color: var(--text); line-height: 1.6; margin: 0; }

/* ── Checkbox ────────────────────────────────────────────── */
.bk-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  margin: 1rem 0;
}
.bk-checkbox input { position: absolute; opacity: 0; width: 0; }
.bk-checkbox__box {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  margin-top: 2px;
  transition: all 0.15s;
  position: relative;
}
.bk-checkbox input:checked ~ .bk-checkbox__box { background: var(--mint); border-color: var(--mint); }
.bk-checkbox input:checked ~ .bk-checkbox__box::after {
  content: '';
  position: absolute;
  left: 4px; top: 1px;
  width: 5px; height: 9px;
  border: 2px solid #0f1618;
  border-top: none; border-left: none;
  transform: rotate(40deg);
}
.bk-checkbox__text { font-size: 0.9rem; color: var(--text); line-height: 1.5; }
.bk-consent--err .bk-checkbox__box { border-color: #f87171; }

/* ── Hint / info ─────────────────────────────────────────── */
.bk-hint { font-size: 0.8rem; color: var(--text-dim); margin: 0.5rem 0 1.25rem; line-height: 1.6; }
.bk-info {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: -0.25rem;
  margin-bottom: 1.5rem;
  border-left: 2px solid rgba(174,225,192,0.2);
  padding-left: 0.75rem;
}

/* ── Nav buttons ─────────────────────────────────────────── */
.bk-nav {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.bk-nav--summary { flex-wrap: wrap; }

/* ── Summary ─────────────────────────────────────────────── */
.bk-summary {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.bk-sum-row {
  display: flex;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.bk-sum-row:last-child { border-bottom: none; }
.bk-sum-k { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); min-width: 110px; padding-top: 0.1em; }
.bk-sum-v { font-size: 0.9rem; color: var(--text-hi); flex: 1; line-height: 1.5; }

/* ── Success ─────────────────────────────────────────────── */
.bk-success {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 0 5rem;
}
.bk-success__icon { margin-bottom: 1.5rem; }
.bk-success__title { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1rem; }
.bk-success__text  { color: var(--text); line-height: 1.7; margin-bottom: 2rem; }
.bk-success__actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 640px) {
  .bk-date-row, .bk-fields-2col { grid-template-columns: 1fr; }
  .bk-count-row { gap: 1.25rem; }
  .bk-prog-label { display: none; }
  .bk-prog-step  { padding: 0 0.6rem; }
  .nav__cta--sec { display: none; }
  .bk-nav { flex-direction: column; align-items: stretch; }
  .bk-nav .btn { text-align: center; }
}

/* ─── Accommodation photo cards ─────────────────────────── */
.bk-cards--photo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.bk-card--photo .bk-card__inner {
  padding: 0;
  overflow: hidden;
}
.bk-card__img-wrap {
  overflow: hidden;
  height: 180px;
}
.bk-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.bk-card--photo:hover .bk-card__img,
.bk-card--photo.bk-card--selected .bk-card__img { transform: scale(1.04); }
.bk-card--photo .bk-card__body { padding: 1.1rem 1.25rem 1.25rem; }
.bk-card--photo .bk-card__desc { margin-top: 0.4rem; }
.bk-card--wide { grid-column: 1 / -1; }
.bk-card--wide .bk-card__inner { display: flex; align-items: center; }

@media (max-width: 640px) {
  .bk-cards--photo { grid-template-columns: 1fr; }
  .bk-card--wide { grid-column: auto; }
}

/* ─── Step 5 two-column layout ───────────────────────────── */
.bk-step5-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}
.bk-step5-sub {
  color: var(--text-dim);
  font-size: 0.93rem;
  line-height: 1.55;
  margin: -0.5rem 0 1.75rem;
}

/* ─── Sidebar cards ──────────────────────────────────────── */
.bk-step5-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.bk-sidebar-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.4rem;
}
.bk-sidebar-card--dim {
  background: transparent;
  border-color: rgba(174,225,192,0.10);
}
.bk-sidebar-card__title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--mint);
  margin: 0 0 0.85rem;
}
.bk-sidebar-card__text {
  font-size: 0.84rem;
  color: var(--text-dim);
  line-height: 1.55;
  margin: 0 0 0.5rem;
}
.bk-sidebar-card__text:last-child { margin-bottom: 0; }

/* Live summary rows */
.bk-live-sum-rows { display: flex; flex-direction: column; gap: 0.55rem; }
.bk-live-sum-row {
  display: grid;
  grid-template-columns: 1.4rem 1fr;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--text);
}
.bk-live-sum-row--empty {
  grid-column: 1/-1;
  color: var(--text-dim);
  font-size: 0.8rem;
  font-style: italic;
}

/* Sidebar checklist */
.bk-sidebar-checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.bk-sidebar-checks li {
  font-size: 0.875rem;
  color: var(--text);
  padding-left: 1.4rem;
  position: relative;
}
.bk-sidebar-checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 700;
}

/* ─── Success screen enhancements ────────────────────────── */
.bk-success__checks {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  text-align: left;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.bk-success__checks li {
  font-size: 0.93rem;
  color: var(--text);
  padding-left: 1.5rem;
  position: relative;
}
.bk-success__checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 700;
}
.bk-success__deposit {
  font-size: 0.84rem;
  color: var(--text-dim);
  margin: 0 0 1.75rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.bk-success__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─── Responsive: collapse sidebar on mobile ─────────────── */
@media (max-width: 800px) {
  .bk-step5-layout {
    grid-template-columns: 1fr;
  }
  .bk-step5-sidebar {
    order: -1;
  }
}

/* ═══ Results section redesign ═══════════════════════════════ */
.res-subtitle {
  max-width: 660px;
  margin: 0.8rem auto 0;
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.68;
  text-align: center;
}

/* Three pillars */
.res-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2.75rem 0 2.25rem;
}
.res-pillar {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.75rem 1.75rem;
  text-align: center;
}
.res-pillar__ico {
  display: block;
  margin-bottom: 0;
}
.res-pillar__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-hi);
  margin: 0 0 1.1rem;
  letter-spacing: -0.01em;
}
.res-pillar__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.res-pillar__list li {
  font-size: 0.88rem;
  color: var(--text-dim);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(174,225,192,0.08);
}
.res-pillar__list li:last-child { border-bottom: none; }

/* Trust citation */
.res-trust {
  text-align: center;
  max-width: 620px;
  margin: 0.5rem auto 2.75rem;
  padding: 1.35rem 1.75rem;
  border-radius: 12px;
  background: rgba(174,225,192,0.04);
  border: 1px solid rgba(174,225,192,0.12);
}
.res-trust__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  color: var(--mint);
  margin: 0 0 0.55rem;
}
.res-trust__text {
  font-size: 0.86rem;
  color: var(--text-dim);
  line-height: 1.62;
  margin: 0;
}

/* Magazine testimonials */
.testimonials .testi {
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
}
.testi__mark {
  display: block;
  font-size: 3.75rem;
  line-height: 1;
  color: var(--mint);
  opacity: 0.30;
  font-family: Georgia, 'Times New Roman', serif;
  padding: 1.4rem 1.6rem 0;
}
.testi__q {
  padding: 0.2rem 1.6rem 0;
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.68;
  font-style: italic;
  color: var(--text);
}
.testi__footer {
  padding: 1.1rem 1.6rem 1.4rem;
  margin-top: 1.1rem;
  border-top: 1px solid var(--border);
}
.testi__stars {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
  color: var(--mint);
}
.testi__name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-hi);
}
.testi__from {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 0.15rem;
}

@media (max-width: 768px) {
  .res-pillars { grid-template-columns: 1fr; gap: 0.85rem; }
}

/* ═══ Programmes section redesign ═══════════════════════════ */
.prog-subtitle {
  color: var(--text-dim);
  font-size: 0.97rem;
  line-height: 1.68;
  max-width: 680px;
  margin-top: 0.6rem;
}

/* Philosophy banner */
.prog-philosophy {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.65;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.25rem;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  background: rgba(174,225,192,0.04);
  border: 1px solid rgba(174,225,192,0.10);
  font-style: italic;
}

/* Card code badge */
.prog-card__code {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 0.4rem;
  opacity: 0.75;
}

/* Card title */
.prog-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-hi);
  margin: 0 0 0.5rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* English subtitle (Performance Camp etc.) */
.prog-card__en {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin: -0.25rem 0 0.5rem;
  letter-spacing: 0.02em;
}

/* Description: three-line template */
.prog-card__desc {
  margin: 0.6rem 0 0;
}
.prog-card__desc p {
  font-size: 0.855rem;
  color: var(--text-dim);
  line-height: 1.55;
  margin: 0 0 0.3rem;
}
.prog-card__desc p:last-child { margin-bottom: 0; }

/* Price redesign */
.prog-price-row {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
  margin-top: 0.1rem;
}
.prog-price-opt {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.prog-price-d {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-dim);
}
.prog-price-v {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--mint);
  white-space: nowrap;
}

/* Hover lift + green border */
.prog-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.prog-card:hover {
  transform: translateY(-4px);
  border-color: var(--mint);
  box-shadow: 0 10px 32px rgba(174,225,192,0.14);
}

/* CTA block */
.prog-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2.75rem;
  text-align: center;
}
.prog-cta-q {
  font-size: 1rem;
  color: var(--text);
  margin: 0;
  font-weight: 500;
}
.prog-price-note {
  font-size: 0.76rem;
  color: var(--text-dim);
  margin: 0;
}
