/* =========================
  Backoffice section styles
  - Add to CSS/business.css (bottom)
========================= */

.backoffice-section {
  padding: 72px 0;
  background: #ffffff;
}

/* h1 */
.backoffice-section .section-title {
  font-size: clamp(1.4rem, 4.2vw, 2.2rem);
  line-height: 1.25;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
}

/* lead */
.backoffice-section .section-lead {
  margin: 0 0 32px;
  color: #444;
  line-height: 1.85;
  font-size: 1.02rem;
}

/* block wrapper */
.backoffice-section .biz-block {
  margin: 26px 0;
  padding: 22px 22px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
}

/* section headings */
.backoffice-section h2 {
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  margin: 0 0 14px;
  line-height: 1.35;
}

/* sub headings */
.backoffice-section h3 {
  font-size: 1.08rem;
  margin: 18px 0 8px;
  line-height: 1.45;
}

/* paragraphs */
.backoffice-section p {
  margin: 0 0 12px;
  line-height: 1.85;
  color: #333;
}

/* lists */
.backoffice-section ul,
.backoffice-section ol {
  margin: 10px 0 0;
  padding-left: 1.2rem;
  line-height: 1.85;
}

.backoffice-section li {
  margin: 6px 0;
}

.backoffice-section ul li::marker,
.backoffice-section ol li::marker {
  font-weight: 700;
}

/* CTA */
.backoffice-section .biz-cta {
  margin-top: 34px;
  padding: 28px 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 91, 91, 0.10), rgba(0, 0, 0, 0));
  border: 1px solid rgba(255, 91, 91, 0.18);
  text-align: center;
}

.backoffice-section .biz-cta h2 {
  margin-bottom: 10px;
}

.backoffice-section .biz-cta p {
  margin: 0 auto 16px;
  max-width: 52ch;
  color: #333;
}

.backoffice-section .biz-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95em 1.6em;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  min-height: 46px;
  white-space: nowrap;
}

/* Small screens */
@media (max-width: 767px) {
  .backoffice-section {
    padding: 56px 0;
  }

  .backoffice-section .biz-block {
    padding: 18px 16px;
    border-radius: 14px;
  }

  .backoffice-section .section-lead {
    font-size: 1rem;
  }

  .backoffice-section .biz-cta {
    padding: 22px 16px;
  }

  .backoffice-section .section-title {
    word-break: keep-all;
  }
}