.home-conv {
  width: min(1200px, calc(100% - 18px));
  margin: 12px auto 16px;
  position: relative;
  z-index: 2;
}

.home-conv__surface {
  display: grid;
  gap: 14px;
  border: 1px solid #ffe0c2;
  border-radius: 24px;
  background:
    radial-gradient(980px 340px at 12% -18%, rgba(254, 215, 170, 0.6), transparent 62%),
    radial-gradient(780px 260px at 94% 4%, rgba(255, 214, 170, 0.46), transparent 60%),
    #fffaf5;
  box-shadow: 0 18px 42px -32px rgba(124, 45, 18, 0.46);
  padding: 16px;
}

.home-conv__copy h2 {
  margin: 8px 0 0;
  color: #2f2317;
  font-size: clamp(1.3rem, 1.02rem + 1.15vw, 2rem);
  line-height: 1.3;
}

.home-conv__copy p {
  margin: 8px 0 0;
  color: #6b4e36;
  font-size: 0.95rem;
  line-height: 1.6;
}

.home-conv__kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #fdba74;
  background: #fff2e2;
  color: #9a3412;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
}

.home-conv__actions {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.home-conv__btn {
  border: 1px solid transparent;
  border-radius: 13px;
  min-height: 44px;
  font-size: 0.91rem;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.home-conv__btn:hover {
  transform: translateY(-1px);
}

.home-conv__btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #f97316, #ea580c);
  box-shadow: 0 16px 28px -20px rgba(194, 65, 12, 0.85);
}

.home-conv__btn--ghost {
  color: #8a4f26;
  border-color: #f4c79f;
  background: #fff7ef;
}

.home-conv__points {
  margin: 12px 0 0;
  padding-left: 16px;
  display: grid;
  gap: 6px;
  color: #6a4b32;
  font-size: 0.87rem;
}

.home-conv__panel {
  border: 1px solid #f4d5b8;
  background: #ffffff;
  border-radius: 18px;
  padding: 14px;
  display: grid;
  gap: 11px;
}

.home-conv__panel h3 {
  margin: 0;
  color: #2f2317;
  font-size: 1rem;
}

.home-conv__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.home-conv__stat {
  border-radius: 12px;
  border: 1px solid #ffe5cf;
  background: #fffaf4;
  padding: 8px;
  display: grid;
  gap: 3px;
}

.home-conv__stat small {
  color: #7b6048;
  font-size: 0.66rem;
  font-weight: 700;
}

.home-conv__stat strong {
  color: #8f3a13;
  font-size: 1rem;
  line-height: 1.2;
}

.home-conv__stat span {
  color: #8b6a50;
  font-size: 0.67rem;
}

.home-conv__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.home-conv__steps li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  color: #5e452f;
  font-size: 0.84rem;
}

.home-conv__steps span {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid #fdba74;
  background: #fff5ea;
  color: #9a3412;
  font-size: 0.81rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-conv-sticky {
  position: fixed;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: min(980px, calc(100% - 18px));
  border-radius: 16px;
  border: 1px solid #fdba74;
  background: linear-gradient(135deg, #fff7eb 0%, #fff3e0 100%);
  box-shadow: 0 22px 48px -30px rgba(124, 45, 18, 0.65);
  padding: 10px;
  display: none;
  gap: 8px;
  align-items: center;
  z-index: 1060;
}

.home-conv-sticky.is-visible {
  display: grid;
}

.home-conv-sticky p {
  margin: 0;
  color: #5f4229;
  font-size: 0.86rem;
  line-height: 1.4;
}

.home-conv-sticky strong {
  color: #8f3a13;
}

.home-conv-sticky__actions {
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.home-conv-sticky__actions a,
.home-conv-sticky__actions button {
  border-radius: 10px;
  border: 1px solid transparent;
  min-height: 38px;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.home-conv-sticky__actions a {
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(135deg, #f97316, #ea580c);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-conv-sticky__actions button {
  min-width: 92px;
  color: #7b4725;
  border-color: #f8bf8f;
  background: #fff8ef;
}

@media (min-width: 900px) {
  .home-conv {
    margin-top: 16px;
  }

  .home-conv__surface {
    grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.94fr);
    padding: 18px;
  }

  .home-conv__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-conv-sticky {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 12px 14px;
  }
}
