/* ============================================================
   Appliance Rentals - Integrations: Rent Manager detail page (Figma rebrand)
   Shares component styles with homepage.css; page classes: aru-*, ari-*.
   ============================================================ */

/* ---------- breadcrumb ---------- */
.ari-breadcrumb {
  padding: 20px var(--ar-gutter) 0;
  font-size: 14px;
  color: #747474;
}
.ari-breadcrumb a {
  color: #747474;
  text-decoration: underline;
}
.ari-breadcrumb span[aria-hidden] {
  margin: 0 6px;
}

/* ---------- partner logo strip ---------- */
.ari-partner-strip {
  display: flex;
  justify-content: center;
  padding: 24px var(--ar-gutter) 0;
}
.ari-partner-strip img {
  height: 36px;
  width: auto;
}

/* ---------- hero ---------- */
.aru-hero {
  padding: 20px var(--ar-gutter) 0;
}
.aru-hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 460px;
  background-color: var(--ar-navy);
  background-image: url("../../images/franchise/hero-bg.webp");
  background-image: image-set(url("../../images/franchise/hero-bg.webp") 1x, url("../../images/franchise/hero-bg@2x.webp") 2x);
  background-size: cover;
  background-position: center;
  border-radius: 60px;
  overflow: hidden;
  padding: 50px 20px 40px;
  text-align: center;
}
.aru-hero-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 27, 56, 0.78);
}
.aru-hero-inner > * {
  position: relative;
}
.aru-hero-inner .ar-pill {
  margin-bottom: 18px;
}
.aru-hero-title {
  margin: 0;
  max-width: 820px;
  font-weight: 700;
  font-size: 38px;
  line-height: 46px;
  color: #fff;
  text-align: center;
}
.aru-hero-subtitle {
  margin: 14px 0 0;
  max-width: 680px;
  font-weight: 300;
  font-size: 22px;
  line-height: 32px;
  color: #fff;
  text-align: center;
}
.aru-hero-subtitle strong {
  font-weight: 700;
}
.aru-hero-inner .ara-cta-btn {
  margin-top: 28px;
}
.aru-hero-inner .ar-cityform {
  margin-top: 20px;
}

/* ---------- how it works (4-up) ---------- */
.aru-benefits {
  margin-top: 100px;
  padding: 0 var(--ar-gutter);
  text-align: center;
}
.aru-benefits .aru-benefit-cards {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
.ari-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ar-navy);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
}

/* ---------- why property managers (checklist band) ---------- */
.aru-smarter {
  margin-top: 100px;
  background: var(--ar-mint);
  padding: 90px var(--ar-gutter);
  text-align: center;
}
.aru-smarter .ar-pill {
  margin-bottom: 30px;
}
.ari-why-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
}

/* ---------- FAQ section spacing above the shared .ar-faq-wrap ---------- */
.ar-faq-wrap {
  margin-top: 100px;
}

/* ---------- mobile ---------- */
@media (max-width: 767px) {
  .ari-partner-strip {
    padding-top: 16px;
  }
  .ari-partner-strip img {
    height: 28px;
  }
  .aru-hero-title {
    font-size: 26px;
    line-height: 33px;
  }
  .aru-hero-subtitle {
    font-size: 17px;
    line-height: 25px;
  }
  .aru-hero-inner {
    min-height: 380px;
    border-radius: 30px;
  }
  .aru-benefits {
    margin-top: 60px;
  }
  .aru-benefits .aru-benefit-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .aru-smarter {
    margin-top: 60px;
    padding: 50px 20px;
  }
  .ari-why-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .aru-smarter .ar-pill {
    white-space: normal;
    text-align: center;
    max-width: calc(100% - 40px);
  }
  .ar-faq-wrap {
    margin-top: 60px;
  }
}
