 .sell-page {
  min-height: 100vh;
  color: #fff;
  background:
    radial-gradient(ellipse at 10% 8%, rgba(30,136,229,0.09), transparent 45%),
    radial-gradient(ellipse at 90% 30%, rgba(46,204,113,0.06), transparent 45%),
    #05070c;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 34px 0 0;
  margin-bottom: 24px;
  color: #7f8794;
  font-size: 14px;
}

.breadcrumbs a {
  color: #b0b3bd;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: #2ecc71;
}

.breadcrumbs .separator {
  color: #46505f;
}

/* HERO */

.sell-hero {
  padding: 34px 0 58px;
}

.sell-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 34px;
  align-items: stretch;
}

.sell-hero-content {
  padding: 44px;
  border-radius: 34px;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(30,136,229,0.18), transparent 50%),
    linear-gradient(105deg, #0b111e, #070b12);
  border: 1px solid rgba(30,136,229,0.24);
}

.sell-badge {
  display: inline-flex;
  padding: 7px 14px;
  margin-bottom: 22px;
  border-radius: 40px;
  background: rgba(30,136,229,0.15);
  border: 1px solid rgba(30,136,229,0.3);
  color: #7ac4ff;
  font-size: 13px;
  font-weight: 600;
}

.sell-hero h1 {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 800;
}

.sell-hero p {
  max-width: 650px;
  margin: 0 0 32px;
  color: #aeb6c4;
  font-size: 17px;
  line-height: 1.6;
}

.sell-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sell-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.2s ease;
}

.sell-btn.primary {
  background: #2ecc71;
  color: #05070c;
}

.sell-btn.primary:hover {
  background: #35e47f;
  transform: translateY(-1px);
}

.sell-btn.secondary {
  color: #cbd5e6;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.035);
}

.sell-btn.secondary:hover {
  color: #fff;
  border-color: rgba(30,136,229,0.4);
  background: rgba(30,136,229,0.1);
}

.sell-hero-card {
  border-radius: 34px;
  padding: 1px;
  background: linear-gradient(145deg, rgba(30,136,229,0.45), rgba(46,204,113,0.24), rgba(255,255,255,0.05));
}

.sell-hero-card-inner {
  height: 100%;
  min-height: 300px;
  padding: 32px;
  border-radius: 33px;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(46,204,113,0.16), transparent 50%),
    #0f1219;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.sell-hero-card-inner > span {
  color: #9da1ab;
  font-size: 14px;
  margin-bottom: 8px;
}

.sell-hero-card-inner > strong {
  color: #2ecc71;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.sell-hero-card-inner > p {
  margin: 16px 0 24px;
  color: #aeb6c4;
  font-size: 15px;
  line-height: 1.5;
}

.sell-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sell-mini-stats div {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.06);
}

.sell-mini-stats b {
  display: block;
  color: #1e88e5;
  font-size: 22px;
  margin-bottom: 5px;
}

.sell-mini-stats small {
  color: #8f96a3;
  font-size: 12px;
}

/* COMMON */

.sell-services-section,
.sell-process-section,
.sell-benefits-section {
  padding: 56px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 34px;
}

.section-header h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
}

.section-header p {
  max-width: 680px;
  margin: 0 auto;
  color: #9da1ab;
  font-size: 16px;
  line-height: 1.5;
}

/* SERVICES */

.sell-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.sell-service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 28px;
  border-radius: 30px;
  background: rgba(15, 18, 25, 0.9);
  border: 1px solid rgba(30,136,229,0.14);
  color: #fff;
  text-decoration: none;
  transition: 0.22s ease;
}

.sell-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(46,204,113,0.35);
  box-shadow: 0 20px 45px rgba(0,0,0,0.22);
}

.sell-service-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(30,136,229,0.08);
  pointer-events: none;
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: rgba(30,136,229,0.15);
  border: 1px solid rgba(30,136,229,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
}

.sell-service-card h3 {
  margin: 0 0 14px;
  font-size: 26px;
  line-height: 1.15;
}

.sell-service-card p {
  margin: 0 0 22px;
  color: #aeb6c4;
  font-size: 15px;
  line-height: 1.55;
}

.service-points {
  display: grid;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 24px;
}

.service-points span {
  position: relative;
  padding-left: 22px;
  color: #cbd5e6;
  font-size: 14px;
}

.service-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
}

.service-link {
  color: #2ecc71;
  font-weight: 800;
}

/* PROCESS */

.sell-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.sell-step {
  padding: 24px;
  border-radius: 26px;
  background: rgba(15, 18, 25, 0.72);
  border: 1px solid rgba(255,255,255,0.06);
}

.step-number {
  color: #1e88e5;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
}

.sell-step h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.sell-step p {
  margin: 0;
  color: #9da1ab;
  font-size: 14px;
  line-height: 1.5;
}

/* BENEFITS */

.sell-benefits-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.sell-benefits-content {
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(30,136,229,0.14), transparent 50%),
    #0f1219;
  border: 1px solid rgba(30,136,229,0.14);
}

.sell-benefits-content h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
}

.sell-benefits-content p {
  margin: 0;
  color: #aeb6c4;
  font-size: 16px;
  line-height: 1.6;
}

.sell-benefits-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sell-benefit {
  padding: 24px;
  border-radius: 26px;
  background: rgba(15, 18, 25, 0.82);
  border: 1px solid rgba(255,255,255,0.06);
}

.sell-benefit div {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: rgba(30,136,229,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.sell-benefit span {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

/* CTA */

.sell-cta-section {
  padding: 20px 0 70px;
}

.sell-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 36px;
  border-radius: 32px;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(30,136,229,0.18), transparent 50%),
    linear-gradient(105deg, #0b111e, #070b12);
  border: 1px solid rgba(30,136,229,0.24);
}

.sell-cta-content {
  max-width: 760px;
}

.sell-cta-badge {
  display: inline-flex;
  padding: 7px 14px;
  margin-bottom: 16px;
  border-radius: 40px;
  background: rgba(30,136,229,0.15);
  border: 1px solid rgba(30,136,229,0.3);
  color: #7ac4ff;
  font-size: 13px;
  font-weight: 600;
}

.sell-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  font-weight: 800;
}

.sell-cta p {
  margin: 0;
  color: #aeb6c4;
  font-size: 16px;
  line-height: 1.6;
}

.sell-cta-action {
  flex-shrink: 0;
}

.sell-cta-btn {
  border: none;
  border-radius: 50px;
  padding: 16px 28px;
  background: #2ecc71;
  color: #05070c;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
  white-space: nowrap;
}

.sell-cta-btn:hover {
  background: #35e47f;
  transform: translateY(-1px);
}

/* ADAPTIVE */

@media (max-width: 1100px) {
  .sell-hero-grid,
  .sell-benefits-grid {
    grid-template-columns: 1fr;
  }

  .sell-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sell-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sell-hero-card-inner {
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .breadcrumbs {
    padding-top: 24px;
  }

  .sell-hero {
    padding: 24px 0 42px;
  }

  .sell-hero-content {
    padding: 30px 24px;
    border-radius: 28px;
  }

  .sell-hero p {
    font-size: 15px;
  }

  .sell-hero-actions {
    flex-direction: column;
  }

  .sell-btn {
    width: 100%;
  }

  .sell-services-section,
  .sell-process-section,
  .sell-benefits-section {
    padding: 42px 0;
  }

  .sell-services-grid,
  .sell-steps,
  .sell-benefits-list {
    grid-template-columns: 1fr;
  }

  .sell-service-card {
    min-height: auto;
    padding: 24px;
    border-radius: 24px;
  }

  .sell-benefits-content {
    padding: 26px 22px;
    border-radius: 24px;
  }

  .sell-cta-section {
    padding: 10px 0 48px;
  }

  .sell-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 22px;
    border-radius: 24px;
  }

  .sell-cta-action {
    width: 100%;
  }

  .sell-cta-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .sell-hero h1 {
    font-size: 34px;
  }

  .sell-hero-content {
    padding: 26px 20px;
  }

  .sell-hero-card-inner {
    padding: 24px;
    border-radius: 27px;
  }

  .sell-hero-card-inner > strong {
    font-size: 34px;
  }

  .sell-mini-stats {
    grid-template-columns: 1fr;
  }

  .sell-service-card h3 {
    font-size: 23px;
  }

  .sell-cta h2 {
    font-size: 30px;
  }

  .sell-cta p {
    font-size: 15px;
  }
}