/* start.html only. The shared system is in /styles.css.
   Two sections: the form with three short steps beside it (in the light top), then five questions. */

/* ================================================================
   1. Top. Computers: the intro and "What happens next" on the left (they stay in view while the
   form scrolls), the form on the right. Phones and tablets: intro, form, then what happens next.
   ================================================================ */

.start-hero { text-align: left; padding-bottom: clamp(72px, 8vw, 120px); }
.start-hero h1 { max-width: 11ch; margin-inline: 0; margin-bottom: 20px; }
.start-hero .lede { max-width: 30em; margin-inline: 0; }

.start-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: "intro" "form" "next";
}
.start-side { display: contents; }
.start-intro { grid-area: intro; min-width: 0; }
.start-form { grid-area: form; min-width: 0; scroll-margin-top: calc(var(--header-space) + 16px); }
.start-next { grid-area: next; min-width: 0; }

@media (min-width: 1000px) {
  .start-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    grid-template-areas: "side form";
    column-gap: clamp(56px, 6vw, 96px);
    align-items: start;
  }
  .start-side {
    grid-area: side;
    display: grid;
    gap: 48px;
    position: sticky;
    top: calc(var(--header-space) + 40px);
    padding-top: 12px;
  }
  .start-intro, .start-next { grid-area: auto; }
}

/* ---- The form card ---- */
.form-title { margin: 0 0 24px; font-size: clamp(1.75rem, 1.55rem + 0.6vw, 2.125rem); }

/* Package choices: two by two, the price on the right of each pill */
.pkg-choices { display: grid; grid-template-columns: minmax(0, 1fr); gap: 10px; }
@media (min-width: 480px) { .pkg-choices { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.pkg-choices .choice { display: flex; }
.pkg-choices .choice span { flex: 1 1 auto; justify-content: space-between; gap: 10px; border-radius: 14px; }
.pkg-choices em { font-style: normal; font-weight: 600; color: var(--muted); }
.pkg-choices .choice input:checked + span em { color: var(--blue-dark); }

/* ---- What happens next: three numbered lines joined by a thin rule ---- */
.next-title {
  margin: 0 0 20px;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-dark);   /* the bottom of the light top is a little darker: --blue would be 4.1:1 there */
  display: flex;
  align-items: center;
  gap: 12px;
}
/* the small red rule before it, like the section labels */
.next-title::before { content: ""; width: 28px; height: 1.5px; flex: none; background: var(--red); }

.next-steps {
  list-style: none;
  margin: 0;
  padding: 6px 8px;
  display: grid;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
}
.next-steps li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px 12px;
}
.next-steps li + li { border-top: 1px solid var(--line-soft); }
.next-num {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--tile-bg);
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: 1.3125rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.next-steps p { margin: 0; color: var(--ink); font-weight: 650; line-height: 1.4; }

/* ================================================================
   2. Questions
   ================================================================ */

.start-faq { padding-bottom: clamp(64px, 7vw, 104px); }
/* answers stay under about 70 characters a line */
.start-faq .faq-a p { max-width: 33em; }
