/* ==========================================================================
   Klap Business Sell / Vinde - FLEX ONLY

   Rules:
   - no CSS grid for desktop layout
   - no global min-width/min-height lock
   - no exported header/footer
   - scoped to .klap-business-sell where possible

   Table of contents:
   01. Root variables / page wrapper
   02. Scoped reset / shared defaults
   03. Shared typography, section heads, buttons, actions
   04. Hero - matched to Business Home layout
   05. Benefits strip - matched to Business Home layout
   06. Why / feature cards
   07. Steps
   08. Equipment
   09. Impact
   10. Trust / logos / testimonial
   11. CTA
   12. Shared responsive overrides / mobile refinements

   Notes:
   - The Vinde PHP/content/SVGs can stay the same.
   - Hero + Benefits were adjusted to mirror the finished Home page structure.
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. Root variables / page wrapper
   -------------------------------------------------------------------------- */

.site-switchers {
  display: none !important;
}

.klap-business-sell {
  --kbs-green: #005820;
  --kbs-green-bright: #00a651;
  --kbs-lime: #98da77;
  --kbs-ink: #0d1728;
  --kbs-muted: #5c6470;
  --kbs-border: #e8eaed;
  --kbs-bg-soft: #f8f8f8;
  --kbs-bg-soft-2: #f5f6f8;
  --kbs-radius: 24px;
  --kbs-container: 1120px;
  --kbs-font: "Plus Jakarta Sans", Helvetica, Arial, sans-serif;
  overflow: hidden;
  background: #fff;
  color: var(--kbs-ink);
  font-family: var(--kbs-font);
  -webkit-font-smoothing: antialiased;
}

/* --------------------------------------------------------------------------
   02. Scoped reset / shared defaults
   -------------------------------------------------------------------------- */

.klap-business-sell *,
.klap-business-sell *::before,
.klap-business-sell *::after {
  box-sizing: border-box;
}

.klap-business-sell h1,
.klap-business-sell h2,
.klap-business-sell h3,
.klap-business-sell p,
.klap-business-sell blockquote {
  font-family: inherit;
      margin: 0;
}

.klap-business-sell img {
  display: block;
  max-width: 100%;
  height: auto;
}

.klap-business-sell a {
  color: inherit;
  text-decoration: none;
}

.kbs-container {
  width: min(var(--kbs-container), calc(100% - 48px));
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   03. Shared typography / section heads / buttons / actions
   -------------------------------------------------------------------------- */

.kbs-eyebrow,
.kbs-eyebrow-no-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: var(--kbs-green);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.kbs-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  flex: 0 0 20px;
  border-radius: 999px;
  background: currentColor;
}

.kbs-eyebrow-no-line {
  justify-content: flex-start;
  font-size: 14px;
  letter-spacing: 2.5px;
}

.kbs-section-head {
  margin-bottom: 32px;
}

.kbs-section-head-center {
  text-align: center;
}

.kbs-section-head-center .kbs-eyebrow-no-line {
  justify-content: center;
}

.kbs-section-copy {
  display: flex;
  flex-direction: column;
  flex: 0 0 360px;
}

.kbs-section-copy-narrow {
  flex-basis: 300px;
}

.kbs-section-copy h2,
.kbs-section-head h2,
.kbs-trust h2,
.kbs-cta h2 {
  color: var(--kbs-ink);
  font-size: clamp(32px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: -1.5px;
}

.kbs-section-copy p:not(.kbs-eyebrow-no-line) {
  margin-top: 20px;
  color: var(--kbs-muted);
  font-size: 15px;
  line-height: 1.65;
}

.kbs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease,
    background-color .2s ease;
}

.kbs-btn:hover {
  transform: translateY(-1px);
  color: var(--kbs-green);
}

.kbs-btn svg {
  flex: 0 0 16px;
  margin-left: 10px;
}

.kbs-btn-primary {
  color: #fff !important;
  background: var(--kbs-green);
  box-shadow: 0 2px 8px rgba(0, 166, 81, .25);
}

.kbs-btn-primary:hover {
  color: #fff !important;
}

.kbs-btn-secondary {
  color: var(--kbs-ink);
  background: #fff;
  border-color: #d9dde3;
}

.kbs-btn-white {
  color: var(--kbs-green);
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
}

.kbs-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.kbs-split-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* ==========================================================================
   04. Hero - matched to Business Home layout
   ========================================================================== */

.kbs-hero {
  position: relative;
  padding: 10px 0 34px;
  background: #fff;
}

.kbs-hero-row {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 510px;
  overflow-x: clip;
}

.kbs-hero-content {
  position: relative;
  z-index: 2;
  flex: 0 0 490px;
  max-width: 560px;
}

.kbs-hero-title {
  max-width: 570px;
  color: var(--kbs-ink);
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.2em;
  letter-spacing: -2px;
  padding: 10px 0 20px;
}

.kbs-hero-text {
  margin: 24px 0 42px;
  max-width: 460px;
  color: var(--kbs-muted);
  font-size: 17px;
  line-height: 1.65;
  padding-bottom: 36px;
}

.kbs-hero-media {
  position: absolute;
  right: -155px;
  z-index: 1;
  width: 77%;
  overflow: hidden;
  pointer-events: none;
}

.kbs-hero-media::before {
  display: none;
}

.kbs-hero-media img {
  width: 85%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

/* ==========================================================================
   05. Benefits strip - matched to Business Home layout
   ========================================================================== */

.kbs-benefits {
  position: relative;
  z-index: 3;
  margin-top: -10px;
  padding-bottom: 70px;
}

.kbs-benefits-card {
  display: flex;
  align-items: stretch;
  min-height: 75px;
  overflow: hidden;
  border: 1px solid var(--kbs-border);
  border-radius: var(--kbs-radius);
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .10);
}

.kbs-benefit-item {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1 1 0;
  min-width: 0;
  padding: 18px 24px;
  border-right: 1px solid var(--kbs-border);
}

.kbs-benefit-item:last-child {
  border-right: 0;
}

.kbs-benefit-icon {
  width: 26px;
  height: auto;
  flex: 0 0 26px;
  object-fit: contain;
}

.kbs-benefit-item strong {
  color: var(--kbs-ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}

/* ==========================================================================
   06. Why / feature cards - matched to Maintenance layout
   ========================================================================== */

.kbs-why {
  padding: 0 0 40px;
}

.kbs-why .kbs-split-row {
  align-items: center;
  gap: 35px;
}

.kbs-why .kbs-section-copy {
  flex: 0 0 330px;
  max-width: 380px;
}

.kbs-why .kbs-section-copy .kbs-eyebrow-no-line {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.5px;
}

.kbs-feature-cards {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1 1 auto;
}

.kbs-feature-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1 1 calc(25% - 8px);
  min-width: 0;
  min-height: 210px;
  overflow: hidden;
  padding: 18px 16px;
  border: 1px solid #d9d9d9;
  border-radius: 16px;
  background: #fff;
}

.kbs-feature-card img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 14px;
}

.kbs-feature-card h3 {
  margin-bottom: 12px;
  color: var(--kbs-ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.3px;
}

.kbs-feature-card p {
  color: var(--kbs-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* ==========================================================================
   07. Steps - matched to Maintenance layout
   ========================================================================== */

.kbs-steps {
  padding: 0 0 40px;
}

.kbs-steps .kbs-container {
  padding: 36px 52px;
  border-radius: var(--kbs-radius);
  background: var(--kbs-bg-soft-2);
}

.kbs-steps .kbs-section-head {
  margin-bottom: 38px;
}

.kbs-steps .kbs-eyebrow-no-line {
  display: block;
  margin: 0;
  color: var(--kbs-green);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 4px;
  text-align: left;
  text-transform: uppercase;
}

.kbs-step-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 34px;
  margin-top: 0;
}

.kbs-step-card {
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
}

.kbs-step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 31px;
  left: calc(50% + 48px);
  width: calc(100% - 62px);
  height: 2px;
  background: var(--kbs-green);
}

.kbs-step-icon {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 10px;
  border: 1px solid rgba(13, 23, 40, 0.08);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(13, 23, 40, 0.10);
}

.kbs-step-icon svg {
  display: block;
  width: 28px;
  height: 28px;
}

.kbs-step-number {
  display: block;
  margin-bottom: 14px;
  color: var(--kbs-ink);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.kbs-step-card h3 {
  margin: 13px auto 13px;
  max-width: 225px;
  color: var(--kbs-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.4px;
}

.kbs-step-card p {
  max-width: 220px;
  margin: 0 auto;
  color: var(--kbs-muted);
  font-size: 12px;
  line-height: 1.45;
}

/* ==========================================================================
   08. Equipment
   ========================================================================== */
.kbs-equipment {
  padding: 0 0 40px;
}

.kbs-equipment-row {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1 1 auto;
}

.kbs-equipment-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 calc(25% - 8px);
  min-width: 170px;
  min-height: 255px;
  overflow: hidden;
  padding: 10px 14px 18px;
  border: 1px solid #d9d9d9;
  border-radius: 16px;
  background: #fff;
}

.kbs-equipment-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 145px;
  margin-bottom: 12px;
}

.kbs-equipment-image img {
  max-height: 145px;
  width: 100%;
  object-fit: contain;
}

.kbs-equipment-card h3 {
  margin-bottom: 12px;
  color: var(--kbs-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.kbs-equipment-card p {
  color: var(--kbs-muted);
  font-size: 12.5px;
  line-height: 1.55;
}

/* ==========================================================================
   09. Impact - matched to Maintenance stats cards
   ========================================================================== */

.kbs-impact {
  padding: 0px;
}

.kbs-impact .kbs-split-row {
  align-items: center;
  gap: 40px;
}

.kbs-impact .kbs-section-copy {
  flex: 0 0 300px;
  max-width: 380px;
}

.kbs-impact-row {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1 1 auto;
}

.kbs-impact-stat {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1 1 calc(25% - 8px);
  min-width: 0;
  min-height: 255px;
  padding: 36px 28px 28px;
  border: 1px solid #d9d9d9;
  border-radius: 16px;
  background: #fff;
}

.kbs-impact-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 38px;
  margin-bottom: 18px;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.kbs-impact-icon img {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.kbs-impact-prefix,
.kbs-impact-label {
  display: block;
  color: var(--kbs-muted);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
}

.kbs-impact-prefix {
  min-height: 20px;
  margin-bottom: 8px;
}

.kbs-impact-number {
  display: block;
  margin: 0 0 10px;
  color: var(--kbs-green);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1.4px;
}

.kbs-impact-number small {
  margin-left: 2px;
  font-size: 22px;
}

.kbs-impact-word {
  display: block;
  margin: 0 0 10px;
  color: var(--kbs-green);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.05;
}

.kbs-impact-label {
  max-width: 190px;
}

/* ==========================================================================
   10. Trust / logos / testimonial
   ========================================================================== */
.kbs-trust {
  padding: 0 0 100px;
}

.kbs-trust-row {
  display: flex;
  align-items: flex-start;
  gap: 72px;
}

.kbs-trust-content {
  flex: 1 1 auto;
  text-align: center;
}

.kbs-trust-content .kbs-eyebrow-no-line {
  justify-content: center;
  color: #2a7a40;
  font-size: 16px;
  letter-spacing: 2px;
}

.kbs-trust-content h2 {
  max-width: 560px;
  margin: 0 auto 28px;
  font-size: clamp(32px, 3vw, 36px);
}

.kbs-logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 690px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #545454;
  border-radius: 16px;
}

.kbs-logo-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  color: #545454;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.kbs-testimonial {
  flex: 0 0 405px;
  min-height: 200px;
  padding: 30px 48px 28px;
  border: 1px solid var(--kbs-border);
  border-radius: var(--kbs-radius);
  background: var(--kbs-bg-soft);
}

.kbs-quote-mark {
  display: block;
  height: 24px;
  color: var(--kbs-green-bright);
  font-size: 50px;
  font-weight: 900;
  line-height: .7;
}

.kbs-testimonial blockquote {
  margin: 10px 0 16px;
  color: var(--kbs-ink);
  font-size: 14px;
  font-style: italic;
  line-height: 2;
}

.kbs-testimonial strong,
.kbs-testimonial span:not(.kbs-quote-mark) {
  display: block;
}

.kbs-testimonial strong {
  font-size: 15px;
  font-weight: 700;
}

.kbs-testimonial span:not(.kbs-quote-mark) {
  margin-top: 4px;
  color: var(--kbs-muted);
  font-size: 13px;
}

/* ==========================================================================
   11. CTA - matched to Maintenance final CTA, keeping Vinde icon
   ========================================================================== */

.kbs-cta {
  padding: 0 0 30px;
}

.kbs-cta-card {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  min-height: 174px;
  padding: 40px 64px;
  overflow: hidden;
  border-radius: var(--kbs-radius);
  background: linear-gradient(135deg, #005820 0%, #063d22 100%);
  background-image: url("/wp-content/themes/klap/assets/klap-business-home/img/impact-masurabil-klap.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  color: #fff;
}

.kbs-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    #022015 0%,
    #083524 75%,
    rgba(0, 88, 32, 0.5) 100%
  );
  pointer-events: none;
}

.kbs-cta-copy {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 720px;
}

.kbs-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border: 1px solid rgba(0, 166, 81, 0.45);
  border-radius: 999px;
  color: var(--kbs-lime);
  background: rgba(255, 255, 255, 0.08);
}

.kbs-cta-icon svg {
  display: block;
  width: 28px;
  height: 28px;
}

.kbs-cta-icon svg path {
  stroke: currentColor;
}

.kbs-cta-copy > div {
  max-width: 650px;
}

.kbs-cta h2 {
  max-width: 650px;
  color: #fff;
  font-size: clamp(30px, 3vw, 35px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1.5px;
}

.kbs-cta p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.5;
}

.kbs-cta .kbs-btn-white {
  flex: 0 0 auto;
  color: var(--kbs-ink);
  background: #fff;
  border-color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.kbs-cta .kbs-btn-white:hover {
  color: var(--kbs-green);
  background: #fff;
  border-color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.kbs-cta .kbs-btn-white svg {
  margin-left: 10px;
}

/* ==========================================================================
   12. Shared responsive overrides / mobile refinements

   Keep this block after section-specific rules. These overrides intentionally
   affect multiple sections at once.
   ========================================================================== */

@media (max-width: 1180px) {
  .kbs-impact .kbs-section-copy,
  .kbs-impact-row {
    flex: 1 1 100%;
    max-width: unset;
  }

  .kbs-impact-stat {
    flex: 1 1 calc(50% - 10px);
  }
}

@media (max-width: 820px) {
  .kbs-impact-row {
    flex-direction: row;
  }

  .kbs-impact-stat {
    flex: 1 1 calc(50% - 10px);
    min-height: auto;
    background: #f5f6f8;
    border-color: #f5f6f8;
  }

  .kbs-impact-icon img {
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 999px;
  }
}

@media (max-width: 1180px) {
  .kbs-container {
    margin: 0;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }

  .kbs-hero {
    padding-top: 0;
  }

  .kbs-hero-row {
    display: flex;
    flex-direction: column-reverse;
    align-items: stretch;
    min-height: auto;
    overflow-x: clip;
    width: 100% !important;
  }

  .kbs-hero-content {
    flex-basis: auto;
    max-width: unset;
  }

  .kbs-hero-title {
    max-width: 100%;
  }

  .kbs-hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    height: 575px;
    margin-top: 0;
    margin-bottom: 15px;
    border-radius: 22px;
  }

  .kbs-hero-media::before {
    display: none;
  }

  .kbs-hero-media img {
    width: 100%;
  }

  .kbs-btn {
    width: 100%;
  }

  .kbs-benefits {
    padding-bottom: 30px;
  }

  .kbs-benefits-card,
  .kbs-step-row {
    flex-wrap: wrap;
  }

  .kbs-benefit-item {
    flex: 1 1 calc(50% - 1px);
    flex-direction: column;
    text-align: center;
    border-bottom: 1px solid var(--kbs-border);
  }

  .kbs-split-row,
  .kbs-trust-row,
  .kbs-cta-card,
  .kbs-cta-copy {
    flex-wrap: wrap;
  }

  .kbs-section-copy,
  .kbs-section-copy-narrow,
  .kbs-feature-cards,
  .kbs-equipment-row,
  .kbs-impact-row,
  .kbs-trust-content,
  .kbs-testimonial {
    flex: 1 1 100%;
  }

  .kbs-feature-card,
  .kbs-equipment-card,
  .kbs-impact-stat,
  .kbs-step-card {
    flex: 1 1 calc(50% - 10px);
  }

  .kbs-step-row::before {
    display: none;
  }

  .kbs-testimonial {
    max-width: 520px;
    margin-inline: auto;
  }
}

/* Final CTA responsive - Vinde */
@media (max-width: 1180px) {
  .kbs-cta-card {
    flex-wrap: wrap;
    background: linear-gradient(135deg, #005820 0%, #063d22 100%);
    background-image: url("/wp-content/themes/klap/assets/klap-business-home/img/copaci-resurse-economisite-mobile-opt.jpg");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
  }

  .kbs-cta-copy {
    flex: 1 1 100%;
  }

  .kbs-cta .kbs-btn-white {
    width: auto;
  }
}

@media (max-width: 820px) {
  .kbs-cta {
    padding: 0;
  }

  .kbs-cta .kbs-container {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .kbs-cta-card {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    width: 100%;
    min-height: auto;
    padding: 34px 24px;
    border-radius: 0;
  }

  .kbs-cta-copy {
    flex-direction: row;
    align-items: flex-start;
    gap: 18px;
  }

  .kbs-cta-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
  }

  .kbs-cta-icon svg {
    width: 25px;
    height: 25px;
  }

  .kbs-cta h2 {
    font-size: 29px;
    line-height: 1.25;
  }

  .kbs-cta .kbs-btn-white {
    width: 100%;
    min-height: 50px;
  }
}

@media (max-width: 480px) {
  .kbs-cta-copy {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 820px) {
  .kbs-container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .kbs-hero-media {
    height: 63vw;
  }

  .kbs-hero-title {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 42px);
  }

  .kbs-actions,
  .kbs-split-row,
  .kbs-feature-cards,
  .kbs-step-row,
  .kbs-impact-row,
  .kbs-trust-row,
  .kbs-cta-card,
  .kbs-cta-copy {
    align-items:flex-start;
  }

  section.kbs-equipment .kbs-container.kbs-split-row {
            align-items: flex-start;
  }
  

  .kbs-benefit-item,
  .kbs-feature-card,
  .kbs-step-card,
  .kbs-equipment-card,
  .kbs-impact-stat {
    width: 100%;
  }

  .kbs-benefits-card {
    flex-wrap: wrap;
  }

  .kbs-steps .kbs-container,
  .kbs-cta-card {
    padding: 40px 22px;
  }

  .kbs-cta-copy {
    align-items: flex-start;
  }
}

/* --------------------------------------------------------------------------
   Vinde: Why + Steps responsive refinements
   Keep this after shared responsive overrides.
   -------------------------------------------------------------------------- */

@media (max-width: 1180px) {
  .kbs-why .kbs-split-row {
    flex-wrap: wrap;
  }

  .kbs-why .kbs-section-copy,
  .kbs-feature-cards {
    flex: 1 1 100%;
    max-width: unset;
  }

  .kbs-feature-card {
    flex: 1 1 calc(50% - 10px);
  }

  .kbs-steps .kbs-container {
    padding: 36px 28px;
  }

  .kbs-step-row {
    flex-wrap: wrap;
    gap: 34px 20px;
  }

  .kbs-step-card {
    flex: 1 1 calc(50% - 10px);
  }

  .kbs-step-card::after,
  .kbs-step-card:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 820px) {
  .kbs-why {
    padding: 0 0 48px;
  }

  .kbs-feature-cards {
    flex-direction: row;
  }

  .kbs-feature-card {
    flex: 1 1 calc(50% - 10px);
    width: auto;
  }

  .kbs-steps {
    padding: 0 0 40px;
  }

  .kbs-steps .kbs-container {
    width: 100%;
    margin: 0;
    padding: 34px 24px 38px;
    border-radius: 0;
    background: var(--kbs-bg-soft-2);
  }

  .kbs-steps .kbs-section-head {
    margin-bottom: 24px;
  }

  .kbs-steps .kbs-eyebrow-no-line {
    color: var(--kbs-green);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 3px;
    text-align: left;
  }

  .kbs-step-row {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
    padding-left: 0;
  }

  .kbs-step-row::before {
    content: "";
    position: absolute;
    top: 28px;
    bottom: 28px;
    left: 26px;
    display: block;
    width: 2px;
    background: #d9dde3;
    pointer-events: none;
  }

  .kbs-step-card {
    position: relative;
    display: block;
    width: 100%;
    min-height: 84px;
    padding: 0 0 58px 74px;
    text-align: left;
  }

  .kbs-step-card:last-child {
    padding-bottom: 0;
  }

  .kbs-step-card::after,
  .kbs-step-card:not(:last-child)::after {
    display: none;
  }

  .kbs-step-icon {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 54px;
    height: 54px;
    margin: 0;
    border: 1px solid #dfe4e7;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(13, 23, 40, 0.08);
  }

  .kbs-step-icon svg {
    width: 24px;
    height: 24px;
  }

  .kbs-step-number {
    display: block;
    margin: 0 0 6px;
    color: var(--kbs-green);
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
  }

  .kbs-step-card h3 {
    max-width: 100%;
    margin: 0 0 8px;
    color: var(--kbs-ink);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.25;
    text-align: left;
  }

  .kbs-step-card p {
    max-width: 100%;
    margin: 0;
    color: var(--kbs-muted);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .kbs-feature-card {
    flex: 1 1 100%;
  }
}

@media (max-width: 820px) {
.page-template-page-template-business_sell .container {
    padding: 0px !important;
    margin: 0px !important;
    max-width: 100% !important;
}
section.kbs-hero .kbs-container{
  padding-left:0px;
  padding-right:0px;
}

section.kbs-hero .kbs-container .kbs-hero-content{
  padding-left:30px;
  padding-right:30px;
}

} 