/* Progress bar */
.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(128,0,128,0.15);
  border-radius: 2px;
  margin: 16px 0;
  overflow: hidden;
}
.progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* Back button */
.back-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background var(--transition);
  margin: 8px 0;
}
.back-btn:hover { background: var(--purple-hover); }

/* Step container */
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  animation: fadeIn 0.3s ease;
}
.step.hidden { display: none; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Titles */
.step__title {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.3;
}
.step__subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.5;
  font-style: italic;
}

/* Choice grid */
.grid {
  display: grid;
  gap: 10px;
  width: 100%;
}
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }
.grid--7 { grid-template-columns: repeat(7, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* Choice button */
.choice-btn {
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  padding: 14px 8px;
  cursor: pointer;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}
.choice-btn:hover {
  border-color: var(--purple);
  transform: translateY(-1px);
}
.choice-btn--zodiac {
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.choice-btn--zodiac .icon {
  font-size: 1.6rem;
}
.choice-btn--zodiac .label {
  font-size: 0.75rem;
  font-weight: 600;
}

/* CTA button */
.cta-btn {
  width: 100%;
  padding: 16px 24px;
  background: var(--purple);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition: all var(--transition);
  margin-top: 16px;
}
.cta-btn:hover { background: var(--purple-hover); transform: translateY(-1px); }
.cta-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.cta-btn--whatsapp {
  background: var(--green-whatsapp);
  box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}
.cta-btn--whatsapp:hover { background: var(--green-whatsapp-hover); }

/* Input */
.input-field {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #ddd;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font);
  outline: none;
  transition: border-color var(--transition);
}
.input-field:focus { border-color: var(--purple); }

/* Month header in day grid */
.month-header {
  grid-column: 1 / -1;
  background: var(--text-dark);
  color: var(--white);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
}

/* Proof text */
.proof-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: auto;
  padding: 16px 0;
}

/* Footer */
.footer {
  text-align: center;
  padding: 16px 0;
  font-size: 0.7rem;
  color: var(--text-muted);
}
.footer a { color: var(--text-muted); margin: 0 8px; }

/* Logo */
.logo {
  text-align: center;
  padding: 20px 0 8px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: -0.5px;
}

/* Select inputs */
.select-row {
  display: flex;
  gap: 12px;
  width: 100%;
}
.select-field {
  flex: 1;
  padding: 14px 12px;
  border: 2px solid #ddd;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font);
  background: var(--white);
  outline: none;
  cursor: pointer;
}
.select-field:focus { border-color: var(--purple); }
