html {
  scroll-behavior: smooth;
}

.svc-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 24px;
}

.process-card {
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 28px;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F97316;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}

.faq-item {
  border-bottom: 1px solid rgba(36, 28, 21, 0.12);
  padding: 20px 0;
  cursor: pointer;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  gap: 20px;
}

.faq-q .plus {
  font-size: 22px;
  color: #F97316;
  transition: transform .25s ease;
  flex-shrink: 0;
}

.faq-item.open .plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  font-size: 14.5px;
  color: rgba(36, 28, 21, 0.7);
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-top: 10px;
}

.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: #fff;
  border-top: 1px solid rgba(36, 28, 21, 0.12);
  padding: 12px 18px;
  display: none;
  box-shadow: 0 -8px 24px rgba(36, 28, 21, 0.12);
}

.btn-primary-full {
  display: block;
  width: 100%;
  text-align: center;
  background: #F97316;
  color: #fff;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: 100px;
}

@media (max-width: 720px) {
  .sticky-bar {
    display: block;
  }
  body {
    padding-bottom: 76px;
  }
}