/* Sell Page - Custom Styles */

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

/* Hero section with blue to white gradient */
.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: #f97316 !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;
}

/* ===== SELL JOURNEY TIMELINE SECTION ===== */

.sell-journey-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 5rem 0 6rem;
}

.journey-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header - stacked, full width */
.journey-header {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 3rem;
}

.journey-header > * {
  display: block;
  width: 100%;
}

.journey-eyebrow {
  display: block;
  color: #f16700;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.journey-title {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: none;
}

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

.journey-subtitle {
  display: block;
  font-size: 1.125rem;
  color: #64748b;
  max-width: 32rem;
  margin: 0 auto;
}

/* Timeline Container */
.journey-timeline {
  position: relative;
  padding-left: 3.5rem;
}

@media (min-width: 768px) {
  .journey-timeline {
    padding-left: 4.5rem;
  }
}

/* SVG Curved Timeline Line - wider curves */
.timeline-curve {
  position: absolute;
  left: -10px;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 0;
}

@media (min-width: 768px) {
  .timeline-curve {
    width: 70px;
    left: -10px;
  }
}

.timeline-curve-bg {
  stroke: #e2e8f0;
  stroke-linecap: round;
}

.timeline-curve-fill {
  stroke-linecap: round;
  transition: stroke-dashoffset 0.3s ease-out;
}

/* Steps Container */
.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .timeline-steps {
    gap: 2rem;
  }
}

/* Individual Step */
.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (min-width: 768px) {
  .timeline-step {
    gap: 1.5rem;
  }

  /* Staggered card positions - alternating left/right offset */
  .timeline-step:nth-child(odd) {
    transform: translateX(0);
  }

  .timeline-step:nth-child(even) {
    transform: translateX(2rem);
  }

  .timeline-step:nth-child(3n) {
    transform: translateX(1rem);
  }
}

/* Step Marker - centered on the curve */
.step-marker {
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  /* SVG is 60px wide at left:-10px, center at x=30, so 30-10=20px from timeline edge */
  transform: translateX(calc(-3.5rem + 20px - 1.25rem));
}

@media (min-width: 768px) {
  .step-marker {
    width: 3rem;
    height: 3rem;
    /* SVG is 70px wide at left:-10px, center at x=35, so 35-10=25px from timeline edge */
    transform: translateX(calc(-4.5rem + 25px - 1.5rem));
  }

  /* Counter-transform markers to stay on curve when cards stagger */
  /* Step pattern: odd=0, even=2rem, 3n=1rem */
  .timeline-step:nth-child(even) .step-marker {
    transform: translateX(calc(-4.5rem + 25px - 1.5rem - 2rem));
  }

  .timeline-step:nth-child(3n) .step-marker {
    transform: translateX(calc(-4.5rem + 25px - 1.5rem - 1rem));
  }
}

.step-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: white;
  border: 3px solid #e2e8f0;
  color: #94a3b8;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (min-width: 768px) {
  .step-number {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }
}

/* Upcoming step - muted */
.timeline-step.is-upcoming .step-number {
  background: white;
  border-color: #e2e8f0;
  color: #94a3b8;
}

.timeline-step.is-upcoming .step-card {
  opacity: 0.6;
}

/* Active step - current (orange) */
.timeline-step.is-active .step-number {
  background: #f97316;
  border-color: #f97316;
  color: white;
}

/* Past step - completed (orange, same as active) */
.timeline-step.is-past .step-number {
  background: #f97316;
  border-color: #f97316;
  color: white;
}

/* Step Card */
.step-card {
  flex: 1;
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 768px) {
  .step-card {
    padding: 1.5rem;
    gap: 1.25rem;
  }
}

/* Active/past step cards - full opacity */
.timeline-step.is-active .step-card,
.timeline-step.is-past .step-card {
  opacity: 1;
}

/* Card hover effect */
.timeline-step:hover .step-card {
  transform: translateX(6px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Step Card Icon */
.step-card-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card-icon i {
  font-size: 1.25rem;
  color: white;
  transition: transform 0.3s ease;
}

.timeline-step:hover .step-card-icon i {
  transform: scale(1.15);
}

/* Step Card Content */
.step-card-content {
  flex: 1;
  min-width: 0;
}

.step-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.step-card-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.step-card-outcome {
  font-size: 0.8rem;
  font-weight: 600;
  color: #f16700;
  font-style: italic;
}

/* Journey CTA */
.journey-cta {
  margin-top: 3rem;
  text-align: center;
}

.journey-cta-text {
  font-size: 1.125rem;
  color: #475569;
  max-width: 32rem;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
}

.journey-cta-text strong {
  color: #1e40af;
}

/* Responsive - Mobile tweaks */
@media (max-width: 480px) {
  .journey-container {
    padding: 0 1rem;
  }

  .journey-timeline {
    padding-left: 3rem;
  }

  .timeline-curve {
    width: 50px;
    left: -8px;
  }

  .step-marker {
    left: 0;
    width: 2rem;
    height: 2rem;
    /* SVG 50px wide at left:-8px, center at 25px, so 25-8=17px */
    transform: translateX(calc(-3rem + 17px - 1rem));
  }

  .step-number {
    width: 2rem;
    height: 2rem;
    font-size: 0.75rem;
    border-width: 2px;
  }

  .step-card {
    flex-direction: column;
    padding: 1rem;
    gap: 0.75rem;
  }

  .step-card-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .step-card-icon i {
    font-size: 1rem;
  }

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

  .step-card-desc {
    font-size: 0.85rem;
  }

  /* No stagger on mobile */
  .timeline-step:nth-child(odd),
  .timeline-step:nth-child(even),
  .timeline-step:nth-child(3n) {
    transform: translateX(0) !important;
  }
}

/* ===== 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: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.faq-item-open {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* 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(241, 103, 0, 0.03);
}

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

.faq-trigger:focus-visible {
  outline: 2px solid #f16700;
  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, #f16700 0%, #ea580c 100%);
  transform: scale(1.05);
}

.faq-icon i {
  font-size: 12px;
  color: #f16700;
  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 */
.how-listing-card {
  background: white;
  border-radius: 0.75rem;
  padding: 1.25rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.how-listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  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: #f16700;
  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, #f16700 0%, #ea580c 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(241, 103, 0, 0.3);
}

.how-listing-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(241, 103, 0, 0.4);
  background: linear-gradient(135deg, #ea580c 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;
  }
}
