.free-day-page .fl-hero {
  text-align: center;
}

.fd-hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 20px auto 0;
  max-width: 720px;
}

.fd-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .9);
  font-size: .88rem;
  line-height: 1.5;
}

.fd-hero-chip--urgent {
  border-color: rgba(245, 197, 24, .45);
  color: #f5e6a8;
}

.fd-schedule {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.fd-schedule__card {
  background: #fff;
  border: 1px solid #ebe4f7;
  border-radius: 18px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(48, 24, 96, .05);
}

.fd-schedule__time {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #f3edff;
  color: #5b3db8;
  font-size: .82rem;
  font-weight: 800;
}

.fd-schedule__card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #1f1635;
}

.fd-schedule__card p {
  margin: 0;
  color: #6b7280;
  line-height: 1.7;
  font-size: .9rem;
}

.fd-why-section .fl-section__header {
  max-width: 640px;
}

.fd-why-section .fd-accent {
  color: #5b3db8;
  font-style: normal;
}

.fd-why-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 980px;
}

.fd-why-pills li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: #fff;
  border: 1px solid #ebe4f7;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(48, 24, 96, .05);
  color: #1f1635;
  font-weight: 700;
  font-size: .95rem;
  line-height: 1.4;
}

.fd-why-pill__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e8f8ef;
  color: #1f9d57;
  font-size: .78rem;
  font-weight: 800;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .fd-schedule {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .fd-schedule {
    grid-template-columns: 1fr;
  }
}
