﻿/* ===== light-theme.css ===== */

.modern-process {
  background: linear-gradient(145deg, #edf7f4 0%, #f8faf5 55%, #eef8e5 100%);
  color: #14221e;
  border-top: 1px solid #dce9e4;
  border-bottom: 1px solid #dce9e4;
}
.modern-process:before {
  border-color: rgba(8, 127, 121, 0.1);
  box-shadow:
    0 0 0 70px rgba(8, 127, 121, 0.025),
    0 0 0 140px rgba(8, 127, 121, 0.018);
}
.modern-process .process-intro .eyebrow {
  color: #087f79;
}
.modern-process .process-intro > p {
  color: #61736d;
}
.modern-process h2 em {
  color: #087f79;
}
.modern-process .process-grid:before {
  background: linear-gradient(
    90deg,
    transparent,
    #0c988f 15%,
    #0c988f 85%,
    transparent
  );
  opacity: 0.2;
}
.modern-process .process-grid article {
  background: rgba(255, 255, 255, 0.82);
  border-color: #d9e7e2;
  box-shadow: 0 12px 35px rgba(21, 69, 61, 0.055);
}
.modern-process .process-grid article:hover {
  background: #fff;
  border-color: #8bc9bf;
  box-shadow: 0 24px 55px rgba(21, 69, 61, 0.12);
}
.modern-process .process-grid article > b {
  color: rgba(8, 127, 121, 0.08);
}
.modern-process .process-grid article > span {
  background: linear-gradient(135deg, #087f79, #12a89d);
  color: #fff;
  box-shadow: 0 10px 25px rgba(8, 127, 121, 0.18);
}
.modern-process .process-grid article small {
  color: #087f79;
}
.modern-process .process-grid article h3 {
  color: #14221e;
}
.modern-process .process-grid article p {
  color: #66766f;
}
.modern-cta {
  background: linear-gradient(115deg, #e4f5ee 0%, #f2f8db 50%, #dff5ef 100%);
  border-bottom: 1px solid #d8e8e1;
}
.modern-cta .eyebrow {
  color: #087f79;
}
.modern-cta .button {
  background: #087f79;
  color: #fff;
  box-shadow: 0 14px 35px rgba(8, 127, 121, 0.2);
}
.modern-cta .button:hover {
  background: #075f5a;
  box-shadow: 0 18px 45px rgba(8, 127, 121, 0.28);
}
.cta-orbit {
  border-color: rgba(8, 127, 121, 0.12);
  color: rgba(8, 127, 121, 0.08);
}
.footer {
  background: #f7faf7 !important;
  color: #14221e !important;
  border-top: 1px solid #dbe6e1;
}
.footer p,
.footer a {
  color: #64736d !important;
}
.footer > div a:hover {
  color: #087f79 !important;
}
.footer .eyebrow {
  color: #087f79;
}
.footer small {
  color: #74817c;
  border-top-color: #dce5e1;
}
.footer .brand-logo img {
  filter: none;
  background: transparent;
  padding: 0;
}
.process {
  padding-top: 120px;
  padding-bottom: 120px;
}
.about-section {
  background: linear-gradient(180deg, #f7faf7 0%, #f2f8f5 100%);
}
body {
  overflow-x: hidden;
}
.site-header {
  transition:
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}
.site-header.is-scrolled {
  position: sticky;
  top: 0;
  background: rgba(252, 252, 249, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 28px rgba(20, 55, 49, 0.08);
}
.button {
  transition:
    transform 0.3s cubic-bezier(0.2, 0.75, 0.25, 1),
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}
.button:hover {
  transform: translateY(-3px);
}
.button:active {
  transform: translateY(-1px) scale(0.98);
}
.category-chip b,
.category-chip small {
  transition: color 0.3s ease;
}
.category-chip:hover b,
.category-chip.active b {
  color: #087f79;
}
.hero-copy > * {
  animation: heroRise 0.7s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}
.hero-copy > *:nth-child(2) {
  animation-delay: 0.08s;
}
.hero-copy > *:nth-child(3) {
  animation-delay: 0.16s;
}
.hero-copy > *:nth-child(4) {
  animation-delay: 0.24s;
}
.hero-photo {
  animation: heroVisual 0.9s 0.12s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}
.hero-photo img {
  transition: transform 1.2s cubic-bezier(0.2, 0.75, 0.25, 1);
}
.hero-photo:hover img {
  transform: scale(1.025);
}
@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes heroVisual {
  from {
    opacity: 0;
    transform: translateX(35px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.75s cubic-bezier(0.2, 0.75, 0.25, 1),
    transform 0.75s cubic-bezier(0.2, 0.75, 0.25, 1);
}
.reveal.reveal-left {
  transform: translateX(-35px);
}
.reveal.reveal-right {
  transform: translateX(35px);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.2, 0.75, 0.25, 1);
}
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: none;
}
.reveal-stagger.is-visible > *:nth-child(2) {
  transition-delay: 0.08s;
}
.reveal-stagger.is-visible > *:nth-child(3) {
  transition-delay: 0.16s;
}
.reveal-stagger.is-visible > *:nth-child(4) {
  transition-delay: 0.24s;
}
.product-card,
.about-values article,
.modern-process article {
  backface-visibility: hidden;
}
.footer a {
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-copy > *,
  .hero-photo,
  .reveal,
  .reveal-stagger > *,
  .cta-orbit {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ===== nav-icons-modern.css ===== */

/* Floating glass navigation */
.site-header,
.site-header.is-scrolled {
  position: sticky;
  top: 12px;
  width: min(calc(100% - 32px), 1540px);
  height: 76px;
  margin: 12px auto 0;
  padding: 0 14px 0 22px;
  border: 1px solid rgba(126, 168, 158, 0.28);
  border-radius: 22px;
  background: rgba(250, 253, 249, 0.8);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  box-shadow:
    0 12px 42px rgba(20, 63, 55, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  z-index: 80;
}
.site-header.is-scrolled {
  background: rgba(247, 252, 249, 0.92);
  box-shadow:
    0 18px 48px rgba(20, 63, 55, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}
.site-header:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0.5),
    transparent 35%,
    rgba(197, 245, 230, 0.22)
  );
  opacity: 0.7;
}
.site-header > * {
  position: relative;
  z-index: 1;
}
.site-header .brand-logo img {
  width: 205px;
  max-height: 55px;
  object-fit: contain;
}
.main-nav {
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(8, 127, 121, 0.09);
  border-radius: 999px;
  background: rgba(232, 245, 240, 0.62);
}
.main-nav > a {
  padding: 10px 16px;
  border-radius: 999px;
  color: #40544d;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}
.main-nav > a:hover {
  color: #075f5a;
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}
.main-nav .button-dark {
  margin-left: 3px;
  background: linear-gradient(135deg, #075f5a, #0b9389);
  color: #fff;
  box-shadow: 0 8px 22px rgba(8, 127, 121, 0.18);
}
.main-nav .button-dark:hover {
  background: linear-gradient(135deg, #064e4a, #087f79);
  box-shadow: 0 12px 30px rgba(8, 127, 121, 0.26);
}
.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(8, 127, 121, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  color: #087f79;
  place-items: center;
}
.product-card:active {
  transform: translateY(-3px) scale(0.992);
}
/* Larger, modern Lucide treatment */
.icon {
  stroke-width: 2.15;
}
.button .icon {
  width: 21px;
  height: 21px;
  font-size: 21px;
}
.main-nav .button .icon {
  width: 19px;
  height: 19px;
}
.menu-toggle .icon {
  width: 25px;
  height: 25px;
}
.product-icon {
  width: 58px !important;
  height: 58px !important;
  border-radius: 17px !important;
}
.product-icon .icon {
  width: 29px !important;
  height: 29px !important;
  stroke-width: 2.2;
}
.media-badges .product-icon {
  box-shadow: 0 12px 30px rgba(10, 64, 57, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.85);
}
.modern-process .process-grid article > span {
  width: 72px;
  height: 72px;
  border-radius: 22px;
}
.modern-process .process-grid article > span .icon {
  width: 31px !important;
  height: 31px !important;
  stroke-width: 2.1;
}
.about-values article > .icon {
  width: 30px !important;
  height: 30px !important;
  padding: 7px;
  box-sizing: content-box;
  border-radius: 12px;
  background: #e1f3ee;
  color: #087f79;
}
.pill .icon {
  width: 18px;
  height: 18px;
}
.description li > span {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}
.description li > span .icon {
  width: 17px !important;
  height: 17px !important;
}
.detail-hero .button .icon,
.commerce-strip .button .icon {
  width: 20px;
  height: 20px;
}
.card-detail-link .icon {
  width: 19px;
  height: 19px;
}
.modal-close {
  width: 44px;
  height: 44px;
}
.modal-close .icon {
  width: 22px;
  height: 22px;
}
.expert-mark {
  width: 74px !important;
  height: 74px !important;
}
.expert-mark .icon {
  width: 34px !important;
  height: 34px !important;
}
@media (max-width: 900px) {
  .site-header,
  .site-header.is-scrolled {
    height: 70px;
    padding: 0 12px 0 18px;
  }
  .site-header .brand-logo img {
    width: 185px;
  }
  .main-nav.open {
    top: 78px;
    left: auto;
    right: 0;
    width: min(320px, calc(100vw - 32px));
    padding: 12px;
    border: 1px solid #d8e6e1;
    border-radius: 18px;
    background: rgba(249, 252, 250, 0.97);
    box-shadow: 0 20px 55px rgba(15, 55, 48, 0.16);
    backdrop-filter: blur(20px);
    flex-direction: column;
  }
  .main-nav.open a {
    display: block;
    width: 100%;
    text-align: center;
  }
  .main-nav.open .button {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .site-header,
  .site-header.is-scrolled {
    top: 8px;
    width: calc(100% - 16px);
    margin-top: 8px;
    border-radius: 18px;
  }
  .site-header .brand-logo img {
    width: 158px;
  }
  .menu-toggle {
    display: grid;
  }
  .product-icon {
    width: 52px !important;
    height: 52px !important;
  }
  .product-icon .icon {
    width: 26px !important;
    height: 26px !important;
  }
}


/* ===== nav-alignment.css ===== */

.site-header,
.site-header.is-scrolled {
  width: min(calc(100% - 48px), 1320px);
  height: 70px;
  padding: 0 10px 0 18px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 220px minmax(220px, 1fr) auto;
  align-items: center;
  column-gap: 28px;
}
.site-header .brand-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}
.site-header .brand-logo img {
  width: 188px;
  max-width: 100%;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}
.nav-trust {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 7px 15px 7px 8px;
  border: 1px solid rgba(8, 127, 121, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: #334a43;
}
.nav-trust > span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #dff3ed;
  color: #087f79;
}
.nav-trust .icon {
  width: 18px;
  height: 18px;
}
.nav-trust > div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-trust strong {
  font-size: 11px;
}
.nav-trust small {
  font-size: 8px;
  color: #7a8984;
  margin-top: 3px;
}
.main-nav {
  justify-self: end;
  min-height: 50px;
  align-items: center;
}
.main-nav > a {
  white-space: nowrap;
  padding: 9px 13px;
  font-size: 12px;
}
.main-nav .button-small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 12px;
}
.menu-toggle {
  justify-self: end;
}
@media (max-width: 1180px) {
  .site-header,
  .site-header.is-scrolled {
    grid-template-columns: 205px 1fr auto;
    column-gap: 18px;
  }
  .nav-trust {
    justify-self: start;
  }
  .nav-trust small {
    display: none;
  }
}
@media (max-width: 1020px) {
  .site-header,
  .site-header.is-scrolled {
    grid-template-columns: 1fr auto;
  }
  .nav-trust {
    display: none;
  }
  .main-nav {
    justify-self: end;
  }
}
@media (max-width: 900px) {
  .site-header,
  .site-header.is-scrolled {
    width: calc(100% - 28px);
    height: 68px;
    padding: 0 10px 0 16px;
    display: flex;
    justify-content: space-between;
  }
  .site-header .brand-logo img {
    width: 178px;
    height: 48px;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav.open a {
    font-size: 13px;
    padding: 11px 14px;
  }
}
@media (max-width: 600px) {
  .site-header,
  .site-header.is-scrolled {
    width: calc(100% - 16px);
    height: 64px;
  }
  .site-header .brand-logo img {
    width: 158px;
    height: 44px;
  }
}


/* ===== layout-density.css ===== */

:root {
  --app-gutter: clamp(20px, 3.2vw, 64px);
  --section-y: clamp(68px, 6vw, 104px);
}
.site-header,
.site-header.is-scrolled {
  top: 6px;
  width: calc(100% - 20px);
  max-width: none;
  height: 66px;
  margin: 6px auto 0;
  padding-left: var(--app-gutter);
  padding-right: 10px;
  border-radius: 18px;
  grid-template-columns: 220px minmax(200px, 1fr) auto;
  column-gap: 24px;
}
.site-header .brand-logo img {
  height: 48px;
  width: 184px;
}
.main-nav {
  min-height: 47px;
}
.main-nav > a {
  padding: 8px 12px;
}
.main-nav .button-small {
  min-height: 40px;
}
.hero {
  min-height: auto;
  padding: clamp(58px, 5vw, 88px) var(--app-gutter);
  gap: clamp(34px, 5vw, 90px);
}
.hero-copy {
  max-width: 850px;
}
.hero-copy > p {
  max-width: 680px;
}
.hero-photo {
  width: 100%;
  max-height: 590px;
}
.solutions,
.related {
  padding: var(--section-y) var(--app-gutter);
}
.section-heading {
  gap: clamp(32px, 5vw, 90px);
}
.section-heading > p {
  justify-self: end;
}
.category-scroller {
  padding-top: 42px;
  gap: clamp(14px, 1.8vw, 28px);
}
.products-heading {
  margin-top: 48px;
}
.product-grid {
  gap: clamp(14px, 1.5vw, 24px);
}
.product-card {
  min-height: 420px;
}
.product-media {
  height: 200px;
}
.product-content {
  padding: 23px 25px 25px;
}
.about-section {
  padding: var(--section-y) var(--app-gutter);
  gap: clamp(40px, 6vw, 100px);
}
.about-visual {
  height: clamp(480px, 42vw, 650px);
}
.process {
  padding: var(--section-y) var(--app-gutter);
}
.process-intro {
  gap: clamp(30px, 5vw, 80px);
}
.modern-process .process-grid {
  margin-top: 52px;
  gap: 16px;
}
.modern-process .process-grid article {
  min-height: 310px;
  padding: 28px;
}
.modern-cta {
  min-height: 340px;
  padding: var(--section-y) var(--app-gutter);
}
.footer {
  padding: 64px var(--app-gutter) 28px;
}
.detail-hero {
  padding: clamp(52px, 5vw, 80px) var(--app-gutter) clamp(70px, 6vw, 100px);
  gap: clamp(38px, 5vw, 90px);
}
.commerce-strip {
  margin-left: var(--app-gutter);
  margin-right: var(--app-gutter);
}
.detail-body,
.outcomes-section,
.service-journey,
.faq-section {
  padding: var(--section-y) var(--app-gutter);
}
@media (min-width: 1500px) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(520px, 0.95fr);
  }
  .category-scroller {
    justify-content: space-between;
  }
  .category-chip {
    min-width: 132px;
  }
  .modern-process .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 2100px) {
  :root {
    --app-gutter: 72px;
  }
  .product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (max-width: 1180px) {
  .site-header,
  .site-header.is-scrolled {
    grid-template-columns: 200px 1fr auto;
    padding-left: 20px;
  }
  .nav-trust {
    display: none;
  }
  .product-media {
    height: 190px;
  }
}
@media (max-width: 900px) {
  :root {
    --app-gutter: 22px;
    --section-y: 72px;
  }
  .site-header,
  .site-header.is-scrolled {
    top: 6px;
    width: calc(100% - 12px);
    margin-top: 6px;
    padding: 0 10px 0 16px;
  }
  .hero {
    padding-top: 48px;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-visual {
    height: 500px;
  }
}
@media (max-width: 600px) {
  :root {
    --app-gutter: 16px;
    --section-y: 58px;
  }
  .site-header,
  .site-header.is-scrolled {
    width: calc(100% - 8px);
    height: 62px;
    margin-top: 4px;
    top: 4px;
    border-radius: 15px;
  }
  .hero {
    padding-top: 38px;
    gap: 26px;
  }
  .solutions,
  .related,
  .about-section,
  .process,
  .detail-body,
  .outcomes-section,
  .service-journey,
  .faq-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    min-height: 400px;
  }
  .product-media {
    height: 190px;
  }
  .category-scroller {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .commerce-strip {
    margin-left: 16px;
    margin-right: 16px;
  }
  .about-visual {
    height: 400px;
  }
  .modern-process .process-grid {
    margin-top: 38px;
  }
  .footer {
    padding-top: 50px;
  }
}

/* Unified navbar + hero canvas */
body {
  background: #eff8f5;
}
.site-header,
.site-header.is-scrolled {
  background: rgba(246, 252, 249, 0.66);
  border-color: rgba(117, 173, 161, 0.26);
  box-shadow:
    0 10px 34px rgba(18, 74, 64, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}
.site-header.is-scrolled {
  background: rgba(246, 252, 249, 0.88);
}
.medical-hero {
  position: relative;
  isolation: isolate;
  margin-top: -72px;
  padding-top: clamp(138px, 10vw, 174px);
  padding-bottom: clamp(72px, 7vw, 118px);
  min-height: clamp(690px, 78vh, 860px);
  overflow: hidden;
  background:
    radial-gradient(
      circle at 78% 22%,
      rgba(187, 238, 230, 0.82),
      transparent 28%
    ),
    radial-gradient(
      circle at 14% 78%,
      rgba(217, 255, 100, 0.22),
      transparent 30%
    ),
    linear-gradient(128deg, #eff9f6 0%, #f8f8ef 52%, #e7f6f2 100%);
}
.medical-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(8, 127, 121, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 127, 121, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(
    to bottom,
    transparent 4%,
    #000 38%,
    transparent 92%
  );
}
.medical-hero:after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 560px;
  height: 560px;
  right: -210px;
  bottom: -280px;
  border-radius: 50%;
  border: 1px solid rgba(8, 127, 121, 0.12);
  box-shadow:
    0 0 0 70px rgba(8, 127, 121, 0.025),
    0 0 0 140px rgba(8, 127, 121, 0.018);
  animation: heroOrbit 18s linear infinite;
}
.medical-hero .hero-copy {
  position: relative;
  z-index: 2;
}
.medical-hero .pill {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(8, 127, 121, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(8, 127, 121, 0.07);
}
.medical-hero h1 {
  max-width: 850px;
  text-wrap: balance;
}
.medical-hero .hero-actions {
  margin-top: 38px;
}
.medical-hero .hero-photo {
  position: relative;
  z-index: 1;
  aspect-ratio: 1.22;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 36px;
  box-shadow:
    0 36px 90px rgba(22, 79, 68, 0.2),
    0 0 0 9px rgba(255, 255, 255, 0.34);
  transform-origin: center;
}
.medical-hero .hero-photo:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.22),
    transparent 40%,
    rgba(7, 95, 90, 0.08)
  );
}
.medical-hero .hero-photo > span {
  z-index: 2;
  border: 1px solid rgba(8, 127, 121, 0.11);
  backdrop-filter: blur(15px);
  animation: badgeDrift 5s ease-in-out infinite;
}
.medical-hero .hero-photo > span:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1fb48c;
  box-shadow: 0 0 0 5px rgba(31, 180, 140, 0.13);
  position: absolute;
  right: 15px;
  top: 15px;
}
.medical-hero .button-primary {
  background: linear-gradient(135deg, #d9ff64, #bfee4a);
  box-shadow: 0 13px 32px rgba(126, 164, 32, 0.2);
}
.medical-hero .text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 4px;
  color: #24413a;
}
.medical-hero .text-link:hover {
  color: #087f79;
  transform: translateX(3px);
}
@keyframes heroOrbit {
  to {
    transform: rotate(360deg);
  }
}
@keyframes badgeDrift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}
@media (max-width: 900px) {
  .medical-hero {
    margin-top: -76px;
    padding-top: 140px;
    min-height: auto;
  }
  .medical-hero .hero-photo {
    max-height: none;
    aspect-ratio: 1.45;
  }
}
@media (max-width: 600px) {
  .medical-hero {
    margin-top: -66px;
    padding-top: 116px;
    padding-bottom: 60px;
  }
  .medical-hero:before {
    background-size: 38px 38px;
  }
  .medical-hero .hero-photo {
    aspect-ratio: 1;
    border-radius: 24px;
    box-shadow:
      0 24px 60px rgba(22, 79, 68, 0.17),
      0 0 0 5px rgba(255, 255, 255, 0.32);
  }
  .medical-hero .hero-photo > span {
    left: 14px;
    bottom: 14px;
  }
  .medical-hero .hero-actions {
    margin-top: 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .medical-hero:after,
  .medical-hero .hero-photo > span {
    animation: none;
  }
}

