/* =====================================================================
   CONSULTANCY PAGE  (prefix: cs-)
   Sunset glass · Nunito headings · Montserrat body
   ===================================================================== */

:root {
  --cs-cream: #fef0cd;
  --cs-gold: #f3da9a;
  --cs-sage: #6b775f;
  --cs-deep: #404944;
  --cs-ink: #1b1c1e;
  --cs-ink-2: #2a2b2e;
  --cs-accent: #e9b949;
  --cs-white: #ffffff;
  --cs-text: #1f2422;
  --cs-muted: #5b625d;
  --cs-on-dark: #f6efdc;
  --cs-on-dark-muted: #b8b39f;
  --cs-glass: rgba(255, 255, 255, 0.34);
  --cs-glass-2: rgba(255, 255, 255, 0.5);
  --cs-stroke: rgba(255, 255, 255, 0.55);
  --cs-shadow: 0 30px 70px rgba(48, 44, 30, 0.22);
  --cs-head: 'Nunito', system-ui, sans-serif;
  --cs-body: 'Montserrat', system-ui, sans-serif;
  --cs-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --cs-radius: 28px;
}

/* ---------- base ---------- */
html { scroll-behavior: smooth; }

body.cs-page {
  margin: 0;
  font-family: var(--cs-body);
  font-weight: 400;
  color: var(--cs-text);
  background: #f3da9a;
  background-image: linear-gradient(180deg, var(--cs-cream) 0%, var(--cs-gold) 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.cs-page * { box-sizing: border-box; }
.cs-page .cs-hero img,
.cs-page .cs-container img { max-width: 100%; display: block; }
.cs-page :where(a) { text-decoration: none; color: inherit; }

.cs-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.cs-section { padding: 110px 0; position: relative; }

.cs-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }

.cs-eyebrow {
  display: inline-block;
  font-family: var(--cs-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cs-muted);
  margin-bottom: 14px;
}

.cs-h2 {
  font-family: var(--cs-head);
  font-weight: 900;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--cs-text);
  margin: 0 0 14px;
}

.cs-p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--cs-muted);
  margin: 0;
}

.cs-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--cs-text);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), inset 0 -1px 0 rgba(255, 255, 255, 0.25), 0 10px 26px rgba(48, 44, 30, 0.12);
}

.cs-pill i { color: var(--cs-accent); }

.cs-pill--rotate { min-width: 200px; }

.cs-pill--rotate i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.66rem;
  color: var(--cs-ink);
  background: var(--cs-accent);
  transition: transform 0.5s var(--cs-ease);
}

.cs-pill__word {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  transition: opacity 0.35s ease, transform 0.5s var(--cs-ease);
}

.cs-pill--rotate.is-swap .cs-pill__word { opacity: 0; transform: translateY(8px); }
.cs-pill--rotate.is-swap i { transform: rotate(-90deg) scale(0.6); }

/* ---------- buttons ---------- */
.cs-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border-radius: 16px;
  font-family: var(--cs-head);
  font-weight: 800;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.5s var(--cs-ease), box-shadow 0.4s ease, background 0.3s ease;
}

.cs-btn i { font-size: 0.85rem; transition: transform 0.4s var(--cs-ease); }
.cs-btn:hover { transform: translateY(-3px); }
.cs-btn:hover i.fa-arrow-right { transform: translateX(4px); }

.cs-btn--dark {
  color: var(--cs-on-dark);
  background: var(--cs-ink);
  box-shadow: 0 16px 34px rgba(27, 28, 30, 0.28);
}

.cs-btn--dark:hover { box-shadow: 0 22px 44px rgba(27, 28, 30, 0.36); }

.cs-btn--glass {
  color: var(--cs-text);
  background: var(--cs-glass);
  border-color: var(--cs-stroke);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.cs-btn--glass:hover { background: var(--cs-glass-2); }

.cs-btn--gold {
  color: var(--cs-ink);
  background: linear-gradient(135deg, #f6d98f, var(--cs-accent));
  box-shadow: 0 16px 34px rgba(233, 185, 73, 0.4);
}

/* ---------- reveal ---------- */
.cs-js .cs-reveal {
  opacity: 0;
  transition: opacity 0.9s ease, transform 1s var(--cs-ease);
  transition-delay: var(--d, 0ms);
}

.cs-js .cs-reveal[data-cs="up"] { transform: translateY(28px); }
.cs-js .cs-reveal[data-cs="left"] { transform: translateX(-28px); }
.cs-js .cs-reveal[data-cs="scale"] { transform: scale(0.94); }
.cs-js .cs-reveal.is-in { opacity: 1; transform: none; }

/* ---------- hero ---------- */
.cs-hero {
  position: relative;
  padding: 70px 0 80px;
  overflow: hidden;
}

.cs-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: cs-orb 14s ease-in-out infinite;
}

.cs-hero__orb--a { width: 520px; height: 520px; left: -160px; top: 40px; background: rgba(255, 255, 255, 0.55); }
.cs-hero__orb--b { width: 420px; height: 420px; right: -120px; top: 260px; background: rgba(233, 185, 73, 0.35); animation-delay: -7s; }

@keyframes cs-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(30px, -24px) scale(1.06); }
}

.cs-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
  position: relative;
  padding: 12px 0 40px;
}

.cs-hero__copy { max-width: 720px; padding-left: 0; }

.cs-hero__title {
  font-family: var(--cs-head);
  font-weight: 900;
  font-size: clamp(2.9rem, 5.2vw, 4.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--cs-ink);
  margin: 14px 0 24px;
}

.cs-hero__title em {
  font-style: normal;
  color: var(--cs-accent);
  position: relative;
  display: inline-block;
}


.cs-hero__title span {
  display: block;
  overflow: hidden;
}

.cs-js .cs-hero__title .cs-line {
  display: block;
  transform: translateY(110%);
  transition: transform 1.1s var(--cs-ease);
}

.cs-js .cs-hero__title.is-in .cs-line { transform: none; }
.cs-js .cs-hero__title.is-in span:nth-child(2) .cs-line { transition-delay: 0.12s; }
.cs-js .cs-hero__title.is-in span:nth-child(3) .cs-line { transition-delay: 0.24s; }
.cs-js .cs-hero__title.is-in span:nth-child(4) .cs-line { transition-delay: 0.36s; }

.cs-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 6px 0 34px; }

/* hero primary button */
.cs-btn--hero {
  position: relative;
  overflow: hidden;
  padding: 9px 10px 9px 20px;
  color: var(--cs-on-dark);
  background: var(--cs-ink);
  box-shadow: 0 18px 40px rgba(27, 28, 30, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.cs-btn--hero .cs-btn__shine {
  position: absolute;
  top: 0;
  left: -70%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-18deg);
  animation: cs-shine 3.6s ease-in-out infinite;
}

@keyframes cs-shine {
  0%, 55% { left: -70%; }
  100%    { left: 140%; }
}

.cs-btn--hero .cs-btn__text { position: relative; z-index: 1; }

.cs-btn--hero .cs-btn__ic {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cs-ink);
  background: var(--cs-accent);
  transition: transform 0.5s var(--cs-ease), background 0.3s ease;
}

.cs-btn--hero:hover { box-shadow: 0 24px 50px rgba(27, 28, 30, 0.38), 0 0 0 6px rgba(233, 185, 73, 0.18); }
.cs-btn--hero:hover .cs-btn__ic { transform: translateX(4px) rotate(-20deg); background: #f6d98f; }
.cs-btn--hero:active { transform: translateY(0) scale(0.98); }

/* hero feature chips */
.cs-hero__feats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 960px;
}

.cs-hero__feats li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  padding: 8px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 10px 24px rgba(48, 44, 30, 0.1);
  transition: transform 0.5s var(--cs-ease), background 0.3s ease;
}

.cs-hero__feats li:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.6); }

.cs-hero__feats i {
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--cs-accent);
  background: var(--cs-ink);
}

.cs-hero__feats span { font-family: var(--cs-head); font-weight: 800; font-size: 0.82rem; color: var(--cs-text); line-height: 1.2; }
.cs-hero__feats small { font-size: 0.66rem; color: var(--cs-muted); line-height: 1.35; margin-top: 2px; }

/* hero flip card (9:16 reel) */
.cs-hero__visual { position: relative; display: flex; justify-content: flex-end; padding-right: 0; }

.cs-flip {
  position: relative;
  width: 100%;
  max-width: 350px;
  aspect-ratio: 9 / 16;
  perspective: 1800px;
}

.cs-flip__inner {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 1.3s cubic-bezier(0.65, 0, 0.2, 1);
}

.cs-flip.is-back .cs-flip__inner { transform: rotateY(180deg); }

.cs-flip__face {
  position: absolute;
  inset: 0;
  border-radius: 30px;
  overflow: hidden;
  padding: 2px;
  background:
    linear-gradient(var(--cs-ink), var(--cs-ink)) padding-box,
    conic-gradient(from var(--a, 0deg),
      rgba(34, 211, 238, 0.12),
      #22d3ee 30deg,
      #a855f7 60deg,
      #ec4899 85deg,
      #f6d98f 110deg,
      rgba(34, 211, 238, 0.12) 150deg,
      rgba(34, 211, 238, 0.1) 360deg) border-box;
  border: 2px solid transparent;
  box-shadow: 0 30px 70px rgba(48, 44, 30, 0.25), inset 0 2px 8px rgba(255, 255, 255, 0.28), 0 0 22px rgba(168, 85, 247, 0.25);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  animation: cs-border-run 4s linear infinite;
}

@property --a { syntax: "<angle>"; inherits: false; initial-value: 0deg; }

@keyframes cs-border-run {
  to { --a: 360deg; }
}

.cs-flip__face--back { transform: rotateY(180deg); }

.cs-flip__face::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 32px;
  background: conic-gradient(from 0deg,
      #3b82f6 0deg,
      #22d3ee 70deg,
      #a78bfa 140deg,
      transparent 200deg,
      transparent 320deg,
      #3b82f6 360deg);
  filter: blur(6px);
  opacity: 0.95;
  animation: cs-flip-spin 4s linear infinite;
  z-index: -1;
  pointer-events: none;
}

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

.cs-flip__face::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 27px;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.04) 30%, transparent 55%, rgba(255, 255, 255, 0.1) 100%);
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 2;
}

.cs-flip__video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 28px;
  background: var(--cs-ink);
}

.cs-flip__sound {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 3;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-size: 0.9rem;
  color: var(--cs-white);
  background: rgba(27, 28, 30, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 24px rgba(27, 28, 30, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: transform 0.4s var(--cs-ease), background 0.3s ease;
  animation: cs-sound-pulse 2.4s ease-in-out infinite;
}

.cs-flip__sound:hover { transform: translateY(-2px); background: rgba(27, 28, 30, 0.7); }
.cs-flip__sound .cs-flip__ic-on { display: none; }
.cs-flip__sound.is-on { animation: none; }
.cs-flip__sound.is-on .cs-flip__ic-off { display: none; }
.cs-flip__sound.is-on .cs-flip__ic-on { display: inline-block; color: var(--cs-accent); }

@keyframes cs-sound-pulse {
  0%, 100% { box-shadow: 0 12px 28px rgba(27, 28, 30, 0.3), 0 0 0 0 rgba(233, 185, 73, 0.5); }
  50%      { box-shadow: 0 12px 28px rgba(27, 28, 30, 0.3), 0 0 0 12px rgba(233, 185, 73, 0); }
}

/* ---------- what you get ---------- */
.cs-get__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.cs-card {
  padding: 28px 24px;
  border-radius: var(--cs-radius);
  background: var(--cs-glass);
  border: 1px solid var(--cs-stroke);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: transform 0.6s var(--cs-ease), box-shadow 0.5s ease, background 0.4s ease;
}

.cs-card:hover,
.cs-card.is-in:hover { transform: translateY(-8px); background: var(--cs-glass-2); box-shadow: var(--cs-shadow); }

.cs-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cs-accent);
  background: var(--cs-ink);
  font-size: 1.15rem;
  margin-bottom: 18px;
  transition: transform 0.5s var(--cs-ease);
}

.cs-card:hover .cs-card__icon { transform: rotate(-6deg) scale(1.05); }
.cs-card h3 { font-family: var(--cs-head); font-weight: 800; font-size: 1.06rem; color: var(--cs-text); margin: 0 0 8px; }
.cs-card p { font-size: 0.86rem; line-height: 1.65; color: var(--cs-muted); margin: 0; }

/* ---------- pricing ---------- */
.cs-plans {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: stretch;
}
.cs-plans > .cs-plan { grid-column: span 2; }
.cs-plans > .cs-plan:nth-child(4) { grid-column: 2 / span 2; }
.cs-plans > .cs-plan:nth-child(5) { grid-column: 4 / span 2; }

.cs-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px 20px 20px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(27, 28, 30, 0.06);
  box-shadow: 0 22px 50px rgba(48, 44, 30, 0.14);
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.9s var(--cs-ease), box-shadow 0.5s ease;
  transition-delay: calc(var(--i) * 90ms);
}

.cs-plan.is-in { opacity: 1; transform: none; }
.cs-plan.is-in:hover { transform: translateY(-8px); box-shadow: 0 34px 70px rgba(48, 44, 30, 0.2); transition-delay: 0s; }

.cs-plan--hot {
  border: 2px solid #22c55e;
  box-shadow: 0 30px 66px rgba(34, 197, 94, 0.22);
}

.cs-plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--cs-head);
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: #22c55e;
  box-shadow: 0 8px 18px rgba(34, 197, 94, 0.4);
  white-space: nowrap;
}

.cs-plan__badge i { font-size: 0.6rem; }

.cs-plan__head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }

.cs-plan__icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: #16a34a;
  background: #e8f8ee;
}

.cs-plan--hot .cs-plan__icon { color: #fff; background: #22c55e; }

.cs-plan__name { font-family: var(--cs-head); font-weight: 800; font-size: 1rem; line-height: 1.2; color: #1b1c1e; margin: 0 0 3px; }
.cs-plan__pages { font-size: 0.7rem; color: #8a8f8b; font-weight: 500; }

.cs-plan__rows { display: grid; gap: 8px; margin-bottom: 16px; }

.cs-plan__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f4f5f4;
  border: 1px solid transparent;
}

.cs-plan__row--hi { background: #e8f8ee; border-color: rgba(34, 197, 94, 0.3); }

.cs-plan__row-label { display: flex; flex-direction: column; font-family: var(--cs-head); font-weight: 800; font-size: 0.86rem; color: #1b1c1e; }
.cs-plan__row-label small { font-family: var(--cs-body); font-weight: 400; font-size: 0.64rem; color: #9aa09b; margin-top: 1px; }

.cs-plan__row-val { font-family: var(--cs-head); font-weight: 900; font-size: 1.15rem; color: #1b1c1e; }
.cs-plan__row-val--green { color: #16a34a; }

.cs-plan__list { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 9px; flex: 1; }
.cs-plan__list li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.8rem; line-height: 1.45; color: #3d423f; }

.cs-plan__list i {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  color: #fff;
  background: #22c55e;
  margin-top: 2px;
}

.cs-plan__btns { display: grid; gap: 8px; }

.cs-plan__book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border: 0;
  border-radius: 14px;
  font-family: var(--cs-head);
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  background: #22c55e;
  cursor: pointer;
  transition: transform 0.4s var(--cs-ease), box-shadow 0.3s ease, background 0.3s ease;
}

.cs-plan__book:hover { transform: translateY(-2px); background: #1eb257; box-shadow: 0 14px 28px rgba(34, 197, 94, 0.4); }
.cs-plan__book i { transition: transform 0.4s var(--cs-ease); }
.cs-plan__book:hover i { transform: translateX(4px); }

.cs-plan__info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border: 0;
  border-radius: 14px;
  font-family: var(--cs-head);
  font-weight: 700;
  font-size: 0.86rem;
  color: #16a34a;
  background: #eafaf0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cs-plan__info:hover { background: #d8f5e3; transform: translateY(-1px); }

/* plans slider (mobile) */
.cs-plans-wrap { position: relative; }
.cs-plans__arrow { display: none; }
.cs-plans__dots { display: none; }

@media (max-width: 720px) {
  .cs-plans-wrap { margin: 0 -20px; }
  .cs-plans { margin: 0 !important; padding: 8px 0 6px; }
  .cs-plans__arrow {
    display: inline-flex; align-items: center; justify-content: center;
    position: absolute; top: 42%; transform: translateY(-50%);
    width: 42px; height: 42px; border-radius: 50%;
    border: 1px solid rgba(27,28,30,0.1);
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(48,44,30,0.2);
    color: #16a34a; font-size: 0.9rem; cursor: pointer; z-index: 5;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .cs-plans__arrow--prev { left: 6px; }
  .cs-plans__arrow--next { right: 6px; }
  .cs-plans__arrow:active { transform: translateY(-50%) scale(0.9); }
  .cs-plans__arrow.is-hidden { opacity: 0; pointer-events: none; }
  .cs-plans__dots { display: flex; justify-content: center; gap: 6px; margin-top: 14px; }
  .cs-plans__dots i { width: 7px; height: 7px; border-radius: 999px; background: rgba(27,28,30,0.2); transition: width 0.4s var(--cs-ease), background 0.3s ease; }
  .cs-plans__dots i.is-on { width: 20px; background: #22c55e; }
}

/* ---------- plan info popup ---------- */
.cs-info {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0s linear 0.4s;
}

.cs-info.is-open { visibility: visible; opacity: 1; transition: opacity 0.4s ease, visibility 0s; }

.cs-info__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 30% 10%, rgba(34,197,94,0.28), rgba(20,24,20,0.55) 60%);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.cs-info__panel {
  position: relative;
  width: 100%;
  max-width: 860px;
  max-height: calc(100vh - 48px);
  border-radius: 30px;
  background:
    radial-gradient(130% 80% at 12% -5%, rgba(215,245,225,0.85), transparent 55%),
    radial-gradient(120% 90% at 105% 105%, rgba(205,235,255,0.8), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0.5));
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(34px) saturate(180%);
  -webkit-backdrop-filter: blur(34px) saturate(180%);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 1), inset 0 -20px 60px rgba(34,197,94,0.08);
  overflow: hidden;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.7s var(--cs-ease);
}

.cs-info__panel::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -30%;
  width: 160%;
  height: 120%;
  background: conic-gradient(from 0deg, transparent, rgba(34,197,94,0.10), transparent 40%, rgba(120,190,255,0.10), transparent 70%);
  animation: cs-flip-spin 12s linear infinite;
  pointer-events: none;
}
.cs-info__body { position: relative; z-index: 1; }

.cs-info__bubbles { position: absolute; inset: 0; overflow: hidden; border-radius: inherit; z-index: 0; pointer-events: none; }
.cs-info__bubbles::before {
  content: ""; position: absolute; inset: -30%;
  background: radial-gradient(50% 40% at 20% 90%, rgba(34,197,94,0.22), transparent 70%),
              radial-gradient(45% 40% at 85% 80%, rgba(120,190,255,0.20), transparent 70%);
  filter: blur(30px);
  animation: cs-water 10s ease-in-out infinite alternate;
}
@keyframes cs-water {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(4%, -3%) scale(1.08); }
}
.cs-info__bubbles span {
  position: absolute; bottom: -120px; border-radius: 50%;
  background: radial-gradient(circle at 30% 28%, rgba(255,255,255,0.95), rgba(34,197,94,0.30) 55%, rgba(120,190,255,0.22) 100%);
  box-shadow: inset 0 0 16px rgba(255,255,255,0.7), 0 6px 18px rgba(34,197,94,0.12);
  opacity: 0.75;
  animation: cs-bubble linear infinite;
}
.cs-info__bubbles span:nth-child(1){ left:6%;  width:90px;  height:90px;  animation-duration:13s;  animation-delay:0s; }
.cs-info__bubbles span:nth-child(2){ left:20%; width:40px;  height:40px;  animation-duration:9s;   animation-delay:1.2s; }
.cs-info__bubbles span:nth-child(3){ left:34%; width:130px; height:130px; animation-duration:16s;  animation-delay:0.5s; opacity:0.55; }
.cs-info__bubbles span:nth-child(4){ left:50%; width:54px;  height:54px;  animation-duration:10s;  animation-delay:2.4s; }
.cs-info__bubbles span:nth-child(5){ left:64%; width:100px; height:100px; animation-duration:14s;  animation-delay:0.2s; opacity:0.6; }
.cs-info__bubbles span:nth-child(6){ left:78%; width:32px;  height:32px;  animation-duration:8s;   animation-delay:1s; }
.cs-info__bubbles span:nth-child(7){ left:88%; width:76px;  height:76px;  animation-duration:15s;  animation-delay:1.6s; opacity:0.55; }
.cs-info__bubbles span:nth-child(8){ left:44%; width:26px;  height:26px;  animation-duration:7s;   animation-delay:3s; }

@keyframes cs-bubble {
  0%   { transform: translate(0, 0) scale(0.85); opacity: 0; }
  12%  { opacity: 0.8; }
  30%  { transform: translate(16px, -30vh) scale(1); }
  55%  { transform: translate(-14px, -55vh) scale(1.05); }
  80%  { transform: translate(10px, -85vh) scale(1.1); opacity: 0.6; }
  100% { transform: translate(0, -120vh) scale(1.15); opacity: 0; }
}

.cs-info.is-open .cs-info__panel { transform: none; }

.cs-info__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.7);
  color: #16a34a;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 20px rgba(34,197,94,0.18), inset 0 1px 0 rgba(255,255,255,0.9);
  cursor: pointer;
  transition: transform 0.4s var(--cs-ease), background 0.3s ease, color 0.3s ease;
}
.cs-info__close:hover { background: #22c55e; color: #fff; }


.cs-info__body {
  padding: 34px 30px 28px;
  overflow-y: auto;
  max-height: calc(100vh - 48px);
  scrollbar-width: thin;
}

.cs-info__top { display: flex; align-items: flex-start; gap: 18px; padding-right: 46px; margin-bottom: 8px; }
.cs-info__top-txt { flex: 1; }

.cs-info__ic {
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  background: #22c55e;
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.35);
}

.cs-info__eyebrow { display: block; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #16a34a; margin-bottom: 4px; }
.cs-info__name { font-family: var(--cs-head); font-weight: 900; font-size: 1.4rem; letter-spacing: -0.02em; color: #1b1c1e; margin: 0; }

.cs-info__short { font-size: 0.92rem; line-height: 1.7; color: #4a504c; margin: 0; font-family: var(--cs-body); }

.cs-info__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.cs-info__meta span {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 13px; border-radius: 999px;
  font-size: 0.74rem; font-weight: 600; color: #1b1c1e;
  background: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.8);
}
.cs-info__meta i { color: #16a34a; font-size: 0.7rem; }

.cs-info__sec { margin-top: 22px; }
.cs-info__sec:first-of-type { margin-top: 18px; }
.cs-info__label { display: block; font-family: var(--cs-body); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #16a34a; margin-bottom: 8px; }
.cs-info__hint { font-size: 0.76rem; color: #8a908b; margin: -4px 0 14px; }
.cs-info__h4 {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--cs-head); font-weight: 800; font-size: 0.98rem; color: #1b1c1e;
  margin: 0 0 14px;
}
.cs-info__h4 i { color: #22c55e; font-size: 0.9rem; }

.cs-info__tiles { display: grid; gap: 10px; }
.cs-info__tile {
  border-radius: 16px; background: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.8);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9); overflow: hidden;
  animation: cs-info-in 0.5s var(--cs-ease) both; animation-delay: calc(0.05s + var(--i) * 0.05s);
  transition: border-color 0.4s ease, background 0.4s ease;
}
.cs-info__tile.is-open { border-color: rgba(34,197,94,0.4); background: rgba(255,255,255,0.72); }
.cs-info__tile-head { width: 100%; display: flex; align-items: center; gap: 13px; padding: 13px 14px; border: 0; background: transparent; cursor: pointer; text-align: left; }
.cs-info__tile-ic {
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: #16a34a; background: #e8f8ee;
  transition: transform 0.5s var(--cs-ease), background 0.3s ease, color 0.3s ease;
}
.cs-info__tile.is-open .cs-info__tile-ic { color: #fff; background: #22c55e; transform: rotate(-6deg) scale(1.05); }
.cs-info__tile-title { flex: 1; font-family: var(--cs-head); font-weight: 800; font-size: 0.9rem; color: #1b1c1e; }
.cs-info__tile-chev {
  flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.6rem; color: #16a34a; background: rgba(34,197,94,0.12);
  transition: transform 0.45s var(--cs-ease), background 0.3s ease, color 0.3s ease;
}
.cs-info__tile.is-open .cs-info__tile-chev { transform: rotate(180deg); color: #fff; background: #22c55e; }
.cs-info__tile-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s var(--cs-ease); }
.cs-info__tile-body > div { overflow: hidden; }
.cs-info__tile-body p { margin: 0; padding: 0 14px 14px 65px; font-family: var(--cs-body); font-size: 0.83rem; line-height: 1.6; color: #5b615d; }
.cs-info__tile.is-open .cs-info__tile-body { grid-template-rows: 1fr; }

.cs-info__steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; position: relative; }
.cs-info__steps::before {
  content: ""; position: absolute; left: 13px; top: 14px; bottom: 14px; width: 2px;
  background: linear-gradient(180deg, #22c55e, rgba(34,197,94,0.15));
  transform: scaleY(0); transform-origin: top;
  animation: cs-line-grow 0.9s var(--cs-ease) 0.2s forwards;
}
@keyframes cs-line-grow { to { transform: scaleY(1); } }
.cs-info__steps li { display: flex; align-items: center; gap: 12px; font-size: 0.85rem; color: #3d423f; animation: cs-info-in 0.5s var(--cs-ease) both; animation-delay: calc(0.1s + var(--i) * 0.07s); }
.cs-info__steps b {
  position: relative; z-index: 1;
  flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--cs-head); font-weight: 800; font-size: 0.78rem;
  color: #fff; background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.5);
  animation: cs-step-pop 0.5s var(--cs-ease) both, cs-step-glow 2.6s ease-in-out infinite;
  animation-delay: calc(0.25s + var(--i) * 0.12s), calc(1s + var(--i) * 0.2s);
}
@keyframes cs-step-pop { from { transform: scale(0); } to { transform: scale(1); } }
@keyframes cs-step-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.45); }
  50%      { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
}

/* how it works — vertical timeline (info popup) */
.cs-time { list-style: none; margin: 0; padding: 0; }

.cs-time__item {
  position: relative;
  padding: 0 0 26px 46px;
  animation: cs-info-in 0.5s var(--cs-ease) both;
  animation-delay: calc(0.15s + var(--i) * 0.12s);
}
.cs-time__item:last-child { padding-bottom: 0; }

.cs-time__item::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 30px;
  bottom: -4px;
  width: 2px;
  background: linear-gradient(180deg, rgba(34,197,94,0.6), rgba(34,197,94,0.12));
  transform: scaleY(0);
  transform-origin: top;
  animation: cs-line-grow 0.6s var(--cs-ease) forwards;
  animation-delay: calc(0.3s + var(--i) * 0.12s);
}
.cs-time__item:last-child::before { display: none; }

@keyframes cs-line-grow { to { transform: scaleY(1); } }

.cs-time__dot {
  position: absolute;
  left: 0;
  top: 2px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #9aa09b;
  background: rgba(255,255,255,0.65);
  border: 1.5px solid rgba(27,28,30,0.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1;
}

.cs-time__dot.is-done {
  color: #fff;
  background: #22c55e;
  border-color: #22c55e;
  box-shadow: 0 0 0 5px rgba(34,197,94,0.18), 0 8px 18px rgba(34,197,94,0.3);
  animation: cs-time-pulse 2.6s ease-in-out infinite;
}

@keyframes cs-time-pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(34,197,94,0.18), 0 8px 18px rgba(34,197,94,0.3); }
  50%      { box-shadow: 0 0 0 9px rgba(34,197,94,0), 0 8px 18px rgba(34,197,94,0.3); }
}

.cs-time__when {
  display: block;
  font-family: var(--cs-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #16a34a;
  margin-bottom: 3px;
}

.cs-time__title {
  font-family: var(--cs-head);
  font-weight: 800;
  font-size: 1rem;
  color: #1b1c1e;
  margin: 0 0 4px;
}

.cs-time__desc {
  font-family: var(--cs-body);
  font-size: 0.83rem;
  line-height: 1.55;
  color: #6b716d;
  margin: 0;
}

.cs-info__faqs { display: grid; gap: 8px; }
.cs-info__faq { border-radius: 14px; background: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.75); overflow: hidden; }
.cs-info__faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 16px; border: 0; background: transparent; cursor: pointer;
  font-family: var(--cs-head); font-weight: 700; font-size: 0.86rem; color: #1b1c1e; text-align: left;
}
.cs-info__faq-q i {
  flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.62rem; color: #fff; background: #22c55e; transition: transform 0.4s var(--cs-ease);
}
.cs-info__faq.is-open .cs-info__faq-q i { transform: rotate(135deg); }
.cs-info__faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s var(--cs-ease); }
.cs-info__faq-a > div { overflow: hidden; }
.cs-info__faq-a p { margin: 0; padding: 0 16px 14px; font-size: 0.8rem; line-height: 1.6; color: #5b615d; }
.cs-info__faq.is-open .cs-info__faq-a { grid-template-rows: 1fr; }

.cs-info__foot { display: flex; gap: 10px; margin-top: 24px; }
.cs-info__foot .cs-plan__book { flex: 1; }
.cs-info__close-btn {
  padding: 14px 20px; border: 0; border-radius: 14px;
  font-family: var(--cs-head); font-weight: 700; font-size: 0.86rem;
  color: #5b615d; background: #eceeec; cursor: pointer; transition: background 0.3s ease;
}
.cs-info__close-btn:hover { background: #e0e2e0; }

@media (max-width: 620px) {
  .cs-info { padding: 0; align-items: flex-end; }
  .cs-info__panel { border-radius: 26px 26px 0 0; max-height: 92vh; }
  .cs-info__body { max-height: 92vh; padding: 28px 20px 24px; }
  .cs-info__foot { flex-direction: column; }
}

.cs-pricing__note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 720px;
  margin: 28px auto 0;
  font-size: 0.76rem;
  line-height: 1.6;
  color: var(--cs-muted);
  text-align: left;
}

.cs-pricing__note i { color: var(--cs-ink); margin-top: 3px; }

/* ---------- dark half of the page (process → cta) ---------- */
.cs-dark {
  position: relative;
  margin-top: -60px;
  padding-top: 60px;
  background: linear-gradient(180deg, rgba(64, 73, 68, 0) 0%, rgba(107, 119, 95, 0.95) 6%, var(--cs-deep) 16%, #343b37 100%);
}

/* ---------- how it works ---------- */
.cs-process .cs-h2, .cs-process .cs-eyebrow,
.cs-sample .cs-h2, .cs-sample .cs-eyebrow,
.cs-who .cs-h2, .cs-who .cs-eyebrow, .cs-who p, .cs-who h3,
.cs-why .cs-h2, .cs-why .cs-eyebrow, .cs-why .cs-p, .cs-why h3, .cs-why p,
.cs-faq .cs-h2, .cs-faq .cs-eyebrow { color: var(--cs-on-dark); }

.cs-process .cs-eyebrow, .cs-sample .cs-eyebrow, .cs-who .cs-eyebrow, .cs-why .cs-eyebrow, .cs-faq .cs-eyebrow { color: var(--cs-accent); }
.cs-who p, .cs-why p, .cs-why .cs-p { color: var(--cs-on-dark-muted); }

.cs-steps { position: relative; padding-top: 24px; }

.cs-steps__line {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 2px;
  overflow: hidden;
}

.cs-steps__line span {
  display: block;
  height: 100%;
  width: calc(var(--p, 0) * 100%);
  background: linear-gradient(90deg, var(--cs-accent), #f6d98f);
  transition: width 0.2s linear;
}

.cs-steps__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

.cs-step { text-align: center; padding: 0 8px; }

.cs-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  margin: 30px 0 18px;
  font-size: 0;
  position: relative;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.cs-step.is-lit .cs-step__num { background: var(--cs-accent); box-shadow: 0 0 0 6px rgba(233, 185, 73, 0.2), 0 0 20px rgba(233, 185, 73, 0.6); }

.cs-step__icon {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cs-on-dark);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 1.2rem;
  margin-bottom: 14px;
  transition: transform 0.6s var(--cs-ease), background 0.4s ease, color 0.4s ease;
}

.cs-step.is-lit .cs-step__icon { color: var(--cs-ink); background: var(--cs-accent); transform: translateY(-4px); }
.cs-step h3 { font-family: var(--cs-head); font-weight: 800; font-size: 0.98rem; color: var(--cs-on-dark); margin: 0 0 6px; }
.cs-step p { font-size: 0.8rem; line-height: 1.55; color: var(--cs-on-dark-muted); margin: 0; }

/* ---------- sample (laptop) ---------- */
.cs-laptop { max-width: 880px; margin: 0 auto; position: relative; }

.cs-laptop__screen {
  border-radius: 22px 22px 8px 8px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
}

.cs-laptop__base {
  height: 14px;
  margin: 0 -4%;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 0;
}

.cs-deck {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: var(--cs-cream);
  overflow: hidden;
  color: var(--cs-text);
}

.cs-deck__slide {
  grid-area: 1 / 1;
  padding: 7% 8%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.8s var(--cs-ease);
  pointer-events: none;
}

.cs-deck__slide.is-active { opacity: 1; transform: none; pointer-events: auto; }
.cs-deck__slide.is-leaving { opacity: 0; transform: translateX(-30px); }

.cs-deck__num { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; color: var(--cs-muted); }
.cs-deck__slide h4 { font-family: var(--cs-head); font-weight: 900; font-size: clamp(1.2rem, 3vw, 2rem); letter-spacing: -0.02em; margin: 0; }
.cs-deck__slide p { font-size: clamp(0.72rem, 1.5vw, 0.95rem); color: var(--cs-muted); margin: 0 0 4px; max-width: 520px; }

.cs-deck__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: auto; }

.cs-deck__grid i {
  padding: 12px;
  border-radius: 14px;
  font-style: normal;
  font-size: clamp(0.62rem, 1.3vw, 0.8rem);
  color: var(--cs-on-dark);
  background: var(--cs-ink);
}

.cs-deck__grid b { display: block; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cs-accent); margin-bottom: 4px; }

.cs-deck__map { position: relative; flex: 1; min-height: 120px; border-radius: 16px; background: rgba(27, 28, 30, 0.06); margin-top: auto; }

.cs-deck__map i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-family: var(--cs-head);
  font-weight: 800;
  font-size: 0.7rem;
  color: var(--cs-on-dark);
  background: var(--cs-ink);
  transform: translate(-50%, -50%);
}

.cs-deck__map i.is-you { width: 52px; height: 52px; color: var(--cs-ink); background: var(--cs-accent); box-shadow: 0 0 0 8px rgba(233, 185, 73, 0.3); animation: cs-you 2.4s ease-in-out infinite; }

@keyframes cs-you { 0%, 100% { box-shadow: 0 0 0 6px rgba(233, 185, 73, 0.3); } 50% { box-shadow: 0 0 0 16px rgba(233, 185, 73, 0.1); } }

.cs-deck__weeks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: auto; }

.cs-deck__weeks i {
  padding: 12px 10px;
  border-radius: 12px;
  font-style: normal;
  font-size: clamp(0.6rem, 1.3vw, 0.78rem);
  font-weight: 600;
  text-align: center;
  color: var(--cs-ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(27, 28, 30, 0.08);
}

.cs-deck__weeks i:nth-child(odd) { background: var(--cs-accent); }

.cs-laptop__ctrl { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 26px; }

.cs-laptop__btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--cs-on-dark);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cs-laptop__btn:hover { background: var(--cs-accent); color: var(--cs-ink); transform: translateY(-2px); }

.cs-laptop__dots { display: flex; gap: 6px; }
.cs-laptop__dots i { width: 6px; height: 6px; border-radius: 999px; background: rgba(255, 255, 255, 0.3); transition: width 0.4s var(--cs-ease), background 0.3s ease; }
.cs-laptop__dots i.is-on { width: 20px; background: var(--cs-accent); }

/* ---------- who ---------- */
.cs-who__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.cs-who__item {
  padding: 26px 22px;
  border-radius: var(--cs-radius);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.6s var(--cs-ease), background 0.4s ease;
}

.cs-who__item:hover, .cs-who__item.is-in:hover { transform: translateY(-6px); background: rgba(255, 255, 255, 0.12); }

.cs-who__item span {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cs-ink);
  background: var(--cs-accent);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.cs-who__item h3 { font-family: var(--cs-head); font-weight: 800; font-size: 1rem; margin: 0 0 6px; }
.cs-who__item p { font-size: 0.82rem; line-height: 1.6; margin: 0; }

/* ---------- why ---------- */
.cs-why__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
.cs-why__lead .cs-p { margin-bottom: 24px; }
.cs-why__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.cs-why__list li {
  display: flex;
  gap: 14px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cs-why__list li > i {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cs-accent);
  background: rgba(27, 28, 30, 0.6);
  font-size: 0.95rem;
}

.cs-why__list h3 { font-family: var(--cs-head); font-weight: 800; font-size: 0.98rem; margin: 0 0 4px; }
.cs-why__list p { font-size: 0.8rem; line-height: 1.55; margin: 0; }

/* ---------- faq ---------- */
.cs-faq__wrap { max-width: 820px; }
.cs-faq__list { display: grid; gap: 12px; }

.cs-faq__item {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.4s ease, border-color 0.4s ease;
}

.cs-faq__item.is-open { background: rgba(255, 255, 255, 0.11); border-color: rgba(233, 185, 73, 0.5); }

.cs-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--cs-on-dark);
  font-family: var(--cs-head);
  font-weight: 800;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
}

.cs-faq__q i {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--cs-ink);
  background: var(--cs-accent);
  transition: transform 0.5s var(--cs-ease);
}

.cs-faq__item.is-open .cs-faq__q i { transform: rotate(135deg); }

.cs-faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.5s var(--cs-ease); }
.cs-faq__a > div { overflow: hidden; }
.cs-faq__a p { margin: 0; padding: 0 22px 20px; font-size: 0.9rem; line-height: 1.7; color: var(--cs-on-dark-muted); }
.cs-faq__item.is-open .cs-faq__a { grid-template-rows: 1fr; }

/* ---------- final cta ---------- */
.cs-cta { padding: 40px 0 120px; }

.cs-cta__box {
  position: relative;
  text-align: center;
  padding: 70px 30px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.cs-cta__box::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  left: 50%;
  top: -320px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(233, 185, 73, 0.35), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.cs-cta__box .cs-eyebrow { color: var(--cs-accent); }
.cs-cta__box .cs-h2 { color: var(--cs-on-dark); max-width: 620px; margin: 0 auto 12px; }
.cs-cta__box .cs-p { color: var(--cs-on-dark-muted); margin-bottom: 28px; }

.cs-cta__trust { list-style: none; margin: 26px 0 0; padding: 0; display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 24px; }
.cs-cta__trust li { display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 500; color: var(--cs-on-dark-muted); }
.cs-cta__trust i { color: var(--cs-accent); }

/* ---------- booking panel (add-ons) ---------- */
body.cs-lock { overflow: hidden; }

.cs-book {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0s linear 0.4s;
}

.cs-book.is-open { visibility: visible; opacity: 1; transition: opacity 0.4s ease, visibility 0s; }

.cs-book__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 28, 30, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.cs-book__panel {
  position: relative;
  width: 100%;
  max-width: 1000px;
  max-height: calc(100vh - 48px);
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  border-radius: 32px;
  background: linear-gradient(160deg, #fff4d6, #f7e2ad);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.7s var(--cs-ease);
}

.cs-book.is-open .cs-book__panel { transform: none; }

.cs-book__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  color: var(--cs-on-dark);
  background: var(--cs-ink);
  cursor: pointer;
  transition: transform 0.4s var(--cs-ease);
}

.cs-book__close:hover { transform: rotate(90deg); }

.cs-book__main { padding: 34px 34px 30px; overflow-y: auto; max-height: calc(100vh - 48px); scrollbar-width: thin; }
.cs-book__title { font-family: var(--cs-head); font-weight: 900; font-size: 1.7rem; letter-spacing: -0.02em; color: var(--cs-text); margin: 0 0 6px; }
.cs-book__sub { font-size: 0.9rem; color: var(--cs-muted); margin: 0 0 22px; }

.cs-addons__group { margin-bottom: 20px; }

.cs-addons__group h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--cs-head);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cs-muted);
  margin: 0 0 10px;
}

.cs-addons__group h4 i { color: var(--cs-ink); }

.cs-addon {
  position: relative;
  margin-bottom: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 6px 16px rgba(48,44,30,0.06);
  overflow: hidden;
  transition: background 0.35s ease, transform 0.5s var(--cs-ease), box-shadow 0.4s ease, border-color 0.3s ease;
  animation: cs-addon-in 0.5s var(--cs-ease) both;
}

@keyframes cs-addon-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.cs-addon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(120deg, transparent, transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.cs-addon:hover::after {
  opacity: 1;
  background: linear-gradient(120deg, rgba(34,197,94,0.8), rgba(120,190,255,0.6), rgba(233,185,73,0.7));
  background-size: 200% 200%;
  animation: cs-addon-border 3s linear infinite;
}
.cs-addon.is-on::after {
  opacity: 1;
  background: linear-gradient(120deg, #22c55e, #7ee0a0, #22c55e);
  background-size: 200% 200%;
  animation: cs-addon-border 3s linear infinite;
}
@keyframes cs-addon-border { to { background-position: 200% 0; } }

.cs-addon:hover { background: rgba(255, 255, 255, 0.85); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(48,44,30,0.16); }
.cs-addon.is-on { background: linear-gradient(160deg, #163a24, var(--cs-ink)); box-shadow: 0 18px 38px rgba(27, 28, 30, 0.32); }

/* row */
.cs-addon__row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  cursor: pointer;
}

.cs-addon__row::before {
  content: "";
  position: absolute; top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-18deg);
  transition: left 0.7s var(--cs-ease);
  pointer-events: none;
}
.cs-addon:hover .cs-addon__row::before { left: 160%; }

/* media */
.cs-addon__media {
  flex: 0 0 auto; width: 62px; height: 62px; border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  background: radial-gradient(120% 120% at 30% 20%, #ffffff, #eef6ef 70%);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 8px 18px rgba(48,44,30,0.12);
  overflow: hidden;
  transition: transform 0.5s var(--cs-ease);
}
.cs-addon:hover .cs-addon__media { transform: translateY(-2px) scale(1.05) rotate(-2deg); }
.cs-addon.is-on .cs-addon__media {
  background: radial-gradient(120% 120% at 30% 20%, rgba(255,255,255,0.16), rgba(34,197,94,0.14));
  border-color: rgba(255,255,255,0.2);
  animation: cs-media-bob 3s ease-in-out infinite;
}
@keyframes cs-media-bob { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-4px) rotate(3deg); } }

.cs-addon__img { width: 54px; height: 54px; object-fit: contain; display: block; filter: drop-shadow(0 4px 8px rgba(48,44,30,0.18)); }
.cs-addon__fallback { width: 100%; height: 100%; align-items: center; justify-content: center; font-size: 1.35rem; color: #16a34a; }
.cs-addon.is-on .cs-addon__fallback { color: var(--cs-accent); }

.cs-addon__body { min-width: 0; }
.cs-addon__name {
  font-family: var(--cs-head); font-weight: 800; font-size: 0.9rem; color: var(--cs-text);
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap; transition: color 0.3s ease;
}
.cs-addon.is-on .cs-addon__name { color: #fff; }
.cs-addon__desc { display: block; font-family: var(--cs-body); font-weight: 400; font-size: 0.74rem; color: var(--cs-muted); margin-top: 3px; }
.cs-addon.is-on .cs-addon__desc { color: var(--cs-on-dark-muted); }

.cs-addon__rec {
  display: inline-flex; align-items: center; gap: 4px; padding: 3px 9px; border-radius: 999px;
  font-family: var(--cs-body); font-size: 0.56rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--cs-ink); background: var(--cs-accent); box-shadow: 0 4px 10px rgba(233,185,73,0.4);
}
.cs-addon__rec i { font-size: 0.5rem; }

.cs-addon__price {
  font-family: var(--cs-head); font-weight: 900; font-size: 0.98rem; color: var(--cs-text); white-space: nowrap; transition: color 0.3s ease;
}
.cs-addon.is-on .cs-addon__price { color: var(--cs-accent); }

/* add button */
.cs-addon__btn {
  flex: 0 0 auto; min-width: 92px; padding: 9px 14px; border: 0; border-radius: 11px;
  font-family: var(--cs-head); font-weight: 800; font-size: 0.78rem;
  color: #16a34a; background: #eafaf0; cursor: pointer; overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--cs-ease), box-shadow 0.3s ease;
}
.cs-addon__btn span { align-items: center; gap: 6px; justify-content: center; }
.cs-addon__btn-add { display: inline-flex; }
.cs-addon__btn-added { display: none; }
.cs-addon__btn i { font-size: 0.7rem; }
.cs-addon__btn:hover { background: #22c55e; color: #fff; box-shadow: 0 8px 18px rgba(34,197,94,0.35); transform: translateY(-1px); }
.cs-addon.is-on .cs-addon__btn { background: var(--cs-accent); color: var(--cs-ink); box-shadow: 0 8px 18px rgba(233,185,73,0.4); }
.cs-addon.is-on .cs-addon__btn-add { display: none; }
.cs-addon.is-on .cs-addon__btn-added { display: inline-flex; animation: cs-added-pop 0.4s var(--cs-ease); }
@keyframes cs-added-pop { 0% { transform: scale(0.6); } 60% { transform: scale(1.12); } 100% { transform: scale(1); } }

/* chevron */
.cs-addon__chev {
  flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.62rem; color: #6b716d; background: rgba(27,28,30,0.06);
  transition: transform 0.45s var(--cs-ease), background 0.3s ease, color 0.3s ease;
}
.cs-addon.is-on .cs-addon__chev { color: var(--cs-on-dark-muted); background: rgba(255,255,255,0.1); }
.cs-addon.is-more .cs-addon__chev { transform: rotate(180deg); background: #22c55e; color: #fff; }

/* expandable detail */
.cs-addon__more {
  position: relative; z-index: 2;
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--cs-ease);
}
.cs-addon__more > div { overflow: hidden; }
.cs-addon__more p {
  margin: 0;
  padding: 2px 16px 15px 90px;
  font-family: var(--cs-body);
  font-size: 0.82rem;
  line-height: 1.65;
  color: #5b615d;
}
.cs-addon.is-on .cs-addon__more p { color: var(--cs-on-dark-muted); }
.cs-addon.is-more .cs-addon__more { grid-template-rows: 1fr; }

@media (max-width: 600px) {
  .cs-addon__row { grid-template-columns: auto 1fr auto; gap: 12px; row-gap: 8px; }
  .cs-addon__price { grid-column: 2; }
  .cs-addon__btn { grid-column: 1 / -1; min-width: 0; width: 100%; padding: 10px; }
  .cs-addon__chev { position: absolute; top: 14px; right: 12px; }
  .cs-addon__media { width: 52px; height: 52px; }
  .cs-addon__img { width: 44px; height: 44px; }
  .cs-addon__more p { padding-left: 16px; }
}

/* ---- booking summary: timer, offer, save, secure, confetti ---- */
.cs-book__timer {
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(233,185,73,0.1);
  border: 1px solid rgba(233,185,73,0.28);
}

.cs-book__timer-top {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--cs-body); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cs-accent);
  margin-bottom: 10px;
}
.cs-book__timer-top i { font-size: 0.75rem; }

.cs-clock { display: flex; align-items: center; justify-content: center; gap: 6px; }

.cs-clock__unit {
  display: flex; flex-direction: column; align-items: center;
  min-width: 46px;
  padding: 8px 6px 6px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.cs-clock__unit b {
  font-family: var(--cs-head); font-weight: 900; font-size: 1.25rem; line-height: 1;
  color: #fff; font-variant-numeric: tabular-nums;
}
.cs-clock__unit small {
  margin-top: 4px;
  font-family: var(--cs-body); font-size: 0.56rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--cs-on-dark-muted);
}
.cs-clock__sep {
  font-family: var(--cs-head); font-weight: 900; font-size: 1.1rem;
  color: rgba(255,255,255,0.28);
  align-self: flex-start; margin-top: 8px;
}

.cs-book__timer.is-low { border-color: rgba(239,68,68,0.5); background: rgba(239,68,68,0.12); }
.cs-book__timer.is-low .cs-book__timer-top { color: #ff8a8a; }
.cs-book__timer.is-low .cs-clock__unit b { color: #ffb3b3; }

.cs-book__offer { margin: 16px 0 10px; }
.cs-book__offer-row {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 8px;
  padding: 6px 6px 6px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px dashed rgba(255,255,255,0.25);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.cs-book__offer.is-applied .cs-book__offer-row { border-style: solid; border-color: rgba(34,197,94,0.6); background: rgba(34,197,94,0.1); }
.cs-book__offer-ic { color: var(--cs-accent); font-size: 0.8rem; }
.cs-book__offer-input {
  border: 0; background: transparent; outline: none;
  font-family: var(--cs-body); font-size: 0.82rem; color: #fff;
  padding: 6px 0;
}
.cs-book__offer-input::placeholder { color: rgba(255,255,255,0.4); }
.cs-book__offer-btn {
  border: 0; border-radius: 9px; padding: 8px 14px; cursor: pointer;
  font-family: var(--cs-head); font-weight: 800; font-size: 0.76rem;
  color: var(--cs-ink); background: var(--cs-accent);
  transition: transform 0.3s ease, background 0.3s ease;
}
.cs-book__offer-btn:hover { transform: translateY(-1px); background: #f6d98f; }
.cs-book__offer-msg { margin: 8px 2px 0; font-size: 0.72rem; min-height: 0; }
.cs-book__offer-msg.is-ok { color: #7ee0a0; }
.cs-book__offer-msg.is-err { color: #ff8a8a; }
.cs-book__offer-hints { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.cs-book__chip {
  border: 1px solid rgba(255,255,255,0.18); border-radius: 999px;
  padding: 5px 10px; cursor: pointer;
  font-family: var(--cs-body); font-size: 0.64rem; font-weight: 500;
  color: var(--cs-on-dark-muted); background: rgba(255,255,255,0.05);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.cs-book__chip:hover { background: rgba(233,185,73,0.18); color: var(--cs-accent); border-color: rgba(233,185,73,0.4); }

.cs-book__save {
  display: flex; align-items: center; justify-content: space-between;
  margin: 10px 0 0; padding: 10px 12px; border-radius: 12px;
  font-size: 0.78rem; font-weight: 600;
  color: #7ee0a0; background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.3);
  animation: cs-line-in 0.4s var(--cs-ease);
}
.cs-book__save i { margin-right: 6px; }
.cs-book__save strong { font-family: var(--cs-head); font-weight: 900; }

.cs-book__secure {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-top: 12px;
  font-size: 0.68rem; color: var(--cs-on-dark-muted);
}
.cs-book__secure i { color: #7ee0a0; margin-right: 5px; }

/* ---- payment methods: fade slides ---- */
.cs-pay { margin-top: 14px; text-align: center; }
.cs-pay__label {
  display: block; text-align: center;
  font-family: var(--cs-body); font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cs-on-dark-muted); margin-bottom: 10px;
}

.cs-pay__slider { position: relative; display: grid; min-height: 44px; }

.cs-pay__slide {
  grid-area: 1 / 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  transition: opacity 0.5s var(--cs-ease), transform 0.6s var(--cs-ease);
  pointer-events: none;
}
.cs-pay__slide.is-active { opacity: 1; transform: none; pointer-events: auto; }

.cs-pay__item {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  min-width: 76px; height: 40px; padding: 0 14px;
  border-radius: 11px;
  font-family: var(--cs-body); font-size: 0.72rem; font-weight: 700;
  color: #eef2ee;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 0.35s var(--cs-ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.cs-pay__item i { font-size: 1.05rem; color: #fff; }
.cs-pay__slide.is-active .cs-pay__item { animation: cs-pay-pop 0.5s var(--cs-ease) both; }
.cs-pay__slide.is-active .cs-pay__item:nth-child(2) { animation-delay: 0.08s; }
.cs-pay__slide.is-active .cs-pay__item:nth-child(3) { animation-delay: 0.16s; }
@keyframes cs-pay-pop { from { opacity: 0; transform: translateY(6px) scale(0.9); } to { opacity: 1; transform: none; } }
.cs-pay__item:hover { transform: translateY(-3px); background: rgba(34,197,94,0.16); border-color: rgba(34,197,94,0.4); }
.cs-pay__item:hover i { color: var(--cs-accent); }

.cs-pay__dots { display: flex; justify-content: center; gap: 5px; margin-top: 10px; }
.cs-pay__dots i { width: 6px; height: 6px; border-radius: 999px; background: rgba(255,255,255,0.2); transition: width 0.4s var(--cs-ease), background 0.3s ease; }
.cs-pay__dots i.is-on { width: 16px; background: var(--cs-accent); }

@media (prefers-reduced-motion: reduce) {
  .cs-pay__slide { transition: opacity 0.3s ease; }
}

/* confetti *//* confetti */
.cs-confetti { position: fixed; inset: 0; z-index: 9999; pointer-events: none; }
.cs-confetti__p {
  position: fixed;
  width: 13px; height: 13px; border-radius: 3px;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  animation: cs-confetti-fly 1.35s cubic-bezier(0.16,0.9,0.3,1) forwards;
}
.cs-confetti__p.is-star {
  width: 0; height: 0; background: transparent !important;
}
.cs-confetti__p.is-star::before { content: "\2726"; position: absolute; transform: translate(-50%,-50%); font-size: 18px; color: inherit; }
@keyframes cs-confetti-fly {
  0%   { opacity: 0; transform: translate(-50%,-50%) scale(0.4) rotate(0); }
  15%  { opacity: 1; transform: translate(calc(-50% + calc(var(--dx) * 0.35)), calc(-50% + calc(var(--dy) * 0.35))) scale(1.1) rotate(calc(var(--rot) * 0.3)); }
  100% { opacity: 0; transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy) + 120px)) scale(0.9) rotate(var(--rot)); }
}

.cs-book__summary {
  padding: 30px 26px 24px;
  background: var(--cs-ink);
  color: var(--cs-on-dark);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: calc(100vh - 48px);
  scrollbar-width: thin;
}

.cs-book__label { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cs-accent); margin-bottom: 14px; }
.cs-book__plan strong { display: block; font-family: var(--cs-head); font-weight: 900; font-size: 1.2rem; color: var(--cs-white); }
.cs-book__plan span { display: block; font-size: 0.74rem; color: var(--cs-on-dark-muted); margin-top: 2px; }

.cs-book__lines { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.cs-book__lines:not(:empty) { margin: 16px 0; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
.cs-book__lines li { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: var(--cs-on-dark-muted); animation: cs-line-in 0.4s var(--cs-ease) both; }
.cs-book__lines li > span { flex: 1; }
.cs-book__rm {
  flex: 0 0 auto;
  width: 20px; height: 20px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; cursor: pointer;
  font-size: 0.6rem; color: #ff8a8a;
  background: rgba(239,68,68,0.14);
  transition: background 0.25s ease, transform 0.3s var(--cs-ease), color 0.25s ease;
}
.cs-book__rm:hover { background: #ef4444; color: #fff; transform: scale(1.12) rotate(90deg); }
.cs-book__lines li b { color: var(--cs-white); font-weight: 600; }
.cs-book__lines li.is-empty { color: rgba(255, 255, 255, 0.35); font-style: italic; }

@keyframes cs-line-in { from { opacity: 0; transform: translateX(-8px); } to { opacity: 1; transform: none; } }

.cs-book__total { display: flex; justify-content: space-between; align-items: baseline; font-size: 0.8rem; color: var(--cs-on-dark-muted); }
.cs-book__total strong { font-family: var(--cs-head); font-weight: 900; font-size: 1.6rem; color: var(--cs-white); }

.cs-book__token {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 14px 0 18px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(233, 185, 73, 0.14);
  border: 1px solid rgba(233, 185, 73, 0.35);
  font-size: 0.78rem;
}

.cs-book__token i { color: var(--cs-accent); margin-right: 6px; }
.cs-book__token strong { font-family: var(--cs-head); font-weight: 900; font-size: 1.1rem; color: var(--cs-accent); }

.cs-book__go { justify-content: center; width: 100%; }

.cs-book__skip {
  margin-top: 10px;
  padding: 10px;
  border: 0;
  background: transparent;
  color: var(--cs-on-dark-muted);
  font-family: var(--cs-body);
  font-size: 0.78rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.cs-book__skip:hover { color: var(--cs-white); }
.cs-book__fine { display: block; margin-top: 12px; padding-top: 4px; font-size: 0.66rem; color: rgba(255, 255, 255, 0.4); text-align: center; }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .cs-plans { grid-template-columns: repeat(4, 1fr); }
  .cs-plans > .cs-plan,
  .cs-plans > .cs-plan:nth-child(4),
  .cs-plans > .cs-plan:nth-child(5) { grid-column: span 2; }
  .cs-get__grid, .cs-who__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .cs-hero { padding-top: 120px; }
  .cs-hero__grid { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px; }
  .cs-hero__visual { order: 2; }
  .cs-hero__copy { text-align: left; max-width: 100%; padding-left: 0; }
  .cs-steps__line { display: none; }
  .cs-steps__list { grid-template-columns: 1fr; gap: 14px; }
  .cs-step { display: grid; grid-template-columns: auto 1fr; column-gap: 16px; text-align: left; padding: 16px; border-radius: 20px; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1); }
  .cs-step__num { display: none; }
  .cs-step__icon { grid-row: 1 / 3; margin: 0; width: 50px; height: 50px; }
  .cs-why__grid { grid-template-columns: 1fr; gap: 28px; }
  .cs-book__panel { grid-template-columns: 1fr; max-height: calc(100vh - 32px); }
  .cs-book__main, .cs-book__summary { max-height: none; }
  .cs-book__panel { overflow-y: auto; }
  .cs-book__fine { margin-top: 12px; }
}

@media (max-width: 720px) {
  .cs-section { padding: 80px 0; }
  .cs-plans {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 0 6px;
    margin: 0 -20px;
  }
  .cs-plans::-webkit-scrollbar { display: none; }
  .cs-plans > .cs-plan,
  .cs-plans > .cs-plan:nth-child(4),
  .cs-plans > .cs-plan:nth-child(5) {
    grid-column: auto;
    flex: 0 0 82%;
    max-width: 340px;
    scroll-snap-align: center;
    margin: 12px 8px;
  }
  .cs-plans > .cs-plan:first-child { margin-left: 20px; }
  .cs-plans > .cs-plan:last-child { margin-right: 20px; }
  .cs-get__grid, .cs-who__grid, .cs-why__list { grid-template-columns: 1fr; }
  .cs-hero__title { font-size: clamp(2.6rem, 12vw, 3.4rem); }
  .cs-hero__feats { grid-template-columns: 1fr; }
  .cs-flip { max-width: 290px; }
  .cs-cta__box { padding: 54px 20px; border-radius: 28px; }
  .cs-book { padding: 0; align-items: flex-end; }
  .cs-book__panel { border-radius: 26px 26px 0 0; max-height: 94vh; }
  .cs-book__main { padding: 26px 20px 20px; }
  .cs-book__summary { padding: 24px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cs-hero__orb, .cs-flip__sound, .cs-btn__shine, .cs-deck__map i.is-you, .cs-slide__bars i, .cs-slide__track i { animation: none; }
  .cs-js .cs-reveal, .cs-plan { opacity: 1; transform: none; transition: none; }
  .cs-js .cs-hero__title .cs-line { transform: none; }
}

/* navbar fixed on this page */
.cs-page .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
}
.cs-page .cs-hero { padding-top: 110px; }