/* MeticTouch — pixel-close recreation of provided layout */

:root {
  --blue: #3ba1e0;
  --teal: #00a99d;
  --teal-deep: #00958a;
  --teal-light: #32b8ad;
  --teal-soft: #e6f6f5;
  --bg-soft: #f7f8f9;
  --ink: #1c1c1c;
  --ink-body: #666666;
  --ink-muted: #888888;
  --line: #d0d0d0;
  --disclaimer: #f2f2f2;
  --white: #ffffff;
  --footer: #7cb9b4;
  --footer-deep: #567473;
  --max: 1200px;
  --pad-x: 40px;
  --inner-max: 1200px;
  --inner-pad-x: 36px;
  --indent-left: 50px;
  --indent-right: 50px;
  --section-y: 52px; /* 52px base */
  --ease: cubic-bezier(0.73, .17, .37, .95);
  --fs-root: 16px;
  --fs-h1: 42px;
  --fs-h2: 28px;
  --fs-timeline-year: 20px;
  --fs-h3: 15px;
  --fs-p: 13px;
  --split-row-title-width: 340px;
  --inner-split-row-title-width: 280px;
}

:focus{outline: none !important;}
@view-transition{
    navigation: auto;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--fs-root);
  scroll-behavior: smooth;
  scroll-padding-top: 61px;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-weight: 400;
  font-size: var(--fs-p);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

p {
  font-size: var(--fs-p);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

/* Outer grid: max 1200, 40px side padding */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* Inner grid: max 992, 36px side padding */
.inner {
  width: 100%;
  max-width: var(--inner-max);
  margin-inline: auto;
  padding: 0 36px;
}

/* Problem / Comparison / Therapeutic: +50px from inner grid left */
.inner--indent {
  padding-left: calc(var(--inner-pad-x) + var(--indent-left));
  padding-right: 0px;
}
.inner--indent.extra--indent {
  padding-left: calc(var(--inner-pad-x) + var(--indent-left) + var(--pad-x));
}
.extra--indent{padding-left: var(--pad-x);}
.inner--indent--right {
  padding-right: calc(var(--inner-pad-x) + var(--indent-right));
}

.img-holder {
  object-fit: cover;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--disclaimer);
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); */
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 4em;
  max-width: unset;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 12px 10px;
  cursor: pointer;
  color: var(--ink);
  z-index: 80;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  border-radius: 1px;
  transform-origin: center;
  transition:
    transform 0.3s var(--ease),
    opacity 0.2s var(--ease),
    width 0.3s var(--ease);
}

.nav-container {
  width: calc(100% - 20px);
}
.nav-item .logo-container{
  display: none;
}

.logo-img{width: 164px; max-width: unset; transform: translateY(-2px);}

.nav-item{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav--secondary {
  gap: 0.75rem;
  align-items: center;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 38px;
  padding: 0.4rem 1rem 0.4rem 1.15rem;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  border: 1.5px solid var(--teal);
  border-radius: 0;
  transition:
    background-color 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    opacity 0.2s var(--ease);
}

.nav-cta__icon {
  display: block;
  flex-shrink: 0;
  width: 23px;
  height: 19px;
  transition: transform 0.25s var(--ease);
}

.nav-cta--outline {
  background: var(--white);
  color: var(--teal);
}

.nav-cta--outline .nav-cta__disc {
  fill: var(--teal);
}

.nav-cta--outline .nav-cta__arrow {
  stroke: var(--white);
}

.nav-cta--outline:hover,
.nav-cta--outline:focus-visible {
  background: var(--teal-soft);
  color: var(--teal-deep);
  border-color: var(--teal-deep);
}

.nav-cta--outline:hover .nav-cta__disc,
.nav-cta--outline:focus-visible .nav-cta__disc {
  fill: var(--teal-deep);
}

.nav-cta--solid {
  background: var(--teal-deep);
  color: var(--white);
  border-color: var(--teal-deep);
}

.nav-cta--solid .nav-cta__disc {
  fill: var(--white);
}

.nav-cta--solid .nav-cta__arrow {
  stroke: var(--teal);
}

.nav-cta--solid:hover,
.nav-cta--solid:focus-visible {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

/* .nav-cta:hover .nav-cta__icon,
.nav-cta:focus-visible .nav-cta__icon {
  transform: translateX(3px);
} */

.nav-cta:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.nav a {
  font-size: var(--fs-p);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
  transition: color 0.2s var(--ease);
}

.nav--primary a:hover,
.nav--primary a:focus-visible {
  color: var(--teal);
}

.nav--primary a:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
}

.nav.nav--secondary .nav-cta--outline {
  color: var(--teal);
}

.nav.nav--secondary .nav-cta--solid {
  color: var(--white);
}

.nav.nav--secondary .nav-cta--outline:hover,
.nav.nav--secondary .nav-cta--outline:focus-visible {
  color: var(--teal-deep);
}

.nav.nav--secondary .nav-cta--solid:hover,
.nav.nav--secondary .nav-cta--solid:focus-visible {
  color: var(--white);
}

body.is-nav-locked {
  overflow: hidden;
}

/* ——— Hero ——— */
.hero {
  padding: 0;
  width: 100%;
}

.hero-swiper {
  width: 100%;
  overflow: hidden;
}

.hero-swiper .swiper-slide {
  /* height: auto; */
  height: 350px;
}

/* Desktop = original overlay setup; mobile stacks copy under banner */
.hero-slide-overlay {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide-overlay__banner {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 1920px;
  height: auto;
}

.hero-slide-overlay__copy{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: var(--pad-x);
  width: var(--box-width);
  height: auto;
  z-index: 2;
  padding: 0 min(36px, 5vw);
}

.hero-slide-overlay__copy h1 {
  color: #000;
  font-size: 40px;
  line-height: 1.25;
}

.hero-banner {
  /*  width: 100%;
 aspect-ratio: 16 / 7;
  min-height: 280px;
  max-height: min(72vh, 640px); 
  background: #eef4f3; */
}

.hero-banner img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: auto;
}

.hero-swiper__arrow-next.swiper-button-prev{
  color: var(--teal);
  left: var(--pad-x);
}
.hero-swiper__arrow-prev.swiper-button-next{
  color: var(--teal);
  right: var(--pad-x);
}

.hero-swiper__pagination {
  bottom: 1.25rem !important;
}

.hero-swiper__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--ink-muted);
  opacity: 0.45;
  transition: opacity 0.2s var(--ease), background-color 0.2s var(--ease);
}

.hero-swiper__pagination .swiper-pagination-bullet-active {
  background: var(--teal);
  opacity: 1;
}

.hero-swiper .container .swiper-pagination{
  position: relative;
  left: 0;
  top: -1px;
  width: fit-content;
}

.hero-swiper .container .swiper-pagination .swiper-pagination-bullet{
  border-radius: 0;
  width: 20px;
  height: 3px;
  transition: width 0.35s var(--ease);
  margin: 0 3px;
}
.hero-swiper .container .swiper-pagination .swiper-pagination-bullet-active{
  width: 60px;
}

/* ——— Shared ——— */
.section {
  padding: var(--section-y) 0;
}

.section--soft {
  background: linear-gradient(45deg, #e0f2e6 0%, #f6f6f6 50%);
}

.eyebrow {
  display: block;
  font-size: var(--fs-p);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.9rem;
}

.section-title {
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-head {
  margin-bottom: clamp(1.8rem, 4vw, 2rem);
}

.section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.link-action {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 12px;
  font-weight: 600;
  
  color: var(--teal);
  transition: opacity 0.2s var(--ease);
  
  border: 1px solid var(--teal);
  padding: 6px 10px;
}

.link-action:hover,
.link-action:focus-visible {
  opacity: 0.75;
}

.link-action:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
}

/* ——— Split row: title left / content right ——— */
.split-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  /* gap: clamp(1rem, 3vw, 38px); */
  gap: 20px;
}

.split-row--problem{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
}

.split-row__title {
  flex: 0 0 clamp(200px, 32%, var(--split-row-title-width));
  max-width: var(--split-row-title-width);
}
/* .split-row--problem .split-row__title {
  flex: 0 0 40%;
  max-width: 40%;
} */
.inner--indent .split-row__title{
  flex: 0 0 var(--inner-split-row-title-width);
  max-width: var(--inner-split-row-title-width);
}

.split-row__content {
  flex: 1 1 0;
  min-width: 0;
  margin-top: 2em;
}

/* ——— Problem bullets ——— */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem 2rem;
}

.problem-item {
  position: relative;
  padding-left: 1.1rem;
  color: var(--ink-body);
  line-height: 1.6;
}

.problem-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}

/* ——— Solution cards ——— */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-swiper {
  overflow: visible;
}

.feature-swiper .swiper-wrapper.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.procedure-ux .feature-swiper .swiper-slide {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.feature-swiper .swiper-slide {
  width: auto;
  height: auto;
}

.feature-swiper .feature-card {
  height: 100%;
}

@media (min-width: 768px) {
  .feature-swiper .swiper-wrapper.feature-grid {
    transform: none !important;
  }

  .feature-swiper .swiper-slide {
    width: auto !important;
    margin: 0 !important;
  }
}

@media (max-width: 767px) {
  .feature-swiper {
    overflow: hidden;
    margin-inline: calc(var(--pad-x) * -1);
    padding-inline: var(--pad-x);
    padding-top: 2px;
    padding-bottom: 2px;
  }

  .feature-swiper .swiper-wrapper.feature-grid {
    display: flex;
    gap: 0;
  }

  .feature-swiper .swiper-slide {
    width: 100%;
    height: auto;
    box-sizing: border-box;
  }
}

.feature-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0 0 30px 0;
  padding: 1.85rem 1.6rem 1.9rem;
  border: 1px solid transparent;
}

.feature-icon {
  width: 94px;
  height: 94px;
  margin-bottom: 1.25rem;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
}

.feature-card h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.feature-card p {
  color: var(--ink-body);
  line-height: 1.7;
}

/* UX cards only: title left, icon right */
.procedure-ux .feature-card {
  border: 1px solid #f4f4f4;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(40, 80, 80, 0.1);
  padding: 20px 20px 30px;
}
.procedure-ux .feature-swiper .swiper-slide-active .feature-card, .procedure-ux .feature-swiper .swiper-slide:hover .feature-card {
  border: 1px solid #f4f4f4;
  background: var(--white);
}

.procedure-ux .feature-card__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.7rem;
}

.procedure-ux .feature-card__head h3 {
  margin: 0;
  text-align: left;
  flex: 1 1 auto;
  min-width: 0;
}

.procedure-ux .feature-card__head .feature-icon {
  width: auto;
  height: auto;
  margin: 0;
  flex: 0 0 auto;
}

.procedure-ux .feature-card__head .feature-icon img {
  display: block;
  width: 34px;
  height: 34px;
}

/* ——— Treatment Procedure ——— */
.procedure-intro {
  margin-bottom: 2.5em;
}

.procedure-intro__copy {
  display: flex;
  align-items: flex-end;
}

.procedure-intro__copy p {
  color: var(--ink-body);
  line-height: 1.7;
  margin: 0;
  max-width: 36rem;
}

.procedure-intro__copy strong {
  display: inline-block;
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 0.35rem;
}

.procedure-compare {
  margin-bottom: clamp(2rem, 6vw, 4rem);
}

.compare-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.75rem, 4vw, 3rem);
}

.compare-panel__col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.compare-panel__col:last-child {
  transform: translateY(6rem);
}

.compare-panel__col .compare-panel__visual{
  justify-content: flex-end;
}
.compare-panel__col:last-child .compare-panel__visual{
  justify-content: flex-start;
}

.compare-panel__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 9rem;
  margin-bottom: 1.35rem;
}

.compare-panel__visual img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.compare-panel__title {
  margin: 0 0 0.85rem;
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 1.35;
  color: var(--teal);
}

.compare-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.compare-panel__col .compare-panel__list{
  padding-right: var(--indent-left);
}
.compare-panel__col:last-child .compare-panel__title, .compare-panel__col:last-child .compare-panel__list{
  padding-left: var(--indent-right);
}

.compare-panel__list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: var(--fs-p);
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink-body);
}

.compare-panel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}


@media (max-width: 767px) {
  .compare-panel {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.procedure-ux {
  margin-top: 1rem;
}

.feature-card .proc-ux-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0.85rem 0 0;
  padding: 0;
}

.feature-card .proc-ux-list li {
  position: relative;
  padding-left: 2.2em;
  font-size: var(--fs-p);
  font-weight: 500;
  color: var(--ink-body);
  line-height: 1.55;
}

.feature-card .proc-ux-list li::before {
  content: "";
  position: absolute;
  left: 0.3em;
  top: 0.28em;
  width: 0.80rem;
  height: 0.80rem;
  background: var(--teal-deep);
  clip-path: polygon(
    18% 48%,
    0 62%,
    38% 100%,
    100% 14%,
    86% 0%,
    36% 74%
  );
}

.section--treatment {
  padding-top: 0;
}

/* ——— Accordion ——— */
.accordion {
  border-top: 1px solid var(--line);
}

.acc-item {
  border-bottom: 1px solid var(--line);
}

.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  text-align: left;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  transition: opacity 0.2s var(--ease);
}

.acc-trigger:hover,
.acc-trigger:focus-visible {
  opacity: 0.8;
}

.acc-trigger:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
}

.acc-icon {
  width: 18px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 0.25em;
}

.acc-icon::before,
.acc-icon::after {
  content: "";
  position: absolute;
  background: var(--teal);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.acc-icon::before {
  width: 14px;
  height: 2px;
}

.acc-icon::after {
  width: 2px;
  height: 14px;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.acc-item.is-open .acc-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}

.acc-item.is-open .acc-panel {
  grid-template-rows: 1fr;
}

.acc-panel-inner {
  overflow: hidden;
}

.acc-body {
  padding: 0.15rem 0 2.1rem;
}

.acc-intro {
  color: var(--ink-body);
  max-width: 52rem;
  margin-bottom: 1.85rem;
  line-height: 1.7;
}

/* ——— Disease showcase (list + circular image) ——— */
.disease-showcase {
  /* display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-top: 2.5em;
  margin-bottom: 1.25rem;
  touch-action: pan-y;
}

.disease-showcase__list {
  min-width: 0;
  width: 100%;
}

.disease-item {
  border-bottom: 1px solid var(--line);
  /* transition: border-bottom 0.35s var(--ease), opacity 0.25s var(--ease); */
  transition: border-bottom 0.35s var(--ease);
  /* opacity: 0.6; */
}

.disease-item__trigger {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.05rem 0;
  text-align: left;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 0.25s var(--ease);
  flex-direction: row-reverse;
}

/* .disease-item.is-active .disease-item__trigger {
  color: #333333;
}

.disease-item__trigger:hover,
.disease-item__trigger:focus-visible {
  color: #333333;
} */

.disease-item__trigger:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
}

.disease-item__title {
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 600;
}

.disease-item__chev {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 0.2rem;
  display: grid;
  place-items: center;
}

.disease-item__chev svg {
  width: 10px;
  height: 10px;
  display: block;
  transition: transform 0.25s var(--ease);
  transform: rotate(0deg);
}

.disease-item.is-active .disease-item__chev svg {
  transform: rotate(90deg);
}

.disease-item.is-active {
  /* border-bottom: 1px solid var(--line); */
  opacity: 1;
}

.disease-item__panel {
  display: grid;
  padding-left: 1.85rem;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}

.disease-item.is-active .disease-item__panel {
  grid-template-rows: 1fr;
}

.disease-item__panel-inner {
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1.5rem;
}
.disease-item__panel-inner-content {
  padding: 0 1.5rem 2rem 0;
  max-width: calc(100% - (300px + 1.5rem));
}

.disease-item__panel p {
  color: #666666;
  font-size: var(--fs-p);
  line-height: 1.65;
}

.disease-facts {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
}

.disease-fact {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.disease-fact__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--teal);
  margin-top: 0.05rem;
}

.disease-fact__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.disease-fact__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.disease-fact__label {
  font-size: var(--fs-p);
  font-weight: 700;
  line-height: 1.35;
}

.disease-fact__value {
  font-size: var(--fs-p);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
}

.disease-drugs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.2rem;
}

.disease-drug {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem 0.35rem 0.55rem;
  border: 1px solid #d7d7d7;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  background: #fff;
}

.disease-drug::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.disease-item__outro {
  margin-top: 1.15rem;
  color: var(--teal) !important;
  font-weight: 700;
  line-height: 1.55;
}

.disease-showcase__circle {
  position: relative;
  width: min(100%, 260px);
  min-height: 260px;
  margin-bottom: 2rem;
  height: fit-content;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 7px solid #e5f1ef;
  background: #eef4f3;
}

.disease-showcase__circle img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
}

.disease-showcase__circle img.is-active {
  opacity: 1;
}

/* ——— Project status ——— */
.status-intro {
  margin-bottom: 2em;
}

.status-intro .split-row__content {
  display: flex;
  align-items: flex-end;
}

.status-intro .split-row__content p {
  color: var(--ink-body);
  line-height: 1.7;
  margin: 0;
}

.timeline {
  --timeline-node: 20px;
  --timeline-spine-y: 3.5rem;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0 0 0.5rem;
  min-height: calc(var(--timeline-spine-y) + 7.5rem);
}

/* Continuous spine through milestone points */
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: var(--timeline-spine-y);
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--teal-deep) 0%,
    var(--teal-deep) 18%,
    var(--teal) 82%,
    var(--teal) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.timeline-item {
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: clamp(0.65rem, 1.8vw, 1.35rem);
  /* Reserve spine band so odd content sits below the line */
  padding-top: calc(var(--timeline-spine-y) + (var(--timeline-node) / 2) + 0.85rem);
}

.timeline-item:last-child {
  padding-right: 0;
}

.timeline-year {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #333333;
  text-align: left;
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.timeline-node {
  position: absolute;
  top: var(--timeline-spine-y);
  left: 0;
  display: block;
  width: var(--timeline-node);
  height: var(--timeline-node);
  border-radius: 50%;
  background: var(--teal-deep);
  border: 2px solid var(--teal-deep);
  box-sizing: border-box;
  flex-shrink: 0;
  transform: translateY(-50%);
  /* box-shadow: 0 0 0 4px rgba(230, 246, 245, 0.95); */
  z-index: 2;
}

.timeline-node::before {
  content: "";
  position: absolute;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%) scale(0.66);
  background: url('images/the_tick.svg') no-repeat center center;
  background-size: 20px 20px;
}

.timeline-item--highlight .timeline-node {
  background: var(--teal);
  border-color: var(--teal);
  width: 34px;
  height: 34px;
}
.timeline-item--highlight .timeline-node::before {
  transform: translate(-50%, -50%) scale(1);
  background-size: 20px 20px;
}

.timeline-item--highlight .timeline-year {
  color: var(--teal);
}

.timeline-content {
  min-width: 0;
  padding-right: 0.25rem;
}

/* Odd: year above the point, events below */
.timeline-item .timeline-year {
  position: absolute;
  left: 0;
  right: clamp(0.65rem, 1.8vw, 1.35rem);
  bottom: calc(100% - var(--timeline-spine-y) + (var(--timeline-node) / 2) + 1rem);
  margin: 0;
  font-size: var(--fs-h3);
}

.timeline-item .timeline-content {
  margin-top: 5px;
}

/* Even: whole cluster (year → events) sits above the point */
/* .timeline-item:nth-child(even) {
  padding-top: 0;
  height: var(--timeline-spine-y);
  box-sizing: border-box;
  justify-content: flex-end;
  gap: 0.4rem;
  padding-bottom: calc((var(--timeline-node) / 2) + 0.55rem);
} 

.timeline-item:nth-child(even) .timeline-year {
  position: static;
  margin: 0;
  order: 1;
}

.timeline-item:nth-child(even) .timeline-content {
  position: static;
  margin: 0;
  order: 2;
}*/

.timeline-title {
  display: block;
  font-size: var(--fs-p);
  font-weight: 700;
  color: #333333;
  line-height: 1.35;
  margin: 0 0 0.25rem;
}

.timeline-item--highlight .timeline-title {
  color: var(--teal);
}

.timeline-content p {
  margin: 0;
  font-size: var(--fs-p);
  font-weight: 400;
  color: #666666;
  line-height: 1.55;
}

.timeline-item--highlight .timeline-content p {
  color: #444444;
  font-weight: 500;
}

/* ——— CTA ——— */
.cta {
  padding: 0;
  position: relative;
  border-top: 0px solid var(--line);
  overflow: hidden;
}

.cta-grid {
  gap: 2.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: clamp(2.25rem, 6vw, 3.25rem);
  padding-bottom: clamp(2.25rem, 6vw, 3.25rem);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

.cta-grid::before {
  content: "";
  position: absolute;
  pointer-events: none;
  background-image: url(images/cta_arrows.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 270px;
  height: auto;
  bottom: auto;
  right: 7rem;
  z-index: 0;
  aspect-ratio: 1 / 1;
}

.cta h2 {
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
  line-height: 1.25;
}

.cta p {
  color: var(--ink-body);
  max-width: 33rem;
  line-height: 1.75;
}

.cta-actions {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.25rem;
  padding: 0rem 0 1.75rem 2.5rem;
  min-height: 4rem;
  min-width: 14rem;
  overflow-x: hidden;
  justify-content: flex-start;
}

.cta-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: var(--fs-p);
  font-weight: 600;
  color: var(--teal);
  transition: opacity 0.2s var(--ease);
}

.cta-link svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}

.cta-link:hover,
.cta-link:focus-visible {
  opacity: 0.75;
}

.cta-link:hover svg,
.cta-link:focus-visible svg {
  transform: translateX(3px);
}

.cta-link:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
}

/* ——— Partnership page ——— */
.page-hero {
  padding: clamp(2rem, 7vw, 5rem) 0 clamp(2.75rem, 5.5vw, 4rem);
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(220px, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  position: relative;
}

.page-hero__copy {
  max-width: 34rem;
  position: relative;
  z-index: 1;
}

.page-hero__copy h1 {
  font-size: var(--fs-h1);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.15rem;
}

.page-hero__copy p {
  color: var(--ink-body);
  line-height: 1.75;
  max-width: 30rem;
}

.page-hero__visual {
  position: relative;
  z-index: 1;
  min-height: 180px;
}

.page-hero__img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  aspect-ratio: 20 / 11;
  object-fit: cover;
  border-bottom-right-radius: 30px;
  display: block;
  background: #c5d4dc;
}

.page-hero__visual:before {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
  left: -30px;
  bottom: -40%;
  width: 270px;
  aspect-ratio: 1 / 1;
  background-image: url(images/cta_arrows.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.section-head--center {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}

.work-swiper {
  overflow: visible;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 0.25rem;
}

.work-swiper .swiper-wrapper.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.work-swiper .swiper-slide {
  width: auto;
  height: auto;
  display: flex;
}

.work-col {
  display: flex;
  flex-direction: column;
  padding: 0;
  height: 100%;
  width: 100%;
}

.work-col__card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0 0 30px 0;
  padding: 1.85rem 1.6rem 1.9rem;
  border: 1px solid transparent;

  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.work-col__icon {
  width: 94px;
  height: 94px;
  margin-bottom: 1.25rem;
}

.work-col__title {
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin: 0 0 0.5rem;
}

.work-col__card p {
  color: var(--ink-body);
  line-height: 1.7;
  margin: 0 0 1.25rem;
}

.work-points {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 0;
  padding: 0 0.25rem;
  flex-shrink: 0;
}

.work-points li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--ink-body);
  font-size: var(--fs-p);
  line-height: 1.55;
}

.work-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}

@media (min-width: 768px) {
  .work-swiper .swiper-wrapper.work-grid {
    transform: none !important;
    align-items: stretch;
  }

  .work-swiper .swiper-slide {
    width: auto !important;
    margin: 0 !important;
    height: auto !important;
    display: flex;
  }
}

@media (max-width: 767px) {
  .container:has(.work-swiper){
    padding-inline: 0;
  }

  .work-swiper {
    overflow: hidden;
    margin-inline: 0;
    padding-inline: var(--pad-x);
  }

  .work-swiper .swiper-wrapper.work-grid {
    display: flex;
    gap: 0;
  }

  .work-swiper .swiper-slide {
    width: 100%;
    height: auto;
    box-sizing: border-box;
  }
}


.data-pack{padding: calc(var(--section-y) * 2) 0;}
.datapack-intro {
  margin-top: 1rem;
  color: var(--ink-body);
  line-height: 1.75;
  max-width: 34rem;
  margin-inline: auto;
}

.datapack-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(1.75rem, 3.5vw, 2.35rem);
}

.datapack-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: var(--teal-deep);
  color: var(--white);
  padding: 1em 1.2em;
  transition:
    background-color 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.datapack-card:hover,
.datapack-card:focus-visible {
  background: var(--teal);
}

.datapack-card:focus-visible {
  outline: 2px solid var(--teal-deep);
  outline-offset: 3px;
}

.datapack-card__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.datapack-card__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
}

.datapack-card__icon {
  flex-shrink: 0;
  color: var(--white);
  display: inline-flex;
  line-height: 0;
}

.datapack-card p {
  font-size: 11px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  text-align: center;
  margin-top: auto;
  margin-bottom: auto;
}


.section--faq .split-row__content {
  margin-top: 0;
}

.section--faq .acc-trigger {
  font-size: 15px;
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(200px, 0.85fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.contact-grid__intro p {
  margin-top: 1.1rem;
  color: var(--ink-body);
  line-height: 1.75;
  max-width: 22rem;
}

.contact-form {
  background: var(--white);
  padding: clamp(1.5rem, 3vw, 2rem);
  overflow: hidden;
  border-bottom-right-radius: 30px;
  box-shadow: 0 8px 28px rgba(44, 44, 44, 0.08);
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem 1.75rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}

.field--full {
  grid-column: 1 / -1;
}

.field__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-muted);
}

.field input,
.field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 0.35rem 0 0.55rem;
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  resize: vertical;
  outline: none;
  transition: border-color 0.2s var(--ease);
}

.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--teal);
}

.field textarea {
  min-height: 5.5rem;
}

.field--select {
  position: relative;
  z-index: 2;
}

.field--select.is-open {
  z-index: 5;
}

.custom-select {
  position: relative;
}

.custom-select > select {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.custom-select__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 0.35rem 0 0.55rem;
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s var(--ease);
}

.custom-select__trigger:hover {
  border-bottom-color: #c5cece;
}

.custom-select.is-open .custom-select__trigger,
.custom-select__trigger:focus-visible {
  border-bottom-color: var(--teal);
  outline: none;
}

.custom-select__value.is-placeholder {
  color: var(--ink-muted);
}

.custom-select__chevron {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-right: 1.5px solid var(--ink-muted);
  border-bottom: 1.5px solid var(--ink-muted);
  transform: rotate(45deg) translateY(-2px);
  transition:
    transform 0.25s var(--ease),
    border-color 0.2s var(--ease);
}

.custom-select.is-open .custom-select__chevron {
  border-color: var(--teal);
  transform: rotate(225deg) translateY(-2px);
}

.custom-select__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 0.4rem 0;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(44, 44, 44, 0.1);
  max-height: 240px;
  overflow-y: auto;
  z-index: 10;
  animation: select-in 0.2s var(--ease);
}

.custom-select__menu[hidden] {
  display: none;
}

@keyframes select-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom-select__menu [role="option"] {
  padding: 0.7rem 0.95rem;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-body);
  cursor: pointer;
  transition:
    background-color 0.15s var(--ease),
    color 0.15s var(--ease);
}

.custom-select__menu [role="option"]:hover,
.custom-select__menu [role="option"].is-active {
  background: var(--teal-soft);
  color: var(--teal-deep);
}

.custom-select__menu [role="option"][aria-selected="true"] {
  color: var(--teal);
  background: var(--teal-soft);
  font-weight: 600;
}

.custom-select__menu [role="option"][aria-selected="true"]::after {
  content: "";
  float: right;
  width: 6px;
  height: 10px;
  margin-top: 2px;
  border-right: 1.5px solid var(--teal);
  border-bottom: 1.5px solid var(--teal);
  transform: rotate(45deg);
}

@media (prefers-reduced-motion: reduce) {
  .custom-select__menu {
    animation: none;
  }
}

.contact-form__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.75rem;
}

.contact-form__footer .cta-link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* .nav a[aria-current="page"] {
  color: var(--teal);
} */

/* ——— Footer ——— */
/* .site-footer {
  background: var(--footer);
  color: var(--white);
}
.site-footer .container{
  max-width: unset;
}

.footer-main {
  padding: clamp(3rem, 6vw, 3.75rem) 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  gap: 2.5rem 0;
}

.footer-logo img {
  height: auto;
  width: auto;
  max-width: 201px;
  display: block;
}

.footer-brand{width: 50%; display: flex; flex-direction: column; gap: 2.5rem;}
.footer-col-group-inner{display: flex; flex-direction: row; gap: 2.5rem; justify-content: space-between;}
.footer-col-group {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
  gap: 2.5rem;
}

.footer-brand-bottom {
  display: flex;
  align-items: flex-end;
  gap: 3rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-nav a {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--white);
  opacity: 0.95;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  text-decoration: underline;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.footer-col a,
.footer-col p {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white);
}

.footer-col a + a {
  margin-top: 0.1rem;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  text-decoration: underline;
}

.footer-col--address {
  justify-content: space-between;
  gap: 2.75rem;
}

.footer-certs {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.copyright {
  font-size: 11px;
  line-height: 1.5;
  text-align: right;
  width: 100%;
  margin: 0;
} */



@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .acc-panel,
  .disease-item__panel,
  .disease-showcase__circle img{
    transition: none;
  }

  .nav-container,
  .hamburger-line{
    transition: none;
  }
}

/* ——— Responsive ——— */
@media (max-width: 1080px) {
  :root {
    --pad-x: 24px;
    --inner-pad-x: 24px;
    --indent-left: 24px;
    --header-height: 60px;
  }
}

@media (max-width: 960px) {

  .hero-swiper .swiper-slide {
    height: 288px;
  }
  /* .hero-slide-overlay__banner {
    width: 1440px;
  } */
  .hero-slide-overlay__copy h1{font-size: var(--tablet-h1);}

  .split-row {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .datapack-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .split-row__title {
    flex: 0 0 auto !important;
    max-width: unset !important;
    width: 100%;
    padding-bottom: calc(var(--section-y) / 3);
  }
  .split-row__content{margin-top: 0;}

  .disease-showcase {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .page-hero__copy p {
    padding-right: 0;
  }


  .page-hero__img {
    margin-left: 0;
  }

  .page-hero__visual{width: fit-content;}
  .page-hero__visual:before {
    width: min(220px, 55%);
  }

  .cta-grid::before{right: 3rem;}
}

@media (max-width: 768px) {
  :root {
    --fs-h1: 34px;
    --pad-x: 30px;
    --inner-pad-x: 0px;
    --indent-left: 0px;
    --section-y: 30px;
  }

  /************************/
  .site-header {
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .site-header .container {
    height: var(--header-height);
    padding: 0;
  }

  .logo-container{background-color: var(--white);
    z-index: 80;
    width: 100vw;
    height: var(--header-height);
    padding: 20px var(--pad-x);
  }

  .hamburger {
    display: flex;
    position: fixed;
    top: 8px;
    right: 20px;
    z-index: 85;
  }

  .hero{padding-top: 0;}

  .nav-item .logo-container{
    display: block;
  }

  .hamburger.is-open .hamburger-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .hamburger.is-open .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .hamburger.is-open .hamburger-line:nth-child(3) {
    width: 100%;
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    height: 100svh;
    /* overflow:hidden isolates backdrop-filter — clip the panel instead */
    overflow: visible;
    z-index: 81;
    pointer-events: none;
  }
  .nav-container.is-open{pointer-events: auto;}

  #nav-container::before {
    content: "";
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    height: 100svh;
    background: rgba(30, 32, 45, 0.06);
    border: none;
    box-shadow: none;
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 70;
    transition:
      opacity 0.35s var(--ease),
      visibility 0.35s var(--ease);
  }
  #nav-container.is-open::before {
    opacity: 1;
    visibility: visible;
  }
  .nav-container .logo-container{
    padding: 0;
  }

  .nav-container .nav-item{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    height: 100svh;
    overflow: hidden;
    background-color: var(--white);
    transition: transform 0.35s var(--ease);
    transform: translateX(120%);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 20px calc(var(--pad-x) * 2);
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 100;
  }

  .nav-container.is-open .nav-item {
    transform: translateX(60px);
    padding-left: 30px;
  }

  .nav-container .nav {
    flex-direction: column;
    gap: 1.25rem;
  }

  .nav a{font-size: var(--fs-h3);}

  .nav-container .nav--secondary {
    width: 100%;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .nav-container .nav-cta {
    width: calc(100% - 30px);
    justify-content: space-between;
  }

  .logo-img{width: 130px;}

  /************************/

  .hero-swiper .swiper-slide {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
  }
  .hero-slide-overlay__banner {
    width: 100%;
    position: relative;
    order: 1;
  }
  .hero-slide-overlay{
    height: auto;
    padding: 20px var(--pad-x) !important;
    order: 2;
    margin-bottom: auto;
    margin-top: auto;
  }
  .hero-slide-overlay__copy{position: relative; top: auto; transform: none; padding: 0; left: 0;}
  .hero-slide-overlay__copy h1{font-size: var(--mobile-h1);}

  .inner{padding: 0px;}
  .inner--indent {
      padding-left: var(--inner-pad-x);
  }
  .inner--indent--right {
      padding-right: 0;
  }
  .extra--indent{padding-left: 0;}

  .compare-panel__col .compare-panel__visual, .compare-panel__col:last-child .compare-panel__visual{
    justify-content: center;
  }
  .compare-panel__col .compare-panel__list, .compare-panel__col:last-child .compare-panel__title, .compare-panel__col:last-child .compare-panel__list{
    padding-left: 0;
    padding-right: 0;
  }

  .cta-grid{
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .cta-grid{gap: 1.5rem;}

  .container{padding: 0 var(--pad-x);}

  .section--faq {padding-top: 2em;}

  .split-row{gap: 1rem;}
  
  .page-hero__visual {
    min-height: 0;
  }

  .page-hero__img {
    width: 80%;
    margin-right: 0;
    margin-left: auto;
  }
  .page-hero__visual:before {
    left: auto;
    bottom: -60%;
    width: min(220px, 55%);
  }

  .cta-grid::before{right: auto; bottom: -66%;}
  .cta-actions {
    padding-left: 0;
    align-self: flex-end;
    padding: 0;
    min-height: 6rem;
    margin-bottom: 1em;
  }

  /* .footer-grid{flex-direction: column;}
  .footer-grid{gap: 2rem;}
  .footer-col-group-inner{gap: 1rem;}
  .footer-brand {
    gap: 2rem; 
    width: 100%;
  }
  .footer-brand-bottom {
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
    justify-content: space-between;
  }
  .footer-col--address {
    gap: 1.75rem;
  }
  .footer-col{width: 50%;}
  .footer-col-group{
    width: 100%;
  } */

  .feature-card p, .work-col__card p{line-height: 1.5em;}

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .disease-item__trigger{gap: .8em;}
  .disease-item__panel{padding-left: 1em;}

  .disease-showcase {
    margin-top: 1.5rem;
  }

  .disease-showcase__list {
    order: 2;
  }

  .disease-showcase__circle {
    width: min(100%, 200px);
    min-height: 200px;
    margin: auto;
  }
  .disease-item__panel-inner-content{
    max-width: 100%;
  }

  .disease-item__panel-inner{
    flex-direction: column-reverse;
  }

  .acc-body {
    padding: 0.15rem 0 1.5rem;
  }
  .acc-intro{margin-bottom: 1rem;}

  .compare-panel__col:last-child{transform: translateY(0);}

  .timeline {
    flex-direction: column;
    gap: 0;
    max-width: 28rem;
    padding-bottom: 0.5rem;
    min-height: 0;
  }

  .timeline::before {
    left: 5px;
    right: auto;
    top: 0.4rem;
    bottom: 0.4rem;
    width: 1.5px;
    height: auto;
    background: linear-gradient(
      180deg,
      rgba(0, 169, 157, 0.25),
      var(--teal) 30%,
      var(--teal)
    );
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    padding: 0 0 1.35rem 2rem;
    height: auto;
    justify-content: flex-start;
    gap: 0;
  }

  .timeline-item:last-child {
    padding-bottom: 0;
  }

  .timeline-year,
  .timeline-item:nth-child(odd) .timeline-year,
  .timeline-item:nth-child(even) .timeline-year {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0 0 0.35rem;
    order: 0;
  }

  .timeline-node {
    position: absolute;
    left: -5px;
    top: 0.35rem;
    margin-bottom: 0;
    transform: none;
  }

  .timeline-item--highlight .timeline-node{
    left: -10px;
  }

  .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    position: static;
    margin-top: 0 !important;
    order: 0;
  }

  .page-hero__grid {
    grid-template-columns: 1fr;
  }

  .cta{padding-top: 2em;}
}

/* ——— Motion ——— */
@media (prefers-reduced-motion: no-preference) {
  .feature-card {
    transition: border 0.3s var(--ease), background 0.3s var(--ease);
  }

  .feature-card:hover {
    border: 1px solid var(--teal);
    background: var(--white);
  }
}
@media (max-width: 768px) {
  .feature-card:hover {
    transform: none;
  }
  .swiper-slide-active .feature-card{
    border: 1px solid var(--teal);
    background: var(--white);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .work-col__card {
    transition: border 0.3s var(--ease), background 0.3s var(--ease);
  }

  .work-col__card:hover {
    border: 1px solid var(--teal);
    background: var(--white);
  }
}
@media (max-width: 768px) {
  .work-col__card:hover {
    transform: none;
  }
  .swiper-slide-active .work-col__card{
    border: 1px solid var(--teal);
    background: var(--white);
  }
}

/* 
   Breakpoints match this site:
   md =769px | lg =961px | xl =1081px
   Usage: d-none d-md-block  — hidden on mobile, block from md up
          d-block d-md-none  — visible on mobile, hidden from md up
*/
.d-none {
  display: none !important;
}
.d-block {
  display: block !important;
}

@media (min-width: 769px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
}



/***************************** Footer *****************************/
.container-fluid {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.text-start {
  text-align: left !important;
}

.d-block {
  display: block !important;
}

.align-items-center {
  align-items: center !important;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: .25rem !important;
}

.mb-2 {
  margin-bottom: .5rem !important;
}

@media (min-width: 768px) {
  .d-md-none {
      display: none !important;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
      flex: 0 0 auto;
      width: 25%;
  }

  .col-lg-6 {
      flex: 0 0 auto;
      width: 50%;
  }

  .col-lg-auto {
      flex: 0 0 auto;
      width: auto;
  }

  .px-lg-5 {
      padding-right: 3rem !important;
      padding-left: 3rem !important;
  }

  .text-lg-end {
      text-align: right !important;
  }

  .mt-lg-0 {
      margin-top: 0 !important;
  }

  .justify-content-lg-between {
      justify-content: space-between !important;
  }
}

footer {
  background: var(--footer);
  color: var(--white);
  font-size: 14px;
  line-height: 1.5;
  width: 100%;
  padding: 40px 0;
  z-index: 4;
  position: relative;
}
footer h5,
footer p,
footer a {
  font-size: 14px;
  line-height: 1.5;
  color: var(--oph-white);
  margin-bottom: .55rem;
}
footer h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
footer .footer-link {
  color: var(--oph-white);
  text-decoration: none;
}
.footer-logo {
  height: auto;
  width: auto;
  max-width: 160px;
  display: block;
}
@media (max-width: 991px) {
  footer h5,
  footer p,
  footer a {
      font-size: 13px;
  }
}
