/* =========================================================
   SELL PAGE — sell.css
   Depends on index.css for :root variables, reset, layout helpers,
   .container, .section-tag, .section-title, .form-*, .faq-*,
   .split-section, .checklist, .check-item, .check-icon,
   .primary-button, .outline-button, .ghost-button,
   .contact-submit-btn, .consent-*, .field-error,
   .form-success, .success-*
   ========================================================= */

/* ===== HERO ===== */
.sell-hero {
  position: relative;
  background: var(--main-color);
  overflow: hidden;
  padding: 80px 0 72px;
}

.sell-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sell-hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(184, 213, 239, 0.07);
}
.sell-hero-shape--1 { width: 600px; height: 600px; top: -200px; right: -150px; }
.sell-hero-shape--2 { width: 300px; height: 300px; bottom: -100px; left: 5%; opacity: 0.5; }
.sell-hero-shape--3 { width: 160px; height: 160px; top: 60px; left: 38%; opacity: 0.4; }

.sell-hero-orb {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle at 40% 40%, rgba(184,213,239,0.12), transparent 70%);
  pointer-events: none;
}

.sell-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.sell-hero-tag { color: #90c8f4 !important; }

.sell-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}

.sell-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.72;
  max-width: 520px;
  margin-bottom: 32px;
}

.sell-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.sell-hero-cta {
  background: var(--alt-color) !important;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(201,35,35,0.4) !important;
}
.sell-hero-cta:hover {
  background: #a81c1c !important;
}

/* Hero visual */
.sell-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sell-hero-img-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
}

.sell-hero-img-wrap img {
    border-radius: 20px;
}

.sell-img-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

.sell-hero-badge {
  position: absolute;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius);
  padding: 10px 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(1,52,133,0.18);
  backdrop-filter: blur(4px);
  min-width: 100px;
}
.sell-hero-badge--1 { top: -16px; right: -20px; }
.sell-hero-badge--2 { bottom: 60px; right: -36px; }
.sell-hero-badge--3 { bottom: -16px; left: -20px; }

.sell-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--main-color);
  line-height: 1.1;
  margin-bottom: 3px;
}
.sell-badge-label {
  display: block;
  font-size: 11px;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}


/* ===== USP STRIP ===== */
.sell-usp-strip {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.sell-usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.sell-usp-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.sell-usp-item:last-child { border-right: none; }
.sell-usp-item:hover { background: var(--bg-light); }

.sell-usp-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--main-color);
}

.sell-usp-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sell-usp-text strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--main-color);
}
.sell-usp-text span {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}


/* ===== SECTION HEADER ===== */
.sell-section-header {
  margin-bottom: 52px;
}
.sell-section-header.centered {
  text-align: center;
}
.sell-section-header.centered .intro-text {
  margin: 0 auto;
}


/* ===== PROCESS SECTION ===== */
.sell-process {
  background: var(--bg-light);
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.process-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 8px;
}

.process-connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: var(--border);
  margin-top: 52px;
  position: relative;
}
.process-connector::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  width: 10px; height: 10px;
  border-top: 2px solid var(--border);
  border-right: 2px solid var(--border);
  transform: rotate(45deg);
}

.process-step {
  flex: 1;
  min-width: 160px;
  text-align: center;
  position: relative;
}

.process-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--main-color);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}

.process-step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.process-step-img {
  width: 80px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-img-placeholder {
  width: 80px; height: 64px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--main-color);
  line-height: 1.3;
}

.process-step-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.55;
  max-width: 160px;
  margin: 0 auto;
}


/* ===== NETWORK SECTION ===== */
.sell-network {
  background: var(--bg-white);
  padding: 80px 0;
}

.network-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.network-highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-left: 4px solid var(--alt-color);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-top: 28px;
}

.network-highlight-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--main-color);
}

.network-highlight-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 5px;
}
.network-highlight-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Network orb visualization */
.network-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.network-orb-wrap {
  position: relative;
  width: 340px;
  height: 340px;
}

.net-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.net-center-node {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--main-color);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(1,52,133,0.35);
  animation: pulse-center 3s ease-in-out infinite;
}

@keyframes pulse-center {
  0%, 100% { box-shadow: 0 4px 20px rgba(1,52,133,0.35); }
  50% { box-shadow: 0 4px 32px rgba(1,52,133,0.6), 0 0 0 8px rgba(1,52,133,0.08); }
}

.net-satellite {
  position: absolute;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 2px solid var(--main-color);
  color: var(--main-color);
  font-size: 10px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  animation: float-node 4s ease-in-out infinite;
}

@keyframes float-node {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 4px)); }
}

/* Position satellites around center (170px from center = radius ~110px) */
.net-satellite--1 { top: 60px; left: 170px; transform: translate(-50%, -50%); animation-delay: 0s; }
.net-satellite--2 { top: 100px; left: 270px; transform: translate(-50%, -50%); animation-delay: 0.4s; }
.net-satellite--3 { top: 210px; left: 290px; transform: translate(-50%, -50%); animation-delay: 0.8s; }
.net-satellite--4 { top: 290px; left: 170px; transform: translate(-50%, -50%); animation-delay: 1.2s; }
.net-satellite--5 { top: 230px; left: 60px; transform: translate(-50%, -50%); animation-delay: 1.6s; }
.net-satellite--6 { top: 100px; left: 52px; transform: translate(-50%, -50%); animation-delay: 2s; }

.net-buyer {
  position: absolute;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  color: var(--text-light);
  font-size: 9px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}

.net-buyer--1 { top: 16px; left: 210px; transform: translate(-50%, -50%); }
.net-buyer--2 { top: 16px; left: 130px; transform: translate(-50%, -50%); }
.net-buyer--3 { top: 60px; left: 318px; transform: translate(-50%, -50%); }
.net-buyer--4 { top: 240px; left: 326px; transform: translate(-50%, -50%); }
.net-buyer--5 { top: 330px; left: 170px; transform: translate(-50%, -50%); }
.net-buyer--6 { top: 270px; left: 22px; transform: translate(-50%, -50%); }
.net-buyer--7 { top: 60px; left: 14px; transform: translate(-50%, -50%); }
.net-buyer--8 { top: 60px; left: 38px; transform: translate(-50%, -50%); }

.network-stats-overlay {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.net-stat {
  background: var(--main-color);
  color: #fff;
  border-radius: var(--radius);
  padding: 10px 18px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.net-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1;
}
.net-stat-lbl {
  display: block;
  font-size: 11px;
  opacity: 0.75;
  margin-top: 2px;
  white-space: nowrap;
}


/* ===== WHY US (split) ===== */
.sell-why { background: var(--bg-light) !important; }

.split-img-placeholder-custom {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-light) 0%, #c8dff5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}


/* ===== MARKETING SECTION ===== */
.sell-marketing {
  background: var(--bg-white);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.marketing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.marketing-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.25s;
  cursor: default;
}
.marketing-card:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  background: var(--bg-white);
}

.marketing-card-icon {
  width: 52px; height: 52px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--main-color);
  margin-bottom: 16px;
}

.marketing-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 8px;
}

.marketing-card-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}


/* ===== TESTIMONIALS ===== */
.sell-testimonials {
  background: var(--bg-light);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.25s;
}
.testimonial-card:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  font-size: 18px;
  color: #f59e0b;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-style: normal;
  border-top: 1px solid var(--bg-light);
  padding-top: 16px;
  background: none;
}

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--main-color);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}
.testimonial-location {
  font-size: 13px;
  color: var(--text-light);
}


/* ===== PROPERTY FORM SECTION ===== */
.sell-form-section {
  background: var(--main-color);
  padding: 80px 0;
}

.sell-form-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 52px;
  align-items: start;
}

.sell-form-tag { color: #90c8f4 !important; }

.sell-form-title {
  color: #fff !important;
  margin-bottom: 12px;
}

.sell-form-section .intro-text {
  color: rgba(255,255,255,0.72);
  max-width: 100%;
  margin-bottom: 28px;
}

.sell-form-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.sell-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}

.sell-benefit-dot {
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-light);
}

.sell-form-contact-hint {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.sell-form-contact-hint a {
  color: #90c8f4;
  font-weight: 600;
}

/* Form card */
.sell-form-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 36px 36px 32px;
}

.sell-form-card-header {
  margin-bottom: 24px;
}
.sell-form-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--main-color);
  margin-bottom: 6px;
}
.sell-form-card-subtitle {
  font-size: 14px;
  color: var(--text-light);
}

/* Property type tabs */
.property-type-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.proptype-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-light);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s;
}
.proptype-btn:hover { border-color: var(--accent-color); color: var(--accent-color); background: var(--accent-light); }
.proptype-btn.active {
  background: var(--main-color);
  color: #fff;
  border-color: var(--main-color);
}

/* Form steps */
.form-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
  padding: 0;
}

.form-step {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  opacity: 0.4;
  transition: opacity 0.2s;
}
.form-step.active, .form-step.done { opacity: 1; }
.form-step.done .step-num { background: #2d7d46; }

.step-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-light);
  font-size: 12px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.form-step.active .step-num { background: var(--main-color); color: #fff; }

.step-lbl {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  white-space: nowrap;
}
.form-step.active .step-lbl { color: var(--main-color); }

.step-divider {
  flex: 1;
  height: 1px;
  background: var(--border);
  margin: 0 8px;
}

/* Condition chips (reuse callback-chip pattern) */
.condition-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.condition-option { cursor: pointer; }
.condition-option input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.condition-chip {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  background: var(--bg-light);
  transition: all 0.18s;
  cursor: pointer;
}
.condition-option input[type="radio"]:checked + .condition-chip {
  background: var(--accent-light);
  border-color: var(--accent-color);
  color: var(--accent-color);
  font-weight: 600;
}

/* Form navigation */
.form-nav-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.sell-form-next-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--main-color);
  color: #fff;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.22s;
  margin-left: auto;
}
.sell-form-next-btn:hover { background: #0144a8; transform: translateY(-1px); }

.sell-form-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 18px;
  background: var(--bg-light);
  color: var(--text-light);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.22s;
}
.sell-form-back-btn:hover { border-color: var(--accent-color); color: var(--accent-color); background: var(--accent-light); }

/* Summary box */
.form-summary-box {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.summary-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.summary-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  font-weight: 600;
}
.summary-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--main-color);
}


/* ===== SELL FAQ ===== */
.sell-faq-section {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
}


/* ===== CTA BANNER ===== */
.sell-cta-banner {
  background: var(--alt-color);
  padding: 64px 0;
}

.sell-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.sell-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
}

.sell-cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  max-width: 480px;
}

.sell-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.sell-cta-btn {
  background: #fff !important;
  color: var(--alt-color) !important;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15) !important;
}
.sell-cta-btn:hover {
  background: rgba(255,255,255,0.9) !important;
  transform: translateY(-1px);
}

.sell-cta-banner .outline-button {
  border-color: rgba(255,255,255,0.4);
}
.sell-cta-banner .outline-button:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .sell-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .sell-hero-visual { display: none; }
  .network-layout { grid-template-columns: 1fr; }
  .network-visual { display: none; }
  .marketing-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .sell-form-layout { grid-template-columns: 1fr; }
  .sell-form-info { max-width: 600px; }
  .sell-usp-grid { grid-template-columns: repeat(2, 1fr); }
  .sell-usp-item:nth-child(2) { border-right: none; }
  .sell-usp-item:nth-child(3), .sell-usp-item:nth-child(4) { border-top: 1px solid var(--border); }
  .sell-usp-item:nth-child(4) { border-right: none; }
}

@media (max-width: 768px) {
  .sell-hero { padding: 56px 0 48px; }
  .sell-hero-actions { flex-direction: column; align-items: flex-start; }
  .process-timeline { flex-direction: column; overflow-x: unset; }
  .process-connector { width: 2px; height: 28px; margin-top: 0; margin-left: 52px; }
  .process-connector::after {
    right: -4px; top: auto; bottom: -5px;
    width: 10px; height: 10px;
    border-top: none; border-right: none;
    border-bottom: 2px solid var(--border);
    border-right: 2px solid var(--border);
    transform: rotate(45deg);
  }
  .marketing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .sell-form-card { padding: 24px 20px 20px; }
  .sell-usp-grid { grid-template-columns: 1fr; }
  .sell-usp-item { border-right: none; border-bottom: 1px solid var(--border); }
  .sell-usp-item:last-child { border-bottom: none; }
  .form-summary-box { grid-template-columns: 1fr; }
  .sell-cta-inner { flex-direction: column; align-items: flex-start; }
  .form-steps { display: none; }
  .property-type-tabs { gap: 6px; }
  .proptype-btn { font-size: 13px; padding: 7px 12px; }
}

@media (max-width: 480px) {
  .sell-form-layout { gap: 36px; }
  .form-nav-row { flex-wrap: wrap; }
  .sell-form-next-btn { width: 100%; justify-content: center; margin-left: 0; }
}