/*
  Home page section: Rent CTA.
  Full-width blue band with decorative circles and central action.
*/

.home-rent {
  position: relative;
  overflow: hidden;
  background: #1f63b7;
  padding: clamp(70px, 10vw, 124px) 0;
}

.home-rent-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(149, 193, 246, 0.22);
  pointer-events: none;
}

.home-rent-orb--left {
  width: clamp(180px, 17vw, 320px);
  height: clamp(180px, 17vw, 320px);
  top: clamp(-98px, -5vw, -44px);
  left: clamp(-110px, -5vw, -32px);
}

.home-rent-orb--right {
  width: clamp(170px, 16vw, 300px);
  height: clamp(170px, 16vw, 300px);
  right: clamp(-88px, -4.5vw, -24px);
  bottom: clamp(-90px, -4vw, -20px);
}

.home-rent-shell {
  position: relative;
  z-index: 1;
}

.home-rent-inner {
  max-width: 920px;
  margin: 0 auto;
}

.home-rent-title {
  margin: 0;
  color: #ffffff;
  font-family: "kallisto", "Bai Jamjuree", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(50px, 4.7vw, 82px);
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.home-rent-title span {
  font-style: italic;
}

.home-rent-subtitle {
  margin: 0.6rem auto 0;
  max-width: 720px;
  color: rgba(229, 239, 255, 0.92);
  font-size: clamp(16px, 1.45vw, 25px);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.home-rent-button {
  margin-top: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 176px;
  min-height: 54px;
  border-radius: 7px;
  border: 0;
  background: #f4f7fb;
  color: #1b59a6;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.home-rent-button:hover,
.home-rent-button:focus {
  color: #124787;
  background: #ffffff;
  transform: translateY(-2px);
}

.home-rent-coach-card {
  margin: 1.4rem auto 0;
  max-width: 640px;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
}

.home-rent-coach-kicker {
  margin: 0;
  color: rgba(224, 237, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-rent-coach-copy {
  margin: 0.35rem 0 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
}

.home-rent-coach-copy a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.home-rent-coach-copy a:hover,
.home-rent-coach-copy a:focus {
  color: #dfeeff;
}

.home-rent-button:active,
.home-rent-button.is-touch-active {
  color: #124787;
  background: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .home-rent {
    padding-top: 62px;
    padding-bottom: 72px;
  }
}

@media (max-width: 640px) {
  .home-rent {
    padding-top: 52px;
    padding-bottom: 62px;
  }

  .home-rent-title {
    font-size: clamp(38px, 10vw, 54px);
  }

  .home-rent-subtitle {
    font-size: clamp(15px, 4.4vw, 18px);
  }
}

@media (max-width: 420px) {
  .home-rent-title {
    font-size: clamp(33px, 11vw, 43px);
  }

  .home-rent-subtitle {
    font-size: clamp(14px, 4.5vw, 16px);
  }

  .home-rent-button {
    min-width: 158px;
    min-height: 48px;
    font-size: 0.8rem;
  }

  .home-rent-coach-card {
    padding: 0.9rem 0.95rem;
  }
}
