/* Demo homepage: Nano-style full-bleed banner + shortcut cards. */

.home-demo-fold {
  --demo-hero-h: auto;
}

.home-demo-hero {
  width: 100%;
  margin: 0;
  padding: 0;

  height: auto;
  aspect-ratio: 1920 / 570;
  max-height: none;
  position: relative;
  overflow: hidden;
}

.home-demo-swiper,
.home-demo-swiper .swiper-wrapper,
.home-demo-swiper .swiper-slide {
  width: 100%;
  height: 100% !important;
}

.home-demo-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-demo-swiper .home-demo-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.home-demo-swiper .home-demo-next,
.home-demo-swiper .home-demo-prev {
  color: #6b7280;
  width: 44px;
  height: 44px;
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
}

.home-demo-swiper .home-demo-next::after,
.home-demo-swiper .home-demo-prev::after {
  font-size: 22px;
  font-weight: 700;
}

.home-demo-swiper .home-demo-prev {
  left: 12px;
}

.home-demo-swiper .home-demo-next {
  right: 12px;
}

.home-demo-swiper .home-demo-pagination {
  bottom: 14px;
}

.home-demo-swiper .home-demo-pagination .swiper-pagination-bullet {
  background-color: #7dae68;
  opacity: 0.45;
  width: 8px;
  height: 8px;
}

.home-demo-swiper .home-demo-pagination .swiper-pagination-bullet-active {
  background-color: #2d661b;
  opacity: 1;
}

.home-demo-shortcuts {
  width: 100%;
  padding: 24px 0 28px;
  background: #f6f6f6;
}

.home-demo-shortcuts .home-demo-shortcuts-inner {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.home-demo-shortcuts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px 20px;
}

.home-demo-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 96px;
  text-align: left;
  text-decoration: none;
  border: 0;
  border-radius: 16px;
  padding: 18px 28px;
  cursor: pointer;
  color: #6a6a6a;
  background-color: #fff;
  background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
  background-size: 12px 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.home-demo-card:hover,
.home-demo-card:focus {
  transform: translateY(-8px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.14);
  color: #6a6a6a;
  text-decoration: none;
}

.home-demo-card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: inherit;
}

.home-demo-card__sub {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.4;
  color: inherit;
  opacity: 0.92;
}

.home-demo-card > div {
  min-width: 0;
  flex: 1 1 auto;
}

.home-demo-card__icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  transition: transform 0.3s ease;
}

.home-demo-card__icon svg,
.home-demo-card__icon img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.home-demo-card:hover .home-demo-card__icon {
  transform: scale(1.1);
}

.home-demo-card--book {
  background-color: #2d661b;
  background-image: none;
  color: #fff;
  box-shadow: 0 8px 20px rgba(45, 102, 27, 0.28);
}

.home-demo-card--book:hover,
.home-demo-card--book:focus {
  color: #fff;
  background-color: #245416;
  box-shadow: 0 16px 32px rgba(45, 102, 27, 0.35);
}

.home-demo-card--book .home-demo-card__sub {
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
  .home-demo-shortcuts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-demo-swiper .home-demo-next,
  .home-demo-swiper .home-demo-prev {
    display: flex;
  }
}

@media (max-width: 767.98px) {
  .home-demo-hero {
    height: auto;
    max-height: none;
  }

  .home-demo-swiper,
  .home-demo-swiper .swiper-wrapper,
  .home-demo-swiper .swiper-slide {
    height: auto !important;
  }

  .home-demo-swiper .home-demo-slide-img {
    height: auto;
    aspect-ratio: 1920 / 570;
    object-fit: cover;
  }

  .home-demo-swiper .home-demo-next,
  .home-demo-swiper .home-demo-prev {
    display: none;
  }

  .home-demo-shortcuts {
    padding: 14px 0 18px;
    background: #fff;
  }

  .home-demo-shortcuts .home-demo-shortcuts-inner {
    width: 100%;
    max-width: none;
    padding: 0 16px;
  }

  .home-demo-shortcuts-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-demo-card {
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 12px;
    min-height: 52px;
    padding: 11px 16px;
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    background-color: #fff;
    background-image: none;
    box-shadow: none;
    color: #4b5563;
  }

  .home-demo-card:hover,
  .home-demo-card:focus {
    transform: none;
    box-shadow: none;
    color: #4b5563;
  }

  .home-demo-card__title {
    font-size: 15px;
    font-weight: 600;
    color: inherit;
  }

  .home-demo-card__sub {
    display: none;
  }

  .home-demo-card__icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
  }

  .home-demo-card__icon svg,
  .home-demo-card__icon img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
  }

  .home-demo-card:hover .home-demo-card__icon {
    transform: none;
  }

  .home-demo-card--book {
    background-color: #2d661b;
    border-color: #2d661b;
    color: #fff;
    box-shadow: none;
  }

  .home-demo-card--book:hover,
  .home-demo-card--book:focus {
    color: #fff;
    background-color: #245416;
  }

  .home-demo-card--book .home-demo-card__title {
    color: #fff;
  }
}

/* ── Orbit / Why Choose Us ── */
.home-demo-orbit {
  padding: 48px 16px 32px;
  background: #fff;
}

.home-demo-orbit__wrap {
  max-width: 1024px;
  margin: 0 auto;
}

.home-demo-orbit__intro {
  text-align: center;
  margin-bottom: 32px;
}

.home-demo-orbit__title {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  color: #737373;
}

.home-demo-orbit__subtitle {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 600;
  color: #737373;
}

.home-demo-orbit__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: #2d661b;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.home-demo-orbit__cta:hover {
  gap: 12px;
  color: #245416;
}

.home-demo-orbit-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2d661b;
  color: #fff;
  flex-shrink: 0;
}

.home-demo-orbit-arrow svg {
  width: 12px;
  height: 12px;
}

.home-demo-orbit__stage {
  position: relative;
  width: 100%;
  max-width: 700px;
  height: 600px;
  margin: 0 auto;
}

.home-demo-orbit__photo {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  width: 450px;
  height: 450px;
  margin: 0;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 50%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
  transform: translate(-50%, -50%);
}

.home-demo-orbit__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.home-demo-orbit__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 560px;
  height: 560px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.home-demo-orbit__ring svg {
  width: 100%;
  height: 100%;
}

.home-demo-orbit__node {
  position: absolute;
  z-index: 20;
}

.home-demo-orbit__node--top {
  left: 50%;
  top: 5px;
  transform: translateX(-50%);
}

.home-demo-orbit__node--right {
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
}

.home-demo-orbit__node--br {
  right: 130px;
  bottom: 80px;
}

.home-demo-orbit__node--bl {
  left: 130px;
  bottom: 80px;
}

.home-demo-orbit__node--left {
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
}

.home-demo-orb {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  border: 4px solid #d1d5db;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.home-demo-orb:hover {
  transform: scale(1.1);
}

.home-demo-orb.is-active {
  background: #2d661b;
  border-color: #2d661b;
}

.home-demo-orbit__copy {
  position: absolute;
  top: 50%;
  width: 144px;
  transform: translateY(-50%);
}

.home-demo-orbit__copy--right {
  left: 64px;
  text-align: left;
}

.home-demo-orbit__copy--left {
  right: 64px;
  text-align: right;
}

.home-demo-orbit__copy p {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: #737373;
}

.home-demo-orbit__copy a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #2d661b;
  font-size: 12px;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.home-demo-orbit__copy--left a {
  justify-content: flex-end;
}

.home-demo-orbit__copy a:hover {
  gap: 8px;
  color: #245416;
}

.home-demo-orbit__copy .home-demo-orbit-arrow {
  width: 16px;
  height: 16px;
}

.home-demo-orbit__copy .home-demo-orbit-arrow svg {
  width: 10px;
  height: 10px;
}

@media (max-width: 991.98px) {
  .home-demo-orbit__title {
    font-size: 26px;
  }

  .home-demo-orbit__photo {
    width: 360px;
    height: 360px;
  }

  .home-demo-orbit__ring {
    width: 460px;
    height: 460px;
  }

  .home-demo-orbit__stage {
    height: 520px;
    max-width: 620px;
  }

  .home-demo-orbit__node--right {
    right: 24px;
  }

  .home-demo-orbit__node--left {
    left: 24px;
  }

  .home-demo-orbit__node--br {
    right: 80px;
    bottom: 60px;
  }

  .home-demo-orbit__node--bl {
    left: 80px;
    bottom: 60px;
  }

  .home-demo-orbit__copy {
    width: 120px;
  }

  .home-demo-orbit__copy p {
    font-size: 15px;
  }
}

/* ── Mobile accordion ── */
.home-demo-orbit-mobile {
  background: #fff;
  padding: 8px 20px 24px;
}

.home-demo-acc {
  max-width: 520px;
  margin: 0 auto;
}

.home-demo-acc__item {
  border-top: 1px solid #e5e7eb;
}

.home-demo-acc__item:last-child {
  border-bottom: 1px solid #e5e7eb;
}

.home-demo-acc__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: #737373;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  line-height: 1.35;
}

.home-demo-acc__chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-left: 12px;
  stroke: #9ca3af;
  transition: transform 0.25s ease;
}

.home-demo-acc__item.is-open .home-demo-acc__chevron {
  transform: rotate(180deg);
}

.home-demo-acc__panel {
  display: none !important;
  padding: 8px 0 28px;
  text-align: center;
}

.home-demo-acc__item.is-open .home-demo-acc__panel {
  display: block !important;
}

.home-demo-acc__panel img {
  width: 260px;
  height: 260px;
  margin: 8px auto 20px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.home-demo-acc__panel .home-demo-orbit__cta {
  justify-content: center;
  font-weight: 600;
}

/* ── Centers of Excellence ── */
.home-demo-coe {
  width: 100%;
  padding: 40px 16px 56px;
  background: #fff;
}

.home-demo-coe__head {
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
}

.home-demo-coe__title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #737373;
  line-height: 1.3;
}

.home-demo-coe__title span {
  color: #2d661b;
  font-weight: 600;
}

.home-demo-coe__tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 64px;
  margin-top: 24px;
  border-bottom: 1px solid #e5e7eb;
}

.home-demo-coe__tab {
  position: relative;
  padding: 0 0 16px;
  border: 0;
  background: transparent;
  color: #6b7280;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
}

.home-demo-coe__tab:hover,
.home-demo-coe__tab.is-active {
  color: #2d661b;
}

.home-demo-coe__tab.is-active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 128px;
  height: 2px;
  background: #2d661b;
  border-radius: 999px;
  transform: translateX(-50%);
}

.home-demo-coe__panel[hidden] {
  display: none !important;
}

.home-demo-coe__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .home-demo-coe__row {
    padding: 0 48px;
  }
}

.home-demo-coe__card {
  position: relative;
  width: 260px;
  height: 360px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  background-color: #fff;
  background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
  background-size: 14px 14px;
}

.home-demo-coe__art {
  position: absolute;
  right: -24px;
  left: auto;
  top: 54%;
  z-index: 10;
  height: 240px;
  width: 240px;
  object-fit: contain;
  transform: translateY(-50%);
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.home-demo-coe__label {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 24px;
  z-index: 10;
  transition: opacity 0.3s ease;
}

.home-demo-coe__label h3 {
  margin: 0;
  color: #2d661b;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.home-demo-coe__hover {
  position: absolute;
  inset: 0;
  z-index: 20;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.home-demo-coe__hover-bg {
  position: absolute;
  inset: 0;
  background: rgba(45, 102, 27, 0.8);
}

.home-demo-coe__art--ghost {
  z-index: 20;
  right: -24px;
  height: 240px;
  width: 240px;
  opacity: 0.38;
  filter: none;
  mix-blend-mode: normal;
  pointer-events: none;
  transform: translateY(-50%);
}

.home-demo-coe__hover-copy {
  position: relative;
  z-index: 21;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 24px;
  color: #fff;
}

.home-demo-coe__hover-copy h3 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
}

.home-demo-coe__hover-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.95;
}

.home-demo-coe__more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
}

.home-demo-coe__more-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 50%;
}

.home-demo-coe__card:hover .home-demo-coe__art:not(.home-demo-coe__art--ghost),
.home-demo-coe__card:focus-visible .home-demo-coe__art:not(.home-demo-coe__art--ghost) {
  opacity: 0;
  transform: translateY(-50%) scale(0.95);
}

.home-demo-coe__card:hover .home-demo-coe__label,
.home-demo-coe__card:focus-visible .home-demo-coe__label {
  opacity: 0;
}

.home-demo-coe__card:hover .home-demo-coe__hover,
.home-demo-coe__card:focus-visible .home-demo-coe__hover {
  opacity: 1;
}

.home-demo-coe__all {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  color: #2d661b;
  font-weight: 600;
  text-decoration: none;
}

.home-demo-coe__all h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: inherit;
}

.home-demo-coe__all:hover {
  color: #245416;
}

/* ── Featured Doctors ── */
.home-demo-doctors {
  width: 100%;
  padding: 24px 16px 64px;
  background: #fff;
}

.home-demo-doctors__head {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.home-demo-doctors__head h2 {
  margin: 0;
  color: #404040;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
}

.home-demo-doctors__head p {
  margin: 10px auto 0;
  max-width: 560px;
  color: #737373;
  font-size: 15px;
  line-height: 1.6;
}

.home-demo-doctors__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 40px 28px;
  margin-top: 28px;
}

.home-demo-doctor {
  position: relative;
  width: 300px;
  padding-top: 90px;
}

.home-demo-doctor__photo {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: 180px;
  height: 180px;
  transform: translateX(-50%);
  pointer-events: none;
}

.home-demo-doctors .home-demo-doctor__photo img {
  display: block !important;
  width: 180px !important;
  height: 180px !important;
  max-width: none !important;
  margin: 0;
  padding: 0;
  object-fit: cover !important;
  object-position: top center;
  border-radius: 50%;
  border: 3px solid #fff;
  background: #f3f4f6;
  box-shadow: 0 0 0 1px #e5e7eb;
}

.home-demo-doctor__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 268px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
  text-align: center;
  padding-top: 102px;
}

.home-demo-doctor__share {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #9ca3af;
  cursor: pointer;
  transition: color 0.2s ease;
}

.home-demo-doctor__share:hover,
.home-demo-doctor__share:focus-visible,
.home-demo-doctor__share.is-copied {
  color: #2d661b;
}

.home-demo-doctor__share svg {
  width: 22px;
  height: 22px;
  display: block;
  margin: 0 auto;
}

.home-demo-doctor__copy {
  flex: 1 1 auto;
  padding: 0 18px 22px;
}

.home-demo-doctor__copy h3 {
  margin: 0;
  color: #111827;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.home-demo-doctor__qual {
  margin: 6px 0 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.4;
}

.home-demo-doctor__kmc {
  margin: 4px 0 0;
  color: #9ca3af;
  font-size: 12px;
}

.home-demo-doctor__role {
  margin: 12px 0 0;
  color: #2d661b;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.home-demo-doctor__actions {
  display: flex;
  margin-top: auto;
  border-top: 1px solid #e5e7eb;
}

.home-demo-doctors .home-demo-doctor__actions a {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.2;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.home-demo-doctors .home-demo-doctor__actions a:first-child {
  background: #2d661b;
  color: #fff;
}

.home-demo-doctors .home-demo-doctor__actions a:first-child:hover,
.home-demo-doctors .home-demo-doctor__actions a:first-child:focus-visible {
  background: #245416;
  color: #fff;
}

.home-demo-doctors .home-demo-doctor__actions a:last-child {
  color: #2d661b;
  background: #fff;
  border-left: 1px solid #e5e7eb;
}

.home-demo-doctors .home-demo-doctor__actions a:last-child:hover,
.home-demo-doctors .home-demo-doctor__actions a:last-child:focus-visible {
  background: #f3f8f0;
}

.home-demo-doctors__all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 36px;
  color: #2d661b;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.home-demo-doctors__all svg {
  width: 16px;
  height: 16px;
}

.home-demo-doctors__all:hover {
  color: #245416;
}

/* ── Our Medical Services ── */
.home-demo-msvc {
  width: 100%;
  padding: 48px 16px 72px;
  background: #f5f5f5;
}

.home-demo-msvc__title {
  margin: 0 auto 32px;
  text-align: center;
  color: #404040;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
}

.home-demo-msvc__grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.home-demo-msvc__mid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.home-demo-msvc__card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-demo-msvc__card:hover,
.home-demo-msvc__card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.home-demo-msvc__card--photo img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.home-demo-msvc__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 20px;
  min-height: 190px;
}

.home-demo-msvc__body h3 {
  margin: 0;
  padding-right: 72px;
  color: #374151;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.home-demo-msvc__body p {
  margin: 10px 0 0;
  padding-right: 56px;
  color: #737373;
  font-size: 14px;
  line-height: 1.55;
}

.home-demo-msvc__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  color: #4b5563;
  font-size: 14px;
  font-weight: 500;
}

.home-demo-msvc__go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2d661b;
  color: #fff;
  flex-shrink: 0;
}

.home-demo-msvc__go svg {
  width: 14px;
  height: 14px;
}

.home-demo-msvc__card:hover .home-demo-msvc__go,
.home-demo-msvc__card:focus-visible .home-demo-msvc__go {
  background: #245416;
}

.home-demo-msvc__icon {
  position: absolute;
  right: 10px;
  bottom: 8px;
  z-index: 0;
  width: 92px;
  height: 92px;
  color: #d4d4d4;
  pointer-events: none;
}

.home-demo-msvc__icon svg {
  width: 100%;
  height: 100%;
}

/* ── Closer to You / branches ── */
.home-demo-near {
  width: 100%;
  padding: 48px 16px 72px;
  background: #fff;
}

.home-demo-near__grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.home-demo-near__photo {
  position: relative;
  display: block;
  min-height: 440px;
  overflow: hidden;
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
}

.home-demo-near__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-demo-near__overlay {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 2;
  width: calc(100% - 40px);
  padding: 14px 18px 16px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 12px;
  text-align: center;
  transform: translateX(-50%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.home-demo-near__overlay strong {
  display: block;
  color: #1f2937;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.home-demo-near__overlay span {
  display: block;
  margin-top: 4px;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.4;
}

.home-demo-near__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 36px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.home-demo-near__kicker {
  margin: 0 0 12px;
  color: #2d661b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-demo-near__copy h2 {
  margin: 0;
  color: #111827;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
}

.home-demo-near__lead {
  margin: 16px 0 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
}

.home-demo-near__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.home-demo-near__pills span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef6e6;
  color: #2d661b;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.home-demo-near__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: 24px;
  padding: 12px 22px;
  border-radius: 8px;
  background: #2d661b;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.home-demo-near__btn:hover,
.home-demo-near__btn:focus-visible {
  background: #245416;
  color: #fff;
}

/* ── TruScan Near You ── */
.home-demo-locs {
  width: 100%;
  padding: 40px 16px 72px;
  background: #f5f5f5;
}

.home-demo-locs__title {
  margin: 0 auto 32px;
  text-align: center;
  color: #404040;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
}

.home-demo-locs__grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.home-demo-loc {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-demo-loc:hover,
.home-demo-loc:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.home-demo-loc img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.home-demo-loc__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 24px 24px;
  text-align: center;
}

.home-demo-loc__place {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.3;
}

.home-demo-loc__place svg {
  width: 16px;
  height: 16px;
  color: #2d661b;
  flex-shrink: 0;
}

.home-demo-loc__body h3 {
  margin: 12px 0 0;
  color: #374151;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}

.home-demo-loc__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
}

.home-demo-loc__go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2d661b;
  color: #fff;
  flex-shrink: 0;
}

.home-demo-loc__go svg {
  width: 14px;
  height: 14px;
}

.home-demo-loc:hover .home-demo-loc__go,
.home-demo-loc:focus-visible .home-demo-loc__go {
  background: #245416;
}

/* ── Patient Stories ── */
.home-demo-stories {
  width: 100%;
  padding: 96px 16px;
  background: #fff;
}

.home-demo-stories__inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.home-demo-stories__inner h2 {
  margin: 0 0 56px;
  text-align: center;
  color: #4b5563;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}

.home-demo-stories__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.home-demo-stories__col--stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.home-demo-story-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  background: #111;
}

.home-demo-story-card--lg {
  border-radius: 24px;
}

.home-demo-story-card img {
  width: 100%;
  height: 176px;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  transition: transform 0.3s ease;
}

.home-demo-story-card--md img {
  height: 224px;
}

.home-demo-story-card--lg img {
  height: 450px;
}

.home-demo-story-card:hover img {
  transform: scale(1.05);
}

.home-demo-story-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.home-demo-story-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.home-demo-story-card__play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.home-demo-story-card:hover .home-demo-story-card__play-btn {
  transform: scale(1.1);
  background: #f3f8f1;
}

.home-demo-story-card__play-btn svg {
  width: 20px;
  height: 20px;
  color: #2d661b;
  margin-left: 2px;
}

.home-demo-stories__more {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

.home-demo-stories__more a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2d661b;
  font-weight: 600;
  font-size: 15px;
}

.home-demo-stories__more a span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #2d661b;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.home-demo-stories__more a:hover {
  color: #245416;
}

.home-demo-story-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.home-demo-story-modal.is-open {
  display: flex !important;
}

.home-demo-story-modal__box {
  position: relative;
  background: #000;
  border-radius: 16px;
  width: min(360px, 90vw);
  aspect-ratio: 9 / 16;
  max-height: 86vh;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.home-demo-story-modal__close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: #000;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
}

.home-demo-story-modal iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (min-width: 768px) {
  .home-demo-stories__grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-demo-stories__col--center {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .home-demo-stories__grid {
    grid-template-columns: 1fr 1fr 1.35fr 1fr 1fr;
  }

  .home-demo-stories__col--center {
    grid-column: auto;
  }
}

/* ── Testimonials ── */
.home-demo-quotes {
  width: 100%;
  padding: 56px 16px 72px;
  background: #eef6e6;
}

.home-demo-quotes__head {
  max-width: 1080px;
  margin: 0 auto 36px;
  text-align: center;
}

.home-demo-quotes__head p {
  margin: 0;
  color: #2d661b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-demo-quotes__head h2 {
  margin: 10px 0 0;
  color: #1f2937;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.home-demo-quotes__head h2 span {
  color: #2d661b;
}

.home-demo-quotes__wrap {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 56px;
}

.home-demo-quotes-swiper {
  overflow: hidden;
  padding: 8px 4px 12px;
}

.home-demo-quotes-swiper .swiper-slide {
  height: auto;
  display: flex;
  background: transparent !important;
  text-align: left;
  padding: 0;
}

.home-demo-quote {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 320px;
  padding: 28px 26px 24px;
  background: #fff;
  border: 1px solid #dce8d4;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(28, 52, 16, 0.08);
}

.home-demo-quote__mark {
  display: block;
  margin-bottom: 10px;
  color: #2d661b;
  font-size: 42px;
  font-weight: 700;
  line-height: 0.7;
}

.home-demo-quote__text {
  margin: 0;
  color: #374151;
  font-size: 15px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-demo-quote__person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid #eef2ea;
}

.home-demo-quote__avatar {
  display: block;
  width: 52px;
  min-width: 52px;
  height: 52px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  background: #e8f0e4;
  overflow: hidden;
  flex: 0 0 52px;
}

.home-demo-quotes .swiper-slide .home-demo-quote__avatar img,
.home-demo-quotes .home-demo-quote__avatar img {
  display: block !important;
  width: 52px !important;
  height: 52px !important;
  max-width: none !important;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  object-fit: cover !important;
  object-position: center center;
  transform: scale(1.08);
}

.home-demo-quote__person strong {
  display: block;
  color: #111827;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.home-demo-quote__loc {
  display: block;
  margin-top: 3px;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.3;
}

.home-demo-quote__stars {
  display: flex;
  gap: 3px;
  margin-top: 8px;
  color: #2d661b;
  font-size: 13px;
  letter-spacing: 1px;
}

.home-demo-quotes-prev,
.home-demo-quotes-next,
.home-demo-quotes .swiper-button-prev,
.home-demo-quotes .swiper-button-next {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #2d661b !important;
  color: #fff !important;
  box-shadow: 0 6px 16px rgba(45, 102, 27, 0.28);
  transform: translateY(-50%);
}

.home-demo-quotes-prev,
.home-demo-quotes .swiper-button-prev { left: 0; right: auto; }
.home-demo-quotes-next,
.home-demo-quotes .swiper-button-next { right: 0; left: auto; }

.home-demo-quotes-prev:after,
.home-demo-quotes-next:after,
.home-demo-quotes .swiper-button-prev:after,
.home-demo-quotes .swiper-button-next:after {
  display: none !important;
  content: none !important;
  font-size: 0 !important;
}

.home-demo-quotes-prev svg,
.home-demo-quotes-next svg {
  width: 18px;
  height: 18px;
  display: block;
  margin: 0 auto;
}

.home-demo-quotes-prev:hover,
.home-demo-quotes-next:hover {
  background: #245416 !important;
}

.home-demo-quotes-pagination,
.home-demo-quotes .swiper-pagination {
  position: static !important;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  width: 100% !important;
  bottom: auto !important;
  left: auto !important;
}

.home-demo-quotes-pagination .swiper-pagination-bullet,
.home-demo-quotes .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0 !important;
  background: #b7c9ae !important;
  border: 0 !important;
  opacity: 1 !important;
}

.home-demo-quotes-pagination .swiper-pagination-bullet-active,
.home-demo-quotes .swiper-pagination-bullet-active {
  background: #2d661b !important;
  border: 0 !important;
}

/* ── Cashless Insurance & TPA ── */
.home-demo-tpa {
  width: 100%;
  padding: 48px 16px 72px;
  background: #fff;
}

.home-demo-tpa__head {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.home-demo-tpa__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #eef6e6;
  color: #2d661b;
  font-size: 13px;
  font-weight: 600;
}

.home-demo-tpa__badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2d661b;
}

.home-demo-tpa__head h2 {
  margin: 16px 0 0;
  color: #1f2937;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
}

.home-demo-tpa__head p {
  margin: 12px auto 0;
  max-width: 640px;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.65;
}

.home-demo-tpa__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.home-demo-tpa__tab {
  padding: 12px 22px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  color: #374151;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.home-demo-tpa__tab:hover,
.home-demo-tpa__tab.is-active {
  background: #2d661b;
  border-color: #2d661b;
  color: #fff;
}

.home-demo-tpa__panel[hidden] {
  display: none !important;
}

.home-demo-tpa__card {
  max-width: 1080px;
  margin: 28px auto 0;
  padding: 28px 28px 32px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.home-demo-tpa__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.home-demo-tpa__card-head h3 {
  margin: 0;
  color: #2d661b;
  font-size: 18px;
  font-weight: 700;
}

.home-demo-tpa__card-head span {
  flex-shrink: 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef6e6;
  color: #2d661b;
  font-size: 13px;
  font-weight: 600;
}

.home-demo-tpa__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-demo-tpa__grid li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  color: #374151;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.3;
}

@media (max-width: 991.98px) {
  .home-demo-tpa__grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-demo-locs__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .home-demo-near__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .home-demo-near__photo {
    min-height: 320px;
  }

  .home-demo-near__copy {
    padding: 28px 24px;
  }

  .home-demo-near__copy h2 {
    font-size: 26px;
  }

  .home-demo-msvc__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .home-demo-msvc__card--photo img {
    height: 200px;
  }
}

@media (max-width: 767.98px) {
  .home-demo-quotes {
    padding: 32px 16px 56px;
  }

  .home-demo-quotes__head h2 {
    font-size: 24px;
  }

  .home-demo-quotes__wrap {
    padding: 0;
  }

  .home-demo-quotes-prev,
  .home-demo-quotes-next {
    display: none;
  }

  .home-demo-tpa {
    padding: 32px 16px 56px;
  }

  .home-demo-tpa__head h2 {
    font-size: 24px;
  }

  .home-demo-tpa__card {
    padding: 20px 16px 24px;
  }

  .home-demo-tpa__card-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-demo-tpa__grid {
    grid-template-columns: 1fr;
  }

  .home-demo-locs {
    padding: 32px 16px 56px;
  }

  .home-demo-locs__title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .home-demo-msvc {
    padding: 32px 16px 56px;
  }

  .home-demo-msvc__title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .home-demo-msvc__body {
    min-height: 0;
  }

  .home-demo-doctors__head h2 {
    font-size: 24px;
  }

  .home-demo-doctors__row {
    gap: 36px 16px;
  }

  .home-demo-doctor {
    width: min(320px, 100%);
    padding-top: 82px;
  }

  .home-demo-doctor__photo {
    width: 164px;
    height: 164px;
  }

  .home-demo-doctors .home-demo-doctor__photo img {
    width: 164px !important;
    height: 164px !important;
  }

  .home-demo-doctor__card {
    padding-top: 94px;
  }

  .home-demo-coe__tabs {
    gap: 32px;
  }

  .home-demo-coe__tab {
    font-size: 16px;
  }

  .home-demo-coe__tab.is-active::after {
    width: 96px;
  }

  .home-demo-coe__row {
    gap: 20px;
  }
}

.home-demo-faq {
  width: 100%;
  padding: 48px 16px 72px;
  background: #fff;
}

.home-demo-faq__inner {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
}

.home-demo-faq h2 {
  margin: 0 0 10px;
  text-align: center;
  color: #737373;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
}

.home-demo-faq__sub {
  margin: 0 0 40px;
  text-align: center;
  color: #6b7280;
  font-size: 16px;
  font-weight: 400;
}

.home-demo-faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home-demo-faq__item {
  padding: 20px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
}

.home-demo-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  cursor: pointer;
  color: #1f2937;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}

.home-demo-faq__item summary::-webkit-details-marker,
.home-demo-faq__item summary::marker {
  display: none;
}

.home-demo-faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.home-demo-faq__icon::before,
.home-demo-faq__icon::after {
  content: "";
  position: absolute;
  background: #2d661b;
  border-radius: 1px;
}

.home-demo-faq__icon::before {
  top: 10px;
  left: 4px;
  width: 14px;
  height: 2px;
}

.home-demo-faq__icon::after {
  top: 4px;
  left: 10px;
  width: 2px;
  height: 14px;
}

.home-demo-faq__item[open] .home-demo-faq__icon::after {
  display: none;
}

.home-demo-faq__item p {
  margin: 12px 0 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
}

.home-demo-faq__item p a {
  color: #2d661b;
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .home-demo-faq {
    padding: 32px 16px 48px;
  }

  .home-demo-faq h2 {
    font-size: 24px;
  }

  .home-demo-faq__item summary {
    font-size: 15px;
  }
}
