/* ============================================= */
/* REHANDYBOT — Stylesheet                       */
/* ============================================= */

/* --- Hero Section - Image Right, Text Left --- */
.rehandybot-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rehandybot-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.rehandybot-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 500px;
  overflow: hidden;
}

.rehandybot-hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rehandybot-hero-title {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 20px;
}

.rehandybot-hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  text-align: justify;
  max-width: 600px;
  margin-bottom: 40px;
}

.rehandybot-hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: none !important;
  border-radius: 0 !important;
  background: transparent;
}

/* --- Book Demo Button - Same as Homepage --- */

.rehandybot-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* --- Row Sections - Same as H-Man --- */
.rehandybot-row {
  padding: 80px 0;
}

.rehandybot-row .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.rehandybot-row .two-col .col p {
  text-align: justify;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

.rehandybot-row .two-col .col .section-title {
  font-size: 36px;
  font-weight: 600;
  color: #142D47;
  line-height: 1.3;
  margin-bottom: 24px;
  font-family: 'Poppins', sans-serif;
}

.rehandybot-row .two-col .col img {
  width: 100%;
  height: auto;
  border-radius: 0;
  border: none;
}

/* --- Light Background Row --- */
.bg-light .rehandybot-row .two-col .col p {
  color: #555;
}

/* --- Stats Section - Light Gray Background --- */
.rehandybot-stats {
  padding: 80px 0;
}

.rehandybot-stats .section-title {
  font-size: 36px;
  font-weight: 600;
  color: #142D47;
  line-height: 1.3;
  margin-bottom: 24px;
  font-family: 'Poppins', sans-serif;
}

.rehandybot-stats p {
  text-align: justify;
  font-size: 17px;
  line-height: 1.8;
  color: #555;
}

/* --- No Border Utility --- */
.no-border {
  border: none !important;
  border-radius: 0 !important;
  outline: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .rehandybot-hero-title {
    font-size: 32px;
  }
  
  .rehandybot-hero-subtitle {
    font-size: 16px;
    max-width: 500px;
  }
  
  .rehandybot-row .two-col {
    gap: 40px;
  }
  
  .rehandybot-hero-right {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .rehandybot-hero {
    min-height: 60vh;
    padding: 60px 0 40px;
    margin-top: 56px;
  }
  
  .rehandybot-hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .rehandybot-hero-left {
    text-align: center;
  }
  
  .rehandybot-hero-right {
    height: 300px;
  }
  
  .rehandybot-hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
  }
  
  .rehandybot-hero-title {
    font-size: 26px;
  }
  
  .rehandybot-hero-subtitle {
    font-size: 16px;
    margin-bottom: 0;
  }
  
  .rehandybot-row {
    padding: 50px 0;
  }
  
  .rehandybot-row .two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .rehandybot-row .two-col .col .section-title {
    font-size: 26px;
  }
  
  .rehandybot-stats {
    padding: 50px 0;
  }
  
  .rehandybot-stats .section-title {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .rehandybot-hero-title {
    font-size: 22px;
  }
  
  .rehandybot-hero-subtitle {
    font-size: 15px;
  }
  
  .rehandybot-hero-right {
    height: 250px;
  }
  
  .rehandybot-row .two-col .col .section-title {
    font-size: 22px;
  }
  
  .rehandybot-stats .section-title {
    font-size: 22px;
  }
}