  :root{
    --rent-accent: var(--clr-primary);
    --rent-black:#000000;
    --rent-white:#ffffff;
    --rent-border:#e6e9ee;
    --rent-muted:#000000;
    --rent-max:1200px;
  }

  *{box-sizing:border-box}
  .rent-container{max-width:var(--rent-max); margin:0 auto; padding:0 16px;}
  .rent-cards{padding:24px 0;}

  /* responsive grid */
  .rent-cards__grid{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    align-items:stretch;
  }
  .rent-cardx {
    flex: 1 1 320px;
    min-width: 280px;
    max-width: 420px;
    background: var(--rent-white);
    border: 0px solid rgb(0 0 0 / 95%);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: -1px 1px 4px 1px rgb(0 0 0 / 6%);
    display: flex;
    flex-direction: column;
  }
  .reaf-front-head {
    margin: 0px 16px;
  }
  .rent-cards {
    padding: 10px 10px 80px 10px;
  }

  /* media */
  .rent-cardx__media{
    position:relative;
    height: 210px;
    background:#f3f6f9;
    border-bottom: 1px solid rgba(230,233,238,.95);
  }
  .rent-cardx__img{
    width:100%;
    height:100%;
    object-fit:cover;
  }

  .rent-cardx__badges{
    position:absolute;
    top:12px; left:12px;
    display:flex;
    gap:8px;
    align-items:center;
  }
  .rent-cardx__badge {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .2px;
    padding: 7px 10px;
    border-radius: 999px;
    line-height: 1;
    border: 1px solid rgba(255,255,255,.25);
    backdrop-filter: blur(10px);
  }
  .rent-cardx__badge--buy {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: #fff;
  }
  .rent-cardx__badge--type{
    background: rgba(11,15,20,.72);
    border-color: rgba(255,255,255,.18);
    color: #fff;
  }

  .rent-cardx__fav {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.14);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    display: none;
  }
  .rent-cardx__fav:hover{
    background: rgba(255,255,255,.22);
  }

  .rent-cardx__watermark{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    font-weight: 900;
    letter-spacing: 2px;
    color: rgba(255,255,255,.55);
    text-shadow: 0 8px 22px rgba(0,0,0,.35);
    font-size: 12px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,.20);
    border: 1px solid rgba(255,255,255,.18);
  }

  /* body */
  .rent-cardx__body{
    padding: 16px;
    display:flex;
    flex-direction:column;
    gap:12px;
  }

  .rent-cardx__price {
      font-size: 22px;
      font-weight: 600;
      letter-spacing: -.3px;
      color: var(--rent-accent);
  }

  .rent-cardx__specs{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
  }
  .rent-cardx__spec{
    flex: 1 1 90px;
    min-width: 92px;
    display:flex;
    gap:8px;
    align-items:flex-end;
  }
  .rent-cardx__specNum {
    font-weight: 600;
    font-size: 16px;
    color: var(--rent-black);
    line-height: 1;
  }
  .rent-cardx__specLbl {
    font-size: 12px;
    color: var(--rent-muted);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1px;
  }
  .rent-cardx__title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--rent-black);
    line-height: 1.3;
  }

  .rent-cardx__loc{
    display:flex;
    gap:8px;
    align-items:center;
    font-size: 13px;
    color: var(--rent-muted);
    font-weight: 700;
  }
  .rent-cardx__loc svg{color:#9ca3af; flex:0 0 16px}

  .rent-cardx__hr{
    border:0;
    border-top: 1px solid rgba(230,233,238,.95);
    margin: 0;
  }

  .rent-cardx__agent{
    display:flex;
    gap:12px;
    align-items:center;
  }
  .rent-cardx__agentLogo{
    width:56px; height:56px;
    border-radius: 12px;
    background: rgba(39,171,226,.10);
    border: 1px solid rgba(39,171,226,.25);
    display:flex;
    align-items:center;
    justify-content:center;
    flex:0 0 56px;
  }
  img.avatar.avatar-96.photo {
      width: 100%;
      height: 100%;
      border-radius: 8px;
  }
  .rent-cardx__agentMark{
    width:22px; height:22px;
    background: var(--clr-primary);
    border-radius: 6px;
    box-shadow: 0 10px 20px rgba(39,171,226,.25);
  }
  .rent-cardx__agentTop {
    font-size: 12px;
    color: var(--rent-muted);
    font-weight: 600;
    margin-bottom: 2px;
  }
  .rent-cardx__agentName {
    font-size: 14px;
    color: var(--rent-black);
    font-weight: 600;
    line-height: 1.2;
  }

  .rent-cardx__btn {
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 14px;
    border-radius: 12px;
    background: var(--clr-primary);
    color: #fff;
    font-weight: 600;
    letter-spacing: .2px;
    text-decoration: none;
    border: 1px solid var(--clr-primary);
  }
  a.rent-cardx__btn:hover {
    color: var(--sell-white);
}
  .rent-cardx__btn:hover{filter: brightness(.95);}

  /* Tablet */
  @media (max-width: 900px){
    .rent-cardx{max-width:none;}
  }

  /* Mobile: card full width */
  @media (max-width: 520px){
    .rent-cardx{
      flex: 1 1 100%;
      min-width: 100%;
    }
    .rent-cardx__media{height: 190px;}
    .rent-cardx__spec{min-width: 30%;}
  }

  /* Faq section start================================= */
    /* ===== Modern FAQ (rent- prefix) ===== */
  :root{
    --rent-accent:#27ABE2;
    --rent-black:#000000;
    --rent-white:#ffffff;
    --rent-border:#e6e9ee;
    --rent-muted:#000000;
    --rent-shadow: 0 14px 30px rgba(0,0,0,.06);
    --rent-radius: 18px;
    --rent-max:1200px;
  }

  .rent-container{max-width:var(--rent-max); margin:0 auto; padding:0 16px;}

 .rent-faqs {
    padding: 60px 0;
    font-family: "Poppins", sans-serif;
    background: radial-gradient(900px 320px at 15% 30%, rgba(39,171,226,.14), rgba(255,255,255,0) 60%),
      linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border-top: 1px solid rgba(230,233,238,.9);
    border-bottom: 1px solid rgba(230,233,238,.9);
  }

  .rent-faqs__head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:16px;
    flex-wrap:wrap;
    margin-bottom: 16px;
  }

  .rent-faqs__kicker{
    display:inline-flex;
    align-items:center;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(39,171,226,.35);
    background: rgba(39,171,226,.08);
    color: #0a6f95;
    font-weight: 700;
    font-size: 12px;
    letter-spacing:.2px;
  }

  .rent-faqs__title{
    margin: 10px 0 6px;
    font-size: clamp(22px, 2.6vw, 30px);
    letter-spacing:-.4px;
    color: var(--rent-black);
    font-weight: 800;
  }

  .rent-faqs__sub{
    margin:0;
    color: var(--rent-muted);
    line-height:1.7;
    font-size: 14px;
    max-width: 72ch;
  }

  .rent-faqs__wrap{
    display:flex;
    flex-direction:column;
    gap:12px;
  }

  .rent-faq{
    border-radius: var(--rent-radius);
    background: var(--rent-white);
    border: 1px solid rgba(230,233,238,.95);
    box-shadow: var(--rent-shadow);
    overflow:hidden;
  }

 .rent-faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 16px;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: var(--rent-black);
  }

  .rent-faq__q:focus{
    outline: none;
  }

  .rent-faq__q:focus-visible{
    box-shadow: 0 0 0 4px rgba(39,171,226,.18);
    border-radius: var(--rent-radius);
  }

  .rent-faq__icon{
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid rgba(39,171,226,.28);
    background: var(--clr-black);
    position:relative;
    flex: 0 0 40px;
    transition: transform .25s ease, background .25s ease, border-color .25s ease;
  }
  .rent-faq__icon:before,
  .rent-faq__icon:after{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    transform: translate(-50%,-50%);
    background: var(--clr-primary);
    border-radius: 2px;
    transition: opacity .2s ease, transform .25s ease;
  }
  .rent-faq__icon:before{width: 16px; height: 2px;}
  .rent-faq__icon:after{width: 2px; height: 16px;}

  /* Answer: animated height */
  .rent-faq__a{
    max-height: 0;
    overflow:hidden;
    opacity: 0;
    transform: translateY(-4px);
    transition: max-height .35s ease, opacity .25s ease, transform .25s ease;
    border-top: 1px solid rgba(230,233,238,.95);
  }
  .rent-faq__aInner {
    padding: 14px 16px 16px;
    color: var(--rent-muted);
    line-height: 1.75;
    font-size: 16px;
  }

  /* Open state */
  .rent-faq.is-open .rent-faq__a{
    opacity: 1;
    transform: translateY(0);
  }
  .rent-faq.is-open .rent-faq__icon{
    background: rgba(11,15,20,.06);
    border-color: rgba(11,15,20,.18);
    transform: rotate(180deg);
  }
  .rent-faq.is-open .rent-faq__icon:after{
    opacity:0; /* turn + into - */
    transform: translate(-50%,-50%) scaleY(.4);
  }

  /* Responsive */
  @media (max-width: 520px){
    .rent-faq__q{padding: 14px 14px; font-size: 14px;}
    .rent-faq__aInner{padding: 12px 14px 14px;}
    .rent-faq__icon{width: 38px; height: 38px; border-radius: 13px;}
  }
  /* Faq section end================================= */

  /* Newsletter section end================================= */
  :root{
    --rent-shadow: 0 14px 30px rgba(0,0,0,.10);
    --rent-radius: 16px;
  }

 .rent-container {
    max-width: var(--rent-max);
    margin: 0 auto;
    padding: 30px 16px;
}

  .rent-newsletter{
    padding: 26px 0;
    font-family: "Poppins", sans-serif;
  }

  .rent-newsletter__box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    flex-wrap:wrap;
    padding: 20px 18px;
    border-radius: var(--rent-radius);
    background:
      radial-gradient(900px 240px at 10% 50%, rgba(255,255,255,.18), rgba(255,255,255,0) 60%),
      linear-gradient(90deg, rgba(39,171,226,1) 0%, rgba(39,171,226,.95) 55%, rgba(17,24,39,.92) 100%);
    box-shadow: var(--rent-shadow);
    position:relative;
    overflow:hidden;
  }

  .rent-newsletter__box:before{
    content:"";
    position:absolute;
    inset:-40px auto auto -60px;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    filter: blur(0px);
    pointer-events:none;
  }

  .rent-newsletter__left{
    flex: 1 1 280px;
    min-width: 260px;
    color: #fff;
    position:relative;
    z-index:1;
  }

  .rent-newsletter__title {
    margin: 0;
    font-size: 28px;
    letter-spacing: -.4px;
    font-weight: 600;
    line-height: 1.1;
    color: black;
  }

 .rent-newsletter__sub {
    margin: 8px 0 0;
    color: var(--rent-black);
    font-size: 16px;
    line-height: 1.6;
    max-width: 52ch;
    font-weight: 400;
  }

  .rent-newsletter__form{
    flex: 1 1 560px;
    min-width: 280px;
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    align-items:center;
    justify-content:flex-end;
    position:relative;
    z-index:1;
  }

  .rent-newsletter__field{
    flex: 1 1 210px;
    min-width: 200px;
    display:flex;
  }

  .rent-newsletter__input{
    width:100%;
    padding: 14px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.96);
    font-size: 14px;
    outline:none;
    color: var(--rent-black);
    box-shadow: 0 10px 18px rgba(0,0,0,.10);
  }

  .rent-newsletter__input::placeholder{
    color: rgba(11,15,20,.55);
    font-weight: 600;
  }

  .rent-newsletter__input:focus{
    border-color: rgba(39,171,226,.65);
    box-shadow: 0 0 0 4px rgba(39,171,226,.18), 0 10px 18px rgba(0,0,0,.12);
  }

  .rent-newsletter__btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(11,15,20,.92);
    color: #fff;
    font-weight: 600;
    letter-spacing: .3px;
    cursor: pointer;
    transition: .2s ease;
    min-width: 170px;
  }

  .rent-newsletter__btn:hover{
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 14px 26px rgba(0,0,0,.18);
  }

  .rent-newsletter__icon{
    opacity: .95;
  }

  /* Tablet */
  @media (max-width: 900px){
    .rent-newsletter__form{justify-content:flex-start;}
    .rent-newsletter__btn{min-width: 180px;}
  }

  /* Mobile */
  @media (max-width: 520px){
    .rent-newsletter__box{padding: 16px 14px;}
    .rent-newsletter__title{font-size: 22px;}
    .rent-newsletter__field{min-width: 100%;}
    .rent-newsletter__btn{width:100%;}
  }
  /* Newsletter section end================================= */