:root {
  --ink: #162622;
  --muted: #63736f;
  --surface: #ffffff;
  --soft: #f4f7f3;
  --line: #dfe7e2;
  --green: #0e6b57;
  --green-dark: #084637;
  --teal: #00acbb;
  --teal-dark: #0094a1;
  --yellow: #ffc42e;
  --orange: #ff8b16;
  --coral: #e98265;
  --gold: #c99438;
  --shadow: 0 24px 70px rgba(22, 38, 34, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body > a,
body > nav,
body > header {
  display: none;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  padding: 14px 0;
  background: rgba(244, 247, 243, 0.88);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(223, 231, 226, 0.8);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--green);
  color: white;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #32433f;
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #e8efeb;
  outline: none;
}

.site-nav .nav-cta {
  margin-left: 6px;
  background: var(--green-dark);
  color: white;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(20px, 1fr) minmax(0, 520px) minmax(420px, 600px) minmax(20px, 1fr);
  align-items: center;
  column-gap: 46px;
  row-gap: 22px;
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  padding: 58px 0 0;
  overflow: hidden;
  background:
    linear-gradient(153deg, rgba(0, 137, 151, 0.22) 0 45%, transparent 45%),
    linear-gradient(160deg, rgba(0, 131, 144, 0.16) 0 34%, transparent 34%),
    var(--teal);
  color: white;
}

.hero-copy {
  position: relative;
  z-index: 4;
  grid-column: 2 / 3;
  align-self: center;
  padding: 0 0 90px;
}

.hero-logo {
  width: min(190px, 48vw);
  margin-bottom: 88px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 6vw, 5.65rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 560px;
  color: white;
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1.02;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.13rem;
}

.hero .hero-text {
  max-width: 590px;
  color: white;
  font-size: 1.32rem;
  font-weight: 700;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--green);
  color: white;
  box-shadow: 0 12px 28px rgba(14, 107, 87, 0.22);
}

.button.primary:hover {
  background: var(--green-dark);
}

.hero .button.primary {
  min-height: 76px;
  padding-inline: 44px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  color: #071619;
  text-transform: uppercase;
  box-shadow: 0 20px 38px rgba(255, 139, 22, 0.2);
}

.hero .button.primary:hover {
  background: linear-gradient(90deg, #ffd96a, #ff981f);
}

.hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.button.secondary {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  grid-column: 2 / 4;
  z-index: 4;
  max-width: 650px;
  width: min(760px, 100%);
  margin: -24px 0 36px;
}

.hero-metrics div {
  padding: 18px;
  border: 1px solid rgba(9, 39, 43, 0.45);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(0, 66, 72, 0.12);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.45rem;
}

.hero-metrics span {
  color: #274641;
  font-size: 0.88rem;
}

.hero-metrics strong {
  color: #071619;
}

.hero-media {
  position: relative;
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}

.hero-portrait {
  align-self: stretch;
  min-height: 590px;
}

.portrait-stage {
  position: relative;
  height: 100%;
  min-height: 590px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.portrait-stage::after {
  position: absolute;
  inset: 78% -45vw -120px -55vw;
  z-index: 1;
  border-radius: 36px 36px 0 0;
  background:
    linear-gradient(70deg, transparent 0 22%, rgba(255, 255, 255, 0.48) 22% 38%, transparent 38%),
    linear-gradient(110deg, transparent 0 58%, rgba(255, 255, 255, 0.58) 58% 70%, transparent 70%),
    #e9eceb;
  content: "";
}

.doctor-photo {
  position: absolute;
  left: 50%;
  top: 32px;
  z-index: 2;
  width: min(86%, 480px);
  max-width: none;
  transform: translateX(-54%);
  filter: drop-shadow(0 22px 34px rgba(0, 56, 65, 0.16));
}

.portrait-polygon {
  position: absolute;
  right: -22%;
  bottom: -26%;
  z-index: 3;
  width: min(70%, 430px);
  max-width: none;
  filter: drop-shadow(0 22px 30px rgba(0, 88, 96, 0.2));
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.trust-strip span {
  min-height: 68px;
  display: grid;
  place-items: center;
  padding: 14px;
  background: white;
  color: #43534f;
  font-weight: 750;
  text-align: center;
}

.section,
.process,
.proof,
.testimonials,
.faq {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.feature-grid,
.testimonials {
  overflow: hidden;
}

.testimonials .section-heading {
  max-width: 980px;
}

.testimonials .section-heading h2 {
  margin-bottom: 10px;
}

.testimonials .section-heading p:not(.eyebrow) {
  color: #314641;
  font-size: 1.05rem;
}

.testimonial-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  padding: 4px 0;
}

.testimonial-marquee::before,
.testimonial-marquee::after {
  position: absolute;
  top: 0;
  z-index: 2;
  width: 80px;
  height: 100%;
  pointer-events: none;
  content: "";
}

.testimonial-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--soft), rgba(244, 247, 243, 0));
}

.testimonial-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--soft), rgba(244, 247, 243, 0));
}

.testimonial-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: testimonial-scroll 34s linear infinite;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  flex: 0 0 340px;
  min-height: 260px;
  padding: 30px 26px;
  border-radius: 8px;
  background: linear-gradient(160deg, #0b7e84, #075f65);
  color: white;
  box-shadow: 0 18px 38px rgba(5, 65, 70, 0.16);
}

.testimonial-card::before {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.24);
  font-size: 4rem;
  font-weight: 900;
  line-height: 0.55;
  content: "“";
}

.testimonial-card p {
  margin-bottom: 22px;
  color: white;
  font-size: 0.98rem;
  font-weight: 650;
}

.testimonial-card strong {
  display: block;
  color: white;
  font-weight: 900;
}

@keyframes testimonial-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.price-card,
.quote,
.timeline article,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 28px rgba(22, 38, 34, 0.06);
}

.feature-card {
  min-height: 240px;
  padding: 24px;
}

.feature-card .icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: #e8f4f2;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 850;
}

.feature-card p,
.timeline p,
.price-card p,
.faq p,
.proof-list li,
footer {
  color: var(--muted);
}

.process {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.timeline article {
  padding: 28px;
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--coral);
  color: white;
  font-weight: 850;
}

.proof {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
  align-items: center;
}

.quote {
  padding: 34px;
  background: var(--green-dark);
  color: white;
}

.quote p {
  font-size: 1.24rem;
  font-weight: 650;
}

.quote span {
  display: block;
  margin-top: 4px;
  color: #b9d4cd;
}

.proof-list {
  padding: 26px 0 26px 26px;
}

.proof-list ul,
.price-card ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.proof-list li,
.price-card li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 24px;
}

.proof-list li::before,
.price-card li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
  content: "✓";
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(14, 107, 87, 0.45);
  box-shadow: var(--shadow);
}

.price-card strong {
  display: block;
  margin: 20px 0;
  font-size: 2rem;
  line-height: 1;
}

.price-card strong span {
  color: var(--muted);
  font-size: 0.95rem;
}

.badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff3ec;
  color: #9b5039;
  font-size: 0.78rem;
  font-weight: 850;
}

.proof-list li::before,
.price-card li::before {
  top: 0.46em;
  width: 12px;
  height: 7px;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  color: transparent;
  content: "";
  transform: rotate(-45deg);
}

.offers {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 100px;
}

.offers::after {
  position: absolute;
  top: 70px;
  right: -20vw;
  z-index: -1;
  width: 360px;
  height: 520px;
  background:
    linear-gradient(135deg, transparent 0 28%, rgba(61, 174, 163, 0.1) 28% 72%, transparent 72%),
    linear-gradient(225deg, transparent 0 28%, rgba(14, 107, 87, 0.07) 28% 72%, transparent 72%);
  content: "";
}

.offers-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 54px;
  align-items: center;
  margin-bottom: 60px;
}

.offers-intro h2 {
  margin-bottom: 14px;
  font-size: clamp(2.5rem, 5vw, 4.05rem);
}

.offers-intro p {
  max-width: 690px;
  color: #314641;
  font-size: 1.17rem;
}

.eyebrow.spaced {
  color: #2a778d;
  font-weight: 500;
  letter-spacing: 0.34em;
}

.rating-card {
  padding: 26px 28px;
  border: 1px solid #b6dce3;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(232, 244, 242, 0.7));
  box-shadow: 0 26px 70px rgba(22, 38, 34, 0.08);
}

.rating-card div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.rating-card strong:first-child {
  color: #041719;
  font-size: 1.85rem;
  font-weight: 950;
  line-height: 1;
}

.rating-card p {
  margin: 0;
  color: #0a2530;
  font-size: 0.95rem;
}

.rating-card p strong {
  color: #03171d;
  font-weight: 900;
}

.stars {
  color: #f4ad2a;
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.offers-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.88fr);
  gap: 34px;
  align-items: stretch;
}

.value-card {
  padding: 30px 28px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 30px 70px rgba(22, 38, 34, 0.08);
}

.value-card h3 {
  margin-bottom: 12px;
  color: #041719;
  font-size: 1.35rem;
  font-weight: 900;
}

.value-card > p {
  max-width: 620px;
  color: #314641;
  font-size: 1.03rem;
}

.value-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.value-list div {
  position: relative;
  min-height: 110px;
  padding: 18px 18px 16px 62px;
  border: 1px solid #bfe4ea;
  border-radius: 8px;
  background: #eef7f8;
}

.value-list span {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 32px;
  height: 32px;
  border: 1px solid #9bd5de;
  border-radius: 50%;
  background: #d8f3f4;
}

.value-list span::after {
  position: absolute;
  top: 9px;
  left: 8px;
  width: 12px;
  height: 7px;
  border-bottom: 2px solid #075f65;
  border-left: 2px solid #075f65;
  content: "";
  transform: rotate(-45deg);
}

.value-list strong {
  display: block;
  margin-bottom: 6px;
  color: #06252b;
  font-size: 0.98rem;
  font-weight: 900;
}

.value-list p {
  margin: 0;
  color: #1d3c43;
  font-size: 0.9rem;
}

.promo-card {
  overflow: hidden;
  border: 1px solid #052f36;
  border-radius: 8px;
  background:
    linear-gradient(140deg, transparent 0 28%, rgba(255, 255, 255, 0.05) 28% 44%, transparent 44% 66%, rgba(255, 255, 255, 0.05) 66% 100%),
    linear-gradient(160deg, #104f5c, #087b7d 58%, #06444a);
  color: white;
  box-shadow: 0 34px 80px rgba(4, 34, 37, 0.25);
}

.promo-head {
  padding: 28px 28px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.promo-head span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.promo-head h3 {
  margin-bottom: 4px;
  font-size: 1.66rem;
  font-weight: 950;
}

.promo-head p,
.promo-note {
  color: rgba(255, 255, 255, 0.95);
}

.promo-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 28px 8px;
}

.promo-price div {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.promo-price span {
  font-size: 1.12rem;
  font-weight: 900;
}

.promo-price strong {
  font-size: clamp(3.2rem, 6vw, 4.35rem);
  font-weight: 950;
  line-height: 0.9;
}

.promo-price p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  text-align: right;
}

.promo-card ul {
  margin: 12px 0 18px;
  padding: 0 28px;
  list-style: none;
}

.promo-card li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 28px;
  font-size: 0.98rem;
}

.promo-card li::before {
  position: absolute;
  top: 0.46em;
  left: 2px;
  width: 12px;
  height: 7px;
  border-bottom: 2px solid white;
  border-left: 2px solid white;
  content: "";
  transform: rotate(-45deg);
}

.promo-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  margin: 0 28px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffd35a, #ff7c12);
  color: #071619;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 18px 40px rgba(255, 132, 20, 0.24);
}

.promo-note {
  margin: 0 28px 26px;
  text-align: center;
  font-size: 0.88rem;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq details {
  padding: 0 22px;
}

.faq summary {
  cursor: pointer;
  padding: 21px 0;
  font-weight: 800;
}

.faq p {
  margin-bottom: 22px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0 38px;
  border-top: 1px solid var(--line);
}

footer span:first-child {
  color: var(--ink);
  font-weight: 850;
}

@media (max-width: 960px) {
  .proof,
  .offers-intro,
  .offers-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: minmax(24px, 1fr) minmax(0, 680px) minmax(24px, 1fr);
    min-height: auto;
    row-gap: 26px;
    padding-top: 42px;
  }

  .hero-copy {
    grid-column: 2 / 3;
    padding-bottom: 0;
  }

  .hero-media,
  .hero-metrics {
    grid-column: 2 / 3;
    grid-row: auto;
  }

  .hero-metrics {
    margin-top: 0;
  }

  .hero-portrait,
  .portrait-stage {
    min-height: 560px;
  }

  .hero-logo {
    margin-bottom: 48px;
  }

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

  .rating-card {
    max-width: 640px;
  }

  .timeline,
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-list {
    padding-left: 0;
  }
}

@media (max-width: 720px) {
  .site-header,
  .section,
  .process,
  .proof,
  .testimonials,
  .faq,
  .offers,
  footer,
  .trust-strip {
    width: min(100% - 28px, 1180px);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: 8px;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    gap: 28px;
    width: 100%;
    padding: 28px 0 0;
  }

  .hero h1 {
    font-size: 2.72rem;
  }

  .hero .hero-text {
    font-size: 1.03rem;
  }

  .hero-actions {
    margin: 22px 0 4px;
  }

  .hero-logo {
    width: 150px;
    margin-bottom: 34px;
  }

  .hero .button.primary {
    min-height: 58px;
    padding-inline: 20px;
  }

  .hero-portrait,
  .portrait-stage {
    min-height: 620px;
  }

  .doctor-photo {
    top: 18px;
    width: min(86%, 410px);
    transform: translateX(-55%);
  }

  .portrait-polygon {
    right: -18%;
    bottom: -12%;
    width: min(70%, 340px);
  }

  .hero-metrics,
  .feature-grid,
  .timeline,
  .pricing-grid,
  .value-list,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    margin-bottom: 26px;
  }

  .offers {
    padding: 76px 0 80px;
  }

  .offers-intro {
    gap: 22px;
    margin-bottom: 32px;
  }

  .offers-intro h2 {
    font-size: 2.7rem;
  }

  .offers-intro p {
    font-size: 1.02rem;
  }

  .eyebrow.spaced {
    letter-spacing: 0.18em;
  }

  .value-card,
  .promo-head {
    padding-inline: 20px;
  }

  .promo-price {
    align-items: flex-start;
    flex-direction: column;
    padding-inline: 20px;
  }

  .promo-price p {
    text-align: left;
  }

  .promo-card ul,
  .promo-note {
    margin-inline: 20px;
    padding-inline: 0;
  }

  .promo-button {
    margin-inline: 20px;
    min-height: 62px;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.32rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .testimonial-card {
    flex-basis: 290px;
    min-height: 250px;
  }

  .testimonial-marquee::before,
  .testimonial-marquee::after {
    width: 34px;
  }

  .hero-portrait,
  .portrait-stage {
    min-height: 560px;
  }

  .doctor-photo {
    top: 16px;
    width: 88%;
  }
}

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