:root {
  --yellow-light: #fff8dc;
  --yellow-mid: #fff0a0;
  --yellow-accent: #f5e642;
  --red: #ea5760;
  --red-dark: #922b21;
  --black: #1a1a1a;
  --gray: #555;
  --white: #ffffff;
}

.header {
  text-align: center;
  margin-bottom: 10px;
  padding-top: 12px;
}
.header-badge {
  display: inline-block;
  background: var(--red);
  color: white;
  font-family: "Lato", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}

h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 6vw, 40px);
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 8px;
}

h2 span {
  color: var(--red);
}

.subtitle {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 30px;
  font-style: italic;
}

.progress-bar-wrap {
  background: #e8dba0;
  border-radius: 8px;
  height: 8px;
  margin-bottom: 28px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--red), #e74c3c);
  border-radius: 8px;
  width: 0%;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.5px;
}

.progress-label span:last-child {
  color: var(--red);
}

.checklist {
  display: flex;
  flex-direction: column;
}

.item {
  background: var(--white);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.2s;
  border: 2px solid transparent;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.item:active {
  transform: scale(0.98);
}

.item:hover {
  box-shadow: 0 4px 18px rgba(192, 57, 43, 0.13);
  border-color: #f5c6c2;
}

.item.done {
  background: #fff5f5;
  border-color: #f5c6c2;
}

.item.done .item-text {
  text-decoration: line-through;
  color: #aaa;
}

.step-num {
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2.5px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  background: transparent;
  transition:
    background 0.2s,
    color 0.2s;
  flex-shrink: 0;
  margin-top: 1px;
}

.item.done .step-num {
  background: var(--red);
  color: white;
  border-color: var(--red);
}

.checkbox {
  min-width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 7px;
  transition: all 0.2s;
  background: transparent;
}

.item.done .checkbox {
  background: var(--red);
  border-color: var(--red);
}

.checkbox svg {
  opacity: 0;
  transform: scale(0.5);
  transition:
    opacity 0.2s,
    transform 0.2s;
}

.item.done .checkbox svg {
  opacity: 1;
  transform: scale(1);
}

.item-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--black);
  font-weight: 400;
  transition: color 0.2s;
  flex: 1;
  padding-top: 0px;
}

.item-text a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  color: #aaa;
  font-style: italic;
}

.confetti-msg {
  display: none;
  text-align: center;
  margin-top: 20px;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: var(--red);
  font-weight: 700;
  animation: pop 0.4s ease;
}

@keyframes pop {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.item.done .checkbox svg path {
  stroke: #ffffff !important;
}
.item.done .checkbox::after {
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  border-left: 2.5px solid #ffffff;
  border-bottom: 2.5px solid #ffffff;
  transform: rotate(-45deg) translateY(-2px);
}
/* .content .checkbox {
  display: none;
} */
@media (max-width: 400px) {
  .item {
    padding: 14px 14px;
    gap: 10px;
  }
  .item-text {
    font-size: 14px;
  }
}


.section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  margin-top: 20px;
}

.section-icon {
  width: 36px;

  height: 36px;

  background: var(--red);

  border-radius: 10px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 18px;

  flex-shrink: 0;
}

.section-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
}

.section-line {
  flex: 1;

  height: 2px;

  background:#e8dba0;

  border-radius: 2px;
}

.items {
  display: flex;

  flex-direction: column;

  gap: 8px;
}

.item {
  background: var(--white);

  border-radius: 14px;

  padding: 14px 16px;

  display: flex;

  align-items: flex-start;

  gap: 12px;

  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);

  cursor: pointer;

  border: 2px solid transparent;

  transition:
    transform 0.12s,
    box-shadow 0.15s,
    background 0.2s;

  user-select: none;

  -webkit-tap-highlight-color: transparent;
}

.item:hover {
  box-shadow: 0 3px 14px rgba(192, 57, 43, 0.12);
  border-color: #f5c6c2;
}

.item:active {
  transform: scale(0.98);
}

.item.done {
  background: var(--red-light);
  border-color: #f5c6c2;
}

.item.done .item-text {
  text-decoration: line-through;
  color: #bbb;
}

.item.done .sub-list {
  opacity: 0.5;
}

.checkbox {
  min-width: 22px;

  height: 22px;

  border: 2px solid #ddd;

  border-radius: 6px;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  margin-top: 1px;

  transition: all 0.2s;
}

.item.done .checkbox {
  background: var(--red);
  border-color: var(--red);
}

.checkbox svg {
  opacity: 0;
  transform: scale(0.4);
  transition:
    opacity 0.2s,
    transform 0.2s;
}

.item.done .checkbox svg {
  opacity: 1;
  transform: scale(1);
}

.item-body {
  flex: 1;
  padding-top: 1px;
}

.item-text {
  font-size: 15px;

  line-height: 1.5;

  color: var(--black);

  transition: color 0.2s;
}

.sub-list {
  margin-top: 8px;

  display: flex;

  flex-direction: column;

  gap: 4px;

  transition: opacity 0.2s;
}

.sub-item {
  display: flex;

  align-items: center;

  gap: 8px;

  font-size: 13px;

  color: var(--gray);

  padding-left: 4px;
}

.sub-item::before {
  content: "";

  width: 6px;

  height: 6px;

  border-radius: 50%;

  background: var(--red);

  flex-shrink: 0;
}

@media (max-width: 400px) {
  .item {
    padding: 12px 13px;
  }

  .item-text {
    font-size: 14px;
  }
}


.moving-faq-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.moving-faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 22px;
  transition: 0.3s;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding-bottom: 15px;
  margin: 0;
}