.health-assist-page {
  --ha-navy: var(--primary-color, #0c1a33);
  --ha-navy-deep: #081224;
  --ha-gold: var(--secondary-color, #ba9753);
  --ha-gold-deep: #9a7d42;
  --ha-sky: #f5f0e6;
  --ha-ink: #102437;
  --ha-ink-dim: #566879;
  --ha-ink-faint: #8698a8;
  --ha-line: #e2eaf0;
  --ha-bg: #ffffff;
  --ha-bg-alt: #f8f6f2;
  --ha-radius: 14px;
  color: var(--ha-ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.65;
}

.health-assist-page img {
  max-width: 100%;
  display: block;
}

.health-assist-page a {
  color: inherit;
  text-decoration: none;
}

.health-assist-page .ha-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.health-assist-page h1,
.health-assist-page h2,
.health-assist-page h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  margin: 0;
  color: var(--ha-navy);
}

.health-assist-page h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.health-assist-page p {
  color: var(--ha-ink-dim);
  margin: 0;
}

.health-assist-page .ha-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ha-gold-deep);
}

.health-assist-page .ha-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ha-gold);
  display: inline-block;
}

.health-assist-page .ha-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.22s ease;
}

.health-assist-page .ha-btn-primary {
  background: var(--ha-gold);
  color: #fff;
  box-shadow: 0 10px 26px -10px rgba(186, 151, 83, 0.55);
}

.health-assist-page .ha-btn-primary:hover {
  background: var(--ha-gold-deep);
  transform: translateY(-2px);
  color: #fff;
}

.health-assist-page .ha-btn-whats {
  background: #fff;
  color: var(--ha-navy);
  border-color: var(--ha-line);
}

.health-assist-page .ha-btn-whats:hover {
  border-color: var(--ha-gold);
  color: var(--ha-gold-deep);
}

.health-assist-page .ha-btn-whats svg {
  width: 17px;
  height: 17px;
  color: #25d366;
}

.health-assist-page .ha-btn-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.health-assist-page .ha-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.health-assist-page .ha-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 90px;
  background:
    radial-gradient(ellipse 800px 480px at 90% -8%, rgba(186, 151, 83, 0.12), transparent 60%),
    radial-gradient(ellipse 700px 460px at -5% 10%, rgba(12, 26, 51, 0.08), transparent 60%),
    var(--ha-bg-alt);
}

.health-assist-page .ha-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.health-assist-page .ha-brand-logo {
  max-width: 220px;
  margin-bottom: 24px;
}

.health-assist-page .ha-hero h1 {
  font-size: clamp(34px, 4.6vw, 50px);
  line-height: 1.14;
  margin: 18px 0 20px;
}

.health-assist-page .ha-hero h1 span {
  color: var(--ha-gold-deep);
}

.health-assist-page .ha-hero .ha-lead {
  font-size: 17.5px;
  max-width: 520px;
  margin-bottom: 30px;
}

.health-assist-page .ha-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.health-assist-page .ha-hero-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.health-assist-page .ha-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--ha-line);
  padding: 9px 16px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ha-navy);
  box-shadow: 0 6px 16px -10px rgba(12, 26, 51, 0.2);
}

.health-assist-page .ha-chip svg {
  width: 15px;
  height: 15px;
  color: var(--ha-gold);
  flex: none;
}

.health-assist-page .ha-hero-card {
  background: #fff;
  border: 1px solid var(--ha-line);
  border-radius: var(--ha-radius);
  padding: 30px;
  box-shadow: 0 30px 60px -30px rgba(12, 26, 51, 0.2);
}

.health-assist-page .ha-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.health-assist-page .ha-hstat {
  background: var(--ha-bg-alt);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}

.health-assist-page .ha-hstat .n {
  font-size: 26px;
  font-weight: 800;
  color: var(--ha-navy);
}

.health-assist-page .ha-hstat .l {
  font-size: 11.5px;
  color: var(--ha-ink-faint);
  margin-top: 2px;
  font-weight: 600;
}

.health-assist-page .ha-hero-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--ha-sky);
  border-radius: 10px;
  padding: 16px;
}

.health-assist-page .ha-hero-note svg {
  width: 20px;
  height: 20px;
  color: var(--ha-gold-deep);
  flex: none;
  margin-top: 2px;
}

.health-assist-page .ha-hero-note p {
  font-size: 13.5px;
  color: var(--ha-navy);
  font-weight: 600;
  line-height: 1.5;
}

.health-assist-page .ha-quoteband {
  background: var(--ha-navy);
  padding: 56px 0;
}

.health-assist-page .ha-quoteband .ha-wrap {
  text-align: center;
}

.health-assist-page .ha-quoteband p {
  font-weight: 600;
  font-size: clamp(20px, 2.6vw, 28px);
  color: #fff;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.4;
}

.health-assist-page .ha-quoteband .tag {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ha-gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.health-assist-page section {
  padding: 92px 0;
}

.health-assist-page .ha-section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.health-assist-page .ha-section-head p {
  margin-top: 14px;
  font-size: 16px;
}

.health-assist-page .ha-section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.health-assist-page .ha-about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.health-assist-page .ha-about-visual {
  background: linear-gradient(160deg, var(--ha-navy), var(--ha-gold-deep));
  border-radius: var(--ha-radius);
  padding: 3px;
}

.health-assist-page .ha-about-visual-inner {
  background: linear-gradient(160deg, rgba(12, 26, 51, 0.95), rgba(154, 125, 66, 0.95));
  border-radius: calc(var(--ha-radius) - 3px);
  padding: 44px 34px;
  color: #fff;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.health-assist-page .ha-about-visual-inner .big {
  font-size: 40px;
  font-weight: 800;
}

.health-assist-page .ha-about-visual-inner .lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
}

.health-assist-page .ha-about-visual-row {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

.health-assist-page .ha-about-points {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.health-assist-page .ha-about-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.health-assist-page .ha-about-point svg {
  width: 19px;
  height: 19px;
  color: var(--ha-gold);
  flex: none;
  margin-top: 3px;
}

.health-assist-page .ha-about-point strong {
  color: var(--ha-navy);
  font-size: 15px;
}

.health-assist-page .ha-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.health-assist-page .ha-why-card {
  background: var(--ha-bg-alt);
  border: 1px solid var(--ha-line);
  border-radius: var(--ha-radius);
  padding: 28px 24px;
}

.health-assist-page .ha-why-card .n {
  font-size: 24px;
  font-weight: 800;
  color: var(--ha-gold-deep);
}

.health-assist-page .ha-why-card h3 {
  font-size: 16px;
  margin-top: 6px;
}

.health-assist-page .ha-why-card p {
  font-size: 13.5px;
  margin-top: 6px;
}

.health-assist-page .ha-manipal {
  background: var(--ha-bg-alt);
  border-top: 1px solid var(--ha-line);
  border-bottom: 1px solid var(--ha-line);
}

.health-assist-page .ha-manipal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.health-assist-page .ha-badge-partner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--ha-line);
  padding: 9px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ha-navy);
  margin-bottom: 20px;
}

.health-assist-page .ha-badge-partner .dot {
  width: 7px;
  height: 7px;
  background: var(--ha-gold);
  border-radius: 50%;
}

.health-assist-page .ha-manipal-points {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.health-assist-page .ha-manipal-point {
  display: flex;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--ha-line);
  border-radius: 10px;
  padding: 16px 18px;
}

.health-assist-page .ha-manipal-point svg {
  width: 19px;
  height: 19px;
  color: var(--ha-gold-deep);
  flex: none;
  margin-top: 2px;
}

.health-assist-page .ha-manipal-point strong {
  display: block;
  color: var(--ha-navy);
  font-size: 14.5px;
}

.health-assist-page .ha-manipal-point span {
  font-size: 13.5px;
  color: var(--ha-ink-dim);
}

.health-assist-page .ha-manipal-card {
  background: #fff;
  border: 1px solid var(--ha-line);
  border-radius: var(--ha-radius);
  padding: 36px;
  box-shadow: 0 20px 50px -30px rgba(12, 26, 51, 0.2);
}

.health-assist-page .ha-manipal-card .quote {
  font-weight: 600;
  font-size: 21px;
  color: var(--ha-navy);
  line-height: 1.5;
}

.health-assist-page .ha-manipal-card .attrib {
  margin-top: 18px;
  font-size: 13px;
  color: var(--ha-ink-faint);
  border-top: 1px solid var(--ha-line);
  padding-top: 16px;
}

.health-assist-page .ha-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.health-assist-page .ha-service-card {
  background: #fff;
  border: 1px solid var(--ha-line);
  border-radius: var(--ha-radius);
  padding: 28px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.health-assist-page .ha-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -24px rgba(12, 26, 51, 0.2);
}

.health-assist-page .ha-service-card .ico {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--ha-sky);
  color: var(--ha-gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.health-assist-page .ha-service-card .ico svg {
  width: 22px;
  height: 22px;
}

.health-assist-page .ha-service-card h3 {
  font-size: 17.5px;
  margin-bottom: 8px;
}

.health-assist-page .ha-service-card p {
  font-size: 14px;
}

.health-assist-page .ha-spec-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.health-assist-page .ha-spec-chip {
  background: #fff;
  border: 1px solid var(--ha-line);
  border-radius: 100px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ha-navy);
}

.health-assist-page .ha-spec-chip:hover {
  border-color: var(--ha-gold);
  color: var(--ha-gold-deep);
}

.health-assist-page .ha-journey-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 10px;
}

.health-assist-page .ha-journey-track::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--ha-gold) 0 10px, transparent 10px 20px);
}

.health-assist-page .ha-jstep {
  position: relative;
  padding: 0 14px;
}

.health-assist-page .ha-jstep .marker {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--ha-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--ha-gold-deep);
  position: relative;
  z-index: 2;
  margin-bottom: 18px;
}

.health-assist-page .ha-jstep h3 {
  font-size: 15.5px;
  margin-bottom: 6px;
}

.health-assist-page .ha-jstep p {
  font-size: 13px;
}

.health-assist-page .ha-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.health-assist-page .ha-pkg-card {
  background: #fff;
  border: 1px solid var(--ha-line);
  border-radius: var(--ha-radius);
  padding: 32px;
  position: relative;
}

.health-assist-page .ha-pkg-card.popular {
  border-color: var(--ha-gold);
  box-shadow: 0 20px 44px -26px rgba(186, 151, 83, 0.35);
}

.health-assist-page .ha-pkg-tag {
  position: absolute;
  top: -13px;
  left: 28px;
  background: var(--ha-gold);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
}

.health-assist-page .ha-pkg-card h3 {
  font-size: 19px;
}

.health-assist-page .ha-pkg-card .sub {
  font-size: 13px;
  color: var(--ha-gold-deep);
  font-weight: 600;
  margin: 4px 0 18px;
}

.health-assist-page .ha-pkg-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 11px;
}

.health-assist-page .ha-pkg-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--ha-ink-dim);
}

.health-assist-page .ha-pkg-list svg {
  width: 17px;
  height: 17px;
  color: var(--ha-gold);
  flex: none;
  margin-top: 2px;
}

.health-assist-page .ha-pkg-card .ha-btn {
  width: 100%;
  justify-content: center;
}

.health-assist-page .ha-faq-item {
  border-bottom: 1px solid var(--ha-line);
}

.health-assist-page .ha-faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--ha-navy);
  font-weight: 600;
  font-size: 17px;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.health-assist-page .ha-faq-q .plus {
  color: var(--ha-gold-deep);
  font-size: 20px;
  transition: transform 0.25s ease;
  flex: none;
}

.health-assist-page .ha-faq-item.open .plus {
  transform: rotate(45deg);
}

.health-assist-page .ha-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.health-assist-page .ha-faq-a p {
  padding-bottom: 20px;
  font-size: 14.5px;
  max-width: 760px;
}

.health-assist-page .ha-faq-item.open .ha-faq-a {
  max-height: 220px;
}

.health-assist-page .ha-ctaband {
  background: linear-gradient(120deg, var(--ha-navy), var(--ha-navy-deep));
  text-align: center;
}

.health-assist-page .ha-ctaband h2 {
  color: #fff;
  max-width: 640px;
  margin: 0 auto 16px;
}

.health-assist-page .ha-ctaband p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0 auto 30px;
}

.health-assist-page .ha-ctaband-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.health-assist-page .ha-ctaband .fine {
  margin-top: 22px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
}

.health-assist-page .ha-disclaimer {
  background: var(--ha-bg-alt);
  border-top: 1px solid var(--ha-line);
  padding: 32px 0;
  font-size: 13px;
  color: var(--ha-ink-dim);
}

.health-assist-page .ha-wa-float {
  position: fixed;
  bottom: 96px;
  right: 26px;
  z-index: 70;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px -8px rgba(37, 211, 102, 0.6);
}

.health-assist-page .ha-wa-float svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.health-assist-page .ha-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.health-assist-page .ha-reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  .health-assist-page .ha-hero-grid,
  .health-assist-page .ha-about-grid,
  .health-assist-page .ha-manipal-grid {
    grid-template-columns: 1fr;
  }

  .health-assist-page .ha-hero {
    padding-top: 100px;
  }
}

@media (max-width: 900px) {
  .health-assist-page .ha-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .health-assist-page .ha-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .health-assist-page .ha-pkg-grid {
    grid-template-columns: 1fr;
  }

  .health-assist-page .ha-journey-track {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .health-assist-page .ha-journey-track::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .health-assist-page .ha-service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .health-assist-page .ha-why-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .health-assist-page .ha-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
