:root {
  --paper: #fffef8;
  --line: #fde68a;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

.kid-bg {
  background-color: #fffdf6;
  background-image: radial-gradient(circle at 10% 18%, rgba(14, 165, 233, 0.14), transparent 32%),
    radial-gradient(circle at 92% 5%, rgba(249, 115, 22, 0.13), transparent 30%),
    radial-gradient(circle at 70% 90%, rgba(16, 185, 129, 0.12), transparent 26%);
}

.sun-badge {
  position: absolute;
  top: -24px;
  right: 5%;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, #fde68a 0%, #f59e0b 75%);
  opacity: 0.32;
  filter: blur(1px);
}

.note-card {
  border: 2px dashed #fdba74;
  border-radius: 16px;
  padding: 12px;
  background: var(--paper);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.08);
}

.step-card {
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 20px;
  background: #ffffff;
  position: relative;
  transition: transform 0.2s ease;
}

.step-card:hover {
  transform: translateY(-3px);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: white;
  font-weight: 800;
}

.program-card {
  border: 2px solid;
  border-radius: 24px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.tag {
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.speech-card {
  border: 2px solid #e2e8f0;
  border-radius: 24px;
  background: #ffffff;
  padding: 20px;
  position: relative;
  box-shadow: 0 12px 25px rgba(14, 165, 233, 0.08);
}

.speech-card::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 28px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-right: 2px solid #e2e8f0;
  border-bottom: 2px solid #e2e8f0;
  transform: rotate(45deg);
}

.price-card {
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: #ffffff;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
}

@media (max-width: 768px) {
  .sun-badge {
    width: 84px;
    height: 84px;
    right: -18px;
    top: 12px;
  }
}
