@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&display=swap');

:root {
  --bg: #f4f3f0;
  --card: #ffffff;
  --ink: #111111;
  --muted: #5a5a5a;
  --line: #dddddd;
  --accent: #0f5a4f;
  --accent-hover: #0a463d;
  --error: #ffd2da;
  --gate-max-width: 400px;
}

.guide-faq {
  background: #f7f3ed;
  padding: 46px 0 72px;
}

.guide-faq__inner {
  width: min(1295px, calc(100vw - 64px));
  margin-inline: auto;
}

.guide-faq__logo {
  display: block;
  width: 150px;
  height: auto;
  margin: 0 0 112px;
  filter: brightness(0) saturate(100%) invert(4%) sepia(100%) saturate(7210%)
    hue-rotate(244deg) brightness(85%) contrast(145%);
}

.guide-faq__header {
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: center;
}

.guide-faq__header--narrow {
  width: min(980px, 100%);
}

.guide-faq__eyebrow {
  margin: 0 0 34px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: rgb(0, 10, 119);
}

.guide-faq__title {
  margin: 0;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: clamp(56px, 7.6vw, 96px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgb(0, 10, 119);
}

.guide-faq__title--hcps {
  font-size: clamp(60px, 8vw, 96px);
  line-height: 1;
}

.guide-faq__subtitle {
  width: min(560px, 100%);
  margin: 26px auto 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: rgb(0, 10, 119);
}

.guide-faq__subtitle--hcps {
  width: min(690px, 100%);
  margin-top: 30px;
}

.guide-faq__filters {
  margin: 94px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.guide-faq__filter {
  min-width: 138px;
  min-height: 58px;
  border: 0;
  border-radius: 6px;
  background: #e9e4d8;
  color: rgb(0, 10, 119);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  padding: 0 22px;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}

.guide-faq__filter.is-active {
  background: #ffffff;
  border: 1px solid rgba(0, 10, 119, 0.9);
}

.guide-faq__grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px 36px;
}

.guide-faq__card {
  display: block;
  min-height: 450px;
  background: #f2eee3;
  padding: 44px 40px 38px;
  text-decoration: none;
  color: inherit;
  clip-path: polygon(
    0 0,
    calc(100% - 28px) 0,
    100% 28px,
    100% 100%,
    28px 100%,
    0 calc(100% - 28px)
  );
}

.guide-faq__card.is-hidden {
  opacity: 0;
  transform: translateY(12px);
}

.guide-faq__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  min-height: 46px;
  border-radius: 8px;
  background: #000a77;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
  padding: 0 16px;
}

.guide-faq__card-title {
  margin: 56px 0 20px;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: rgb(0, 10, 119);
}

.guide-faq__card-body {
  margin: 0;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: rgb(0, 10, 119);
}

@media (max-width: 1100px) {
  .guide-faq__inner {
    width: min(1295px, calc(100vw - 40px));
  }

  .guide-faq__logo {
    margin-bottom: 68px;
  }

  .guide-faq__filters {
    margin-top: 54px;
    gap: 14px;
  }

  .guide-faq__filter {
    min-width: 118px;
    min-height: 50px;
    font-size: 15px;
    padding: 0 16px;
  }

  .guide-faq__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .guide-faq__card {
    min-height: 350px;
    padding: 28px 24px;
  }

  .guide-faq__card-title {
    margin-top: 34px;
    font-size: 30px;
  }

  .guide-faq__card-body {
    font-size: 16px;
  }
}

@media (max-width: 720px) {
  .guide-faq {
    padding: 28px 0 46px;
  }

  .guide-faq__inner {
    width: calc(100vw - 24px);
  }

  .guide-faq__logo {
    width: 122px;
    margin-bottom: 42px;
  }

  .guide-faq__title {
    font-size: clamp(44px, 11vw, 72px);
  }

  .guide-faq__eyebrow {
    margin-bottom: 18px;
  }

  .guide-faq__subtitle--hcps {
    width: 100%;
  }

  .guide-faq__subtitle {
    margin-top: 18px;
    font-size: 15px;
    line-height: 23px;
  }

  .guide-faq__filters {
    margin-top: 34px;
    justify-content: flex-start;
  }

  .guide-faq__filter {
    min-width: 112px;
    min-height: 44px;
    font-size: 14px;
    border-radius: 5px;
  }

  .guide-faq__grid {
    margin-top: 36px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .guide-faq__card {
    min-height: 300px;
    padding: 24px 18px 22px;
    clip-path: polygon(
      0 0,
      calc(100% - 18px) 0,
      100% 18px,
      100% 100%,
      18px 100%,
      0 calc(100% - 18px)
    );
  }

  .guide-faq__badge {
    min-width: 102px;
    min-height: 38px;
    font-size: 15px;
  }

  .guide-faq__card-title {
    margin-top: 24px;
    font-size: 28px;
  }

  .guide-faq__card-body {
    font-size: 16px;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    'Poppins', 'Avenir Next', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

a {
  color: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.age-gate-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  background:
    radial-gradient(
      52% 42% at 12% 8%,
      rgba(8, 18, 170, 0.95) 0%,
      rgba(8, 18, 170, 0) 72%
    ),
    radial-gradient(
      58% 46% at 92% 10%,
      rgba(28, 129, 236, 0.72) 0%,
      rgba(28, 129, 236, 0) 72%
    ),
    radial-gradient(
      60% 56% at 92% 92%,
      rgba(15, 40, 198, 0.78) 0%,
      rgba(15, 40, 198, 0) 74%
    ),
    radial-gradient(
      62% 58% at 12% 94%,
      rgba(176, 10, 154, 0.48) 0%,
      rgba(176, 10, 154, 0) 72%
    ),
    radial-gradient(
      58% 48% at 50% 70%,
      rgba(123, 0, 224, 0.4) 0%,
      rgba(123, 0, 224, 0) 72%
    ),
    linear-gradient(104deg, #03067c 3%, #175dc6 100%);
  color: #ffffff;
}

.age-gate {
  position: relative;
  isolation: isolate;
  z-index: 2;
  min-height: 100vh;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem 30rem;
  display: grid;
}

.age-gate__panel {
  position: relative;
  z-index: 3;
  width: min(var(--gate-max-width), calc(100vw - 4rem));
  margin-inline: auto;
  display: grid;
  grid-template-rows: auto 1fr;
  justify-items: center;
}

.age-gate__bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      34% 30% at 50% 8%,
      rgba(112, 86, 255, 0.62) 0%,
      rgba(108, 80, 255, 0) 100%
    ),
    radial-gradient(
      54% 50% at 50% 58%,
      rgba(129, 0, 255, 0.62) 0%,
      rgba(132, 17, 255, 0.12) 44%,
      rgba(99, 23, 236, 0) 76%
    ),
    radial-gradient(
      46% 42% at 22% 86%,
      rgba(182, 18, 162, 0.34) 0%,
      rgba(182, 18, 162, 0) 72%
    );
}

.age-gate__bg::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 170vmax;
  height: 106vmax;
  transform: translateX(-50%);
  background: repeating-conic-gradient(
    from 206deg at 50% 100%,
    rgba(216, 226, 255, 0.28) 0deg 0.12deg,
    transparent 0.12deg 20deg
  );
  mask: radial-gradient(88% 88% at 50% 100%, #000 0 56%, transparent 67%);
  opacity: 0.42;
}

.age-gate__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
        to right,
        transparent 8%,
        rgba(168, 182, 255, 0.24) 50%,
        transparent 92%
      )
      50% 0 / 1px 76% no-repeat,
    linear-gradient(
        to right,
        transparent 0,
        rgba(168, 182, 255, 0.22) 6%,
        rgba(168, 182, 255, 0.22) 94%,
        transparent 100%
      )
      0 calc(100% - 77px) / 100% 1px no-repeat;
}

.age-gate__star {
  position: absolute;
  left: 50%;
  bottom: 17px;
  width: 92px;
  height: 92px;
  transform: translateX(-50%);
  background: url('../img/star_footer.png') center / contain no-repeat;
}

.age-gate__star::before {
  content: none;
}

.age-gate__brand {
  position: relative;
  z-index: 4;
  display: grid;
  justify-items: center;
  margin-top: 4.8rem;
  width: 100%;
  max-width: var(--gate-max-width);
}

.logo-image {
  width: 128px;
  height: auto;
  display: block;
}

.age-gate__form {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: var(--gate-max-width);
  margin: 5.2rem auto 0;
  display: grid;
  row-gap: 0;
  text-align: left;
}

.age-gate__intro {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: rgb(255, 255, 255);
}

.age-gate__headline {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(48px, 8vw, 56px);
  line-height: 1;
  font-weight: 400;
  color: rgb(255, 255, 255);
  margin-top: 0.7rem;
  margin-bottom: 3.8rem;
  width: 100%;
  max-width: var(--gate-max-width);
  overflow-wrap: anywhere;
}

.field-group {
  display: grid;
  gap: 0;
  border: 0;
  padding: 0;
  margin: 0 0 2.5rem;
  width: 100%;
  max-width: var(--gate-max-width);
}

.field-group > label,
.field-group > legend {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  text-align: left;
  margin: 0 0 1rem;
  padding: 0;
}

select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #ffffff;
  border-radius: 0.3rem;
  background:
    linear-gradient(
      135deg,
      rgba(177, 122, 255, 0.35) 0%,
      rgba(123, 79, 235, 0.35) 100%
    ),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath fill='white' d='M7 7.4.3.7l1-1L7 5.1 12.7-.3l1 1z'/%3E%3C/svg%3E")
      no-repeat right 14px center;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 24px;
  height: calc(2.4rem + 20px);
  padding: 0.8rem 1.2rem;
  font-weight: 400;
  color: rgb(255, 255, 255);
}

select:invalid {
  color: rgb(255, 255, 255);
}

select option {
  background-color: #410daf;
  color: #ffffff;
}

select option:checked {
  background-color: #410daf;
  color: #ffffff;
}

.dob-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  width: 100%;
}

.dob-grid select {
  text-align: center;
  padding: 0.8rem 0.9rem;
}

.remember-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  margin: 0 0 0.45rem;
  width: 100%;
  max-width: var(--gate-max-width);
  text-align: left;
}

.remember-row input {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.02rem;
  accent-color: #17a7ff;
}

.btn-enter {
  border: 0;
  border-radius: 0;
  width: 100%;
  background: rgba(203, 165, 243, 0.86);
  color: #2e1dc3;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  line-height: 1;
  font-weight: 400;
  min-height: 3.2rem;
  padding: 0;
  cursor: pointer;
  margin-top: 0;
  max-width: var(--gate-max-width);
}

.btn-enter:hover {
  background: rgba(213, 183, 244, 0.96);
}

.btn-enter:disabled {
  opacity: 0.5;
  background: rgba(203, 165, 243, 0.86);
  color: #2e1dc3;
  cursor: not-allowed;
}

.error-message {
  min-height: 0;
  color: var(--error);
  font-size: 0.82rem;
  line-height: 1;
  margin: 0 0 0.35rem;
}

.site-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: radial-gradient(circle at top right, #e8f0ed 0%, var(--bg) 55%);
}

.site-header,
.site-footer {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(4px);
}

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

.header-inner,
.footer-inner,
.content-inner {
  width: min(1100px, 94%);
  margin-inline: auto;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.brand {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.content-inner {
  padding: 2rem 0 3rem;
}

.hero {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  padding: clamp(1.2rem, 3vw, 2.5rem);
}

.grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  padding: 1rem;
}

.footer-inner {
  padding: 1rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.patients-page {
  --patients-soft-sections-bg:
    radial-gradient(
      70% 65% at 12% 72%,
      rgba(168, 227, 233, 0.9) 0%,
      rgba(168, 227, 233, 0.45) 36%,
      rgba(168, 227, 233, 0) 78%
    ),
    radial-gradient(
      78% 70% at 84% 18%,
      rgba(246, 244, 241, 0.98) 0%,
      rgba(246, 244, 241, 0.85) 42%,
      rgba(246, 244, 241, 0.18) 82%
    ),
    linear-gradient(135deg, #ccecf0 0%, #dff1f5 44%, #f3f2ef 100%);
  margin: 0;
  background:
    radial-gradient(
      55% 55% at 26% 43%,
      rgba(86, 233, 225, 0.34) 0%,
      rgba(86, 233, 225, 0) 72%
    ),
    radial-gradient(
      62% 60% at 23% 88%,
      rgba(18, 213, 188, 0.95) 0%,
      rgba(18, 213, 188, 0.45) 42%,
      rgba(18, 213, 188, 0) 78%
    ),
    radial-gradient(
      60% 58% at 92% 15%,
      rgba(24, 154, 244, 0.55) 0%,
      rgba(24, 154, 244, 0) 74%
    ),
    linear-gradient(112deg, #2b8ce9 0%, #0f9aee 42%, #20d0be 100%);
  background-attachment: fixed;
  color: #000a77;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Keep section backgrounds visible; reveal only the content for these sections. */
.patients-why.reveal-on-scroll,
.patients-window.reveal-on-scroll,
.patients-illuminate-break.reveal-on-scroll,
.lozenges-why.reveal-on-scroll,
.lozenges-dosing.reveal-on-scroll,
.patients-find.reveal-on-scroll,
.lozenges-quality.reveal-on-scroll,
.lozenges-steps.reveal-on-scroll,
.patients-footer.reveal-on-scroll {
  opacity: 1;
  transform: none;
  transition: none;
}

.patients-why.reveal-on-scroll .patients-why__inner,
.patients-window.reveal-on-scroll .patients-window__inner,
.lozenges-why.reveal-on-scroll .lozenges-why__inner,
.lozenges-dosing.reveal-on-scroll .lozenges-dosing__inner,
.patients-find.reveal-on-scroll .patients-find__header,
.patients-find.reveal-on-scroll .patients-find__grid-wrap,
.lozenges-quality.reveal-on-scroll .lozenges-quality__inner,
.lozenges-steps.reveal-on-scroll .lozenges-steps__header,
.lozenges-steps.reveal-on-scroll .lozenges-steps__scroll,
.lozenges-steps.reveal-on-scroll .lozenges-steps__cta-wrap,
.hcp-benefits.reveal-on-scroll .hcp-benefits__inner,
.patients-illuminate-break.reveal-on-scroll .patients-illuminate-break__inner,
.patients-illuminate-break.reveal-on-scroll .patients-illuminate-break__cross {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.patients-illuminate-break.reveal-on-scroll .patients-illuminate-break__cross {
  transform: translateX(-50%) translateY(18px);
}

.patients-why.reveal-on-scroll.is-visible .patients-why__inner,
.patients-window.reveal-on-scroll.is-visible .patients-window__inner,
.lozenges-why.reveal-on-scroll.is-visible .lozenges-why__inner,
.lozenges-dosing.reveal-on-scroll.is-visible .lozenges-dosing__inner,
.patients-find.reveal-on-scroll.is-visible .patients-find__header,
.patients-find.reveal-on-scroll.is-visible .patients-find__grid-wrap,
.lozenges-quality.reveal-on-scroll.is-visible .lozenges-quality__inner,
.lozenges-steps.reveal-on-scroll.is-visible .lozenges-steps__header,
.lozenges-steps.reveal-on-scroll.is-visible .lozenges-steps__scroll,
.lozenges-steps.reveal-on-scroll.is-visible .lozenges-steps__cta-wrap,
.hcp-benefits.reveal-on-scroll.is-visible .hcp-benefits__inner,
.patients-illuminate-break.reveal-on-scroll.is-visible
  .patients-illuminate-break__inner {
  opacity: 1;
  transform: translateY(0);
}

.patients-illuminate-break.reveal-on-scroll.is-visible
  .patients-illuminate-break__cross {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .patients-why.reveal-on-scroll .patients-why__inner,
  .patients-window.reveal-on-scroll .patients-window__inner,
  .lozenges-why.reveal-on-scroll .lozenges-why__inner,
  .lozenges-dosing.reveal-on-scroll .lozenges-dosing__inner,
  .patients-find.reveal-on-scroll .patients-find__header,
  .patients-find.reveal-on-scroll .patients-find__grid-wrap,
  .lozenges-quality.reveal-on-scroll .lozenges-quality__inner,
  .lozenges-steps.reveal-on-scroll .lozenges-steps__header,
  .lozenges-steps.reveal-on-scroll .lozenges-steps__scroll,
  .lozenges-steps.reveal-on-scroll .lozenges-steps__cta-wrap,
  .hcp-benefits.reveal-on-scroll .hcp-benefits__inner,
  .patients-illuminate-break.reveal-on-scroll .patients-illuminate-break__inner,
  .patients-illuminate-break.reveal-on-scroll
    .patients-illuminate-break__cross {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .patients-hero__media img,
  .patients-hero__media img.is-scroll-delayed,
  .patients-hero__media img.is-scroll-delayed.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.patients-shell {
  min-height: 100vh;
}

.patients-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 10, 119, 0.08);
}

.patients-header__inner {
  width: min(1295px, calc(100vw - 32px));
  margin-inline: auto;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.patients-header__left {
  display: flex;
  align-items: center;
}

.patients-lang-select {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23000A77' d='M6 7.2.6 1.3l1-1L6 4.8 10.4.3l1 1z'/%3E%3C/svg%3E")
    no-repeat right 2px center;
  color: #000a77;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1;
  padding: 0.25rem 1.2rem 0.25rem 0;
  height: auto;
  margin: 0;
  width: auto;
}

.patients-lang-select option {
  background-color: #ffffff;
  color: #000a77;
}

.patients-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1;
}

.patients-nav a {
  color: #000a77;
  text-decoration: none;
}

.patients-nav a.is-muted {
  opacity: 0.45;
}

.patients-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: transparent;
}

.patients-hero__media {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  pointer-events: none;
}

.patients-hero__media img {
  height: auto;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: right center;
  align-self: center;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.patients-hero__media img.is-scroll-delayed {
  opacity: 0;
  transform: translateY(-48px);
}

.patients-hero__media img.is-scroll-delayed.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.patients-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1295px, calc(100vw - 32px));
  margin-inline: auto;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
}

.patients-hero__copy {
  width: min(720px, 100%);
  color: #ffffff;
  padding: 3.9rem 0 4rem;
}

.patients-hero__logo {
  display: block;
  width: 148px;
  height: auto;
  margin: 0 0 4.4rem;
  filter: brightness(0) saturate(100%) invert(4%) sepia(100%) saturate(7210%)
    hue-rotate(244deg) brightness(85%) contrast(145%);
}

.patients-hero__title {
  margin: 0 0 1.6rem;
  color: #ffffff;
}

.patients-hero__title-line {
  display: block;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-size: clamp(3.8rem, 8.5vw, 135px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgb(255, 255, 255);
}

.patients-hero__title-line--bold {
  font-weight: 700;
}

.patients-hero__title-line--light {
  font-weight: 400;
  margin-bottom: 1rem;
}

.patients-hero__title-line + .patients-hero__title-line {
  margin-top: -0.06em;
}


.patients-hero__lead {
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 34px;
  color: rgb(255, 255, 255);
  max-width: 30ch;
  margin: 0;
}

.patients-hero__cta {
  margin-top: 2.1rem;
}

.patients-hope {
  position: relative;
  padding: 20px 0 0;
}

.patients-hope__inner {
  width: min(1295px, calc(100vw - 32px));
  margin-inline: auto;
}

.patients-hope__frame {
  position: relative;
  overflow: hidden;
  padding: 12px;
  min-height: clamp(520px, 62vw, 860px);
  clip-path: polygon(
    0 0,
    calc(100% - 52px) 0,
    100% 52px,
    100% 100%,
    52px 100%,
    0 calc(100% - 52px)
  );
}

.patients-hope__image {
  position: absolute;
  inset: 12px;
  clip-path: polygon(
    0 0,
    calc(100% - 34px) 0,
    100% 34px,
    100% 100%,
    34px 100%,
    0 calc(100% - 34px)
  );
}

.patients-hope__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1);
  animation: patientsHopeImageZoom 1800ms cubic-bezier(0.22, 1, 0.36, 1)
    forwards;
  will-change: transform;
}

@keyframes patientsHopeImageZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.3);
  }
}

.patients-hope__card {
  position: relative;
  z-index: 1;
  width: min(600px, calc(100% - 40px));
  margin: 60px 0 60px 60px;
  padding: 52px 52px 46px;
  border-radius: 12px;
  background: rgba(245, 243, 241, 0.8);
  backdrop-filter: blur(2px);
}

.patients-hope__title {
  margin: 0 0 28px;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-size: clamp(48px, 4.3vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: rgb(0, 10, 119);
}

.patients-hope__highlight {
  color: rgb(1, 207, 201);
  font-weight: 700;
}

.patients-hope__body {
  margin: 0 0 18px;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 23px;
  line-height: 28px;
  color: rgb(0, 10, 119);
  width: 100%;
  max-width: 100%;
}

.patients-hope__body:last-of-type {
  margin-bottom: 28px;
}

.patients-hope__cta {
  width: min(494px, 100%);
  min-height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 0 70px 0 24px;
  background: #18c5c6;
  color: #0b2a4a;
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.patients-hope__cta span:first-child {
  position: relative;
  z-index: 2;
  transition: transform 220ms ease;
}

.patients-hope__cta span:last-child {
  position: absolute;
  right: 0;
  top: 0;
  width: 56px;
  height: 100%;
  display: grid;
  place-items: center;
  background: #18c5c6;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease;
  z-index: 2;
}

.patients-hope__cta span:last-child::before {
  content: '';
  width: 24px;
  height: 24px;
  display: block;
  background-color: #ffffff;
  -webkit-mask-image: url('../img/arrow-next.svg');
  mask-image: url('../img/arrow-next.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.patients-hope__cta::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 100%;
  display: grid;
  place-items: center;
  background: #18c5c6;
  transform: translateX(-100%);
  opacity: 0;
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease;
  z-index: 1;
}

.patients-hope__cta:hover,
.patients-hope__cta:focus-visible {
  box-shadow: 0 10px 24px rgba(0, 10, 119, 0.12);
}

.patients-hope__cta:hover span:first-child,
.patients-hope__cta:focus-visible span:first-child {
  transform: translateX(44px);
}

.patients-hope__cta:hover span:last-child,
.patients-hope__cta:focus-visible span:last-child {
  transform: translateX(120%);
  opacity: 0;
}

.patients-hope__cta:hover::before,
.patients-hope__cta:focus-visible::before {
  transform: translateX(0);
  opacity: 1;
}

.patients-hope__cta::after {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-100%, -50%);
  opacity: 0;
  background-color: #ffffff;
  -webkit-mask-image: url('../img/arrow-next.svg');
  mask-image: url('../img/arrow-next.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease;
  z-index: 2;
}

.patients-hope__cta:hover::after,
.patients-hope__cta:focus-visible::after {
  transform: translate(0, -50%);
  opacity: 1;
}

.patients-hope__cta:active {
  transform: translateY(1px);
}

.patients-cbd {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  max-height: 850px;
  overflow: hidden;
  background: transparent;
}

.patients-cbd__media {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  pointer-events: none;
  width: 50vw;
  max-width: 50vw;
}

.patients-cbd__media img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: left bottom;
  display: block;
}

.patients-cbd__inner {
  position: relative;
  z-index: 1;
  width: min(1295px, calc(100vw - 32px));
  margin-inline: auto;
  min-height: 100vh;
  min-height: 100svh;
  max-height: 850px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.patients-cbd__copy {
  width: min(520px, 100%);
  margin-left: auto;
  color: #ffffff;
  padding: 4rem 0;
}

.patients-cbd__title {
  margin: 0;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  color: #ffffff;
}

.patients-cbd__title-line {
  display: block;
  font-size: clamp(44px, 4.9vw, 72px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.patients-cbd__title-line + .patients-cbd__title-line {
  margin-top: 0.08em;
}

.patients-cbd__title-line--bold {
  font-weight: 700;
}

.patients-cbd__divider {
  width: 148px;
  height: 2px;
  background: rgba(255, 255, 255, 0.92);
  margin: 30px 0 26px;
}

.patients-cbd__body {
  margin: 0 0 22px;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 23px;
  line-height: 1.28;
  color: #ffffff;
}

.patients-cbd__body:last-of-type {
  margin-bottom: 28px;
}

.patients-cbd__cta {
  width: 200px;
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 0 70px 0 24px;
  background: rgba(255, 255, 255, 0.95);
  color: #000a77;
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.patients-cbd__cta span:first-child {
  position: relative;
  z-index: 2;
  transition: transform 220ms ease;
}

.patients-cbd__cta::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 100%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(-100%);
  opacity: 0;
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease;
  z-index: 1;
}

.patients-cbd__cta span:last-child {
  position: absolute;
  right: 0;
  top: 0;
  width: 56px;
  height: 100%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.95);
  border-left: 1px solid rgba(0, 10, 119, 0.12);
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease;
  z-index: 2;
}

.patients-cbd__cta span:last-child::before {
  content: '';
  width: 24px;
  height: 24px;
  display: block;
  background-color: #000a77;
  -webkit-mask-image: url('../img/arrow-next.svg');
  mask-image: url('../img/arrow-next.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.patients-cbd__cta:hover,
.patients-cbd__cta:focus-visible {
  box-shadow: 0 10px 24px rgba(0, 10, 119, 0.12);
}

.patients-cbd__cta:hover span:first-child,
.patients-cbd__cta:focus-visible span:first-child {
  transform: translateX(44px);
}

.patients-cbd__cta:hover span:last-child,
.patients-cbd__cta:focus-visible span:last-child {
  transform: translateX(120%);
  opacity: 0;
}

.patients-cbd__cta:hover::before,
.patients-cbd__cta:focus-visible::before {
  transform: translateX(0);
  opacity: 1;
}

.patients-cbd__cta::after {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-100%, -50%);
  opacity: 0;
  background-color: #000a77;
  -webkit-mask-image: url('../img/arrow-next.svg');
  mask-image: url('../img/arrow-next.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease;
  z-index: 3;
}

.patients-cbd__cta:hover::after,
.patients-cbd__cta:focus-visible::after {
  transform: translate(0, -50%);
  opacity: 1;
}

.patients-cbd__cta:active {
  transform: translateY(1px);
}

.hcp-hero {
  position: relative;
  max-height: 1000px;
  overflow: hidden;
  background:
    radial-gradient(
      56% 60% at 78% 74%,
      rgba(228, 247, 240, 0.82) 0%,
      rgba(228, 247, 240, 0) 64%
    ),
    radial-gradient(
      52% 56% at 8% 92%,
      rgba(28, 210, 195, 0.92) 0%,
      rgba(28, 210, 195, 0.38) 44%,
      rgba(28, 210, 195, 0) 82%
    ),
    radial-gradient(
      70% 72% at 56% 8%,
      rgba(23, 148, 241, 0.58) 0%,
      rgba(23, 148, 241, 0) 68%
    ),
    linear-gradient(98deg, #12d2bf 0%, #1ca3ee 54%, #2a87ec 100%);
}

.hcp-hero__media {
  position: absolute;
  inset: 0 auto 0 50%;
  width: min(1295px, calc(100vw - 32px));
  transform: translateX(-50%);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  pointer-events: none;
}

.hcp-hero__media img {
  width: min(100%, 730px);
  max-width: 100%;
  max-height: 730px;
  height: auto;
  object-fit: contain;
  display: block;
}

.hcp-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1295px, calc(100vw - 32px));
  min-height: 100vh;
  min-height: 100svh;
  max-height: 1000px;
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.hcp-hero__copy {
  width: min(640px, 100%);
  color: #ffffff;
  padding: 54px 0 64px;
  align-self: flex-start;
}

.hcp-hero__logo {
  display: block;
  width: 148px;
  height: auto;
  margin: 0 0 104px;
  filter: brightness(0) saturate(100%) invert(4%) sepia(100%) saturate(7210%)
    hue-rotate(244deg) brightness(85%) contrast(145%);
}

.hcp-hero__title {
  margin: 0 0 36px;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(46px, 5vw, 64px);
  line-height: 64px;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.hcp-hero__body {
  margin: 0 0 48px;
  max-width: 40ch;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 23px;
  line-height: 28px;
  color: #ffffff;
}

.hcp-hero__cta {
  width: 214px;
  min-height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 0 56px 0 24px;
  background: rgba(255, 255, 255, 0.95);
  color: #000a77;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  white-space: nowrap;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.hcp-hero__cta span:first-child {
  position: relative;
  z-index: 2;
  transition: transform 220ms ease;
}

.hcp-hero__cta::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 100%;
  display: grid;
  place-items: center;
  color: #000a77;
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(-100%);
  opacity: 0;
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease;
  z-index: 1;
}

.hcp-hero__cta span:last-child {
  position: absolute;
  right: 0;
  top: 0;
  width: 56px;
  height: 100%;
  display: grid;
  place-items: center;
  color: #000a77;
  background: rgba(255, 255, 255, 0.95);
  border-left: 1px solid rgba(0, 10, 119, 0.12);
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease;
  z-index: 2;
}

.hcp-hero__cta:hover,
.hcp-hero__cta:focus-visible {
  box-shadow: 0 10px 24px rgba(0, 10, 119, 0.16);
}

.hcp-hero__cta:hover span:first-child,
.hcp-hero__cta:focus-visible span:first-child {
  transform: translateX(36px);
}

.hcp-hero__cta:hover span:last-child,
.hcp-hero__cta:focus-visible span:last-child {
  transform: translateX(120%);
  opacity: 0;
}

.hcp-hero__cta:hover::before,
.hcp-hero__cta:focus-visible::before {
  transform: translateX(0);
  opacity: 1;
}

.hcp-hero__cta:active {
  transform: translateY(1px);
}

.hcp-benefits {
  background:
    radial-gradient(
      46% 54% at 12% 16%,
      rgba(210, 245, 236, 0.88) 0%,
      rgba(210, 245, 236, 0.46) 34%,
      rgba(210, 245, 236, 0.12) 58%,
      rgba(210, 245, 236, 0) 82%
    ),
    linear-gradient(90deg, #f3f7f2 0%, #f7f6f2 48%, #faf9f5 100%);
  color: rgb(0, 10, 119);
  padding: 76px 0 86px;
}

.hcp-benefits__inner {
  width: min(1295px, calc(100vw - 32px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: start;
}

.hcp-benefits__copy {
  min-width: 0;
  padding-top: 22px;
}

.hcp-benefits__title {
  margin: 0;
  letter-spacing: -0.03em;
}

.hcp-benefits__title-strong,
.hcp-benefits__title-light {
  display: block;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-size: clamp(46px, 5vw, 68px);
  line-height: 1;
  color: rgb(0, 10, 119);
}

.hcp-benefits__title-strong {
  font-weight: 700;
}

.hcp-benefits__title-light {
  font-weight: 400;
}

.hcp-benefits__divider {
  width: 148px;
  height: 2px;
  margin: 28px 0 30px;
  background: rgba(0, 10, 119, 0.92);
}

.hcp-benefits__body {
  margin: 0 0 24px;
  max-width: 40ch;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 23px;
  line-height: 28px;
  color: rgb(0, 10, 119);
}

.hcp-benefits__body:last-of-type {
  margin-bottom: 0;
}

.hcp-benefits__body a {
  font-weight: 700;
  text-decoration: underline;
}

.hcp-benefits__grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
}

.hcp-benefits__card {
  --hcp-benefits-cut: 26px;
  --hcp-benefits-border: rgba(0, 10, 119, 0.95);
  min-height: 350px;
  padding: 34px 38px 34px;
  background: transparent;
  position: relative;
  border: 1px solid var(--hcp-benefits-border);
  clip-path: polygon(
    0 0,
    calc(100% - var(--hcp-benefits-cut)) 0,
    100% var(--hcp-benefits-cut),
    100% 100%,
    var(--hcp-benefits-cut) 100%,
    0 calc(100% - var(--hcp-benefits-cut))
  );
}

.hcp-benefits__card::before,
.hcp-benefits__card::after {
  content: '';
  position: absolute;
  width: calc(var(--hcp-benefits-cut) * 1.45);
  height: 1px;
  background: var(--hcp-benefits-border);
  pointer-events: none;
  z-index: 2;
}

.hcp-benefits__card::before {
  top: calc(var(--hcp-benefits-cut) / 2 - 0.5px);
  right: calc(var(--hcp-benefits-cut) / -4);
  transform: rotate(45deg);
  transform-origin: center;
}

.hcp-benefits__card::after {
  bottom: calc(var(--hcp-benefits-cut) / 2 - 0.5px);
  left: calc(var(--hcp-benefits-cut) / -4);
  transform: rotate(45deg);
  transform-origin: center;
}

.hcp-benefits__icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.hcp-benefits__card-title {
  margin: 86px 0 20px;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgb(0, 10, 119);
}

.hcp-benefits__card-body {
  margin: 0;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: rgb(0, 10, 119);
}

@media (max-width: 1100px) {
  .hcp-hero__media img {
    width: min(100%, 620px);
    max-height: 620px;
  }

  .hcp-hero__copy {
    width: min(560px, 100%);
    padding: 42px 0 46px;
  }

  .hcp-hero__logo {
    margin-bottom: 72px;
  }

  .hcp-hero__title {
    font-size: clamp(40px, 5.5vw, 60px);
  }

  .hcp-benefits {
    padding: 58px 0 64px;
  }

  .hcp-benefits__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hcp-benefits__copy {
    padding-top: 0;
  }

  .hcp-benefits__body {
    max-width: 32ch;
  }

  .hcp-benefits__card {
    min-height: 310px;
    padding: 28px 30px;
  }

  .hcp-benefits__card-title {
    margin-top: 62px;
    font-size: 28px;
  }
}

.patients-find {
  background: #ffffff;
  color: rgb(0, 10, 119);
  border-top: 1px solid rgba(0, 10, 119, 0.08);
  border-bottom: 1px solid rgba(0, 10, 119, 0.08);
}

.patients-find__header {
  width: min(1295px, 100%);
  margin-inline: auto;
  padding: 20px 16px 16px;
  display: grid;
  justify-items: center;
  background: transparent;
}

.patients-find__title {
  margin: 0;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 45px;
  line-height: 45px;
  letter-spacing: -0.02em;
  color: rgb(0, 10, 119);
}

.patients-find__divider {
  width: 184px;
  height: 1px;
  margin-top: 18px;
  background: rgba(0, 10, 119, 0.9);
}

.patients-find__grid-wrap {
  width: 100%;
  border-top: 1px solid rgba(0, 10, 119, 0.08);
  background: transparent;
}

.patients-find__grid {
  width: min(1295px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: transparent;
}

.patients-find__item {
  min-height: 620px;
  padding: 64px 32px 56px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  background: #ffffff;
}

.patients-find__item > a {
  display: grid;
  justify-items: center;
  align-content: center;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.patients-find__item + .patients-find__item {
  border-left: 1px solid rgba(0, 10, 119, 0.08);
}

.patients-find__image-wrap {
  width: min(290px, 100%);
  min-height: 260px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
}

.patients-find__image-wrap img {
  max-width: 100%;
  max-height: 260px;
  width: auto;
  height: auto;
  display: block;
}

.patients-find__item-title {
  margin: 0 0 16px;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  color: rgb(0, 10, 119);
  max-width: 30ch;
}

.patients-find__item-body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: rgb(0, 10, 119);
  max-width: 29ch;
}

.patients-why {
  background: var(--patients-soft-sections-bg);
  color: rgb(0, 10, 119);
}

.patients-why__inner {
  width: min(1295px, calc(100vw - 32px));
  margin-inline: auto;
  padding: 46px 0 60px;
}

.patients-why__eyebrow {
  margin: 0 0 22px;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 23px;
  line-height: 23px;
  color: rgb(0, 10, 119);
}

.patients-why__title {
  margin: 0 0 48px;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(52px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgb(0, 10, 119);
  max-width: 18ch;
}

.patients-why__title-highlight {
  color: rgb(1, 207, 201);
  font-weight: 700;
}

.patients-why__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.patients-why__card {
  --why-card-cut: 22px;
  --why-card-border: rgba(0, 10, 119, 0.9);
  min-height: 370px;
  padding: 34px 38px 34px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--why-card-border);
  clip-path: polygon(
    0 0,
    calc(100% - var(--why-card-cut)) 0,
    100% var(--why-card-cut),
    100% 100%,
    var(--why-card-cut) 100%,
    0 calc(100% - var(--why-card-cut))
  );
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.patients-why__card::before,
.patients-why__card::after {
  content: '';
  position: absolute;
  width: calc(var(--why-card-cut) * 1.45);
  height: 1px;
  background: var(--why-card-border);
  pointer-events: none;
  z-index: 2;
}

.patients-why__card::before {
  top: calc(var(--why-card-cut) / 2 - 0.5px);
  right: calc(var(--why-card-cut) / -4);
  transform: rotate(45deg);
  transform-origin: center;
}

.patients-why__card::after {
  bottom: calc(var(--why-card-cut) / 2 - 0.5px);
  left: calc(var(--why-card-cut) / -4);
  transform: rotate(45deg);
  transform-origin: center;
}

.patients-why__icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 78px;
}

.patients-why__card-title {
  margin: 0 0 18px;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 45px;
  line-height: 45px;
  letter-spacing: -0.02em;
  color: rgb(0, 10, 119);
}

.patients-why__card-body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 23px;
  line-height: 32px;
  color: rgb(0, 10, 119);
  max-width: 28ch;
}

.patients-why__card--image {
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  justify-content: stretch;
}

.patients-why__card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 10000ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.patients-why__card--image:hover img,
.patients-why__card--image:focus-within img {
  transform: scale(1.5);
}

@media (max-width: 520px) {
  .age-gate {
    width: 100%;
    padding: 0 1rem 10rem;
  }

  .age-gate__panel {
    width: min(var(--gate-max-width), calc(100vw - 2rem));
  }

  .age-gate__brand {
    margin-top: 2rem;
  }

  .logo-image {
    width: 108px;
  }

  .age-gate__form {
    margin-top: 2.2rem;
  }

  .age-gate__intro {
    font-size: 14px;
    line-height: 16px;
  }

  .age-gate__headline {
    font-size: clamp(44px, 13vw, 52px);
    margin-bottom: 2rem;
  }

  .field-group {
    margin-bottom: 1.25rem;
  }

  select {
    height: 44px;
    padding: 0.55rem 0.9rem;
    font-size: 16px;
    line-height: 20px;
  }

  .dob-grid {
    gap: 0.55rem;
  }

  .remember-row {
    gap: 0.55rem;
    margin-bottom: 0.35rem;
    font-size: 11px;
    line-height: 13px;
  }

  .remember-row input {
    width: 1rem;
    height: 1rem;
  }

  .btn-enter {
    font-size: 1rem;
    min-height: 44px;
  }

  .age-gate__star {
    bottom: 8px;
    transform: translateX(-50%) scale(0.62);
  }

  .patients-header__inner {
    width: calc(100vw - 16px);
    min-height: 52px;
  }

  .patients-nav {
    gap: 1.2rem;
    font-size: 15px;
  }

  .patients-hero {
    min-height: 100vh;
    min-height: 100svh;
    background: transparent;
  }

  .patients-hero__media img {
    width: auto;
    max-width: min(150vw, 980px);
    max-height: none;
    height: auto;
    opacity: 0.8;
  }

  .patients-hero__inner {
    width: calc(100vw - 16px);
    min-height: 100vh;
    min-height: 100svh;
    align-items: flex-start;
  }

  .patients-hero__copy {
    width: 100%;
    max-width: none;
    padding: 2rem 0 0;
  }

  .patients-hero__logo {
    width: 118px;
    margin-bottom: 1.6rem;
  }

  .patients-hero__title-line {
    font-size: clamp(2.7rem, 12.5vw, 56px);
  }

  .patients-hero__title {
    margin-bottom: 1rem;
  }


  .patients-hero__lead {
    font-size: 20px;
    line-height: 25px;
    max-width: calc(100vw - 32px);
  }

  .patients-hero__cta {
    margin-top: 1.2rem;
  }

  .patients-hope {
    padding-top: 12px;
    background: none;
  }

  .patients-hope__inner {
    width: calc(100vw - 16px);
  }
  .patients-hope__frame {
    min-height: 0;
    padding: 8px;
    clip-path: polygon(
      0 0,
      calc(100% - 26px) 0,
      100% 26px,
      100% 100%,
      26px 100%,
      0 calc(100% - 26px)
    );
  }

  .patients-hope__image {
    position: relative;
    height: 280px;
    inset: auto;
    clip-path: polygon(
      0 0,
      calc(100% - 18px) 0,
      100% 18px,
      100% 100%,
      18px 100%,
      0 calc(100% - 18px)
    );
  }

  .patients-hope__card {
    width: calc(100% - 24px);
    margin: -20px auto 16px;
    padding: 22px 18px 18px;
    border-radius: 10px;
  }

  .patients-hope__title {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.02;
    margin-bottom: 16px;
  }

  .patients-hope__body {
    font-size: 18px;
    line-height: 22px;
    max-width: 100%;
    margin-bottom: 14px;
  }

  .patients-hope__body:last-of-type {
    margin-bottom: 18px;
  }

  .patients-hope__cta {
    min-height: 54px;
    width: 100%;
    font-size: 18px;
    padding: 0 56px 0 16px;
  }

  .patients-hope__cta span:last-child {
    width: 44px;
  }

  .patients-hope__cta::before {
    width: 44px;
  }

  .patients-hope__cta span:last-child::before,
  .patients-hope__cta::after {
    width: 20px;
    height: 20px;
  }

  .patients-hope__cta:hover span:first-child,
  .patients-hope__cta:focus-visible span:first-child {
    transform: translateX(34px);
  }

  .patients-cbd {
    min-height: 100vh;
    min-height: 100svh;
    max-height: none;
    background: transparent;
  }

  .patients-cbd__media img {
    height: auto;
    width: 100%;
    max-width: none;
    opacity: 0.9;
  }

  .patients-cbd__inner {
    width: calc(100vw - 16px);
    justify-content: flex-start;
    align-items: flex-start;
  }

  .patients-cbd__copy {
    width: 100%;
    max-width: none;
    padding: 2rem 0 2.5rem;
  }

  .patients-cbd__title-line {
    font-size: clamp(34px, 9vw, 52px);
  }

  .patients-cbd__divider {
    width: 108px;
    margin: 18px 0 16px;
  }

  .patients-cbd__body {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 14px;
    max-width: 100%;
  }

  .patients-cbd__body:last-of-type {
    margin-bottom: 18px;
  }

  .patients-cbd__cta {
    width: 172px;
    min-height: 54px;
    font-size: 18px;
    padding: 0 56px 0 16px;
  }

  .patients-cbd__cta::before,
  .patients-cbd__cta span:last-child {
    width: 44px;
  }

  .patients-cbd__cta:hover span:first-child,
  .patients-cbd__cta:focus-visible span:first-child {
    transform: translateX(34px);
  }

  .patients-cbd__cta span:last-child::before,
  .patients-cbd__cta::after {
    width: 20px;
    height: 20px;
  }

  .patients-find__header {
    padding: 16px 8px 14px;
  }

  .patients-find__title {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1;
  }

  .patients-find__divider {
    width: 132px;
    margin-top: 12px;
  }

  .patients-find__grid {
    grid-template-columns: 1fr;
  }

  .patients-find__item {
    min-height: 0;
    padding: 32px 20px 28px;
  }

  .patients-find__item + .patients-find__item {
    border-left: 0;
    border-top: 1px solid rgba(0, 10, 119, 0.08);
  }

  .patients-find__image-wrap {
    width: min(220px, 100%);
    min-height: 180px;
    margin-bottom: 20px;
  }

  .patients-find__image-wrap img {
    max-height: 180px;
  }

  .patients-find__item-title {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 12px;
  }

  .patients-find__item-body {
    font-size: 12px;
    line-height: 18px;
    max-width: 30ch;
  }

  .patients-why__inner {
    width: calc(100vw - 16px);
    padding: 28px 0 36px;
  }

  .patients-why__eyebrow {
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 16px;
  }

  .patients-why__title {
    margin-bottom: 24px;
    font-size: clamp(30px, 9vw, 44px);
    line-height: 0.98;
    max-width: 100%;
  }

  .patients-why__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .patients-why__card {
    --why-card-cut: 16px;
    min-height: 0;
    padding: 20px 18px;
    clip-path: polygon(
      0 0,
      calc(100% - var(--why-card-cut)) 0,
      100% var(--why-card-cut),
      100% 100%,
      var(--why-card-cut) 100%,
      0 calc(100% - var(--why-card-cut))
    );
  }

  .patients-why__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 26px;
  }

  .patients-why__card-title {
    font-size: 28px;
    line-height: 30px;
    margin-bottom: 10px;
  }

  .patients-why__card-body {
    font-size: 16px;
    line-height: 22px;
    max-width: 100%;
  }

  .patients-why__card--image {
    min-height: 240px;
    padding: 0;
  }
}

.patients-window {
  position: relative;
  background: var(--patients-soft-sections-bg);
  overflow: hidden;
}

.patients-window__inner {
  position: relative;
  width: min(1295px, 100%);
  margin-inline: auto;
}

.patients-window__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.patients-window__panel {
  position: relative;
  min-height: 520px;
}

.patients-window__panel--text {
  display: flex;
  align-items: center;
}

.patients-window__copy {
  width: min(560px, calc(100% - 68px));
  margin-inline: auto;
  color: #000a77;
}

.patients-window__title {
  margin: 0;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -0.02em;
  color: rgb(0, 10, 119);
  max-width: 40ch;
}

.patients-window__title-highlight {
  color: rgb(1, 207, 201);
  font-weight: 700;
}

.patients-window__divider {
  width: 148px;
  height: 2px;
  background: rgba(0, 10, 119, 0.92);
  margin: 26px 0 22px;
}

.patients-window__body {
  margin: 0 0 28px;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 23px;
  line-height: 28px;
  color: rgb(0, 10, 119);
  max-width: 40ch;
}

.patients-window__cta {
  width: 214px;
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 0 60px 0 24px;
  border: 1px solid #000a77;
  background: transparent;
  color: #000a77;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.patients-window__cta span:first-child {
  position: relative;
  z-index: 2;
  transition: transform 220ms ease;
}

.patients-window__cta::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 100%;
  display: grid;
  place-items: center;
  background: transparent;
  border-right: 1px solid rgba(0, 10, 119, 0.2);
  transform: translateX(-100%);
  opacity: 0;
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease;
  z-index: 1;
}

.patients-window__cta span:last-child {
  position: absolute;
  right: 0;
  top: 0;
  width: 56px;
  height: 100%;
  display: grid;
  place-items: center;
  background: transparent;
  border-left: 1px solid rgba(0, 10, 119, 0.2);
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease;
  z-index: 2;
}

.patients-window__cta span:last-child::before {
  content: '';
  width: 24px;
  height: 24px;
  display: block;
  background-color: #000a77;
  -webkit-mask-image: url('../img/arrow-next.svg');
  mask-image: url('../img/arrow-next.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.patients-window__cta:hover,
.patients-window__cta:focus-visible {
  box-shadow: 0 10px 24px rgba(0, 10, 119, 0.08);
}

.patients-window__cta:hover span:first-child,
.patients-window__cta:focus-visible span:first-child {
  transform: translateX(44px);
}

.patients-window__cta:hover span:last-child,
.patients-window__cta:focus-visible span:last-child {
  transform: translateX(120%);
  opacity: 0;
}

.patients-window__cta:hover::before,
.patients-window__cta:focus-visible::before {
  transform: translateX(0);
  opacity: 1;
}

.patients-window__cta::after {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-100%, -50%);
  opacity: 0;
  background-color: #000a77;
  -webkit-mask-image: url('../img/arrow-next.svg');
  mask-image: url('../img/arrow-next.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease;
  z-index: 3;
}

.patients-window__cta:hover::after,
.patients-window__cta:focus-visible::after {
  transform: translate(0, -50%);
  opacity: 1;
}

.patients-window__cta:active {
  transform: translateY(1px);
}

.patients-window__panel--image {
  overflow: hidden;
}

.patients-window__panel--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.patients-window__panel--image-top {
  clip-path: polygon(0 0, 100% 0, 100% 76%, 0 100%);
}

.patients-window__panel--image-top img {
  object-position: center;
}

.patients-window__panel--image-bottom {
  clip-path: polygon(0 24%, 100% 0, 100% 100%, 0 100%);
}

.patients-window__panel--image-bottom img {
  object-position: center;
}

.patients-window__cross {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  z-index: 3;
  pointer-events: none;
}

.patients-window__cross img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0) saturate(100%) invert(6%) sepia(100%) saturate(5439%)
    hue-rotate(239deg) brightness(89%) contrast(122%);
}

.patients-illuminate-break {
  position: relative;
  width: 100%;
  min-height: 60vh;
  max-height: 860px;
  height: min(860px, 60vw);
  box-sizing: border-box;
  padding-top: 80px;
  overflow: hidden;
  background:
    radial-gradient(
      58% 58% at 8% 10%,
      rgba(113, 148, 255, 0.65) 0%,
      rgba(113, 148, 255, 0) 72%
    ),
    radial-gradient(
      65% 70% at 96% 26%,
      rgba(28, 223, 208, 0.48) 0%,
      rgba(28, 223, 208, 0) 72%
    ),
    radial-gradient(
      62% 65% at 0% 100%,
      rgba(39, 216, 207, 0.5) 0%,
      rgba(39, 216, 207, 0) 70%
    ),
    linear-gradient(135deg, #2e74f0 0%, #1494ef 52%, #19d0c7 100%);
}

.patients-illuminate-break__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.patients-illuminate-break__ray {
  position: absolute;
  left: 50%;
  bottom: 74px;
  width: 1px;
  height: 92%;
  background: rgba(255, 255, 255, 0.75);
  transform-origin: bottom center;
  opacity: 0.9;
}

.patients-illuminate-break__ray--1 {
  transform: translateX(-50%) rotate(-62deg);
}
.patients-illuminate-break__ray--2 {
  transform: translateX(-50%) rotate(-46deg);
}
.patients-illuminate-break__ray--3 {
  transform: translateX(-50%) rotate(-30deg);
}
.patients-illuminate-break__ray--4 {
  transform: translateX(-50%) rotate(-15deg);
}
.patients-illuminate-break__ray--5 {
  transform: translateX(-50%) rotate(15deg);
}
.patients-illuminate-break__ray--6 {
  transform: translateX(-50%) rotate(30deg);
}
.patients-illuminate-break__ray--7 {
  transform: translateX(-50%) rotate(46deg);
}
.patients-illuminate-break__ray--8 {
  transform: translateX(-50%) rotate(62deg);
}

.patients-illuminate-break__axis {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 74px;
  width: 1px;
  background: rgba(255, 255, 255, 0.5);
  transform: translateX(-50%);
}

.patients-illuminate-break__hline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 73px;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
}

.patients-illuminate-break__inner {
  position: relative;
  z-index: 2;
  width: min(1295px, calc(100vw - 32px));
  height: 100%;
  margin-inline: auto;
  display: grid;
  place-items: center;
  padding: 40px 0 130px;
}

.patients-illuminate-break__title {
  margin: 0;
  text-align: center;
  color: #ffffff;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(56px, 12vw, 202px);
  line-height: 0.90099;
  letter-spacing: -0.03em;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1) 140ms,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1) 140ms;
}

.patients-illuminate-break__title span {
  display: block;
}

.patients-illuminate-break.is-visible .patients-illuminate-break__title {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.patients-illuminate-break__cross {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 96px;
  height: 96px;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}

.patients-illuminate-break__cross img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.patients-footer {
  background: #ffffff;
  color: #000a77;
  border-top: 1px solid rgba(0, 10, 119, 0.06);
}

.patients-footer__inner {
  width: min(1295px, calc(100vw - 32px));
  margin-inline: auto;
  padding: 24px 0 16px;
}

.patients-footer__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.patients-footer__copyright {
  justify-self: start;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #000a77;
}

.patients-footer__audience,
.patients-footer__legal,
.patients-footer__lang {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.patients-footer__audience {
  justify-self: center;
}

.patients-footer__legal {
  justify-self: end;
}

.patients-footer__audience a {
  color: #000a77;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 19px;
}

.patients-footer__legal a {
  color: #000a77;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
}

.patients-footer__lang a {
  color: #000000;
  text-decoration: none;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
}

.patients-footer__audience a.is-muted {
  color: rgba(0, 10, 119, 0.25);
}

.patients-footer__trademark {
  margin: 28px auto 24px;
  text-align: center;
  max-width: 70ch;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #000a77;
}

.patients-footer__lang {
  justify-content: center;
  width: 100%;
  gap: 18px;
}


.lozenges-hero {
  background:
    radial-gradient(
      48% 78% at 4% 54%,
      rgba(189, 245, 236, 0.94) 0%,
      rgba(189, 245, 236, 0.5) 42%,
      rgba(189, 245, 236, 0) 84%
    ),
    linear-gradient(90deg, #e8faf3 0%, #f4f5f2 60%, #f8f7f3 100%);
  color: rgb(0, 10, 119);
}

.lozenges-hero__inner {
  width: min(1295px, calc(100vw - 32px));
  margin-inline: auto;
  padding: 26px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: start;
}

.lozenges-hero__visual {
  min-width: 0;
}

.lozenges-hero__logo {
  width: 132px;
  display: block;
  margin: 0 0 74px;
  filter: brightness(0) saturate(100%) invert(8%) sepia(100%) saturate(6261%)
    hue-rotate(238deg) brightness(77%) contrast(133%);
}

.lozenges-hero__carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.34;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  touch-action: pan-y;
  user-select: none;
  cursor: grab;
  transform: scale(0.9, 0.95);
  transform-origin: left top;
}

.lozenges-hero__carousel::after {
  content: none;
}

.lozenges-hero__carousel.is-dragging {
  cursor: grabbing;
}

.lozenges-hero__slides {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
}

.lozenges-hero__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateX(0) scale(1.01);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 1;
}

.lozenges-hero__slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 2;
}

.lozenges-hero__slide.is-entering-from-right {
  opacity: 0;
  transform: translateX(42%) scale(1);
  z-index: 1;
  transition-delay: 120ms, 0ms;
}

.lozenges-hero__slide.is-entering-from-left {
  opacity: 0;
  transform: translateX(-42%) scale(1);
  z-index: 1;
  transition-delay: 120ms, 0ms;
}

.lozenges-hero__slide.is-entering-from-right.is-active,
.lozenges-hero__slide.is-entering-from-left.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.lozenges-hero__slide.is-leaving-to-left {
  opacity: 0;
  transform: translateX(-42%) scale(1);
  z-index: 2;
  transition-delay: 0ms, 0ms;
}

.lozenges-hero__slide.is-leaving-to-right {
  opacity: 0;
  transform: translateX(42%) scale(1);
  z-index: 2;
  transition-delay: 0ms, 0ms;
}

.lozenges-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  display: block;
}

.lozenges-hero__dots {
  margin-top: 18px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.lozenges-hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(1, 207, 201, 0.35);
  cursor: pointer;
  transition:
    width 180ms ease,
    background-color 180ms ease;
}

.lozenges-hero__dot.is-active {
  width: 28px;
  background: rgb(1, 207, 201);
}

.lozenges-hero__content {
  min-width: 0;
  padding-top: 146px;
}

.lozenges-hero__title {
  margin: 0 0 26px;
  color: rgb(0, 10, 119);
  text-align: center;
}

.lozenges-hero__title-line {
  display: block;
  letter-spacing: -0.03em;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-size: clamp(52px, 6.95vw, 90px);
  line-height: 1;
}

.lozenges-hero__title-line--light {
  font-weight: 400;
}

.lozenges-hero__title-line--bold {
  font-weight: 700;
}

.lozenges-hero__features {
  margin: 0 0 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.lozenges-hero__feature {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
}

.lozenges-hero__feature img,
.lozenges-hero__feature-30 {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  object-fit: contain;
  color: rgb(1, 207, 201);
  filter: brightness(0) saturate(100%) invert(71%) sepia(98%) saturate(1931%)
    hue-rotate(129deg) brightness(90%) contrast(102%);
}

.lozenges-hero__feature-30 {
  filter: none;
}

.lozenges-hero__feature span:last-child {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: rgb(0, 10, 119);
}

.lozenges-hero__body {
  margin: 0 0 28px;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 23px;
  line-height: 28px;
  color: rgb(0, 10, 119);
  max-width: 40ch;
  text-align: center;
  margin-inline: auto;
}

.lozenges-hero__dosage {
  margin-bottom: 24px;
}

.lozenges-hero__dosage-label {
  margin: 0 0 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: rgb(0, 10, 119);
}

.lozenges-hero__dosage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lozenges-hero__dose {
  position: relative;
  min-height: 86px;
  border: 2px solid rgba(92, 103, 255, 0.9);
  background: #fff;
  color: rgb(0, 10, 119);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 2px;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.lozenges-hero__dose:hover,
.lozenges-hero__dose:focus-visible {
  box-shadow: 0 8px 18px rgba(0, 10, 119, 0.08);
}

.lozenges-hero__dose:active {
  transform: translateY(1px);
}

.lozenges-hero__dose-check {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 32px;
  height: 28px;
  display: grid;
  place-items: center;
  background: #050a7a;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  line-height: 1;
  opacity: 0;
  transition: opacity 180ms ease;
}

.lozenges-hero__dose.is-selected .lozenges-hero__dose-check {
  opacity: 1;
}

.lozenges-hero__dose-mg {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
}

.lozenges-hero__dose-copy {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}

.lozenges-hero__cta {
  width: 100%;
  min-height: 70px;
  margin-bottom: 18px;
}

.lozenges-hero__hcp {
  margin: 0;
  text-align: center;
  color: rgb(0, 10, 119);
  display: grid;
  gap: 2px;
}

.lozenges-hero__hcp strong {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
}

.lozenges-hero__hcp span {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 14px;
}

.lozenges-hero__hcp a {
  text-decoration: underline;
}

.lozenges-why {
  position: relative;
  width: 100%;
  min-height: 420px;
  max-height: 600px;
  background:
    radial-gradient(
      58% 78% at 8% 100%,
      rgba(136, 188, 255, 0.55) 0%,
      rgba(136, 188, 255, 0) 75%
    ),
    radial-gradient(
      78% 90% at 98% 50%,
      rgba(30, 233, 210, 0.55) 0%,
      rgba(30, 233, 210, 0) 76%
    ),
    linear-gradient(100deg, #4987f0 0%, #1493ef 50%, #14d3c7 100%);
  color: #0b1f4f;
  overflow: hidden;
}

.lozenges-why__inner {
  width: min(1295px, calc(100vw - 32px));
  margin-inline: auto;
  min-height: inherit;
  max-height: inherit;
  padding: 86px 0 72px;
  box-sizing: border-box;
  display: grid;
  align-content: start;
}

.lozenges-why__header {
  margin-bottom: 58px;
}

.lozenges-why__title {
  margin: 0;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 3.5vw, 45px);
  line-height: 54px;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.lozenges-why__title strong {
  font-weight: 700;
}

.lozenges-why__divider {
  width: 148px;
  height: 2px;
  background: rgba(255, 255, 255, 0.95);
  margin-top: 28px;
}

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

.lozenges-why__item {
  min-width: 0;
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 12px;
}

.lozenges-why__icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.lozenges-why__item-title {
  margin: 0;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 32px;
  color: #ffffff;
}

.lozenges-why__item-body {
  margin: 6px 0 0;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 23px;
  line-height: 28px;
  color: #ffffff;
  max-width: 20ch;
}

.lozenges-dosing {
  position: relative;
  width: 100%;
  min-height: 700px;
  max-height: 800px;
  background:
    radial-gradient(
      44% 70% at 8% 52%,
      rgba(189, 245, 236, 0.92) 0%,
      rgba(189, 245, 236, 0.46) 44%,
      rgba(189, 245, 236, 0) 86%
    ),
    linear-gradient(90deg, #e7f8f2 0%, #f3f4f1 58%, #f7f6f2 100%);
  overflow: hidden;
}

.lozenges-dosing__inner {
  width: min(1295px, calc(100vw - 32px));
  margin-inline: auto;
  min-height: inherit;
  max-height: inherit;
  box-sizing: border-box;
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
}

.lozenges-dosing__copy {
  min-width: 0;
  color: rgb(0, 10, 119);
}

.lozenges-dosing__title {
  margin: 0;
  letter-spacing: -0.02em;
}

.lozenges-dosing__title-line {
  display: block;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-size: clamp(40px, 4.95vw, 64px);
  line-height: 64px;
}

.lozenges-dosing__title-line--teal {
  font-weight: 700;
  color: rgb(1, 207, 201);
}

.lozenges-dosing__title-line--blue {
  font-weight: 400;
  color: rgb(0, 10, 119);
  max-width: 20ch;
}

.lozenges-dosing__divider {
  width: 148px;
  height: 2px;
  margin: 24px 0 22px;
  background: rgba(0, 10, 119, 0.92);
}

.lozenges-dosing__body {
  margin: 0 0 18px;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 23px;
  line-height: 28px;
  color: rgb(0, 10, 119);
  max-width: 45ch;
}

.lozenges-dosing__body--dosage {
  margin-bottom: 0;
}

.lozenges-dosing__body--dosage strong {
  font-weight: 700;
}

.lozenges-dosing__visual {
  min-width: 0;
  display: grid;
  justify-items: end;
  align-items: center;
}

.lozenges-dosing__visual img {
  width: min(100%, 760px);
  max-height: 470px;
  height: auto;
  object-fit: contain;
  display: block;
}

.lozenges-quality {
  width: 100%;
  background:
    radial-gradient(
      44% 70% at 8% 52%,
      rgba(215, 242, 246, 0.95) 0%,
      rgba(215, 242, 246, 0.42) 44%,
      rgba(215, 242, 246, 0) 86%
    ),
    linear-gradient(90deg, #edf4f7 0%, #f4f3ef 58%, #f4f3ef 100%);
  color: rgb(0, 10, 119);
}

.lozenges-quality__inner {
  width: min(1295px, calc(100vw - 32px));
  margin-inline: auto;
  padding: 40px 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 54px;
  align-items: center;
}

.lozenges-quality__media {
  position: relative;
  min-width: 0;
  padding-top: 30px;
}

.lozenges-quality__cross {
  position: absolute;
  top: -4px;
  left: min(100%, calc(100% - 60px));
  width: 82px;
  height: 82px;
  z-index: 3;
  pointer-events: none;
}

.lozenges-quality__cross img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0) saturate(100%) invert(8%) sepia(96%) saturate(6286%)
    hue-rotate(241deg) brightness(84%) contrast(135%);
}

.lozenges-quality__image-wrap {
  position: relative;
  width: 100%;
  min-height: 420px;
  border-radius: 22px;
  overflow: hidden;
  background: transparent;
  clip-path: polygon(0 26%, 100% 0, 92% 100%, 0 100%);
}

.lozenges-quality__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: 46% center;
}

.lozenges-quality__copy {
  min-width: 0;
  color: rgb(0, 10, 119);
}

.lozenges-quality__title {
  margin: 0;
}

.lozenges-quality__title-line {
  display: block;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-size: clamp(40px, 4.95vw, 64px);
  line-height: 64px;
  letter-spacing: -0.02em;
}

.lozenges-quality__title-line--blue {
  font-weight: 400;
  color: rgb(0, 10, 119);
}

.lozenges-quality__title-line--teal {
  font-weight: 700;
  color: rgb(1, 207, 201);
}

.lozenges-quality__divider {
  width: 148px;
  height: 2px;
  margin: 26px 0 24px;
  background: rgba(0, 10, 119, 0.92);
}

.lozenges-quality__body {
  margin: 0;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 23px;
  line-height: 28px;
  color: rgb(0, 10, 119);
  max-width: 40ch;
}

.lozenges-steps {
  --steps-bleed-gutter: 24px;
  --steps-card-width: 368px;
  --steps-card-gap: 38px;
  width: 100%;
  background:
    radial-gradient(
      44% 70% at 8% 52%,
      rgba(215, 242, 246, 0.95) 0%,
      rgba(215, 242, 246, 0.42) 44%,
      rgba(215, 242, 246, 0) 86%
    ),
    linear-gradient(90deg, #edf4f7 0%, #f4f3ef 58%, #f4f3ef 100%);
  color: rgb(0, 10, 119);
  overflow: clip;
}

.lozenges-steps__header {
  width: min(1295px, calc(100vw - 32px));
  margin-inline: auto;
  padding: 28px 0 24px;
  text-align: center;
}

.lozenges-steps__title {
  margin: 0;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 4.95vw, 64px);
  line-height: 64px;
  letter-spacing: -0.02em;
  color: rgb(0, 10, 119);
}

.lozenges-steps__subtitle {
  margin: 18px auto 0;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 23px;
  line-height: 35px;
  color: rgb(0, 10, 119);
  max-width: 40ch;
}

.lozenges-steps__divider {
  width: 148px;
  height: 2px;
  margin: 22px auto 0;
  background: rgba(0, 10, 119, 0.92);
}

.lozenges-steps__scroll {
  position: relative;
  max-height: 650px;
}

.lozenges-steps__sticky {
  position: relative;
  top: 0;
  padding: 18px 0 10px;
}

.lozenges-steps__track-wrap {
  width: min(1295px, calc(100vw - 32px));
  margin-inline: auto;
  overflow: hidden;
}

.lozenges-steps__track {
  display: flex;
  gap: var(--steps-card-gap);
  width: max-content;
  padding: 0 var(--steps-bleed-gutter);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.lozenges-steps__card {
  --steps-cut: 22px;
  --steps-cut-diag: calc(var(--steps-cut) * 1.41421356);
  width: var(--steps-card-width);
  min-height: 372px;
  border: 1px solid rgba(0, 10, 119, 0.9);
  background: transparent;
  clip-path: polygon(
    0 var(--steps-cut),
    var(--steps-cut) 0,
    100% 0,
    100% calc(100% - var(--steps-cut)),
    calc(100% - var(--steps-cut)) 100%,
    0 100%
  );
  padding: 34px 38px 34px;
  box-sizing: border-box;
  display: grid;
  align-content: start;
  position: relative;
}

.lozenges-steps__card::before,
.lozenges-steps__card::after {
  content: '';
  position: absolute;
  width: var(--steps-cut-diag);
  height: 1px;
  background: rgba(0, 10, 119, 0.9);
  transform-origin: center;
  pointer-events: none;
}

.lozenges-steps__card::before {
  top: calc((var(--steps-cut) / 2) - 0.5px);
  left: calc((var(--steps-cut) - var(--steps-cut-diag)) / 2);
  transform: rotate(-45deg);
}

.lozenges-steps__card::after {
  right: calc((var(--steps-cut) - var(--steps-cut-diag)) / 2);
  bottom: calc((var(--steps-cut) / 2) - 0.5px);
  transform: rotate(-45deg);
}

.lozenges-steps__number {
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 96px;
  color: rgb(1, 207, 201);
  margin-bottom: 18px;
}

.lozenges-steps__card-title {
  margin: 0 0 18px;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 32px;
  color: rgb(0, 10, 119);
}

.lozenges-steps__card-body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: rgb(0, 10, 119);
}

.lozenges-steps__cta-wrap {
  display: grid;
  justify-items: center;
  margin-top: 50px;
}

.lozenges-steps__cta {
  width: 212px;
  min-height: 74px;
}

.lozenges-faq {
  width: 100%;
  background:
    radial-gradient(
      58% 58% at 8% 10%,
      rgba(113, 148, 255, 0.65) 0%,
      rgba(113, 148, 255, 0) 72%
    ),
    radial-gradient(
      65% 70% at 96% 26%,
      rgba(28, 223, 208, 0.48) 0%,
      rgba(28, 223, 208, 0) 72%
    ),
    radial-gradient(
      62% 65% at 0% 100%,
      rgba(39, 216, 207, 0.5) 0%,
      rgba(39, 216, 207, 0) 70%
    ),
    linear-gradient(135deg, #2e74f0 0%, #1494ef 52%, #19d0c7 100%);
  color: #000814;
}

.lozenges-faq-illuminate-bg {
  width: 100%;
  background:
    radial-gradient(
      58% 58% at 8% 10%,
      rgba(113, 148, 255, 0.65) 0%,
      rgba(113, 148, 255, 0) 72%
    ),
    radial-gradient(
      65% 70% at 96% 26%,
      rgba(28, 223, 208, 0.48) 0%,
      rgba(28, 223, 208, 0) 72%
    ),
    radial-gradient(
      62% 65% at 0% 100%,
      rgba(39, 216, 207, 0.5) 0%,
      rgba(39, 216, 207, 0) 70%
    ),
    linear-gradient(135deg, #2e74f0 0%, #1494ef 52%, #19d0c7 100%);
}

.lozenges-faq-illuminate-bg .lozenges-faq,
.lozenges-faq-illuminate-bg .patients-illuminate-break {
  background: transparent;
}

.lozenges-faq__inner {
  width: min(1295px, calc(100vw - 32px));
  margin-inline: auto;
  padding: 44px 0 48px;
}

.lozenges-faq__eyebrow {
  margin: 0 0 20px;
  text-align: center;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  color: #ffffff;
}

.lozenges-faq__title {
  margin: 0 0 44px;
  text-align: center;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 4.95vw, 64px);
  line-height: 64px;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.lozenges-faq__hero-copy {
  width: min(680px, 100%);
  margin: -8px auto 34px;
  text-align: center;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 23px;
  line-height: 28px;
  color: #ffffff;
}

.lozenges-faq__list {
  width: min(900px, 100%);
  margin-inline: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.88);
}

.lozenges-faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.88);
}

.lozenges-faq__question {
  width: 100%;
  border: 0;
  background: transparent;
  color: #ffffff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 28px 8px;
  cursor: pointer;
  text-align: left;
}

.lozenges-faq__question > span:first-child {
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 32px;
  color: #ffffff;
}

.lozenges-faq__icon {
  width: 28px;
  height: 28px;
  position: relative;
  display: grid;
  place-items: center;
}

.lozenges-faq__icon span {
  position: absolute;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 200ms ease;
}

.lozenges-faq__icon span:first-child {
  transform: rotate(0deg);
}

.lozenges-faq__icon span:last-child {
  transform: rotate(90deg);
}

.lozenges-faq__item.is-open .lozenges-faq__icon span:first-child {
  transform: rotate(45deg);
}

.lozenges-faq__item.is-open .lozenges-faq__icon span:last-child {
  transform: rotate(-45deg);
}

.lozenges-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 300ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
}

.lozenges-faq__item.is-open .lozenges-faq__answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.lozenges-faq__answer > * {
  min-height: 0;
}

.lozenges-faq__answer-box {
  overflow: hidden;
  margin: 0 0 16px;
  padding: 24px 28px;
  border-radius: 16px;
  background: rgba(236, 247, 255, 0.92);
  color: #0b1f4f;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.lozenges-faq__answer-box ol {
  margin: 0;
  padding-left: 1.35rem;
}

.lozenges-faq__answer-box li + li {
  margin-top: 4px;
}

.lozenges-faq__sources {
  margin: 0;
  padding-left: 1.35rem;
}

.lozenges-faq__sources li {
  margin: 0;
}

.lozenges-faq__sources a {
  color: inherit;
  text-decoration: underline;
}

.lozenges-faq__cta-wrap {
  display: grid;
  justify-items: center;
  margin-top: 26px;
  margin-bottom: 26px;
}

.lozenges-faq__cta {
  width: 204px;
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 0 56px 0 22px;
  background: rgba(255, 255, 255, 0.95);
  color: #000a77;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.lozenges-faq__cta--wide {
  width: 252px;
}

.lozenges-faq__cta span:first-child {
  position: relative;
  z-index: 2;
  white-space: nowrap;
  transition: transform 220ms ease;
}

.lozenges-faq__cta::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 52px;
  height: 100%;
  display: grid;
  place-items: center;
  color: #000a77;
  border-right: 1px solid rgba(0, 10, 119, 0.12);
  transform: translateX(-100%);
  opacity: 0;
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease;
  z-index: 1;
}

.lozenges-faq__cta span:last-child {
  position: absolute;
  right: 0;
  top: 0;
  width: 52px;
  height: 100%;
  display: grid;
  place-items: center;
  border-left: 1px solid rgba(0, 10, 119, 0.12);
  z-index: 2;
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease;
}

.lozenges-faq__cta:hover,
.lozenges-faq__cta:focus-visible {
  box-shadow: 0 12px 26px rgba(0, 10, 119, 0.14);
}

.lozenges-faq__cta:hover span:first-child,
.lozenges-faq__cta:focus-visible span:first-child {
  transform: translateX(38px);
}

.lozenges-faq__cta:hover span:last-child,
.lozenges-faq__cta:focus-visible span:last-child {
  transform: translateX(120%);
  opacity: 0;
}

.lozenges-faq__cta:hover::before,
.lozenges-faq__cta:focus-visible::before {
  transform: translateX(0);
  opacity: 1;
}

.lozenges-faq__cta:active {
  transform: translateY(1px);
}

.lozenges-order-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 12px;
}

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

.lozenges-order-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 15, 40, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 220ms ease;
}

.lozenges-order-modal__dialog {
  position: relative;
  width: min(1060px, calc(100vw - 24px));
  min-height: min(706px, calc(100vh - 24px));
  max-height: calc(100vh - 24px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 10, 40, 0.26);
  transform: translateY(12px) scale(0.985);
  opacity: 0;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
}

.lozenges-order-modal.is-open .lozenges-order-modal__backdrop {
  opacity: 1;
}

.lozenges-order-modal.is-open .lozenges-order-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.lozenges-order-modal__panel {
  min-width: 0;
  overflow: auto;
}

.lozenges-order-modal__panel--left {
  background: #ffffff;
}

.lozenges-order-modal__panel--right {
  background: #f2eee3;
}

.lozenges-order-modal__panel-inner {
  padding: 76px 48px 42px;
}

.lozenges-order-modal__close {
  position: absolute;
  top: 18px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
}

.lozenges-order-modal__close span {
  position: absolute;
  width: 26px;
  height: 2px;
  background: rgb(0, 10, 119);
  border-radius: 999px;
}

.lozenges-order-modal__close span:first-child {
  transform: rotate(45deg);
}

.lozenges-order-modal__close span:last-child {
  transform: rotate(-45deg);
}

.lozenges-order-modal__title-left {
  margin: 34px 0 10px;
  text-align: center;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 32px;
  color: rgb(0, 10, 119);
}

.lozenges-order-modal__subcopy {
  margin: 0 auto 44px;
  max-width: 28ch;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: rgb(0, 10, 119);
}

.lozenges-order-modal__vendor-list {
  display: grid;
  gap: 30px;
}

.lozenges-order-modal__vendor {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: rgb(0, 10, 119);
}

.lozenges-order-modal__vendor img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  display: block;
  border-radius: 6px;
}

.lozenges-order-modal__vendor > span:nth-child(2) {
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 23px;
  line-height: 35px;
  color: rgb(0, 10, 119);
}

.lozenges-order-modal__vendor > span:last-child {
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 38px;
  line-height: 1;
  transform: translateY(-1px);
}

.lozenges-order-modal__title-right {
  margin: 42px 0 16px;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 32px;
  color: rgb(0, 10, 119);
}

.lozenges-order-modal__title-right span {
  font-weight: 700;
}

.lozenges-order-modal__body {
  margin: 0 0 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: rgb(0, 10, 119);
}

.lozenges-order-modal__body--small {
  margin-bottom: 18px;
  font-size: 12px;
  line-height: 17px;
}

.lozenges-order-modal__body-heading {
  margin: 0 0 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: rgb(0, 10, 119);
}

.lozenges-order-modal__steps {
  margin: 0 0 26px;
  padding: 0 0 0 32px;
  list-style: none;
  position: relative;
  display: grid;
  gap: 14px;
}

.lozenges-order-modal__steps::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 8px;
  bottom: 14px;
  width: 1px;
  border-left: 2px dotted rgba(0, 10, 119, 0.95);
}

.lozenges-order-modal__step {
  position: relative;
}

.lozenges-order-modal__step::before {
  content: '';
  position: absolute;
  left: -23px;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f2eee3;
  border: 1px solid rgba(0, 10, 119, 0.95);
}

.lozenges-order-modal__step-title {
  margin: 0 0 2px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: rgb(0, 10, 119);
}

.lozenges-order-modal__step p {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  color: rgb(0, 10, 119);
}

.lozenges-order-modal__cta {
  width: 100%;
  min-height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 60px 0 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 10, 119, 0.95);
  color: rgb(0, 10, 119);
  text-decoration: none;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 23px;
  line-height: 35px;
  background: transparent;
}

.lozenges-order-modal__cta span:first-child {
  position: relative;
  z-index: 2;
  transition: transform 220ms ease;
}

.lozenges-order-modal__cta::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 100%;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(0, 10, 119, 0.15);
  transform: translateX(-100%);
  opacity: 0;
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease;
}

.lozenges-order-modal__cta span:last-child {
  position: absolute;
  right: 0;
  top: 0;
  width: 56px;
  height: 100%;
  display: grid;
  place-items: center;
  border-left: 1px solid rgba(0, 10, 119, 0.15);
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease;
}

.lozenges-order-modal__cta:hover span:first-child,
.lozenges-order-modal__cta:focus-visible span:first-child {
  transform: translateX(40px);
}

.lozenges-order-modal__cta:hover span:last-child,
.lozenges-order-modal__cta:focus-visible span:last-child {
  transform: translateX(120%);
  opacity: 0;
}

.lozenges-order-modal__cta:hover::before,
.lozenges-order-modal__cta:focus-visible::before {
  transform: translateX(0);
  opacity: 1;
}

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

@media (max-width: 520px) {
  .hcp-hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 26px 0 28px;
  }

  .hcp-hero__inner {
    order: 1;
    width: calc(100vw - 16px);
    min-height: 0;
    display: block;
  }

  .hcp-hero__copy {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .hcp-hero__logo {
    width: 118px;
    margin: 0 auto 28px;
  }

  .hcp-hero__title {
    margin-bottom: 18px;
    font-size: clamp(34px, 10.5vw, 48px);
    line-height: 0.94;
    letter-spacing: -0.04em;
    text-align: center;
  }

  .hcp-hero__body {
    margin-bottom: 22px;
    max-width: 100%;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
  }

  .hcp-hero__cta {
    width: 186px;
    min-height: 56px;
    padding: 0 44px 0 16px;
    font-size: 16px;
    margin-inline: auto;
  }

  .hcp-hero__cta::before,
  .hcp-hero__cta span:last-child {
    width: 44px;
  }

  .hcp-hero__cta:hover span:first-child,
  .hcp-hero__cta:focus-visible span:first-child {
    transform: translateX(28px);
  }

  .hcp-hero__media {
    order: 2;
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }

  .hcp-hero__media img {
    width: min(100%, 420px);
    max-height: 420px;
  }

  .hcp-benefits {
    padding: 36px 0 40px;
  }

  .hcp-benefits__inner {
    width: calc(100vw - 16px);
    gap: 24px;
  }

  .hcp-benefits__title-strong,
  .hcp-benefits__title-light {
    font-size: clamp(34px, 10vw, 52px);
  }

  .hcp-benefits__divider {
    width: 116px;
    margin: 20px 0 22px;
  }

  .hcp-benefits__body {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 22px;
  }

  .hcp-benefits__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hcp-benefits__card {
    --hcp-benefits-cut: 18px;
    min-height: 0;
    padding: 22px 18px 20px;
    clip-path: polygon(
      0 0,
      calc(100% - var(--hcp-benefits-cut)) 0,
      100% var(--hcp-benefits-cut),
      100% 100%,
      var(--hcp-benefits-cut) 100%,
      0 calc(100% - var(--hcp-benefits-cut))
    );
  }

  .hcp-benefits__icon {
    width: 38px;
    height: 38px;
  }

  .hcp-benefits__card-title {
    margin: 46px 0 14px;
    font-size: 24px;
  }

  .hcp-benefits__card-body {
    font-size: 15px;
    line-height: 22px;
  }

  .lozenges-faq__inner {
    width: calc(100vw - 16px);
    padding: 26px 0 22px;
  }

  .lozenges-faq__eyebrow {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 18px;
  }

  .lozenges-faq__title {
    margin-bottom: 18px;
    font-size: clamp(28px, 9vw, 40px);
    line-height: 1.02;
  }

  .lozenges-faq__hero-copy {
    margin: 0 auto 22px;
    font-size: 16px;
    line-height: 22px;
  }

  .lozenges-faq__question {
    padding: 16px 0;
    gap: 12px;
  }

  .lozenges-faq__question > span:first-child {
    font-size: 20px;
    line-height: 22px;
  }

  .lozenges-faq__icon {
    width: 22px;
    height: 22px;
  }

  .lozenges-faq__icon span {
    width: 18px;
  }

  .lozenges-faq__answer-box {
    margin-bottom: 12px;
    padding: 14px 14px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 18px;
  }

  .lozenges-faq__cta-wrap {
    margin-top: 16px;
  }

  .lozenges-faq__cta {
    width: 172px;
    min-height: 54px;
    padding: 0 44px 0 16px;
    font-size: 16px;
  }

  .lozenges-faq__cta--wide {
    width: 220px;
  }

  .lozenges-faq__cta::before,
  .lozenges-faq__cta span:last-child {
    width: 44px;
  }

  .lozenges-faq__cta:hover span:first-child,
  .lozenges-faq__cta:focus-visible span:first-child {
    transform: translateX(32px);
  }

  .lozenges-steps {
    --steps-bleed-gutter: 12px;
    --steps-card-width: calc(100vw - 40px);
    --steps-card-gap: 14px;
  }

  .lozenges-steps__header {
    width: calc(100vw - 16px);
    padding: 20px 0 12px;
  }

  .lozenges-steps__track-wrap {
    width: calc(100vw - 16px);
  }

  .lozenges-steps__title {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.02;
  }

  .lozenges-steps__subtitle {
    margin-top: 10px;
    font-size: 18px;
    line-height: 24px;
    max-width: 100%;
  }

  .lozenges-steps__divider {
    width: 96px;
    height: 1px;
    margin-top: 14px;
  }

  .lozenges-steps__sticky {
    padding: 8px 0 14px;
  }

  .lozenges-steps__card {
    --steps-cut: 16px;
    min-height: 300px;
    padding: 20px 18px 20px;
  }

  .lozenges-steps__number {
    font-size: 42px;
    line-height: 58px;
    margin-bottom: 10px;
  }

  .lozenges-steps__card-title {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 18px;
  }

  .lozenges-steps__card-body {
    font-size: 14px;
    line-height: 18px;
  }

  .lozenges-steps__cta-wrap {
    margin-top: 14px;
  }

  .lozenges-steps__cta {
    width: 168px;
    min-height: 54px;
  }

  .lozenges-quality__inner {
    width: calc(100vw - 16px);
    padding: 18px 0 20px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lozenges-quality__media {
    padding-top: 16px;
  }

  .lozenges-quality__cross {
    width: 46px;
    height: 46px;
    right: -4px;
  }

  .lozenges-quality__image-wrap {
    min-height: 260px;
    border-radius: 14px;
    clip-path: polygon(0 20%, 100% 0, 93% 100%, 0 100%);
  }

  .lozenges-quality__title-line {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.02;
  }

  .lozenges-quality__divider {
    width: 96px;
    height: 1px;
    margin: 14px 0 12px;
  }

  .lozenges-quality__body {
    font-size: 18px;
    line-height: 22px;
    max-width: 100%;
  }

  .lozenges-dosing {
    min-height: 0;
    max-height: none;
  }

  .lozenges-dosing__inner {
    width: calc(100vw - 16px);
    min-height: 0;
    max-height: none;
    padding: 26px 0 20px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .lozenges-dosing__copy {
    order: 2;
  }

  .lozenges-dosing__visual {
    order: 1;
    justify-items: center;
  }

  .lozenges-dosing__visual img {
    width: min(100%, 420px);
    max-height: none;
  }

  .lozenges-dosing__title-line {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.02;
  }

  .lozenges-dosing__title-line--blue {
    max-width: 100%;
  }

  .lozenges-dosing__divider {
    width: 96px;
    height: 1px;
    margin: 14px 0 14px;
  }

  .lozenges-dosing__body {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 12px;
    max-width: 100%;
  }

  .lozenges-why {
    min-height: 0;
    max-height: none;
  }

  .lozenges-why__inner {
    width: calc(100vw - 16px);
    min-height: 0;
    max-height: none;
    padding: 28px 0 26px;
  }

  .lozenges-why__header {
    margin-bottom: 18px;
  }

  .lozenges-why__title {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 0.98;
  }

  .lozenges-why__divider {
    width: 96px;
    margin-top: 12px;
    height: 1px;
  }

  .lozenges-why__grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px 14px;
  }

  .lozenges-why__icon {
    width: 42px;
    height: 42px;
  }

  .lozenges-why__item {
    gap: 8px;
  }

  .lozenges-why__item-title {
    font-size: 18px;
    line-height: 1.05;
  }

  .lozenges-why__item-body {
    margin-top: 2px;
    font-size: 14px;
    line-height: 18px;
    max-width: 100%;
  }

  .lozenges-hero__inner {
    width: calc(100vw - 16px);
    padding: 16px 0 28px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .lozenges-hero__logo {
    width: 88px;
    margin-bottom: 18px;
  }

  .lozenges-hero__carousel {
    aspect-ratio: 1 / 1.12;
    border-radius: 0;
  }

  .lozenges-hero__carousel::after {
    left: -13%;
    width: 132%;
    bottom: -11%;
    height: 16%;
    transform: rotate(7deg);
  }

  .lozenges-hero__slide img {
    object-position: center 43%;
  }

  .lozenges-hero__dots {
    margin-top: 12px;
  }

  .lozenges-hero__content {
    padding-top: 0;
  }

  .lozenges-hero__title {
    margin-bottom: 14px;
  }

  .lozenges-hero__title-line {
    font-size: clamp(34px, 12vw, 56px);
    line-height: 0.95;
  }

  .lozenges-hero__features {
    margin-bottom: 18px;
    gap: 8px;
  }

  .lozenges-hero__feature {
    gap: 6px;
  }

  .lozenges-hero__feature img,
  .lozenges-hero__feature-30 {
    width: 26px;
    height: 26px;
  }

  .lozenges-hero__feature-30 {
    filter: none;
  }

  .lozenges-hero__feature span:last-child {
    font-size: 12px;
    line-height: 16px;
  }

  .lozenges-hero__body {
    font-size: 18px;
    line-height: 22px;
    max-width: 100%;
    margin-bottom: 18px;
  }

  .lozenges-hero__dosage {
    margin-bottom: 14px;
  }

  .lozenges-hero__dosage-label {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 18px;
  }

  .lozenges-hero__dosage-grid {
    gap: 8px;
  }

  .lozenges-hero__dose {
    min-height: 72px;
    border-width: 1px;
  }

  .lozenges-hero__dose-check {
    width: 26px;
    height: 22px;
    font-size: 15px;
  }

  .lozenges-hero__dose-mg {
    font-size: 14px;
    line-height: 18px;
  }

  .lozenges-hero__dose-copy {
    font-size: 12px;
    line-height: 16px;
  }

  .lozenges-hero__cta {
    min-height: 54px;
    margin-bottom: 12px;
  }

  .lozenges-hero__hcp strong {
    font-size: 12px;
    line-height: 16px;
  }

  .lozenges-hero__hcp span {
    font-size: 10px;
    line-height: 13px;
  }

  .patients-window__row {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .patients-window__panel {
    min-height: 0;
  }

  .patients-window__panel--text {
    order: 2;
    min-height: 0;
  }

  .patients-window__panel--image {
    order: 1;
    min-height: 260px;
    clip-path: none;
  }

  .patients-window__panel--image img {
    object-position: center;
  }

  .patients-window__copy {
    width: calc(100vw - 32px);
    padding: 28px 0 34px;
  }

  .patients-window__title {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 0.96;
    max-width: 100%;
  }

  .patients-window__divider {
    width: 112px;
    margin: 16px 0 14px;
  }

  .patients-window__body {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 18px;
    max-width: 100%;
  }

  .patients-window__cta {
    width: 186px;
    min-height: 54px;
    font-size: 18px;
    padding: 0 48px 0 16px;
  }

  .patients-window__cta::before,
  .patients-window__cta span:last-child {
    width: 44px;
  }

  .patients-window__cta span:last-child::before,
  .patients-window__cta::after {
    width: 20px;
    height: 20px;
  }

  .patients-window__cta:hover span:first-child,
  .patients-window__cta:focus-visible span:first-child {
    transform: translateX(34px);
  }

  .patients-window__cross {
    width: 52px;
    height: 52px;
  }

  .patients-illuminate-break {
    padding-top: 28px;
    min-height: 360px;
    height: min(520px, 86vw);
    max-height: 520px;
  }

  .patients-illuminate-break__ray {
    bottom: 44px;
    height: 86%;
  }

  .patients-illuminate-break__axis {
    bottom: 44px;
  }

  .patients-illuminate-break__hline {
    bottom: 43px;
  }

  .patients-illuminate-break__inner {
    width: calc(100vw - 16px);
    padding: 20px 0 76px;
  }

  .patients-illuminate-break__title {
    font-size: clamp(42px, 12vw, 72px);
    line-height: 0.95;
  }

  .patients-illuminate-break__cross {
    width: 58px;
    height: 58px;
    bottom: 14px;
  }

  .patients-footer__inner {
    width: calc(100vw - 16px);
    padding: 18px 0 14px;
  }

  .patients-footer__top {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
  }

  .patients-footer__copyright,
  .patients-footer__audience,
  .patients-footer__legal {
    justify-self: center;
  }

  .patients-footer__audience,
  .patients-footer__legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 16px;
  }

  .patients-footer__copyright,
  .patients-footer__audience a,
  .patients-footer__legal a {
    font-size: 16px;
    line-height: 19px;
  }

  .patients-footer__trademark {
    margin: 14px auto 12px;
    font-size: 16px;
    line-height: 19px;
    max-width: 34ch;
  }

  .patients-footer__lang {
    gap: 12px;
  }

  .patients-footer__lang a {
    font-size: 16px;
    line-height: 16px;
  }

  .lozenges-order-modal {
    padding: 8px;
  }

  .lozenges-order-modal__dialog {
    width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .lozenges-order-modal__panel-inner {
    padding: 18px 16px 16px;
  }

  .lozenges-order-modal__close {
    top: 10px;
    right: 8px;
    width: 34px;
    height: 34px;
  }

  .lozenges-order-modal__title-left,
  .lozenges-order-modal__title-right {
    margin: 18px 0 10px;
    font-size: 24px;
    line-height: 24px;
  }

  .lozenges-order-modal__subcopy {
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 17px;
  }

  .lozenges-order-modal__vendor-list {
    gap: 12px;
  }

  .lozenges-order-modal__vendor {
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .lozenges-order-modal__vendor img {
    width: 50px;
    height: 50px;
  }

  .lozenges-order-modal__vendor > span:nth-child(2) {
    font-size: 18px;
    line-height: 24px;
  }

  .lozenges-order-modal__vendor > span:last-child {
    font-size: 28px;
  }

  .lozenges-order-modal__body {
    font-size: 14px;
    line-height: 20px;
  }

  .lozenges-order-modal__body-heading {
    font-size: 16px;
    line-height: 22px;
  }

  .lozenges-order-modal__body--small {
    font-size: 12px;
    line-height: 17px;
  }

  .lozenges-order-modal__steps {
    padding-left: 24px;
    gap: 10px;
    margin-bottom: 16px;
  }

  .lozenges-order-modal__steps::before {
    left: 10px;
  }

  .lozenges-order-modal__step::before {
    left: -17px;
    top: 6px;
    width: 7px;
    height: 7px;
  }

  .lozenges-order-modal__step-title {
    font-size: 16px;
    line-height: 22px;
  }

  .lozenges-order-modal__step p {
    font-size: 12px;
    line-height: 17px;
  }

  .lozenges-order-modal__cta {
    min-height: 58px;
    font-size: 18px;
    line-height: 24px;
    padding: 0 50px 0 16px;
  }

  .lozenges-order-modal__cta::before,
  .lozenges-order-modal__cta span:last-child {
    width: 44px;
  }

  .lozenges-order-modal__cta:hover span:first-child,
  .lozenges-order-modal__cta:focus-visible span:first-child {
    transform: translateX(32px);
  }
}

.terms-page {
  background: #ffffff;
}

.terms-hero {
  max-height: 550px;
  overflow: hidden;
  background: linear-gradient(180deg, #4b93f6 0%, #39bbea 15%, #17d6b2 100%);
}

.terms-hero__inner {
  width: min(1295px, calc(100vw - 32px));
  min-height: 550px;
  margin-inline: auto;
  padding: 20px 0 140px;
  position: relative;
}

.terms-hero__logo {
  width: 146px;
  height: auto;
  display: block;
  filter: brightness(0) saturate(100%) invert(8%) sepia(98%) saturate(5211%)
    hue-rotate(236deg) brightness(79%) contrast(132%);
}

.terms-hero__title {
  margin: 102px 0 0;
  text-align: center;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.terms-document {
  position: relative;
  margin-top: -160px;
  z-index: 1;
  padding: 0 0 64px;
}

.terms-document__inner {
  width: min(1295px, calc(100vw - 32px));
  margin-inline: auto;
}

.terms-document__card {
  width: min(820px, 100%);
  margin: 0 auto;
  background: #ffffff;
  clip-path: polygon(0 0, calc(100% - 88px) 0, 100% 88px, 100% 100%, 0 100%);
  padding: 92px 120px 96px;
}

.terms-document__updated,
.terms-document__body,
.terms-document__list {
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: rgb(0, 10, 119);
}

.terms-document__updated {
  margin: 0 0 28px;
}

.terms-document__heading {
  margin: 0 0 28px;
  font-family: 'degular-display', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: -0.03em;
  color: rgb(0, 10, 119);
}

.terms-document__body {
  margin: 0 0 20px;
}

.terms-document__body:last-child {
  margin-bottom: 0;
}

@media (max-width: 920px) {
  .terms-hero__inner {
    padding-bottom: 120px;
  }

  .terms-document {
    margin-top: -128px;
  }

  .terms-document__card {
    padding: 56px 48px 60px;
    clip-path: polygon(0 0, calc(100% - 60px) 0, 100% 60px, 100% 100%, 0 100%);
  }
}

@media (max-width: 520px) {
  .terms-hero {
    max-height: none;
  }

  .terms-hero__inner {
    width: calc(100vw - 16px);
    min-height: 340px;
    padding: 28px 0 96px;
  }

  .terms-hero__logo {
    width: 118px;
  }

  .terms-hero__title {
    margin-top: 74px;
    font-size: clamp(38px, 11vw, 52px);
  }

  .terms-document {
    margin-top: -82px;
    padding-bottom: 36px;
  }

  .terms-document__inner {
    width: calc(100vw - 16px);
  }

  .terms-document__card {
    width: 100%;
    padding: 32px 22px 36px;
    clip-path: polygon(0 0, calc(100% - 38px) 0, 100% 38px, 100% 100%, 0 100%);
  }

  .terms-document__updated,
  .terms-document__body,
  .terms-document__list {
    font-size: 15px;
    line-height: 19px;
  }

  .terms-document__heading {
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 20px;
  }
}
