@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

.cn-checklist-section {
  --cn-teal:         #5FC2BE;
  --cn-navy:         #1F3F5B;
  --cn-off-white:    #F5F7F8;
  --cn-white:        #FFFFFF;
  --cn-text-muted:   #5a7388;
  --cn-border:       #dce8ef;
  --cn-font-display: 'Playfair Display', Georgia, serif;
  --cn-font-body:    'DM Sans', sans-serif;

  padding: 100px 0;
  font-family: var(--cn-font-body);
  color: var(--cn-navy);
}

.cn-checklist-section *,
.cn-checklist-section *::before,
.cn-checklist-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.cn-cl-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.cn-cl-header {
  text-align: center;
  margin-bottom: 56px;
}
.cn-cl-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cn-teal);
  background: rgba(95,194,190,.12);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  font-family: var(--cn-font-body);
}
.cn-cl-title {
  font-family: var(--cn-font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--cn-navy);
  line-height: 1.2;
  margin-bottom: 0;
}
.cn-cl-sub {
  font-size: 1.05rem;
  color: var(--cn-text-muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 12px auto 0;
  font-family: var(--cn-font-body);
}

.cn-cl-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

/* Room heading with SVG icon */
.cn-cl-room-heading {
  font-family: var(--cn-font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cn-navy);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
.cn-cl-room-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: rgba(95,194,190,.13);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cn-cl-room-icon svg,
.cn-cl-room-icon i {
  width: 18px;
  height: 18px;
  stroke: var(--cn-teal);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  font-size: 18px;
  color: var(--cn-teal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cn-cl-room-block + .cn-cl-room-block { margin-top: 32px; }

.cn-cl-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cn-cl-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  transition: background .2s ease;
  font-size: 14px;
  color: var(--cn-text-muted);
  line-height: 1.5;
  font-family: var(--cn-font-body);
}
.cn-cl-item:hover { background: rgba(95,194,190,.08); }

/* Tick box — SVG checkmark */
.cn-cl-tick {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: rgba(95,194,190,.15);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  flex-shrink: 0;
}
.cn-cl-tick svg {
  width: 12px;
  height: 12px;
  stroke: var(--cn-teal);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cn-cl-extra {
  background: var(--cn-navy);
  color: #fff;
  border-radius: 14px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  margin-left: auto;
  white-space: nowrap;
  opacity: .8;
  align-self: center;
  flex-shrink: 0;
  font-family: var(--cn-font-body);
}

/* Bonus note */
.cn-cl-note {
  background: rgba(95,194,190,.08);
  border: 1px solid rgba(95,194,190,.25);
  border-radius: 16px;
  padding: 20px 24px;
  margin-top: 24px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.cn-cl-note-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  background: rgba(95,194,190,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.cn-cl-note-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--cn-teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cn-cl-note p {
  font-size: 14px;
  color: var(--cn-navy);
  line-height: 1.65;
  font-family: var(--cn-font-body);
}

/* Reveal */
.cn-checklist-section [data-cn-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.cn-checklist-section [data-cn-reveal].cn-visible {
  opacity: 1;
  transform: translateY(0);
}
.cn-checklist-section [data-cn-delay="1"] { transition-delay: .1s; }
.cn-checklist-section [data-cn-delay="2"] { transition-delay: .2s; }
.cn-checklist-section [data-cn-delay="3"] { transition-delay: .3s; }

@media (max-width: 1024px) {
  .cn-cl-layout { grid-template-columns: 1fr; gap: 0; }
  .cn-cl-col + .cn-cl-col { margin-top: 40px; }
}
@media (max-width: 640px) {
  .cn-checklist-section { padding: 64px 0; }
  .cn-cl-container { padding: 0 16px; }
  .cn-cl-header { margin-bottom: 40px; }
  .cn-cl-title { font-size: clamp(1.6rem, 6vw, 2rem); }
  .cn-cl-sub { font-size: 0.97rem; }
  .cn-cl-room-heading { font-size: 1.15rem; }
  .cn-cl-item { font-size: 13.5px; padding: 10px 10px; }
  .cn-cl-note { padding: 16px 18px; }
}
