/* ========================================
   Umbrella Place — Sell / Cash Offer Funnel
   ======================================== */

.sell-body {
  --accent: var(--gold);
  --accent-deep: #a88a36;
  background: var(--cream);
}

.sell-body .nav {
  padding: 1rem 2.5rem;
}

.sell-nav-phone {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.sell-nav-phone .phone-icon {
  margin-right: 0.25rem;
  color: var(--gold);
}

/* ===== HERO ===== */

.sell-hero {
  padding: 7rem 2rem 5rem;
  background:
    radial-gradient(ellipse at top right, rgba(201, 168, 76, 0.08), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, #fbf9f3 100%);
  position: relative;
}

.sell-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.sell-hero-copy {
  padding-top: 0.5rem;
}

.sell-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--navy);
  font-weight: 600;
  background: rgba(26, 60, 110, 0.08);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.sell-hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  font-weight: 600;
  color: var(--navy-deep);
  letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
}

.sell-hero-copy h1 em {
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
}

.sell-hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 2rem;
  max-width: 36rem;
}

.sell-hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.sell-hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 1rem;
  color: var(--text);
}

.bullet-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.sell-hero-trust {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-badge {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  display: flex;
  flex-direction: column;
  min-width: 120px;
}

.trust-badge strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy-deep);
  font-weight: 600;
  line-height: 1;
}

.trust-badge span {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  margin-top: 0.3rem;
  letter-spacing: 0.02em;
}

/* ===== FORM CARD ===== */

.sell-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.25rem 2rem 2rem;
  box-shadow: 0 20px 60px -20px rgba(26, 60, 110, 0.25), 0 6px 20px -10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 6rem;
  border: 1px solid rgba(201, 168, 76, 0.25);
}

.sell-form-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.sell-form-header h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--navy-deep);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.sell-form-header p {
  font-size: 0.9rem;
  color: var(--text-tertiary);
}

.sell-step-indicator {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.step-dot {
  width: 2rem;
  height: 4px;
  border-radius: 2px;
  background: #e2ddd5;
  transition: background 0.3s ease;
}

.step-dot.active {
  background: var(--gold);
}

.sell-step {
  border: none;
  padding: 0;
  margin: 0;
  display: none;
}

.sell-step.active {
  display: block;
  animation: stepIn 0.3s var(--ease-out);
}

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

.sell-step legend {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  padding: 0;
  width: 100%;
}

.sell-form-group {
  margin-bottom: 1rem;
}

.sell-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.sell-form-group .optional {
  color: var(--text-tertiary);
  font-weight: 400;
  font-size: 0.78rem;
  margin-left: 0.25rem;
}

.sell-form-group input,
.sell-form-group select,
.sell-form-group textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.sell-form-group input:focus,
.sell-form-group select:focus,
.sell-form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.sell-form-group input.error,
.sell-form-group select.error {
  border-color: #c0392b;
  background: #fdf3f1;
}

.sell-form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.sell-form-row {
  display: grid;
  grid-template-columns: 1fr 0.7fr 0.8fr;
  gap: 0.75rem;
}

.sell-form-group-narrow {
  min-width: 0;
}

.sell-field-error {
  display: block;
  font-size: 0.78rem;
  color: #c0392b;
  margin-top: 0.3rem;
}

.sell-btn {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.4rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  letter-spacing: 0.005em;
}

.sell-btn-next,
.sell-btn-primary {
  background: var(--navy);
  color: #fff;
  width: 100%;
  box-shadow: 0 4px 14px -4px rgba(26, 60, 110, 0.4);
}

.sell-btn-next:hover,
.sell-btn-primary:hover {
  background: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px -4px rgba(26, 60, 110, 0.5);
}

.sell-btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.sell-btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.sell-btn-ghost:hover {
  background: var(--warm-white);
  color: var(--navy);
}

.sell-form-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.sell-form-actions .sell-btn-ghost {
  flex: 0 0 auto;
}

.sell-form-actions .sell-btn-next,
.sell-form-actions .sell-btn-primary {
  flex: 1;
}

.sell-form-fineprint {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  text-align: center;
  margin-top: 0.9rem;
  line-height: 1.4;
}

.sell-form-success {
  text-align: center;
  padding: 1.5rem 0.5rem;
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: #2d6a4f;
  color: #fff;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.sell-form-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy-deep);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.sell-form-success p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.success-call {
  font-weight: 500;
  color: var(--text);
}

.success-call a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}

.success-call a:hover {
  color: var(--gold);
}

/* ===== SECTION SHELL ===== */

.sell-section-head {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.sell-section-label {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.sell-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--navy-deep);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.sell-section-head > p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* ===== HOW IT WORKS ===== */

.sell-how {
  padding: 6rem 2rem;
  background: #fff;
}

.sell-steps {
  max-width: 1100px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.sell-steps li {
  padding: 2rem 1.75rem;
  background: var(--warm-white);
  border-radius: 14px;
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.sell-steps li:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -16px rgba(26, 60, 110, 0.2);
}

.sell-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.sell-steps h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy-deep);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.sell-steps p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ===== COMPARE ===== */

.sell-compare {
  padding: 6rem 2rem;
  background: var(--cream);
}

.sell-compare-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.compare-col {
  padding: 2.25rem 2rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
}

.compare-col h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.compare-us {
  background: linear-gradient(180deg, #fff 0%, #fbf9f3 100%);
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 12px 32px -16px rgba(26, 60, 110, 0.18);
}

.compare-us h3 {
  color: var(--navy-deep);
}

.compare-them h3 {
  color: var(--text-secondary);
}

.compare-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-col li {
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.45;
}

.compare-col li:last-child {
  border-bottom: none;
}

.compare-col strong {
  color: var(--navy-deep);
  font-weight: 600;
  margin-right: 0.3rem;
}

.compare-them li {
  color: var(--text-secondary);
}

.sell-compare-footer {
  max-width: 820px;
  margin: 2.5rem auto 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
}

/* ===== WHO WE ARE ===== */

.sell-who {
  padding: 6rem 2rem;
  background: #fff;
}

.sell-who-inner {
  max-width: 900px;
  margin: 0 auto;
}

.sell-who-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--navy-deep);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.sell-who-copy p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.sell-who-people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.sell-who-person {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--warm-white);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.sell-who-person img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.sell-who-person strong {
  display: block;
  font-size: 1rem;
  color: var(--navy-deep);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.sell-who-person span {
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

/* ===== DISCLOSURES ===== */

.sell-disclosure {
  padding: 6rem 2rem;
  background: #fff;
}

.sell-disclosure-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.disc-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.5rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.disc-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 10px 24px -12px rgba(26, 60, 110, 0.18);
}

.disc-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy-deep);
  font-weight: 600;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.disc-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.55;
}

.disc-card a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
}

.disc-card a:hover { color: var(--gold); }

.sell-disclosure-footer {
  max-width: 720px;
  margin: 2.5rem auto 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.sell-disclosure-footer a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}

.sell-disclosure-footer a:hover { color: var(--gold); }

@media (max-width: 700px) {
  .sell-disclosure { padding: 4rem 1.25rem; }
}

/* ===== FAQ ===== */

.sell-faq {
  padding: 6rem 2rem;
  background: var(--warm-white);
}

.sell-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.sell-faq-list details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.1rem 1.5rem;
  margin-bottom: 0.75rem;
  transition: box-shadow 0.2s ease;
}

.sell-faq-list details[open] {
  box-shadow: 0 8px 24px -12px rgba(26, 60, 110, 0.2);
  border-color: rgba(201, 168, 76, 0.4);
}

.sell-faq-list summary {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-deep);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}

.sell-faq-list summary::-webkit-details-marker {
  display: none;
}

.sell-faq-list summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.2s ease;
}

.sell-faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.sell-faq-list details p {
  margin-top: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ===== FINAL CTA ===== */

.sell-final-cta {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #fff;
  text-align: center;
}

.sell-final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.sell-final-cta > p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

.sell-btn-large {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: 10px;
  box-shadow: 0 10px 30px -8px rgba(201, 168, 76, 0.5);
}

.sell-btn-large:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -8px rgba(201, 168, 76, 0.6);
}

.sell-final-or {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.sell-final-or a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.sell-final-or a:hover {
  color: var(--gold-light);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
  .sell-hero {
    padding: 5.5rem 1.25rem 3rem;
  }

  .sell-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .sell-form-card {
    position: static;
    padding: 2rem 1.5rem;
  }

  .sell-how,
  .sell-compare,
  .sell-who,
  .sell-faq,
  .sell-final-cta {
    padding: 4rem 1.25rem;
  }

  .sell-steps {
    grid-template-columns: 1fr;
  }

  .sell-compare-grid,
  .sell-who-people {
    grid-template-columns: 1fr;
  }

  .sell-form-row {
    grid-template-columns: 1fr;
  }

  .sell-hero-trust {
    gap: 0.5rem;
  }

  .trust-badge {
    flex: 1;
    min-width: 0;
    padding: 0.7rem 0.9rem;
  }
}

@media (max-width: 520px) {
  .sell-nav-phone {
    font-size: 0.85rem;
    padding: 0.5rem 0.85rem;
  }

  .sell-hero-bullets li {
    font-size: 0.95rem;
  }
}
