/* Sell Page - Custom Styles */

/* Page wrapper prevents horizontal scroll */
.sell-page-wrapper {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Hero section - brand guide blue-to-white gradient (lighter top) */
#sell-main-hero {
  background: linear-gradient(
    180deg,
    #1e40af 0%,
    #2563eb 15%,
    #3b82f6 30%,
    #60a5fa 45%,
    #93c5fd 60%,
    #bfdbfe 75%,
    #dbeafe 85%,
    #f0f9ff 93%,
    #ffffff 100%
  );
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

/* CTA button — orange glow, most vibrant element on page */
#sell-main-hero button[data-user-listing-start-target="submitButton"] {
  box-shadow:
    0 4px 14px rgba(255, 79, 0, 0.4),
    0 2px 6px rgba(255, 79, 0, 0.2);
  transition: all 0.2s ease;
}

#sell-main-hero button[data-user-listing-start-target="submitButton"]:hover {
  box-shadow:
    0 6px 20px rgba(255, 79, 0, 0.5),
    0 3px 10px rgba(255, 79, 0, 0.3),
    0 0 30px rgba(255, 79, 0, 0.15);
}

/* Property card — floating above gradient with depth shadow */
/* Property card — inner glow + soft blue shadows (floating in liquid) */

/* Subtle spotlight behind CTA area - matches home page */
#sell-main-hero::after {
  content: '';
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 40%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

@media (min-width: 1024px) {
  #sell-main-hero {
    min-height: 550px;
  }
}

@media (min-width: 1440px) {
  #sell-main-hero {
    min-height: 600px;
  }
}

@media (min-width: 1920px) {
  #sell-main-hero {
    min-height: 650px;
  }
}

/* Legacy class - keeping for backwards compatibility */
.sell-hero {
  position: relative;
  min-height: 600px;
  overflow: visible;
  background: linear-gradient(
    180deg,
    #1e40af 0%,
    #2563eb 15%,
    #3b82f6 30%,
    #60a5fa 45%,
    #93c5fd 60%,
    #bfdbfe 75%,
    #dbeafe 85%,
    #f0f9ff 93%,
    #ffffff 100%
  ) !important;
}

/* Hero content - pushed down more than find page */
.sell-hero .hero-content-wrapper {
  padding-top: 8rem;
  padding-bottom: 4rem;
}

/* ===== WINDOW SHADE REVEAL PATTERN ===== */

.shade-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

/* House image - visible from the start */
.shade-house-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Night overlay - darkens the scene */
.night-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 30, 0.55);
  transition: opacity 800ms ease;
  pointer-events: none;
  z-index: 1;
}

/* Vignette effect for drama */
.night-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.3) 100%);
}

/* When lights are on, fade the night overlay */
.shade-container.is-day .night-overlay {
  opacity: 0.25;
}

/* Window glow elements */
.window-glow {
  position: absolute;
  background: rgba(255, 210, 120, 0.7);
  filter: blur(20px);
  border-radius: 8px;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 600ms ease, transform 600ms ease;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 2;
}

/* Glow turns on */
.window-glow.glow-on {
  opacity: 1;
  transform: scale(1.05);
}

/* Subtle pulse after glow is on */
.window-glow.glow-on::after {
  content: '';
  position: absolute;
  inset: -20%;
  background: inherit;
  filter: blur(30px);
  border-radius: inherit;
  opacity: 0.5;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

/* Window shade - pulls down from top */
.window-shade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 1;
  transform-origin: top center;
  animation: shadePullDown 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.5s;
  /* Start fully covering */
  transform: scaleY(1);
  /* Blue gradient matching brand */
  background: linear-gradient(
    180deg,
    rgba(30, 64, 175, 0.95) 0%,
    rgba(37, 99, 235, 0.9) 30%,
    rgba(59, 130, 246, 0.85) 60%,
    rgba(96, 165, 250, 0.75) 100%
  );
}

/* Shade bottom edge - fabric fold effect */
.window-shade::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.15) 100%
  );
  border-radius: 0 0 4px 4px;
}

/* Pull cord visual on right side */
.shade-pull-cord {
  position: absolute;
  right: 60px;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  z-index: 2;
  animation: cordPull 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.5s;
}

/* Pull cord handle */
.shade-pull-cord::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 24px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Shade pull down animation - stops below subheadline */
@keyframes shadePullDown {
  0% {
    transform: scaleY(1);
    opacity: 1;
  }
  70% {
    transform: scaleY(0.48);
    opacity: 0.9;
  }
  85% {
    transform: scaleY(0.50);
    opacity: 0.85;
  }
  100% {
    transform: scaleY(0.45);
    opacity: 0.8;
  }
}

/* Cord follows shade */
@keyframes cordPull {
  0% {
    height: 100%;
  }
  100% {
    height: 45%;
  }
}


/* ===== HERO TEXT REVEAL ANIMATIONS ===== */

/* Whimsical blur-to-sharp sweep reveal for headline */
@keyframes whimsicalReveal {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
    filter: blur(6px);
    transform: scale(1.02);
  }
  40% {
    opacity: 1;
    filter: blur(3px);
  }
  100% {
    clip-path: inset(0 0% 0 0);
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

/* Slide up with fade for subheadline and form */
@keyframes slideUpReveal {
  0% {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Hero headline - whimsical blur-to-sharp sweep effect */
.sell-hero .hero-headline {
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  filter: blur(6px);
  animation: whimsicalReveal 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.3s;
}

/* Hero subheadline - slides up after headline */
.sell-hero .hero-subheadline {
  opacity: 0;
  transform: translateY(40px);
  animation: slideUpReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 1.1s;
}

/* Hero form container - slides up after subheadline */
.sell-hero .hero-form-container {
  opacity: 0;
  transform: translateY(40px);
  animation: slideUpReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 1.4s;
}

/* ===== HERO FORM STYLING ===== */

/* Elevated form with glow effect */
.sell-hero .hero-form-container input[type="text"] {
  background: white !important;
  border: 2px solid rgba(255, 255, 255, 0.8) !important;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sell-hero .hero-form-container input[type="text"]:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.sell-hero .hero-form-container input[type="text"]:focus {
  border-color: #FF4F00 !important;
  box-shadow:
    0 12px 40px rgba(249, 115, 22, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.1),
    0 0 0 4px rgba(249, 115, 22, 0.1);
}

/* ===== SUGGESTIONS DROPDOWN ===== */
.sell-hero .hero-form-container {
  overflow: visible !important;
}

/* Ensure all parent containers allow dropdown overflow */
.sell-hero,
.sell-hero .hero-content-wrapper,
.sell-hero .hero-form-container,
.sell-hero .hero-form-container > div,
.sell-hero form,
.sell-hero form > div,
.sell-hero form .space-y-4,
.sell-hero form .relative {
  overflow: visible !important;
}

/* ===== SCROLL JOURNEY — Dashboard Hub ===== */

.scroll-journey-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 30%, #f1f5f9 60%, #f8fafc 85%, #ffffff 100%);
  padding: 5rem 0 0;
}

/* Header */
.scroll-journey-header {
  text-align: center;
  margin-bottom: 3.5rem;
  padding: 0 1.5rem;
}

.scroll-journey-eyebrow {
  display: inline-block;
  color: #1e40af;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 2rem;
}

.scroll-journey-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .scroll-journey-title {
    font-size: 2.75rem;
  }
}

.scroll-journey-subtitle {
  font-size: 1.0625rem;
  color: #64748b;
  max-width: 32rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---- Three-column contained layout ---- */
.scroll-journey-layout {
  display: flex;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  height: 480px;
}

/* LEFT: Steps scroll inside this fixed container */
.scroll-journey-left {
  flex: 1;
  overflow-y: auto;
  padding: 0 1.5rem 0 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.scroll-journey-left::-webkit-scrollbar {
  display: none;
}

/* CENTER: Vertical line column */
.scroll-journey-center {
  flex: 0 0 56px;
  position: relative;
  display: flex;
  justify-content: center;
}

.scroll-center-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    #e2e8f0 4%,
    #cbd5e1 50%,
    #e2e8f0 96%,
    transparent 100%
  );
}

/* Traveling starburst — positioned by JS along the line */
.scroll-center-traveler {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: #FF4F00;
  filter: drop-shadow(0 2px 6px rgba(255, 79, 0, 0.3));
  transition: top 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.scroll-starburst {
  width: 32px;
  height: 32px;
}

/* RIGHT: Static dashboard hub (no scroll, no sticky — stays put) */
.scroll-journey-right {
  flex: 0 0 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

/* ---- Dashboard gauge container ---- */
.scroll-journey-dashboard {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Stat circle wrapper — positions SVG + center content */
.stat-circle-wrap {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-circle-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

/* Outer ring — track */
.stat-ring-track {
  fill: none;
  stroke: #e2e8f0;
  stroke-width: 4;
}

/* Outer ring — animated fill */
.stat-ring-fill {
  fill: none;
  stroke: #FF4F00;
  stroke-width: 5;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  filter: drop-shadow(0 0 6px rgba(255, 79, 0, 0.4));
}

/* Inner ring — track */
.stat-ring-inner-track {
  fill: none;
  stroke: #f1f5f9;
  stroke-width: 2.5;
}

/* Inner ring — fill (follows outer at slight delay) */
.stat-ring-inner-fill {
  fill: none;
  stroke: rgba(255, 79, 0, 0.25);
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
}

/* Center content — icon, number, label */
.stat-circle-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.stat-center-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 20px rgba(255, 79, 0, 0.12),
    0 2px 8px rgba(30, 64, 175, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.stat-center-icon i {
  font-size: 1.125rem;
  color: #FF4F00;
  transition: all 0.4s ease;
}

/* The big number */
.stat-center-value {
  display: flex;
  align-items: baseline;
  gap: 1px;
  line-height: 1;
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  transition: opacity 0.15s ease, transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.stat-suffix {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FF4F00;
  letter-spacing: -0.02em;
}

.stat-center-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
  transition: color 0.4s ease;
}

/* Step badge below gauge */
.stat-step-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 1.5rem;
  padding: 6px 16px;
  border-radius: 100px;
  background: white;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.06);
}

.stat-badge-num {
  font-size: 0.875rem;
  font-weight: 800;
  color: #FF4F00;
  font-variant-numeric: tabular-nums;
}

.stat-badge-divider {
  font-size: 0.75rem;
  color: #cbd5e1;
  font-weight: 300;
}

.stat-badge-total {
  font-size: 0.875rem;
  font-weight: 600;
  color: #94a3b8;
  font-variant-numeric: tabular-nums;
}

/* ---- Scrolling steps ---- */
.scroll-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  /* Top/bottom padding = half container height so first/last step can center */
  padding-top: 200px;
  padding-bottom: 200px;
}

/* Individual step — flows naturally, previous/next visible */
.scroll-step {
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  opacity: 0.25;
  transition: opacity 0.4s ease;
}

.scroll-step:last-child {
  border-bottom: none;
}

.scroll-step.is-active {
  opacity: 1;
}

.scroll-step.is-past {
  opacity: 0.4;
}

/* Orange highlight on key stats in copy */
.stat-highlight {
  color: #FF4F00;
  font-weight: 700;
}

/* Step marker — mobile only (desktop uses center line) */
.scroll-step-marker {
  flex-shrink: 0;
  position: relative;
  display: none;
  flex-direction: column;
  align-items: center;
  width: 3rem;
}

.scroll-step-marker i {
  font-size: 0.875rem;
  color: #94a3b8;
}

.scroll-step.is-active .scroll-step-marker i {
  color: #FF4F00;
}

/* Step body content */
.scroll-step-body {
  flex: 1;
  min-width: 0;
  padding-top: 4px;
}

.scroll-step-num {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.375rem;
  transition: color 0.4s ease;
}

.scroll-step.is-active .scroll-step-num {
  color: #FF4F00;
}

.scroll-step-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.375rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  transition: color 0.4s ease;
}

.scroll-step.is-active .scroll-step-title {
  color: #0f172a;
}

.scroll-step-desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 0.375rem;
}

.scroll-step-detail {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              opacity 0.4s ease,
              margin 0.4s ease;
  opacity: 0;
}

/* Detail expands when step is active */
.scroll-step.is-active .scroll-step-detail {
  max-height: 100px;
  opacity: 1;
  margin-top: 0.25rem;
}

/* Final "Sold" step — orange title */
.scroll-step--final .scroll-step-title {
  color: #FF4F00;
}

/* ---- Mobile: stack vertically ---- */
@media (max-width: 1023px) {
  .scroll-journey-layout {
    flex-direction: column;
    height: auto;
  }

  /* Dashboard on top */
  .scroll-journey-right {
    order: 1;
    flex: none;
    width: 100%;
    padding: 0 1.5rem 1.5rem;
  }

  .scroll-journey-center {
    order: 2;
    flex: none;
    display: none;
  }

  .scroll-journey-left {
    order: 3;
    flex: none;
    width: 100%;
    padding: 0 1.5rem 3rem;
    overflow-y: visible;
    height: auto;
  }

  .stat-circle-wrap {
    width: 200px;
    height: 200px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-center-icon {
    width: 38px;
    height: 38px;
  }

  .stat-center-icon i {
    font-size: 0.9375rem;
  }

  .scroll-steps {
    padding-top: 0;
    padding-bottom: 0;
  }

  .scroll-step-marker {
    display: flex;
  }

  .scroll-step {
    padding: 1.25rem 0;
    opacity: 1;
  }

  .scroll-step.is-upcoming {
    opacity: 0.5;
  }

  .scroll-step-title {
    font-size: 1.125rem;
  }

  .scroll-step-desc {
    font-size: 0.875rem;
  }

  .scroll-step-detail {
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .scroll-journey-header {
    padding: 0 1rem;
  }

  .scroll-journey-left {
    padding: 0 1rem 2rem;
  }

  .stat-circle-wrap {
    width: 170px;
    height: 170px;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .scroll-step {
    gap: 1rem;
  }

  .scroll-step-title {
    font-size: 1rem;
  }
}

/* ===== FAQ ACCORDION SECTION - Framer Style ===== */

/* FAQ Container - Framer-inspired design */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 26px;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Individual FAQ Item */
.faq-item {
  background: white;
  border-radius: 22px;
  border: none;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    inset 1px 1px 0 0 rgba(255, 255, 255, 0.15),
    0 2px 8px rgba(30, 64, 175, 0.06),
    0 1px 3px rgba(30, 64, 175, 0.04);
}

.faq-item:hover {
  box-shadow:
    inset 1px 1px 0 0 rgba(255, 255, 255, 0.2),
    0 8px 24px rgba(30, 64, 175, 0.1),
    0 4px 12px rgba(30, 64, 175, 0.06);
  transform: translateY(-2px);
}

.faq-item-open {
  box-shadow:
    inset 1px 1px 0 0 rgba(255, 255, 255, 0.2),
    0 12px 32px rgba(30, 64, 175, 0.12),
    0 6px 16px rgba(30, 64, 175, 0.08);
}

/* FAQ Trigger Button */
.faq-trigger {
  min-height: 76px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.faq-trigger:hover {
  background: rgba(255, 79, 0, 0.03);
}

.faq-trigger:focus {
  outline: none;
}

.faq-trigger:focus-visible {
  outline: 2px solid #FF4F00;
  outline-offset: -2px;
  border-radius: 22px;
}

/* Question Text */
.faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.faq-number {
  font-size: 14px;
  font-weight: 600;
  color: #94a3b8;
  min-width: 24px;
}

.faq-question-text {
  font-size: 17px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
}

/* Expand Icon with Spring Animation */
.faq-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-item-open .faq-icon {
  background: linear-gradient(135deg, #FF4F00 0%, #D94300 100%);
  transform: scale(1.05);
}

.faq-icon i {
  font-size: 12px;
  color: #FF4F00;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-item-open .faq-icon i {
  color: white;
}

.faq-icon i.rotate-180 {
  transform: rotate(180deg);
}

/* FAQ Content with Spring Animation */
.faq-content {
  overflow: hidden;
}

.faq-answer {
  padding: 0 24px 24px 64px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item-open .faq-answer {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .faq-container {
    border-radius: 20px;
    padding: 3px;
  }

  .faq-item {
    border-radius: 17px;
  }

  .faq-trigger {
    min-height: 68px;
    padding: 16px 18px;
  }

  .faq-question-text {
    font-size: 15px;
  }

  .faq-icon {
    width: 36px;
    height: 36px;
  }

  .faq-answer {
    padding: 0 18px 20px 52px;
    font-size: 15px;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .sell-hero .hero-headline,
  .sell-hero .hero-subheadline,
  .sell-hero .hero-form-container {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
    clip-path: none;
  }

  .window-shade {
    animation: none;
    transform: scaleY(0.45);
    opacity: 0.8;
  }

  .shade-pull-cord {
    animation: none;
    height: 45%;
  }

  .window-glow {
    transition: none;
  }

  .window-glow.glow-on::after {
    animation: none;
  }

  .night-overlay {
    transition: none;
  }

  /* FAQ reduced motion */
  .faq-item,
  .faq-icon,
  .faq-icon i,
  .faq-answer {
    transition: none !important;
  }

  .faq-item:hover {
    transform: none;
  }
}

/* ===== HOW TO LIST WITH US SECTION ===== */

.sell-how-listing-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f0f9ff 100%);
  padding: 4rem 0 5rem;
}

.how-listing-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.how-listing-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.how-listing-eyebrow {
  display: inline-block;
  color: #1e40af;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 2rem;
}

.how-listing-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .how-listing-title {
    font-size: 2rem;
  }
}

.how-listing-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* Feature Grid */
.how-listing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .how-listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .how-listing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* Feature Cards — glass path: inner glow + blue shadows */
.how-listing-card {
  background: white;
  border-radius: 0.75rem;
  padding: 1.25rem;
  border: 1px solid #e2e8f0;
  box-shadow:
    inset 1px 1px 0 0 rgba(255, 255, 255, 0.15),
    0 2px 8px rgba(30, 64, 175, 0.06),
    0 1px 3px rgba(30, 64, 175, 0.04);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.how-listing-card:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 1px 1px 0 0 rgba(255, 255, 255, 0.2),
    0 12px 28px rgba(30, 64, 175, 0.1),
    0 6px 14px rgba(30, 64, 175, 0.06);
  border-color: #cbd5e1;
}

.how-listing-card-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.how-listing-card:hover .how-listing-card-icon {
  transform: scale(1.05);
}

.how-listing-card-icon i {
  font-size: 1.125rem;
  color: white !important;
}

.how-listing-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.how-listing-card-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  flex-grow: 1;
}

.how-listing-card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #FF4F00;
  background: #fff7ed;
  padding: 0.375rem 0.75rem;
  border-radius: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: auto;
  align-self: flex-start;
}

/* Bottom CTA */
.how-listing-cta {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.how-listing-cta-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.how-listing-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #FF4F00 0%, #D94300 100%);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 14px rgba(255, 79, 0, 0.3);
}

.how-listing-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 79, 0, 0.4);
  background: linear-gradient(135deg, #D94300 0%, #dc2626 100%);
}

.how-listing-cta-button i {
  margin-right: 0.5rem;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .sell-how-listing-section {
    padding: 3.5rem 0 4rem;
  }

  .how-listing-container {
    padding: 0 1rem;
  }

  .how-listing-title {
    font-size: 1.75rem;
  }

  .how-listing-subtitle {
    font-size: 1rem;
  }

  .how-listing-card {
    padding: 1.5rem;
  }

  .how-listing-card-icon {
    width: 3rem;
    height: 3rem;
  }

  .how-listing-card-icon i {
    font-size: 1.25rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .how-listing-card,
  .how-listing-card-icon,
  .how-listing-cta-button {
    transition: none;
  }

  .how-listing-card:hover,
  .how-listing-cta-button:hover {
    transform: none;
  }
}
