/* ============================================
   SELL.CSS — Sell Page-Specific Styles
   ============================================

   Styles that ONLY apply to the sell page.
   ============================================ */


/* ----- HERO SECTION ----- */

.sell-hero {
  min-height: 100vh;
  background-color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.sell-hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: 22vw;
  font-weight: var(--weight-bold);
  color: rgba(201, 169, 110, 0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.02em;
}

.sell-hero-line-left,
.sell-hero-line-right {
  position: absolute;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
  opacity: 0.15;
}

.sell-hero-line-left {
  left: 15%;
  top: 0;
  height: 100%;
  animation: sellLineFloat 8s ease-in-out infinite;
}

.sell-hero-line-right {
  right: 20%;
  top: 0;
  height: 100%;
  animation: sellLineFloat 8s ease-in-out 2s infinite;
}

@keyframes sellLineFloat {
  0%, 100% { opacity: 0.08; }
  50% { opacity: 0.2; }
}

.sell-hero-content {
  position: relative;
  z-index: 2;
}

.sell-hero-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid rgba(201, 169, 110, 0.25);
  padding: 10px 24px;
  margin-bottom: var(--space-3xl);
  opacity: 0;
  animation: sellFadeUp 0.7s ease 0.2s forwards;
}

.sell-hero h1 {
  font-size: 5rem;
  font-weight: var(--weight-medium);
  color: var(--color-white);
  line-height: 1.0;
  max-width: 800px;
  margin: 0 auto var(--space-md);
  opacity: 0;
  animation: sellFadeUp 0.8s ease 0.4s forwards;
}

.sell-hero-em {
  display: block;
  font-style: italic;
  color: var(--color-gold);
  font-size: 5.625rem;
  margin-top: var(--space-sm);
}

.sell-hero-sub {
  font-size: var(--text-md);
  font-weight: var(--weight-light);
  color: rgba(255, 255, 255, 0.35);
  max-width: 480px;
  line-height: var(--leading-relaxed);
  margin: var(--space-xl) auto var(--space-3xl);
  opacity: 0;
  animation: sellFadeUp 0.7s ease 0.6s forwards;
}

.sell-hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  animation: sellFadeUp 0.7s ease 0.8s forwards;
}

.sell-btn-gold {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-navy);
  background-color: var(--color-gold);
  padding: 18px 42px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition-base);
}

.sell-btn-gold:hover {
  background-color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(201, 169, 110, 0.25);
}

.sell-btn-ghost {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  padding: 18px 32px;
  transition: color var(--transition-base);
}

.sell-btn-ghost:hover {
  color: var(--color-gold);
}

.sell-btn-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.sell-hero-credential {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 10px 24px;
  border-radius: 50px;
  margin-top: var(--space-2xl);
  opacity: 0;
  animation: sellFadeUp 0.7s ease 1s forwards;
}

.sell-hero-credential-star {
  width: 16px;
  height: 16px;
  fill: var(--color-gold);
  flex-shrink: 0;
}

.sell-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: sellFadeIn 0.6s ease 1.3s forwards;
}

.sell-scroll-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-gold);
  border-radius: 50%;
  animation: sellScrollBounce 2s ease infinite;
}

.sell-scroll-hint span {
  font-size: 0.5625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.15);
}

@keyframes sellScrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(10px); opacity: 1; }
}


/* ----- STATS SECTION ----- */

.sell-stats-section {
  padding: var(--space-5xl) var(--space-3xl);
  background-color: var(--color-off-white);
}

.sell-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1100px;
  margin: 0 auto;
}

.sell-stat-block {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.sell-stat-block.is-visible { animation: sellFadeUp 0.6s ease forwards; }
.sell-stat-block:nth-child(2).is-visible { animation-delay: 0.12s; }
.sell-stat-block:nth-child(3).is-visible { animation-delay: 0.24s; }
.sell-stat-block:nth-child(4).is-visible { animation-delay: 0.36s; }

.sell-stat-block::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.sell-stat-big {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: var(--weight-semibold);
  color: var(--color-navy);
  line-height: 1;
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.sell-stat-big .gold {
  color: var(--color-gold);
}

.sell-stat-desc {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-mid-gray);
  position: relative;
  z-index: 1;
}


/* ----- PROCESS SECTION (TIMELINE) ----- */

.sell-process-section {
  padding: var(--space-5xl) var(--space-3xl);
  background-color: var(--color-white);
  position: relative;
}

.sell-process-header {
  text-align: center;
  margin-bottom: var(--space-5xl);
}

.sell-process-header h2 {
  margin-bottom: 0;
}

.sell-process-header h2 em {
  font-style: italic;
  color: var(--color-gold);
}

.sell-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.sell-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201, 169, 110, 0.25), transparent);
  transform: translateX(-50%);
}

.sell-timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-3xl);
  position: relative;
  opacity: 0;
}

/* Odd items (left side) slide in from the left */
.sell-timeline-item:nth-child(odd) {
  transform: translateX(-40px) translateY(20px);
}

/* Even items (right side) slide in from the right */
.sell-timeline-item:nth-child(even) {
  transform: translateX(40px) translateY(20px);
}

.sell-timeline-item.is-visible {
  animation: sellSlideInLeft 0.7s ease forwards;
}

.sell-timeline-item:nth-child(even).is-visible {
  animation-name: sellSlideInRight;
}

@keyframes sellSlideInLeft {
  from { opacity: 0; transform: translateX(-40px) translateY(20px); }
  to { opacity: 1; transform: translateX(0) translateY(0); }
}

@keyframes sellSlideInRight {
  from { opacity: 0; transform: translateX(40px) translateY(20px); }
  to { opacity: 1; transform: translateX(0) translateY(0); }
}

.sell-timeline-item:nth-child(odd) { flex-direction: row; }
.sell-timeline-item:nth-child(even) { flex-direction: row-reverse; }

.sell-timeline-content {
  width: 42%;
  padding: var(--space-xl) var(--space-2xl);
  background-color: var(--color-off-white);
  border-radius: 6px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.sell-timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(11, 29, 58, 0.06);
}

.sell-timeline-item:nth-child(odd) .sell-timeline-content { margin-right: auto; }
.sell-timeline-item:nth-child(even) .sell-timeline-content { margin-left: auto; }

.sell-timeline-dot {
  position: absolute;
  left: 50%;
  top: 35px;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--color-navy);
  border: 3px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-gold);
}

.sell-timeline-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-medium);
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
}

.sell-timeline-desc {
  font-size: var(--text-sm);
  color: var(--color-mid-gray);
  line-height: var(--leading-relaxed);
  font-weight: var(--weight-light);
}


/* ----- COMPARISON SECTION ----- */

.sell-comparison-section {
  padding: var(--space-5xl) var(--space-3xl);
  background-color: var(--color-navy);
  position: relative;
  overflow: hidden;
}

.sell-comparison-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.sell-comparison-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
  position: relative;
  z-index: 1;
}

.sell-comparison-header h2 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.sell-comparison-header h2 em {
  font-style: italic;
  color: var(--color-gold);
}

.sell-comparison-subtitle {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.4);
  font-weight: var(--weight-light);
  max-width: 500px;
  margin: 0 auto;
}

.sell-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  max-width: 950px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.sell-compare-card {
  border-radius: var(--border-radius-lg);
  padding: var(--space-3xl) var(--space-2xl);
  opacity: 0;
  transform: translateY(30px);
}

.sell-compare-card.is-visible { animation: sellFadeUp 0.6s ease forwards; }
.sell-compare-card:nth-child(2).is-visible { animation-delay: 0.2s; }

.sell-compare-bad {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.sell-compare-good {
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.15);
}

.sell-compare-label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.sell-compare-bad .sell-compare-label { color: #F87171; }
.sell-compare-good .sell-compare-label { color: var(--color-gold); }

.sell-compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.sell-compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: var(--text-base);
  line-height: var(--leading-normal);
}

.sell-compare-bad .sell-compare-list li { color: rgba(255, 255, 255, 0.4); }
.sell-compare-good .sell-compare-list li { color: rgba(255, 255, 255, 0.7); }

.sell-compare-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.sell-compare-bad .sell-compare-icon { background: rgba(248, 113, 113, 0.1); }
.sell-compare-good .sell-compare-icon { background: rgba(201, 169, 110, 0.15); }

.sell-compare-icon svg {
  width: 12px;
  height: 12px;
  stroke-width: 2.5;
  stroke-linecap: round;
  fill: none;
}

.sell-compare-bad .sell-compare-icon svg { stroke: #F87171; }
.sell-compare-good .sell-compare-icon svg { stroke: var(--color-gold); }

.sell-vs-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--color-navy);
  border: 2px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.06em;
  color: var(--color-gold);
  z-index: 5;
}


/* ----- TESTIMONIALS SECTION ----- */

.sell-testimonials-section {
  padding: var(--space-5xl) var(--space-3xl);
  background-color: var(--color-off-white);
  position: relative;
  overflow: hidden;
}

.sell-testimonials-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.sell-testimonials-header h2 {
  margin-bottom: 0;
}

.sell-testimonials-header h2 em {
  font-style: italic;
  color: var(--color-gold);
}

.sell-testimonial-carousel {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.sell-testimonial-slide {
  text-align: center;
  padding: 0 var(--space-lg);
  display: none;
  opacity: 0;
}

.sell-testimonial-slide.active {
  display: block;
  animation: sellTestimonialIn 0.6s ease forwards;
}

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

.sell-big-quote {
  font-family: var(--font-heading);
  font-size: 7.5rem;
  color: var(--color-gold);
  opacity: 0.15;
  line-height: 0.5;
  margin-bottom: var(--space-sm);
}

.sell-slide-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--space-lg);
}

.sell-slide-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--color-gold);
}

.sell-slide-quote {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-regular);
  font-style: italic;
  color: var(--color-navy);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-2xl);
}

.sell-slide-author {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
}

.sell-slide-detail {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.sell-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: var(--space-3xl);
}

.sell-carousel-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 1px solid rgba(11, 29, 58, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.sell-carousel-arrow:hover {
  background-color: var(--color-navy);
  border-color: var(--color-navy);
}

.sell-carousel-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-navy);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  transition: stroke var(--transition-base);
}

.sell-carousel-arrow:hover svg {
  stroke: var(--color-white);
}

.sell-carousel-counter {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  color: var(--color-navy);
  min-width: 50px;
  text-align: center;
}

.sell-carousel-current {
  color: var(--color-gold);
  font-weight: var(--weight-semibold);
}


/* ----- BOTTOM CTA SECTION ----- */

.sell-bottom-cta {
  padding: 160px var(--space-3xl);
  background-color: var(--color-navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sell-bottom-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(201, 169, 110, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.sell-cta-frame {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-5xl) var(--space-3xl);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: var(--border-radius);
}

.sell-cta-frame::before,
.sell-cta-frame::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border-color: var(--color-gold);
  border-style: solid;
  opacity: 0.4;
}

.sell-cta-frame::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.sell-cta-frame::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

.sell-bottom-cta h2 {
  font-size: var(--text-4xl);
  font-weight: var(--weight-medium);
  color: var(--color-white);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.sell-bottom-cta h2 em {
  font-style: italic;
  color: var(--color-gold);
}

.sell-cta-sub {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.35);
  font-weight: var(--weight-light);
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.sell-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.sell-cta-phone {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  padding: 18px 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.sell-cta-phone:hover {
  color: var(--color-gold);
  border-color: rgba(201, 169, 110, 0.3);
}


/* ----- DUAL PLATFORM POWERHOUSE (shared section) ----- */

.dual-platform-section {
  padding: var(--space-5xl) 60px;
  background: var(--color-navy);
  position: relative;
  overflow: hidden;
}

.dual-platform-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.04) 0%, transparent 55%);
  pointer-events: none;
}

.dp-header {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.dp-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: var(--weight-semibold);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 20px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.dp-header h2 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--weight-medium);
  color: var(--color-white);
  margin-bottom: 14px;
}

.dp-header h2 .gold { color: var(--color-gold); }

.dp-subtitle {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.4);
  font-weight: var(--weight-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: var(--leading-relaxed);
}

.dp-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  max-width: 1000px;
  margin: 60px auto 50px;
  position: relative;
  z-index: 1;
  align-items: center;
}

.dp-card {
  padding: 45px 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  opacity: 0;
  transform: translateY(30px);
  text-align: center;
}

.dp-card.is-visible { animation: sellFadeUp 0.6s ease forwards; }
.dp-card:nth-child(3).is-visible { animation-delay: 0.2s; }

.dp-card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-navy);
  background: var(--color-gold);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.dp-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.dp-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}

.dp-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-medium);
  color: var(--color-white);
  margin-bottom: 8px;
}

.dp-card-desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
  line-height: var(--leading-normal);
  font-weight: var(--weight-light);
  margin-bottom: 24px;
}

.dp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.dp-list li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.dp-list li:last-child { border-bottom: none; padding-bottom: 0; }

.dp-list li svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}

.dp-plus {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -12px;
  position: relative;
  z-index: 5;
  flex-shrink: 0;
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
}

.dp-plus svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-navy);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.dp-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

.dp-benefit {
  text-align: center;
  padding: 30px 24px;
  position: relative;
}

.dp-benefit:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.dp-benefit-icon {
  margin-bottom: 10px;
  color: var(--color-gold);
  display: flex;
  justify-content: center;
}

.dp-benefit-icon svg {
  width: 28px;
  height: 28px;
}

.dp-benefit-title {
  font-family: var(--font-heading);
  font-size: var(--text-md);
  font-weight: var(--weight-medium);
  color: var(--color-white);
  margin-bottom: 6px;
}

.dp-benefit-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: var(--weight-light);
  line-height: 1.5;
}


/* ----- VIDEO SHOWCASE SECTION ----- */

.sell-video-section {
  padding: var(--space-5xl) var(--space-3xl);
  background-color: var(--color-off-white);
  text-align: center;
}

.sell-video-heading {
  margin-bottom: var(--space-md);
}

.sell-video-heading em {
  font-style: italic;
  color: var(--color-gold);
}

.sell-video-subtitle {
  font-size: var(--text-base);
  color: var(--color-mid-gray);
  font-weight: var(--weight-light);
  max-width: 500px;
  margin: 0 auto var(--space-3xl);
  line-height: var(--leading-relaxed);
}

.sell-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background-color: var(--color-navy);
}

.sell-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}


/* ----- ANIMATIONS ----- */

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

@keyframes sellFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


/* ----- RESPONSIVE ----- */

@media (max-width: 768px) {
  .sell-hero h1 {
    font-size: 3rem;
  }

  .sell-hero-em {
    font-size: 3.375rem;
  }

  .sell-hero-bg-text {
    font-size: 30vw;
  }

  .sell-hero-cta-group {
    flex-direction: column;
  }

  .sell-hero-line-left,
  .sell-hero-line-right {
    display: none;
  }

  .sell-stats-section {
    padding: var(--space-4xl) var(--space-lg);
  }

  .sell-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sell-stat-big {
    font-size: var(--text-3xl);
  }

  .sell-process-section,
  .sell-comparison-section,
  .sell-video-section,
  .dual-platform-section,
  .sell-testimonials-section,
  .sell-bottom-cta {
    padding: var(--space-4xl) var(--space-lg);
  }

  .dp-header h2 { font-size: var(--text-3xl); }
  .dp-cards { grid-template-columns: 1fr; gap: 20px; }
  .dp-plus { margin: 0 auto; }
  .dp-benefits { grid-template-columns: 1fr; }
  .dp-benefit:not(:last-child)::after { display: none; }

  .sell-process-header h2,
  .sell-comparison-header h2,
  .sell-testimonials-header h2 {
    font-size: var(--text-3xl);
  }

  .sell-timeline::before {
    left: 20px;
  }

  .sell-timeline-item,
  .sell-timeline-item:nth-child(even) {
    flex-direction: row;
  }

  .sell-timeline-content {
    width: 100%;
    margin-left: 50px !important;
    margin-right: 0 !important;
  }

  .sell-timeline-dot {
    left: 20px;
  }

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

  .sell-vs-badge {
    display: none;
  }

  .sell-bottom-cta h2 {
    font-size: var(--text-2xl);
  }

  .sell-cta-buttons {
    flex-direction: column;
  }

  .sell-cta-frame {
    padding: var(--space-3xl) var(--space-lg);
  }

  .sell-slide-quote {
    font-size: var(--text-lg);
  }
}
