/* Sell Your Home ------------------------------------------------------- */

.sell-hero {
  padding: 176px 0 80px;
  border-bottom: 1px solid var(--ink-line);
  background: radial-gradient(circle at 85% 0%, #16202a 0%, transparent 55%);
}

.sell-hero__grid {
  display: grid;
  gap: 56px;
}

@media (min-width: 980px) {
  .sell-hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

.sell-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(34px, 5.4vw, 64px);
  line-height: 1.02;
  margin: 16px 0 0;
}

.sell-hero__lede {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 17px;
  max-width: 46ch;
}

.sell-hero__points {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sell-hero__points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.sell-hero__points svg {
  width: 15px;
  height: 15px;
  color: var(--brass);
  flex: none;
}

/* Lead form panel -------------------------------------------------------- */

.lead-panel {
  background: var(--ink-raised);
  border: 1px solid var(--ink-line);
  padding: 32px;
}

.lead-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
}

.lead-panel__title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.02em;
  margin: 0;
}

.lead-panel__step {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.progress {
  height: 2px;
  background: var(--ink-line);
  margin-bottom: 28px;
  position: relative;
}

.progress__bar {
  height: 100%;
  background: var(--brass);
  width: 50%;
  transition: width 0.35s ease;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--ink-line);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14.5px;
  padding: 13px 14px;
  transition: border-color 0.2s ease;
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brass);
}

.field-row {
  display: grid;
  gap: 14px;
}

@media (min-width: 460px) {
  .field-row--2 {
    grid-template-columns: 1fr 1fr;
  }
  .field-row--3 {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.timeline-choice {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.timeline-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.timeline-choice label {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--ink-line);
  padding: 12px 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.timeline-choice input:checked + label {
  border-color: var(--brass);
  color: var(--on-accent);
  background: var(--brass);
}

.form-step {
  display: none;
}

.form-step.is-active {
  display: block;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.form-actions .btn {
  width: 100%;
  justify-content: center;
}

.form-actions--split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 12px;
}

.form-error {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: #d98a5f;
  margin: -6px 0 16px;
  display: none;
}

.form-error.is-visible {
  display: block;
}

/* Honeypot — invisible to real visitors, catches bots that fill every
   input on the page blindly. Never shown, never required. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-confirm {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 8px 0 4px;
}

.lead-confirm.is-visible {
  display: flex;
}

.lead-confirm svg {
  width: 30px;
  height: 30px;
  color: var(--brass);
}

.lead-confirm__title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  margin: 0;
}

.lead-confirm__body {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

/* How it works ----------------------------------------------------------- */

.steps {
  display: grid;
  gap: 40px;
}

@media (min-width: 760px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brass);
}

.step__title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 19px;
  margin: 16px 0 10px;
}

.step__body {
  color: var(--text-muted);
  font-size: 14.5px;
  margin: 0;
}

/* Comparison table (blueprint panel) -------------------------------------- */

.blueprint-frame {
  border: 1px dashed var(--blueprint-line-soft);
  padding: 40px clamp(16px, 4vw, 40px);
  position: relative;
}

.blueprint-frame::before,
.blueprint-frame::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid var(--blueprint-line);
}

.blueprint-frame::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}

.blueprint-frame::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

.compare {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 13px;
}

.compare th,
.compare td {
  text-align: left;
  padding: 16px 14px;
  border-bottom: 1px solid var(--blueprint-line-soft);
}

.compare thead th {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  color: #a8c3da;
  font-weight: 400;
}

.compare tbody th {
  color: #cfe0ec;
  font-weight: 400;
}

.compare td {
  color: #eaf1f7;
}

.compare .col-us {
  color: #fff;
  font-weight: 600;
}

.compare th.col-us-head,
.compare td.col-us {
  background: rgba(111, 155, 194, 0.1);
}

.compare tbody tr:last-child th,
.compare tbody tr:last-child td {
  border-bottom: none;
}

/* Testimonials ------------------------------------------------------------ */

.testimonials {
  display: grid;
  gap: 28px;
}

@media (min-width: 760px) {
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  border: 1px solid var(--ink-line);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial__stars {
  display: flex;
  gap: 4px;
  color: var(--brass);
}

.testimonial__stars svg {
  width: 13px;
  height: 13px;
}

.testimonial__quote {
  font-size: 14.5px;
  color: var(--text-muted);
  margin: 0;
  flex: 1;
}

.testimonial__name {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.testimonial__loc {
  color: var(--text-muted);
}
