:root {
  --patient-blue: #075cff;
  --patient-cyan: #25c7d2;
  --patient-teal: #0aa799;
  --patient-navy: #082641;
  --patient-soft: #f3f8fc;
  --patient-line: #d7e5ee;
}

.patient-page {
  background: #fff;
}

.patient-hero {
  position: relative;
  min-height: 690px;
  padding: 72px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr);
  gap: clamp(48px, 6vw, 86px);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 89% 8%, rgba(48, 211, 214, .24), transparent 27%),
    radial-gradient(circle at 4% 95%, rgba(7, 92, 255, .1), transparent 30%),
    linear-gradient(135deg, #fbfdff, #edf6fb);
}

.patient-hero::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  right: 8%;
  top: 50%;
  border: 1px dashed rgba(7, 92, 255, .12);
  border-radius: 50%;
  transform: translateY(-50%);
}

.patient-hero-copy {
  position: relative;
  z-index: 2;
}

.patient-hero h1 {
  max-width: 690px;
  margin: 17px 0 24px;
  color: var(--patient-navy);
  font: 500 clamp(51px, 5.2vw, 76px)/1.02 var(--display);
  letter-spacing: -.055em;
}

.patient-hero h1 em {
  color: var(--patient-blue);
  font-style: normal;
}

.patient-hero-copy > p {
  max-width: 650px;
  margin: 0;
  color: #49657b;
  font-size: 19px;
  line-height: 1.66;
}

.patient-hero-proof {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  color: #416178;
  font-size: 13px;
  font-weight: 700;
}

.patient-hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.patient-hero-proof i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--patient-teal);
  box-shadow: 0 0 0 5px rgba(10, 167, 153, .12);
}

.patient-app-stage {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.patient-phone {
  position: relative;
  z-index: 4;
  width: 326px;
  min-height: 620px;
  padding: 27px 19px 18px;
  overflow: hidden;
  border: 8px solid #10233d;
  border-radius: 42px;
  background: #f7fafc;
  box-shadow: 0 42px 90px rgba(8, 48, 79, .25);
  transform: rotateY(-5deg) rotateX(1deg);
}

.phone-speaker {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 72px;
  height: 16px;
  border-radius: 0 0 12px 12px;
  background: #10233d;
  transform: translateX(-50%);
}

.patient-app-top,
.patient-doctor-row,
.patient-insights-title,
.risk-board-head,
.risk-next-action {
  display: flex;
  align-items: center;
}

.patient-app-top {
  gap: 10px;
}

.patient-avatar,
.doctor-avatar {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #dff4fb, #dbe8ff);
  color: var(--patient-blue);
  font-size: 10px;
  font-weight: 800;
}

.patient-avatar {
  width: 34px;
  height: 34px;
}

.patient-app-top > div {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.patient-app-top small {
  color: #72899c;
  font-size: 9px;
}

.patient-app-top strong {
  color: #17354f;
  font-size: 13px;
}

.patient-app-top > button {
  position: relative;
  width: 32px;
  height: 32px;
  margin-left: auto;
  border: 1px solid #d8e5ed;
  border-radius: 10px;
  background: #fff;
}

.patient-app-top > button::before {
  content: "";
  position: absolute;
  inset: 9px 10px 8px;
  border: 2px solid #365b76;
  border-top: 0;
  border-radius: 0 0 8px 8px;
}

.patient-app-top > button span {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ff6b5f;
  color: #fff;
  font-size: 8px;
}

.patient-status-card {
  margin: 16px 0 13px;
  padding: 15px;
  display: flex;
  align-items: center;
  border-radius: 17px;
  background:
    radial-gradient(circle at 88% 4%, rgba(94, 225, 224, .45), transparent 33%),
    linear-gradient(135deg, #075cff, #087bc2);
  box-shadow: 0 13px 25px rgba(7, 92, 255, .18);
  color: #fff;
}

.patient-status-card > div {
  display: flex;
  flex-direction: column;
}

.patient-status-card span {
  color: rgba(255, 255, 255, .78);
  font-size: 8px;
}

.patient-status-card strong {
  max-width: 150px;
  font-size: 12px;
}

.patient-status-card em {
  width: 47px;
  height: 47px;
  margin-left: auto;
  display: grid;
  place-items: center;
  border: 4px solid rgba(255, 255, 255, .38);
  border-top-color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  transform: rotate(-24deg);
}

.patient-status-card em::first-line {
  transform: rotate(24deg);
}

.patient-quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.patient-quick-actions a {
  min-width: 0;
  padding: 9px 3px 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  border: 1px solid #e1e9ef;
  border-radius: 12px;
  background: #fff;
  color: #3e5b72;
  font-size: 7px;
  font-weight: 700;
}

.patient-icon {
  position: relative;
  width: 31px;
  height: 31px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 31px;
  border-radius: 10px;
  background: #eaf4ff;
  color: var(--patient-blue);
}

.patient-icon::before,
.patient-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.icon-video::before {
  width: 13px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 3px;
  left: 7px;
  top: 10px;
}

.icon-video::after {
  right: 5px;
  top: 12px;
  border-width: 4px 0 4px 5px;
  border-style: solid;
  border-color: transparent transparent transparent currentColor;
}

.icon-doctor::before {
  width: 8px;
  height: 8px;
  top: 6px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-doctor::after {
  width: 15px;
  height: 9px;
  bottom: 6px;
  border: 2px solid currentColor;
  border-radius: 9px 9px 4px 4px;
}

.icon-report::before {
  width: 14px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.icon-report::after {
  width: 7px;
  height: 2px;
  top: 11px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor;
}

.icon-plus::before,
.icon-plus::after {
  width: 14px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.icon-plus::after {
  transform: rotate(90deg);
}

.patient-next-card {
  margin-top: 13px;
  padding: 12px;
  border: 1px solid #dbe7ee;
  border-radius: 14px;
  background: #fff;
}

.patient-next-top {
  display: flex;
  justify-content: space-between;
  color: #6b8294;
  font-size: 8px;
}

.patient-next-top span {
  color: #193c58;
  font-weight: 800;
}

.patient-doctor-row {
  margin-top: 10px;
  gap: 9px;
}

.doctor-avatar {
  width: 35px;
  height: 35px;
}

.patient-doctor-row > div {
  display: flex;
  flex-direction: column;
}

.patient-doctor-row strong {
  color: #183851;
  font-size: 10px;
}

.patient-doctor-row small {
  color: #7990a1;
  font-size: 7px;
}

.patient-doctor-row button,
.risk-next-action button {
  margin-left: auto;
  border: 0;
  border-radius: 9px;
  background: var(--patient-blue);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
}

.patient-doctor-row button {
  padding: 8px 12px;
}

.patient-insights-title {
  margin: 15px 1px 8px;
  justify-content: space-between;
}

.patient-insights-title strong {
  color: #17354f;
  font-size: 10px;
}

.patient-insights-title a {
  color: var(--patient-blue);
  font-size: 8px;
  font-weight: 800;
}

.patient-insight-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.patient-insight-row > div {
  min-width: 0;
  padding: 10px 8px;
  display: flex;
  gap: 7px;
  align-items: center;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(13, 55, 86, .07);
}

.patient-insight-row .patient-icon {
  width: 27px;
  height: 27px;
  flex-basis: 27px;
}

.patient-insight-row span {
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.patient-insight-row small {
  color: #7890a1;
  font-size: 6px;
}

.patient-insight-row strong {
  overflow: hidden;
  color: #1d3c55;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.icon-heart {
  background: #fff0f1;
  color: #ef5d69;
}

.icon-heart::before {
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-top-left-radius: 9px;
  border-bottom-right-radius: 9px;
  transform: rotate(45deg);
}

.icon-drop {
  background: #eef2ff;
  color: #5e71d8;
}

.icon-drop::before {
  width: 12px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 9px 9px 10px 10px;
  transform: rotate(45deg);
}

.patient-tabbar {
  position: absolute;
  right: 12px;
  bottom: 9px;
  left: 12px;
  padding-top: 9px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #dce7ed;
  background: #f7fafc;
}

.patient-tabbar span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: #8093a2;
  font-size: 6px;
}

.patient-tabbar i {
  width: 12px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.patient-tabbar .active {
  color: var(--patient-blue);
  font-weight: 800;
}

.patient-orbit {
  position: absolute;
  border: 1px dashed rgba(7, 92, 255, .17);
  border-radius: 50%;
}

.orbit-a {
  width: 510px;
  height: 510px;
}

.orbit-b {
  width: 420px;
  height: 420px;
  border-color: rgba(37, 199, 210, .24);
}

.patient-float {
  position: absolute;
  z-index: 5;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(200, 220, 233, .95);
  border-radius: 14px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 20px 42px rgba(9, 53, 86, .15);
}

.patient-float span,
.patient-float div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.patient-float small {
  color: #71889a;
  font-size: 8px;
}

.patient-float strong {
  color: #183953;
  font-size: 10px;
}

.patient-float-message {
  left: 0;
  top: 130px;
}

.patient-float-message > i {
  position: relative;
  width: 29px;
  height: 25px;
  border-radius: 9px;
  background: #eaf4ff;
}

.patient-float-message > i::before {
  content: "";
  position: absolute;
  inset: 7px 6px 8px;
  border: 2px solid var(--patient-blue);
  border-radius: 5px;
}

.patient-float-vitals {
  right: -8px;
  bottom: 130px;
}

.mini-pulse {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e7f8f3;
}

.mini-pulse::before {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: var(--patient-teal);
  box-shadow: 0 0 0 0 rgba(10, 167, 153, .32);
  animation: patientPulse 2s infinite;
}

.patient-continuity-band {
  min-height: 92px;
  padding: 24px max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.2vw, 28px);
  border-top: 1px solid var(--patient-line);
  border-bottom: 1px solid var(--patient-line);
  background: #fff;
}

.patient-continuity-band span {
  color: #2a4b64;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 700;
  white-space: nowrap;
}

.patient-continuity-band i {
  position: relative;
  width: clamp(24px, 4vw, 56px);
  height: 1px;
  background: linear-gradient(90deg, #a9c7dd, var(--patient-cyan));
}

.patient-continuity-band i::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--patient-cyan);
  border-right: 1px solid var(--patient-cyan);
  transform: rotate(45deg);
}

.patient-feature-section {
  background:
    radial-gradient(circle at 95% 3%, rgba(37, 199, 210, .09), transparent 27%),
    #fff;
}

.patient-feature-grid {
  max-width: var(--rail);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.patient-feature {
  position: relative;
  min-height: 330px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--patient-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(9, 47, 78, .055);
}

.patient-feature::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -75px;
  top: -75px;
  border-radius: 50%;
  background: rgba(7, 92, 255, .045);
}

.patient-feature-number {
  position: absolute;
  top: 22px;
  right: 23px;
  color: #92a6b5;
  font-size: 10px;
  font-weight: 800;
}

.patient-feature .patient-icon {
  width: 45px;
  height: 45px;
  margin-bottom: 30px;
  flex-basis: 45px;
  border-radius: 13px;
}

.patient-feature h3 {
  margin: 0 0 10px;
  color: #132f48;
  font: 700 22px/1.17 "Plus Jakarta Sans", sans-serif;
  letter-spacing: -.035em;
}

.patient-feature p {
  margin: 0;
  color: #536d80;
  font-size: 15px;
  line-height: 1.62;
}

.patient-feature b {
  margin-top: auto;
  padding-top: 18px;
  color: var(--patient-blue);
  font-size: 11px;
}

.feature-connect,
.feature-prevent {
  background: linear-gradient(145deg, #f0f7ff, #f2fcfb);
}

.icon-calendar::before {
  width: 17px;
  height: 15px;
  bottom: 7px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.icon-calendar::after {
  width: 12px;
  height: 2px;
  top: 10px;
  background: currentColor;
  box-shadow: -4px -4px 0 -1px currentColor, 4px -4px 0 -1px currentColor;
}

.icon-pulse::before {
  width: 21px;
  height: 10px;
  background: linear-gradient(135deg, transparent 0 27%, currentColor 28% 35%, transparent 36% 48%, currentColor 49% 57%, transparent 58%);
}

.icon-symptom::before {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-symptom::after {
  width: 7px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -5px 0 -1px currentColor;
}

.icon-reminder::before {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-reminder::after {
  width: 2px;
  height: 7px;
  top: 9px;
  background: currentColor;
  box-shadow: 3px 5px 0 0 currentColor;
}

.icon-shield::before {
  width: 17px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 8px 8px 10px 10px;
  clip-path: polygon(50% 0, 100% 18%, 88% 77%, 50% 100%, 12% 77%, 0 18%);
}

.patient-availability-note {
  max-width: var(--rail);
  margin: 18px auto 0;
  color: #71889a;
  font-size: 11px;
  line-height: 1.55;
}

.patient-journey-section {
  background: #f2f7fa;
}

.patient-journey-grid {
  max-width: var(--rail);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #cedfe9;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 22px 55px rgba(9, 47, 78, .075);
}

.patient-step {
  position: relative;
  min-height: 290px;
  padding: 31px 27px;
  border-right: 1px solid #dce7ed;
}

.patient-step:last-child {
  border-right: 0;
}

.patient-step > span {
  color: var(--patient-blue);
  font-size: 12px;
  font-weight: 800;
}

.patient-step h3 {
  margin: 36px 0 13px;
  color: #14334c;
  font: 700 23px/1.15 "Plus Jakarta Sans", sans-serif;
  letter-spacing: -.035em;
}

.patient-step p {
  margin: 0;
  color: #536d81;
  font-size: 15px;
  line-height: 1.62;
}

.patient-step > i {
  position: absolute;
  right: 20px;
  bottom: 13px;
  color: rgba(7, 92, 255, .08);
  font-size: 64px;
  font-style: normal;
  font-weight: 800;
}

.patient-risk-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr);
  gap: clamp(45px, 6vw, 84px);
  align-items: center;
  background:
    radial-gradient(circle at 8% 90%, rgba(7, 92, 255, .14), transparent 30%),
    linear-gradient(135deg, #082642, #06406d);
  color: #fff;
}

.patient-risk-copy h2 {
  max-width: 620px;
  margin: 14px 0 23px;
  font: 500 clamp(44px, 4.6vw, 66px)/1.03 var(--display);
  letter-spacing: -.05em;
}

.patient-risk-copy > p {
  max-width: 620px;
  color: #ccdfeb;
  font-size: 18px;
  line-height: 1.65;
}

.patient-risk-copy ul {
  margin: 27px 0 20px;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.patient-risk-copy li {
  padding-left: 25px;
  color: #c3d8e5;
  font-size: 14px;
  line-height: 1.55;
}

.patient-risk-copy li::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  margin: 6px 0 0 -24px;
  border-radius: 50%;
  background: var(--patient-cyan);
  box-shadow: 0 0 0 5px rgba(37, 199, 210, .12);
}

.patient-risk-copy li span {
  display: block;
  color: #fff;
  font-weight: 800;
}

.patient-risk-copy > small {
  display: block;
  max-width: 620px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: #8faabe;
  font-size: 11px;
  line-height: 1.6;
}

.patient-risk-board {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 26px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 34px 75px rgba(0, 14, 29, .32);
  color: var(--patient-navy);
}

.risk-board-head {
  justify-content: space-between;
  margin-bottom: 20px;
}

.risk-board-head > div {
  display: flex;
  flex-direction: column;
}

.risk-board-head small {
  color: #7890a2;
  font-size: 10px;
}

.risk-board-head strong {
  font: 700 22px/1.2 "Plus Jakarta Sans", sans-serif;
}

.risk-board-head > span {
  padding: 6px 9px;
  border-radius: 99px;
  background: #e8f8f3;
  color: #087e70;
  font-size: 9px;
  font-weight: 800;
}

.risk-card {
  padding: 17px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 13px;
  align-items: center;
  border: 1px solid #dce7ed;
  border-radius: 17px;
  background: #fff;
}

.risk-card + .risk-card {
  margin-top: 11px;
}

.risk-card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #f4f8fb;
}

.risk-card > div:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.risk-card span {
  color: #6e8597;
  font-size: 10px;
}

.risk-card strong {
  color: #193951;
  font-size: 14px;
}

.risk-card small {
  color: #7c91a1;
  font-size: 9px;
}

.risk-card em {
  color: var(--patient-blue);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.risk-progress {
  margin: 17px 0;
  padding: 17px;
  border-radius: 17px;
  background: #eef5fa;
}

.risk-progress > div {
  display: flex;
  justify-content: space-between;
  color: #3d5d75;
  font-size: 11px;
}

.risk-progress > span {
  height: 7px;
  margin-top: 11px;
  display: block;
  overflow: hidden;
  border-radius: 99px;
  background: #d9e5ed;
}

.risk-progress > span i {
  width: 71%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--patient-blue), var(--patient-cyan));
}

.risk-next-action {
  padding: 15px;
  gap: 12px;
  border: 1px solid #cfe3ea;
  border-radius: 16px;
  background: #f4fcfb;
}

.risk-next-action > i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #ddf6f2;
  color: var(--patient-teal);
  font-style: normal;
}

.risk-next-action > div {
  display: flex;
  flex-direction: column;
}

.risk-next-action small {
  color: #6d8596;
  font-size: 9px;
}

.risk-next-action strong {
  font-size: 12px;
}

.risk-next-action button {
  padding: 9px 12px;
}

.patient-india-section {
  background:
    radial-gradient(circle at 92% 10%, rgba(37, 199, 210, .13), transparent 27%),
    #fff;
}

.patient-india-grid {
  max-width: var(--rail);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}

.patient-india-grid article {
  min-height: 250px;
  padding: 29px;
  border: 1px solid var(--patient-line);
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #f4f9fc);
}

.patient-india-grid article > span {
  min-height: 47px;
  display: block;
  color: var(--patient-blue);
  font: 700 25px/1.2 "Plus Jakarta Sans", sans-serif;
}

.patient-india-grid h3 {
  margin: 23px 0 10px;
  color: #15334b;
  font: 700 23px/1.18 "Plus Jakarta Sans", sans-serif;
  letter-spacing: -.035em;
}

.patient-india-grid p {
  margin: 0;
  color: #536d80;
  font-size: 15px;
  line-height: 1.62;
}

.patient-trust-band {
  width: min(calc(100% - 40px), 1180px);
  margin: 40px auto;
  padding: 39px 42px;
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(360px, 1.2fr) auto;
  gap: 38px;
  align-items: center;
  border: 1px solid #cfe0e9;
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 10%, rgba(37, 199, 210, .18), transparent 30%),
    linear-gradient(135deg, #eef6fb, #f8fcfd);
}

.patient-trust-band h2 {
  margin: 9px 0 0;
  font: 600 34px/1.08 var(--display);
  letter-spacing: -.04em;
}

.patient-trust-band > p {
  margin: 0;
  color: #4e687c;
  font-size: 15px;
  line-height: 1.62;
}

.patient-trust-band .product-button {
  white-space: nowrap;
}

.patient-faq-section {
  background: #f4f8fb;
}

.patient-faq-list {
  max-width: var(--rail);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.patient-faq-list details {
  align-self: start;
  border: 1px solid #d4e2eb;
  border-radius: 16px;
  background: #fff;
}

.patient-faq-list summary {
  min-height: 84px;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #17354e;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.patient-faq-list summary::-webkit-details-marker {
  display: none;
}

.patient-faq-list summary span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  flex: 0 0 31px;
  border-radius: 10px;
  background: #eaf3ff;
  color: var(--patient-blue);
  font-size: 19px;
  transition: transform .2s ease;
}

.patient-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.patient-faq-list p {
  margin: 0;
  padding: 0 20px 22px;
  color: #536c80;
  font-size: 14px;
  line-height: 1.68;
}

.patient-cta {
  background:
    radial-gradient(circle at 90% 10%, rgba(73, 221, 220, .24), transparent 31%),
    linear-gradient(135deg, #075cff, #064b96);
}

.patient-cta .product-kicker {
  color: #bffbfb;
}

.patient-cta h2,
.patient-cta p {
  color: #fff;
}

.patient-cta p {
  opacity: .88;
}

@keyframes patientPulse {
  70%, 100% { box-shadow: 0 0 0 10px rgba(10, 167, 153, 0); }
}

@media (max-width: 1040px) {
  .patient-hero {
    grid-template-columns: 1fr 1fr;
  }

  .patient-float-message {
    left: -22px;
  }

  .patient-float-vitals {
    right: -24px;
  }

  .patient-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .patient-risk-section {
    grid-template-columns: 1fr;
  }

  .patient-risk-copy {
    max-width: 760px;
  }

  .patient-trust-band {
    grid-template-columns: 1fr 1fr;
  }

  .patient-trust-band .product-button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 860px) {
  .patient-hero {
    padding-top: 54px;
    grid-template-columns: 1fr;
  }

  .patient-hero-copy {
    max-width: 730px;
  }

  .patient-app-stage {
    min-height: 660px;
  }

  .patient-journey-grid {
    grid-template-columns: 1fr 1fr;
  }

  .patient-step:nth-child(2) {
    border-right: 0;
  }

  .patient-step:nth-child(-n+2) {
    border-bottom: 1px solid #dce7ed;
  }

  .patient-india-grid,
  .patient-faq-list {
    grid-template-columns: 1fr;
  }

  .patient-trust-band {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .patient-trust-band .product-button {
    grid-column: auto;
  }
}

@media (max-width: 650px) {
  .patient-hero {
    min-height: 0;
    padding: 42px 20px 52px;
  }

  .patient-hero h1 {
    font-size: clamp(43px, 12vw, 57px);
  }

  .patient-hero-copy > p {
    font-size: 17px;
  }

  .patient-hero-proof {
    display: grid;
    gap: 10px;
  }

  .patient-app-stage {
    min-height: 600px;
    margin-top: 10px;
  }

  .patient-phone {
    width: min(310px, 88vw);
    min-height: 596px;
    transform: none;
  }

  .patient-float {
    padding: 10px 11px;
  }

  .patient-float-message {
    left: 0;
    top: 112px;
  }

  .patient-float-vitals {
    right: -2px;
    bottom: 95px;
  }

  .patient-continuity-band {
    padding: 20px;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .patient-continuity-band i {
    flex: 0 0 32px;
  }

  .patient-feature-grid,
  .patient-journey-grid {
    grid-template-columns: 1fr;
  }

  .patient-feature {
    min-height: 290px;
  }

  .patient-step,
  .patient-step:nth-child(2) {
    min-height: 245px;
    border-right: 0;
    border-bottom: 1px solid #dce7ed;
  }

  .patient-step:last-child {
    border-bottom: 0;
  }

  .patient-risk-section {
    padding-inline: 20px;
  }

  .patient-risk-board {
    padding: 17px;
  }

  .risk-card {
    grid-template-columns: 44px 1fr;
  }

  .risk-card em {
    display: none;
  }

  .risk-next-action {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .risk-next-action button {
    width: 100%;
    margin: 0;
  }

  .patient-trust-band {
    width: calc(100% - 24px);
    padding: 28px 23px;
  }

  .patient-trust-band h2 {
    font-size: 31px;
  }

  .patient-faq-list summary {
    min-height: 76px;
    padding: 18px 16px;
    font-size: 15px;
  }

  .patient-faq-list p {
    padding: 0 16px 20px;
  }
}

@media (max-width: 620px) {
  .patient-hero {
    padding-inline: 18px;
  }

  .patient-hero h1 {
    font-size: clamp(38px, 11vw, 52px);
    overflow-wrap: anywhere;
  }

  .patient-hero-copy > p {
    font-size: 17px;
  }

  .patient-feature-grid,
  .patient-india-grid {
    grid-template-columns: 1fr;
  }

  .patient-risk-board {
    padding: 18px;
    border-radius: 22px;
  }

  .risk-card {
    padding: 15px;
  }

  .patient-faq-list summary {
    min-height: 52px;
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mini-pulse::before {
    animation: none;
  }
}

/* 2026 patient-page clarity pass: keep the same light NivaCare visual system,
   make feature symbols immediately legible and turn the care journey into a
   connected infographic rather than four plain text columns. */
.patient-feature-section {
  background:
    radial-gradient(circle at 95% 0, rgba(37, 199, 210, .12), transparent 26%),
    linear-gradient(180deg, #f8fbfe 0%, #fff 78%);
}

.patient-feature {
  min-height: 318px;
  padding: 30px;
  border-color: #cddfea;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 42px rgba(8, 52, 86, .07);
}

.patient-feature:nth-child(4n + 1),
.patient-feature:nth-child(4n + 4) {
  background: linear-gradient(145deg, #eef7ff, #f5fcfc);
}

.patient-feature .feature-icon-label {
  width: 68px;
  height: 49px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  flex-basis: 49px;
  border: 1px solid rgba(7, 92, 255, .12);
  border-radius: 14px;
  background: linear-gradient(135deg, #075cff, #168bd0);
  box-shadow: 0 10px 24px rgba(7, 92, 255, .16);
  color: #fff;
  font: 800 11px/1 "Plus Jakarta Sans", sans-serif;
  letter-spacing: .04em;
}

.patient-feature:nth-child(3n + 2) .feature-icon-label {
  background: linear-gradient(135deg, #087f94, #20bfc4);
  box-shadow: 0 10px 24px rgba(13, 160, 170, .16);
}

.patient-feature:nth-child(3n) .feature-icon-label {
  background: linear-gradient(135deg, #354ac7, #6979e8);
  box-shadow: 0 10px 24px rgba(71, 87, 200, .16);
}

.patient-feature .feature-icon-label::before {
  content: attr(data-icon);
  position: static;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  transform: none;
}

.patient-feature .feature-icon-label::after {
  display: none;
}

.patient-feature-number {
  top: 28px;
  right: 28px;
  color: #6d8aa1;
  font-size: 12px;
}

.patient-feature h3 {
  font-size: 23px;
  line-height: 1.16;
}

.patient-feature p {
  color: #46657b;
  font-size: 16px;
  line-height: 1.62;
}

.patient-feature b {
  font-size: 12px;
}

.patient-journey-section {
  background:
    radial-gradient(circle at 6% 14%, rgba(7, 92, 255, .08), transparent 25%),
    #f5f9fc;
}

.patient-journey-grid {
  position: relative;
  gap: 18px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.patient-journey-grid::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 57px;
  right: 8%;
  left: 8%;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, #075cff, #31c9d0);
  opacity: .22;
}

.patient-step {
  z-index: 1;
  min-height: 330px;
  padding: 25px 25px 28px;
  overflow: visible;
  border: 1px solid #ccdeea;
  border-radius: 22px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 16px 38px rgba(8, 52, 86, .07);
}

.patient-step,
.patient-step:nth-child(2),
.patient-step:nth-child(-n + 2) {
  border-right: 1px solid #ccdeea;
  border-bottom: 1px solid #ccdeea;
}

.patient-step::after {
  content: "";
  position: absolute;
  top: 50px;
  right: -13px;
  z-index: 3;
  width: 24px;
  height: 24px;
  border-top: 2px solid #25aebd;
  border-right: 2px solid #25aebd;
  background: #f5f9fc;
  transform: rotate(45deg);
}

.patient-step:last-child::after {
  display: none;
}

.patient-step-visual {
  position: relative;
  width: 100%;
  height: 66px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
}

.patient-step-visual b {
  width: 66px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #075cff, #1988ca);
  box-shadow: 0 12px 25px rgba(7, 92, 255, .17);
  color: #fff;
  font: 800 10px/1 "Plus Jakarta Sans", sans-serif;
  letter-spacing: .04em;
}

.patient-step:nth-child(2) .patient-step-visual b,
.patient-step:nth-child(4) .patient-step-visual b {
  background: linear-gradient(135deg, #087f94, #23bdc4);
}

.patient-step-visual i {
  margin-left: auto;
  color: #dbe8ff;
  font: 800 40px/1 "Plus Jakarta Sans", sans-serif;
  font-style: normal;
}

.patient-step > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #075cff;
  font-size: 13px;
}

.patient-step > span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #29bdc5;
  box-shadow: 0 0 0 5px rgba(41, 189, 197, .12);
}

.patient-step h3 {
  margin: 19px 0 12px;
  font-size: 24px;
}

.patient-step p {
  color: #47667d;
  font-size: 16px;
}

.patient-risk-section {
  position: relative;
  border-top: 1px solid #d4e4ed;
  border-bottom: 1px solid #d4e4ed;
  background:
    radial-gradient(circle at 91% 5%, rgba(37, 199, 210, .18), transparent 27%),
    radial-gradient(circle at 5% 95%, rgba(7, 92, 255, .09), transparent 29%),
    linear-gradient(135deg, #f7fbfe, #edf6fb);
  color: #102f49;
}

.patient-risk-copy .product-kicker {
  color: #075cff;
}

.patient-risk-copy h2 {
  max-width: 650px;
  color: #102f49;
  font-size: clamp(45px, 4.3vw, 62px);
  line-height: 1.04;
}

.patient-risk-copy > p {
  color: #3f5f76;
  font-size: 18px;
  line-height: 1.7;
}

.patient-risk-copy li {
  color: #44657b;
  font-size: 15px;
}

.patient-risk-copy li span {
  color: #102f49;
  font-size: 16px;
}

.patient-risk-copy > small {
  border-top-color: #cbdde8;
  color: #657e91;
  font-size: 12px;
}

.patient-risk-board {
  border-color: #c9dce8;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 28px 70px rgba(8, 52, 86, .13);
}

.risk-board-head {
  margin-bottom: 23px;
}

.risk-board-head small {
  font-size: 11px;
}

.risk-board-head strong {
  font-size: 25px;
}

.risk-board-head > span {
  padding: 8px 11px;
  font-size: 10px;
}

.risk-card {
  min-height: 100px;
  padding: 19px;
  grid-template-columns: 54px 1fr auto;
  gap: 15px;
}

.risk-card-icon {
  width: 54px;
  height: 54px;
}

.risk-card-icon .patient-icon {
  width: 36px;
  height: 36px;
  flex-basis: 36px;
}

.risk-card span {
  font-size: 11px;
}

.risk-card strong {
  font-size: 16px;
}

.risk-card small {
  margin-top: 3px;
  font-size: 10px;
}

.risk-card em {
  padding: 7px 10px;
  border-radius: 9px;
  background: #edf5ff;
  font-size: 11px;
}

.risk-progress {
  padding: 19px;
}

.risk-progress > div {
  font-size: 12px;
}

.risk-next-action {
  padding: 18px;
}

.risk-next-action small {
  font-size: 10px;
}

.risk-next-action strong {
  font-size: 14px;
}

@media (max-width: 860px) {
  .patient-journey-grid {
    grid-template-columns: 1fr 1fr;
  }

  .patient-journey-grid::before,
  .patient-step::after {
    display: none;
  }

  .patient-risk-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .patient-feature {
    min-height: 0;
    padding: 26px;
  }

  .patient-feature .feature-icon-label {
    width: 64px;
    height: 46px;
    flex-basis: 46px;
  }

  .patient-feature h3 {
    font-size: 22px;
  }

  .patient-feature p {
    font-size: 16px;
  }

  .patient-journey-grid {
    grid-template-columns: 1fr;
  }

  .patient-step,
  .patient-step:nth-child(2),
  .patient-step:nth-child(-n + 2) {
    min-height: 0;
    border-right: 1px solid #ccdeea;
    border-bottom: 1px solid #ccdeea;
  }

  .patient-step:last-child {
    border-bottom: 1px solid #ccdeea;
  }

  .patient-risk-copy h2 {
    font-size: clamp(40px, 11vw, 51px);
  }

  .patient-risk-copy > p {
    font-size: 17px;
  }

  .risk-card {
    grid-template-columns: 48px 1fr;
  }
}
