:root {
  --navy: #1f1a4d;
  --teal: #51a8b1;
  --mint: #ebf3ee;
  --gold: #c6b28c;
  --brown: #b38236;
  --white: #ffffff;
  --container: 1344px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: "Barlow", Arial, sans-serif;
  font-size: 20.8px;
  line-height: 1.826;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 22px 25px;
  border-radius: 40px;
  border: 1px solid transparent;
  font-family: "Montserrat", sans-serif;
  font-size: 16.3px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}

.btn-white:hover,
.btn-white:focus-visible {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.hero-btn {
  min-height: 62px;
  padding: 25px;
  border-color: var(--navy);
  background: transparent;
  color: var(--navy);
  text-transform: none;
}

.btn-outline {
  border-color: var(--navy);
  color: var(--navy);
}

.hero-btn:hover,
.hero-btn:focus-visible,
.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.78);
  color: var(--white);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

.btn-dark {
  background: var(--navy);
  border-color: var(--gold);
  color: var(--white);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  border-color: var(--navy);
  background: var(--white);
  color: var(--navy);
}

.btn.compact {
  min-height: 62px;
  padding-inline: 25px;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 125px;
  padding: 30px 60px 31px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.logo {
  display: block;
  width: 178px;
  height: 49px;
  flex: 0 0 178px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-nav a {
  padding: 21px 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 18.4px;
  font-weight: 500;
  line-height: 1.2;
  transition:
    color 180ms ease,
    font-weight 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--gold);
  font-weight: 700;
}

.header-actions {
  display: flex;
  gap: 31px;
}

.header-btn {
  min-width: 170px;
  padding: 25px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 30px;
}

.hero {
  position: relative;
  height: 892px;
  overflow: hidden;
  background: var(--teal);
}

.hero-image {
  position: absolute;
  top: -6px;
  left: 50%;
  width: 2146px;
  height: 904px;
  max-width: none;
  transform: translateX(-50%);
  object-fit: cover;
}

.hero-ellipse {
  position: absolute;
  top: -65px;
  left: calc(50% - 488px);
  width: 1405px;
  height: 1405px;
  max-width: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(183.25deg, rgba(0, 0, 0, 0.4) 6.07%, rgba(102, 102, 102, 0) 93.64%);
}

.hero-content {
  position: relative;
  height: 100%;
  padding-top: 225px;
}

.hero-copy {
  width: 672px;
  margin-left: auto;
  padding-inline: 12px;
}

.hero-title-shape {
  position: relative;
  width: 568px;
  height: 296px;
  margin: 11px 0 0 3px;
}

.hero-title-shape > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero h1 {
  position: absolute;
  top: 11px;
  left: 28px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 74px;
  font-weight: 700;
  line-height: 86.96px;
  color: var(--navy);
  white-space: nowrap;
}

.hero-copy p {
  margin: 68px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 23.8px;
  font-weight: 700;
  line-height: 42px;
}

.hero-copy .btn {
  display: flex;
  width: fit-content;
  margin-top: 41px;
}

.audience-strip {
  background: var(--mint);
  padding: 80px 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: 639px 639px;
  gap: 66px;
  align-items: center;
}

.audience-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 639px;
  height: 375px;
  padding: 48px 50px;
  border: 1px solid var(--navy);
  border-radius: 30px;
  background: var(--white);
}

.audience-card h2,
.audience-card p {
  margin: 0;
}

.audience-card h2,
.mini-feature h3,
.service-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 35px;
}

.audience-card p {
  max-width: 539px;
  margin-top: 26px;
}

.audience-card:nth-child(2) p {
  max-width: 375px;
}

.audience-card .btn {
  margin-top: 38px;
  padding: 25px;
  border-color: var(--navy);
  text-transform: none;
}

.audience-card:first-child .btn {
  min-width: 258px;
}

.audience-card:nth-child(2) .btn {
  min-width: 197px;
}

.result-band {
  display: grid;
  grid-template-columns: 808px calc(100% - 808px);
  height: 183px;
}

.result-title {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 56px 10px 10px;
  background: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  line-height: 74.8px;
  text-align: right;
}

.result-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 60px 10px 56px;
  background: #52a8b1;
}

.result-cta strong {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 35px;
  white-space: nowrap;
}

.result-btn {
  padding: 25px;
  border-color: transparent;
}

.result-btn:hover,
.result-btn:focus-visible {
  border-color: transparent;
}

.result-btn.doctor {
  width: 163px;
}

.result-btn.patient {
  width: 178px;
}

.services {
  position: relative;
  min-height: 1629px;
  padding: 75px 0 170px;
  background: linear-gradient(var(--mint) 0 83%, var(--white) 83% 100%);
}

.services::before {
  content: "";
  position: absolute;
  top: 231px;
  left: 50%;
  width: 100vw;
  border-top: 1px dashed var(--navy);
  transform: translateX(-50%);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 35px;
}

.mini-feature {
  display: flex;
  gap: 24px;
  min-height: 121px;
}

.mini-feature span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border-radius: 50%;
  background: var(--white);
}

.mini-feature img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.mini-feature:nth-child(2) img {
  width: 38px;
  height: 25px;
}

.mini-feature h3,
.mini-feature p {
  margin: 0;
}

.mini-feature p {
  max-width: 282px;
}

.mini-feature:nth-child(2) p {
  max-width: 183px;
}

.mini-feature:nth-child(3) p {
  max-width: 270px;
}

.service-heading {
  display: grid;
  grid-template-columns: 660px 493px;
  justify-content: space-between;
  padding-top: 110px;
  align-items: start;
}

.service-heading h2,
.split-copy h2,
.analysis h2,
.faq-layout h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 57.9px;
  font-weight: 700;
  line-height: 70.4px;
}

.service-heading p {
  margin: 0 0 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 35px;
}

.service-more {
  width: 145px;
  height: 62px;
  min-width: 145px;
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--navy);
  text-transform: none;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 24px;
  margin-top: 30px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 459px;
  padding: 80px 41px 49px;
  border: 1px solid var(--gold);
  border-radius: 30px;
  background: var(--white);
}

.service-card:nth-child(2) {
  min-height: 457px;
}

.service-card:nth-child(3) {
  min-height: 455px;
}

.service-card:nth-child(4) {
  min-height: 500px;
}

.service-card:nth-child(5),
.service-card:nth-child(6) {
  min-height: 497px;
}

.service-card h3,
.service-card p {
  margin: 0;
}

.service-card p {
  margin-top: 35px;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  margin-top: auto;
  padding: 25px;
  border: 1px solid var(--navy);
  border-radius: 40px;
  font-family: "Montserrat", sans-serif;
  font-size: 16.3px;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.service-card a:hover,
.service-card a:focus-visible {
  background: var(--navy);
  color: var(--white);
}

.practice {
  height: 750px;
  padding: 75px 0;
  background: var(--white);
}

.cause {
  height: 750px;
  padding: 75px 0;
  background: var(--white);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.practice .split {
  align-items: start;
  gap: 0;
}

.split.reverse {
  grid-template-columns: 682px 1fr;
  gap: 0;
  align-items: start;
}

.split-copy {
  max-width: 502px;
  padding-left: 12px;
}

.split-copy.wide {
  max-width: 638px;
  padding-left: 12px;
}

.split-copy p {
  margin: 35px 0 0;
}

.split-copy p + p {
  margin-top: 37.99px;
}

.split-copy .btn {
  margin-top: 35px;
}

.practice-btn {
  margin-top: 35px;
  min-width: 219px;
  background: var(--navy);
  color: var(--white);
}

.practice-btn:hover,
.practice-btn:focus-visible {
  border-color: var(--navy);
  background: var(--gold);
  color: var(--navy);
}

.image-badge-card {
  position: relative;
  width: 590px;
  height: 600px;
  margin-left: auto;
  overflow: hidden;
  border-radius: 30px;
}

.image-badge-card > img {
  position: absolute;
  top: 0;
  left: -42.96%;
  width: 152.46%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.image-badge-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background: linear-gradient(rgba(0, 0, 0, 0), #000);
  mix-blend-mode: overlay;
}

.badges {
  position: absolute;
  z-index: 2;
  left: 48px;
  bottom: 35px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 380px;
}

.badges span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 6px 20px 6px 50px;
  border-radius: 45px;
  background: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 17.8px;
  font-weight: 500;
  line-height: 30px;
}

.badges span::before {
  content: "";
  position: absolute;
  left: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brown);
}

.badges span::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 11px;
  width: 20px;
  height: 20px;
  background: url("./assets/check.svg") center / 20px 20px no-repeat;
  transform: scaleY(-1);
}

.cause-image {
  position: relative;
  width: 590px;
  height: 600px;
  overflow: hidden;
  border-radius: 30px;
  margin-left: 12px;
}

.cause-image img {
  position: absolute;
  top: 0;
  left: -26.16%;
  width: 152.46%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.analysis {
  position: relative;
  padding: 75px 0 113px;
  overflow: hidden;
}

.analysis-bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 710px;
  background:
    linear-gradient(rgba(198, 178, 140, 0.62), rgba(198, 178, 140, 0.62)),
    url("./assets/analysis-bg.png") center / cover no-repeat;
}

.analysis .container {
  position: relative;
}

.analysis h2 {
  padding-left: 30px;
  margin-bottom: 30px;
}

.analysis-grid {
  display: grid;
  grid-template-columns: 864px 408px;
  gap: 48px;
}

.analysis-left,
.analysis-right {
  display: grid;
  gap: 44px;
}

.analysis-right {
  gap: 47px;
}

.analysis img {
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.analysis-left img:first-child {
  height: 470px;
}

.analysis-left img:last-child {
  height: 298px;
  object-position: center 27%;
}

.analysis-right img:first-child {
  height: 318px;
}

.analysis-right img:last-child {
  height: 447px;
}

.about-copy {
  padding: 100px 0;
  background: var(--white);
}

.about-copy h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 55px;
}

.about-copy p {
  margin: 23px 0 0;
}

.faq-section {
  padding: 100px 0;
  background: var(--white);
}

.faq-section.doctors {
  background: var(--mint);
}

.faq-layout {
  display: grid;
  grid-template-columns: 373px minmax(0, 814px);
  gap: 123px;
  align-items: start;
}

.doctors .faq-layout h2 {
  color: var(--navy);
  font-size: 56.1px;
}

.faq-layout h2 span {
  font-weight: 400;
  font-size: 32px;
}

.faq-list {
  width: 100%;
}

.faq-entry {
  background: var(--white);
}

.faq-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 99px;
  padding: 30px 28px;
  border: 0;
  border-top: 1px solid var(--gold);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  text-align: left;
}

.doctors .faq-item {
  background: var(--mint);
  color: var(--navy);
}

.doctors .faq-entry,
.doctors .faq-answer {
  background: var(--mint);
  color: var(--navy);
}

.faq-entry:last-child .faq-item {
  border-bottom: 1px solid var(--gold);
}

.faq-item span {
  max-width: 700px;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 38.75px;
}

.faq-item b {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-item.active b {
  transform: rotate(180deg);
}

.faq-item.active b {
  line-height: 0;
}

.faq-item.active b::before {
  content: "-";
  font-size: 32px;
}

.faq-item.active b {
  font-size: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  border-bottom: 0 solid var(--gold);
  color: var(--navy);
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 30px;
  opacity: 0;
  transition:
    max-height 280ms ease,
    padding 280ms ease,
    border-bottom-width 280ms ease,
    opacity 180ms ease;
}

.faq-answer p {
  margin: 0;
}

.faq-answer p + p,
.faq-answer ul + p {
  margin-top: 30px;
}

.faq-answer ul {
  margin: 30px 0 0;
  padding-left: 25.5px;
}

.faq-answer li {
  margin: 0;
  padding: 0;
}

.faq-item.active + .faq-answer {
  max-height: 520px;
  padding-bottom: 30px;
  border-bottom-width: 1px;
  opacity: 1;
}

.faq-entry .faq-item.active {
  border-bottom: 0;
}

.support-cta {
  min-height: 439px;
  padding: 100px 24px;
  background: var(--gold);
  text-align: center;
}

.support-cta h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 74.8px;
}

.support-cta p {
  margin: 0 0 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 35px;
}

.support-btn {
  width: 336px;
  height: 62px;
  padding: 25px;
  border-color: var(--navy);
  background: var(--gold);
  color: var(--navy);
  text-transform: none;
}

.support-btn:hover,
.support-btn:focus-visible {
  background: var(--navy);
  color: var(--white);
}

.site-footer {
  padding: 100px 0;
  background: var(--navy);
  color: var(--white);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-top {
  width: 100%;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.socials a:hover,
.socials a:focus-visible {
  background: var(--gold);
  transform: translateY(-2px);
}

.socials img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  transform: scaleY(-1);
}

.footer-top nav {
  display: flex;
  gap: 60px;
  font-family: "Montserrat", sans-serif;
  font-size: 18.4px;
  font-weight: 500;
}

.footer-top nav a,
.footer-legal a,
.footer-credit {
  transition: color 180ms ease;
}

.footer-top nav a:hover,
.footer-top nav a:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible,
.footer-credit:hover,
.footer-credit:focus-visible {
  color: var(--gold);
}

.footer-bottom {
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 28px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 33px;
  max-width: 784px;
}

.footer-brand img {
  width: 242px;
  height: 67px;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 55px;
}

.footer-credit {
  align-self: flex-end;
  color: inherit;
  font-family: "Montserrat", sans-serif;
  font-size: 16.3px;
  font-weight: 500;
  line-height: 27px;
  padding-top: 0;
  text-decoration: none;
}

.about-page {
  background: var(--white);
}

.about-hero {
  position: relative;
  display: grid;
  place-items: center;
  height: 552px;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.about-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.about-hero h1 {
  position: relative;
  max-width: 1048px;
  margin: 72px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 74px;
  font-weight: 700;
  line-height: 86.96px;
}

.about-benefits {
  position: relative;
  padding: 50px 0;
  border-bottom: 1px dashed var(--navy);
}

.about-benefits-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.about-benefits-grid::before,
.about-benefits-grid::after {
  content: "";
  position: absolute;
  top: -50px;
  bottom: -50px;
  border-left: 1px dashed var(--navy);
}

.about-benefits-grid::before {
  left: calc(100% / 3);
}

.about-benefits-grid::after {
  left: calc(200% / 3);
}

.about-benefits article {
  min-height: 301px;
  padding-right: 90px;
}

.about-benefits article + article {
  padding-left: 90px;
}

.about-benefits img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  margin-bottom: 46px;
}

.about-benefits h2 {
  margin: 0 0 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 35px;
}

.about-benefits p,
.about-text-block p,
.work-process-intro p,
.process-cards p,
.precision-copy p,
.precision-copy li {
  margin: 0;
  font-size: 20.8px;
  line-height: 37.99px;
}

.about-text-block.first {
  padding-top: 50px;
}

.about-text-block {
  padding: 50px 0;
}

.about-text-block h2,
.precision-copy h2,
.team-section h2 {
  margin: 0 0 23px;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 74.8px;
}

.about-text-block p + p {
  margin-top: 37.99px;
}

.about-gallery-section {
  height: 660px;
  padding: 25px 0 100px;
}

.about-gallery {
  display: grid;
  grid-template-columns: 889px 426px;
  gap: 29px;
  height: 535px;
}

.about-gallery-main,
.about-gallery-side img,
.precision-image,
.team-grid img {
  overflow: hidden;
  border-radius: 30px;
}

.about-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.about-gallery-side {
  display: grid;
  gap: 22px;
}

.about-gallery-side img {
  width: 426px;
  height: 256.5px;
  object-fit: cover;
}

.work-process {
  height: 821px;
  padding: 100px 0;
  background: var(--mint);
}

.work-process-grid {
  display: grid;
  grid-template-columns: 378px 860px;
  justify-content: space-between;
  align-items: start;
}

.work-process-intro h2 {
  margin: 0 0 23px;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 50px;
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(2, 417px);
  gap: 26px;
}

.process-cards article {
  min-height: 286px;
  padding: 26px;
  border: 1px solid var(--navy);
  border-radius: 30px;
  background: var(--white);
}

.process-cards article:nth-child(4) {
  min-height: 300px;
}

.process-cards h3 {
  margin: 0 0 26px;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 35px;
}

.precision-section {
  padding: 100px 0;
}

.precision-grid {
  display: grid;
  grid-template-columns: 593px 1fr;
  gap: 80px;
  align-items: start;
}

.precision-image {
  height: 640px;
}

.precision-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
}

.precision-copy {
  padding-top: 28px;
}

.precision-copy h2 {
  max-width: 560px;
}

.precision-copy ul {
  display: grid;
  gap: 8px;
  width: 395px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.precision-copy li {
  position: relative;
  padding-left: 55px;
  white-space: nowrap;
}

.precision-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 34px;
  height: 29.5px;
  background: url("./assets/about-check.svg") center / contain no-repeat;
}

.team-section {
  padding: 50px 0 100px;
}

.team-section h2 {
  margin-bottom: 42px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 500px);
  gap: 42px 115px;
  justify-content: center;
}

.team-grid img {
  width: 500px;
  height: 358.8px;
  object-fit: cover;
}

.team-photo-button {
  position: relative;
  display: block;
  width: 500px;
  height: 358.8px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 30px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.team-photo-button img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  transition:
    filter 220ms ease,
    transform 220ms ease;
}

.team-photo-button::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: transparent;
  opacity: 0;
  transition: opacity 220ms ease;
}

.team-photo-button span {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 49.8px;
  height: 49.8px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 0;
  line-height: 1;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.team-photo-button span::before,
.team-photo-button span::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.team-photo-button span::before {
  width: 28px;
  height: 2px;
  transform: rotate(-45deg);
}

.team-photo-button span::after {
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  background: transparent;
  transform: translate(6px, -6px);
}

.team-photo-button:hover img,
.team-photo-button:focus-visible img {
  filter: blur(10px);
  transform: scale(1.03);
}

.team-photo-button:hover::after,
.team-photo-button:focus-visible::after,
.team-photo-button:hover span,
.team-photo-button:focus-visible span {
  opacity: 1;
}

.team-photo-button:hover span,
.team-photo-button:focus-visible span {
  transform: translate(-50%, -50%) scale(1);
}

.team-photo-button span:hover {
  background: var(--gold);
  color: var(--navy);
}

.team-grid article:nth-child(2) img {
  object-position: center 18%;
}

.team-grid h3 {
  margin: 16px 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 35px;
}

.team-grid p {
  width: 294px;
  margin: 0;
  font-size: 17px;
  line-height: 28px;
}

.team-grid article:nth-child(3) p {
  width: 500px;
}

.team-more-button {
  display: none;
}

.profile-modal[hidden] {
  display: none;
}

.profile-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 48px;
}

.profile-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.profile-modal-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 421px minmax(0, 1fr);
  gap: 70px;
  align-items: center;
  width: min(1344px, calc(100vw - 96px));
  min-height: 608px;
  padding: 70px;
  border-radius: 30px;
  background: #dddddd;
  color: var(--navy);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  animation: profile-modal-in 220ms ease both;
}

.profile-modal-card > img {
  width: 421px;
  height: 468px;
  border-radius: 30px 0 0 30px;
  object-fit: cover;
}

.profile-modal-back-button {
  display: none;
}

.profile-modal-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 468px;
  padding: 0;
  font-family: "Barlow", Arial, sans-serif;
}

.profile-modal-copy h2 {
  margin: 0 64px 12px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 35px;
}

.profile-modal-copy p {
  margin: 0;
  max-width: 100%;
  font-size: 17px;
  font-weight: 400;
  line-height: 28px;
}

.profile-modal-copy p + p {
  margin-top: 28px;
}

.profile-modal-role {
  margin-bottom: 59px !important;
  font-size: 20.8px !important;
  line-height: 37.99px !important;
}

.profile-modal-role + p {
  margin-top: 0;
}

.profile-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--navy);
  font-size: 0;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.profile-modal-close::before,
.profile-modal-close::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 1px;
  background: currentColor;
  transition: background-color 180ms ease;
}

.profile-modal-close::before {
  transform: rotate(45deg);
}

.profile-modal-close::after {
  transform: rotate(-45deg);
}

.profile-modal-close:hover,
.profile-modal-close:focus-visible {
  background: var(--gold);
}

body.profile-modal-open {
  overflow: hidden;
}

@keyframes profile-modal-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.about-support {
  height: 438.98px;
  min-height: 438.98px;
}

.about-support-btn {
  border-color: var(--navy);
  background: var(--gold);
}

.solutions-page {
  background: var(--white);
}

.solutions-hero {
  position: relative;
  height: 541px;
  overflow: hidden;
  color: var(--white);
}

.solutions-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transform: scaleX(-1);
}

.solutions-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.solutions-hero-content {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 222px;
}

.solutions-title-card {
  position: relative;
  width: 400px;
  height: 211px;
  color: var(--navy);
}

.solutions-title-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.solutions-title-card h1 {
  position: absolute;
  top: 17px;
  left: 33px;
  width: 349px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 74px;
  font-weight: 700;
  line-height: 86.96px;
}

.solutions-hero-content > p {
  width: 392px;
  margin: 10px 0 0;
  font-size: 20.8px;
  line-height: 37.99px;
}

.solutions-differentials {
  padding: 100px 0 50px;
}

.differentials-grid {
  display: grid;
  grid-template-columns: 536px 627px;
  justify-content: space-between;
  align-items: start;
  height: 443px;
}

.differentials-copy {
  display: flex;
  flex-direction: column;
  gap: 49px;
  width: 536px;
  height: 234px;
}

.differentials-copy h2,
.consulting-section h2 {
  margin: 0 0 23px;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 74.8px;
}

.differentials-copy h2 {
  font-size: 57.9px;
  line-height: 70.4px;
  margin-bottom: 0;
}

.differentials-copy p,
.service-detail-copy,
.partner-copy p,
.consulting-section p {
  margin: 0;
  font-size: 20.8px;
  line-height: 37.99px;
}

.differentials-list {
  display: grid;
  grid-template-columns: repeat(2, 273px);
  gap: 65px 67px;
}

.differentials-list article {
  min-height: 150px;
}

.differentials-list article:nth-child(4) {
  width: 287px;
  min-height: 152px;
}

.differentials-list span {
  position: relative;
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  margin-bottom: 16px;
}

.differentials-list span > img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.differentials-list .stacked-icon img:first-child {
  position: absolute;
  inset: 0;
}

.differentials-list .stacked-icon img:last-child {
  position: absolute;
  width: 35.625px;
  height: 35.625px;
  transform: none;
}

.differentials-list .stacked-icon .team-glyph {
  left: 10.5px;
  top: 12px;
  width: 34px;
  height: 22.4px;
  transform: none;
}

.differentials-list .stacked-icon .transparency-glyph {
  position: absolute;
  left: 55%;
  top: 50%;
  display: block;
  width: 28px;
  height: 28px;
  background: url("./assets/solutions-icon-transparency-inner.svg") center / contain no-repeat;
  transform: translate(-50%, -50%);
}

.differentials-list h3 {
  margin: 0 0 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 35px;
}

.differentials-list p {
  margin: 0;
  font-size: 20.8px;
  line-height: 37.99px;
}

.solutions-services {
  padding: 100px 0;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: 588px 627px;
  justify-content: space-between;
  align-items: start;
}

.services-tabs {
  display: flex;
  flex-direction: column;
  gap: 72px;
  width: 588px;
  min-height: 608px;
  padding: 40px;
  border-radius: 30px;
  background: var(--mint);
}

.services-tabs button {
  position: relative;
  display: flex;
  align-items: center;
  width: 501px;
  min-height: 28px;
  padding: 0 0 0 41px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 28px;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease;
}

.services-tabs button:hover,
.services-tabs button:focus-visible {
  color: #c6b28c;
}

.services-tabs button:last-child {
  margin-bottom: 0;
}

.services-tabs button:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  top: 63px;
  width: 501px;
  border-top: 1px dashed var(--navy);
}

.services-tabs button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--navy);
  border-radius: 50%;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.services-tabs button:hover::before,
.services-tabs button:focus-visible::before {
  border-color: #c6b28c;
  background: #c6b28c;
}

.services-tabs button.active {
  font-weight: 700;
}

.services-tabs button.active::before {
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: inset 0 0 0 8px var(--navy);
}

.services-tabs button.active:hover::before,
.services-tabs button.active:focus-visible::before {
  border-color: #c6b28c;
  background: #c6b28c;
  box-shadow: inset 0 0 0 8px #c6b28c;
}

.service-detail-copy {
  width: 627px;
  padding-top: 4px;
}

.service-detail-copy ul {
  margin: 37.99px 0 0;
  padding-left: 30px;
}

.service-detail-copy li + li {
  margin-top: 0;
}

.service-panel {
  display: none;
}

.service-panel.active {
  display: block;
}

.service-panel.service-panel-animate {
  animation: service-panel-anchor-in 360ms ease both;
}

@keyframes service-panel-anchor-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quality-section {
  padding: 100px 0;
}

.quality-grid {
  display: grid;
  grid-template-columns: 588px 627px;
  justify-content: space-between;
  align-items: center;
}

.quality-image {
  height: 655px;
  overflow: hidden;
  border-radius: 30px;
}

.quality-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quality-copy {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.quality-copy h2 {
  width: 536px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 57.9px;
  font-weight: 700;
  line-height: 70.4px;
}

.quality-copy ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quality-copy li {
  position: relative;
  padding-left: 42px;
  font-size: 20.8px;
  line-height: 37.99px;
}

.quality-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 34px;
  height: 29.5px;
  background: url("./assets/solutions-check.svg") center / contain no-repeat;
}

.quality-stats {
  display: flex;
  gap: 99px;
}

.quality-stats strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  line-height: 74.8px;
}

.quality-stats span {
  display: block;
  font-size: 20.8px;
  line-height: 37.99px;
}

.partner-service {
  padding: 100px 0;
  background: var(--mint);
}

.partner-grid {
  display: grid;
  grid-template-columns: 378px 860px;
  justify-content: space-between;
  align-items: start;
}

.partner-copy h2 {
  margin: 0 0 23px;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 50px;
}

.partner-copy strong {
  display: block;
  margin-bottom: 23px;
  font-family: "Barlow", sans-serif;
  font-size: 20px;
  line-height: 28px;
}

.partner-cards {
  display: grid;
  grid-template-columns: repeat(2, 417px);
  gap: 26px;
}

.partner-cards article {
  min-height: 219px;
  padding: 26px;
  border: 1px solid var(--navy);
  border-radius: 30px;
  background: var(--white);
}

.partner-cards h3 {
  margin: 0 0 26px;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 35px;
}

.partner-cards p {
  margin: 0;
  font-size: 20.8px;
  line-height: 37.99px;
}

.consulting-section {
  padding: 100px 0;
}

.consulting-section p + p {
  margin-top: 37.99px;
}

.contact-page {
  background: var(--white);
}

.contact-hero {
  position: relative;
  height: 541px;
  overflow: hidden;
  color: var(--white);
}

.contact-hero > img {
  position: absolute;
  top: -349px;
  left: -19px;
  width: calc(100% + 38px);
  height: 1099px;
  max-width: none;
  object-fit: cover;
  object-position: center top;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.contact-hero-content {
  position: relative;
  padding-top: 222px;
}

.contact-title-card {
  position: relative;
  width: 561px;
  height: 211px;
  color: var(--navy);
}

.contact-title-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-title-card h1 {
  position: absolute;
  top: 19px;
  left: 23px;
  width: 552px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 74px;
  font-weight: 700;
  line-height: 86.96px;
}

.contact-info {
  padding: 100px 0 50px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 400px);
  justify-content: space-between;
  align-items: start;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 400px;
  text-align: center;
}

.contact-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
}

.contact-icon-circle {
  position: absolute;
  inset: 0;
  width: 62px;
  height: 62px;
}

.contact-pin-top {
  position: absolute;
  top: 9px;
  left: 17px;
  width: 27.1px;
  height: 37.5px;
}

.contact-pin-bottom {
  position: absolute;
  left: 12px;
  bottom: 8px;
  width: 36.9px;
  height: 13.7px;
}

.contact-phone-glyph {
  position: absolute;
  width: 38px;
  height: 33.7px;
}

.contact-info h2 {
  margin: 0 0 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 35px;
}

.contact-info p {
  margin: 0;
  font-size: 20.8px;
  line-height: 37.99px;
}

.sp-address span {
  display: inline;
}

.sp-address span:nth-child(2)::after {
  content: "\A";
  white-space: pre;
}

.contact-form-section {
  position: relative;
  overflow: hidden;
  padding: 50px 0 100px;
}

.contact-pattern {
  position: absolute;
  left: -19px;
  right: -19px;
  bottom: 0;
  height: 490px;
  background: url("./assets/contact-pattern.png") center / cover no-repeat;
  opacity: 0.3;
}

.contact-form-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 538px 645px;
  justify-content: space-between;
  width: min(1350px, calc(100% - 48px));
  min-height: 602px;
  padding: 50px 50px 50px;
  border-radius: 30px;
  background: #e0e0e0;
}

.contact-form-heading h2 {
  width: 478px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 57.9px;
  font-weight: 700;
  line-height: 70.4px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 645px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-form span {
  font-size: 20.8px;
  line-height: 37.99px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-radius: 15px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  outline: none;
}

.contact-form input {
  height: 60px;
  padding: 12px 20px;
}

.contact-form textarea {
  height: 180px;
  resize: vertical;
  padding: 16px 20px;
}

.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 62px;
  padding: 25px;
  border: 0;
  border-radius: 62px;
  background: var(--navy);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 16.3px;
  font-weight: 700;
  line-height: 12px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  background: var(--white);
  color: var(--navy);
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin: -10px 0 0;
  color: var(--navy);
  font-size: 17px;
  line-height: 28px;
}

.form-status.success {
  color: #1d6f42;
}

.form-status.error {
  color: #9b1c1c;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.75;
}

.results-page {
  background: var(--white);
}

.results-hero {
  position: relative;
  height: 541px;
  overflow: hidden;
  color: var(--white);
}

.results-hero > img {
  position: absolute;
  top: -549px;
  left: -19px;
  width: calc(100% + 38px);
  height: 1099px;
  max-width: none;
  object-fit: cover;
  object-position: center top;
}

.results-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.results-hero-content {
  position: relative;
  padding-top: 222px;
}

.results-title-card {
  position: relative;
  width: 685px;
  height: 211px;
  color: var(--navy);
}

.results-title-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.results-title-card h1 {
  position: absolute;
  top: 19px;
  left: 29px;
  width: 670px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 74px;
  font-weight: 700;
  line-height: 86.96px;
}

.results-form-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.results-pattern {
  position: absolute;
  left: -19px;
  right: -19px;
  bottom: 0;
  height: 490px;
  background: url("./assets/contact-pattern.png") center / cover no-repeat;
  opacity: 0.3;
}

.results-form-card {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  width: min(1350px, calc(100% - 48px));
  min-height: 434px;
  padding: 80px 50px;
  border-radius: 30px;
  background: #e0e0e0;
}

.results-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 645px;
}

.results-form label {
  display: flex;
  flex-direction: column;
}

.results-form span {
  font-size: 20.8px;
  line-height: 37.99px;
}

.results-form input {
  width: 100%;
  height: 60px;
  padding: 12px 20px;
  border: 0;
  border-radius: 15px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  outline: none;
}

.results-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 62px;
  padding: 25px;
  border: 1px solid var(--gold);
  border-radius: 40px;
  background: var(--navy);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 16.3px;
  font-weight: 700;
  line-height: 12px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.results-form button:hover,
.results-form button:focus-visible {
  border-color: var(--navy);
  background: var(--white);
  color: var(--navy);
}

.doctor-portal-page {
  background: var(--white);
}

.doctor-portal-hero {
  position: relative;
  height: 541px;
  overflow: hidden;
  color: var(--white);
}

.doctor-portal-hero > img {
  position: absolute;
  top: -349px;
  left: -19px;
  width: calc(100% + 38px);
  height: 1099px;
  max-width: none;
  object-fit: cover;
  object-position: center top;
}

.doctor-portal-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.doctor-portal-hero-content {
  position: relative;
  padding-top: 222px;
}

.doctor-portal-title-card {
  position: relative;
  width: 685px;
  height: 211px;
  color: var(--navy);
}

.doctor-portal-title-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.doctor-portal-title-card h1 {
  position: absolute;
  top: 19px;
  left: 29px;
  width: 670px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 74px;
  font-weight: 700;
  line-height: 86.96px;
}

.doctor-login-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.doctor-login-pattern {
  position: absolute;
  left: -19px;
  right: -19px;
  bottom: 0;
  height: 490px;
  background: url("./assets/contact-pattern.png") center / cover no-repeat;
  opacity: 0.3;
}

.doctor-login-card {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  width: min(1350px, calc(100% - 48px));
  min-height: 434px;
  padding: 80px 50px;
  border-radius: 30px;
  background: #e0e0e0;
}

.doctor-login-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 645px;
}

.doctor-login-form label {
  display: flex;
  flex-direction: column;
}

.doctor-login-form span {
  font-size: 20.8px;
  line-height: 37.99px;
}

.doctor-login-form input {
  width: 100%;
  height: 60px;
  padding: 12px 20px;
  border: 0;
  border-radius: 15px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  outline: none;
}

.doctor-login-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 62px;
  padding: 25px;
  border: 1px solid var(--gold);
  border-radius: 40px;
  background: var(--navy);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 16.3px;
  font-weight: 700;
  line-height: 12px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.doctor-login-form button:hover,
.doctor-login-form button:focus-visible {
  border-color: var(--navy);
  background: var(--white);
  color: var(--navy);
}

@media (max-width: 1200px) {
  .site-header {
    position: relative;
    z-index: 20;
    justify-content: space-between;
    height: 97px;
    padding: 24px 16px;
    border-bottom: 0;
    background: var(--white);
    color: var(--navy);
  }

  .site-header::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 240ms ease;
  }

  .logo {
    position: relative;
    z-index: 41;
    width: 178px;
    height: 49px;
    flex: 0 0 178px;
  }

  .logo img {
    content: url("./assets/logo-dark.svg");
  }

  .main-nav {
    display: flex;
    position: fixed;
    z-index: 45;
    top: 0;
    left: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: min(77.5vw, 302px);
    height: 100dvh;
    padding: 72px 16px 40px 40px;
    background: var(--navy);
    box-shadow: 18px 0 35px rgba(31, 26, 77, 0.22);
    opacity: 0;
    transform: translateX(-105%);
    transition:
      opacity 320ms ease,
      transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0ms linear 520ms;
    visibility: hidden;
    pointer-events: none;
  }

  .main-nav a {
    width: 100%;
    padding: 13px 0;
    color: var(--white);
    font-size: 20px;
  }

  .main-nav::before {
    content: "";
    display: block;
    width: 178px;
    height: 49px;
    flex: 0 0 49px;
    margin-bottom: 37px;
    background: url("./assets/logo-light.svg") left top / 178px 49px no-repeat;
  }

  .header-actions {
    display: flex;
    position: fixed;
    z-index: 46;
    left: 40px;
    bottom: 37px;
    flex-direction: column;
    gap: 31px;
    width: calc(min(77.5vw, 302px) - 80px);
    margin-top: 24px;
    opacity: 0;
    transform: translateX(calc(-105% - 40px));
    transition:
      opacity 320ms ease,
      transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0ms linear 520ms;
    visibility: hidden;
    pointer-events: none;
  }

  .header-btn {
    width: 100%;
    min-height: 62px;
    min-width: 0;
    border-color: var(--white);
    background: var(--white);
    color: var(--navy);
  }

  .menu-toggle {
    position: absolute;
    z-index: 50;
    top: 50%;
    right: 16px;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    margin-left: auto;
    transform: translateY(-50%);
    border-radius: 5px;
    background: var(--navy);
    color: var(--white);
    font-size: 0;
    line-height: 1;
  }

  .menu-toggle::before {
    content: "";
    width: 23px;
    height: 12px;
    transform: translate(-1px, 4px);
    background:
      linear-gradient(var(--white), var(--white)) 0 0 / 23px 2px no-repeat,
      linear-gradient(var(--white), var(--white)) 0 50% / 23px 2px no-repeat,
      linear-gradient(var(--white), var(--white)) 0 100% / 23px 2px no-repeat;
  }

  .site-header.open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 97px;
    padding: 24px 16px;
    background: var(--white);
    color: var(--navy);
    box-shadow: none;
  }

  .site-header.open::after {
    top: 0;
    right: auto;
    bottom: 0;
    left: min(77.5vw, 302px);
    width: 100vw;
    opacity: 1;
    pointer-events: auto;
  }

  .site-header.open .logo {
    width: 178px;
    height: 49px;
    flex: 0 0 178px;
    margin-bottom: 0;
  }

  .site-header.open .logo img {
    content: url("./assets/logo-dark.svg");
  }

  .site-header.open .main-nav {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    transition-delay: 0ms, 0ms, 0ms;
    pointer-events: auto;
  }

  .site-header.open .header-actions {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    transition-delay: 90ms, 90ms, 0ms;
    pointer-events: auto;
  }

  .site-header.open .header-actions a:first-child {
    order: 2;
  }

  .site-header.open .header-actions a:nth-child(2) {
    order: 1;
  }

  .site-header.open .menu-toggle {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.45);
  }

  .site-header.open .menu-toggle::before,
  .site-header.open .menu-toggle::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 1px;
    background: var(--white);
    transform: rotate(45deg);
  }

  .site-header.open .menu-toggle::after {
    transform: rotate(-45deg);
  }

  .hero {
    height: 820px;
  }

  .hero-copy {
    width: min(672px, 100%);
    margin-left: 0;
  }

  .hero-title-shape {
    width: min(568px, 100%);
  }

  .hero h1 {
    font-size: clamp(46px, 8vw, 74px);
    line-height: 1.18;
  }

  .audience-grid,
  .feature-row,
  .service-grid,
  .split,
  .split.reverse,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .audience-card {
    width: 100%;
    height: auto;
    min-height: 375px;
  }

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

  .result-cta {
    flex-wrap: wrap;
  }

  .service-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .image-badge-card,
  .cause-image {
    width: 100%;
  }

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

  .about-benefits-grid,
  .work-process-grid,
  .precision-grid,
  .differentials-grid,
  .services-detail-grid,
  .quality-grid,
  .contact-main,
  .results-panel,
  .portal-panel,
  .profile-modal-card {
    grid-template-columns: 1fr;
  }

  .result-title,
  .result-cta {
    justify-content: center;
    text-align: center;
  }

  .result-cta {
    flex-wrap: wrap;
  }

  .service-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .image-badge-card,
  .cause-image {
    width: 100%;
  }

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

  .about-benefits-grid,
  .work-process-grid,
  .precision-grid,
  .differentials-grid,
  .services-detail-grid,
  .quality-grid,
  .partner-grid,
  .contact-info-grid,
  .contact-form-card {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-benefits article,
  .about-benefits article + article {
    min-height: auto;
    padding: 0;
    border-left: 0;
  }

  .about-benefits-grid {
    gap: 48px;
  }

  .about-benefits-grid::before,
  .about-benefits-grid::after {
    display: none;
  }

  .about-gallery-section,
  .work-process {
    height: auto;
  }

  .about-gallery {
    grid-template-columns: 1fr;
    height: auto;
  }

  .about-gallery-main {
    height: 420px;
  }

  .about-gallery-side {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-gallery-side img {
    width: 100%;
  }

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

  .differentials-list,
  .partner-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-tabs,
  .quality-copy h2,
  .contact-info-item,
  .contact-form,
  .contact-form-heading h2 {
    width: 100%;
  }

  .contact-info-grid {
    justify-items: center;
  }

  .contact-form-card {
    min-height: auto;
  }

  .quality-image {
    height: 520px;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 500px));
    gap: 42px 48px;
  }

  .team-grid img {
    width: 100%;
  }

  .team-photo-button {
    width: 100%;
  }

  .profile-modal-card {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 40px;
    padding: 42px;
  }

  .profile-modal-card > img {
    width: 300px;
  }

  .footer-top,
  .footer-bottom {
    gap: 32px;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-credit {
    padding-top: 0;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 16px 32px;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 18px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .hero-content {
    padding-top: 165px;
  }

  .hero-image {
    left: 42%;
  }

  .hero-title-shape {
    height: 245px;
  }

  .hero h1,
  .about-hero h1,
  .solutions-title-card h1,
  .contact-title-card h1,
  .results-title-card h1,
  .doctor-portal-title-card h1,
  .service-heading h2,
  .split-copy h2,
  .analysis h2,
  .about-text-block h2,
  .precision-copy h2,
  .team-section h2,
  .faq-layout h2 {
    font-size: 42px;
    line-height: 1.16;
  }

  .about-hero {
    height: 520px;
  }

  .solutions-hero {
    height: auto;
    min-height: 560px;
  }

  .solutions-hero-content {
    flex-direction: column;
    gap: 40px;
    padding-top: 170px;
    padding-bottom: 70px;
  }

  .solutions-title-card {
    width: min(100%, 400px);
    min-height: 170px;
  }

  .solutions-hero-content > p {
    width: min(100%, 392px);
  }

  .contact-hero {
    height: auto;
    min-height: 560px;
  }

  .contact-hero > img {
    top: 0;
    left: 50%;
    width: auto;
    height: 100%;
    transform: translateX(-50%);
  }

  .contact-hero-content {
    padding-top: 170px;
    padding-bottom: 70px;
  }

  .contact-title-card {
    width: min(100%, 561px);
    min-height: 190px;
  }

  .contact-title-card h1 {
    width: calc(100% - 46px);
  }

  .contact-info {
    padding-top: 70px;
  }

  .contact-form-card {
    width: min(100% - 32px, 1350px);
    padding: 36px 28px;
  }

  .contact-form-section {
    padding-bottom: 70px;
  }

  .results-hero {
    height: auto;
    min-height: 560px;
  }

  .results-hero > img {
    top: 0;
    left: 50%;
    width: auto;
    height: 100%;
    transform: translateX(-50%);
  }

  .results-hero-content {
    padding-top: 170px;
    padding-bottom: 70px;
  }

  .results-title-card {
    width: min(100%, 685px);
    min-height: 190px;
  }

  .results-title-card h1 {
    width: calc(100% - 58px);
  }

  .results-form-section {
    padding: 70px 0;
  }

  .results-form-card {
    width: min(100% - 32px, 1350px);
    min-height: auto;
    padding: 50px 28px;
  }

  .results-form {
    width: 100%;
  }

  .doctor-portal-hero {
    height: auto;
    min-height: 560px;
  }

  .doctor-portal-hero > img {
    top: 0;
    left: 50%;
    width: auto;
    height: 100%;
    transform: translateX(-50%);
  }

  .doctor-portal-hero-content {
    padding-top: 170px;
    padding-bottom: 70px;
  }

  .doctor-portal-title-card {
    width: min(100%, 685px);
    min-height: 190px;
  }

  .doctor-portal-title-card h1 {
    width: calc(100% - 58px);
  }

  .doctor-login-section {
    padding: 70px 0;
  }

  .doctor-login-card {
    width: min(100% - 32px, 1350px);
    min-height: auto;
    padding: 50px 28px;
  }

  .doctor-login-form {
    width: 100%;
  }

  .about-hero h1 {
    max-width: calc(100% - 32px);
  }

  .process-cards,
  .team-grid,
  .differentials-list,
  .partner-cards,
  .about-gallery-side {
    grid-template-columns: 1fr;
  }

  .services-tabs {
    padding: 28px;
  }

  .profile-modal-back-button {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 54px;
    padding: 12px 24px;
    border: 0;
    border-radius: 999px;
    background: var(--navy);
    color: var(--white);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    transition:
      background-color 180ms ease,
      color 180ms ease;
  }

  .profile-modal-back-button:hover,
  .profile-modal-back-button:focus-visible {
    background: var(--gold);
    color: var(--navy);
  }

  .services-tabs button {
    width: 100%;
    white-space: normal;
  }

  .services-tabs button:not(:last-child)::after {
    width: 100%;
  }

  .quality-stats {
    gap: 32px;
    flex-wrap: wrap;
  }

  .precision-image {
    height: 520px;
  }

  .precision-copy li {
    white-space: normal;
  }

  .team-grid article:nth-child(3) p,
  .team-grid p {
    width: 100%;
  }

  .team-photo-button {
    height: 320px;
  }

  .profile-modal {
    align-items: start;
    overflow-y: auto;
    padding: 24px 16px;
  }

  .profile-modal-backdrop {
    position: fixed;
  }

  .profile-modal-card {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding: 28px;
  }

  .profile-modal-card > img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1.08;
  }

  .profile-modal-copy {
    padding: 0;
  }

  .profile-modal-role {
    margin-bottom: 24px !important;
  }

  .profile-modal-close {
    display: none;
  }

  .profile-modal-copy h2 {
    margin-right: 44px;
  }

  .hero-copy p {
    font-size: 20px;
    line-height: 32px;
  }

  .audience-card,
  .service-card {
    padding: 36px 28px;
  }

  .footer-top nav {
    flex-wrap: wrap;
    gap: 20px;
  }

  .site-footer {
    padding: 60px 0;
  }

  .footer-inner {
    width: min(100% - 32px, var(--container));
    gap: 60px;
  }

  .footer-top,
  .footer-bottom,
  .footer-brand,
  .footer-legal {
    align-items: center;
    text-align: center;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .socials {
    gap: 24px;
  }

  .footer-top nav {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }

  .footer-brand,
  .footer-legal {
    display: contents;
  }

  .footer-brand img {
    order: 1;
    width: 242px;
    height: 67px;
  }

  .footer-legal a {
    order: 2;
    font-size: 17px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.7);
  }

  .footer-credit {
    align-self: center;
    order: 3;
    color: rgba(255, 255, 255, 0.7);
  }

  .footer-legal p {
    order: 4;
    color: rgba(255, 255, 255, 0.7);
  }

  .about-page .about-hero {
    height: 367px;
    place-items: center;
  }

  .about-page .about-hero > img {
    top: -26.5%;
    left: -4.22%;
    width: 185.38%;
    height: 131.4%;
    max-width: none;
    object-fit: cover;
    object-position: center;
  }

  .about-page .about-hero h1 {
    width: min(334px, calc(100% - 32px));
    max-width: none;
    margin: 0;
    font-size: 35px;
    line-height: 43px;
  }

  .about-page .about-benefits {
    padding: 40px 0;
  }

  .about-page .about-benefits-grid {
    gap: 44px;
  }

  .about-page .about-benefits-grid::before,
  .about-page .about-benefits-grid::after {
    display: none;
  }

  .about-page .about-benefits article,
  .about-page .about-benefits article + article {
    min-height: 0;
    padding: 0;
  }

  .about-page .about-benefits img {
    margin-bottom: 46px;
  }

  .about-page .about-benefits h2 {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 35px;
  }

  .about-page .about-text-block,
  .about-page .about-text-block.first,
  .about-page .precision-section,
  .about-page .team-section {
    padding: 40px 0;
  }

  .about-page .about-text-block h2,
  .about-page .precision-copy h2,
  .about-page .team-section h2 {
    margin-bottom: 23px;
    font-size: 48px;
    line-height: 74.8px;
  }

  .about-page .about-gallery-section {
    height: auto;
    padding: 40px 0;
  }

  .about-page .about-gallery {
    display: flex;
    flex-direction: column;
    gap: 22px;
    height: auto;
  }

  .about-page .about-gallery-main {
    flex: none;
    width: 100%;
    height: auto;
    aspect-ratio: 889 / 535;
  }

  .about-page .about-gallery-main img {
    height: 100%;
    object-position: center 32%;
  }

  .about-page .about-gallery-side {
    flex: none;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: auto;
    gap: 22px;
  }

  .about-page .about-gallery-side img {
    width: 100%;
    height: auto;
    aspect-ratio: 284 / 171;
    object-fit: cover;
  }

  .about-page .work-process {
    height: auto;
    padding: 40px 0;
  }

  .about-page .work-process-grid {
    gap: 24px;
  }

  .about-page .work-process-intro h2 {
    font-size: 32px;
    line-height: 50px;
  }

  .about-page .process-cards {
    gap: 26px;
  }

  .about-page .process-cards article,
  .about-page .process-cards article:nth-child(4) {
    min-height: 286px;
    padding: 26px;
  }

  .about-page .precision-grid {
    gap: 40px;
  }

  .about-page .precision-image {
    height: auto;
    aspect-ratio: 593 / 640;
  }

  .about-page .precision-image img {
    width: 161.87%;
    max-width: none;
    transform: translateX(-14.78%);
    object-position: center;
  }

  .about-page .precision-copy {
    padding-top: 0;
  }

  .about-page .precision-copy ul {
    width: 100%;
  }

  .about-page .precision-copy li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding-left: 0;
    white-space: normal;
  }

  .about-page .precision-copy li::before {
    position: static;
    flex: 0 0 34px;
    margin-top: 4px;
  }

  .about-page .team-section h2 {
    margin-bottom: 24px;
  }

  .about-page .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-page .team-photo-button,
  .about-page .team-grid img {
    width: 100%;
    height: auto;
    aspect-ratio: 500 / 358.8;
  }

  .about-page .team-photo-button {
    pointer-events: none;
    cursor: default;
  }

  .about-page .team-photo-button span,
  .about-page .team-photo-button::after {
    display: none;
  }

  .about-page .team-photo-button img,
  .about-page .team-photo-button:hover img,
  .about-page .team-photo-button:focus-visible img {
    filter: none;
    transform: none;
  }

  .about-page .team-grid h3 {
    margin: 16px 0 12px;
    font-size: 22px;
    line-height: 35px;
  }

  .about-page .team-grid p,
  .about-page .team-grid article:nth-child(3) p {
    width: 100%;
    font-size: 17px;
    line-height: 28px;
  }

  .about-page .team-more-button {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 54px;
    margin-top: 18px;
    padding: 12px 24px;
    border: 0;
    border-radius: 999px;
    background: var(--navy);
    color: var(--white);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    transition:
      background-color 180ms ease,
      color 180ms ease;
  }

  .about-page .team-more-button:hover,
  .about-page .team-more-button:focus-visible {
    background: var(--gold);
    color: var(--navy);
  }

  .about-page .about-support {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 40px 16px;
    background: var(--gold);
    text-align: center;
  }

  .about-page .about-support h2 {
    max-width: 334px;
    font-size: 35px;
    line-height: 47px;
  }

  .about-page .about-support p {
    max-width: 334px;
    margin: 24px auto;
    font-size: 22px;
    line-height: 35px;
  }

  .about-page .about-support-btn {
    width: 100%;
    max-width: 356px;
    min-width: 0;
    height: auto;
    min-height: 62px;
    padding: 25px;
    white-space: nowrap;
  }

  .solutions-page .solutions-hero {
    height: 367px;
    min-height: 0;
  }

  .solutions-page .solutions-hero > img {
    top: -20%;
    left: -28%;
    width: 173%;
    height: 123%;
    max-width: none;
    transform: scaleX(-1);
    object-fit: cover;
    object-position: center;
  }

  .solutions-page .solutions-hero-content {
    display: grid;
    place-items: center;
    min-height: 100%;
    padding: 0;
    text-align: center;
  }

  .solutions-page .solutions-title-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 212px;
    height: auto;
    color: var(--white);
    justify-self: center;
    transform: translate(-50%, -50%);
  }

  .solutions-page .solutions-title-card img,
  .solutions-page .solutions-hero-content > p {
    display: none;
  }

  .solutions-page .solutions-title-card h1 {
    position: static;
    width: 100%;
    color: var(--white);
    font-size: 35px;
    line-height: 43px;
    text-align: center;
  }

  .solutions-page .solutions-differentials,
  .solutions-page .solutions-services,
  .solutions-page .quality-section,
  .solutions-page .partner-service,
  .solutions-page .consulting-section {
    padding: 40px 0;
  }

  .solutions-page .differentials-grid,
  .solutions-page .services-detail-grid,
  .solutions-page .quality-grid,
  .solutions-page .partner-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    height: auto;
  }

  .solutions-page .differentials-copy,
  .solutions-page .service-detail-copy,
  .solutions-page .partner-copy,
  .solutions-page .consulting-section .container {
    width: 100%;
  }

  .solutions-page .differentials-copy {
    height: auto;
    gap: 24px;
  }

  .solutions-page .differentials-copy h2 {
    margin: 0;
    font-size: 35px;
    line-height: 40px;
  }

  .solutions-page .differentials-copy p,
  .solutions-page .differentials-list p,
  .solutions-page .service-detail-copy,
  .solutions-page .quality-copy li,
  .solutions-page .quality-stats span,
  .solutions-page .partner-copy p,
  .solutions-page .partner-cards p,
  .solutions-page .consulting-section p {
    font-size: 20.8px;
    line-height: 37.99px;
  }

  .solutions-page .differentials-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .solutions-page .differentials-list article,
  .solutions-page .differentials-list article:nth-child(4) {
    width: 100%;
    min-height: 0;
  }

  .solutions-page .differentials-list span {
    margin-bottom: 16px;
  }

  .solutions-page .differentials-list h3 {
    margin-bottom: 16px;
    font-size: 22px;
    line-height: 35px;
  }

  .solutions-page .services-tabs {
    width: 100%;
    min-height: 0;
    gap: 34px;
    padding: 40px;
    border-radius: 30px;
  }

  .solutions-page .services-tabs button {
    width: 100%;
    min-height: 28px;
    padding-left: 41px;
    font-size: 20px;
    line-height: 28px;
    white-space: normal;
  }

  .solutions-page .services-tabs button::before {
    top: 0;
  }

  .solutions-page .services-tabs button:not(:last-child)::after {
    top: calc(100% + 16px);
    width: 100%;
  }

  .solutions-page .service-detail-copy {
    padding-top: 0;
  }

  .solutions-page .service-detail-copy ul {
    margin-top: 37.99px;
    padding-left: 24px;
  }

  .solutions-page .quality-grid {
    gap: 32px;
  }

  .solutions-page .quality-image {
    width: 100%;
    height: auto;
    aspect-ratio: 358 / 399;
    border-radius: 30px;
  }

  .solutions-page .quality-image img {
    object-position: center;
  }

  .solutions-page .quality-copy {
    gap: 32px;
  }

  .solutions-page .quality-copy h2 {
    width: 100%;
    margin: 0;
    padding: 10px 10px 10px 0;
    font-size: 35px;
    line-height: 47px;
  }

  .solutions-page .quality-copy ul {
    gap: 8px;
    padding-top: 8.985px;
  }

  .solutions-page .quality-copy li {
    display: flex;
    gap: 8px;
    align-items: center;
    padding-left: 0;
  }

  .solutions-page .quality-copy li::before {
    position: static;
    flex: 0 0 34px;
    margin-top: 0;
  }

  .solutions-page .quality-stats {
    flex-direction: column;
    gap: 24px;
    padding: 10px 10px 10px 0;
  }

  .solutions-page .quality-stats strong {
    font-size: 48px;
    line-height: 74.8px;
  }

  .solutions-page .partner-service {
    background: var(--mint);
  }

  .solutions-page .partner-copy h2 {
    margin-bottom: 23px;
    font-size: 32px;
    line-height: 50px;
  }

  .solutions-page .partner-copy strong {
    margin-bottom: 23px;
    font-size: 20px;
    line-height: 28px;
  }

  .solutions-page .partner-cards {
    display: flex;
    flex-direction: column;
    gap: 26px;
  }

  .solutions-page .partner-cards article {
    width: 100%;
    min-height: 0;
    padding: 26px;
    border-radius: 30px;
  }

  .solutions-page .partner-cards h3 {
    margin-bottom: 26px;
    font-size: 22px;
    line-height: 35px;
  }

  .solutions-page .consulting-section h2 {
    width: 100%;
    max-width: none;
    margin: 0 0 23px;
    color: var(--navy);
    font-size: 48px;
    line-height: 74.8px;
  }

  .solutions-page .consulting-section {
    background: var(--white);
    color: var(--navy);
  }

  .solutions-page .consulting-section .container {
    width: min(100% - 32px, var(--container));
  }

  .solutions-page .consulting-section p {
    width: 100%;
    margin: 0;
    color: var(--navy);
    white-space: normal;
  }

  .solutions-page .consulting-section p + p {
    margin-top: 37.99px;
  }

  .solutions-page .consulting-section strong {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
  }

  .contact-page .contact-hero {
    height: 367px;
    min-height: 0;
  }

  .contact-page .contact-hero > img {
    top: -24.5%;
    left: -90.7%;
    width: 211.92%;
    height: 126.43%;
    max-width: none;
    transform: none;
    object-fit: cover;
    object-position: center;
  }

  .contact-page .contact-hero-content {
    display: grid;
    place-items: center;
    min-height: 100%;
    padding: 0;
    text-align: center;
  }

  .contact-page .contact-title-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 266px;
    height: auto;
    min-height: 0;
    color: var(--white);
    transform: translate(-50%, -50%);
  }

  .contact-page .contact-title-card img {
    display: none;
  }

  .contact-page .contact-title-card h1 {
    position: static;
    width: 100%;
    margin: 0;
    color: var(--white);
    font-size: 35px;
    line-height: 43px;
    text-align: center;
  }

  .contact-page .contact-info {
    padding: 40px 0;
  }

  .contact-page .contact-info-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .contact-page .contact-info-item {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .contact-page .contact-info h2 {
    margin: 0 0 24px;
    font-size: 22px;
    line-height: 35px;
  }

  .contact-page .contact-info p {
    width: 100%;
    margin: 0;
    font-size: 20.8px;
    line-height: 37.99px;
    text-align: center;
  }

  .contact-page .sp-address span {
    display: block;
  }

  .contact-page .sp-address span:nth-child(2)::after {
    content: "";
  }

  .contact-page .contact-form-section {
    overflow: hidden;
    padding: 40px 0;
  }

  .contact-page .contact-pattern {
    top: 232px;
    right: auto;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 670px;
    background-position: left center;
    background-size: 321.28% 100%;
  }

  .contact-page .contact-form-card {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: min(100% - 32px, var(--container));
    min-height: 0;
    padding: 0;
    border-radius: 30px;
    background: #e0e0e0;
  }

  .contact-page .contact-form-heading {
    padding: 50px 16px 10px;
  }

  .contact-page .contact-form-heading h2 {
    width: 100%;
    margin: 0;
    font-size: 35px;
    line-height: 40px;
  }

  .contact-page .contact-form {
    width: 100%;
    gap: 28px;
    padding: 0 16px 50px;
  }

  .contact-page .contact-form label {
    min-height: 98px;
  }

  .contact-page .contact-form span {
    font-size: 20.8px;
    line-height: 37.99px;
  }

  .contact-page .contact-form input {
    height: 60px;
  }

  .contact-page .contact-form textarea {
    height: 180px;
  }

  .results-page .results-hero {
    height: 367px;
    min-height: 0;
  }

  .results-page .results-hero > img {
    top: -80.02%;
    left: -116.41%;
    width: 306.38%;
    height: 182.75%;
    max-width: none;
    transform: none;
    object-fit: cover;
    object-position: center;
  }

  .results-page .results-hero-content {
    display: grid;
    place-items: center;
    min-height: 100%;
    padding: 0;
    text-align: center;
  }

  .results-page .results-title-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 294px;
    height: auto;
    min-height: 0;
    color: var(--white);
    transform: translate(-50%, -50%);
  }

  .results-page .results-title-card img {
    display: none;
  }

  .results-page .results-title-card h1 {
    position: static;
    width: 100%;
    margin: 0;
    color: var(--white);
    font-size: 35px;
    line-height: 43px;
    text-align: center;
  }

  .results-page .results-form-section {
    overflow: hidden;
    padding: 40px 0;
  }

  .results-page .results-pattern {
    top: 232px;
    right: auto;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 262px;
    background-position: left top;
    background-size: 321.28% 255.73%;
  }

  .results-page .results-form-card {
    width: min(100% - 32px, var(--container));
    min-height: 0;
    padding: 50px 16px;
    border-radius: 30px;
    background: #e0e0e0;
  }

  .results-page .results-form {
    width: 100%;
    gap: 28px;
  }

  .results-page .results-form label {
    min-height: 98px;
  }

  .results-page .results-form span {
    font-size: 20.8px;
    line-height: 37.99px;
  }

  .results-page .results-form input {
    height: 60px;
  }

  .results-page .results-form button {
    width: 100%;
    min-height: 62px;
    border: 0;
    border-radius: 62px;
  }

  .doctor-portal-page .doctor-portal-hero {
    height: 367px;
    min-height: 0;
  }

  .doctor-portal-page .doctor-portal-hero > img {
    top: -29.16%;
    left: -16.65%;
    width: 221.36%;
    height: 132.04%;
    max-width: none;
    transform: scaleX(-1);
    object-fit: cover;
    object-position: center;
  }

  .doctor-portal-page .doctor-portal-hero-content {
    display: grid;
    place-items: center;
    min-height: 100%;
    padding: 0;
    text-align: center;
  }

  .doctor-portal-page .doctor-portal-title-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 294px;
    height: auto;
    min-height: 0;
    color: var(--white);
    transform: translate(-50%, -50%);
  }

  .doctor-portal-page .doctor-portal-title-card img {
    display: none;
  }

  .doctor-portal-page .doctor-portal-title-card h1 {
    position: static;
    width: 100%;
    margin: 0;
    color: var(--white);
    font-size: 35px;
    line-height: 43px;
    text-align: center;
  }

  .doctor-portal-page .doctor-login-section {
    overflow: hidden;
    padding: 40px 0;
  }

  .doctor-portal-page .doctor-login-pattern {
    top: 232px;
    right: auto;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 262px;
    background-position: left top;
    background-size: 321.28% 255.73%;
  }

  .doctor-portal-page .doctor-login-card {
    width: min(100% - 32px, var(--container));
    min-height: 0;
    padding: 50px 16px;
    border-radius: 30px;
    background: #e0e0e0;
  }

  .doctor-portal-page .doctor-login-form {
    width: 100%;
    gap: 28px;
  }

  .doctor-portal-page .doctor-login-form label {
    min-height: 98px;
  }

  .doctor-portal-page .doctor-login-form span {
    font-size: 20.8px;
    line-height: 37.99px;
  }

  .doctor-portal-page .doctor-login-form input {
    height: 60px;
  }

  .doctor-portal-page .doctor-login-form button {
    width: 100%;
    min-height: 62px;
    border: 0;
    border-radius: 62px;
  }

  .home-page .hero {
    height: 756px;
    background: var(--teal);
  }

  .home-page .hero-image {
    top: 0;
    left: -50%;
    width: 484.87%;
    height: 754px;
    transform: none;
    object-fit: cover;
    object-position: center top;
  }

  .home-page .hero-ellipse {
    display: none;
  }

  .home-page .hero-overlay {
    background: rgba(0, 0, 0, 0.5);
  }

  .home-page .hero-content {
    display: flex;
    align-items: center;
    padding: 40px 0;
  }

  .home-page .hero-copy {
    width: 100%;
    padding-inline: 0;
  }

  .home-page .hero-title-shape {
    width: min(306px, 100%);
    height: 154px;
    margin: 0;
    overflow: hidden;
  }

  .home-page .hero-title-shape > img {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .home-page .hero h1 {
    top: 8px;
    left: 17px;
    font-size: 35px;
    line-height: 45px;
    white-space: nowrap;
  }

  .home-page .hero-copy p {
    margin-top: 24px;
    color: var(--white);
    font-size: 23.8px;
    line-height: 30px;
  }

  .home-page .hero-btn {
    border-color: var(--white);
    background: transparent;
    color: var(--white);
  }

  .home-page .hero-btn:hover,
  .home-page .hero-btn:focus-visible {
    background: var(--white);
    color: var(--navy);
  }

  .home-page .hero-copy .btn,
  .home-page .audience-card .btn,
  .home-page .result-btn,
  .home-page .service-more,
  .home-page .service-card a,
  .home-page .practice-btn,
  .home-page .support-btn {
    width: 100%;
    min-width: 0;
  }

  .home-page .audience-strip {
    padding: 40px 0;
  }

  .home-page .audience-grid {
    gap: 26px;
  }

  .home-page .audience-card {
    min-height: 375px;
    padding: 30px 50px;
    align-items: stretch;
    justify-content: center;
  }

  .home-page .audience-card h2,
  .home-page .mini-feature h3,
  .home-page .service-card h3 {
    font-size: 22px;
    line-height: 35px;
  }

  .home-page .audience-card p {
    max-width: none;
    margin-top: 26px;
    font-size: 20.8px;
    line-height: 37.99px;
  }

  .home-page .audience-card .btn {
    margin-top: 40px;
  }

  .home-page .result-band {
    display: block;
    height: auto;
  }

  .home-page .result-title {
    min-height: 170px;
    padding: 40px 16px;
    font-size: 32px;
    line-height: 45px;
  }

  .home-page .result-cta {
    flex-direction: column;
    gap: 16px;
    padding: 40px 16px;
  }

  .home-page .result-cta strong {
    font-size: 22px;
    line-height: 35px;
    white-space: normal;
  }

  .home-page .result-btn.doctor,
  .home-page .result-btn.patient {
    width: 100%;
  }

  .home-page .services {
    min-height: 0;
    padding: 40px 0;
    background: linear-gradient(var(--mint) 0 81%, var(--white) 81% 100%);
  }

  .home-page .services::before {
    display: none;
  }

  .home-page .feature-row {
    position: relative;
    z-index: 1;
    gap: 24px;
    padding-bottom: 40px;
    background: var(--white);
    box-shadow: 0 0 0 100vmax var(--white);
    clip-path: inset(-40px -100vmax 0);
  }

  .home-page .mini-feature {
    min-height: 121px;
  }

  .home-page .mini-feature p {
    max-width: none;
    font-size: 20.8px;
    line-height: 37.99px;
  }

  .home-page .service-heading {
    gap: 24px;
    padding-top: 40px;
  }

  .home-page .service-heading h2,
  .home-page .split-copy h2,
  .home-page .analysis h2,
  .home-page .about-copy h2 {
    font-size: 48px;
    line-height: 74.8px;
  }

  .home-page .service-heading p {
    margin-bottom: 24px;
    font-size: 22px;
    line-height: 35px;
  }

  .home-page .service-grid {
    gap: 30px;
  }

  .home-page .service-card,
  .home-page .service-card:nth-child(n) {
    min-height: 455px;
    padding: 30px 40px;
    border-radius: 30px;
  }

  .home-page .service-card p {
    margin-top: 35px;
    font-size: 20.8px;
    line-height: 37.99px;
  }

  .home-page .service-card a {
    align-self: stretch;
    padding: 25px;
    text-align: center;
  }

  .home-page .practice,
  .home-page .cause {
    height: auto;
    padding: 40px 0;
  }

  .home-page .split,
  .home-page .split.reverse {
    gap: 40px;
  }

  .home-page .split-copy,
  .home-page .split-copy.wide {
    max-width: none;
    padding-left: 0;
  }

  .home-page .split-copy p {
    margin-top: 24px;
    font-size: 20.8px;
    line-height: 37.99px;
  }

  .home-page .image-badge-card,
  .home-page .cause-image {
    height: 420px;
    margin-left: 0;
  }

  .home-page .cause .split-copy {
    order: 1;
  }

  .home-page .cause-image {
    order: 2;
    width: 100%;
    height: auto;
    aspect-ratio: 590 / 600;
    border-radius: 30px;
  }

  .home-page .cause-image img {
    left: -26.16%;
    width: 152.46%;
    height: 100%;
    object-fit: cover;
  }

  .home-page .badges {
    left: 24px;
    right: 24px;
    width: auto;
  }

  .home-page .badges span {
    font-size: 15px;
    line-height: 24px;
  }

  .home-page .analysis {
    padding: 40px 0;
    background: var(--white);
  }

  .home-page .analysis-bg {
    display: none;
  }

  .home-page .analysis h2 {
    padding-left: 0;
    margin-bottom: 24px;
  }

  .home-page .analysis-grid,
  .home-page .analysis-left,
  .home-page .analysis-right {
    gap: 24px;
  }

  .home-page .analysis-left img:first-child,
  .home-page .analysis-left img:last-child,
  .home-page .analysis-right img:first-child,
  .home-page .analysis-right img:last-child {
    height: 280px;
    border-radius: 30px;
  }

  .home-page .about-copy {
    padding: 40px 0;
  }

  .home-page .about-copy p {
    margin-top: 24px;
    font-size: 20.8px;
    line-height: 37.99px;
  }

  .home-page .faq-section {
    padding: 40px 0;
  }

  .home-page .faq-layout {
    gap: 24px;
  }

  .home-page .faq-layout h2 {
    font-size: 40px;
    line-height: 49px;
  }

  .home-page .faq-layout h2 span {
    font-size: 30px;
    line-height: 59px;
  }

  .home-page .faq-item {
    min-height: 0;
    padding: 30px 24px;
  }

  .home-page .faq-item span {
    font-size: 22px;
    line-height: 38.75px;
  }

  .home-page .support-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 411px;
    padding: 40px 16px;
    text-align: center;
  }

  .home-page .support-cta h2 {
    font-size: 35px;
    line-height: 47px;
  }

  .home-page .support-cta p {
    margin: 24px 0;
    font-size: 22px;
    line-height: 35px;
  }

  .home-page .support-btn {
    width: 100%;
    max-width: 356px;
    min-width: 0;
    height: auto;
    min-height: 62px;
    white-space: nowrap;
  }

  .home-page .site-footer {
    padding: 60px 0;
  }

  .home-page .footer-inner {
    width: min(100% - 32px, var(--container));
    gap: 60px;
  }

  .home-page .footer-top,
  .home-page .footer-bottom,
  .home-page .footer-brand,
  .home-page .footer-legal {
    align-items: center;
    text-align: center;
  }

  .home-page .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .home-page .socials {
    gap: 24px;
  }

  .home-page .footer-top nav {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .home-page .footer-divider {
    opacity: 0.7;
  }

  .home-page .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }

  .home-page .footer-brand {
    display: contents;
  }

  .home-page .footer-legal {
    display: contents;
  }

  .home-page .footer-brand img {
    order: 1;
    width: 242px;
    height: 67px;
  }

  .home-page .footer-legal a {
    order: 2;
    font-size: 17px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.7);
  }

  .home-page .footer-credit {
    align-self: center;
    order: 3;
    color: rgba(255, 255, 255, 0.7);
  }

  .home-page .footer-legal p {
    order: 4;
    color: rgba(255, 255, 255, 0.7);
  }
}

/* Privacy policy */
.privacy-page {
  background: var(--white);
}

.privacy-hero {
  display: flex;
  align-items: flex-start;
  min-height: 541px;
  padding-top: 260px;
  background: var(--navy);
  color: var(--white);
}

.privacy-hero-inner {
  display: flex;
  align-items: flex-start;
}

.privacy-hero h1 {
  width: 670px;
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
}

.privacy-section {
  padding: 50px 0;
}

.privacy-section h2 {
  margin: 0 0 23px;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 74.8px;
}

.privacy-section p,
.privacy-section li {
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-size: 20.8px;
  font-weight: 400;
  line-height: 37.99px;
}

.privacy-section ul {
  margin: 0;
  padding-left: 28px;
}

/* Cookie consent */
.cookie-consent {
  position: fixed;
  z-index: 100;
  right: 32px;
  bottom: 32px;
  left: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  width: min(calc(100% - 64px), 1344px);
  margin-inline: auto;
  padding: 32px;
  border: 0;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  color: #484848;
  overflow: hidden;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent-copy {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.cookie-consent-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-consent h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 35px;
  color: #484848;
}

.cookie-consent-icon {
  display: block;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
}

.cookie-consent p {
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 28px;
  color: #484848;
}

.cookie-consent p a {
  color: inherit;
  font-weight: 400;
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 16px;
}

.cookie-consent .btn {
  min-width: 0;
  min-height: 62px;
  padding: 25px;
  border-radius: 40px;
  font-family: "Montserrat", sans-serif;
  font-size: 16.3px;
  font-weight: 700;
  line-height: 12px;
  text-transform: uppercase;
}

.cookie-reject {
  border-color: var(--navy);
  background: var(--white);
  color: var(--navy);
}

.cookie-reject:hover,
.cookie-reject:focus-visible {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.cookie-accept {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.cookie-accept:hover,
.cookie-accept:focus-visible {
  border-color: var(--navy);
  background: var(--white);
  color: var(--navy);
}

@media (max-width: 700px) {
  .privacy-hero {
    min-height: 306px;
    padding-top: 63px;
  }

  .privacy-hero h1 {
    width: 100%;
    font-size: 30px;
    line-height: normal;
  }

  .privacy-hero-inner {
    width: 89.49%;
    margin-right: auto;
    margin-left: 4.1%;
  }

  .privacy-section {
    padding: 16px 0;
  }

  .privacy-section:last-child {
    padding-bottom: 50px;
  }

  .privacy-section .container {
    width: calc(100% - 32px);
  }

  .privacy-section h2 {
    margin-bottom: 23px;
    font-size: 30px;
    line-height: 40px;
  }

  .privacy-section p,
  .privacy-section li {
    font-size: 20.8px;
    line-height: 37.99px;
  }

  .privacy-section ul {
    margin-top: 37.99px;
    padding-left: 0;
    list-style: none;
  }

  .cookie-consent {
    right: 16px;
    bottom: 32px;
    left: 16px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    width: calc(100% - 32px);
    margin-inline: 0;
    padding: 32px;
    border-radius: 12px;
  }

  .cookie-consent-copy {
    width: 100%;
  }

  .cookie-consent-actions {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .cookie-consent .btn {
    min-width: 0;
    width: auto;
    padding: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-consent,
  .cookie-consent * {
    scroll-behavior: auto;
    transition: none !important;
  }
}
