/* Home page conversion layout. Scoped to .page-home only. */

/* Therapy process section — desktop process flow and mobile timeline. */
.page-home .kph-home-proof {
  position: relative;
  z-index: 12;
  width: min(1180px, calc(100% - 40px));
  margin: -34px auto 28px;
}

.page-home .kph-home-proof__inner {
  position: relative;
  overflow: hidden;
  padding: 150px 24px 24px;
  border: 1px solid #d4e4ea;
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 20%, rgba(20, 168, 168, .08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, .99) 0%, rgba(246, 251, 252, .99) 100%);
  box-shadow: 0 22px 52px rgba(8, 48, 67, .14);
}

.page-home .kph-home-proof__inner::before {
  content: "Нашият подход стъпка по стъпка";
  position: absolute;
  top: 38px;
  left: 32px;
  right: 32px;
  color: #082f4b;
  font-size: clamp(30px, 3.15vw, 43px);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: -.025em;
  text-align: center;
}

.page-home .kph-home-proof__inner::after {
  content: "Структуриран процес за по-добри резултати и дългосрочно движение без болка.";
  position: absolute;
  top: 96px;
  left: 50%;
  width: min(720px, calc(100% - 64px));
  transform: translateX(-50%);
  color: #557080;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
}

.page-home .kph-home-proof__items {
  counter-reset: kph-proof-step;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  padding: 0 8px 34px;
}

.page-home .kph-home-proof__item {
  counter-increment: kph-proof-step;
  position: relative;
  min-width: 0;
  min-height: 264px;
  display: grid;
  grid-template-rows: 38px 116px auto;
  justify-items: center;
  align-items: start;
  gap: 12px;
  padding: 0;
  color: #082f4b;
  text-align: center;
}

.page-home .kph-home-proof__item::before {
  content: counter(kph-proof-step);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #067887, #0aa2a3);
  color: #fff;
  box-shadow: 0 8px 18px rgba(7, 126, 137, .22);
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
}

.page-home .kph-home-proof__item::after {
  content: "→";
  position: absolute;
  top: 77px;
  right: -29px;
  color: #078895;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.page-home .kph-home-proof__item:last-child::after {
  display: none;
}

.page-home .kph-home-proof__icon {
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  border: 1px solid #cee0e7;
  border-radius: 24px;
  background: rgba(255, 255, 255, .96);
  color: #07838f;
  box-shadow:
    0 14px 28px rgba(8, 49, 68, .10),
    inset 0 0 0 1px rgba(255, 255, 255, .78);
}

.page-home .kph-home-proof__icon svg,
.page-home .kph-home-proof__cta-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-home .kph-home-proof__icon svg {
  width: 54px;
  height: 54px;
}

.page-home .kph-home-proof__item > span:last-child {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.page-home .kph-home-proof__item strong {
  max-width: 220px;
  color: #082f4b;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: -.012em;
}

.page-home .kph-home-proof__item small {
  max-width: 220px;
  color: #5b7280;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.page-home .kph-home-proof__cta {
  min-height: 120px;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 58px;
  align-items: center;
  gap: 24px;
  padding: 20px 30px;
  overflow: hidden;
  border: 1px solid #bedde1;
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 50%, rgba(15, 164, 165, .10), transparent 24%),
    linear-gradient(90deg, #eff9f9 0%, #f8fcfc 52%, #eaf7f7 100%);
  color: #082f4b;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .74);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.page-home .kph-home-proof__cta:hover {
  transform: translateY(-2px);
  border-color: #8fcbd0;
  box-shadow:
    0 14px 28px rgba(8, 76, 87, .10),
    inset 0 0 0 1px rgba(255, 255, 255, .78);
  color: #082f4b;
}

.page-home .kph-home-proof__cta-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 5px solid rgba(255, 255, 255, .65);
  border-radius: 50%;
  background: linear-gradient(145deg, #087887 0%, #0a9b9e 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(7, 113, 124, .22);
}

.page-home .kph-home-proof__cta-icon svg {
  width: 36px;
  height: 36px;
}

.page-home .kph-home-proof__cta > span:nth-child(2) {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.page-home .kph-home-proof__cta small {
  color: #496d79;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.page-home .kph-home-proof__cta strong {
  color: #087b84;
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: -.018em;
}

.page-home .kph-home-proof__cta-arrow {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #087887 0%, #0aa3a4 100%);
  color: #fff;
  box-shadow: 0 10px 20px rgba(7, 113, 124, .18);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  transition: transform .2s ease;
}

.page-home .kph-home-proof__cta:hover .kph-home-proof__cta-arrow {
  transform: translateX(4px);
}

@media (max-width: 980px) {
  .page-home .kph-home-proof__inner {
    padding-top: 142px;
  }

  .page-home .kph-home-proof__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 24px;
  }

  .page-home .kph-home-proof__item {
    min-height: 242px;
    padding: 20px 16px;
    border: 1px solid #d7e7ec;
    border-radius: 22px;
    background: rgba(255, 255, 255, .72);
  }

  .page-home .kph-home-proof__item::after {
    display: none;
  }
}

@media (max-width: 700px) {
  .page-home .kph-home-proof {
    width: calc(100% - 18px);
    margin: 12px auto 18px;
  }

  .page-home .kph-home-proof__inner {
    padding: 132px 14px 16px;
    border-radius: 24px;
    box-shadow: 0 14px 34px rgba(8, 48, 67, .12);
  }

  .page-home .kph-home-proof__inner::before {
    top: 28px;
    left: 20px;
    right: 20px;
    font-size: clamp(26px, 8.2vw, 34px);
    line-height: 1.12;
  }

  .page-home .kph-home-proof__inner::after {
    top: 84px;
    width: calc(100% - 44px);
    font-size: 14px;
    line-height: 1.45;
  }

  .page-home .kph-home-proof__items {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 0 18px;
  }

  .page-home .kph-home-proof__items::before {
    content: "";
    position: absolute;
    top: 31px;
    bottom: 50px;
    left: 17px;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, #0a8e98 0%, #9bd5d7 100%);
  }

  .page-home .kph-home-proof__item {
    min-height: 142px;
    display: grid;
    grid-template-columns: 36px 78px minmax(0, 1fr);
    grid-template-rows: auto;
    align-items: center;
    justify-items: stretch;
    gap: 14px;
    padding: 10px 0 22px;
    border: 0;
    border-radius: 0;
    background: transparent;
    text-align: left;
  }

  .page-home .kph-home-proof__item::before {
    position: relative;
    z-index: 2;
    grid-column: 1;
    grid-row: 1;
    width: 34px;
    height: 34px;
    justify-self: center;
    font-size: 14px;
  }

  .page-home .kph-home-proof__icon {
    grid-column: 2;
    grid-row: 1;
    width: 76px;
    height: 76px;
    border-radius: 20px;
  }

  .page-home .kph-home-proof__icon svg {
    width: 39px;
    height: 39px;
  }

  .page-home .kph-home-proof__item > span:last-child {
    grid-column: 3;
    grid-row: 1;
    align-items: flex-start;
    gap: 6px;
  }

  .page-home .kph-home-proof__item strong {
    max-width: none;
    font-size: 17px;
    line-height: 1.28;
  }

  .page-home .kph-home-proof__item small {
    max-width: none;
    font-size: 14px;
    line-height: 1.48;
  }

  .page-home .kph-home-proof__cta {
    min-height: 0;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    padding: 20px 16px 16px;
    border-radius: 20px;
    text-align: center;
  }

  .page-home .kph-home-proof__cta-icon {
    width: 66px;
    height: 66px;
    border-width: 4px;
  }

  .page-home .kph-home-proof__cta-icon svg {
    width: 30px;
    height: 30px;
  }

  .page-home .kph-home-proof__cta > span:nth-child(2) {
    align-items: center;
    gap: 6px;
  }

  .page-home .kph-home-proof__cta small {
    font-size: 13px;
  }

  .page-home .kph-home-proof__cta strong {
    max-width: 290px;
    font-size: 21px;
    line-height: 1.2;
  }

  .page-home .kph-home-proof__cta-arrow {
    width: 100%;
    height: 48px;
    border-radius: 999px;
    font-size: 24px;
  }
}

@media (max-width: 420px) {
  .page-home .kph-home-proof {
    width: calc(100% - 12px);
  }

  .page-home .kph-home-proof__inner {
    padding: 128px 11px 12px;
    border-radius: 21px;
  }

  .page-home .kph-home-proof__inner::before {
    left: 14px;
    right: 14px;
    font-size: 25px;
  }

  .page-home .kph-home-proof__inner::after {
    top: 82px;
    width: calc(100% - 28px);
    font-size: 13px;
  }

  .page-home .kph-home-proof__items::before {
    left: 15px;
  }

  .page-home .kph-home-proof__item {
    min-height: 132px;
    grid-template-columns: 32px 66px minmax(0, 1fr);
    gap: 10px;
    padding-bottom: 18px;
  }

  .page-home .kph-home-proof__item::before {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .page-home .kph-home-proof__icon {
    width: 64px;
    height: 64px;
    border-radius: 17px;
  }

  .page-home .kph-home-proof__icon svg {
    width: 33px;
    height: 33px;
  }

  .page-home .kph-home-proof__item strong {
    font-size: 15.5px;
  }

  .page-home .kph-home-proof__item small {
    font-size: 12.5px;
    line-height: 1.45;
  }

  .page-home .kph-home-proof__cta {
    padding: 18px 13px 13px;
  }

  .page-home .kph-home-proof__cta strong {
    font-size: 19px;
  }
}




















.page-home .services-showcase {
  padding-top: 2rem;
}

.page-home .services-showcase .section-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 1.5rem;
}

.page-home .services-showcase .services-title {
  margin: 0;
}

.page-home .kph-home-rehab {
  padding-top: clamp(34px, 5vw, 66px);
  padding-bottom: clamp(34px, 5vw, 66px);
  background: #f4f8fb;
}

.page-home .kph-home-rehab__shell {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, .88fr) minmax(0, 1.2fr);
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(77, 204, 193, .24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 12%, rgba(52, 211, 196, .18), transparent 28%),
    linear-gradient(135deg, #072b43 0%, #0a4760 58%, #087d85 100%);
  box-shadow: 0 24px 62px rgba(8, 45, 66, .2);
}

.page-home .kph-home-rehab__media {
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.page-home .kph-home-rehab__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 45%, rgba(7, 43, 67, .92) 100%);
  pointer-events: none;
}

.page-home .kph-home-rehab__media img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.page-home .kph-home-rehab__content {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: clamp(34px, 5vw, 62px) clamp(30px, 5vw, 68px) clamp(34px, 5vw, 62px) 20px;
  color: #fff;
}

.page-home .kph-home-rehab .eyebrow {
  color: #7df0e3;
}

.page-home .kph-home-rehab h2 {
  max-width: 780px;
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(30px, 3.7vw, 50px);
  line-height: 1.08;
}

.page-home .kph-home-rehab__lead {
  max-width: 760px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, .86);
  font-size: 17px;
  line-height: 1.7;
}

.page-home .kph-home-rehab__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.page-home .kph-home-rehab__list li {
  position: relative;
  padding-left: 27px;
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
}

.page-home .kph-home-rehab__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #45d8c8;
  color: #07344b;
  font-size: 12px;
  font-weight: 900;
}

.page-home .kph-home-rehab__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.page-home .kph-home-rehab__actions .btn {
  min-height: 50px;
}

.page-home .kph-home-rehab__phone {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.page-home .kph-home-rehab__phone:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
}

.page-home .kph-home-rehab__phone svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-home .kph-home-rehab__assurance {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 26px;
  width: min(430px, calc(100% - 56px));
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 2px 13px;
  padding: 17px 20px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 18px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
  color: #fff;
}

.page-home .kph-home-rehab__assurance-icon {
  grid-row: 1 / span 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(80, 225, 211, .17);
  color: #71f1e3;
}

.page-home .kph-home-rehab__assurance-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-home .kph-home-rehab__assurance strong {
  align-self: end;
  font-size: 15px;
}

.page-home .kph-home-rehab__assurance p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  line-height: 1.45;
}

.page-home .kph-home-cases {
  background: #f4f8fb;
}

.page-home .kph-home-cases__header {
  width: min(1180px, 100%);
  margin: 0 auto 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.page-home .kph-home-cases__header > div {
  max-width: 760px;
}

.page-home .kph-home-cases__header h2 {
  margin: 0 0 10px;
}

.page-home .kph-home-cases__header p:last-child {
  margin: 0;
  color: #587181;
  line-height: 1.65;
}

.page-home .kph-home-cases__all,
.page-home .kph-home-case-card__link {
  color: #087f8c;
  font-weight: 800;
  text-decoration: none;
}

.page-home .kph-home-cases__all {
  flex: 0 0 auto;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
}

.page-home .kph-home-cases__grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.page-home .kph-home-case-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #d8e5ed;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(14, 59, 80, .08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.page-home .kph-home-case-card:hover {
  transform: translateY(-3px);
  border-color: rgba(8, 127, 140, .35);
  box-shadow: 0 18px 42px rgba(14, 59, 80, .13);
}

.page-home .kph-home-case-card__media {
  height: 210px;
  overflow: hidden;
  display: block;
}

.page-home .kph-home-case-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.page-home .kph-home-case-card:hover .kph-home-case-card__media img {
  transform: scale(1.025);
}

.page-home .kph-home-case-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.page-home .kph-home-case-card__tag {
  align-self: flex-start;
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e2f6f3;
  color: #08747d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.page-home .kph-home-case-card h3 {
  margin: 13px 0 9px;
  color: #0b2e43;
  font-size: 21px;
  line-height: 1.25;
}

.page-home .kph-home-case-card p {
  margin: 0;
  color: #587181;
  font-size: 15px;
  line-height: 1.62;
}

.page-home .kph-home-case-card__flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 17px 0;
  color: #244e62;
  font-size: 12px;
  font-weight: 800;
}

.page-home .kph-home-case-card__flow span {
  padding: 6px 8px;
  border-radius: 8px;
  background: #f0f6f9;
}

.page-home .kph-home-case-card__flow i {
  color: #18a9aa;
  font-style: normal;
}

.page-home .kph-home-case-card__link {
  margin-top: auto;
}

.page-home .kph-home-cases__disclaimer {
  width: min(1180px, 100%);
  margin: 18px auto 0;
  color: #708692;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 980px) {



  .page-home .kph-home-rehab__shell {
    grid-template-columns: 1fr;
  }

  .page-home .kph-home-rehab__media {
    height: 340px;
  }

  .page-home .kph-home-rehab__media::after {
    background: linear-gradient(180deg, transparent 45%, rgba(7, 43, 67, .9) 100%);
  }

  .page-home .kph-home-rehab__media img {
    min-height: 340px;
  }

  .page-home .kph-home-rehab__content {
    padding: 0 28px 36px;
    margin-top: -80px;
  }

  .page-home .kph-home-rehab__assurance {
    right: 22px;
    bottom: 22px;
  }

  .page-home .kph-home-cases__grid {
    grid-template-columns: 1fr;
  }

  .page-home .kph-home-case-card {
    display: grid;
    grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr);
  }

  .page-home .kph-home-case-card__media {
    height: 100%;
    min-height: 260px;
  }
}

@media (max-width: 768px) {












  .page-home .services-showcase {
    padding-top: 1.65rem;
  }

  .page-home .kph-home-rehab {
    padding: 28px 12px;
  }

  .page-home .kph-home-rehab__shell {
    border-radius: 22px;
  }

  .page-home .kph-home-rehab__media {
    height: 285px;
  }

  .page-home .kph-home-rehab__media img {
    min-height: 285px;
  }

  .page-home .kph-home-rehab__content {
    padding: 0 20px 28px;
    margin-top: -62px;
  }

  .page-home .kph-home-rehab h2 {
    font-size: clamp(27px, 8vw, 38px);
  }

  .page-home .kph-home-rehab__lead {
    font-size: 16px;
  }

  .page-home .kph-home-rehab__list {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .page-home .kph-home-rehab__actions,
  .page-home .kph-home-rehab__actions .btn,
  .page-home .kph-home-rehab__phone {
    width: 100%;
  }

  .page-home .kph-home-rehab__assurance {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
    padding: 14px 15px;
  }

  .page-home .kph-home-cases__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .page-home .kph-home-case-card {
    display: flex;
  }

  .page-home .kph-home-case-card__media {
    height: 205px;
    min-height: 0;
  }

  .page-home .kph-home-case-card__body {
    padding: 19px;
  }
}

@media (max-width: 420px) {




}

/* Compact trust and approach section */
.page-home .kph-home-approach {
  padding: clamp(48px, 6vw, 82px) 5vw;
  background:
    radial-gradient(circle at 92% 8%, rgba(21, 177, 174, .08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.page-home .kph-home-approach__shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.page-home .kph-home-approach__header {
  max-width: 840px;
  margin: 0 auto 30px;
  text-align: center;
}

.page-home .kph-home-approach__header .eyebrow {
  margin-bottom: 10px;
  color: #078b92;
}

.page-home .kph-home-approach__header h2 {
  margin: 0;
  color: #0a2f4d;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.08;
}

.page-home .kph-home-approach__header > p:last-child {
  max-width: 760px;
  margin: 16px auto 0;
  color: #587181;
  font-size: 17px;
  line-height: 1.65;
}

.page-home .kph-home-approach__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.page-home .kph-home-approach-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 26px;
  border: 1px solid #dce7ed;
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 30px rgba(13, 62, 83, .07);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.page-home .kph-home-approach-card:hover {
  transform: translateY(-3px);
  border-color: rgba(8, 139, 146, .32);
  box-shadow: 0 18px 40px rgba(13, 62, 83, .12);
}

.page-home .kph-home-approach-card__icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(145deg, #edfafa, #e5f4f7);
  color: #078b92;
}

.page-home .kph-home-approach-card__icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-home .kph-home-approach-card__label {
  margin: 0 0 7px;
  color: #078b92;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .055em;
  line-height: 1.35;
  text-transform: uppercase;
}

.page-home .kph-home-approach-card h3 {
  margin: 0 0 9px;
  color: #0a2f4d;
  font-size: 22px;
  line-height: 1.22;
}

.page-home .kph-home-approach-card > div > p:last-child {
  margin: 0;
  color: #587181;
  font-size: 15px;
  line-height: 1.62;
}

.page-home .kph-home-approach__conversion {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: 18px;
  margin-top: 18px;
}

.page-home .kph-home-approach__benefits,
.page-home .kph-home-approach__cta {
  border-radius: 22px;
}

.page-home .kph-home-approach__benefits {
  padding: 27px 28px;
  border: 1px solid #dce7ed;
  background: #f2f8fa;
}

.page-home .kph-home-approach__benefits h3 {
  margin: 0 0 17px;
  color: #0a2f4d;
  font-size: 21px;
}

.page-home .kph-home-approach__benefits ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .kph-home-approach__benefits li {
  position: relative;
  padding: 13px 0 13px 34px;
  border-top: 1px solid #d8e5eb;
  color: #244e62;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.4;
}

.page-home .kph-home-approach__benefits li:first-child {
  border-top: 0;
  padding-top: 4px;
}

.page-home .kph-home-approach__benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #18aaa8;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.page-home .kph-home-approach__benefits li:first-child::before {
  top: 3px;
}

.page-home .kph-home-approach__cta {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 4px 17px;
  align-items: center;
  padding: 27px 30px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 92% 18%, rgba(53, 218, 203, .2), transparent 28%),
    linear-gradient(135deg, #062c49 0%, #0a4f6a 58%, #087d85 100%);
  color: #fff;
  box-shadow: 0 18px 42px rgba(7, 54, 76, .18);
}

.page-home .kph-home-approach__cta-icon {
  grid-row: 1 / span 2;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #0ca8a8, #40d2c2);
  color: #fff;
}

.page-home .kph-home-approach__cta-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-home .kph-home-approach__cta-copy h3 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.18;
}

.page-home .kph-home-approach__cta-copy p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
  line-height: 1.5;
}

.page-home .kph-home-approach__actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 17px;
}

.page-home .kph-home-approach__actions .btn {
  min-height: 50px;
  flex: 1 1 190px;
}

.page-home .kph-home-approach__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, .65);
  background: transparent;
  color: #fff;
}

.page-home .kph-home-approach__phone:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.page-home .kph-home-approach__phone svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-home .kph-home-approach__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 18px 0 0;
  color: #6c818c;
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.page-home .kph-home-approach__note svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: #078b92;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 900px) {
  .page-home .kph-home-approach__grid,
  .page-home .kph-home-approach__conversion {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-home .kph-home-approach {
    padding: 42px 14px;
  }

  .page-home .kph-home-approach__header {
    margin-bottom: 22px;
    text-align: left;
  }

  .page-home .kph-home-approach__header h2 {
    font-size: clamp(31px, 10vw, 42px);
  }

  .page-home .kph-home-approach__header > p:last-child {
    margin-top: 12px;
    font-size: 16px;
  }

  .page-home .kph-home-approach__grid {
    gap: 12px;
  }

  .page-home .kph-home-approach-card {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 13px;
    padding: 18px 16px;
    border-radius: 18px;
  }

  .page-home .kph-home-approach-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 17px;
  }

  .page-home .kph-home-approach-card__icon svg {
    width: 29px;
    height: 29px;
  }

  .page-home .kph-home-approach-card__label {
    font-size: 10px;
  }

  .page-home .kph-home-approach-card h3 {
    font-size: 19px;
  }

  .page-home .kph-home-approach-card > div > p:last-child {
    font-size: 14px;
    line-height: 1.55;
  }

  .page-home .kph-home-approach__conversion {
    gap: 12px;
    margin-top: 12px;
  }

  .page-home .kph-home-approach__benefits,
  .page-home .kph-home-approach__cta {
    border-radius: 18px;
  }

  .page-home .kph-home-approach__benefits {
    padding: 22px 18px;
  }

  .page-home .kph-home-approach__cta {
    grid-template-columns: 50px minmax(0, 1fr);
    padding: 22px 18px;
  }

  .page-home .kph-home-approach__cta-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }

  .page-home .kph-home-approach__cta-copy h3 {
    font-size: 21px;
  }

  .page-home .kph-home-approach__actions {
    flex-direction: column;
  }

  .page-home .kph-home-approach__actions .btn {
    width: 100%;
    flex-basis: auto;
  }

  .page-home .kph-home-approach__note {
    align-items: flex-start;
    text-align: left;
  }
}



/* ================================================================
   KPHYSIO — READABILITY & CONVERSION OVERRIDES
   Final production rules for the two key home-page sections.
   Kept at the end of home-page.css so they override older breakpoints.
================================================================ */

/* ---------- Shared typography and spacing ---------- */
.page-home .kph-home-proof,
.page-home .kph-home-approach {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* ---------- 1. Recovery process / “Нашият подход” ---------- */
.page-home .kph-home-proof {
  width: min(1240px, calc(100% - 40px));
}

.page-home .kph-home-proof__inner {
  padding-top: 158px;
}

.page-home .kph-home-proof__inner::before {
  color: #062e4d;
  font-size: clamp(36px, 3.6vw, 52px);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.page-home .kph-home-proof__inner::after {
  top: 103px;
  width: min(820px, calc(100% - 64px));
  color: #355d70;
  font-size: clamp(17px, 1.35vw, 19px);
  font-weight: 500;
  line-height: 1.55;
}

.page-home .kph-home-proof__items {
  gap: 30px;
  padding-bottom: 38px;
}

.page-home .kph-home-proof__item {
  min-height: 286px;
  grid-template-rows: 40px 120px auto;
  gap: 14px;
}

.page-home .kph-home-proof__item::before {
  width: 40px;
  height: 40px;
  font-size: 16px;
  font-weight: 850;
}

.page-home .kph-home-proof__item::after {
  top: 82px;
  color: #078c98;
}

.page-home .kph-home-proof__icon {
  width: 114px;
  height: 114px;
  border-radius: 26px;
}

.page-home .kph-home-proof__item strong {
  max-width: 250px;
  color: #062e4d;
  font-size: clamp(20px, 1.55vw, 23px);
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: -0.018em;
}

.page-home .kph-home-proof__item small {
  max-width: 255px;
  color: #355d70;
  font-size: clamp(16px, 1.15vw, 17px);
  font-weight: 500;
  line-height: 1.62;
}

.page-home .kph-home-proof__cta {
  min-height: 126px;
  grid-template-columns: 88px minmax(0, 1fr) 62px;
  gap: 26px;
  padding: 22px 32px;
  border-color: #9fd2d8;
  background:
    radial-gradient(circle at 91% 50%, rgba(15, 164, 165, .16), transparent 27%),
    linear-gradient(90deg, #eaf8f8 0%, #f8fcfc 50%, #e4f5f5 100%);
  box-shadow: 0 12px 32px rgba(8, 76, 87, .10);
}

.page-home .kph-home-proof__cta small {
  color: #315b68;
  font-size: 16px;
  font-weight: 650;
}

.page-home .kph-home-proof__cta strong {
  color: #067d87;
  font-size: clamp(25px, 2.25vw, 34px);
  font-weight: 850;
  line-height: 1.16;
}

.page-home .kph-home-proof__cta-arrow {
  width: 60px;
  height: 60px;
}

/* ---------- 2. “Защо да изберете Kphysio” ---------- */
.page-home .kph-home-approach {
  padding: clamp(58px, 6vw, 92px) 5vw;
}

.page-home .kph-home-approach__shell {
  width: min(1240px, 100%);
}

.page-home .kph-home-approach__header {
  max-width: 960px;
  margin-bottom: 36px;
}

.page-home .kph-home-approach__header h2 {
  color: #062e4d;
  font-size: clamp(40px, 4.6vw, 64px);
  font-weight: 850;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.page-home .kph-home-approach__header > p:last-child {
  max-width: 850px;
  color: #355d70;
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 500;
  line-height: 1.65;
}

.page-home .kph-home-approach__grid {
  gap: 22px;
}

.page-home .kph-home-approach-card {
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 22px;
  min-height: 225px;
  padding: 30px;
  border-color: #cddfe7;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(13, 62, 83, .085);
}

.page-home .kph-home-approach-card__icon {
  width: 78px;
  height: 78px;
}

.page-home .kph-home-approach-card__label {
  margin-bottom: 8px;
  color: #007f89;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: .045em;
}

.page-home .kph-home-approach-card h3 {
  margin-bottom: 11px;
  color: #062e4d;
  font-size: clamp(23px, 1.85vw, 27px);
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: -0.018em;
}

.page-home .kph-home-approach-card > div > p:last-child {
  color: #355d70;
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 1.68;
}

.page-home .kph-home-approach__conversion {
  gap: 22px;
  margin-top: 22px;
}

.page-home .kph-home-approach__benefits {
  padding: 30px;
}

.page-home .kph-home-approach__benefits h3 {
  color: #062e4d;
  font-size: 23px;
  line-height: 1.25;
}

.page-home .kph-home-approach__benefits li {
  color: #244e62;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.page-home .kph-home-approach__cta {
  padding: 30px 32px;
}

.page-home .kph-home-approach__cta-copy h3 {
  font-size: clamp(25px, 2vw, 30px);
  font-weight: 850;
}

.page-home .kph-home-approach__cta-copy p {
  color: rgba(255, 255, 255, .88);
  font-size: 16px;
  line-height: 1.6;
}

.page-home .kph-home-approach__actions .btn,
.page-home .kph-home-approach__phone {
  min-height: 54px;
  font-size: 16px;
  font-weight: 800;
}

.page-home .kph-home-approach__note {
  color: #526f7d;
  font-size: 14px;
  line-height: 1.55;
}

/* ---------- Tablet ---------- */
@media (max-width: 980px) {
  .page-home .kph-home-proof__items {
    gap: 22px;
  }

  .page-home .kph-home-proof__item {
    min-height: 260px;
  }

  .page-home .kph-home-approach-card {
    min-height: 0;
  }
}

/* ---------- Mobile: readable cards, no narrow timeline text ---------- */
@media (max-width: 700px) {
  .page-home .kph-home-proof {
    width: calc(100% - 20px);
    margin-top: 14px;
  }

  .page-home .kph-home-proof__inner {
    padding: 156px 14px 16px;
    border-radius: 24px;
  }

  .page-home .kph-home-proof__inner::before {
    top: 28px;
    left: 18px;
    right: 18px;
    font-size: clamp(29px, 8.8vw, 39px);
    line-height: 1.08;
  }

  .page-home .kph-home-proof__inner::after {
    top: 90px;
    width: calc(100% - 42px);
    color: #355d70;
    font-size: 16px;
    line-height: 1.5;
  }

  .page-home .kph-home-proof__items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 0 18px;
  }

  .page-home .kph-home-proof__items::before {
    display: none;
  }

  .page-home .kph-home-proof__item {
    position: relative;
    min-height: 0;
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    grid-template-rows: auto;
    align-items: center;
    gap: 16px;
    padding: 22px 18px 20px;
    border: 1px solid #cfe1e8;
    border-radius: 20px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 9px 24px rgba(8, 48, 67, .08);
    text-align: left;
  }

  .page-home .kph-home-proof__item::before {
    position: absolute;
    z-index: 2;
    top: -11px;
    left: 15px;
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .page-home .kph-home-proof__item::after {
    display: none;
  }

  .page-home .kph-home-proof__icon {
    grid-column: 1;
    grid-row: 1;
    width: 66px;
    height: 66px;
    border-radius: 18px;
  }

  .page-home .kph-home-proof__icon svg {
    width: 34px;
    height: 34px;
  }

  .page-home .kph-home-proof__item > span:last-child {
    grid-column: 2;
    grid-row: 1;
    align-items: flex-start;
    gap: 7px;
  }

  .page-home .kph-home-proof__item strong {
    max-width: none;
    color: #062e4d;
    font-size: 20px;
    font-weight: 850;
    line-height: 1.25;
  }

  .page-home .kph-home-proof__item small {
    max-width: none;
    color: #355d70;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.58;
  }

  .page-home .kph-home-proof__cta {
    grid-template-columns: 58px minmax(0, 1fr);
    justify-items: stretch;
    gap: 14px;
    padding: 20px 16px 16px;
    text-align: left;
  }

  .page-home .kph-home-proof__cta-icon {
    width: 58px;
    height: 58px;
  }

  .page-home .kph-home-proof__cta > span:nth-child(2) {
    align-items: flex-start;
  }

  .page-home .kph-home-proof__cta small {
    font-size: 15px;
  }

  .page-home .kph-home-proof__cta strong {
    max-width: none;
    font-size: 22px;
    line-height: 1.2;
  }

  .page-home .kph-home-proof__cta-arrow {
    grid-column: 1 / -1;
    width: 100%;
    height: 52px;
    border-radius: 14px;
  }

  .page-home .kph-home-approach {
    padding: 48px 14px;
  }

  .page-home .kph-home-approach__header {
    margin-bottom: 26px;
    text-align: left;
  }

  .page-home .kph-home-approach__header h2 {
    font-size: clamp(32px, 10vw, 43px);
    line-height: 1.08;
  }

  .page-home .kph-home-approach__header > p:last-child {
    margin-top: 14px;
    color: #355d70;
    font-size: 17px;
    line-height: 1.62;
  }

  .page-home .kph-home-approach__grid {
    gap: 14px;
  }

  .page-home .kph-home-approach-card {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 15px;
    min-height: 0;
    padding: 21px 17px;
    border-radius: 20px;
  }

  .page-home .kph-home-approach-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
  }

  .page-home .kph-home-approach-card__icon svg {
    width: 31px;
    height: 31px;
  }

  .page-home .kph-home-approach-card__label {
    margin-bottom: 6px;
    font-size: 12px;
    line-height: 1.35;
  }

  .page-home .kph-home-approach-card h3 {
    margin-bottom: 9px;
    font-size: 21px;
    line-height: 1.24;
  }

  .page-home .kph-home-approach-card > div > p:last-child {
    color: #355d70;
    font-size: 16px;
    line-height: 1.62;
  }

  .page-home .kph-home-approach__conversion {
    gap: 14px;
    margin-top: 14px;
  }

  .page-home .kph-home-approach__benefits {
    padding: 24px 19px;
  }

  .page-home .kph-home-approach__benefits h3 {
    font-size: 21px;
  }

  .page-home .kph-home-approach__benefits li {
    font-size: 16px;
    line-height: 1.5;
  }

  .page-home .kph-home-approach__cta {
    grid-template-columns: 52px minmax(0, 1fr);
    padding: 24px 19px;
  }

  .page-home .kph-home-approach__cta-copy h3 {
    font-size: 23px;
  }

  .page-home .kph-home-approach__cta-copy p {
    font-size: 16px;
    line-height: 1.58;
  }

  .page-home .kph-home-approach__actions {
    gap: 10px;
  }

  .page-home .kph-home-approach__actions .btn,
  .page-home .kph-home-approach__phone {
    width: 100%;
    min-height: 54px;
    font-size: 16px;
  }

  .page-home .kph-home-approach__note {
    font-size: 14px;
    line-height: 1.55;
  }
}

/* ---------- Very narrow phones ---------- */
@media (max-width: 420px) {
  .page-home .kph-home-proof__inner {
    padding-top: 164px;
  }

  .page-home .kph-home-proof__inner::before {
    font-size: 29px;
  }

  .page-home .kph-home-proof__inner::after {
    top: 96px;
    font-size: 15px;
  }

  .page-home .kph-home-proof__item {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 13px;
    padding: 21px 14px 18px;
  }

  .page-home .kph-home-proof__icon {
    width: 56px;
    height: 56px;
  }

  .page-home .kph-home-proof__icon svg {
    width: 30px;
    height: 30px;
  }

  .page-home .kph-home-proof__item strong {
    font-size: 19px;
  }

  .page-home .kph-home-proof__item small {
    font-size: 16px;
    line-height: 1.55;
  }

  .page-home .kph-home-approach-card {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 13px;
    padding: 20px 14px;
  }

  .page-home .kph-home-approach-card__icon {
    width: 52px;
    height: 52px;
  }

  .page-home .kph-home-approach-card h3 {
    font-size: 20px;
  }

  .page-home .kph-home-approach-card > div > p:last-child {
    font-size: 16px;
  }
}


/* ================================================================
   KPHYSIO — MERGED CONVERSION SECTIONS V2
   Previously stored in home-conversion-sections.css.
   Kept here so all Home-page styles live in home-page.css.
================================================================ */
/* Kphysio home conversion sections v2
   Isolated styles for the process and reasons sections.
   Loaded after home-page.css to avoid conflicts with legacy section rules. */

.page-home .kph-process,
.page-home .kph-reasons {
  --kph-navy: #082f4b;
  --kph-navy-deep: #05263d;
  --kph-teal: #087f88;
  --kph-teal-bright: #0aa5a5;
  --kph-text: #365767;
  --kph-muted: #5b7480;
  --kph-border: #cfe0e6;
  --kph-surface: #ffffff;
  --kph-soft: #f1f8f9;
  color: var(--kph-navy);
  font-family: inherit;
}

.page-home .kph-process *,
.page-home .kph-reasons * {
  box-sizing: border-box;
}

.page-home .kph-process {
  position: relative;
  z-index: 12;
  padding: clamp(54px, 6vw, 88px) 20px;
  background:
    radial-gradient(circle at 90% 8%, rgba(10, 165, 165, .10), transparent 28%),
    linear-gradient(180deg, #f8fcfd 0%, #eef7f8 100%);
}

.page-home .kph-process__shell,
.page-home .kph-reasons__shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.page-home .kph-process__header,
.page-home .kph-reasons__header {
  max-width: 860px;
  margin: 0 auto clamp(30px, 4vw, 48px);
  text-align: center;
}

.page-home .kph-process__eyebrow,
.page-home .kph-reasons__eyebrow {
  margin: 0 0 10px;
  color: var(--kph-teal);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .095em;
  text-transform: uppercase;
}

.page-home .kph-process__header h2,
.page-home .kph-reasons__header h2 {
  margin: 0;
  color: var(--kph-navy);
  font-size: clamp(38px, 4.6vw, 60px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.page-home .kph-process__header > p:last-child,
.page-home .kph-reasons__header > p:last-child {
  max-width: 790px;
  margin: 18px auto 0;
  color: var(--kph-text);
  font-size: clamp(17px, 1.45vw, 19px);
  font-weight: 500;
  line-height: 1.68;
  text-wrap: pretty;
}

.page-home .kph-process__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .kph-process__step {
  position: relative;
  min-width: 0;
  min-height: 306px;
  display: flex;
  flex-direction: column;
  padding: 22px 21px 25px;
  overflow: hidden;
  border: 1px solid var(--kph-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 14px 34px rgba(8, 48, 67, .08);
}

.page-home .kph-process__step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--kph-teal), #37c5ba);
}

.page-home .kph-process__marker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}

.page-home .kph-process__number {
  color: var(--kph-teal);
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .04em;
}

.page-home .kph-process__icon,
.page-home .kph-reasons__icon,
.page-home .kph-reasons__equipment-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: linear-gradient(145deg, #eaf8f9, #dff2f4);
  color: var(--kph-teal);
}

.page-home .kph-process__icon {
  width: 72px;
  height: 72px;
  border-radius: 21px;
}

.page-home .kph-process__icon svg,
.page-home .kph-reasons__icon svg,
.page-home .kph-reasons__equipment-icon svg,
.page-home .kph-process__phone svg,
.page-home .kph-reasons__phone svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-home .kph-process__icon svg {
  width: 38px;
  height: 38px;
}

.page-home .kph-process__copy h3 {
  margin: 0 0 11px;
  color: var(--kph-navy);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.23;
  letter-spacing: -.018em;
  text-wrap: balance;
}

.page-home .kph-process__copy p {
  margin: 0;
  color: var(--kph-text);
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.64;
  text-wrap: pretty;
}

.page-home .kph-process__conversion {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, .75fr);
  gap: 28px;
  align-items: center;
  margin-top: 22px;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 15%, rgba(58, 216, 201, .20), transparent 30%),
    linear-gradient(135deg, #052a45 0%, #084e68 60%, #087d85 100%);
  color: #fff;
  box-shadow: 0 20px 46px rgba(6, 45, 67, .18);
}

.page-home .kph-process__conversion .kph-process__eyebrow,
.page-home .kph-reasons__conversion .kph-reasons__eyebrow {
  color: #74e2d8;
}

.page-home .kph-process__conversion h3,
.page-home .kph-reasons__conversion h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(25px, 2.5vw, 34px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.page-home .kph-process__conversion-copy > p:last-child,
.page-home .kph-reasons__conversion-copy > p:not(.kph-reasons__eyebrow) {
  max-width: 720px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.62;
}

.page-home .kph-process__actions,
.page-home .kph-reasons__actions {
  display: grid;
  gap: 12px;
}

.page-home .kph-process__actions .btn,
.page-home .kph-reasons__actions .btn {
  width: 100%;
  min-height: 56px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.2;
}

.page-home .kph-process__primary,
.page-home .kph-reasons__primary {
  box-shadow: 0 12px 24px rgba(0, 0, 0, .14);
}

.page-home .kph-process__phone,
.page-home .kph-reasons__phone {
  display: grid;
  grid-template-columns: 24px auto 1fr;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  text-decoration: none;
}

.page-home .kph-process__phone:hover,
.page-home .kph-reasons__phone:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.page-home .kph-process__phone svg,
.page-home .kph-reasons__phone svg {
  width: 22px;
  height: 22px;
}

.page-home .kph-process__phone span,
.page-home .kph-reasons__phone span {
  white-space: nowrap;
}

.page-home .kph-process__phone small,
.page-home .kph-reasons__phone small {
  justify-self: end;
  color: rgba(255, 255, 255, .84);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.page-home .kph-reasons {
  padding: clamp(58px, 7vw, 96px) 20px;
  background:
    radial-gradient(circle at 8% 12%, rgba(10, 165, 165, .07), transparent 26%),
    #ffffff;
}

.page-home .kph-reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.page-home .kph-reasons__card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px 26px 30px;
  border: 1px solid var(--kph-border);
  border-radius: 24px;
  background: var(--kph-surface);
  box-shadow: 0 14px 34px rgba(8, 48, 67, .075);
}

.page-home .kph-reasons__icon {
  width: 66px;
  height: 66px;
  border-radius: 20px;
}

.page-home .kph-reasons__icon svg {
  width: 34px;
  height: 34px;
}

.page-home .kph-reasons__label {
  margin: 0 0 8px;
  color: var(--kph-teal);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.page-home .kph-reasons__copy h3,
.page-home .kph-reasons__equipment h3 {
  margin: 0 0 11px;
  color: var(--kph-navy);
  font-size: 23px;
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -.018em;
  text-wrap: balance;
}

.page-home .kph-reasons__copy > p:last-child,
.page-home .kph-reasons__equipment > div > p:last-child {
  margin: 0;
  color: var(--kph-text);
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.66;
  text-wrap: pretty;
}

.page-home .kph-reasons__equipment {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 18px;
  padding: 24px 26px;
  border: 1px solid #bcdde0;
  border-radius: 22px;
  background: linear-gradient(135deg, #edf9fa 0%, #f9fcfd 70%);
}

.page-home .kph-reasons__equipment-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
}

.page-home .kph-reasons__equipment-icon svg {
  width: 35px;
  height: 35px;
}

.page-home .kph-reasons__equipment h3 {
  font-size: 21px;
}

.page-home .kph-reasons__conversion {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, .75fr);
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: clamp(28px, 3vw, 40px);
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 12%, rgba(70, 219, 204, .21), transparent 30%),
    linear-gradient(135deg, #052a45 0%, #084e68 58%, #087d85 100%);
  box-shadow: 0 20px 46px rgba(6, 45, 67, .18);
}

.page-home .kph-reasons__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.page-home .kph-reasons__benefits li {
  position: relative;
  padding: 9px 13px 9px 34px;
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
}

.page-home .kph-reasons__benefits li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #72e1d6;
  font-weight: 900;
}

.page-home .kph-process a:focus-visible,
.page-home .kph-reasons a:focus-visible {
  outline: 3px solid #f6c945;
  outline-offset: 3px;
}

@media (max-width: 1020px) {
  .page-home .kph-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .kph-process__step {
    min-height: 250px;
  }

  .page-home .kph-reasons__grid {
    grid-template-columns: 1fr;
  }

  .page-home .kph-reasons__card {
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    align-items: start;
  }
}

@media (max-width: 780px) {
  .page-home .kph-process,
  .page-home .kph-reasons {
    padding: 44px 14px;
  }

  .page-home .kph-process__header,
  .page-home .kph-reasons__header {
    margin-bottom: 26px;
    text-align: left;
  }

  .page-home .kph-process__eyebrow,
  .page-home .kph-reasons__eyebrow {
    font-size: 12.5px;
  }

  .page-home .kph-process__header h2,
  .page-home .kph-reasons__header h2 {
    font-size: clamp(31px, 9.2vw, 42px);
    line-height: 1.1;
    letter-spacing: -.03em;
  }

  .page-home .kph-process__header > p:last-child,
  .page-home .kph-reasons__header > p:last-child {
    margin-top: 14px;
    font-size: 16.5px;
    line-height: 1.62;
  }

  .page-home .kph-process__steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .page-home .kph-process__step {
    min-height: 0;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 15px;
    align-items: start;
    padding: 19px 17px 21px;
    border-radius: 19px;
  }

  .page-home .kph-process__marker {
    display: grid;
    justify-items: center;
    gap: 9px;
    margin: 0;
  }

  .page-home .kph-process__number {
    font-size: 13px;
  }

  .page-home .kph-process__icon {
    width: 56px;
    height: 56px;
    border-radius: 17px;
  }

  .page-home .kph-process__icon svg {
    width: 30px;
    height: 30px;
  }

  .page-home .kph-process__copy h3 {
    margin-bottom: 7px;
    font-size: 21px;
    line-height: 1.25;
  }

  .page-home .kph-process__copy p {
    font-size: 16px;
    line-height: 1.62;
  }

  .page-home .kph-process__conversion,
  .page-home .kph-reasons__conversion {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 18px;
    border-radius: 21px;
  }

  .page-home .kph-process__conversion h3,
  .page-home .kph-reasons__conversion h3 {
    font-size: 26px;
    line-height: 1.17;
  }

  .page-home .kph-process__conversion-copy > p:last-child,
  .page-home .kph-reasons__conversion-copy > p:not(.kph-reasons__eyebrow) {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-home .kph-process__phone,
  .page-home .kph-reasons__phone {
    grid-template-columns: 22px auto 1fr;
  }

  .page-home .kph-reasons__card {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 15px;
    padding: 20px 17px 22px;
    border-radius: 19px;
  }

  .page-home .kph-reasons__icon {
    width: 56px;
    height: 56px;
    border-radius: 17px;
  }

  .page-home .kph-reasons__icon svg {
    width: 29px;
    height: 29px;
  }

  .page-home .kph-reasons__label {
    margin-bottom: 6px;
    font-size: 12px;
  }

  .page-home .kph-reasons__copy h3 {
    margin-bottom: 8px;
    font-size: 21px;
    line-height: 1.25;
  }

  .page-home .kph-reasons__copy > p:last-child {
    font-size: 16px;
    line-height: 1.62;
  }

  .page-home .kph-reasons__equipment {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 15px;
    padding: 20px 17px;
    border-radius: 19px;
  }

  .page-home .kph-reasons__equipment-icon {
    width: 56px;
    height: 56px;
    border-radius: 17px;
  }

  .page-home .kph-reasons__equipment h3 {
    font-size: 20px;
    line-height: 1.28;
  }

  .page-home .kph-reasons__equipment > div > p:last-child {
    font-size: 16px;
    line-height: 1.62;
  }
}

@media (max-width: 430px) {
  .page-home .kph-process,
  .page-home .kph-reasons {
    padding-left: 10px;
    padding-right: 10px;
  }

  .page-home .kph-process__step,
  .page-home .kph-reasons__card,
  .page-home .kph-reasons__equipment {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .page-home .kph-process__icon,
  .page-home .kph-reasons__icon,
  .page-home .kph-reasons__equipment-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }

  .page-home .kph-process__copy h3,
  .page-home .kph-reasons__copy h3 {
    font-size: 20px;
  }

  .page-home .kph-process__copy p,
  .page-home .kph-reasons__copy > p:last-child,
  .page-home .kph-reasons__equipment > div > p:last-child {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-home .kph-process__phone,
  .page-home .kph-reasons__phone {
    grid-template-columns: 22px 1fr;
    text-align: left;
  }

  .page-home .kph-process__phone small,
  .page-home .kph-reasons__phone small {
    grid-column: 2;
    justify-self: start;
    white-space: normal;
  }

  .page-home .kph-reasons__benefits {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .kph-process *,
  .page-home .kph-reasons * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* ================================================================
   KPHYSIO HERO LAYOUT V9 — CONSOLIDATED
   One lightweight layout layer for desktop and mobile. Replaces the older
   stacked hero overrides, removes live blur, and keeps the approved design.
================================================================ */
.page-home .hero-slider {
  position: relative;
  min-height: clamp(720px, 100svh, 960px);
  overflow: hidden;
  isolation: isolate;
  contain: paint;
  background: #06283c;
  color: #fff;
}

.page-home .hero-slider__slides,
.page-home .hero-slide,
.page-home .hero-slide__media {
  position: absolute;
  inset: 0;
}

.page-home .hero-slider__slides {
  z-index: 0;
}

.page-home .hero-slide {
  opacity: 0;
  background: #06283c;
  transition: opacity .34s ease;
}

.page-home .hero-slide.is-active {
  opacity: 1;
}

.page-home .hero-slide__media {
  display: block;
  overflow: hidden;
}

.page-home .hero-slide__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--slide-desktop-x, 50%) var(--slide-desktop-y, 50%);
}

.page-home .hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 25, 42, .94) 0%, rgba(3, 33, 53, .78) 29%, rgba(3, 30, 48, .38) 55%, rgba(3, 24, 39, .08) 79%),
    linear-gradient(0deg, rgba(2, 24, 39, .38) 0%, transparent 38%);
}

.page-home .hero-slider__content {
  position: absolute;
  z-index: 3;
  top: clamp(225px, 29svh, 300px);
  left: clamp(36px, 3.75vw, 72px);
  width: min(730px, calc(100% - 96px));
  min-height: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  transform: none;
  color: #fff;
}

.page-home .hero-slider__content > .eyebrow {
  display: none;
}

.page-home .hero-slider__content h1 {
  width: 100%;
  max-width: 730px;
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 4.45vw, 5rem);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.035em;
  text-wrap: balance;
  text-shadow: 0 3px 15px rgba(0, 0, 0, .5);
}

.page-home .hero-title-main,
.page-home .hero-title-accent {
  display: block;
}

.page-home .hero-title-accent {
  margin-top: .1em;
  color: #fff;
}

.page-home .hero-title-accent::before {
  content: none;
}

.page-home .hero-slider__content > p:not(.eyebrow) {
  width: min(650px, 100%);
  max-width: none;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .96);
  font-size: clamp(1.05rem, 1.25vw, 1.3rem);
  font-weight: 560;
  line-height: 1.45;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .55);
}

.page-home .hero-slider__cta {
  width: auto;
  margin: 30px 0 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
}

.page-home .hero-slider__cta .cta-button {
  min-width: 0;
  min-height: 68px;
  padding: 0 30px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #08a6b0, #0ab7b6);
  box-shadow: 0 12px 28px rgba(0, 149, 159, .24);
  color: #fff;
  font-size: clamp(1rem, 1.08vw, 1.16rem);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.page-home .hero-slider__cta .cta-button.secondary {
  min-width: 280px;
  background: rgba(2, 24, 42, .52);
  box-shadow: none;
}

.page-home .hero-slider__cta .cta-button:hover,
.page-home .hero-slider__cta .cta-button:focus-visible {
  transform: translateY(-2px);
}

.page-home .hero-google-rating {
  width: fit-content;
  min-height: 66px;
  margin: 22px 0 0;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(2, 28, 47, .72);
  color: #fff;
  box-shadow: none;
  text-decoration: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition: border-color .18s ease, background-color .18s ease;
}

.page-home .hero-google-rating:hover,
.page-home .hero-google-rating:focus-visible {
  border-color: rgba(255, 255, 255, .52);
  background: rgba(2, 28, 47, .86);
  transform: none;
}

.page-home .hero-google-rating__logo {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
}

.page-home .hero-google-rating__logo svg {
  display: block;
  width: 100%;
  height: 100%;
}

.page-home .hero-google-rating__content {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.page-home .hero-google-rating__label {
  color: rgba(255, 255, 255, .95);
  font-size: .98rem;
  font-weight: 720;
  line-height: 1.1;
  white-space: nowrap;
}

.page-home .hero-google-rating__row {
  min-height: 38px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, .26);
  display: flex;
  align-items: center;
  gap: 13px;
}

.page-home .hero-google-rating__row strong {
  color: #fff;
  font-size: 2rem;
  font-weight: 850;
  line-height: 1;
}

.page-home .hero-google-rating__stars {
  color: #ffb400;
  font-size: 1.42rem;
  line-height: 1;
  letter-spacing: .08em;
  white-space: nowrap;
}

.page-home .hero-slider__stats {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: clamp(22px, 3svh, 34px);
  width: min(1390px, calc(100% - 120px));
  min-height: 120px;
  padding: 0;
  border: 1px solid rgba(10, 54, 78, .12);
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 14px 34px rgba(1, 28, 45, .15);
  color: #072e4c;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.page-home .hero-slider__stat {
  min-width: 0;
  padding: 20px clamp(24px, 3vw, 54px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.page-home .hero-slider__stat + .hero-slider__stat {
  border-left: 1px solid rgba(9, 71, 100, .15);
}

.page-home .hero-slider__stat-icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0aa8aa;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 143, 149, .18);
}

.page-home .hero-slider__stat-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-home .hero-slider__stat-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.page-home .hero-slider__stat-value {
  display: flex;
  align-items: baseline;
  color: #062f50;
  font-size: clamp(2rem, 2.25vw, 2.75rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.035em;
  white-space: nowrap;
}

.page-home .hero-slider__stat-suffix {
  margin-left: 2px;
  color: #049ea3;
  font-size: .64em;
}

.page-home .hero-slider__stat-label {
  color: #07324f;
  font-size: clamp(.78rem, .9vw, .98rem);
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: .02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.page-home .hero-slider__controls {
  z-index: 5;
}

.page-home .hero-slider--single .hero-slider__controls {
  display: none !important;
}

.page-home .hero-slider--single .hero-slide {
  transition: none;
}

@media (min-width: 769px) and (max-width: 1180px) {
  .page-home .hero-slider__content {
    top: clamp(190px, 24svh, 245px);
    left: 34px;
    width: min(650px, calc(100% - 68px));
  }

  .page-home .hero-slider__content h1 {
    font-size: clamp(3rem, 5.4vw, 4.25rem);
  }

  .page-home .hero-slider__cta .cta-button {
    min-height: 60px;
    padding-inline: 24px;
  }

  .page-home .hero-slider__cta .cta-button.secondary {
    min-width: 230px;
  }

  .page-home .hero-slider__stats {
    width: calc(100% - 56px);
  }

  .page-home .hero-slider__stat {
    padding-inline: 22px;
    gap: 14px;
  }

  .page-home .hero-slider__stat-icon {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }
}

@media (max-width: 768px) {
  .page-home .hero-slider {
    min-height: max(100svh, 790px);
    padding: clamp(300px, 47svh, 400px) 16px 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    contain: paint;
  }

  .page-home .hero-slide,
  .page-home .hero-slide.is-active {
    opacity: 1;
    transition: none;
  }

  .page-home .hero-slide:not(:first-child) {
    display: none;
  }

  .page-home .hero-slide__media img {
    object-position: var(--slide-mobile-x, 50%) var(--slide-mobile-y, 50%);
  }

  .page-home .hero-slide::after {
    background:
      linear-gradient(180deg, rgba(2, 25, 42, .2) 0%, rgba(2, 26, 43, .08) 29%, rgba(2, 27, 45, .52) 48%, rgba(2, 25, 42, .96) 69%, #021b2e 100%),
      linear-gradient(90deg, rgba(1, 25, 42, .28), rgba(1, 25, 42, .04));
  }

  .page-home .hero-slider__content {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 0;
    padding: 0;
    display: flex;
    flex: 0 0 auto;
    align-items: stretch;
    gap: 0;
    transform: none;
  }

  .page-home .hero-slider__content h1 {
    max-width: none;
    font-size: clamp(2.55rem, 11.7vw, 4rem);
    line-height: 1.02;
    letter-spacing: -.035em;
    text-align: left;
    text-wrap: balance;
  }

  .page-home .hero-title-accent {
    margin-top: .08em;
  }

  .page-home .hero-slider__content > p:not(.eyebrow) {
    width: 100%;
    margin-top: 22px;
    font-size: clamp(1rem, 4.55vw, 1.22rem);
    line-height: 1.45;
    text-align: left;
  }

  .page-home .hero-slider__cta {
    width: 100%;
    margin-top: 26px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .page-home .hero-slider__cta .cta-button,
  .page-home .hero-slider__cta .cta-button.secondary {
    width: 100%;
    min-width: 0;
    min-height: 60px;
    padding: 0 18px;
    border-radius: 16px;
    font-size: clamp(1rem, 4.6vw, 1.18rem);
    transform: none;
    transition: none;
  }

  .page-home .hero-slider__cta .cta-button.secondary {
    background: rgba(2, 24, 42, .58);
  }

  .page-home .hero-google-rating {
    width: 100%;
    min-height: 68px;
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 16px;
    justify-content: flex-start;
    gap: 13px;
    background: rgba(2, 26, 44, .72);
    transition: none;
  }

  .page-home .hero-google-rating__logo {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .page-home .hero-google-rating__content {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .page-home .hero-google-rating__label {
    font-size: clamp(.82rem, 3.5vw, .98rem);
  }

  .page-home .hero-google-rating__row {
    min-height: 38px;
    padding-left: 12px;
    gap: 8px;
  }

  .page-home .hero-google-rating__row strong {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .page-home .hero-google-rating__stars {
    font-size: clamp(.92rem, 4vw, 1.15rem);
    letter-spacing: .035em;
  }

  .page-home .hero-slider__stats {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 0;
    margin: 16px 0 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
  }

  .page-home .hero-slider__stat {
    min-width: 0;
    min-height: 112px;
    padding: 13px 8px 12px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(2, 28, 47, .68);
    color: #fff;
  }

  .page-home .hero-slider__stat + .hero-slider__stat {
    border-left: 1px solid rgba(255, 255, 255, .28);
  }

  .page-home .hero-slider__stat-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    box-shadow: none;
  }

  .page-home .hero-slider__stat-icon svg {
    width: 24px;
    height: 24px;
  }

  .page-home .hero-slider__stat-copy {
    width: 100%;
    align-items: center;
    gap: 4px;
  }

  .page-home .hero-slider__stat-value {
    justify-content: center;
    color: #fff;
    font-size: clamp(1.42rem, 6vw, 2rem);
    line-height: 1;
  }

  .page-home .hero-slider__stat-suffix {
    color: #20c4c4;
  }

  .page-home .hero-slider__stat-label {
    width: 100%;
    overflow: hidden;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(.58rem, 2.45vw, .75rem);
    line-height: 1.12;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .page-home .hero-slider__controls,
  .page-home .hero-slider__dots,
  .page-home .hero-slider__arrows,
  .page-home .hero-slider__indicator {
    display: none !important;
  }
}

@media (max-width: 380px) {
  .page-home .hero-slider {
    min-height: max(100svh, 760px);
    padding-top: clamp(275px, 43svh, 350px);
    padding-inline: 12px;
  }

  .page-home .hero-slider__content h1 {
    font-size: clamp(2.3rem, 11.5vw, 3rem);
  }

  .page-home .hero-slider__stats {
    gap: 6px;
  }

  .page-home .hero-slider__stat {
    min-height: 104px;
    padding-inline: 5px;
  }

  .page-home .hero-slider__stat-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .page-home .hero-slider__stat-value {
    font-size: 1.32rem;
  }

  .page-home .hero-slider__stat-label {
    font-size: .56rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .hero-slide,
  .page-home .hero-slider__cta .cta-button,
  .page-home .hero-google-rating {
    transition: none !important;
  }
}

/* ================================================================
   Homepage reviews slider — moved from inline HTML for cheaper parsing
   and stable browser caching.
================================================================ */
.reviews-slider-section {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
  background: linear-gradient(135deg, #f0f4fb 0%, #f5f8fd 100%);
}

.reviews-slider-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;
}

.reviews-slider-header {
  max-width: 600px;
  margin: 0 auto 1.1rem;
  text-align: center;
}

.reviews-slider-header h2 {
  margin-bottom: 0;
}

.reviews-slider {
  position: relative;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 10px 0 12px;
  -webkit-overflow-scrolling: touch;
}

.reviews-slider::-webkit-scrollbar {
  height: 4px;
}

.reviews-slider::-webkit-scrollbar-track {
  background: transparent;
}

.reviews-slider::-webkit-scrollbar-thumb {
  background: #c4d1e0;
  border-radius: 2px;
}

.reviews-slider::-webkit-scrollbar-thumb:hover {
  background: #8b9fc7;
}

.review-slide {
  flex: 0 0 calc(33.333% - 12px);
  min-width: 0;
  scroll-snap-align: start;
}

.review-slide-card {
  height: 210px;
  padding: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 9px;
  background: #fff;
  border: 1px solid #d9e5ef;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(15, 91, 120, 0.08);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.review-slide-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 91, 120, 0.28);
  box-shadow: 0 12px 28px rgba(15, 91, 120, 0.13);
}

.review-slide-stars {
  display: flex;
  align-items: center;
  gap: 1px;
  margin-bottom: 0;
  color: #f5a623;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
}

.review-slide-message {
  flex: 1;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  color: #202124;
  font-size: 15px;
  line-height: 1.45;
  font-style: normal;
  text-overflow: ellipsis;
}

.review-slide-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  margin-top: auto;
  border-top: 1px solid #edf2f6;
}

.review-slide-avatar {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.review-slide-author {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.review-slide-name {
  margin: 0;
  overflow: hidden;
  color: #202124;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reviews-slider-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 12px;
}

.reviews-slider-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.reviews-slider-btn {
  width: 38px;
  height: 38px;
  border: 1px solid #d9e5ef;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.reviews-slider-btn svg {
  width: 18px;
  height: 18px;
}

.reviews-slider-btn:hover {
  background: #f8fbfd;
  box-shadow: 0 4px 12px rgba(15, 91, 120, 0.12);
  transform: translateY(-1px);
}

.reviews-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.reviews-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 18px;
  border: 1px solid var(--primary);
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.reviews-cta-primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  box-shadow: 0 8px 18px rgba(8, 166, 166, 0.2);
  transform: translateY(-1px);
}

.reviews-cta-secondary {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.reviews-cta-secondary:hover {
  color: var(--secondary);
}

@media (max-width: 1024px) {
  .review-slide {
    flex: 0 0 calc(50% - 9px);
  }
}

@media (max-width: 640px) {
  .reviews-slider-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .reviews-slider-container {
    padding: 0 10px;
  }

  .reviews-slider-header {
    margin-bottom: 0.85rem;
  }

  .reviews-slider {
    gap: 14px;
    padding-top: 8px;
  }

  .review-slide {
    flex: 0 0 calc(100% - 18px);
  }

  .review-slide-card {
    height: 220px;
    padding: 15px;
  }

  .review-slide-message {
    font-size: 14px;
    -webkit-line-clamp: 5;
  }

  .reviews-slider-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .reviews-slider-nav {
    display: none;
  }

  .reviews-cta {
    width: 100%;
  }

  .reviews-cta-primary {
    min-width: 180px;
  }
}


/* ================================================================
   KPHYSIO PERFORMANCE LAYER — 2026-07-22
   Keeps the approved visual composition while reducing main-thread
   animation, off-screen rendering and expensive backdrop repaints.
================================================================ */

/* The homepage is already visually rich; reveal-on-scroll transforms added
   extra work without adding useful information. Render sections in final state. */
.page-home [data-section] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Let the browser skip layout/paint for long below-the-fold homepage blocks
   until they approach the viewport. Unsupported browsers simply ignore this. */
.page-home .section,
.page-home .kph-process,
.page-home .kph-reasons {
  content-visibility: auto;
  contain-intrinsic-size: auto 850px;
}

/* Shorter cross-fade means two full-screen hero layers overlap for less time,
   which noticeably reduces GPU pressure when large desktop images are used. */
.page-home .hero-slide {
  transition: opacity .4s ease !important;
}

@media (max-width: 768px) {
  .page-home .hero-slide {
    transition-duration: .28s !important;
  }
}

/* These surfaces are already almost opaque. Removing live backdrop blur keeps
   the same look while avoiding repeated GPU/backdrop rasterization. */
.page-home .hero-google-rating,
.page-home .hero-slider__stats,
.page-home .hero-slider__cta .cta-button.secondary,
.page-home .navbar:not(.is-scrolled) .site-search-trigger,
.page-home .navbar:not(.is-scrolled) .btn-outline,
.page-home .navbar:not(.is-scrolled) .hamburger,
.page-home .navbar:not(.is-scrolled) .mobile-booking-trigger {
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}


/* Homepage home-rehabilitation heading (moved out of inline HTML). */
.page-home .kph-home-rehab__top-title {
  width: min(1180px, 100%);
  margin: 0 auto clamp(22px, 2.4vw, 34px);
  color: #0a2f4d;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .page-home .kph-home-rehab__top-title {
    margin-bottom: 20px;
    padding: 0 6px;
    font-size: clamp(23px, 7vw, 31px);
    line-height: 1.08;
  }
}

/* ================================================================
   KPHYSIO MOBILE RUNTIME PERFORMANCE — 2026-07-22
   Preserves the approved hero design while avoiding scroll-time paint bursts,
   unnecessary carousel layers and touch-device hover work.
================================================================ */

.page-home .hero-slider--single .hero-slider__controls {
  display: none !important;
}

.page-home .hero-slider--single .hero-slide {
  transition: none !important;
}

@media (max-width: 768px) {
  /* content-visibility is useful for first paint on desktop, but on complex
     mobile pages it can create a visible hitch when each section is first
     materialized during scrolling. Mobile browsers already cull off-screen
     paint, while the page images remain natively lazy-loaded. */
  .page-home .section,
  .page-home .kph-process,
  .page-home .kph-reasons {
    content-visibility: visible !important;
    contain-intrinsic-size: none !important;
  }

  .page-home .hero-slider {
    isolation: isolate;
    contain: paint;
  }

  .page-home .hero-slide,
  .page-home .hero-slide__media,
  .page-home .hero-slider__content,
  .page-home .hero-slider__stats {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  .page-home .hero-slider--single .hero-slide,
  .page-home .hero-slider--single .hero-slide.is-active {
    opacity: 1 !important;
    transition: none !important;
  }

  .page-home .hero-slider--single .hero-slider__dots,
  .page-home .hero-slider--single .hero-slider__arrows,
  .page-home .hero-slider--single .hero-slider__indicator {
    display: none !important;
  }

  .page-home .hero-google-rating,
  .page-home .hero-slider__stats,
  .page-home .hero-slider__cta .cta-button {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  /* Native touch momentum is smoother than forcing CSS smooth scrolling and
     mandatory snap corrections while the user drags the review rail. */
  .page-home .reviews-slider {
    scroll-behavior: auto !important;
    scroll-snap-type: x proximity !important;
  }

  .page-home .review-slide-card,
  .page-home .reviews-slider-btn,
  .page-home .reviews-cta-primary {
    transition: none !important;
  }
}

@media (hover: none), (pointer: coarse) {
  .page-home .service-card:hover,
  .page-home .review-slide-card:hover,
  .page-home .kph-home-case-card:hover,
  .page-home .reviews-slider-btn:hover,
  .page-home .reviews-cta-primary:hover,
  .page-home .hero-slider__cta .cta-button:hover,
  .page-home .hero-google-rating:hover {
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .page-home .hero-slider--mobile-static .hero-slider__controls,
  .page-home .hero-slider--mobile-static .hero-slider__dots,
  .page-home .hero-slider--mobile-static .hero-slider__arrows,
  .page-home .hero-slider--mobile-static .hero-slider__indicator {
    display: none !important;
  }

  .page-home .hero-slider--mobile-static .hero-slide {
    transition: none !important;
  }
}

/* Mobile intentionally presents one stable hero message. Hide carousel chrome
   before JavaScript runs, so there is no flash or layout shift on first paint. */
@media (max-width: 768px) {
  .page-home .hero-slider__controls {
    display: none !important;
  }
}

/* ================================================================
   KPHYSIO HERO STATS — SPACIOUS DESKTOP V2
   Dark cards like mobile, but with proper desktop breathing room.
   Mobile rules below 769px are intentionally untouched.
================================================================ */
@media (min-width: 769px) {
  .page-home .hero-slider__stats {
    position: absolute;
    z-index: 4;
    left: clamp(30px, 3.75vw, 72px);
    right: clamp(30px, 3.75vw, 72px);
    bottom: clamp(18px, 2.4svh, 28px);
    width: auto;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(12px, 1.15vw, 18px);
    overflow: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    color: #fff;
  }

  .page-home .hero-slider__stat {
    min-width: 0;
    min-height: 124px;
    padding: 16px clamp(18px, 1.7vw, 28px);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: rgba(2, 28, 47, .80);
    color: #fff;
    box-shadow: 0 12px 28px rgba(1, 20, 34, .16);
  }

  .page-home .hero-slider__stat + .hero-slider__stat {
    border-left: 1px solid rgba(255, 255, 255, .28);
  }

  .page-home .hero-slider__stat-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #0aa8aa;
    color: #fff;
    box-shadow: none;
  }

  .page-home .hero-slider__stat-icon svg {
    width: 27px;
    height: 27px;
  }

  .page-home .hero-slider__stat-copy {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-align: center;
  }

  .page-home .hero-slider__stat-value {
    justify-content: center;
    color: #fff;
    font-size: clamp(1.85rem, 2.1vw, 2.35rem);
    line-height: .96;
    text-align: center;
    text-shadow: 0 2px 7px rgba(0, 0, 0, .18);
  }

  .page-home .hero-slider__stat-suffix {
    color: #20c4c4;
  }

  .page-home .hero-slider__stat-label {
    width: 100%;
    color: rgba(255, 255, 255, .95);
    font-size: clamp(.76rem, .82vw, .9rem);
    line-height: 1.08;
    text-align: center;
    white-space: nowrap;
  }
}

/* Short desktop/laptop screens:
   keep a visible gap below the Google rating instead of letting the cards
   climb into it. The row stays wide, only its vertical footprint is reduced. */
@media (min-width: 769px) and (max-height: 760px) {
  .page-home .hero-slider__stats {
    bottom: 10px;
    gap: 14px;
  }

  .page-home .hero-slider__stat {
    min-height: 108px;
    padding-top: 11px;
    padding-bottom: 10px;
    gap: 6px;
    border-radius: 18px;
  }

  .page-home .hero-slider__stat-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .page-home .hero-slider__stat-icon svg {
    width: 24px;
    height: 24px;
  }

  .page-home .hero-slider__stat-value {
    font-size: clamp(1.7rem, 2vw, 2rem);
  }

  .page-home .hero-slider__stat-label {
    font-size: clamp(.72rem, .78vw, .82rem);
  }
}

/* Medium desktop widths retain the same composition without squeezing
   the cards into a narrow block on the left. */
@media (min-width: 769px) and (max-width: 1180px) {
  .page-home .hero-slider__stats {
    left: 28px;
    right: 28px;
    gap: 12px;
  }

  .page-home .hero-slider__stat {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* ================================================================
   KPHYSIO HERO VIDEO — DEFERRED AFTER PAGE LOAD
   The existing picture remains the initial/LCP media. JavaScript creates
   and sources this video only after window.load, then fades it over the image
   after the first playable frame is available.
================================================================ */
.page-home .hero-slide__media {
  z-index: 0;
}

.page-home .hero-slide__video {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
  object-position: var(--video-desktop-x, 50%) var(--video-desktop-y, 50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .55s ease;
  background: transparent;
}

.page-home .hero-slide__video.is-ready {
  opacity: 1;
}

.page-home .hero-slide::after {
  z-index: 2;
}

@media (max-width: 768px) {
  .page-home .hero-slide__video {
    object-position: var(--video-mobile-x, 50%) var(--video-mobile-y, 50%);
    transition-duration: .4s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .hero-slide__video {
    transition-duration: 0s;
  }
}

/* ================================================================
   KPHYSIO HERO MOBILE MEDIA FRAMING FIX
   Keep the approved hero layout, but do not force a portrait mobile asset to
   cover the full tall hero block. The lower area remains the existing dark
   hero background/gradient, while image/video framing stays much closer to
   the original 9:16 composition.
================================================================ */
@media (max-width: 768px) {
  .page-home .hero-slide__media,
  .page-home .hero-slide__video {
    inset: 0 0 auto 0;
    height: clamp(540px, 86svh, 720px);
  }

  .page-home .hero-slide__media img,
  .page-home .hero-slide__video {
    width: 100%;
    object-fit: cover;
  }

  .page-home .hero-slide__media img {
    height: 100%;
  }
}

