/* =============================================================
   CHC Appeal Guide — checklist.css
   Styles specific to free-checklist.html
   ============================================================= */


/* ─── HERO ──────────────────────────────────────────────────── */

.checklist-hero {
  background-color: var(--color-forest);
  padding: 6rem 2rem 5rem;
  text-align: center;
}

.checklist-hero__inner {
  max-width: 640px;
  margin-inline: auto;
}

.checklist-hero__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
  animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.checklist-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-cream);
  line-height: 1.15;
  margin-bottom: var(--space-4);
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.checklist-hero__sub {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: rgba(250, 248, 243, 0.8);
  line-height: 1.65;
  margin-bottom: var(--space-8);
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.checklist-hero__includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  text-align: left;
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}

.checklist-hero__include {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(250, 248, 243, 0.9);
  line-height: 1.5;
}

.checklist-hero__check {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--color-gold);
  margin-top: 0.1rem;
}


/* ─── FORM SECTION ──────────────────────────────────────────── */

.checklist-form-section {
  background-color: var(--color-cream-dark);
  padding: 4rem 2rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

/* The card */
.checklist-form-card {
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2.5rem;
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-md);
}

.checklist-form-card__heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-forest);
  margin-bottom: var(--space-6);
  text-align: center;
  line-height: 1.2;
}

/* Form fields */
.checklist-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.checklist-form__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.checklist-form__label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-forest);
}

.checklist-form__input {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-charcoal);
  background-color: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color var(--transition-fast);
  -webkit-appearance: none;
}

.checklist-form__input::placeholder {
  color: rgba(90, 80, 65, 0.4);
}

.checklist-form__input:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(196, 149, 58, 0.15);
}

.checklist-form-card__intro {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-warm-grey);
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

.checklist-form__submit {
  display: block;
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: var(--color-gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  min-height: 52px;
  transition:
    background-color var(--transition-fast),
    transform var(--transition-fast);
}

.checklist-form__submit:hover {
  background-color: #a07c32;
}

.checklist-form__submit:active {
  transform: translateY(1px);
}

/* Privacy note */
.checklist-form-card__privacy {
  margin-top: var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-warm-grey);
  text-align: center;
  line-height: 1.55;
}

/* Already have the guide link */
.checklist-form-section__already {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-warm-grey);
  text-align: center;
}

.checklist-form-section__link {
  color: var(--color-forest-mid);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition-fast);
}

.checklist-form-section__link:hover {
  color: var(--color-forest);
}


/* ─── RESPONSIVE ────────────────────────────────────────────── */

@media (max-width: 680px) {
  .checklist-hero {
    padding: 4rem 1.5rem 3.5rem;
  }

  .checklist-form-section {
    padding: 3rem 1rem 4rem;
  }

  .checklist-form-card {
    padding: 1.75rem 1.25rem;
  }
}
